@kwantis-id3/frontend-library 1.0.0-rc.5 → 1.0.0-rc.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +32 -0
- package/dist/esm/index.js +111 -53
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/InputField/InputField.d.ts +0 -2
- package/dist/esm/types/components/TreeView/ControlledTreeView.d.ts +4 -0
- package/dist/esm/types/components/TreeView/TreeUtils.d.ts +3 -0
- package/dist/esm/types/components/TreeView/TreeViewInterfaces.d.ts +78 -0
- package/dist/esm/types/components/TreeView/TreeViewSyled.d.ts +24 -0
- package/dist/esm/types/components/TreeView/UncontrolledTreeView.d.ts +3 -0
- package/dist/esm/types/components/TreeView/index.d.ts +3 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/esm/types/utils/colors.d.ts +12 -2
- package/dist/esm/types/utils/index.d.ts +1 -3
- package/dist/index.d.ts +95 -5
- package/package.json +1 -1
- package/README.md +0 -333
- /package/dist/esm/types/components/InputField/{StyledInputField.d.ts → InputFieldStyled.d.ts} +0 -0
package/changelog.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
# v1.0.0-rc.6
|
|
2
|
+
## Minor Changes
|
|
3
|
+
- New TreeView Component
|
|
4
|
+
|
|
5
|
+
## Patch CHanges
|
|
6
|
+
- Buttons hover and active color now use specific utilities.
|
|
7
|
+
- Selects and InputFields disabled prop now changes the appearance of the component slightly.
|
|
8
|
+
|
|
9
|
+
# v1.0.0-rc.5
|
|
10
|
+
## Minor Changes
|
|
11
|
+
- New Accordion Component, more in line with the new UI choices.
|
|
12
|
+
- Dropdown mobile now uses new accordion
|
|
13
|
+
- Buttons now have a size prop
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# v1.0.0-rc.4
|
|
17
|
+
## Minor Changes
|
|
18
|
+
- New Table Component (uses tanstack's `react-table`)
|
|
19
|
+
- New MultiViewList Component (switches between Table view and Cards view)
|
|
20
|
+
|
|
21
|
+
# v1.0.0-rc.3
|
|
22
|
+
## Minor Changes
|
|
23
|
+
- New Card Component
|
|
24
|
+
|
|
25
|
+
# v1.0.0-rc.0
|
|
26
|
+
## Major Changes
|
|
27
|
+
- New Theme Management
|
|
28
|
+
- Theme Switcher in stories
|
|
29
|
+
- New Indicator Component
|
|
30
|
+
- New Tag Component
|
|
31
|
+
- Adapted old components to new theme management
|
|
32
|
+
|
|
1
33
|
# v0.27.2
|
|
2
34
|
## Patch Changes
|
|
3
35
|
- Updated @emotion/react from 11.10.6 to 11.14.0
|