docs icon indicating copy to clipboard operation
docs copied to clipboard

Official documentation for Vaadin and Hilla.

Results 276 docs issues
Sort by recently updated
recently updated
newest added

**Tell us about your request** https://vaadin.com/docs/latest/create-ui/standard-html should mention, that Component Label is deprecated since 24.1 It's replacement, NativeLabel, is missing in the table.“ If you think this issue is important,...

flow
design system

The docs in https://vaadin.com/docs/latest/integrations/spring/configuration#special-configuration-parameters still mentions using the properties vaadin.blacklisted-packages and vaadin.whitelisted-packages but this PR https://github.com/vaadin/spring/pull/1080 has replaced 'blacklist' and 'whitelist' with 'blocked' and 'allowed' Checked in vaadin version 24.3.9

flow

The chapter https://hilla.dev/docs/react/components/crud#editor-actions is too brief to be useful for first time Hilla/React user. There should be complete code examples how to add handling save, delete etc. and call end...

hilla
design system

With Fetch API, cloning is required for reading the response in the middleware without breaking the application. This change adds a mention about `response.clone()` in the middleware example.

**Tell us about your request** Building on https://github.com/vaadin/docs/issues/790 - I understand that we won't document how to style 3rd-party web components, but we could at least mention that `@CssImport` only...

design system

It seems that the documentation of HillaPlugin for HotSwapAgent didn't get any further than the description in [this](https://github.com/vaadin/hilla/pull/1485) PR. It should be described/mentioned properly in the docs.

hilla

The documentation for the Kubernetes Kit package inspection during serialization is wrong. Both properties are missing an additional "transients" part. Currently, the example looks like this: ``` vaadin.serialization.include-packages=com.example.application vaadin.serialization.exclude-packages=com.example.application.service ```...

https://github.com/vaadin/hilla/issues/2197 The commands given by the document missed an space. 文档给出的指令漏了个空格。 ![image](https://github.com/vaadin/docs/assets/33195150/973fc315-cdd4-4f41-bb3f-82f1c13f9838) ![image](https://github.com/vaadin/docs/assets/33195150/2f7c2cda-916c-4dbe-9247-d16851463b25)

The regular expression in https://vaadin.com/docs/latest/components/text-field#constraints is wrong https://github.com/vaadin/docs/blob/0732f33ae30d12bf19c6d44a98630e30cff1b646/src/main/java/com/vaadin/demo/component/textfield/TextFieldConstraints.java#L17 ![image](https://github.com/vaadin/docs/assets/11554739/d20fb180-8cae-423d-b90e-11179177cb10) Compare: ``` TextField f4 = new TextField(); f4.setPattern("^[+]?[(]?[0-9]{3}[)]?[-s.]?[0-9]{3}[-s.]?[0-9]{4,6}$"); TextField f5 = new TextField(); f5.setPattern("^[+]?[\\(]?[0-9]{3}[\\)]?-?\\s*[0-9]{3}-?\\s*[0-9]{4,6}$"); add(f4, f5); ``` Only the second field...

bug
design system