@innovaccer/design-system 4.10.0 → 4.11.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 +39 -0
- package/css/dist/index.css +1 -1
- package/css/dist/index.css.map +1 -1
- package/css/src/components/label.module.css +1 -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/organisms/grid/Grid.d.ts +1 -0
- package/dist/core/components/organisms/list/List.d.ts +1 -0
- package/dist/core/components/organisms/table/Table.d.ts +3 -0
- package/dist/esm/index.js +219 -194
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +220 -195
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +9 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
## 4.11.0 (2025-07-15)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(table): add prop to hide nested row trigger icon in table (0b7c18c9)
|
|
6
|
+
- fix(table): remove extra api call for infinite scroll in table (e150f784)
|
|
7
|
+
- fix(label): update label overflow behaviour (dfa340c2)
|
|
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(table): add prop to hide nested row trigger icon in table (0b7c18c9)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
|
|
27
|
+
- fix(table): remove extra api call for infinite scroll in table (e150f784)
|
|
28
|
+
- fix(label): update label overflow behaviour (dfa340c2)
|
|
29
|
+
|
|
30
|
+
### Improvements
|
|
31
|
+
|
|
32
|
+
NA
|
|
33
|
+
|
|
34
|
+
### Documentation
|
|
35
|
+
|
|
36
|
+
NA
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
1
40
|
## 4.10.0 (2025-06-25)
|
|
2
41
|
|
|
3
42
|
### Highlights
|