@innovaccer/design-system 4.4.0 → 4.5.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 +42 -0
- package/css/dist/index.css +0 -1
- package/css/dist/index.css.map +1 -1
- package/css/src/components/button.module.css +0 -1
- 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/checkbox/Checkbox.d.ts +1 -0
- package/dist/core/components/atoms/heading/Heading.d.ts +1 -8
- package/dist/core/components/atoms/paragraph/Paragraph.d.ts +1 -7
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +4 -4
- package/dist/core/components/atoms/subheading/Subheading.d.ts +1 -7
- package/dist/core/components/molecules/chipInput/ChipInput.d.ts +1 -0
- package/dist/core/components/organisms/choiceList/ChoiceList.d.ts +1 -0
- package/dist/core/components/organisms/menu/Menu.d.ts +1 -0
- package/dist/esm/index.js +193 -182
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +204 -193
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +0 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +15 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
## 4.5.0 (2025-03-22)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(Choicelist): add wrapLabel prop (0e97c368)
|
|
6
|
+
- feat(menu): add disabled state in menu (89d1304c)
|
|
7
|
+
- feat(chipInput): add chip validator function support in chip input (08fc94e5)
|
|
8
|
+
- feat(typography): add auto tooltip support in typography component (37ba55ac)
|
|
9
|
+
|
|
10
|
+
### Breaking changes
|
|
11
|
+
|
|
12
|
+
NA
|
|
13
|
+
|
|
14
|
+
### Migration guide
|
|
15
|
+
|
|
16
|
+
NA
|
|
17
|
+
|
|
18
|
+
### Deprecations
|
|
19
|
+
|
|
20
|
+
NA
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
- feat(Choicelist): add wrapLabel prop (0e97c368)
|
|
25
|
+
- feat(menu): add disabled state in menu (89d1304c)
|
|
26
|
+
- feat(chipInput): add chip validator function support in chip input (08fc94e5)
|
|
27
|
+
- feat(typography): add auto tooltip support in typography component (37ba55ac)
|
|
28
|
+
|
|
29
|
+
### Fixes
|
|
30
|
+
|
|
31
|
+
NA
|
|
32
|
+
|
|
33
|
+
### Improvements
|
|
34
|
+
|
|
35
|
+
NA
|
|
36
|
+
|
|
37
|
+
### Documentation
|
|
38
|
+
|
|
39
|
+
NA
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
1
43
|
## 4.4.0 (2025-03-04)
|
|
2
44
|
|
|
3
45
|
### Highlights
|