@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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
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
|
+
|
|
1
37
|
## 4.5.0 (2025-03-22)
|
|
2
38
|
|
|
3
39
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -6209,6 +6209,7 @@ body {
|
|
|
6209
6209
|
background-color: var(--primary);
|
|
6210
6210
|
border-radius: var(--spacing-m);
|
|
6211
6211
|
transition: var(--duration--slow-01) var(--standard-expressive-curve);
|
|
6212
|
+
height: 100%;
|
|
6212
6213
|
}
|
|
6213
6214
|
|
|
6214
6215
|
.ProgressBar-indicator--small {
|
|
@@ -6219,6 +6220,25 @@ body {
|
|
|
6219
6220
|
height: var(--spacing);
|
|
6220
6221
|
}
|
|
6221
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
|
+
|
|
6222
6242
|
.Ring {
|
|
6223
6243
|
transform: rotate(-90deg);
|
|
6224
6244
|
}
|
|
@@ -10410,4 +10430,8 @@ body {
|
|
|
10410
10430
|
white-space: nowrap;
|
|
10411
10431
|
}
|
|
10412
10432
|
|
|
10433
|
+
.bottom-0 {
|
|
10434
|
+
bottom: 0;
|
|
10435
|
+
}
|
|
10436
|
+
|
|
10413
10437
|
/*# sourceMappingURL=index.css.map */
|