@nimbus-ds/styles 9.0.0-rc.6 → 9.0.0-rc.8
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 +22 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" |
|
|
|
37
37
|
export type TransitionTiming = "ease" | "ease-in" | "ease-out" | "ease-in-out" | "linear" | "step-start" | "step-end";
|
|
38
38
|
declare const propertiesBox: {
|
|
39
39
|
gap: {
|
|
40
|
+
none: string;
|
|
40
41
|
"0-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
41
42
|
"1": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
42
43
|
"1-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -60,6 +61,7 @@ declare const propertiesBox: {
|
|
|
60
61
|
"20": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
61
62
|
};
|
|
62
63
|
gridGap: {
|
|
64
|
+
none: string;
|
|
63
65
|
"0-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
64
66
|
"1": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
65
67
|
"1-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -438,6 +440,22 @@ export interface BoxSprinkle {
|
|
|
438
440
|
* The borderWidth property sets the width of an box's border.
|
|
439
441
|
*/
|
|
440
442
|
borderWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
443
|
+
/**
|
|
444
|
+
* The borderTopWidth property defines the width of the border at the top of a box.
|
|
445
|
+
*/
|
|
446
|
+
borderTopWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
447
|
+
/**
|
|
448
|
+
* The borderBottomWidth property defines the width of the border at the bottom of a box.
|
|
449
|
+
*/
|
|
450
|
+
borderBottomWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
451
|
+
/**
|
|
452
|
+
* The borderLeftWidth property defines the width of the border at the left of a box.
|
|
453
|
+
*/
|
|
454
|
+
borderLeftWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
455
|
+
/**
|
|
456
|
+
* The borderRightWidth property defines the width of the border at the right of a box.
|
|
457
|
+
*/
|
|
458
|
+
borderRightWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
441
459
|
/**
|
|
442
460
|
* The borderWidthX shorthand property defines the width of the element's border on the left and right.
|
|
443
461
|
*/
|
|
@@ -1918,6 +1936,7 @@ export declare const box: {
|
|
|
1918
1936
|
conditions: Record<"xs" | "md" | "lg" | "xl" | "focus" | "active" | "disabled" | "hover" | "focusWithin", string>;
|
|
1919
1937
|
};
|
|
1920
1938
|
dynamicScale: {
|
|
1939
|
+
none: string;
|
|
1921
1940
|
"0-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
1922
1941
|
"1": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
1923
1942
|
"1-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -1952,6 +1971,7 @@ export declare const box: {
|
|
|
1952
1971
|
conditions: Record<"xs" | "md" | "lg" | "xl" | "focus" | "active" | "disabled" | "hover" | "focusWithin", string>;
|
|
1953
1972
|
};
|
|
1954
1973
|
dynamicScale: {
|
|
1974
|
+
none: string;
|
|
1955
1975
|
"0-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
1956
1976
|
"1": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
1957
1977
|
"1-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -2116,6 +2136,7 @@ export declare const box: {
|
|
|
2116
2136
|
]>;
|
|
2117
2137
|
properties: {
|
|
2118
2138
|
gap: {
|
|
2139
|
+
none: string;
|
|
2119
2140
|
"0-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
2120
2141
|
"1": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
2121
2142
|
"1-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -2139,6 +2160,7 @@ export declare const box: {
|
|
|
2139
2160
|
"20": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
2140
2161
|
};
|
|
2141
2162
|
gridGap: {
|
|
2163
|
+
none: string;
|
|
2142
2164
|
"0-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
2143
2165
|
"1": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
2144
2166
|
"1-5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|