@synergy-design-system/tokens 2.8.0 → 2.10.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/README.md +2 -2
- 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 +1 -1
- package/src/figma-tokens/$metadata.json +1 -0
- package/src/figma-tokens/$themes.json +58 -6
- package/src/figma-tokens/_docs.json +292 -2
- 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.10.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.9.0...tokens/2.10.0) (2024-09-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* ✨add syn-combobox ([#542](https://github.com/synergy-design-system/synergy-design-system/issues/542)) ([9be251b](https://github.com/synergy-design-system/synergy-design-system/commit/9be251b327f9ea63fb29c1194d2471d87c195ed4))
|
|
7
|
+
|
|
8
|
+
# [@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)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* ✨ 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))
|
|
14
|
+
|
|
1
15
|
# [@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)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @synergy-design-system/tokens
|
|
2
2
|
|
|
3
|
-
This package provides the design tokens that form the base for all components of the
|
|
4
|
-
It provides
|
|
3
|
+
This package provides the design tokens that form the base for all components of the Synergy Design System.
|
|
4
|
+
It provides exports for colors, spacings, shadows, sizings, typography and more that can be also consumed by applications directly.
|
|
5
5
|
|
|
6
6
|
The source of the tokens can be found at [Figma](https://www.figma.com/file/bZFqk9urD3NlghGUKrkKCR/Synergy-Digital-Design-System?type=design&node-id=104-235&mode=design&t=GPu4VVd9yffLLAaS-0)
|
|
7
7
|
|
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.9.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.9.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.9.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.9.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
* Do not edit directly
|
|
5
|
-
* Generated on
|
|
5
|
+
* Generated on Tue, 24 Sep 2024 09:48:08 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.9.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
* Do not edit directly
|
|
5
|
-
* Generated on
|
|
5
|
+
* Generated on Tue, 24 Sep 2024 09:48:08 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
|
@@ -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": {
|
|
@@ -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": {
|
|
@@ -2810,6 +2882,36 @@
|
|
|
2810
2882
|
"value": "These examples demonstrate the usage of the syn-table-cell component in various contexts. The examples are intended solely for illustrating how syn-table-cell can be used to style tables.",
|
|
2811
2883
|
"type": "text"
|
|
2812
2884
|
}
|
|
2885
|
+
},
|
|
2886
|
+
"footer": {
|
|
2887
|
+
"title": {
|
|
2888
|
+
"value": "Footer",
|
|
2889
|
+
"type": "text"
|
|
2890
|
+
},
|
|
2891
|
+
"description": {
|
|
2892
|
+
"value": "The footer is the area located at the bottom of the application window, below the content area.\n\nThe footer may contain one or more links pointing to legal information items as well as a copyright symbol and current year. The standard links can include things like:
\n- Imprint (e.g. https://www.sick.com/imprint)\n- Terms and conditions (e.g. https://www.sick.com/tac)\n- Terms of use (e.g. https://www.sick.com/terms-of-use)\n- Data protection (e.g. https://www.sick.com/dataprotection)\n\nIf you don't want to use the links in the footer, please make sure to include the legal required links somewhere else.\n\nThe footer links can be placed on any background color. If you need a more compact version of the footer, simply adjust the top and bottom margins from spacing.large (24px) to spacing.medium (16px).",
|
|
2893
|
+
"type": "text"
|
|
2894
|
+
}
|
|
2895
|
+
},
|
|
2896
|
+
"link-list": {
|
|
2897
|
+
"title": {
|
|
2898
|
+
"value": "Link list",
|
|
2899
|
+
"type": "text"
|
|
2900
|
+
},
|
|
2901
|
+
"description": {
|
|
2902
|
+
"value": "These examples demonstrate the usage of syn-link in simple grouping contexts: Horizontal and Vertical alignment.",
|
|
2903
|
+
"type": "text"
|
|
2904
|
+
}
|
|
2905
|
+
},
|
|
2906
|
+
"tag": {
|
|
2907
|
+
"title": {
|
|
2908
|
+
"value": "Tag",
|
|
2909
|
+
"type": "text"
|
|
2910
|
+
},
|
|
2911
|
+
"description": {
|
|
2912
|
+
"value": "These examples demonstrate the usage of syn-tag in various contexts: In combination with multiple filters and within a standalone tag group.",
|
|
2913
|
+
"type": "text"
|
|
2914
|
+
}
|
|
2813
2915
|
}
|
|
2814
2916
|
},
|
|
2815
2917
|
"nav-item": {
|
|
@@ -3099,6 +3201,168 @@
|
|
|
3099
3201
|
"type": "text"
|
|
3100
3202
|
}
|
|
3101
3203
|
}
|
|
3204
|
+
},
|
|
3205
|
+
"combobox": {
|
|
3206
|
+
"default": {
|
|
3207
|
+
"title": {
|
|
3208
|
+
"value": "Combobox",
|
|
3209
|
+
"type": "text"
|
|
3210
|
+
},
|
|
3211
|
+
"description": {
|
|
3212
|
+
"value": "The combobox suggests items based on the user input.",
|
|
3213
|
+
"type": "text"
|
|
3214
|
+
}
|
|
3215
|
+
},
|
|
3216
|
+
"label": {
|
|
3217
|
+
"title": {
|
|
3218
|
+
"value": "Labels",
|
|
3219
|
+
"type": "text"
|
|
3220
|
+
},
|
|
3221
|
+
"description": {
|
|
3222
|
+
"value": "Use the label attribute to give the combobox an accessible label. For labels that contain HTML, use the label slot instead.",
|
|
3223
|
+
"type": "text"
|
|
3224
|
+
}
|
|
3225
|
+
},
|
|
3226
|
+
"help-text": {
|
|
3227
|
+
"title": {
|
|
3228
|
+
"value": "Help Text",
|
|
3229
|
+
"type": "text"
|
|
3230
|
+
},
|
|
3231
|
+
"description": {
|
|
3232
|
+
"value": "Add descriptive help text to a combobox with the help-text attribute. For help texts that contain HTML, use the help-text slot instead.",
|
|
3233
|
+
"type": "text"
|
|
3234
|
+
}
|
|
3235
|
+
},
|
|
3236
|
+
"placeholder": {
|
|
3237
|
+
"title": {
|
|
3238
|
+
"value": "Placeholder",
|
|
3239
|
+
"type": "text"
|
|
3240
|
+
},
|
|
3241
|
+
"description": {
|
|
3242
|
+
"value": "Use the placeholder attribute to add a placeholder.",
|
|
3243
|
+
"type": "text"
|
|
3244
|
+
}
|
|
3245
|
+
},
|
|
3246
|
+
"focus": {
|
|
3247
|
+
"title": {
|
|
3248
|
+
"value": "Focus / Active",
|
|
3249
|
+
"type": "text"
|
|
3250
|
+
},
|
|
3251
|
+
"description": {
|
|
3252
|
+
"value": "The focus attribute provides feedback to the users, informing them that the combobox component is ready for use.",
|
|
3253
|
+
"type": "text"
|
|
3254
|
+
}
|
|
3255
|
+
},
|
|
3256
|
+
"simple": {
|
|
3257
|
+
"title": {
|
|
3258
|
+
"value": "Simple suggests",
|
|
3259
|
+
"type": "text"
|
|
3260
|
+
},
|
|
3261
|
+
"description": {
|
|
3262
|
+
"value": "A simple suggestions list shows the user a filtered list.",
|
|
3263
|
+
"type": "text"
|
|
3264
|
+
}
|
|
3265
|
+
},
|
|
3266
|
+
"highlight": {
|
|
3267
|
+
"title": {
|
|
3268
|
+
"value": "Highlight Query",
|
|
3269
|
+
"type": "text"
|
|
3270
|
+
},
|
|
3271
|
+
"description": {
|
|
3272
|
+
"value": "The filtered options shown in the list can be customized by passing a function to the getOption property. Your function can return a string of HTML, a Lit Template, or an HTMLElement. The getOption() function will be called for each option. The first argument is an <syn-option> element and the second argument is the query string.\n\nRemember that the options are rendered in a shadow root. To style them, you can use the style attribute in your template or you can add your own parts and target them with the ::part() selector.\n\n **Note:** Be sure you trust the content you are outputting! Passing unsanitized user input to getOption() can result in XSS vulnerabilities.",
|
|
3273
|
+
"type": "text"
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
"grouping": {
|
|
3277
|
+
"title": {
|
|
3278
|
+
"value": "Grouping Query",
|
|
3279
|
+
"type": "text"
|
|
3280
|
+
},
|
|
3281
|
+
"description": {
|
|
3282
|
+
"value": "Use <syn-optgroup> to group <syn-option>`s visually.",
|
|
3283
|
+
"type": "text"
|
|
3284
|
+
}
|
|
3285
|
+
},
|
|
3286
|
+
"container-height": {
|
|
3287
|
+
"title": {
|
|
3288
|
+
"value": "Suggestion Container Height",
|
|
3289
|
+
"type": "text"
|
|
3290
|
+
},
|
|
3291
|
+
"description": {
|
|
3292
|
+
"value": "The height of the filtered options list can be customized by setting the `max-height` on the `listbox` part of the combobox.",
|
|
3293
|
+
"type": "text"
|
|
3294
|
+
}
|
|
3295
|
+
},
|
|
3296
|
+
"clearable": {
|
|
3297
|
+
"title": {
|
|
3298
|
+
"value": "Clearable",
|
|
3299
|
+
"type": "text"
|
|
3300
|
+
},
|
|
3301
|
+
"description": {
|
|
3302
|
+
"value": "Add the clearable attribute to add a clear button when the combobox has content.",
|
|
3303
|
+
"type": "text"
|
|
3304
|
+
}
|
|
3305
|
+
},
|
|
3306
|
+
"disabled": {
|
|
3307
|
+
"title": {
|
|
3308
|
+
"value": "Disabled",
|
|
3309
|
+
"type": "text"
|
|
3310
|
+
},
|
|
3311
|
+
"description": {
|
|
3312
|
+
"value": "Use the disabled attribute to disable a combobox.",
|
|
3313
|
+
"type": "text"
|
|
3314
|
+
}
|
|
3315
|
+
},
|
|
3316
|
+
"size": {
|
|
3317
|
+
"title": {
|
|
3318
|
+
"value": "Sizes",
|
|
3319
|
+
"type": "text"
|
|
3320
|
+
},
|
|
3321
|
+
"description": {
|
|
3322
|
+
"value": "Use the size attribute to change a combobox size.",
|
|
3323
|
+
"type": "text"
|
|
3324
|
+
}
|
|
3325
|
+
},
|
|
3326
|
+
"invalid": {
|
|
3327
|
+
"title": {
|
|
3328
|
+
"value": "Invalid",
|
|
3329
|
+
"type": "text"
|
|
3330
|
+
},
|
|
3331
|
+
"description": {
|
|
3332
|
+
"value": "The invalid status is used to warn the user that the combobox is invalid. For example, if the entry is mandatory.",
|
|
3333
|
+
"type": "text"
|
|
3334
|
+
}
|
|
3335
|
+
},
|
|
3336
|
+
"preffix-sufffix": {
|
|
3337
|
+
"title": {
|
|
3338
|
+
"value": "Prefix Suffix Text and Icons",
|
|
3339
|
+
"type": "text"
|
|
3340
|
+
},
|
|
3341
|
+
"description": {
|
|
3342
|
+
"value": "Use the prefix and suffix slots to add text and icons.",
|
|
3343
|
+
"type": "text"
|
|
3344
|
+
}
|
|
3345
|
+
},
|
|
3346
|
+
"async-options": {
|
|
3347
|
+
"title": {
|
|
3348
|
+
"value": "Async Options",
|
|
3349
|
+
"type": "text"
|
|
3350
|
+
},
|
|
3351
|
+
"description": {
|
|
3352
|
+
"value": "It is possible to add options dynamically to the combobox e.g. if the option values need to be fetched asynchronously from a remote server or API.",
|
|
3353
|
+
"type": "text"
|
|
3354
|
+
}
|
|
3355
|
+
},
|
|
3356
|
+
"custom-filter": {
|
|
3357
|
+
"title": {
|
|
3358
|
+
"value": "Custom filter",
|
|
3359
|
+
"type": "text"
|
|
3360
|
+
},
|
|
3361
|
+
"description": {
|
|
3362
|
+
"value": "A custom filter can be applied by passing a filter function to the `filter` property. This filter() function will be called for each option. The first argument is an <syn-option> element and the second argument is the query string.",
|
|
3363
|
+
"type": "text"
|
|
3364
|
+
}
|
|
3365
|
+
}
|
|
3102
3366
|
}
|
|
3103
3367
|
},
|
|
3104
3368
|
"assets": {
|
|
@@ -3201,6 +3465,16 @@
|
|
|
3201
3465
|
"value": "Text colors",
|
|
3202
3466
|
"type": "text"
|
|
3203
3467
|
}
|
|
3468
|
+
},
|
|
3469
|
+
"link": {
|
|
3470
|
+
"description": {
|
|
3471
|
+
"value": "Default color used for links within the application",
|
|
3472
|
+
"type": "text"
|
|
3473
|
+
},
|
|
3474
|
+
"title": {
|
|
3475
|
+
"value": "Link colors",
|
|
3476
|
+
"type": "text"
|
|
3477
|
+
}
|
|
3204
3478
|
}
|
|
3205
3479
|
}
|
|
3206
3480
|
},
|
|
@@ -3270,6 +3544,22 @@
|
|
|
3270
3544
|
"title": {
|
|
3271
3545
|
"value": "Body and UI text",
|
|
3272
3546
|
"type": "text"
|
|
3547
|
+
},
|
|
3548
|
+
"xsmall-title": {
|
|
3549
|
+
"value": "x-small",
|
|
3550
|
+
"type": "text"
|
|
3551
|
+
},
|
|
3552
|
+
"small-title": {
|
|
3553
|
+
"value": "small",
|
|
3554
|
+
"type": "text"
|
|
3555
|
+
},
|
|
3556
|
+
"medium-title": {
|
|
3557
|
+
"value": "medium",
|
|
3558
|
+
"type": "text"
|
|
3559
|
+
},
|
|
3560
|
+
"large-title": {
|
|
3561
|
+
"value": "large",
|
|
3562
|
+
"type": "text"
|
|
3273
3563
|
}
|
|
3274
3564
|
}
|
|
3275
3565
|
},
|
|
@@ -3483,4 +3773,4 @@
|
|
|
3483
3773
|
}
|
|
3484
3774
|
}
|
|
3485
3775
|
}
|
|
3486
|
-
}
|
|
3776
|
+
}
|
|
@@ -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
|
+
}
|