@swisspost/design-system-tokens 9.0.0-next.12 → 9.0.0-next.14
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 +9 -0
- package/_channel.scss +1 -1
- package/_components.scss +25 -25
- package/_core.scss +3 -3
- package/_device.scss +1 -1
- package/_elements.scss +1 -1
- package/_helpers.scss +1 -1
- package/_index.scss +1 -1
- package/_palettes.scss +1 -1
- package/_scheme.scss +5 -1
- package/_theme.scss +1 -1
- package/_utilities.scss +9 -1
- package/package.json +8 -3
- package/palettes/_cargo-dark.scss +1 -1
- package/palettes/_cargo-light.scss +1 -1
- package/palettes/_post-dark.scss +1 -1
- package/palettes/_post-light.scss +1 -1
- package/tailwind/helpers.tailwind.js +1 -1
- package/tailwind/utilities.tailwind.js +8 -1
- package/tokens.json +221 -148
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @swisspost/design-system-tokens
|
|
2
2
|
|
|
3
|
+
## 9.0.0-next.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Added a transform function to avoid unitless zero values for specific token types (like `dimension`, etc.), which allows us to use these tokens also in css `calc()` functions. Because `<number-token>`s are always interpreted as `<number>`s or `<integer>`s, "unitless 0" `<length>`s aren’t supported in calc().
|
|
8
|
+
Source: https://drafts.csswg.org/css-values-3/#calc-type-checking (by [@oliverschuerch](https://github.com/oliverschuerch) with [#4534](https://github.com/swisspost/design-system/pull/4534))
|
|
9
|
+
|
|
10
|
+
## 9.0.0-next.13
|
|
11
|
+
|
|
3
12
|
## 9.0.0-next.12
|
|
4
13
|
|
|
5
14
|
## 9.0.0-next.11
|
package/_channel.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit manually
|
|
3
3
|
// This file was generated by the swisspost/design-system-tokens package
|
|
4
|
-
// Tue,
|
|
4
|
+
// Tue, 04 Feb 2025 11:16:05 GMT
|
|
5
5
|
|
|
6
6
|
$post-edk: (
|
|
7
7
|
post-channel-sizing-interactive-height-filler: var(--post-core-dimension-24),
|
package/_components.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit manually
|
|
3
3
|
// This file was generated by the swisspost/design-system-tokens package
|
|
4
|
-
// Tue,
|
|
4
|
+
// Tue, 04 Feb 2025 11:16:05 GMT
|
|
5
5
|
|
|
6
6
|
$post-accordion: (
|
|
7
7
|
post-accordion-header-padding-block-closed: var(--post-device-spacing-padding-19),
|
|
@@ -209,6 +209,16 @@ $post-button: (
|
|
|
209
209
|
post-button-border-style-disabled: var(--post-core-border-style-dash),
|
|
210
210
|
);
|
|
211
211
|
|
|
212
|
+
$post-cards: (
|
|
213
|
+
post-card-border-radius: var(--post-device-border-radius-2),
|
|
214
|
+
post-card-interactive-elevation: var(--post-device-elevation-200),
|
|
215
|
+
post-card-non-interactive-stroke: var(--post-scheme-color-interactive-primary-enabled-stroke4),
|
|
216
|
+
post-card-enabled-bg1: var(--post-theme-color-palettes-alternate-bg),
|
|
217
|
+
post-card-enabled-bg2: var(--post-theme-color-palettes-default-bg),
|
|
218
|
+
post-card-hover-bg: var(--post-scheme-color-interactive-card-hover-bg),
|
|
219
|
+
post-card-hover-fg: var(--post-scheme-color-interactive-card-hover-fg),
|
|
220
|
+
);
|
|
221
|
+
|
|
212
222
|
$post-checkbox: (
|
|
213
223
|
post-checkbox-enabled-bg: var(--post-scheme-color-interactive-primary-enabled-bg3),
|
|
214
224
|
post-checkbox-enabled-fg: var(--post-scheme-color-interactive-primary-enabled-fg1),
|
|
@@ -660,6 +670,20 @@ $post-switch: (
|
|
|
660
670
|
post-switch-border-width: var(--post-device-border-width-alternative1),
|
|
661
671
|
);
|
|
662
672
|
|
|
673
|
+
$post-teaser: (
|
|
674
|
+
post-teaser-card-sm-image-height: var(--post-device-sizing-content-height-1),
|
|
675
|
+
post-teaser-card-sm-section-content-padding: var(--post-device-spacing-padding-5),
|
|
676
|
+
post-teaser-card-sm-section-content-gap: var(--post-device-spacing-gap-7),
|
|
677
|
+
post-teaser-card-sm-heading-font-size: var(--post-device-font-size-5),
|
|
678
|
+
post-teaser-card-sm-content-gap: var(--post-core-dimension-6),
|
|
679
|
+
post-teaser-card-lg-image-height: var(--post-device-sizing-content-height-2),
|
|
680
|
+
post-teaser-card-lg-section-content-padding: var(--post-device-spacing-padding-20),
|
|
681
|
+
post-teaser-card-lg-section-content-gap: var(--post-core-dimension-24),
|
|
682
|
+
post-teaser-card-lg-heading-font-size: var(--post-device-font-size-4),
|
|
683
|
+
post-teaser-card-lg-content-gap: var(--post-device-spacing-gap-block-3),
|
|
684
|
+
post-teaser-card-content-enabled-fg: var(--post-scheme-color-interactive-primary-enabled-fg1),
|
|
685
|
+
);
|
|
686
|
+
|
|
663
687
|
$post-text-area: (
|
|
664
688
|
post-textarea-enabled-bg: var(--post-scheme-color-interactive-input-enabled-bg),
|
|
665
689
|
post-textarea-enabled-fg: var(--post-scheme-color-interactive-input-enabled-fg),
|
|
@@ -779,30 +803,6 @@ $post-toast: (
|
|
|
779
803
|
post-toast-elevation: var(--post-device-elevation-300),
|
|
780
804
|
);
|
|
781
805
|
|
|
782
|
-
$post-teaser: (
|
|
783
|
-
post-teaser-card-sm-image-height: var(--post-device-sizing-content-height-1),
|
|
784
|
-
post-teaser-card-sm-section-content-padding: var(--post-device-spacing-padding-5),
|
|
785
|
-
post-teaser-card-sm-section-content-gap: var(--post-device-spacing-gap-7),
|
|
786
|
-
post-teaser-card-sm-heading-font-size: var(--post-device-font-size-5),
|
|
787
|
-
post-teaser-card-sm-content-gap: var(--post-core-dimension-6),
|
|
788
|
-
post-teaser-card-lg-image-height: var(--post-device-sizing-content-height-2),
|
|
789
|
-
post-teaser-card-lg-section-content-padding: var(--post-device-spacing-padding-20),
|
|
790
|
-
post-teaser-card-lg-section-content-gap: var(--post-core-dimension-24),
|
|
791
|
-
post-teaser-card-lg-heading-font-size: var(--post-device-font-size-4),
|
|
792
|
-
post-teaser-card-lg-content-gap: var(--post-device-spacing-gap-block-3),
|
|
793
|
-
post-teaser-card-enabled-bg: var(--post-scheme-color-interactive-primary-enabled-bg1),
|
|
794
|
-
post-teaser-card-content-enabled-fg: var(--post-scheme-color-interactive-primary-enabled-fg1),
|
|
795
|
-
post-teaser-card-content-hover-fg: var(--post-scheme-color-interactive-primary-hover-fg1),
|
|
796
|
-
post-teaser-card-hover-bg: var(--post-scheme-color-interactive-primary-hover-bg4),
|
|
797
|
-
);
|
|
798
|
-
|
|
799
|
-
$post-cards: (
|
|
800
|
-
post-card-border-radius: var(--post-device-border-radius-3),
|
|
801
|
-
post-card-nested-border-radius: var(--post-device-border-radius-2),
|
|
802
|
-
post-card-interactive-elevation: var(--post-device-elevation-200),
|
|
803
|
-
post-card-non-interactive-stroke: var(--post-scheme-color-interactive-primary-enabled-stroke4),
|
|
804
|
-
);
|
|
805
|
-
|
|
806
806
|
$post-validation: (
|
|
807
807
|
post-validation-group-gap-inline: var(--post-device-spacing-gap-inline-10),
|
|
808
808
|
post-validation-group-icon-size: var(--post-device-sizing-interactive-icon-size4),
|
package/_core.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit manually
|
|
3
3
|
// This file was generated by the swisspost/design-system-tokens package
|
|
4
|
-
// Tue,
|
|
4
|
+
// Tue, 04 Feb 2025 11:16:05 GMT
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
7
|
--post-core-color-brand-postyellow: #ffcc00;
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
--post-core-color-colorless: rgba(255, 255, 255, 0);
|
|
52
52
|
--post-core-color-cargo-green: #00411c;
|
|
53
53
|
--post-core-color-cargo-blue: #aadcff;
|
|
54
|
-
--post-core-dimension-0:
|
|
54
|
+
--post-core-dimension-0: 0px;
|
|
55
55
|
--post-core-dimension-1: 1px;
|
|
56
56
|
--post-core-dimension-2: 2px;
|
|
57
57
|
--post-core-dimension-3: 3px;
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
--post-core-line-height-120: 1.2;
|
|
134
134
|
--post-core-line-height-150: 1.5;
|
|
135
135
|
--post-core-letter-spacing-default: 0.0012em;
|
|
136
|
-
--post-core-letter-spacing-none:
|
|
136
|
+
--post-core-letter-spacing-none: 0px;
|
|
137
137
|
--post-core-font-family-swiss-post: 'Swiss Post Sans';
|
|
138
138
|
--post-core-elevation-1: 0 1px 2px 0 rgba(0,0,0,0.16), 0 0 2px 0 rgba(0,0,0,0.16);
|
|
139
139
|
--post-core-elevation-2: 0 2px 4px 0 rgba(0,0,0,0.16), 0 0 2px 0 rgba(0,0,0,0.16);
|
package/_device.scss
CHANGED
package/_elements.scss
CHANGED
package/_helpers.scss
CHANGED
package/_index.scss
CHANGED
package/_palettes.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit manually
|
|
3
3
|
// This file was generated by the swisspost/design-system-tokens package
|
|
4
|
-
// Tue,
|
|
4
|
+
// Tue, 04 Feb 2025 11:16:05 GMT
|
|
5
5
|
|
|
6
6
|
$post-palettes: (
|
|
7
7
|
post-palettes-color-default-bg: var(--post-theme-color-palettes-default-bg),
|
package/_scheme.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit manually
|
|
3
3
|
// This file was generated by the swisspost/design-system-tokens package
|
|
4
|
-
// Tue,
|
|
4
|
+
// Tue, 04 Feb 2025 11:16:05 GMT
|
|
5
5
|
|
|
6
6
|
$post-light: (
|
|
7
7
|
post-scheme-color-signal-success-dark: var(--post-core-color-notification-green),
|
|
@@ -133,6 +133,8 @@ $post-light: (
|
|
|
133
133
|
post-scheme-color-interactive-input-disabled-bg: var(--post-core-color-colorless),
|
|
134
134
|
post-scheme-color-interactive-input-disabled-fg: var(--post-core-color-sandgrey-060),
|
|
135
135
|
post-scheme-color-interactive-input-disabled-border: var(--post-core-color-sandgrey-060),
|
|
136
|
+
post-scheme-color-interactive-card-hover-bg: var(--post-core-color-sandgrey-060),
|
|
137
|
+
post-scheme-color-interactive-card-hover-fg: var(--post-core-color-brand-white),
|
|
136
138
|
post-scheme-color-surface-default-bg: var(--post-core-color-sandgrey-002),
|
|
137
139
|
post-scheme-color-surface-default-fg: var(--post-core-color-sandgrey-100),
|
|
138
140
|
post-scheme-color-surface-default-stroke: var(--post-core-color-sandgrey-100),
|
|
@@ -296,6 +298,8 @@ $post-dark: (
|
|
|
296
298
|
post-scheme-color-interactive-input-disabled-bg: var(--post-core-color-colorless),
|
|
297
299
|
post-scheme-color-interactive-input-disabled-fg: var(--post-core-color-sandgrey-alpha-lightsand-60),
|
|
298
300
|
post-scheme-color-interactive-input-disabled-border: var(--post-core-color-sandgrey-alpha-lightsand-60),
|
|
301
|
+
post-scheme-color-interactive-card-hover-bg: var(--post-core-color-sandgrey-060),
|
|
302
|
+
post-scheme-color-interactive-card-hover-fg: var(--post-core-color-brand-white),
|
|
299
303
|
post-scheme-color-surface-default-bg: var(--post-core-color-sandgrey-080),
|
|
300
304
|
post-scheme-color-surface-default-fg: var(--post-core-color-brand-white),
|
|
301
305
|
post-scheme-color-surface-default-stroke: var(--post-core-color-brand-white),
|
package/_theme.scss
CHANGED
package/_utilities.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit manually
|
|
3
3
|
// This file was generated by the swisspost/design-system-tokens package
|
|
4
|
-
// Tue,
|
|
4
|
+
// Tue, 04 Feb 2025 11:16:05 GMT
|
|
5
5
|
|
|
6
6
|
$post-spacing: (
|
|
7
7
|
post-utility-margin-0: var(--post-core-dimension-0),
|
|
@@ -117,6 +117,14 @@ $post-color: (
|
|
|
117
117
|
post-utility-surface-accent4: var(--post-core-color-sandgrey-080),
|
|
118
118
|
);
|
|
119
119
|
|
|
120
|
+
$post-elevation: (
|
|
121
|
+
post-utility-elevation-100: var(--post-device-elevation-100),
|
|
122
|
+
post-utility-elevation-200: var(--post-device-elevation-200),
|
|
123
|
+
post-utility-elevation-300: var(--post-device-elevation-300),
|
|
124
|
+
post-utility-elevation-400: var(--post-device-elevation-400),
|
|
125
|
+
post-utility-elevation-500: var(--post-device-elevation-500),
|
|
126
|
+
);
|
|
127
|
+
|
|
120
128
|
$post-typo: (
|
|
121
129
|
post-utility-font-size-sm: var(--post-device-font-size-7),
|
|
122
130
|
post-utility-font-size-md: var(--post-device-font-size-6),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swisspost/design-system-tokens",
|
|
3
|
-
"version": "9.0.0-next.
|
|
3
|
+
"version": "9.0.0-next.14",
|
|
4
4
|
"description": "Design Tokens for the Swiss Post Design System.",
|
|
5
5
|
"author": "Swiss Post <design-system@post.ch>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,15 +27,20 @@
|
|
|
27
27
|
"linkDirectory": true
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
+
"@eslint/js": "9.18.0",
|
|
30
31
|
"@tokens-studio/sd-transforms": "1.2.9",
|
|
31
32
|
"copyfiles": "2.4.1",
|
|
33
|
+
"eslint": "9.18.0",
|
|
34
|
+
"globals": "15.14.0",
|
|
32
35
|
"rimraf": "6.0.1",
|
|
33
36
|
"style-dictionary": "4.3.0"
|
|
34
37
|
},
|
|
35
38
|
"scripts": {
|
|
36
|
-
"copy-files": "copyfiles -f package.json README.md CONTRIBUTING.md CHANGELOG.md LICENSE dist",
|
|
37
39
|
"build": "pnpm clean && node ./build.js && pnpm copy-files",
|
|
40
|
+
"build:verbose": "node ./build.js --verbosity=verbose",
|
|
38
41
|
"clean": "rimraf dist",
|
|
39
|
-
"
|
|
42
|
+
"lint": "eslint",
|
|
43
|
+
"lint:fix": "eslint --fix",
|
|
44
|
+
"copy-files": "copyfiles -f package.json README.md CONTRIBUTING.md CHANGELOG.md LICENSE dist"
|
|
40
45
|
}
|
|
41
46
|
}
|
package/palettes/_post-dark.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit manually
|
|
3
3
|
// This file was generated by the swisspost/design-system-tokens package
|
|
4
|
-
// Tue,
|
|
4
|
+
// Tue, 04 Feb 2025 11:16:05 GMT
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
7
|
utility: {
|
|
@@ -121,6 +121,13 @@ export default {
|
|
|
121
121
|
accent3: 'var(--post-core-color-brand-postyellow)',
|
|
122
122
|
accent4: 'var(--post-core-color-sandgrey-080)',
|
|
123
123
|
},
|
|
124
|
+
'elevation': {
|
|
125
|
+
100: 'var(--post-device-elevation-100)',
|
|
126
|
+
200: 'var(--post-device-elevation-200)',
|
|
127
|
+
300: 'var(--post-device-elevation-300)',
|
|
128
|
+
400: 'var(--post-device-elevation-400)',
|
|
129
|
+
500: 'var(--post-device-elevation-500)',
|
|
130
|
+
},
|
|
124
131
|
'font-size': {
|
|
125
132
|
sm: 'var(--post-device-font-size-7)',
|
|
126
133
|
md: 'var(--post-device-font-size-6)',
|
package/tokens.json
CHANGED
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
},
|
|
338
338
|
"50": {
|
|
339
339
|
"$type": "dimension",
|
|
340
|
-
"$value": "
|
|
340
|
+
"$value": "50"
|
|
341
341
|
},
|
|
342
342
|
"56": {
|
|
343
343
|
"$type": "dimension",
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
},
|
|
346
346
|
"58": {
|
|
347
347
|
"$type": "dimension",
|
|
348
|
-
"$value": "
|
|
348
|
+
"$value": "58"
|
|
349
349
|
},
|
|
350
350
|
"64": {
|
|
351
351
|
"$type": "dimension",
|
|
@@ -365,11 +365,11 @@
|
|
|
365
365
|
},
|
|
366
366
|
"82": {
|
|
367
367
|
"$type": "dimension",
|
|
368
|
-
"$value": "
|
|
368
|
+
"$value": "82"
|
|
369
369
|
},
|
|
370
370
|
"88": {
|
|
371
371
|
"$type": "dimension",
|
|
372
|
-
"$value": "
|
|
372
|
+
"$value": "88"
|
|
373
373
|
},
|
|
374
374
|
"96": {
|
|
375
375
|
"$type": "dimension",
|
|
@@ -385,23 +385,23 @@
|
|
|
385
385
|
},
|
|
386
386
|
"164": {
|
|
387
387
|
"$type": "dimension",
|
|
388
|
-
"$value": "
|
|
388
|
+
"$value": "164"
|
|
389
389
|
},
|
|
390
390
|
"180": {
|
|
391
391
|
"$type": "dimension",
|
|
392
|
-
"$value": "
|
|
392
|
+
"$value": "180"
|
|
393
393
|
},
|
|
394
394
|
"188": {
|
|
395
395
|
"$type": "dimension",
|
|
396
|
-
"$value": "
|
|
396
|
+
"$value": "188"
|
|
397
397
|
},
|
|
398
398
|
"240": {
|
|
399
399
|
"$type": "dimension",
|
|
400
|
-
"$value": "
|
|
400
|
+
"$value": "240"
|
|
401
401
|
},
|
|
402
402
|
"312": {
|
|
403
403
|
"$type": "dimension",
|
|
404
|
-
"$value": "
|
|
404
|
+
"$value": "312"
|
|
405
405
|
},
|
|
406
406
|
"1280": {
|
|
407
407
|
"$type": "dimension",
|
|
@@ -1274,6 +1274,18 @@
|
|
|
1274
1274
|
"$value": "{post.core.color.sandgrey.060}"
|
|
1275
1275
|
}
|
|
1276
1276
|
}
|
|
1277
|
+
},
|
|
1278
|
+
"card": {
|
|
1279
|
+
"hover": {
|
|
1280
|
+
"bg": {
|
|
1281
|
+
"$type": "color",
|
|
1282
|
+
"$value": "{post.core.color.sandgrey.060}"
|
|
1283
|
+
},
|
|
1284
|
+
"fg": {
|
|
1285
|
+
"$type": "color",
|
|
1286
|
+
"$value": "{post.core.color.brand.white}"
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1277
1289
|
}
|
|
1278
1290
|
},
|
|
1279
1291
|
"surface": {
|
|
@@ -5147,6 +5159,44 @@
|
|
|
5147
5159
|
}
|
|
5148
5160
|
}
|
|
5149
5161
|
},
|
|
5162
|
+
"Components/Cards": {
|
|
5163
|
+
"post": {
|
|
5164
|
+
"card": {
|
|
5165
|
+
"border-radius": {
|
|
5166
|
+
"$type": "borderRadius",
|
|
5167
|
+
"$value": "{post.device.border-radius.2}"
|
|
5168
|
+
},
|
|
5169
|
+
"interactive": {
|
|
5170
|
+
"elevation": {
|
|
5171
|
+
"$type": "boxShadow",
|
|
5172
|
+
"$value": "{post.device.elevation.200}"
|
|
5173
|
+
}
|
|
5174
|
+
},
|
|
5175
|
+
"non-interactive": {
|
|
5176
|
+
"stroke": {
|
|
5177
|
+
"$type": "color",
|
|
5178
|
+
"$value": "{post.scheme.color.interactive.primary.enabled.stroke4}"
|
|
5179
|
+
}
|
|
5180
|
+
},
|
|
5181
|
+
"enabled-bg1": {
|
|
5182
|
+
"$type": "color",
|
|
5183
|
+
"$value": "{post.theme.color.palettes.alternate.bg}"
|
|
5184
|
+
},
|
|
5185
|
+
"enabled-bg2": {
|
|
5186
|
+
"$type": "color",
|
|
5187
|
+
"$value": "{post.theme.color.palettes.default.bg}"
|
|
5188
|
+
},
|
|
5189
|
+
"hover-bg": {
|
|
5190
|
+
"$type": "color",
|
|
5191
|
+
"$value": "{post.scheme.color.interactive.card.hover.bg}"
|
|
5192
|
+
},
|
|
5193
|
+
"hover-fg": {
|
|
5194
|
+
"$type": "color",
|
|
5195
|
+
"$value": "{post.scheme.color.interactive.card.hover.fg}"
|
|
5196
|
+
}
|
|
5197
|
+
}
|
|
5198
|
+
}
|
|
5199
|
+
},
|
|
5150
5200
|
"Components/Checkbox": {
|
|
5151
5201
|
"post": {
|
|
5152
5202
|
"checkbox": {
|
|
@@ -7215,6 +7265,84 @@
|
|
|
7215
7265
|
}
|
|
7216
7266
|
}
|
|
7217
7267
|
},
|
|
7268
|
+
"Components/Teaser": {
|
|
7269
|
+
"post": {
|
|
7270
|
+
"teaser": {
|
|
7271
|
+
"card": {
|
|
7272
|
+
"sm": {
|
|
7273
|
+
"image": {
|
|
7274
|
+
"height": {
|
|
7275
|
+
"$type": "sizing",
|
|
7276
|
+
"$value": "{post.device.sizing.content.height.1}"
|
|
7277
|
+
}
|
|
7278
|
+
},
|
|
7279
|
+
"section": {
|
|
7280
|
+
"content": {
|
|
7281
|
+
"padding": {
|
|
7282
|
+
"$type": "spacing",
|
|
7283
|
+
"$value": "{post.device.spacing.padding.5}"
|
|
7284
|
+
},
|
|
7285
|
+
"gap": {
|
|
7286
|
+
"$type": "spacing",
|
|
7287
|
+
"$value": "{post.device.spacing.gap.7}"
|
|
7288
|
+
}
|
|
7289
|
+
}
|
|
7290
|
+
},
|
|
7291
|
+
"heading": {
|
|
7292
|
+
"font-size": {
|
|
7293
|
+
"$type": "fontSizes",
|
|
7294
|
+
"$value": "{post.device.font-size.5}"
|
|
7295
|
+
}
|
|
7296
|
+
},
|
|
7297
|
+
"content": {
|
|
7298
|
+
"gap": {
|
|
7299
|
+
"$type": "spacing",
|
|
7300
|
+
"$value": "{post.core.dimension.6}"
|
|
7301
|
+
}
|
|
7302
|
+
}
|
|
7303
|
+
},
|
|
7304
|
+
"lg": {
|
|
7305
|
+
"image": {
|
|
7306
|
+
"height": {
|
|
7307
|
+
"$type": "sizing",
|
|
7308
|
+
"$value": "{post.device.sizing.content.height.2}"
|
|
7309
|
+
}
|
|
7310
|
+
},
|
|
7311
|
+
"section": {
|
|
7312
|
+
"content": {
|
|
7313
|
+
"padding": {
|
|
7314
|
+
"$type": "spacing",
|
|
7315
|
+
"$value": "{post.device.spacing.padding.20}"
|
|
7316
|
+
},
|
|
7317
|
+
"gap": {
|
|
7318
|
+
"$type": "spacing",
|
|
7319
|
+
"$value": "{post.core.dimension.24}"
|
|
7320
|
+
}
|
|
7321
|
+
}
|
|
7322
|
+
},
|
|
7323
|
+
"heading": {
|
|
7324
|
+
"font-size": {
|
|
7325
|
+
"$type": "fontSizes",
|
|
7326
|
+
"$value": "{post.device.font-size.4}"
|
|
7327
|
+
}
|
|
7328
|
+
},
|
|
7329
|
+
"content": {
|
|
7330
|
+
"gap": {
|
|
7331
|
+
"$type": "spacing",
|
|
7332
|
+
"$value": "{post.device.spacing.gap.block.3}"
|
|
7333
|
+
}
|
|
7334
|
+
}
|
|
7335
|
+
},
|
|
7336
|
+
"content": {
|
|
7337
|
+
"enabled-fg": {
|
|
7338
|
+
"$type": "color",
|
|
7339
|
+
"$value": "{post.scheme.color.interactive.primary.enabled.fg1}"
|
|
7340
|
+
}
|
|
7341
|
+
}
|
|
7342
|
+
}
|
|
7343
|
+
}
|
|
7344
|
+
}
|
|
7345
|
+
},
|
|
7218
7346
|
"Components/Text area": {
|
|
7219
7347
|
"post": {
|
|
7220
7348
|
"textarea": {
|
|
@@ -7801,124 +7929,6 @@
|
|
|
7801
7929
|
}
|
|
7802
7930
|
}
|
|
7803
7931
|
},
|
|
7804
|
-
"Components/Teaser": {
|
|
7805
|
-
"post": {
|
|
7806
|
-
"teaser": {
|
|
7807
|
-
"card": {
|
|
7808
|
-
"sm": {
|
|
7809
|
-
"image": {
|
|
7810
|
-
"height": {
|
|
7811
|
-
"$type": "sizing",
|
|
7812
|
-
"$value": "{post.device.sizing.content.height.1}"
|
|
7813
|
-
}
|
|
7814
|
-
},
|
|
7815
|
-
"section": {
|
|
7816
|
-
"content": {
|
|
7817
|
-
"padding": {
|
|
7818
|
-
"$type": "spacing",
|
|
7819
|
-
"$value": "{post.device.spacing.padding.5}"
|
|
7820
|
-
},
|
|
7821
|
-
"gap": {
|
|
7822
|
-
"$type": "spacing",
|
|
7823
|
-
"$value": "{post.device.spacing.gap.7}"
|
|
7824
|
-
}
|
|
7825
|
-
}
|
|
7826
|
-
},
|
|
7827
|
-
"heading": {
|
|
7828
|
-
"font-size": {
|
|
7829
|
-
"$type": "fontSizes",
|
|
7830
|
-
"$value": "{post.device.font-size.5}"
|
|
7831
|
-
}
|
|
7832
|
-
},
|
|
7833
|
-
"content": {
|
|
7834
|
-
"gap": {
|
|
7835
|
-
"$type": "spacing",
|
|
7836
|
-
"$value": "{post.core.dimension.6}"
|
|
7837
|
-
}
|
|
7838
|
-
}
|
|
7839
|
-
},
|
|
7840
|
-
"lg": {
|
|
7841
|
-
"image": {
|
|
7842
|
-
"height": {
|
|
7843
|
-
"$type": "sizing",
|
|
7844
|
-
"$value": "{post.device.sizing.content.height.2}"
|
|
7845
|
-
}
|
|
7846
|
-
},
|
|
7847
|
-
"section": {
|
|
7848
|
-
"content": {
|
|
7849
|
-
"padding": {
|
|
7850
|
-
"$type": "spacing",
|
|
7851
|
-
"$value": "{post.device.spacing.padding.20}"
|
|
7852
|
-
},
|
|
7853
|
-
"gap": {
|
|
7854
|
-
"$type": "spacing",
|
|
7855
|
-
"$value": "{post.core.dimension.24}"
|
|
7856
|
-
}
|
|
7857
|
-
}
|
|
7858
|
-
},
|
|
7859
|
-
"heading": {
|
|
7860
|
-
"font-size": {
|
|
7861
|
-
"$type": "fontSizes",
|
|
7862
|
-
"$value": "{post.device.font-size.4}"
|
|
7863
|
-
}
|
|
7864
|
-
},
|
|
7865
|
-
"content": {
|
|
7866
|
-
"gap": {
|
|
7867
|
-
"$type": "spacing",
|
|
7868
|
-
"$value": "{post.device.spacing.gap.block.3}"
|
|
7869
|
-
}
|
|
7870
|
-
}
|
|
7871
|
-
},
|
|
7872
|
-
"enabled-bg": {
|
|
7873
|
-
"$type": "color",
|
|
7874
|
-
"$value": "{post.scheme.color.interactive.primary.enabled.bg1}"
|
|
7875
|
-
},
|
|
7876
|
-
"content": {
|
|
7877
|
-
"enabled-fg": {
|
|
7878
|
-
"$type": "color",
|
|
7879
|
-
"$value": "{post.scheme.color.interactive.primary.enabled.fg1}"
|
|
7880
|
-
},
|
|
7881
|
-
"hover-fg": {
|
|
7882
|
-
"$type": "color",
|
|
7883
|
-
"$value": "{post.scheme.color.interactive.primary.hover.fg1}"
|
|
7884
|
-
}
|
|
7885
|
-
},
|
|
7886
|
-
"hover-bg": {
|
|
7887
|
-
"$type": "color",
|
|
7888
|
-
"$value": "{post.scheme.color.interactive.primary.hover.bg4}"
|
|
7889
|
-
}
|
|
7890
|
-
}
|
|
7891
|
-
}
|
|
7892
|
-
}
|
|
7893
|
-
},
|
|
7894
|
-
"Components/Cards": {
|
|
7895
|
-
"post": {
|
|
7896
|
-
"card": {
|
|
7897
|
-
"border-radius": {
|
|
7898
|
-
"$type": "borderRadius",
|
|
7899
|
-
"$value": "{post.device.border-radius.3}"
|
|
7900
|
-
},
|
|
7901
|
-
"nested": {
|
|
7902
|
-
"border-radius": {
|
|
7903
|
-
"$type": "borderRadius",
|
|
7904
|
-
"$value": "{post.device.border-radius.2}"
|
|
7905
|
-
}
|
|
7906
|
-
},
|
|
7907
|
-
"interactive": {
|
|
7908
|
-
"elevation": {
|
|
7909
|
-
"$type": "boxShadow",
|
|
7910
|
-
"$value": "{post.device.elevation.200}"
|
|
7911
|
-
}
|
|
7912
|
-
},
|
|
7913
|
-
"non-interactive": {
|
|
7914
|
-
"stroke": {
|
|
7915
|
-
"$type": "color",
|
|
7916
|
-
"$value": "{post.scheme.color.interactive.primary.enabled.stroke4}"
|
|
7917
|
-
}
|
|
7918
|
-
}
|
|
7919
|
-
}
|
|
7920
|
-
}
|
|
7921
|
-
},
|
|
7922
7932
|
"Components/Validation": {
|
|
7923
7933
|
"post": {
|
|
7924
7934
|
"validation": {
|
|
@@ -8064,7 +8074,7 @@
|
|
|
8064
8074
|
"fontWeight": "{post.body.font-weight}",
|
|
8065
8075
|
"fontSize": "{post.device.font-size.5}",
|
|
8066
8076
|
"lineHeight": "{post.device.line-height.content}",
|
|
8067
|
-
"letterSpacing": "{post.
|
|
8077
|
+
"letterSpacing": "{post.body.letter-spacing}"
|
|
8068
8078
|
}
|
|
8069
8079
|
},
|
|
8070
8080
|
"paragraph-m": {
|
|
@@ -8083,8 +8093,8 @@
|
|
|
8083
8093
|
"fontFamily": "{post.body.font-family}",
|
|
8084
8094
|
"fontWeight": "{post.body.font-weight}",
|
|
8085
8095
|
"fontSize": "{post.device.font-size.7}",
|
|
8086
|
-
"lineHeight": "{post.
|
|
8087
|
-
"letterSpacing": "{post.
|
|
8096
|
+
"lineHeight": "{post.body.line-height}",
|
|
8097
|
+
"letterSpacing": "{post.body.letter-spacing}"
|
|
8088
8098
|
}
|
|
8089
8099
|
}
|
|
8090
8100
|
},
|
|
@@ -8092,11 +8102,11 @@
|
|
|
8092
8102
|
"small": {
|
|
8093
8103
|
"$type": "typography",
|
|
8094
8104
|
"$value": {
|
|
8095
|
-
"fontFamily": "{post.device.font-family.default}",
|
|
8096
8105
|
"fontWeight": "{post.device.font-weight.bold}",
|
|
8097
8106
|
"fontSize": "{post.device.font-size.6}",
|
|
8098
|
-
"lineHeight": "{post.
|
|
8099
|
-
"letterSpacing": "{post.
|
|
8107
|
+
"lineHeight": "{post.legend.line-height}",
|
|
8108
|
+
"letterSpacing": "{post.body.letter-spacing}",
|
|
8109
|
+
"fontFamily": "{post.body.font-family}"
|
|
8100
8110
|
}
|
|
8101
8111
|
},
|
|
8102
8112
|
"large": {
|
|
@@ -8114,41 +8124,41 @@
|
|
|
8114
8124
|
"default": {
|
|
8115
8125
|
"$type": "typography",
|
|
8116
8126
|
"$value": {
|
|
8117
|
-
"fontFamily": "{post.
|
|
8127
|
+
"fontFamily": "{post.body.font-family}",
|
|
8118
8128
|
"fontWeight": "{post.device.font-weight.regular}",
|
|
8119
8129
|
"fontSize": "{post.device.font-size.6}",
|
|
8120
8130
|
"lineHeight": "{post.device.line-height.label}",
|
|
8121
|
-
"letterSpacing": "{post.
|
|
8131
|
+
"letterSpacing": "{post.body.letter-spacing}"
|
|
8122
8132
|
}
|
|
8123
8133
|
},
|
|
8124
8134
|
"default-bold": {
|
|
8125
8135
|
"$type": "typography",
|
|
8126
8136
|
"$value": {
|
|
8127
|
-
"fontFamily": "{post.
|
|
8137
|
+
"fontFamily": "{post.body.font-family}",
|
|
8128
8138
|
"fontWeight": "{post.device.font-weight.bold}",
|
|
8129
8139
|
"fontSize": "{post.device.font-size.6}",
|
|
8130
8140
|
"lineHeight": "{post.device.line-height.label}",
|
|
8131
|
-
"letterSpacing": "{post.
|
|
8141
|
+
"letterSpacing": "{post.body.letter-spacing}"
|
|
8132
8142
|
}
|
|
8133
8143
|
},
|
|
8134
8144
|
"medium": {
|
|
8135
8145
|
"$type": "typography",
|
|
8136
8146
|
"$value": {
|
|
8137
|
-
"fontFamily": "{post.
|
|
8147
|
+
"fontFamily": "{post.body.font-family}",
|
|
8138
8148
|
"fontWeight": "{post.device.font-weight.regular}",
|
|
8139
8149
|
"fontSize": "{post.device.font-size.8}",
|
|
8140
8150
|
"lineHeight": "{post.device.line-height.label}",
|
|
8141
|
-
"letterSpacing": "{post.
|
|
8151
|
+
"letterSpacing": "{post.body.letter-spacing}"
|
|
8142
8152
|
}
|
|
8143
8153
|
},
|
|
8144
8154
|
"medium-bold": {
|
|
8145
8155
|
"$type": "typography",
|
|
8146
8156
|
"$value": {
|
|
8147
|
-
"fontFamily": "{post.
|
|
8157
|
+
"fontFamily": "{post.body.font-family}",
|
|
8148
8158
|
"fontWeight": "{post.device.font-weight.bold}",
|
|
8149
8159
|
"fontSize": "{post.device.font-size.8}",
|
|
8150
8160
|
"lineHeight": "{post.device.line-height.label}",
|
|
8151
|
-
"letterSpacing": "{post.
|
|
8161
|
+
"letterSpacing": "{post.body.letter-spacing}"
|
|
8152
8162
|
}
|
|
8153
8163
|
},
|
|
8154
8164
|
"small": {
|
|
@@ -8164,21 +8174,21 @@
|
|
|
8164
8174
|
"smaller": {
|
|
8165
8175
|
"$type": "typography",
|
|
8166
8176
|
"$value": {
|
|
8167
|
-
"fontFamily": "{post.
|
|
8177
|
+
"fontFamily": "{post.body.font-family}",
|
|
8168
8178
|
"fontWeight": "{post.device.font-weight.regular}",
|
|
8169
8179
|
"fontSize": "{post.device.font-size.10}",
|
|
8170
8180
|
"lineHeight": "{post.device.line-height.label}",
|
|
8171
|
-
"letterSpacing": "{post.
|
|
8181
|
+
"letterSpacing": "{post.body.letter-spacing}"
|
|
8172
8182
|
}
|
|
8173
8183
|
},
|
|
8174
8184
|
"extrasmall": {
|
|
8175
8185
|
"$type": "typography",
|
|
8176
8186
|
"$value": {
|
|
8177
|
-
"fontFamily": "{post.
|
|
8187
|
+
"fontFamily": "{post.body.font-family}",
|
|
8178
8188
|
"fontWeight": "{post.device.font-weight.regular}",
|
|
8179
8189
|
"fontSize": "{post.device.font-size.11}",
|
|
8180
8190
|
"lineHeight": "{post.device.line-height.label}",
|
|
8181
|
-
"letterSpacing": "{post.
|
|
8191
|
+
"letterSpacing": "{post.body.letter-spacing}"
|
|
8182
8192
|
}
|
|
8183
8193
|
}
|
|
8184
8194
|
},
|
|
@@ -8716,6 +8726,34 @@
|
|
|
8716
8726
|
}
|
|
8717
8727
|
}
|
|
8718
8728
|
},
|
|
8729
|
+
"Utilities/Elevation": {
|
|
8730
|
+
"post": {
|
|
8731
|
+
"utility": {
|
|
8732
|
+
"elevation": {
|
|
8733
|
+
"100": {
|
|
8734
|
+
"$type": "boxShadow",
|
|
8735
|
+
"$value": "{post.device.elevation.100}"
|
|
8736
|
+
},
|
|
8737
|
+
"200": {
|
|
8738
|
+
"$type": "boxShadow",
|
|
8739
|
+
"$value": "{post.device.elevation.200}"
|
|
8740
|
+
},
|
|
8741
|
+
"300": {
|
|
8742
|
+
"$type": "boxShadow",
|
|
8743
|
+
"$value": "{post.device.elevation.300}"
|
|
8744
|
+
},
|
|
8745
|
+
"400": {
|
|
8746
|
+
"$type": "boxShadow",
|
|
8747
|
+
"$value": "{post.device.elevation.400}"
|
|
8748
|
+
},
|
|
8749
|
+
"500": {
|
|
8750
|
+
"$type": "boxShadow",
|
|
8751
|
+
"$value": "{post.device.elevation.500}"
|
|
8752
|
+
}
|
|
8753
|
+
}
|
|
8754
|
+
}
|
|
8755
|
+
}
|
|
8756
|
+
},
|
|
8719
8757
|
"Utilities/Typo": {
|
|
8720
8758
|
"post": {
|
|
8721
8759
|
"utility": {
|
|
@@ -8979,6 +9017,11 @@
|
|
|
8979
9017
|
"post.core.dimension.96": "c284ed2b1cd135012ce6f9a7b7709b031550b4ab",
|
|
8980
9018
|
"post.core.dimension.100": "a6b405b6955da9114e41712fd7f8413e018c81c9",
|
|
8981
9019
|
"post.core.dimension.112": "483e4eb70ead94af3bac5727f4021e10f46e6eaf",
|
|
9020
|
+
"post.core.dimension.164": "d4e897de6a06427c57c11b83961582eb008a5b86",
|
|
9021
|
+
"post.core.dimension.180": "695dddb74cfb20e35975daeff720ae3c3b7d80a5",
|
|
9022
|
+
"post.core.dimension.188": "32589adde559f453f65e33b4efc88278897810c4",
|
|
9023
|
+
"post.core.dimension.240": "a4338047ba85e11dee1fcd657803da80c42921a8",
|
|
9024
|
+
"post.core.dimension.312": "e637f041fe5f68c44510fa6b2626da0ad59cb7af",
|
|
8982
9025
|
"post.core.dimension.1280": "80e7b3e1755e8cdce684d233544da4d76fd698dc",
|
|
8983
9026
|
"post.core.dimension.5-5": "972288dd1addb9aae5e34073da7683bc7f0a99fd",
|
|
8984
9027
|
"post.core.dimension.6-5": "ef1aee12a8f7f938117c4de244a4f37d7dfad29f",
|
|
@@ -9178,6 +9221,8 @@
|
|
|
9178
9221
|
"post.cargo.scheme.color.surface.accent.fg-accent": "9d2202f6c4937b0a006f5bf8886480984ab8efb2",
|
|
9179
9222
|
"post.scheme.color.signal.neutral-dark": "790da7ad43fa67de3b2da99582d332791fb09e9f",
|
|
9180
9223
|
"post.scheme.color.signal.neutral": "daad7eeff08d93aeed6c1ad67af23e58bdffd198",
|
|
9224
|
+
"post.scheme.color.interactive.primary.enabled.stroke4": "f1f06537fe6c95eec77840e0dab059e57cc12e74",
|
|
9225
|
+
"post.scheme.color.interactive.primary.hover.bg4": "d3918bf7c67c4a7affab4f0d215c04e4466ef6ff",
|
|
9181
9226
|
"post.scheme.color.interactive.input.enabled.bg": "ee1559ba9c687a96a4f52b60241ad08d6af675ef",
|
|
9182
9227
|
"post.scheme.color.interactive.input.enabled.fg": "c0b646bc7315b3eb57777ada948f08b0fd3d718d",
|
|
9183
9228
|
"post.scheme.color.interactive.input.enabled.border": "0acd1351445659355ab8d6f7f370fe1c217ebe91",
|
|
@@ -9274,6 +9319,7 @@
|
|
|
9274
9319
|
"post.scheme.color.interactive.primary.enabled.bg2": "150fee6272f684bfe2932f0fc85f5b988a749191",
|
|
9275
9320
|
"post.scheme.color.interactive.primary.enabled.stroke3": "915dad4def2d9fda8bd134433dafb0b433520681",
|
|
9276
9321
|
"post.scheme.color.interactive.primary.enabled.bg3": "2ce7249ce3193851128c93a6f2b7ef668ae528ae",
|
|
9322
|
+
"post.scheme.color.interactive.primary.enabled.stroke4": "f1f06537fe6c95eec77840e0dab059e57cc12e74",
|
|
9277
9323
|
"post.scheme.color.interactive.primary.hover.bg": "7aedb66803c7fad003929ca6c81bb7d7737b0d57",
|
|
9278
9324
|
"post.scheme.color.interactive.primary.hover.fg1": "7ef9cbf8cb729ee722b988ddac31fd390616e276",
|
|
9279
9325
|
"post.scheme.color.interactive.primary.hover.stroke": "9e140f920b59b23489a7c75c4b6990ee27d39cb4",
|
|
@@ -9281,6 +9327,7 @@
|
|
|
9281
9327
|
"post.scheme.color.interactive.primary.hover.bg2": "367bc693723ef1f5c1f9c0961eeb4ab430b9319a",
|
|
9282
9328
|
"post.scheme.color.interactive.primary.hover.stroke3": "14a61f7a4a47175acaef2dd2464dca3c3b7bfb68",
|
|
9283
9329
|
"post.scheme.color.interactive.primary.hover.bg3": "bb64afac2be48ddd31b986e67cd8338ebf30c3cc",
|
|
9330
|
+
"post.scheme.color.interactive.primary.hover.bg4": "d3918bf7c67c4a7affab4f0d215c04e4466ef6ff",
|
|
9284
9331
|
"post.scheme.color.interactive.primary.disabled.bg": "a2b9d1dcc588fb5bd222834e7583e8cfab2c4e88",
|
|
9285
9332
|
"post.scheme.color.interactive.primary.disabled.fg1": "f5fd0ffa2898c59c2589c2f9c6f958ada58fec31",
|
|
9286
9333
|
"post.scheme.color.interactive.primary.disabled.stroke": "1174333c039cf82fded01d5674787c0587c1b043",
|
|
@@ -9395,6 +9442,7 @@
|
|
|
9395
9442
|
"post.device.spacing.padding.9": "c0b5a059bf7cd0b40c2f02d89edeec9fe7871c93",
|
|
9396
9443
|
"post.device.spacing.padding.10": "d1b5c21d7ecc760ef668bf2fff454f8404b035ae",
|
|
9397
9444
|
"post.device.spacing.padding.19": "55dc6cc8355fad96a60db1e72fed720653a15b52",
|
|
9445
|
+
"post.device.spacing.padding.20": "22e4ea167fefef44efa7dcf2ffb98e4da74d5ce3",
|
|
9398
9446
|
"post.device.spacing.padding.block.1": "df1d5f20317d135e92c2f76c6de8670f83d52045",
|
|
9399
9447
|
"post.device.spacing.padding.block.3": "931df8e83a599b6ed42ac07836bb9f628df95a11",
|
|
9400
9448
|
"post.device.spacing.padding.block.6": "fb123d11d6498d112c4d36a4fdef5bacafae88ae",
|
|
@@ -9446,6 +9494,8 @@
|
|
|
9446
9494
|
"post.device.sizing.icon.2": "40866b641b5c0bf1426e0769534645dc14212cc1",
|
|
9447
9495
|
"post.device.sizing.icon.3": "da8253e40a3b452f1dbbf719b311d458656dd7fb",
|
|
9448
9496
|
"post.device.sizing.logo.1": "511ede0fb883d4fc1798f6a9f84f4b93011cf334",
|
|
9497
|
+
"post.device.sizing.content.height.1": "cf98f9b4a0a3f7e03bc33f6b1a0521fae568dac5",
|
|
9498
|
+
"post.device.sizing.content.height.2": "5fb86f9c31d8b994ad860fc44c56bb35a1eb6c7b",
|
|
9449
9499
|
"post.device.font-weight.bold": "fc6bd8d453b32d21a42e41bc8bef6f071b24fdbc",
|
|
9450
9500
|
"post.device.font-weight.regular": "63954de676cfeffcb52798776599f7a676db2327",
|
|
9451
9501
|
"post.device.font-weight.black": "e4cfc49770e938bbde9dd1499500d3c90db21bbf",
|
|
@@ -9493,6 +9543,7 @@
|
|
|
9493
9543
|
"post.device.sizing.interactive.icon.size4": "2c0942fd50bd63a9509f8550fc6a38642e9001d8",
|
|
9494
9544
|
"post.device.border-radius.1": "bf9efed364999a9ef84bdb512985ac9f6fdbec1d",
|
|
9495
9545
|
"post.device.border-radius.2": "3ff458677ebb45c67aa0d62f737f529bf937fc1d",
|
|
9546
|
+
"post.device.border-radius.3": "b972057878f9c3058a0accda97626c0f229213a1",
|
|
9496
9547
|
"post.device.border-radius.round": "055c77f9d3dcf72433a5321df80ed3a62e9501b2",
|
|
9497
9548
|
"post.device.border-radius.focus": "4f72f37038d3db3a58384aed4ea1f1dd789e6afc",
|
|
9498
9549
|
"post.device.border-width.default": "e5f71facc552cd21f6cd7daa18a64c8e8e5ce6a6",
|
|
@@ -9547,6 +9598,7 @@
|
|
|
9547
9598
|
"post.device.spacing.padding.17": "5fea0baf712055946b3ce5fdb1289b2f9ad424a1",
|
|
9548
9599
|
"post.device.spacing.padding.18": "9746d6a47fdd5e9c4cb0b91366e04d67b56fe18b",
|
|
9549
9600
|
"post.device.spacing.padding.19": "55dc6cc8355fad96a60db1e72fed720653a15b52",
|
|
9601
|
+
"post.device.spacing.padding.20": "22e4ea167fefef44efa7dcf2ffb98e4da74d5ce3",
|
|
9550
9602
|
"post.device.spacing.padding.inline.5": "0d48e4a92e523fb69ae371e37c6ff79d6d255cc5",
|
|
9551
9603
|
"post.device.spacing.padding.inline.6": "211520f2bb91c1d8315cefb31dc55d7dde233be7",
|
|
9552
9604
|
"post.device.spacing.padding.inline.7": "119d660b20f161bb94da756fdf2bc0c889115aaa",
|
|
@@ -9595,6 +9647,7 @@
|
|
|
9595
9647
|
"post.device.sizing.icon.1": "63ee615aaef915749d1d844a254f9c1a45944dd9",
|
|
9596
9648
|
"post.device.sizing.icon.3": "da8253e40a3b452f1dbbf719b311d458656dd7fb",
|
|
9597
9649
|
"post.device.sizing.logo.1": "511ede0fb883d4fc1798f6a9f84f4b93011cf334",
|
|
9650
|
+
"post.device.sizing.content.height.2": "5fb86f9c31d8b994ad860fc44c56bb35a1eb6c7b",
|
|
9598
9651
|
"post.device.font-weight.bold": "fc6bd8d453b32d21a42e41bc8bef6f071b24fdbc",
|
|
9599
9652
|
"post.device.font-weight.regular": "63954de676cfeffcb52798776599f7a676db2327",
|
|
9600
9653
|
"post.device.font-weight.black": "e4cfc49770e938bbde9dd1499500d3c90db21bbf",
|
|
@@ -9636,8 +9689,10 @@
|
|
|
9636
9689
|
"post.device.sizing.interactive.button.height.6": "78caf6ef8cec35dc5ab0dc663c9d2747595bc9a6",
|
|
9637
9690
|
"post.device.sizing.interactive.button.icon.6": "3a79fafdf0edac10e89188baab62e2b2a37e4d67",
|
|
9638
9691
|
"post.device.sizing.icon.2": "40866b641b5c0bf1426e0769534645dc14212cc1",
|
|
9692
|
+
"post.device.sizing.content.height.1": "cf98f9b4a0a3f7e03bc33f6b1a0521fae568dac5",
|
|
9639
9693
|
"post.device.border-radius.1": "bf9efed364999a9ef84bdb512985ac9f6fdbec1d",
|
|
9640
9694
|
"post.device.border-radius.2": "3ff458677ebb45c67aa0d62f737f529bf937fc1d",
|
|
9695
|
+
"post.device.border-radius.3": "b972057878f9c3058a0accda97626c0f229213a1",
|
|
9641
9696
|
"post.device.border-radius.round": "055c77f9d3dcf72433a5321df80ed3a62e9501b2",
|
|
9642
9697
|
"post.device.border-radius.focus": "4f72f37038d3db3a58384aed4ea1f1dd789e6afc",
|
|
9643
9698
|
"post.device.border-width.default": "e5f71facc552cd21f6cd7daa18a64c8e8e5ce6a6",
|
|
@@ -9718,6 +9773,7 @@
|
|
|
9718
9773
|
"post.device.spacing.padding.17": "5fea0baf712055946b3ce5fdb1289b2f9ad424a1",
|
|
9719
9774
|
"post.device.spacing.padding.18": "9746d6a47fdd5e9c4cb0b91366e04d67b56fe18b",
|
|
9720
9775
|
"post.device.spacing.padding.19": "55dc6cc8355fad96a60db1e72fed720653a15b52",
|
|
9776
|
+
"post.device.spacing.padding.20": "22e4ea167fefef44efa7dcf2ffb98e4da74d5ce3",
|
|
9721
9777
|
"post.device.spacing.padding.inline.1": "6dd0e239a4087795199f786e69f14b6a93ff485c",
|
|
9722
9778
|
"post.device.spacing.padding.inline.3": "68840678b85de831c347ab8bd69931680dd08389",
|
|
9723
9779
|
"post.device.spacing.padding.inline.4": "255cacee7bf87ef4ca8143f3234f5ae6239e9c53",
|
|
@@ -9783,8 +9839,11 @@
|
|
|
9783
9839
|
"post.device.sizing.icon.2": "40866b641b5c0bf1426e0769534645dc14212cc1",
|
|
9784
9840
|
"post.device.sizing.icon.3": "da8253e40a3b452f1dbbf719b311d458656dd7fb",
|
|
9785
9841
|
"post.device.sizing.logo.1": "511ede0fb883d4fc1798f6a9f84f4b93011cf334",
|
|
9842
|
+
"post.device.sizing.content.height.1": "cf98f9b4a0a3f7e03bc33f6b1a0521fae568dac5",
|
|
9843
|
+
"post.device.sizing.content.height.2": "5fb86f9c31d8b994ad860fc44c56bb35a1eb6c7b",
|
|
9786
9844
|
"post.device.border-radius.1": "bf9efed364999a9ef84bdb512985ac9f6fdbec1d",
|
|
9787
9845
|
"post.device.border-radius.2": "3ff458677ebb45c67aa0d62f737f529bf937fc1d",
|
|
9846
|
+
"post.device.border-radius.3": "b972057878f9c3058a0accda97626c0f229213a1",
|
|
9788
9847
|
"post.device.border-radius.round": "055c77f9d3dcf72433a5321df80ed3a62e9501b2",
|
|
9789
9848
|
"post.device.border-radius.focus": "4f72f37038d3db3a58384aed4ea1f1dd789e6afc",
|
|
9790
9849
|
"post.device.font-weight.bold": "fc6bd8d453b32d21a42e41bc8bef6f071b24fdbc",
|
|
@@ -10306,6 +10365,8 @@
|
|
|
10306
10365
|
"post.button.small.icon": "f71a1e6ed0333399ca14370d5d684f196342a890",
|
|
10307
10366
|
"post.button.border-width": "eefdbbcdfe797014914e8bb2b2ab4456cac6396c",
|
|
10308
10367
|
"post.button.label.font-weight": "423ec64d2c0daf8df8e67bfe1ff5ff7b2d8fb9d8",
|
|
10368
|
+
"post.card.border-radius": "c4e98f3a39e0aabf3daef986f7b1c8cf3b8cf856",
|
|
10369
|
+
"post.card.non-interactive.stroke": "e3ca597e321fdd0855dd199c3316c4cdbe19c17c",
|
|
10309
10370
|
"post.checkbox.enabled-bg": "511b9da046efffab0af4a6e72d7f452db03ab780",
|
|
10310
10371
|
"post.checkbox.enabled-fg": "1a3dd51d23e3681320793f129272ebe44941ed72",
|
|
10311
10372
|
"post.checkbox.hover-bg": "c7c5e44f736cacf7e8b7553498dbfbb720dbe2e0",
|
|
@@ -10679,6 +10740,17 @@
|
|
|
10679
10740
|
"post.switch.padding.inline.handle": "b512bd24b1efc090fbf71338c7581b91be49db5c",
|
|
10680
10741
|
"post.switch.border-radius.round": "4cc09b8f409accc41f0553e1fb332ba603b3e501",
|
|
10681
10742
|
"post.switch.border-width": "c45a9f2a969bb1f731fbb1f2c1433a57d238be0e",
|
|
10743
|
+
"post.teaser.card.sm.image.height": "c08aac2d8bdca1338281cb3407cb2bb68f006a9b",
|
|
10744
|
+
"post.teaser.card.sm.section.content.padding": "6f10132faeaec305bb60b5611f17a9c80dc5ccc8",
|
|
10745
|
+
"post.teaser.card.sm.section.content.gap": "fa096b80dbc04569a50a97c4b48e742588ceceba",
|
|
10746
|
+
"post.teaser.card.sm.heading.font-size": "06953719de850f66e064628bd7a151efd59d06d8",
|
|
10747
|
+
"post.teaser.card.sm.content.gap": "60db0f2d4067c7e452eb991d0656fefdf8025c0c",
|
|
10748
|
+
"post.teaser.card.lg.image.height": "73b65f2feac04529cae214d7d197435b56f3bb68",
|
|
10749
|
+
"post.teaser.card.lg.section.content.padding": "c794fec560d28a17f6d5f561a163ced631dd93e7",
|
|
10750
|
+
"post.teaser.card.lg.section.content.gap": "c838062f96129e9b66cddaaf664e24a53a80dd5a",
|
|
10751
|
+
"post.teaser.card.lg.heading.font-size": "0f3a213b39a0c53f46d60602bdf8f0255d49a874",
|
|
10752
|
+
"post.teaser.card.lg.content.gap": "c5363014eb94be30e06a55c98f9c9799e8e7a5aa",
|
|
10753
|
+
"post.teaser.card.content.enabled-fg": "f5873b609c3f86b4513243564e2f857934ead3bb",
|
|
10682
10754
|
"post.textarea.enabled-bg": "9f294c42d575aff74d6cf90d734367a803194216",
|
|
10683
10755
|
"post.textarea.enabled-fg": "7d5bb970bd293753c57df39aaeaa38b7d279a90c",
|
|
10684
10756
|
"post.textarea.hover-bg": "91d02a0756c0a534d57e42cdb64636d2d2e368dd",
|
|
@@ -11000,6 +11072,7 @@
|
|
|
11000
11072
|
"Components/Blockquote",
|
|
11001
11073
|
"Components/Breadcrumb",
|
|
11002
11074
|
"Components/Button",
|
|
11075
|
+
"Components/Cards",
|
|
11003
11076
|
"Components/Checkbox",
|
|
11004
11077
|
"Components/Close",
|
|
11005
11078
|
"Components/Container",
|
|
@@ -11020,19 +11093,19 @@
|
|
|
11020
11093
|
"Components/Snackbar",
|
|
11021
11094
|
"Components/Stepper",
|
|
11022
11095
|
"Components/Switch",
|
|
11096
|
+
"Components/Teaser",
|
|
11023
11097
|
"Components/Text area",
|
|
11024
11098
|
"Components/Text highlighted",
|
|
11025
11099
|
"Components/Text input",
|
|
11026
11100
|
"Components/Toast",
|
|
11027
|
-
"Components/Teaser",
|
|
11028
|
-
"Components/Cards",
|
|
11029
11101
|
"Components/Validation",
|
|
11030
11102
|
"FigmaOnly",
|
|
11031
11103
|
"Utilities/Spacing",
|
|
11032
11104
|
"Utilities/Color",
|
|
11105
|
+
"Utilities/Elevation",
|
|
11033
11106
|
"Utilities/Typo",
|
|
11034
11107
|
"Palettes",
|
|
11035
11108
|
"Helpers/Focus"
|
|
11036
11109
|
]
|
|
11037
11110
|
}
|
|
11038
|
-
}
|
|
11111
|
+
}
|