Release 6.0.0
6.0.0 (2024-02-08)
Split @devoinc/genesys-ui-form
package to @devoinc/genesys-ui
package, and two new ones:
@devoinc/genesys-ui-color
for the ColorPicker@devoinc/genesys-ui-upload
for the UploadFiles
So the references on the code should change to one of these packages.
For example:
From
import { ColorPicker, UploadFiles, Input } from '@devoinc/genesys-ui-form';
To
import { ColorPicker } from '@devoinc/genesys-ui-color';
import { UploadFiles } from '@devoinc/genesys-ui-upload';
import { Input } from '@devoinc/genesys-ui';
⚠ BREAKING CHANGES
- split form package to core, color, and upload
- table: fix the change on the actions for use directly the icons
Features
- added onChange prop to several components and optimized and tokenized the ActionRenderer. (998cb32)
- split form package to core, color, and upload (3683d1c)
- table: memoize the iconSize for ActionRenderer (538ec2f)
Bug Fixes
- table: fix the change on the actions for use directly the icons (c6ad258)