@nimbus-ds/styles 8.1.1-rc.2 → 8.2.0-rc.1
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.css +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3047,8 +3047,9 @@ export declare const accordion: {
|
|
|
3047
3047
|
sprinkle: ((props: {
|
|
3048
3048
|
borderTop?: "base" | "none" | undefined;
|
|
3049
3049
|
borderBottom?: "base" | "none" | undefined;
|
|
3050
|
+
padding?: "base" | "none" | undefined;
|
|
3050
3051
|
}) => string) & {
|
|
3051
|
-
properties: Set<"borderBottom" | "borderTop">;
|
|
3052
|
+
properties: Set<"borderBottom" | "borderTop" | "padding">;
|
|
3052
3053
|
};
|
|
3053
3054
|
properties: {
|
|
3054
3055
|
borderTop: {
|
|
@@ -3059,6 +3060,10 @@ export declare const accordion: {
|
|
|
3059
3060
|
none: string;
|
|
3060
3061
|
base: string;
|
|
3061
3062
|
};
|
|
3063
|
+
padding: {
|
|
3064
|
+
none: string;
|
|
3065
|
+
base: string;
|
|
3066
|
+
};
|
|
3062
3067
|
};
|
|
3063
3068
|
classnames: {
|
|
3064
3069
|
header: string;
|