@nimbus-ds/components 5.0.0-rc.1 → 5.0.0-rc.2
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 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -153,7 +153,9 @@ declare const propertiesBox: {
|
|
|
153
153
|
justifyContent: JustifyContent[];
|
|
154
154
|
alignItems: AlignItems[];
|
|
155
155
|
alignSelf: AlignSelf[];
|
|
156
|
-
pointerEvents: PointerEvents[];
|
|
156
|
+
pointerEvents: PointerEvents[]; /**
|
|
157
|
+
* The borderLeftWidth property defines the width of the border at the left of a box.
|
|
158
|
+
*/
|
|
157
159
|
backgroundColor: {
|
|
158
160
|
"primary-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
159
161
|
"primary-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -299,7 +301,9 @@ declare const propertiesBox: {
|
|
|
299
301
|
"20": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
300
302
|
auto: string;
|
|
301
303
|
};
|
|
302
|
-
position: Position[];
|
|
304
|
+
position: Position[]; /**
|
|
305
|
+
* The borderWidthX shorthand property defines the width of the element's border on the left and right.
|
|
306
|
+
*/
|
|
303
307
|
overflow: Overflow[];
|
|
304
308
|
overflowX: Overflow[];
|
|
305
309
|
overflowY: Overflow[];
|
|
@@ -503,6 +507,22 @@ export interface BoxSprinkle {
|
|
|
503
507
|
* The borderWidth property sets the width of an box's border.
|
|
504
508
|
*/
|
|
505
509
|
borderWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
510
|
+
/**
|
|
511
|
+
* The borderTopWidth property defines the width of the border at the top of a box.
|
|
512
|
+
*/
|
|
513
|
+
borderTopWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
514
|
+
/**
|
|
515
|
+
* The borderBottomWidth property defines the width of the border at the bottom of a box.
|
|
516
|
+
*/
|
|
517
|
+
borderBottomWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
518
|
+
/**
|
|
519
|
+
* The borderLeftWidth property defines the width of the border at the left of a box.
|
|
520
|
+
*/
|
|
521
|
+
borderLeftWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
522
|
+
/**
|
|
523
|
+
* The borderRightWidth property defines the width of the border at the right of a box.
|
|
524
|
+
*/
|
|
525
|
+
borderRightWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
506
526
|
/**
|
|
507
527
|
* The borderWidthX shorthand property defines the width of the element's border on the left and right.
|
|
508
528
|
*/
|