docs
docs copied to clipboard
Official documentation for Vaadin and Hilla.
**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,...
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
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...
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...
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.
Fixes #3308 for V23 branch.
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. 文档给出的指令漏了个空格。  
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  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...