@nimbus-ds/components 5.0.0-rc.1 → 5.0.0-rc.3
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 +18 -0
- 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})`;
|
|
@@ -503,6 +505,22 @@ export interface BoxSprinkle {
|
|
|
503
505
|
* The borderWidth property sets the width of an box's border.
|
|
504
506
|
*/
|
|
505
507
|
borderWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
508
|
+
/**
|
|
509
|
+
* The borderTopWidth property defines the width of the border at the top of a box.
|
|
510
|
+
*/
|
|
511
|
+
borderTopWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
512
|
+
/**
|
|
513
|
+
* The borderBottomWidth property defines the width of the border at the bottom of a box.
|
|
514
|
+
*/
|
|
515
|
+
borderBottomWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
516
|
+
/**
|
|
517
|
+
* The borderLeftWidth property defines the width of the border at the left of a box.
|
|
518
|
+
*/
|
|
519
|
+
borderLeftWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
520
|
+
/**
|
|
521
|
+
* The borderRightWidth property defines the width of the border at the right of a box.
|
|
522
|
+
*/
|
|
523
|
+
borderRightWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
506
524
|
/**
|
|
507
525
|
* The borderWidthX shorthand property defines the width of the element's border on the left and right.
|
|
508
526
|
*/
|