@innovaccer/design-system 4.5.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.
- package/CHANGELOG.md +36 -0
- package/css/dist/index.css +24 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/components/progressBar.module.css +20 -0
- package/css/src/utils/utility.css +4 -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/progressBar/ProgressBar.d.ts +4 -1
- package/dist/core/components/organisms/grid/Grid.d.ts +21 -0
- package/dist/core/components/organisms/grid/GridBody.d.ts +9 -1
- package/dist/core/components/organisms/grid/VirtualList.d.ts +14 -0
- package/dist/core/components/organisms/list/List.d.ts +4 -0
- package/dist/core/components/organisms/table/Header.d.ts +2 -0
- package/dist/core/components/organisms/table/Table.d.ts +18 -0
- package/dist/esm/index.js +819 -361
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +644 -203
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +24 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +32 -15
- package/package.json +1 -2
package/dist/index.umd.css
CHANGED
|
@@ -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';
|
|
@@ -6810,6 +6814,7 @@ body {
|
|
|
6810
6814
|
background-color: var(--primary);
|
|
6811
6815
|
border-radius: var(--spacing-m);
|
|
6812
6816
|
transition: var(--duration--slow-01) var(--standard-expressive-curve);
|
|
6817
|
+
height: 100%;
|
|
6813
6818
|
}
|
|
6814
6819
|
|
|
6815
6820
|
.ProgressBar-indicator--small {
|
|
@@ -6820,6 +6825,25 @@ body {
|
|
|
6820
6825
|
height: var(--spacing);
|
|
6821
6826
|
}
|
|
6822
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
|
+
|
|
6823
6847
|
/* Radio */
|
|
6824
6848
|
|
|
6825
6849
|
.Radio {
|