@nimbus-ds/styles 4.18.0-rc.4 → 4.19.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/CHANGELOG.md +20 -0
- package/dist/index.css +147 -97
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +27 -15
- package/dist/index.js.map +1 -1
- package/dist/packages/box/box.sprinkle.css.d.ts +6 -6
- package/dist/packages/box/box.style.css.d.ts +1 -0
- package/dist/packages/box/index.d.ts +10 -10
- package/dist/packages/checkbox/checkbox.sprinkle.css.d.ts +1 -1
- package/dist/packages/checkbox/index.d.ts +1 -1
- package/dist/packages/fileUploader/fileUploader.sprinkle.css.d.ts +1 -1
- package/dist/packages/fileUploader/index.d.ts +1 -1
- package/dist/packages/icon/icon.sprinkle.css.d.ts +1 -1
- package/dist/packages/icon/index.d.ts +1 -1
- package/dist/packages/iconButton/iconButton.sprinkle.css.d.ts +84 -0
- package/dist/packages/iconButton/iconButton.sprinkle.types.d.ts +17 -0
- package/dist/packages/iconButton/iconButton.style.css.d.ts +1 -1
- package/dist/packages/iconButton/index.css +317 -16
- package/dist/packages/iconButton/index.css.map +1 -1
- package/dist/packages/iconButton/index.d.ts +89 -1
- package/dist/packages/iconButton/index.js +1 -1
- package/dist/packages/iconButton/index.js.LICENSE.txt +46 -4
- package/dist/packages/iconButton/index.js.map +1 -1
- package/dist/packages/link/index.css +33 -159
- package/dist/packages/link/index.css.map +1 -1
- package/dist/packages/link/index.d.ts +2 -65
- package/dist/packages/link/index.js +1 -1
- package/dist/packages/link/index.js.LICENSE.txt +4 -16
- package/dist/packages/link/index.js.map +1 -1
- package/dist/packages/link/link.style.css.d.ts +3 -65
- package/dist/packages/radio/index.d.ts +1 -1
- package/dist/packages/radio/radio.sprinkle.css.d.ts +1 -1
- package/dist/packages/sidebar/index.css +27 -9
- package/dist/packages/sidebar/index.css.map +1 -1
- package/dist/packages/sidebar/index.d.ts +24 -7
- package/dist/packages/sidebar/index.js +1 -1
- package/dist/packages/sidebar/index.js.LICENSE.txt +5 -5
- package/dist/packages/sidebar/index.js.map +1 -1
- package/dist/packages/sidebar/sidebar.sprinkle.css.d.ts +24 -7
- package/dist/packages/stack/index.d.ts +4 -4
- package/dist/packages/stack/stack.sprinkle.css.d.ts +2 -2
- package/package.json +2 -2
|
@@ -3,6 +3,26 @@ export declare const paddingProperties: {
|
|
|
3
3
|
none: number;
|
|
4
4
|
};
|
|
5
5
|
export declare const sprinkle: import("rainbow-sprinkles/dist/declarations/src/createRuntimeFn").SprinklesFn<[{
|
|
6
|
+
config: {
|
|
7
|
+
padding: {
|
|
8
|
+
values: {
|
|
9
|
+
base: {
|
|
10
|
+
default: string;
|
|
11
|
+
conditions: Record<"xs" | "md" | "lg", string>;
|
|
12
|
+
};
|
|
13
|
+
none: {
|
|
14
|
+
default: string;
|
|
15
|
+
conditions: Record<"xs" | "md" | "lg", string>;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
staticScale: {
|
|
19
|
+
base: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
20
|
+
none: number;
|
|
21
|
+
};
|
|
22
|
+
name: "padding";
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
} & {
|
|
6
26
|
config: {
|
|
7
27
|
maxWidth: {
|
|
8
28
|
dynamic: {
|
|
@@ -16,16 +36,13 @@ export declare const sprinkle: import("rainbow-sprinkles/dist/declarations/src/c
|
|
|
16
36
|
conditions: Record<"xs" | "md" | "lg", string>;
|
|
17
37
|
};
|
|
18
38
|
};
|
|
19
|
-
|
|
39
|
+
zIndex: {
|
|
20
40
|
dynamic: {
|
|
21
41
|
default: string;
|
|
22
42
|
conditions: Record<"xs" | "md" | "lg", string>;
|
|
23
43
|
};
|
|
24
|
-
dynamicScale:
|
|
25
|
-
|
|
26
|
-
none: number;
|
|
27
|
-
};
|
|
28
|
-
name: "padding";
|
|
44
|
+
dynamicScale: true;
|
|
45
|
+
name: "zIndex";
|
|
29
46
|
vars: {
|
|
30
47
|
default: string;
|
|
31
48
|
conditions: Record<"xs" | "md" | "lg", string>;
|
|
@@ -35,7 +52,7 @@ export declare const sprinkle: import("rainbow-sprinkles/dist/declarations/src/c
|
|
|
35
52
|
} & {
|
|
36
53
|
config: {
|
|
37
54
|
[x: string]: {
|
|
38
|
-
mappings: ("maxWidth" | "padding")[];
|
|
55
|
+
mappings: ("maxWidth" | "zIndex" | "padding")[];
|
|
39
56
|
};
|
|
40
57
|
};
|
|
41
58
|
}]>;
|
|
@@ -99,11 +99,11 @@ export declare const stack: {
|
|
|
99
99
|
};
|
|
100
100
|
alignItems: {
|
|
101
101
|
values: {
|
|
102
|
-
|
|
102
|
+
center: {
|
|
103
103
|
default: string;
|
|
104
104
|
conditions: Record<"xs" | "md" | "lg", string>;
|
|
105
105
|
};
|
|
106
|
-
|
|
106
|
+
stretch: {
|
|
107
107
|
default: string;
|
|
108
108
|
conditions: Record<"xs" | "md" | "lg", string>;
|
|
109
109
|
};
|
|
@@ -120,7 +120,7 @@ export declare const stack: {
|
|
|
120
120
|
conditions: Record<"xs" | "md" | "lg", string>;
|
|
121
121
|
};
|
|
122
122
|
};
|
|
123
|
-
staticScale: ("
|
|
123
|
+
staticScale: ("center" | "stretch" | "flex-end" | "flex-start" | "baseline")[];
|
|
124
124
|
name: "alignItems";
|
|
125
125
|
};
|
|
126
126
|
};
|
|
@@ -263,7 +263,7 @@ export declare const stack: {
|
|
|
263
263
|
flexDirection: ("column" | "column-reverse" | "row" | "row-reverse")[];
|
|
264
264
|
flexWrap: ("nowrap" | "wrap" | "wrap-reverse")[];
|
|
265
265
|
justifyContent: ("center" | "space-around" | "space-between" | "space-evenly" | "flex-end" | "flex-start")[];
|
|
266
|
-
alignItems: ("
|
|
266
|
+
alignItems: ("center" | "stretch" | "flex-end" | "flex-start" | "baseline")[];
|
|
267
267
|
gap: {
|
|
268
268
|
none: string;
|
|
269
269
|
"0,5": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
@@ -125,11 +125,11 @@ export declare const sprinkle: import("rainbow-sprinkles/dist/declarations/src/c
|
|
|
125
125
|
};
|
|
126
126
|
alignItems: {
|
|
127
127
|
values: {
|
|
128
|
-
|
|
128
|
+
center: {
|
|
129
129
|
default: string;
|
|
130
130
|
conditions: Record<"xs" | "md" | "lg", string>;
|
|
131
131
|
};
|
|
132
|
-
|
|
132
|
+
stretch: {
|
|
133
133
|
default: string;
|
|
134
134
|
conditions: Record<"xs" | "md" | "lg", string>;
|
|
135
135
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/styles",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.19.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"webpack": "^5.75.0",
|
|
39
39
|
"webpack-cli": "^5.0.0"
|
|
40
40
|
},
|
|
41
|
-
"stableVersion": "4.
|
|
41
|
+
"stableVersion": "4.18.0"
|
|
42
42
|
}
|