@nimbus-ds/components 5.0.0-rc.2 → 5.0.0-rc.4
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/dist/index.d.ts +8 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" |
|
|
|
102
102
|
export type TransitionTiming = "ease" | "ease-in" | "ease-out" | "ease-in-out" | "linear" | "step-start" | "step-end";
|
|
103
103
|
declare const propertiesBox: {
|
|
104
104
|
gap: {
|
|
105
|
+
none: string;
|
|
105
106
|
"0-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
106
107
|
"1": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
107
108
|
"1-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -125,6 +126,7 @@ declare const propertiesBox: {
|
|
|
125
126
|
"20": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
126
127
|
};
|
|
127
128
|
gridGap: {
|
|
129
|
+
none: string;
|
|
128
130
|
"0-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
129
131
|
"1": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
130
132
|
"1-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -147,15 +149,15 @@ declare const propertiesBox: {
|
|
|
147
149
|
"18": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
148
150
|
"20": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
149
151
|
};
|
|
150
|
-
display: Display[];
|
|
152
|
+
display: Display[]; /**
|
|
153
|
+
* The borderBottomWidth property defines the width of the border at the bottom of a box.
|
|
154
|
+
*/
|
|
151
155
|
flexDirection: FlexDirection[];
|
|
152
156
|
flexWrap: FlexWrap[];
|
|
153
157
|
justifyContent: JustifyContent[];
|
|
154
158
|
alignItems: AlignItems[];
|
|
155
159
|
alignSelf: AlignSelf[];
|
|
156
|
-
pointerEvents: PointerEvents[];
|
|
157
|
-
* The borderLeftWidth property defines the width of the border at the left of a box.
|
|
158
|
-
*/
|
|
160
|
+
pointerEvents: PointerEvents[];
|
|
159
161
|
backgroundColor: {
|
|
160
162
|
"primary-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
161
163
|
"primary-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -300,10 +302,9 @@ declare const propertiesBox: {
|
|
|
300
302
|
"18": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
301
303
|
"20": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
302
304
|
auto: string;
|
|
305
|
+
none: string;
|
|
303
306
|
};
|
|
304
|
-
position: Position[];
|
|
305
|
-
* The borderWidthX shorthand property defines the width of the element's border on the left and right.
|
|
306
|
-
*/
|
|
307
|
+
position: Position[];
|
|
307
308
|
overflow: Overflow[];
|
|
308
309
|
overflowX: Overflow[];
|
|
309
310
|
overflowY: Overflow[];
|