@innovaccer/design-system 4.4.0 → 4.6.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +78 -0
  2. package/css/dist/index.css +24 -1
  3. package/css/dist/index.css.map +1 -1
  4. package/css/src/components/button.module.css +0 -1
  5. package/css/src/components/progressBar.module.css +20 -0
  6. package/css/src/utils/utility.css +4 -0
  7. package/dist/brotli/index.js +1 -1
  8. package/dist/brotli/index.js.br +0 -0
  9. package/dist/cjs/index.js +1 -1
  10. package/dist/core/components/atoms/checkbox/Checkbox.d.ts +1 -0
  11. package/dist/core/components/atoms/heading/Heading.d.ts +1 -8
  12. package/dist/core/components/atoms/paragraph/Paragraph.d.ts +1 -7
  13. package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +4 -4
  14. package/dist/core/components/atoms/progressBar/ProgressBar.d.ts +4 -1
  15. package/dist/core/components/atoms/subheading/Subheading.d.ts +1 -7
  16. package/dist/core/components/molecules/chipInput/ChipInput.d.ts +1 -0
  17. package/dist/core/components/organisms/choiceList/ChoiceList.d.ts +1 -0
  18. package/dist/core/components/organisms/grid/Grid.d.ts +21 -0
  19. package/dist/core/components/organisms/grid/GridBody.d.ts +9 -1
  20. package/dist/core/components/organisms/grid/VirtualList.d.ts +14 -0
  21. package/dist/core/components/organisms/list/List.d.ts +4 -0
  22. package/dist/core/components/organisms/menu/Menu.d.ts +1 -0
  23. package/dist/core/components/organisms/table/Header.d.ts +2 -0
  24. package/dist/core/components/organisms/table/Table.d.ts +18 -0
  25. package/dist/esm/index.js +842 -373
  26. package/dist/gzip/index.js +1 -1
  27. package/dist/gzip/index.js.gz +0 -0
  28. package/dist/index.js +679 -227
  29. package/dist/index.js.map +1 -1
  30. package/dist/index.umd.css +24 -1
  31. package/dist/index.umd.js +1 -1
  32. package/dist/types/tsconfig.type.tsbuildinfo +47 -30
  33. package/package.json +1 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,81 @@
1
+ ## 4.6.0 (2025-03-27)
2
+
3
+ ### Highlights
4
+
5
+ - feat(table): add infinite scroll & virtualization support in table (e41ef371)
6
+
7
+ ### Breaking changes
8
+
9
+ NA
10
+
11
+ ### Migration guide
12
+
13
+ NA
14
+
15
+ ### Deprecations
16
+
17
+ NA
18
+
19
+ ### Features
20
+
21
+ - feat(table): add infinite scroll & virtualization support in table (e41ef371)
22
+
23
+ ### Fixes
24
+
25
+ - fix(docs): replace gatsby-medium-plugin with fetch API for medium latest blogs (9f5224cd)
26
+
27
+ ### Improvements
28
+
29
+ NA
30
+
31
+ ### Documentation
32
+
33
+ NA
34
+
35
+ ---
36
+
37
+ ## 4.5.0 (2025-03-22)
38
+
39
+ ### Highlights
40
+
41
+ - feat(Choicelist): add wrapLabel prop (0e97c368)
42
+ - feat(menu): add disabled state in menu (89d1304c)
43
+ - feat(chipInput): add chip validator function support in chip input (08fc94e5)
44
+ - feat(typography): add auto tooltip support in typography component (37ba55ac)
45
+
46
+ ### Breaking changes
47
+
48
+ NA
49
+
50
+ ### Migration guide
51
+
52
+ NA
53
+
54
+ ### Deprecations
55
+
56
+ NA
57
+
58
+ ### Features
59
+
60
+ - feat(Choicelist): add wrapLabel prop (0e97c368)
61
+ - feat(menu): add disabled state in menu (89d1304c)
62
+ - feat(chipInput): add chip validator function support in chip input (08fc94e5)
63
+ - feat(typography): add auto tooltip support in typography component (37ba55ac)
64
+
65
+ ### Fixes
66
+
67
+ NA
68
+
69
+ ### Improvements
70
+
71
+ NA
72
+
73
+ ### Documentation
74
+
75
+ NA
76
+
77
+ ---
78
+
1
79
  ## 4.4.0 (2025-03-04)
2
80
 
3
81
  ### Highlights
@@ -1350,7 +1350,6 @@ body {
1350
1350
 
1351
1351
  .Button:disabled {
1352
1352
  cursor: not-allowed;
1353
- pointer-events: none;
1354
1353
  }
1355
1354
 
1356
1355
  .Button:focus {
@@ -6210,6 +6209,7 @@ body {
6210
6209
  background-color: var(--primary);
6211
6210
  border-radius: var(--spacing-m);
6212
6211
  transition: var(--duration--slow-01) var(--standard-expressive-curve);
6212
+ height: 100%;
6213
6213
  }
6214
6214
 
6215
6215
  .ProgressBar-indicator--small {
@@ -6220,6 +6220,25 @@ body {
6220
6220
  height: var(--spacing);
6221
6221
  }
6222
6222
 
6223
+ .ProgressBar-indicator--indeterminate {
6224
+ background-color: var(--primary);
6225
+ border-radius: var(--spacing-m);
6226
+ position: absolute;
6227
+ bottom: 0;
6228
+ top: 0;
6229
+ width: 32%;
6230
+ animation: indeterminate-progress-bar 1.4s infinite linear;
6231
+ }
6232
+
6233
+ @keyframes indeterminate-progress-bar {
6234
+ from {
6235
+ left: -32%;
6236
+ }
6237
+ to {
6238
+ left: 100%;
6239
+ }
6240
+ }
6241
+
6223
6242
  .Ring {
6224
6243
  transform: rotate(-90deg);
6225
6244
  }
@@ -10411,4 +10430,8 @@ body {
10411
10430
  white-space: nowrap;
10412
10431
  }
10413
10432
 
10433
+ .bottom-0 {
10434
+ bottom: 0;
10435
+ }
10436
+
10414
10437
  /*# sourceMappingURL=index.css.map */