Changelog - 6.5.0 Betas
6.5.0-beta.30 (26/07/2024)
Bug Fixes
[NO-ISSUE] common: License error when reopen a page after a long period of inactivty was fixed.
6.5.0-beta.22 (25/04/2023)
Features
[NO-ISSUE] components: grid Resize grid columns now works on Mobile / touch devices.
6.5.0-beta.17 (20/03/2023)
Features
SDKF-91 - components: grid now permits the use of a function that returns a string in the sorting.useField.
Bug Fixes
SDKF-92 - common: message.service now translates correctly.
6.5.0-beta.15 (20/02/2023)
Features
SDKF-41 - navigation: VsNavbarService.searchInputEnter event available, emitting a event whenever the user press Enter key inside navbar search input.
Bug Fixes
[NO-ISSUE] components: grid advancedFilter now stringifies numbers. This way problems related to decimal numbers won’t happen anymore.
6.5.0-beta.14 (08/02/2023)
Breaking Changes
Features
SDKF-30 - components: autocomplete now autofocus option if only a single option is available.
Bug Fixes
6.5.0-beta.13 (07/12/2022)
Breaking Changes
SDKF-16 - components: vs-grid.options.disableSorting was replaced by:
this.gridOptions.sorting = {
useField: 'field', // it allows a custom fieldName for sorting
disable: true,
};
Features
SDKF-16 - components: vs-grid.options.sorting.useField added, allowing devs to provide a custom field name for sorting.
SDKF-27 - components: vs-autocomplete-select focus is on the input, allowing keyboard shortcuts (Ctrl + A). It means that, vs-select only override the following keys’ behaviour: - ArrowUp; - ArrowDown; - Enter;
Bug Fixes
SDKF-27 - components: vs-autocomplete-select now handles when field is programatically cleared (it wouldn’t clear the autocomplete input value).
6.5.0-beta.12 (18/11/2022)
Bug Fixes
SDKF-25 - common: Company request now gets up to 100 companies (used to be only 10).
6.5.0-beta.10 (16/11/2022)
Features
6.5.0-beta.8 (04/11/2022)
Improvements
SDKF-10 - Bunch of lint fixes, might improve performance.
Bug Fixes
SDKF-8 - components: vs-autocomplete fix clear button when value is 0.
6.5.0-beta.5 (01/11/2022)
Bug Fixes
SDKF-8 - components: vs-autocomplete now works with options which the value is 0.
6.5.0-beta.3 (27/10/2022)
Bug Fixes
SDKF-4 - components: vs-autocomplete options won’t overflow horizontally anymore.
6.5.0-beta.1 (24/10/2022)
Breaking Changes
SDKF-4 - components: vs-autocomplete was re-made from the ground up, being totally refactored to be more user/dev friendly. - Main Changes in autocomplete component:
controlName replaced by formControlName;
options property was removed;
get property is the new way to provide a getItems function;
getName property is the new way to provide a getItemName function;
Autocomplete now works with a simple FormControl, rather than a FormGroup (key / value)
A bunch of classes/components/interfaces were renamed: - FormElement renamed to VsFormEventManipulator<ValueType> - FormManipulator renamed to VsFormManipulator<ValueType> - FormInput renamed to VsFormInputManipulator - Legacy Select
vs-autocomplete-select renamed to vs-autocomplete-select-legacy
VsAutocompleteSelectComponent renamed to VsLegacyAutocompleteSelectComponent
VsAutocompleteOutput renamed to VsLegacyAutocompleteOutput
SDKF-4 - components: vs-button autofocus now works independent of the button model property.
Features
SDKF-4 - components: VsFormInputManipulator now has onValueChange subject, allowing to subscribe to new values and to know whether it was internally/externally set.
Bug Fixes
SDKF-4 - components: vs-select now correctly doesn’t show clear button when value is 0.
Housekeeping
SDKF-4 - components: vs-button was totally refactored to be more performative