@innovaccer/design-system 2.34.0 → 2.35.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 +45 -0
- package/css/dist/index.css +51 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/components/emptyState.css +50 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +1616 -1501
- package/dist/core/common.type.d.ts +1 -0
- package/dist/core/components/molecules/emptyState/EmptyState.d.ts +27 -7
- package/dist/core/components/molecules/emptyState/EmptyStateActions.d.ts +7 -0
- package/dist/core/components/molecules/emptyState/EmptyStateContext.d.ts +8 -0
- package/dist/core/components/molecules/emptyState/EmptyStateDescription.d.ts +7 -0
- package/dist/core/components/molecules/emptyState/EmptyStateImage.d.ts +19 -0
- package/dist/core/components/molecules/emptyState/EmptyStateTitle.d.ts +7 -0
- package/dist/core/components/organisms/combobox/Combobox.d.ts +2 -0
- package/dist/core/components/organisms/combobox/trigger/ComboboxTrigger.d.ts +2 -0
- package/dist/core/components/organisms/combobox/trigger/MultiselectTrigger.d.ts +2 -1
- package/dist/index.esm.js +305 -104
- package/dist/index.js +230 -36
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
|
1
|
+
## 2.35.0 (2024-05-28)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(emptyState): add emptyState component (0a8c8f89)
|
|
6
|
+
- feat(combobox): add keyboard event handler support (748f7deb)
|
|
7
|
+
|
|
8
|
+
### Breaking changes
|
|
9
|
+
|
|
10
|
+
NA
|
|
11
|
+
|
|
12
|
+
### Migration guide
|
|
13
|
+
|
|
14
|
+
NA
|
|
15
|
+
|
|
16
|
+
### Deprecations
|
|
17
|
+
|
|
18
|
+
NA
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- feat(emptyState): add emptyState component (0a8c8f89)
|
|
23
|
+
- feat(combobox): add keyboard event handler support (748f7deb)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
|
|
27
|
+
- fix(docs): update components overview page layouts (c646237f)
|
|
28
|
+
- fix(docs): update components overview page layout and cards layout (a633151b)
|
|
29
|
+
- docs: update layout of components overview page and card opacity (8524e733)
|
|
30
|
+
- fix(table): update table stories card border radius (39d7f348)
|
|
31
|
+
- fix(inputMask): update set selectionRange method for unsupported types (a0d90ed0)
|
|
32
|
+
- fix(emptyState): fix alignment issue when className is passed (0209f18c)
|
|
33
|
+
|
|
34
|
+
### Improvements
|
|
35
|
+
|
|
36
|
+
- refactor: structure package json and add engines restriction (2e531a3f)
|
|
37
|
+
- refactor(docs): update default storybook url in docs exporter script (97c9c80b)
|
|
38
|
+
- chore(actions): add docs site test step for docs pull request (a97913a8)
|
|
39
|
+
|
|
40
|
+
### Documentation
|
|
41
|
+
|
|
42
|
+
- docs(uistate): update empty state in uistate documentation (0217a54b)
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
1
46
|
## 2.34.0 (2024-05-16)
|
|
2
47
|
|
|
3
48
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -3293,6 +3293,24 @@ body {
|
|
|
3293
3293
|
background: transparent;
|
|
3294
3294
|
}
|
|
3295
3295
|
|
|
3296
|
+
.EmptyState-Wrapper {
|
|
3297
|
+
display: flex;
|
|
3298
|
+
flex-direction: column;
|
|
3299
|
+
align-items: center;
|
|
3300
|
+
justify-content: center;
|
|
3301
|
+
background: transparent;
|
|
3302
|
+
width: 100%;
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
.EmptyState-image {
|
|
3306
|
+
display: flex;
|
|
3307
|
+
justify-content: center;
|
|
3308
|
+
width: 100%;
|
|
3309
|
+
height: 100%;
|
|
3310
|
+
-o-object-fit: contain;
|
|
3311
|
+
object-fit: contain;
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3296
3314
|
.EmptyState-title {
|
|
3297
3315
|
text-align: center;
|
|
3298
3316
|
max-width: 480px;
|
|
@@ -3320,6 +3338,39 @@ body {
|
|
|
3320
3338
|
margin-bottom: var(--spacing-2);
|
|
3321
3339
|
}
|
|
3322
3340
|
|
|
3341
|
+
.EmptyState-text {
|
|
3342
|
+
display: flex;
|
|
3343
|
+
text-align: center;
|
|
3344
|
+
justify-content: center;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
|
+
.EmptyState-actions {
|
|
3348
|
+
display: flex;
|
|
3349
|
+
justify-content: center;
|
|
3350
|
+
}
|
|
3351
|
+
|
|
3352
|
+
.EmptyState-title--compressed {
|
|
3353
|
+
margin-top: var(--spacing-2);
|
|
3354
|
+
}
|
|
3355
|
+
.EmptyState-title--standard {
|
|
3356
|
+
margin-top: var(--spacing-xl);
|
|
3357
|
+
}
|
|
3358
|
+
.EmptyState-title--tight {
|
|
3359
|
+
margin-top: var(--spacing-l);
|
|
3360
|
+
}
|
|
3361
|
+
|
|
3362
|
+
.EmptyState-actions--compressed {
|
|
3363
|
+
margin-top: var(--spacing-2);
|
|
3364
|
+
}
|
|
3365
|
+
|
|
3366
|
+
.EmptyState-actions--standard {
|
|
3367
|
+
margin-top: var(--spacing-xl);
|
|
3368
|
+
}
|
|
3369
|
+
|
|
3370
|
+
.EmptyState-actions--tight {
|
|
3371
|
+
margin-top: var(--spacing-l);
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3323
3374
|
.FileIcon {
|
|
3324
3375
|
padding: var(--spacing);
|
|
3325
3376
|
border-radius: 50%;
|