Releases: vaadin/flow-components
Vaadin Flow Components V18.0.4
Vaadin Flow Components V18.0.4
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 18.0.3
Changes in vaadin-avatar-flow
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-crud-flow
Changes in vaadin-date-picker-flow
vaadin-date-time-picker-flow
vaadin-radio-button-flow
vaadin-text-field-flow
vaadin-time-picker-flow
- Fixes:
-
⧉ Fix client side validation overriding (#512). PR:548. Ticket:8848
The workaround for overriding the client side validation for certain components was causing an unnecessary roundtrip to the server side, which also caused two warnings to be logged by Flow each time a disabled or a readonly component was added to the UI. The warning happened twice since two executeJS calls were enqueued: one immediately, and another when attached. Apparently there was no good reason for this behavior. This fix will only apply the executeJS once when the component is attached and it will not require a separate roundtrip to workaround the client side validation overriding the invalid value because the JS execution is enqueued on the "beforeClientResponse" phase when the server side invalid value has been resolved and can be used in the JS execution. Further improvement would be to move the FieldValidationUtil to its own module and reused from there, but that is left for later (?).
-
Compatibility
Vaadin Flow Components V14.4.5
Vaadin Flow Components V14.4.5
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 14.4.4
Changes in vaadin-combo-box-flow
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-crud-flow
Changes in vaadin-date-time-picker-flow
-
Fixes:
-
Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-grid-flow
- Fixes:
Changes in vaadin-icons-flow
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-menu-bar-flow
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-radio-button-flow
- Fixes:
Changes in vaadin-time-picker-flow
- Chore:
- ⧉ Increase Web-Component version
Compatibility
Vaadin Flow Components V18.0.3
Vaadin Flow Components V18.0.3
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 18.0.2
Changes in vaadin-date-time-picker-flow
Changes in vaadin-grid-flow
- Fixes:
Changes in vaadin-menu-bar-flow
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-radio-button-flow
Compatibility
Vaadin Flow Components V19.0.0.alpha1
Vaadin Flow Components V19.0.0.alpha1
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 19.0.0.alpha1
Changes in vaadin-checkbox-flow
vaadin-combo-box-flow
vaadin-grid-flow
vaadin-list-box-flow
vaadin-radio-button-flow
vaadin-select-flow
- Breaking Changes:
-
⧉ Use data view filter and sorting only to that component. PR:366. Ticket:8655
In-memory filtering and sorting are now stored directly in component, which gives an opportunity to change it through the data view API for a certain component separately from other components bound to the same data provider.
-
Changes in vaadin-grid-pro-flow
- New Features:
Compatibility
- This release use Web Components listed in Vaadin Platform 19.0.0.alpha1
- Tested with Vaadin Flow version 6.0.0.alpha2
Vaadin Flow Components V18.0.2
Vaadin Flow Components V18.0.2
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 18.0.1
Changes in vaadin-avatar-flow
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-combo-box-flow
-
Fixes:
-
⧉ Fix setting value to lazy loading ComboBox. PR:478. Ticket:391
ComboBox should only throw when no items/callback has been set to it. There is a possibility that the value is set but the backend doesn't have this item available, but that is an edge case and something that should not happen and should be possible to prevent by resetting the data and thus a responsibility of the application developer. (cherry picked from commit eb91269)
-
-
Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-grid-flow
- Fixes:
-
⧉ Fix setting value to lazy loading ComboBox. PR:478. Ticket:391
ComboBox should only throw when no items/callback has been set to it. There is a possibility that the value is set but the backend doesn't have this item available, but that is an edge case and something that should not happen and should be possible to prevent by resetting the data and thus a responsibility of the application developer. (cherry picked from commit eb91269)
-
⧉ Prevent exception in gridConnector (#462). PR:475. Ticket:376
-
Changes in vaadin-icons-flow
- Chore:
- ⧉ Increase Web-Component version
Changes in vaadin-radio-button-flow
- Fixes:
Compatibility
Vaadin Flow Components V18.0.1
Vaadin Flow Components V18.0.1
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Features
- Field helpers
- Slot below/above input fields for supplying additional information or content related to the field.
- AutoOpenDisabled
- mode for ComboBox, DatePicker, TimePicker, DateTimePicker that prevents dropdown from opening automatically on focus
- new component: vaadin-avatar
- Avatar and AvatarGroup components. Being able to show users with name, abbreviations and image. AvatarGroup is a collection of Avatars with the possibility to truncate it to a certain number of visible avatars.
Breaking Changes
- Flow components versioning has changed, now all components are released at once with Vaadin Platform sharing the same version.
Compatibility
Vaadin Flow Components V18.0.0
Vaadin Flow Components V18.0.0
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Features
- Field helpers
- Slot below/above input fields for supplying additional information or content related to the field.
- AutoOpenDisabled
- mode for ComboBox, DatePicker, TimePicker, DateTimePicker that prevents dropdown from opening automatically on focus
- new component: vaadin-avatar
- Avatar and AvatarGroup components. Being able to show users with name, abbreviations and image. AvatarGroup is a collection of Avatars with the possibility to truncate it to a certain number of visible avatars.
Breaking Changes
- Flow components versioning has changed, now all components are released at once with Vaadin Platform sharing the same version.
Compatibility
Vaadin Flow Components V18.0.0.rc2
Vaadin Flow Components V18.0.0.rc2
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 18.0.0.rc1
Changes in vaadin-grid-flow
- Fixes:
-
⧉ Not to call count callback for lazy Grid with multi-select. PR:433. Ticket:411
Selecting any row of the Grid with lazy loading and multi-select mode does not trigger the count callback to be invoked. Instead, it gets the item count from the cache for defined item count, and doesn't show the select all checkbox at all and skips checkbox state update for unknown item count. (cherry picked from commit 030ef43)
-
Compatibility
- This release use Web Components listed in Vaadin Platform 18.0.0.rc2
- Tested with Vaadin Flow version 5.0.0
Vaadin Flow Components V17.0.11
Vaadin Flow Components V17.0.11
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 17.0.10
Changes in vaadin-grid-flow
- Fixes:
-
⧉ Not to call count callback for lazy Grid with multi-select. PR:433. Ticket:411
Selecting any row of the Grid with lazy loading and multi-select mode does not trigger the count callback to be invoked. Instead, it gets the item count from the cache for defined item count, and doesn't show the select all checkbox at all and skips checkbox state update for unknown item count. (cherry picked from commit 030ef43)
-
Changes in vaadin-text-field-flow
Compatibility
Vaadin Flow Components V14.4.4
Vaadin Flow Components V14.4.4
This is a release of the Java integration for Vaadin Components to be used from the Java server side with Vaadin Flow.
Changes in Flow Components from 14.4.3
Changes in vaadin-accordion-flow
vaadin-combo-box-flow
vaadin-date-picker-flow
vaadin-date-time-picker-flow
vaadin-grid-flow
vaadin-login-flow
vaadin-rich-text-editor-flow
vaadin-select-flow
vaadin-text-field-flow
vaadin-time-picker-flow
Changes in all components
- Chore:
- ⧉ Increase Web-Component version