@nimbus-ds/components 5.3.2-rc.2 → 5.3.2-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 +5 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -223,6 +223,7 @@ declare const propertiesBox: {
|
|
|
223
223
|
"danger-surfaceHighlight": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
224
224
|
"neutral-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
225
225
|
"neutral-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
226
|
+
"neutral-surfaceDisabled": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
226
227
|
"neutral-surfaceHighlight": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
227
228
|
transparent: string;
|
|
228
229
|
};
|
|
@@ -396,7 +397,10 @@ declare const propertiesBox: {
|
|
|
396
397
|
h4: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
397
398
|
h5: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
398
399
|
h6: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
399
|
-
};
|
|
400
|
+
}; /**
|
|
401
|
+
* The boxSizing property sets how the total width and height of an box is calculated.
|
|
402
|
+
* @default border-box
|
|
403
|
+
*/
|
|
400
404
|
};
|
|
401
405
|
export type BoxBorderColorProperties = keyof typeof propertiesBox.borderColor;
|
|
402
406
|
export type BoxBorderRadiusProperties = keyof typeof propertiesBox.borderRadius;
|