@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
@@ -2635,6 +2635,10 @@ body {
2635
2635
  white-space: nowrap;
2636
2636
  }
2637
2637
 
2638
+ .bottom-0 {
2639
+ bottom: 0;
2640
+ }
2641
+
2638
2642
  /* fallback */
2639
2643
  @font-face {
2640
2644
  font-family: 'Material Symbols Rounded';
@@ -3201,7 +3205,6 @@ body {
3201
3205
 
3202
3206
  .Button:disabled {
3203
3207
  cursor: not-allowed;
3204
- pointer-events: none;
3205
3208
  }
3206
3209
 
3207
3210
  .Button:focus {
@@ -6811,6 +6814,7 @@ body {
6811
6814
  background-color: var(--primary);
6812
6815
  border-radius: var(--spacing-m);
6813
6816
  transition: var(--duration--slow-01) var(--standard-expressive-curve);
6817
+ height: 100%;
6814
6818
  }
6815
6819
 
6816
6820
  .ProgressBar-indicator--small {
@@ -6821,6 +6825,25 @@ body {
6821
6825
  height: var(--spacing);
6822
6826
  }
6823
6827
 
6828
+ .ProgressBar-indicator--indeterminate {
6829
+ background-color: var(--primary);
6830
+ border-radius: var(--spacing-m);
6831
+ position: absolute;
6832
+ bottom: 0;
6833
+ top: 0;
6834
+ width: 32%;
6835
+ animation: indeterminate-progress-bar 1.4s infinite linear;
6836
+ }
6837
+
6838
+ @keyframes indeterminate-progress-bar {
6839
+ from {
6840
+ left: -32%;
6841
+ }
6842
+ to {
6843
+ left: 100%;
6844
+ }
6845
+ }
6846
+
6824
6847
  /* Radio */
6825
6848
 
6826
6849
  .Radio {