@synergy-design-system/tokens 2.7.0 → 2.9.0
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 +14 -0
- package/dist/js/index.d.ts +41 -1
- package/dist/js/index.js +41 -1
- package/dist/scss/_tokens.scss +9 -1
- package/dist/themes/dark.css +10 -2
- package/dist/themes/light.css +10 -2
- package/package.json +3 -3
- package/src/figma-tokens/$metadata.json +1 -0
- package/src/figma-tokens/$themes.json +58 -6
- package/src/figma-tokens/_docs.json +103 -5
- package/src/figma-tokens/globals.json +10 -0
- package/src/figma-tokens/semantic/link.json +30 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@synergy-design-system/tokens-v2.9.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.8.0...tokens/2.9.0) (2024-08-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* ✨ link css ([#589](https://github.com/synergy-design-system/synergy-design-system/issues/589)) ([cdf54fc](https://github.com/synergy-design-system/synergy-design-system/commit/cdf54fcb348cc3b5a41993cff530424bdf6b6802))
|
|
7
|
+
|
|
8
|
+
# [@synergy-design-system/tokens-v2.8.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.7.0...tokens/2.8.0) (2024-08-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* ✨ Upgrade packages to latest versions ([#592](https://github.com/synergy-design-system/synergy-design-system/issues/592)) ([e43c563](https://github.com/synergy-design-system/synergy-design-system/commit/e43c5630b6c43ef855af6815604c7649376104ee)), closes [#2078](https://github.com/synergy-design-system/synergy-design-system/issues/2078) [#2063](https://github.com/synergy-design-system/synergy-design-system/issues/2063) [#2041](https://github.com/synergy-design-system/synergy-design-system/issues/2041) [#2041](https://github.com/synergy-design-system/synergy-design-system/issues/2041) [#2116](https://github.com/synergy-design-system/synergy-design-system/issues/2116) [#2121](https://github.com/synergy-design-system/synergy-design-system/issues/2121) [#1992](https://github.com/synergy-design-system/synergy-design-system/issues/1992) [#2079](https://github.com/synergy-design-system/synergy-design-system/issues/2079) [#2009](https://github.com/synergy-design-system/synergy-design-system/issues/2009) [#1967](https://github.com/synergy-design-system/synergy-design-system/issues/1967) [#1947](https://github.com/synergy-design-system/synergy-design-system/issues/1947) [#1974](https://github.com/synergy-design-system/synergy-design-system/issues/1974) [#1985](https://github.com/synergy-design-system/synergy-design-system/issues/1985) [#2001](https://github.com/synergy-design-system/synergy-design-system/issues/2001)
|
|
14
|
+
|
|
1
15
|
# [@synergy-design-system/tokens-v2.7.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.6.0...tokens/2.7.0) (2024-08-23)
|
|
2
16
|
|
|
3
17
|
|
package/dist/js/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 2.
|
|
2
|
+
* @synergy-design-system/tokens version 2.8.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -279,6 +279,16 @@ export const SynFontSansFallback: string;
|
|
|
279
279
|
*/
|
|
280
280
|
export const SynOpacity50: string;
|
|
281
281
|
|
|
282
|
+
/**
|
|
283
|
+
* Maps to the css variable `--syn-text-decoration-default`
|
|
284
|
+
*/
|
|
285
|
+
export const SynTextDecorationDefault: string;
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Maps to the css variable `--syn-text-decoration-underline`
|
|
289
|
+
*/
|
|
290
|
+
export const SynTextDecorationUnderline: string;
|
|
291
|
+
|
|
282
292
|
/**
|
|
283
293
|
* Maps to the css variable `--syn-button-font-size-small`
|
|
284
294
|
*/
|
|
@@ -599,6 +609,36 @@ export const SynInputFontSizeMedium: string;
|
|
|
599
609
|
*/
|
|
600
610
|
export const SynInputFontSizeLarge: string;
|
|
601
611
|
|
|
612
|
+
/**
|
|
613
|
+
* Maps to the css variable `--syn-link-color`
|
|
614
|
+
*/
|
|
615
|
+
export const SynLinkColor: string;
|
|
616
|
+
|
|
617
|
+
/**
|
|
618
|
+
* Maps to the css variable `--syn-link-color-hover`
|
|
619
|
+
*/
|
|
620
|
+
export const SynLinkColorHover: string;
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* Maps to the css variable `--syn-link-color-active`
|
|
624
|
+
*/
|
|
625
|
+
export const SynLinkColorActive: string;
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* Maps to the css variable `--syn-link-quiet-color`
|
|
629
|
+
*/
|
|
630
|
+
export const SynLinkQuietColor: string;
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* Maps to the css variable `--syn-link-quiet-color-hover`
|
|
634
|
+
*/
|
|
635
|
+
export const SynLinkQuietColorHover: string;
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* Maps to the css variable `--syn-link-quiet-color-active`
|
|
639
|
+
*/
|
|
640
|
+
export const SynLinkQuietColorActive: string;
|
|
641
|
+
|
|
602
642
|
/**
|
|
603
643
|
* Maps to the css variable `--syn-overlay-background-color`
|
|
604
644
|
*/
|
package/dist/js/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 2.
|
|
2
|
+
* @synergy-design-system/tokens version 2.8.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -278,6 +278,16 @@ export const SynFontSansFallback = 'var(--syn-font-sans-fallback)';
|
|
|
278
278
|
*/
|
|
279
279
|
export const SynOpacity50 = 'var(--syn-opacity-50)';
|
|
280
280
|
|
|
281
|
+
/**
|
|
282
|
+
* @type {string}
|
|
283
|
+
*/
|
|
284
|
+
export const SynTextDecorationDefault = 'var(--syn-text-decoration-default)';
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* @type {string}
|
|
288
|
+
*/
|
|
289
|
+
export const SynTextDecorationUnderline = 'var(--syn-text-decoration-underline)';
|
|
290
|
+
|
|
281
291
|
/**
|
|
282
292
|
* @type {string}
|
|
283
293
|
*/
|
|
@@ -598,6 +608,36 @@ export const SynInputFontSizeMedium = 'var(--syn-input-font-size-medium)';
|
|
|
598
608
|
*/
|
|
599
609
|
export const SynInputFontSizeLarge = 'var(--syn-input-font-size-large)';
|
|
600
610
|
|
|
611
|
+
/**
|
|
612
|
+
* @type {string}
|
|
613
|
+
*/
|
|
614
|
+
export const SynLinkColor = 'var(--syn-link-color)';
|
|
615
|
+
|
|
616
|
+
/**
|
|
617
|
+
* @type {string}
|
|
618
|
+
*/
|
|
619
|
+
export const SynLinkColorHover = 'var(--syn-link-color-hover)';
|
|
620
|
+
|
|
621
|
+
/**
|
|
622
|
+
* @type {string}
|
|
623
|
+
*/
|
|
624
|
+
export const SynLinkColorActive = 'var(--syn-link-color-active)';
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* @type {string}
|
|
628
|
+
*/
|
|
629
|
+
export const SynLinkQuietColor = 'var(--syn-link-quiet-color)';
|
|
630
|
+
|
|
631
|
+
/**
|
|
632
|
+
* @type {string}
|
|
633
|
+
*/
|
|
634
|
+
export const SynLinkQuietColorHover = 'var(--syn-link-quiet-color-hover)';
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* @type {string}
|
|
638
|
+
*/
|
|
639
|
+
export const SynLinkQuietColorActive = 'var(--syn-link-quiet-color-active)';
|
|
640
|
+
|
|
601
641
|
/**
|
|
602
642
|
* @type {string}
|
|
603
643
|
*/
|
package/dist/scss/_tokens.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 2.
|
|
2
|
+
* @synergy-design-system/tokens version 2.8.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
*/
|
|
5
5
|
$SynFontSizeXSmall: var(--syn-font-size-x-small) !default;
|
|
@@ -57,6 +57,8 @@ $SynBorderWidthLarge: var(--syn-border-width-large) !default;
|
|
|
57
57
|
$SynBorderWidthXLarge: var(--syn-border-width-x-large) !default;
|
|
58
58
|
$SynFontSansFallback: var(--syn-font-sans-fallback) !default;
|
|
59
59
|
$SynOpacity50: var(--syn-opacity-50) !default;
|
|
60
|
+
$SynTextDecorationDefault: var(--syn-text-decoration-default) !default;
|
|
61
|
+
$SynTextDecorationUnderline: var(--syn-text-decoration-underline) !default;
|
|
60
62
|
$SynButtonFontSizeSmall: var(--syn-button-font-size-small) !default;
|
|
61
63
|
$SynButtonFontSizeMedium: var(--syn-button-font-size-medium) !default;
|
|
62
64
|
$SynButtonFontSizeLarge: var(--syn-button-font-size-large) !default;
|
|
@@ -121,6 +123,12 @@ $SynInputReadonlyColorFocus: var(--syn-input-readonly-color-focus) !default;
|
|
|
121
123
|
$SynInputFontSizeSmall: var(--syn-input-font-size-small) !default;
|
|
122
124
|
$SynInputFontSizeMedium: var(--syn-input-font-size-medium) !default;
|
|
123
125
|
$SynInputFontSizeLarge: var(--syn-input-font-size-large) !default;
|
|
126
|
+
$SynLinkColor: var(--syn-link-color) !default;
|
|
127
|
+
$SynLinkColorHover: var(--syn-link-color-hover) !default;
|
|
128
|
+
$SynLinkColorActive: var(--syn-link-color-active) !default;
|
|
129
|
+
$SynLinkQuietColor: var(--syn-link-quiet-color) !default;
|
|
130
|
+
$SynLinkQuietColorHover: var(--syn-link-quiet-color-hover) !default;
|
|
131
|
+
$SynLinkQuietColorActive: var(--syn-link-quiet-color-active) !default;
|
|
124
132
|
$SynOverlayBackgroundColor: var(--syn-overlay-background-color) !default;
|
|
125
133
|
$SynPanelBackgroundColor: var(--syn-panel-background-color) !default;
|
|
126
134
|
$SynPanelBorderColor: var(--syn-panel-border-color) !default;
|
package/dist/themes/dark.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 2.
|
|
2
|
+
* @synergy-design-system/tokens version 2.8.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
* Do not edit directly
|
|
5
|
-
* Generated on
|
|
5
|
+
* Generated on Mon, 26 Aug 2024 07:06:35 GMT
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
:root, .syn-theme-dark {
|
|
@@ -63,6 +63,8 @@
|
|
|
63
63
|
--syn-border-width-x-large: 4px; /* X Large */
|
|
64
64
|
--syn-font-sans-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
65
65
|
--syn-opacity-50: 0.5; /* 50% */
|
|
66
|
+
--syn-text-decoration-default: none;
|
|
67
|
+
--syn-text-decoration-underline: underline;
|
|
66
68
|
--syn-button-font-size-small: var(--syn-font-size-small);
|
|
67
69
|
--syn-button-font-size-medium: var(--syn-font-size-medium);
|
|
68
70
|
--syn-button-font-size-large: var(--syn-font-size-large);
|
|
@@ -127,6 +129,12 @@
|
|
|
127
129
|
--syn-input-font-size-small: var(--syn-font-size-small);
|
|
128
130
|
--syn-input-font-size-medium: var(--syn-font-size-medium);
|
|
129
131
|
--syn-input-font-size-large: var(--syn-font-size-large);
|
|
132
|
+
--syn-link-color: var(--syn-color-primary-600);
|
|
133
|
+
--syn-link-color-hover: var(--syn-color-primary-900);
|
|
134
|
+
--syn-link-color-active: var(--syn-color-primary-950);
|
|
135
|
+
--syn-link-quiet-color: var(--syn-typography-color-text);
|
|
136
|
+
--syn-link-quiet-color-hover: var(--syn-color-primary-900);
|
|
137
|
+
--syn-link-quiet-color-active: var(--syn-color-primary-950);
|
|
130
138
|
--syn-overlay-background-color: rgba(0, 0, 0, 0.5);
|
|
131
139
|
--syn-panel-background-color: var(--syn-color-neutral-0);
|
|
132
140
|
--syn-panel-border-color: var(--syn-color-neutral-300);
|
package/dist/themes/light.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 2.
|
|
2
|
+
* @synergy-design-system/tokens version 2.8.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
* Do not edit directly
|
|
5
|
-
* Generated on
|
|
5
|
+
* Generated on Mon, 26 Aug 2024 07:06:35 GMT
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
:root, .syn-theme-light {
|
|
@@ -63,6 +63,8 @@
|
|
|
63
63
|
--syn-border-width-x-large: 4px; /* X Large */
|
|
64
64
|
--syn-font-sans-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
65
65
|
--syn-opacity-50: 0.5; /* 50% */
|
|
66
|
+
--syn-text-decoration-default: none;
|
|
67
|
+
--syn-text-decoration-underline: underline;
|
|
66
68
|
--syn-button-font-size-small: var(--syn-font-size-small);
|
|
67
69
|
--syn-button-font-size-medium: var(--syn-font-size-medium);
|
|
68
70
|
--syn-button-font-size-large: var(--syn-font-size-large);
|
|
@@ -127,6 +129,12 @@
|
|
|
127
129
|
--syn-input-font-size-small: var(--syn-font-size-small);
|
|
128
130
|
--syn-input-font-size-medium: var(--syn-font-size-medium);
|
|
129
131
|
--syn-input-font-size-large: var(--syn-font-size-large);
|
|
132
|
+
--syn-link-color: var(--syn-color-primary-600);
|
|
133
|
+
--syn-link-color-hover: var(--syn-color-primary-900);
|
|
134
|
+
--syn-link-color-active: var(--syn-color-primary-950);
|
|
135
|
+
--syn-link-quiet-color: var(--syn-typography-color-text);
|
|
136
|
+
--syn-link-quiet-color-hover: var(--syn-color-primary-900);
|
|
137
|
+
--syn-link-quiet-color-active: var(--syn-color-primary-950);
|
|
130
138
|
--syn-overlay-background-color: rgba(0, 0, 0, 0.5);
|
|
131
139
|
--syn-panel-background-color: var(--syn-color-neutral-0);
|
|
132
140
|
--syn-panel-border-color: var(--syn-color-neutral-300);
|
package/package.json
CHANGED
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"change-case": "^5.4.4",
|
|
14
14
|
"eslint": "^8.57.0",
|
|
15
15
|
"eslint-plugin-import": "^2.29.1",
|
|
16
|
-
"rimraf": "^
|
|
16
|
+
"rimraf": "^6.0.1",
|
|
17
17
|
"semantic-release": "^19.0.5",
|
|
18
18
|
"semantic-release-monorepo": "7.0.5",
|
|
19
19
|
"style-dictionary": "^3.9.2",
|
|
20
|
-
"stylelint": "^16.
|
|
20
|
+
"stylelint": "^16.8.2",
|
|
21
21
|
"@synergy-design-system/eslint-config-syn": "0.1.0",
|
|
22
22
|
"@synergy-design-system/stylelint-config-syn": "0.1.0"
|
|
23
23
|
},
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
},
|
|
102
102
|
"type": "module",
|
|
103
103
|
"types": "./dist/js/index.d.ts",
|
|
104
|
-
"version": "2.
|
|
104
|
+
"version": "2.9.0",
|
|
105
105
|
"scripts": {
|
|
106
106
|
"build": "pnpm clean && node scripts/build.js",
|
|
107
107
|
"clean": "rimraf build",
|
|
@@ -258,12 +258,25 @@
|
|
|
258
258
|
"shadow.medium": "S:c0b8580ee9db62a24ef278785c259d82e8857b59,"
|
|
259
259
|
},
|
|
260
260
|
"$figmaVariableReferences": {
|
|
261
|
+
"font-size.x-small": "ce0ec5530b24da6c4f9beefb5b1dc84743a489d3",
|
|
262
|
+
"font-size.small": "e7bd594207fc6c29304db0a1a6ea82df55fba9d7",
|
|
263
|
+
"font-size.medium": "3259222796cd000da2349819a252134cccc94ecd",
|
|
264
|
+
"font-size.large": "6740ca3db4b3af3b3c50021347b797b259c52818",
|
|
265
|
+
"font-size.x-large": "1505cfea5f8711ad0b74d4a50067787d0eeb5aac",
|
|
266
|
+
"font-size.2x-large": "df23a3e54602d49a9dcb29ba2e15d4f7f23475a6",
|
|
267
|
+
"font-size.3x-large": "d4500a90c4caf9ea5a1e20dfc1f9f16db19a9653",
|
|
268
|
+
"font-weight.normal": "31fa7719763aa5982cd25c1ed016ed10d63b4a47",
|
|
269
|
+
"font-weight.semibold": "66168d85d077768f3601c902a467fc72b6c7fa31",
|
|
270
|
+
"font-weight.bold": "d5e25a9686b1b903a84f2b6dd4bca7d005a7cd3c",
|
|
271
|
+
"font.sans": "4f4ee2135ba4bace3030f4cae9a589c15fdc1644",
|
|
272
|
+
"font.mono": "2fe083a4e994e9934c03bbdf4ebb3225f7c8f978",
|
|
261
273
|
"spacing.4x-small": "0c5c205948f7b7c63e5e91f6f3dc3e9054b274ae",
|
|
262
274
|
"spacing.3x-small": "6c0727ac33a9bca72e018122c4f210109c5dec53",
|
|
263
275
|
"spacing.2x-small": "9bf6492e474bbfb3def963187640214c9c235fa8",
|
|
264
276
|
"spacing.x-small": "adfc9b02c8338d5fb1614dbea531bdcde5d495e4",
|
|
265
277
|
"spacing.small": "1cf0b96fd9b3c40a83c09e899b9310655e761612",
|
|
266
278
|
"spacing.medium": "ed8577f330c0d060cf1a89a464493a5ee1db25f2",
|
|
279
|
+
"spacing.medium-large": "25638943cad9a60e3a3a61e7292f4a84bd8121ea",
|
|
267
280
|
"spacing.large": "b1d9a229b48aa1ed04847ece0f87b69953ad2732",
|
|
268
281
|
"spacing.x-large": "2ec93ddcd67226231abf805dc135cb1257c90694",
|
|
269
282
|
"spacing.2x-large": "6e2f98416208ef789f16af714119e402258cfd20",
|
|
@@ -273,12 +286,15 @@
|
|
|
273
286
|
"border-radius.none": "53dcd1f8e714326b74a4514caacc49e106534e5b",
|
|
274
287
|
"border-radius.pill": "896374a12f19932772d11aacd32600994432d485",
|
|
275
288
|
"border-radius.circle": "78873ce248b2fe0211ba9f0d7df52d0d7f67527e",
|
|
289
|
+
"border-radius.small": "db8d42f7c37f9555c5b57456499ae5cddf917771",
|
|
290
|
+
"border-radius.medium": "1619c62845f4a0a1d9dddfe0ef656dc3d5393e76",
|
|
276
291
|
"dimension.base": "19986b922fb7bef5013d8aa3ced447aaf18d2542",
|
|
277
292
|
"border-width.none": "72b8dcfbad660e8456cfe19e93902a57a7133643",
|
|
278
293
|
"border-width.small": "ff2144e9333c35a5185da64d9eceaffab1b101ce",
|
|
279
294
|
"border-width.medium": "df4f35c8f0fad6bc109ece2bd2268cd834e32731",
|
|
280
295
|
"border-width.large": "7e3b8fa4f836ae55bafdae9c287ca6779f97e302",
|
|
281
|
-
"border-width.x-large": "0a08f8b5ba55322e50a8496415c2e803b083a0dc"
|
|
296
|
+
"border-width.x-large": "0a08f8b5ba55322e50a8496415c2e803b083a0dc",
|
|
297
|
+
"opacity.50": "1ca9a188f0fef6506addb37972c42a4c16d3e360"
|
|
282
298
|
},
|
|
283
299
|
"$figmaCollectionId": "VariableCollectionId:28:527",
|
|
284
300
|
"$figmaModeId": "28:3",
|
|
@@ -304,16 +320,41 @@
|
|
|
304
320
|
"semantic/input": "enabled",
|
|
305
321
|
"semantic/button": "enabled",
|
|
306
322
|
"semantic/toggle": "enabled",
|
|
307
|
-
"semantic/typography": "enabled"
|
|
323
|
+
"semantic/typography": "enabled",
|
|
324
|
+
"semantic/link": "enabled",
|
|
325
|
+
"semantic/overlays": "enabled",
|
|
326
|
+
"semantic/panels": "enabled",
|
|
327
|
+
"semantic/tooltip": "enabled"
|
|
308
328
|
},
|
|
309
329
|
"$figmaCollectionId": "VariableCollectionId:790:67393",
|
|
310
330
|
"$figmaModeId": "790:0",
|
|
311
331
|
"$figmaVariableReferences": {
|
|
312
|
-
"
|
|
313
|
-
"
|
|
332
|
+
"tooltip.border.radius": "5c964539e35abe3542052142ad6bd66681cedfeb",
|
|
333
|
+
"tooltip.background-color": "eff1b08a86ab894b43003a21d6580f1b23206b16",
|
|
334
|
+
"tooltip.color": "dc2fa83fcad15871159e08e324a7485afb14d762",
|
|
335
|
+
"tooltip.font-family": "b6ec01c203c616686a6c4e7a940987aa334c7162",
|
|
336
|
+
"tooltip.font-weight": "7749313ae8f6f54163f07a9a733c9d20549dfeeb",
|
|
337
|
+
"tooltip.font-size": "82854b02e37ab707b63ae1d86d8373e10f5bda8e",
|
|
338
|
+
"tooltip.padding": "54f91632e7d8939dcf7b7138462e46885e47da3f",
|
|
339
|
+
"tooltip.arrow-size": "fd64b50bfc4fb4137153d26a47a4806fec5c84d9",
|
|
340
|
+
"panel.background.color": "7016be8a3da4f7589565381af1b6b83fed11bffc",
|
|
341
|
+
"panel.border.color": "1ac88fb0df1b1ceaabe633f9b62646eb0b47f679",
|
|
342
|
+
"panel.border.width": "c31c8d64df79e7f2db3dc7ef6de6a939c4e37e73",
|
|
343
|
+
"overlay.background.color": "71c533043f85b14167e19e4c9d83e348894edb61",
|
|
344
|
+
"link.color": "5e0d352cfd35e039bbd73662cb477a64e129513b",
|
|
345
|
+
"link.color-hover": "01b7180d9910e8474b035efc07869d3ec053cdec",
|
|
346
|
+
"link.color-active": "913d33ec8322a23a658502d50aece519887b4dab",
|
|
347
|
+
"link.low-emphasis.color": "12bed9bc1003a50744d9d5a06477a27697378658",
|
|
348
|
+
"link.low-emphasis.color-hover": "fecb13d13dbba0e7a4976d7aed01e022afa4b48f",
|
|
349
|
+
"link.low-emphasis.color-active": "179fadf96ee958351558fe30e268a7218b589726",
|
|
350
|
+
"typography.color.text": "5ec65d3455f0e99ac3bfab776a47564fd3128a13",
|
|
351
|
+
"typography.color.text-inverted": "77a4e3e48f6f5b4519eca72c77b2b38d5ac0067d",
|
|
314
352
|
"toggle.size.small": "59e798ea0cba4be9ea32e894e79cecd7b82cfded",
|
|
315
353
|
"toggle.size.medium": "c853d6f661e4380daff9745e0e4b39e2b56637f3",
|
|
316
354
|
"toggle.size.large": "8c9580c2db9de0c2ceb7553e99520d3a5c4a90d3",
|
|
355
|
+
"button.font-size.small": "e9b4ce0b4c5dc45ccdcff6efbfdf76de6afc8380",
|
|
356
|
+
"button.font-size.medium": "7ae158fdda63dba25f070476ae6809f173db0e0a",
|
|
357
|
+
"button.font-size.large": "52795a6ec1aa48e832c73ab0c7533053e887a20b",
|
|
317
358
|
"input.color": "bc745cc91841ef07e91b5fb6a8ac1018eb4247bf",
|
|
318
359
|
"input.color-hover": "17492033de110a4bcc43dcb1437516a4ad52df3b",
|
|
319
360
|
"input.color-focus": "8642f42f34c8b021c8802ad57409ae401fbba742",
|
|
@@ -339,21 +380,29 @@
|
|
|
339
380
|
"input.icon.icon-clearable.color-focus": "bc9ca2538e5308c35e9e0963320d220a91d2eab8",
|
|
340
381
|
"input.placeholder.color": "e84537a67522aac7b98de44b92615252de3c45d7",
|
|
341
382
|
"input.placeholder.color-disabled": "990261ec45dcb6c65d0a943a7d75c7242c35d277",
|
|
342
|
-
"input.required
|
|
343
|
-
"input.required
|
|
383
|
+
"input.required.content": "9e864fbe3c765fdc21649446f1887cd04dce67f7",
|
|
384
|
+
"input.required.content-color": "b19edca5d6de2360710bbeee7d6e566b8e6acf05",
|
|
385
|
+
"input.required.content-offset": "e3061910cdf5cf33b083b0a54ba9f79478152f04",
|
|
344
386
|
"input.label.color": "ba3a82f7a87cf0e3dba37fa22b6bb120e1d0f954",
|
|
387
|
+
"input.label.font-size.small": "c0178d24e23f31609d665f5db94f4e20ab04479e",
|
|
388
|
+
"input.label.font-size.medium": "360941a4c6a59ada1d85bad9200da1df9fe95f71",
|
|
389
|
+
"input.label.font-size.large": "dfe5eb3a567e704f4b71667308da1fb76eaba0f7",
|
|
345
390
|
"input.spacing.small": "761eeae11a5d5db0b9f287169fe518bf388d0ead",
|
|
346
391
|
"input.spacing.medium": "83e3fb83e4da16cdf63a2bb8766b3889a1b522cb",
|
|
347
392
|
"input.spacing.large": "717937cad33a5ea1fa31fd17ca4308a51864a773",
|
|
348
393
|
"input.focus-ring.color": "bcfb57039745269f7cae825530c515483b553db1",
|
|
349
394
|
"input.focus-ring.offset": "0c2b194ad8a3892f72c51ef583f940f80f0a0da7",
|
|
350
395
|
"input.focus-ring.error": "990c1a5ff0acb5561de1391d59d64acbee0db591",
|
|
396
|
+
"input.disabled-opacity": "d15b2be0928291e559ad7dd26537682a5861f563",
|
|
351
397
|
"input.readonly-background.color": "202fec4c3b10c4a85bd051a23fd11e635b691a9b",
|
|
352
398
|
"input.readonly-background.color-hover": "99485e086679b6b82520908d2af565301ee2bfb8",
|
|
353
399
|
"input.readonly-background.color-focus": "176aad43eb9f85cb824570850c1e1f3cac88ca25",
|
|
354
400
|
"input.readonly-background.color-disabled": "410324cb496aaf9da36090d959acebbe80ae14e1",
|
|
355
401
|
"input.help-text.color": "79ea482375f6cec5228b6bf0ea9c7fbb2505d9c6",
|
|
356
402
|
"input.help-text.color-error": "9e62a851799b2b3c5021ae7cde72b92b34fdfb60",
|
|
403
|
+
"input.help-text.font-size.small": "0cd42f76f3933e174b6f62e2338180f34254dfe5",
|
|
404
|
+
"input.help-text.font-size.medium": "63f0f11f1e7c8010bc6feef12481f1aff47f0354",
|
|
405
|
+
"input.help-text.font-size.large": "18fda3186ab3dd2c202d6941d0cc8b7323ca2d02",
|
|
357
406
|
"input.height.small": "424b7861abcecffc7cc6c3735ec28842f2e84ae7",
|
|
358
407
|
"input.height.medium": "4bf50c4d8473a9f03cf3a09567c4459b62d57afc",
|
|
359
408
|
"input.height.large": "c9ab4ffc73a9047178eca68979ef22e5878238af",
|
|
@@ -361,6 +410,9 @@
|
|
|
361
410
|
"input.readonly.color-disabled": "dd753058470317fa489a113595530f7f3e097dfa",
|
|
362
411
|
"input.readonly.color-hover": "d9e2c120038f5b2434a1adb2ed026ffcac5dbb94",
|
|
363
412
|
"input.readonly.color-focus": "2b9ed719a33678da68b9e3a89fb148f75e0b04ce",
|
|
413
|
+
"input.font-size.small": "7380d84d1ea012e2d01d2d2a4e9ca8acb75089ff",
|
|
414
|
+
"input.font-size.medium": "330178493eac96b79d4d1dee6c2ab572cfffe6cc",
|
|
415
|
+
"input.font-size.large": "7601b7676a557b370ce8a1a6e26ad17ce873ccfc",
|
|
364
416
|
"focus-ring.color": "4560189da085bbe8e1ce1fa9a615fa9b88869789",
|
|
365
417
|
"focus-ring.width": "2e54bf95bfc688cc460e9f7606fb9631fd43aecc",
|
|
366
418
|
"focus-ring.offset": "491c1017f3208a7c19a9ed70a4b1cc50001e01b4"
|
|
@@ -1060,7 +1060,7 @@
|
|
|
1060
1060
|
"value": "The invalid status is used to warn the user that the syn-file is invalid. For example, if the entry of text is mandatory and nothing has been entered or if a text has been entered that does not have the correct format.",
|
|
1061
1061
|
"type": "text"
|
|
1062
1062
|
}
|
|
1063
|
-
}
|
|
1063
|
+
}
|
|
1064
1064
|
},
|
|
1065
1065
|
"format-bytes": {
|
|
1066
1066
|
"description": {
|
|
@@ -1368,6 +1368,68 @@
|
|
|
1368
1368
|
}
|
|
1369
1369
|
}
|
|
1370
1370
|
},
|
|
1371
|
+
"link": {
|
|
1372
|
+
"disabled": {
|
|
1373
|
+
"title": {
|
|
1374
|
+
"value": "Disabled",
|
|
1375
|
+
"type": "text"
|
|
1376
|
+
},
|
|
1377
|
+
"description": {
|
|
1378
|
+
"value": "Use the disabled attribute to disable a Link.",
|
|
1379
|
+
"type": "text"
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1382
|
+
"focus": {
|
|
1383
|
+
"title": {
|
|
1384
|
+
"value": "Focus",
|
|
1385
|
+
"type": "text"
|
|
1386
|
+
},
|
|
1387
|
+
"description": {
|
|
1388
|
+
"value": "The focus event gives the user feedback that the Link has been focused by the keyboard interaction.",
|
|
1389
|
+
"type": "text"
|
|
1390
|
+
}
|
|
1391
|
+
},
|
|
1392
|
+
"prefix-suffix-icons": {
|
|
1393
|
+
"title": {
|
|
1394
|
+
"value": "Prefix and Suffix Icons.",
|
|
1395
|
+
"type": "text"
|
|
1396
|
+
},
|
|
1397
|
+
"description": {
|
|
1398
|
+
"value": "Use the prefix and suffix slots to add icons.",
|
|
1399
|
+
"type": "text"
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
"size": {
|
|
1403
|
+
"title": {
|
|
1404
|
+
"value": "Size",
|
|
1405
|
+
"type": "text"
|
|
1406
|
+
},
|
|
1407
|
+
"description": {
|
|
1408
|
+
"value": "Use the size attribute to change the Link size.",
|
|
1409
|
+
"type": "text"
|
|
1410
|
+
}
|
|
1411
|
+
},
|
|
1412
|
+
"inline": {
|
|
1413
|
+
"title": {
|
|
1414
|
+
"value": "Inline",
|
|
1415
|
+
"type": "text"
|
|
1416
|
+
},
|
|
1417
|
+
"description": {
|
|
1418
|
+
"value": "If a link is placed within body text, it only breaks if variant without icon is used. If an icon is needed, a line break applies, and the body text is placed above and below the link.",
|
|
1419
|
+
"type": "text"
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1422
|
+
"quiet": {
|
|
1423
|
+
"title": {
|
|
1424
|
+
"value": "Quiet",
|
|
1425
|
+
"type": "text"
|
|
1426
|
+
},
|
|
1427
|
+
"description": {
|
|
1428
|
+
"value": "Use the Quiet attribute to have a low emphasis variant of a Link. This can be used if the link should not attract too much attention.",
|
|
1429
|
+
"type": "text"
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
},
|
|
1371
1433
|
"menu-item": {
|
|
1372
1434
|
"default": {
|
|
1373
1435
|
"description": {
|
|
@@ -2089,13 +2151,13 @@
|
|
|
2089
2151
|
"type": "text"
|
|
2090
2152
|
}
|
|
2091
2153
|
},
|
|
2092
|
-
"prefix": {
|
|
2154
|
+
"prefix-suffix": {
|
|
2093
2155
|
"title": {
|
|
2094
|
-
"value": "Prefix Icons",
|
|
2156
|
+
"value": "Prefix and Suffix Icons",
|
|
2095
2157
|
"type": "text"
|
|
2096
2158
|
},
|
|
2097
2159
|
"description": {
|
|
2098
|
-
"value": "Use the prefix
|
|
2160
|
+
"value": "Use the prefix and suffix slots to add text and icons.",
|
|
2099
2161
|
"type": "text"
|
|
2100
2162
|
}
|
|
2101
2163
|
},
|
|
@@ -2768,6 +2830,16 @@
|
|
|
2768
2830
|
"value": "Font-Weights",
|
|
2769
2831
|
"type": "text"
|
|
2770
2832
|
}
|
|
2833
|
+
},
|
|
2834
|
+
"link": {
|
|
2835
|
+
"description": {
|
|
2836
|
+
"value": "Links can be used to display a link to other pages.",
|
|
2837
|
+
"type": "text"
|
|
2838
|
+
},
|
|
2839
|
+
"title": {
|
|
2840
|
+
"value": "Link",
|
|
2841
|
+
"type": "text"
|
|
2842
|
+
}
|
|
2771
2843
|
}
|
|
2772
2844
|
},
|
|
2773
2845
|
"templates": {
|
|
@@ -3201,6 +3273,16 @@
|
|
|
3201
3273
|
"value": "Text colors",
|
|
3202
3274
|
"type": "text"
|
|
3203
3275
|
}
|
|
3276
|
+
},
|
|
3277
|
+
"link": {
|
|
3278
|
+
"description": {
|
|
3279
|
+
"value": "Default color used for links within the application",
|
|
3280
|
+
"type": "text"
|
|
3281
|
+
},
|
|
3282
|
+
"title": {
|
|
3283
|
+
"value": "Link colors",
|
|
3284
|
+
"type": "text"
|
|
3285
|
+
}
|
|
3204
3286
|
}
|
|
3205
3287
|
}
|
|
3206
3288
|
},
|
|
@@ -3270,6 +3352,22 @@
|
|
|
3270
3352
|
"title": {
|
|
3271
3353
|
"value": "Body and UI text",
|
|
3272
3354
|
"type": "text"
|
|
3355
|
+
},
|
|
3356
|
+
"xsmall-title": {
|
|
3357
|
+
"value": "x-small",
|
|
3358
|
+
"type": "text"
|
|
3359
|
+
},
|
|
3360
|
+
"small-title": {
|
|
3361
|
+
"value": "small",
|
|
3362
|
+
"type": "text"
|
|
3363
|
+
},
|
|
3364
|
+
"medium-title": {
|
|
3365
|
+
"value": "medium",
|
|
3366
|
+
"type": "text"
|
|
3367
|
+
},
|
|
3368
|
+
"large-title": {
|
|
3369
|
+
"value": "large",
|
|
3370
|
+
"type": "text"
|
|
3273
3371
|
}
|
|
3274
3372
|
}
|
|
3275
3373
|
},
|
|
@@ -3483,4 +3581,4 @@
|
|
|
3483
3581
|
}
|
|
3484
3582
|
}
|
|
3485
3583
|
}
|
|
3486
|
-
}
|
|
3584
|
+
}
|
|
@@ -426,5 +426,15 @@
|
|
|
426
426
|
"type": "opacity",
|
|
427
427
|
"description": "50%"
|
|
428
428
|
}
|
|
429
|
+
},
|
|
430
|
+
"text-decoration": {
|
|
431
|
+
"default": {
|
|
432
|
+
"value": "none",
|
|
433
|
+
"type": "textDecoration"
|
|
434
|
+
},
|
|
435
|
+
"underline": {
|
|
436
|
+
"value": "underline",
|
|
437
|
+
"type": "textDecoration"
|
|
438
|
+
}
|
|
429
439
|
}
|
|
430
440
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"link": {
|
|
3
|
+
"color": {
|
|
4
|
+
"value": "{primary.600}",
|
|
5
|
+
"type": "color"
|
|
6
|
+
},
|
|
7
|
+
"color-hover": {
|
|
8
|
+
"value": "{primary.900}",
|
|
9
|
+
"type": "color"
|
|
10
|
+
},
|
|
11
|
+
"color-active": {
|
|
12
|
+
"value": "{primary.950}",
|
|
13
|
+
"type": "color"
|
|
14
|
+
},
|
|
15
|
+
"quiet": {
|
|
16
|
+
"color": {
|
|
17
|
+
"value": "{typography.color.text}",
|
|
18
|
+
"type": "color"
|
|
19
|
+
},
|
|
20
|
+
"color-hover": {
|
|
21
|
+
"value": "{primary.900}",
|
|
22
|
+
"type": "color"
|
|
23
|
+
},
|
|
24
|
+
"color-active": {
|
|
25
|
+
"value": "{primary.950}",
|
|
26
|
+
"type": "color"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|