@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
|
@@ -6,6 +6,23 @@
|
|
|
6
6
|
background: transparent;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
.EmptyState-Wrapper {
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
align-items: center;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
background: transparent;
|
|
15
|
+
width: 100%;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.EmptyState-image {
|
|
19
|
+
display: flex;
|
|
20
|
+
justify-content: center;
|
|
21
|
+
width: 100%;
|
|
22
|
+
height: 100%;
|
|
23
|
+
object-fit: contain;
|
|
24
|
+
}
|
|
25
|
+
|
|
9
26
|
.EmptyState-title {
|
|
10
27
|
text-align: center;
|
|
11
28
|
max-width: 480px;
|
|
@@ -32,3 +49,36 @@
|
|
|
32
49
|
.EmptyState-description--small {
|
|
33
50
|
margin-bottom: var(--spacing-2);
|
|
34
51
|
}
|
|
52
|
+
|
|
53
|
+
.EmptyState-text {
|
|
54
|
+
display: flex;
|
|
55
|
+
text-align: center;
|
|
56
|
+
justify-content: center;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.EmptyState-actions {
|
|
60
|
+
display: flex;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.EmptyState-title--compressed {
|
|
65
|
+
margin-top: var(--spacing-2);
|
|
66
|
+
}
|
|
67
|
+
.EmptyState-title--standard {
|
|
68
|
+
margin-top: var(--spacing-xl);
|
|
69
|
+
}
|
|
70
|
+
.EmptyState-title--tight {
|
|
71
|
+
margin-top: var(--spacing-l);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.EmptyState-actions--compressed {
|
|
75
|
+
margin-top: var(--spacing-2);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.EmptyState-actions--standard {
|
|
79
|
+
margin-top: var(--spacing-xl);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.EmptyState-actions--tight {
|
|
83
|
+
margin-top: var(--spacing-l);
|
|
84
|
+
}
|