Releases: 3Squared/ForgeUI-3
@3squared/[email protected]
Minor Changes
-
221d4c4: Replace use of VueMultiselect with PrimeVue Multiselect.
ForgeMultiselect
is still usable but has been placed in a folder labelled deprecated to avoid future use.
It has also been removed from the styleguide and replace with the newly styled PrimeVue multiselect.Migration Guide: Replace
ForgeMultiselect
withMultiselect
see docs for how this can be implemented and use PrimeVue docs.ForgeMultiselectPreview
now uses the PrimeVueMultiselect
. This may mean some props no longer work. Again see PrimeVue docs for further guidance. -
c8f1859: Add extra width classes:
- 5: 5%,
- 10: 10%,
- 20: 20%,
- 25: 25%,
- 30: 30%,
- 40: 40%,
- 50: 50%,
- 60: 60%,
- 75: 75%,
- 80: 80%,
- 90: 90%,
- 100: 100%,
These can be used by appending the size needed to
w-
e.g. 20% would bew-20
Patch Changes
- a8ec24e: Fix fieldset test
@3squared/[email protected]
@3squared/[email protected]
Patch Changes
- a482387: Fix file type validation to use ForgeFileType object instead of a string
@3squared/[email protected]
Patch Changes
- e87977c: Fix checkbox to make label trigger change event when validation is not used
@3squared/[email protected]
Patch Changes
- 9b98b29: Fix issue where ForgeColumnCustomisers spacing would be too tight to the Exporter and Clear All button
@3squared/[email protected]
Minor Changes
- 269c873: Add Forge Column Customiser.
- This component allows users hide and show columns.
@3squared/[email protected]
Major Changes
-
84503ba: Update FileUploader so that:
- Accepted file types appear in an overlay instead of inline.
- File types can be configured with custom labels.
BREAKING CHANGE MIGRATION GUIDE
File Uploaders
acceptedFileTypes
prop will now be required to use the customForgeFileType
interface provided by the import@3squared/forge-ui-3/src/types/forge-types.ts
.In order to fix the breaking change, you will simply have to update your accepted file type array to use the interface. For example:
['image/jpeg'] -> [{ fileType: 'image/jpeg' }] as ForgeFileType[]
@3squared/[email protected]
Patch Changes
- 6cd40a3: Fix issue where form-control ! was visible underneath ForgeDatepicker Calendar icon when the field is invalid.
- ccc8b13: Fix issue where ForgeLink wouldn't wrap text when inside a container.
- e08dba8: - Fix issue where ForgeMultiselect panel would appear underneath other elements.
- Fix issue in ForgeMultiselect and Dropdown where placeholder text would wrap, causing the element to become misshapen.
- Fix issue in ForgeFilterHeader where items would spill out of the dropdown panel past a certain size.
@3squared/[email protected]
@3squared/[email protected]
Minor Changes
- ddaf434: Add prop to ForgeFormField to position the label above or to the left of the input