@nimbus-ds/styles 9.0.0-rc.6 → 9.0.0-rc.7
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 +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -88,7 +88,9 @@ declare const propertiesBox: {
|
|
|
88
88
|
justifyContent: JustifyContent[];
|
|
89
89
|
alignItems: AlignItems[];
|
|
90
90
|
alignSelf: AlignSelf[];
|
|
91
|
-
pointerEvents: PointerEvents[];
|
|
91
|
+
pointerEvents: PointerEvents[]; /**
|
|
92
|
+
* The borderLeftWidth property defines the width of the border at the left of a box.
|
|
93
|
+
*/
|
|
92
94
|
backgroundColor: {
|
|
93
95
|
"primary-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
94
96
|
"primary-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -234,7 +236,9 @@ declare const propertiesBox: {
|
|
|
234
236
|
"20": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
235
237
|
auto: string;
|
|
236
238
|
};
|
|
237
|
-
position: Position[];
|
|
239
|
+
position: Position[]; /**
|
|
240
|
+
* The borderWidthX shorthand property defines the width of the element's border on the left and right.
|
|
241
|
+
*/
|
|
238
242
|
overflow: Overflow[];
|
|
239
243
|
overflowX: Overflow[];
|
|
240
244
|
overflowY: Overflow[];
|
|
@@ -438,6 +442,22 @@ export interface BoxSprinkle {
|
|
|
438
442
|
* The borderWidth property sets the width of an box's border.
|
|
439
443
|
*/
|
|
440
444
|
borderWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
445
|
+
/**
|
|
446
|
+
* The borderTopWidth property defines the width of the border at the top of a box.
|
|
447
|
+
*/
|
|
448
|
+
borderTopWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
449
|
+
/**
|
|
450
|
+
* The borderBottomWidth property defines the width of the border at the bottom of a box.
|
|
451
|
+
*/
|
|
452
|
+
borderBottomWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
453
|
+
/**
|
|
454
|
+
* The borderLeftWidth property defines the width of the border at the left of a box.
|
|
455
|
+
*/
|
|
456
|
+
borderLeftWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
457
|
+
/**
|
|
458
|
+
* The borderRightWidth property defines the width of the border at the right of a box.
|
|
459
|
+
*/
|
|
460
|
+
borderRightWidth?: BoxBorderWidthProperties | BoxConditions<BoxBorderWidthProperties>;
|
|
441
461
|
/**
|
|
442
462
|
* The borderWidthX shorthand property defines the width of the element's border on the left and right.
|
|
443
463
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/styles",
|
|
3
|
-
"version": "9.0.0-rc.
|
|
3
|
+
"version": "9.0.0-rc.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"url": "https://github.com/TiendaNube/nimbus-design-system/issues"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@nimbus-ds/tokens": "^8.0.0-rc.
|
|
25
|
+
"@nimbus-ds/tokens": "^8.0.0-rc.7",
|
|
26
26
|
"@nimbus-ds/webpack": "^1.3.0",
|
|
27
27
|
"@types/glob": "^8",
|
|
28
28
|
"@vanilla-extract/css": "^1.9.2",
|