@innovaccer/design-system 4.17.1 → 4.19.0
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 +84 -0
- package/css/dist/index.css +801 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/components/flex.module.css +117 -0
- package/css/src/components/mdsGrid.module.css +401 -0
- package/css/src/components/segmentedControl.module.css +266 -0
- package/css/src/components/table.module.css +2 -0
- package/dist/brotli/index.js +1 -1
- package/dist/brotli/index.js.br +0 -0
- package/dist/cjs/index.js +1 -1
- package/dist/core/components/atoms/flex/Flex.d.ts +35 -0
- package/dist/core/components/atoms/flex/index.d.ts +2 -0
- package/dist/core/components/atoms/mdsGrid/GridItem.d.ts +23 -0
- package/dist/core/components/atoms/mdsGrid/MdsGrid.d.ts +43 -0
- package/dist/core/components/atoms/mdsGrid/index.d.ts +2 -0
- package/dist/core/components/atoms/segmentedControl/SegmentedControl.d.ts +33 -0
- package/dist/core/components/atoms/segmentedControl/SegmentedControlContext.d.ts +16 -0
- package/dist/core/components/atoms/segmentedControl/SegmentedControlItem.d.ts +21 -0
- package/dist/core/components/atoms/segmentedControl/index.d.ts +4 -0
- package/dist/core/components/atoms/segmentedControl/utils.d.ts +23 -0
- package/dist/core/components/organisms/grid/Grid.d.ts +7 -0
- package/dist/core/components/organisms/select/SelectTrigger.d.ts +2 -0
- package/dist/core/components/organisms/table/FilterSelect.d.ts +21 -0
- package/dist/core/components/organisms/table/Table.d.ts +2 -0
- package/dist/core/index.d.ts +3 -0
- package/dist/core/index.type.d.ts +2 -0
- package/dist/esm/index.js +1662 -681
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +1590 -640
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +801 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +196 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,87 @@
|
|
|
1
|
+
## 4.19.0 (2025-01-07)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(segmentedControl): add new segmented control component (847a58fa)
|
|
6
|
+
- feat(selectTrigger): add minWidth maxWidth support (9931c6e9)
|
|
7
|
+
- feat(table): replace dropdown with select in table and grid (d0b33355)
|
|
8
|
+
|
|
9
|
+
### Breaking changes
|
|
10
|
+
|
|
11
|
+
NA
|
|
12
|
+
|
|
13
|
+
### Migration guide
|
|
14
|
+
|
|
15
|
+
NA
|
|
16
|
+
|
|
17
|
+
### Deprecations
|
|
18
|
+
|
|
19
|
+
NA
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- feat(segmentedControl): add new segmented control component (847a58fa)
|
|
24
|
+
- feat(selectTrigger): add minWidth maxWidth support (9931c6e9)
|
|
25
|
+
- feat(table): replace dropdown with select in table and grid (d0b33355)
|
|
26
|
+
|
|
27
|
+
### Fixes
|
|
28
|
+
|
|
29
|
+
- fix(segmentedControl): fix size issue and restrict first render animation (27b86d1c)
|
|
30
|
+
|
|
31
|
+
### Improvements
|
|
32
|
+
|
|
33
|
+
NA
|
|
34
|
+
|
|
35
|
+
### Documentation
|
|
36
|
+
|
|
37
|
+
- docs(segmentedControl): add docs of the new component segmented control (3cf558d6)
|
|
38
|
+
- docs(segmentedControl): update interaction tab content and basic button content (389a8a11)
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## 4.18.0 (2025-12-29)
|
|
43
|
+
|
|
44
|
+
### Highlights
|
|
45
|
+
|
|
46
|
+
- feat(grid): add grid component (1698445c)
|
|
47
|
+
- feat(flex): add flex component (3ae8b0d4)
|
|
48
|
+
- feat(table): add single select filter option in table header (e810b7c8)
|
|
49
|
+
|
|
50
|
+
### Breaking changes
|
|
51
|
+
|
|
52
|
+
NA
|
|
53
|
+
|
|
54
|
+
### Migration guide
|
|
55
|
+
|
|
56
|
+
NA
|
|
57
|
+
|
|
58
|
+
### Deprecations
|
|
59
|
+
|
|
60
|
+
NA
|
|
61
|
+
|
|
62
|
+
### Features
|
|
63
|
+
|
|
64
|
+
- feat(grid): add grid component (1698445c)
|
|
65
|
+
- feat(flex): add flex component (3ae8b0d4)
|
|
66
|
+
- feat(table): add single select filter option in table header (e810b7c8)
|
|
67
|
+
|
|
68
|
+
### Fixes
|
|
69
|
+
|
|
70
|
+
- fix(pagination): update table pagination while searching and page change (5b7e1bb6)
|
|
71
|
+
- fix(combobox): fix onchange handler call on initial render (159bf17b)
|
|
72
|
+
|
|
73
|
+
### Improvements
|
|
74
|
+
|
|
75
|
+
- feat(table): add filter pattern story (11c1a616)
|
|
76
|
+
- feat(table): add filtertype prop and update stories (a745f210)
|
|
77
|
+
- feat(table): add test cases (6079f23f)
|
|
78
|
+
|
|
79
|
+
### Documentation
|
|
80
|
+
|
|
81
|
+
- docs(avatar): update avatar docs usage (8302d34a)
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
1
85
|
## 4.17.1 (2025-12-11)
|
|
2
86
|
|
|
3
87
|
### Highlights
|