@sps-woodland/tokens 7.2.2 → 7.2.4
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/lib/css/tokens.css +8 -2
- package/lib/css/utils.css +1 -1
- package/lib/dictionary.d.ts +348 -33
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +9 -1
- package/lib/scss/tokens.scss +8 -2
- package/lib/scss/utils.scss +1 -1
- package/lib/tokens.d.ts +9 -1
- package/lib/vanilla-extract/sprinkleValues.d.ts +9 -1
- package/package.json +3 -1
- package/src/dictionary.ts +708 -52
- package/src/tokens.ts +9 -1
- package/src/vanilla-extract/sprinkleValues.ts +9 -1
package/lib/index.es.js
CHANGED
|
@@ -1135,7 +1135,15 @@ const Ge = Object.freeze({
|
|
|
1135
1135
|
background: "#ffffff",
|
|
1136
1136
|
"border-left-radius": "0",
|
|
1137
1137
|
"border-right-radius": "0.125rem",
|
|
1138
|
-
"box-shadow-color":
|
|
1138
|
+
"box-shadow-color": {
|
|
1139
|
+
default: "#e9e9ea",
|
|
1140
|
+
key: "#4b5356",
|
|
1141
|
+
warning: "#e7760b",
|
|
1142
|
+
error: "#de002e",
|
|
1143
|
+
pending: "#91467f",
|
|
1144
|
+
success: "#0b8940",
|
|
1145
|
+
info: "#007db8"
|
|
1146
|
+
},
|
|
1139
1147
|
"box-shadow-width": "0.0625rem",
|
|
1140
1148
|
"padding-vertical": "0.125rem",
|
|
1141
1149
|
"padding-horizontal": "0.25rem",
|
package/lib/scss/tokens.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on Tue,
|
|
3
|
+
// Generated on Tue, 07 Mar 2023 14:27:10 GMT
|
|
4
4
|
|
|
5
5
|
$asset-font-source-sans-pro-400-normal: "fonts/source-sans-pro-v9-latin-regular";
|
|
6
6
|
$asset-font-source-sans-pro-400-italic: "fonts/source-sans-pro-v9-latin-italic";
|
|
@@ -231,7 +231,13 @@ $component-key-value-tag-key-section-border-right-radius: 0;
|
|
|
231
231
|
$component-key-value-tag-value-section-background: #ffffff;
|
|
232
232
|
$component-key-value-tag-value-section-border-left-radius: 0;
|
|
233
233
|
$component-key-value-tag-value-section-border-right-radius: 0.125rem;
|
|
234
|
-
$component-key-value-tag-value-section-box-shadow-color: #
|
|
234
|
+
$component-key-value-tag-value-section-box-shadow-color-default: #e9e9ea;
|
|
235
|
+
$component-key-value-tag-value-section-box-shadow-color-key: #4b5356;
|
|
236
|
+
$component-key-value-tag-value-section-box-shadow-color-warning: #e7760b;
|
|
237
|
+
$component-key-value-tag-value-section-box-shadow-color-error: #de002e;
|
|
238
|
+
$component-key-value-tag-value-section-box-shadow-color-pending: #91467f;
|
|
239
|
+
$component-key-value-tag-value-section-box-shadow-color-success: #0b8940;
|
|
240
|
+
$component-key-value-tag-value-section-box-shadow-color-info: #007db8;
|
|
235
241
|
$component-key-value-tag-value-section-box-shadow-width: 0.0625rem;
|
|
236
242
|
$component-key-value-tag-value-section-padding-vertical: 0.125rem;
|
|
237
243
|
$component-key-value-tag-value-section-padding-horizontal: 0.25rem;
|
package/lib/scss/utils.scss
CHANGED
package/lib/tokens.d.ts
CHANGED
|
@@ -399,7 +399,15 @@ export declare const Tokens: Readonly<{
|
|
|
399
399
|
background: string;
|
|
400
400
|
"border-left-radius": string;
|
|
401
401
|
"border-right-radius": string;
|
|
402
|
-
"box-shadow-color":
|
|
402
|
+
"box-shadow-color": {
|
|
403
|
+
default: string;
|
|
404
|
+
key: string;
|
|
405
|
+
warning: string;
|
|
406
|
+
error: string;
|
|
407
|
+
pending: string;
|
|
408
|
+
success: string;
|
|
409
|
+
info: string;
|
|
410
|
+
};
|
|
403
411
|
"box-shadow-width": string;
|
|
404
412
|
"padding-vertical": string;
|
|
405
413
|
"padding-horizontal": string;
|
|
@@ -318,7 +318,15 @@ export declare const sprinkleValues: Readonly<{
|
|
|
318
318
|
background: string;
|
|
319
319
|
"border-left-radius": string;
|
|
320
320
|
"border-right-radius": string;
|
|
321
|
-
"box-shadow-color":
|
|
321
|
+
"box-shadow-color": {
|
|
322
|
+
default: string;
|
|
323
|
+
key: string;
|
|
324
|
+
warning: string;
|
|
325
|
+
error: string;
|
|
326
|
+
pending: string;
|
|
327
|
+
success: string;
|
|
328
|
+
info: string;
|
|
329
|
+
};
|
|
322
330
|
"box-shadow-width": string;
|
|
323
331
|
"padding-vertical": string;
|
|
324
332
|
"padding-horizontal": string;
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sps-woodland/tokens",
|
|
3
3
|
"description": "SPS Design System design tokens",
|
|
4
|
-
"version": "7.2.
|
|
4
|
+
"version": "7.2.4",
|
|
5
5
|
"author": "SPS Commerce",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"repository": "https://github.com/SPSCommerce/woodland/tree/main/packages/@sps-woodland/tokens",
|
|
8
8
|
"homepage": "https://github.com/SPSCommerce/woodland/tree/main/packages/@sps-woodland/tokens#readme",
|
|
9
|
+
"module": "./lib/index.es.js",
|
|
9
10
|
"main": "./lib/index.es.js",
|
|
10
11
|
"types": "./lib/index.d.ts",
|
|
12
|
+
"comments": "switching to `type` module breaks the build process so leaving it as default (commonjs)",
|
|
11
13
|
"exports": {
|
|
12
14
|
".": {
|
|
13
15
|
"require": "./lib/index.cjs.js",
|