@synergy-design-system/tokens 2.45.0 → 2.47.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 +20 -0
- package/dist/js/index.d.ts +246 -1
- package/dist/js/index.js +246 -1
- package/dist/scss/_tokens.scss +50 -1
- package/dist/themes/dark.css +52 -3
- package/dist/themes/light.css +52 -3
- package/dist/themes/sick2018_dark.css +52 -3
- package/dist/themes/sick2018_light.css +52 -3
- package/dist/themes/sick2025_dark.css +89 -40
- package/dist/themes/sick2025_light.css +92 -43
- package/package.json +1 -1
- package/src/figma-tokens/_docs.json +30 -0
- package/src/figma-variables/output/sick2018-dark.json +388 -8
- package/src/figma-variables/output/sick2018-light.json +388 -8
- package/src/figma-variables/output/sick2025-dark.json +421 -41
- package/src/figma-variables/output/sick2025-light.json +424 -44
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.47.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1109](https://github.com/synergy-design-system/synergy-design-system/pull/1109) [`6b4b7e2`](https://github.com/synergy-design-system/synergy-design-system/commit/6b4b7e2940b5c87e44d5da6030354ec0e21f2f38) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-16
|
|
8
|
+
|
|
9
|
+
feat: ✨ Brand updates for `<syn-button>` (#871)
|
|
10
|
+
feat: ✨ Brand updates for `<syn-dropdown>` (#949)
|
|
11
|
+
|
|
12
|
+
## 2.46.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [#1122](https://github.com/synergy-design-system/synergy-design-system/pull/1122) [`740816b`](https://github.com/synergy-design-system/synergy-design-system/commit/740816b1a86768e7f2fed5516241bdb3a9df4ef7) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-11
|
|
17
|
+
|
|
18
|
+
feat: ✨ adjust sizes of form elements (#1083)
|
|
19
|
+
- `<syn-checkbox>` Bigger checkbox in small and medium
|
|
20
|
+
- `<syn-radio>` Bigger radio control in small and medium
|
|
21
|
+
- `<syn-switch>` Larger label and bigger switch control in all sizes
|
|
22
|
+
|
|
3
23
|
## 2.45.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
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.46.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -218,6 +218,51 @@ export const SynBorderWidthXLarge: string;
|
|
|
218
218
|
*/
|
|
219
219
|
export const SynBreadcrumbColor: string;
|
|
220
220
|
|
|
221
|
+
/**
|
|
222
|
+
* Maps to the css variable `--syn-button-border-radius-large`
|
|
223
|
+
*/
|
|
224
|
+
export const SynButtonBorderRadiusLarge: string;
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* Maps to the css variable `--syn-button-border-radius-medium`
|
|
228
|
+
*/
|
|
229
|
+
export const SynButtonBorderRadiusMedium: string;
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Maps to the css variable `--syn-button-border-radius-small`
|
|
233
|
+
*/
|
|
234
|
+
export const SynButtonBorderRadiusSmall: string;
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Maps to the css variable `--syn-button-color`
|
|
238
|
+
*/
|
|
239
|
+
export const SynButtonColor: string;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Maps to the css variable `--syn-button-color-active`
|
|
243
|
+
*/
|
|
244
|
+
export const SynButtonColorActive: string;
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* Maps to the css variable `--syn-button-color-hover`
|
|
248
|
+
*/
|
|
249
|
+
export const SynButtonColorHover: string;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* Maps to the css variable `--syn-button-filled-color-text`
|
|
253
|
+
*/
|
|
254
|
+
export const SynButtonFilledColorText: string;
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* Maps to the css variable `--syn-button-filled-color-text-active`
|
|
258
|
+
*/
|
|
259
|
+
export const SynButtonFilledColorTextActive: string;
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Maps to the css variable `--syn-button-filled-color-text-hover`
|
|
263
|
+
*/
|
|
264
|
+
export const SynButtonFilledColorTextHover: string;
|
|
265
|
+
|
|
221
266
|
/**
|
|
222
267
|
* Maps to the css variable `--syn-button-font-size-large`
|
|
223
268
|
*/
|
|
@@ -233,6 +278,46 @@ export const SynButtonFontSizeMedium: string;
|
|
|
233
278
|
*/
|
|
234
279
|
export const SynButtonFontSizeSmall: string;
|
|
235
280
|
|
|
281
|
+
/**
|
|
282
|
+
* Maps to the css variable `--syn-button-outline-color-active`
|
|
283
|
+
*/
|
|
284
|
+
export const SynButtonOutlineColorActive: string;
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Maps to the css variable `--syn-button-outline-color-hover`
|
|
288
|
+
*/
|
|
289
|
+
export const SynButtonOutlineColorHover: string;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* Maps to the css variable `--syn-button-outline-color-text`
|
|
293
|
+
*/
|
|
294
|
+
export const SynButtonOutlineColorText: string;
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* Maps to the css variable `--syn-button-outline-color-text-active`
|
|
298
|
+
*/
|
|
299
|
+
export const SynButtonOutlineColorTextActive: string;
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* Maps to the css variable `--syn-button-outline-color-text-hover`
|
|
303
|
+
*/
|
|
304
|
+
export const SynButtonOutlineColorTextHover: string;
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* Maps to the css variable `--syn-button-text-color-text`
|
|
308
|
+
*/
|
|
309
|
+
export const SynButtonTextColorText: string;
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Maps to the css variable `--syn-button-text-color-text-active`
|
|
313
|
+
*/
|
|
314
|
+
export const SynButtonTextColorTextActive: string;
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* Maps to the css variable `--syn-button-text-color-text-hover`
|
|
318
|
+
*/
|
|
319
|
+
export const SynButtonTextColorTextHover: string;
|
|
320
|
+
|
|
236
321
|
/**
|
|
237
322
|
* Maps to the css variable `--syn-checkbox-border-radius`
|
|
238
323
|
*/
|
|
@@ -293,6 +378,61 @@ export const SynColorAccent900: string;
|
|
|
293
378
|
*/
|
|
294
379
|
export const SynColorAccent950: string;
|
|
295
380
|
|
|
381
|
+
/**
|
|
382
|
+
* Maps to the css variable `--syn-color-critical-50`
|
|
383
|
+
*/
|
|
384
|
+
export const SynColorCritical50: string;
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* Maps to the css variable `--syn-color-critical-100`
|
|
388
|
+
*/
|
|
389
|
+
export const SynColorCritical100: string;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* Maps to the css variable `--syn-color-critical-200`
|
|
393
|
+
*/
|
|
394
|
+
export const SynColorCritical200: string;
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* Maps to the css variable `--syn-color-critical-300`
|
|
398
|
+
*/
|
|
399
|
+
export const SynColorCritical300: string;
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* Maps to the css variable `--syn-color-critical-400`
|
|
403
|
+
*/
|
|
404
|
+
export const SynColorCritical400: string;
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* Maps to the css variable `--syn-color-critical-500`
|
|
408
|
+
*/
|
|
409
|
+
export const SynColorCritical500: string;
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* Maps to the css variable `--syn-color-critical-600`
|
|
413
|
+
*/
|
|
414
|
+
export const SynColorCritical600: string;
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* Maps to the css variable `--syn-color-critical-700`
|
|
418
|
+
*/
|
|
419
|
+
export const SynColorCritical700: string;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* Maps to the css variable `--syn-color-critical-800`
|
|
423
|
+
*/
|
|
424
|
+
export const SynColorCritical800: string;
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* Maps to the css variable `--syn-color-critical-900`
|
|
428
|
+
*/
|
|
429
|
+
export const SynColorCritical900: string;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Maps to the css variable `--syn-color-critical-950`
|
|
433
|
+
*/
|
|
434
|
+
export const SynColorCritical950: string;
|
|
435
|
+
|
|
296
436
|
/**
|
|
297
437
|
* Maps to the css variable `--syn-color-error-50`
|
|
298
438
|
*/
|
|
@@ -1208,6 +1348,76 @@ export const SynLinkUnderlineOutline: string;
|
|
|
1208
1348
|
*/
|
|
1209
1349
|
export const SynLogoColor: string;
|
|
1210
1350
|
|
|
1351
|
+
/**
|
|
1352
|
+
* Maps to the css variable `--syn-namur-color-border`
|
|
1353
|
+
*/
|
|
1354
|
+
export const SynNamurColorBorder: string;
|
|
1355
|
+
|
|
1356
|
+
/**
|
|
1357
|
+
* Maps to the css variable `--syn-namur-critical-color`
|
|
1358
|
+
*/
|
|
1359
|
+
export const SynNamurCriticalColor: string;
|
|
1360
|
+
|
|
1361
|
+
/**
|
|
1362
|
+
* Maps to the css variable `--syn-namur-critical-color-background`
|
|
1363
|
+
*/
|
|
1364
|
+
export const SynNamurCriticalColorBackground: string;
|
|
1365
|
+
|
|
1366
|
+
/**
|
|
1367
|
+
* Maps to the css variable `--syn-namur-error-color`
|
|
1368
|
+
*/
|
|
1369
|
+
export const SynNamurErrorColor: string;
|
|
1370
|
+
|
|
1371
|
+
/**
|
|
1372
|
+
* Maps to the css variable `--syn-namur-error-color-background`
|
|
1373
|
+
*/
|
|
1374
|
+
export const SynNamurErrorColorBackground: string;
|
|
1375
|
+
|
|
1376
|
+
/**
|
|
1377
|
+
* Maps to the css variable `--syn-namur-icon-color`
|
|
1378
|
+
*/
|
|
1379
|
+
export const SynNamurIconColor: string;
|
|
1380
|
+
|
|
1381
|
+
/**
|
|
1382
|
+
* Maps to the css variable `--syn-namur-info-color`
|
|
1383
|
+
*/
|
|
1384
|
+
export const SynNamurInfoColor: string;
|
|
1385
|
+
|
|
1386
|
+
/**
|
|
1387
|
+
* Maps to the css variable `--syn-namur-info-color-background`
|
|
1388
|
+
*/
|
|
1389
|
+
export const SynNamurInfoColorBackground: string;
|
|
1390
|
+
|
|
1391
|
+
/**
|
|
1392
|
+
* Maps to the css variable `--syn-namur-neutral-color`
|
|
1393
|
+
*/
|
|
1394
|
+
export const SynNamurNeutralColor: string;
|
|
1395
|
+
|
|
1396
|
+
/**
|
|
1397
|
+
* Maps to the css variable `--syn-namur-neutral-color-background`
|
|
1398
|
+
*/
|
|
1399
|
+
export const SynNamurNeutralColorBackground: string;
|
|
1400
|
+
|
|
1401
|
+
/**
|
|
1402
|
+
* Maps to the css variable `--syn-namur-success-color`
|
|
1403
|
+
*/
|
|
1404
|
+
export const SynNamurSuccessColor: string;
|
|
1405
|
+
|
|
1406
|
+
/**
|
|
1407
|
+
* Maps to the css variable `--syn-namur-success-color-background`
|
|
1408
|
+
*/
|
|
1409
|
+
export const SynNamurSuccessColorBackground: string;
|
|
1410
|
+
|
|
1411
|
+
/**
|
|
1412
|
+
* Maps to the css variable `--syn-namur-warning-color`
|
|
1413
|
+
*/
|
|
1414
|
+
export const SynNamurWarningColor: string;
|
|
1415
|
+
|
|
1416
|
+
/**
|
|
1417
|
+
* Maps to the css variable `--syn-namur-warning-color-background`
|
|
1418
|
+
*/
|
|
1419
|
+
export const SynNamurWarningColorBackground: string;
|
|
1420
|
+
|
|
1211
1421
|
/**
|
|
1212
1422
|
* Maps to the css variable `--syn-opacity-50`
|
|
1213
1423
|
*/
|
|
@@ -1338,6 +1548,11 @@ export const SynRangeTrackColorActive: string;
|
|
|
1338
1548
|
*/
|
|
1339
1549
|
export const SynReadonlyBackgroundColor: string;
|
|
1340
1550
|
|
|
1551
|
+
/**
|
|
1552
|
+
* Maps to the css variable `--syn-spacing-1-5x-large`
|
|
1553
|
+
*/
|
|
1554
|
+
export const SynSpacing15xLarge: string;
|
|
1555
|
+
|
|
1341
1556
|
/**
|
|
1342
1557
|
* Maps to the css variable `--syn-spacing-2x-large`
|
|
1343
1558
|
*/
|
|
@@ -1408,6 +1623,36 @@ export const SynSpacingXSmall: string;
|
|
|
1408
1623
|
*/
|
|
1409
1624
|
export const SynSpinnerOpacity: string;
|
|
1410
1625
|
|
|
1626
|
+
/**
|
|
1627
|
+
* Maps to the css variable `--syn-switch-height-large`
|
|
1628
|
+
*/
|
|
1629
|
+
export const SynSwitchHeightLarge: string;
|
|
1630
|
+
|
|
1631
|
+
/**
|
|
1632
|
+
* Maps to the css variable `--syn-switch-height-medium`
|
|
1633
|
+
*/
|
|
1634
|
+
export const SynSwitchHeightMedium: string;
|
|
1635
|
+
|
|
1636
|
+
/**
|
|
1637
|
+
* Maps to the css variable `--syn-switch-height-small`
|
|
1638
|
+
*/
|
|
1639
|
+
export const SynSwitchHeightSmall: string;
|
|
1640
|
+
|
|
1641
|
+
/**
|
|
1642
|
+
* Maps to the css variable `--syn-switch-width-large`
|
|
1643
|
+
*/
|
|
1644
|
+
export const SynSwitchWidthLarge: string;
|
|
1645
|
+
|
|
1646
|
+
/**
|
|
1647
|
+
* Maps to the css variable `--syn-switch-width-medium`
|
|
1648
|
+
*/
|
|
1649
|
+
export const SynSwitchWidthMedium: string;
|
|
1650
|
+
|
|
1651
|
+
/**
|
|
1652
|
+
* Maps to the css variable `--syn-switch-width-small`
|
|
1653
|
+
*/
|
|
1654
|
+
export const SynSwitchWidthSmall: string;
|
|
1655
|
+
|
|
1411
1656
|
/**
|
|
1412
1657
|
* Maps to the css variable `--syn-table-background-color`
|
|
1413
1658
|
*/
|
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.46.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -218,6 +218,51 @@ export const SynBorderWidthXLarge = 'var(--syn-border-width-x-large)';
|
|
|
218
218
|
*/
|
|
219
219
|
export const SynBreadcrumbColor = 'var(--syn-breadcrumb-color)';
|
|
220
220
|
|
|
221
|
+
/**
|
|
222
|
+
* @type {string}
|
|
223
|
+
*/
|
|
224
|
+
export const SynButtonBorderRadiusLarge = 'var(--syn-button-border-radius-large)';
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* @type {string}
|
|
228
|
+
*/
|
|
229
|
+
export const SynButtonBorderRadiusMedium = 'var(--syn-button-border-radius-medium)';
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* @type {string}
|
|
233
|
+
*/
|
|
234
|
+
export const SynButtonBorderRadiusSmall = 'var(--syn-button-border-radius-small)';
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* @type {string}
|
|
238
|
+
*/
|
|
239
|
+
export const SynButtonColor = 'var(--syn-button-color)';
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* @type {string}
|
|
243
|
+
*/
|
|
244
|
+
export const SynButtonColorActive = 'var(--syn-button-color-active)';
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @type {string}
|
|
248
|
+
*/
|
|
249
|
+
export const SynButtonColorHover = 'var(--syn-button-color-hover)';
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @type {string}
|
|
253
|
+
*/
|
|
254
|
+
export const SynButtonFilledColorText = 'var(--syn-button-filled-color-text)';
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* @type {string}
|
|
258
|
+
*/
|
|
259
|
+
export const SynButtonFilledColorTextActive = 'var(--syn-button-filled-color-text-active)';
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* @type {string}
|
|
263
|
+
*/
|
|
264
|
+
export const SynButtonFilledColorTextHover = 'var(--syn-button-filled-color-text-hover)';
|
|
265
|
+
|
|
221
266
|
/**
|
|
222
267
|
* @type {string}
|
|
223
268
|
*/
|
|
@@ -233,6 +278,46 @@ export const SynButtonFontSizeMedium = 'var(--syn-button-font-size-medium)';
|
|
|
233
278
|
*/
|
|
234
279
|
export const SynButtonFontSizeSmall = 'var(--syn-button-font-size-small)';
|
|
235
280
|
|
|
281
|
+
/**
|
|
282
|
+
* @type {string}
|
|
283
|
+
*/
|
|
284
|
+
export const SynButtonOutlineColorActive = 'var(--syn-button-outline-color-active)';
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* @type {string}
|
|
288
|
+
*/
|
|
289
|
+
export const SynButtonOutlineColorHover = 'var(--syn-button-outline-color-hover)';
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* @type {string}
|
|
293
|
+
*/
|
|
294
|
+
export const SynButtonOutlineColorText = 'var(--syn-button-outline-color-text)';
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* @type {string}
|
|
298
|
+
*/
|
|
299
|
+
export const SynButtonOutlineColorTextActive = 'var(--syn-button-outline-color-text-active)';
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* @type {string}
|
|
303
|
+
*/
|
|
304
|
+
export const SynButtonOutlineColorTextHover = 'var(--syn-button-outline-color-text-hover)';
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* @type {string}
|
|
308
|
+
*/
|
|
309
|
+
export const SynButtonTextColorText = 'var(--syn-button-text-color-text)';
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* @type {string}
|
|
313
|
+
*/
|
|
314
|
+
export const SynButtonTextColorTextActive = 'var(--syn-button-text-color-text-active)';
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* @type {string}
|
|
318
|
+
*/
|
|
319
|
+
export const SynButtonTextColorTextHover = 'var(--syn-button-text-color-text-hover)';
|
|
320
|
+
|
|
236
321
|
/**
|
|
237
322
|
* @type {string}
|
|
238
323
|
*/
|
|
@@ -293,6 +378,61 @@ export const SynColorAccent900 = 'var(--syn-color-accent-900)';
|
|
|
293
378
|
*/
|
|
294
379
|
export const SynColorAccent950 = 'var(--syn-color-accent-950)';
|
|
295
380
|
|
|
381
|
+
/**
|
|
382
|
+
* @type {string}
|
|
383
|
+
*/
|
|
384
|
+
export const SynColorCritical50 = 'var(--syn-color-critical-50)';
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* @type {string}
|
|
388
|
+
*/
|
|
389
|
+
export const SynColorCritical100 = 'var(--syn-color-critical-100)';
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* @type {string}
|
|
393
|
+
*/
|
|
394
|
+
export const SynColorCritical200 = 'var(--syn-color-critical-200)';
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* @type {string}
|
|
398
|
+
*/
|
|
399
|
+
export const SynColorCritical300 = 'var(--syn-color-critical-300)';
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* @type {string}
|
|
403
|
+
*/
|
|
404
|
+
export const SynColorCritical400 = 'var(--syn-color-critical-400)';
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* @type {string}
|
|
408
|
+
*/
|
|
409
|
+
export const SynColorCritical500 = 'var(--syn-color-critical-500)';
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* @type {string}
|
|
413
|
+
*/
|
|
414
|
+
export const SynColorCritical600 = 'var(--syn-color-critical-600)';
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* @type {string}
|
|
418
|
+
*/
|
|
419
|
+
export const SynColorCritical700 = 'var(--syn-color-critical-700)';
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* @type {string}
|
|
423
|
+
*/
|
|
424
|
+
export const SynColorCritical800 = 'var(--syn-color-critical-800)';
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* @type {string}
|
|
428
|
+
*/
|
|
429
|
+
export const SynColorCritical900 = 'var(--syn-color-critical-900)';
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @type {string}
|
|
433
|
+
*/
|
|
434
|
+
export const SynColorCritical950 = 'var(--syn-color-critical-950)';
|
|
435
|
+
|
|
296
436
|
/**
|
|
297
437
|
* @type {string}
|
|
298
438
|
*/
|
|
@@ -1208,6 +1348,76 @@ export const SynLinkUnderlineOutline = 'var(--syn-link-underline-outline)';
|
|
|
1208
1348
|
*/
|
|
1209
1349
|
export const SynLogoColor = 'var(--syn-logo-color)';
|
|
1210
1350
|
|
|
1351
|
+
/**
|
|
1352
|
+
* @type {string}
|
|
1353
|
+
*/
|
|
1354
|
+
export const SynNamurColorBorder = 'var(--syn-namur-color-border)';
|
|
1355
|
+
|
|
1356
|
+
/**
|
|
1357
|
+
* @type {string}
|
|
1358
|
+
*/
|
|
1359
|
+
export const SynNamurCriticalColor = 'var(--syn-namur-critical-color)';
|
|
1360
|
+
|
|
1361
|
+
/**
|
|
1362
|
+
* @type {string}
|
|
1363
|
+
*/
|
|
1364
|
+
export const SynNamurCriticalColorBackground = 'var(--syn-namur-critical-color-background)';
|
|
1365
|
+
|
|
1366
|
+
/**
|
|
1367
|
+
* @type {string}
|
|
1368
|
+
*/
|
|
1369
|
+
export const SynNamurErrorColor = 'var(--syn-namur-error-color)';
|
|
1370
|
+
|
|
1371
|
+
/**
|
|
1372
|
+
* @type {string}
|
|
1373
|
+
*/
|
|
1374
|
+
export const SynNamurErrorColorBackground = 'var(--syn-namur-error-color-background)';
|
|
1375
|
+
|
|
1376
|
+
/**
|
|
1377
|
+
* @type {string}
|
|
1378
|
+
*/
|
|
1379
|
+
export const SynNamurIconColor = 'var(--syn-namur-icon-color)';
|
|
1380
|
+
|
|
1381
|
+
/**
|
|
1382
|
+
* @type {string}
|
|
1383
|
+
*/
|
|
1384
|
+
export const SynNamurInfoColor = 'var(--syn-namur-info-color)';
|
|
1385
|
+
|
|
1386
|
+
/**
|
|
1387
|
+
* @type {string}
|
|
1388
|
+
*/
|
|
1389
|
+
export const SynNamurInfoColorBackground = 'var(--syn-namur-info-color-background)';
|
|
1390
|
+
|
|
1391
|
+
/**
|
|
1392
|
+
* @type {string}
|
|
1393
|
+
*/
|
|
1394
|
+
export const SynNamurNeutralColor = 'var(--syn-namur-neutral-color)';
|
|
1395
|
+
|
|
1396
|
+
/**
|
|
1397
|
+
* @type {string}
|
|
1398
|
+
*/
|
|
1399
|
+
export const SynNamurNeutralColorBackground = 'var(--syn-namur-neutral-color-background)';
|
|
1400
|
+
|
|
1401
|
+
/**
|
|
1402
|
+
* @type {string}
|
|
1403
|
+
*/
|
|
1404
|
+
export const SynNamurSuccessColor = 'var(--syn-namur-success-color)';
|
|
1405
|
+
|
|
1406
|
+
/**
|
|
1407
|
+
* @type {string}
|
|
1408
|
+
*/
|
|
1409
|
+
export const SynNamurSuccessColorBackground = 'var(--syn-namur-success-color-background)';
|
|
1410
|
+
|
|
1411
|
+
/**
|
|
1412
|
+
* @type {string}
|
|
1413
|
+
*/
|
|
1414
|
+
export const SynNamurWarningColor = 'var(--syn-namur-warning-color)';
|
|
1415
|
+
|
|
1416
|
+
/**
|
|
1417
|
+
* @type {string}
|
|
1418
|
+
*/
|
|
1419
|
+
export const SynNamurWarningColorBackground = 'var(--syn-namur-warning-color-background)';
|
|
1420
|
+
|
|
1211
1421
|
/**
|
|
1212
1422
|
* @type {string}
|
|
1213
1423
|
*/
|
|
@@ -1338,6 +1548,11 @@ export const SynRangeTrackColorActive = 'var(--syn-range-track-color-active)';
|
|
|
1338
1548
|
*/
|
|
1339
1549
|
export const SynReadonlyBackgroundColor = 'var(--syn-readonly-background-color)';
|
|
1340
1550
|
|
|
1551
|
+
/**
|
|
1552
|
+
* @type {string}
|
|
1553
|
+
*/
|
|
1554
|
+
export const SynSpacing15xLarge = 'var(--syn-spacing-1-5x-large)';
|
|
1555
|
+
|
|
1341
1556
|
/**
|
|
1342
1557
|
* @type {string}
|
|
1343
1558
|
*/
|
|
@@ -1408,6 +1623,36 @@ export const SynSpacingXSmall = 'var(--syn-spacing-x-small)';
|
|
|
1408
1623
|
*/
|
|
1409
1624
|
export const SynSpinnerOpacity = 'var(--syn-spinner-opacity)';
|
|
1410
1625
|
|
|
1626
|
+
/**
|
|
1627
|
+
* @type {string}
|
|
1628
|
+
*/
|
|
1629
|
+
export const SynSwitchHeightLarge = 'var(--syn-switch-height-large)';
|
|
1630
|
+
|
|
1631
|
+
/**
|
|
1632
|
+
* @type {string}
|
|
1633
|
+
*/
|
|
1634
|
+
export const SynSwitchHeightMedium = 'var(--syn-switch-height-medium)';
|
|
1635
|
+
|
|
1636
|
+
/**
|
|
1637
|
+
* @type {string}
|
|
1638
|
+
*/
|
|
1639
|
+
export const SynSwitchHeightSmall = 'var(--syn-switch-height-small)';
|
|
1640
|
+
|
|
1641
|
+
/**
|
|
1642
|
+
* @type {string}
|
|
1643
|
+
*/
|
|
1644
|
+
export const SynSwitchWidthLarge = 'var(--syn-switch-width-large)';
|
|
1645
|
+
|
|
1646
|
+
/**
|
|
1647
|
+
* @type {string}
|
|
1648
|
+
*/
|
|
1649
|
+
export const SynSwitchWidthMedium = 'var(--syn-switch-width-medium)';
|
|
1650
|
+
|
|
1651
|
+
/**
|
|
1652
|
+
* @type {string}
|
|
1653
|
+
*/
|
|
1654
|
+
export const SynSwitchWidthSmall = 'var(--syn-switch-width-small)';
|
|
1655
|
+
|
|
1411
1656
|
/**
|
|
1412
1657
|
* @type {string}
|
|
1413
1658
|
*/
|
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.46.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
*/
|
|
5
5
|
$SynAlertErrorColorBackground: var(--syn-alert-error-color-background) !default;
|
|
@@ -45,9 +45,26 @@ $SynBorderWidthNone: var(--syn-border-width-none) !default;
|
|
|
45
45
|
$SynBorderWidthSmall: var(--syn-border-width-small) !default;
|
|
46
46
|
$SynBorderWidthXLarge: var(--syn-border-width-x-large) !default;
|
|
47
47
|
$SynBreadcrumbColor: var(--syn-breadcrumb-color) !default;
|
|
48
|
+
$SynButtonBorderRadiusLarge: var(--syn-button-border-radius-large) !default;
|
|
49
|
+
$SynButtonBorderRadiusMedium: var(--syn-button-border-radius-medium) !default;
|
|
50
|
+
$SynButtonBorderRadiusSmall: var(--syn-button-border-radius-small) !default;
|
|
51
|
+
$SynButtonColor: var(--syn-button-color) !default;
|
|
52
|
+
$SynButtonColorActive: var(--syn-button-color-active) !default;
|
|
53
|
+
$SynButtonColorHover: var(--syn-button-color-hover) !default;
|
|
54
|
+
$SynButtonFilledColorText: var(--syn-button-filled-color-text) !default;
|
|
55
|
+
$SynButtonFilledColorTextActive: var(--syn-button-filled-color-text-active) !default;
|
|
56
|
+
$SynButtonFilledColorTextHover: var(--syn-button-filled-color-text-hover) !default;
|
|
48
57
|
$SynButtonFontSizeLarge: var(--syn-button-font-size-large) !default;
|
|
49
58
|
$SynButtonFontSizeMedium: var(--syn-button-font-size-medium) !default;
|
|
50
59
|
$SynButtonFontSizeSmall: var(--syn-button-font-size-small) !default;
|
|
60
|
+
$SynButtonOutlineColorActive: var(--syn-button-outline-color-active) !default;
|
|
61
|
+
$SynButtonOutlineColorHover: var(--syn-button-outline-color-hover) !default;
|
|
62
|
+
$SynButtonOutlineColorText: var(--syn-button-outline-color-text) !default;
|
|
63
|
+
$SynButtonOutlineColorTextActive: var(--syn-button-outline-color-text-active) !default;
|
|
64
|
+
$SynButtonOutlineColorTextHover: var(--syn-button-outline-color-text-hover) !default;
|
|
65
|
+
$SynButtonTextColorText: var(--syn-button-text-color-text) !default;
|
|
66
|
+
$SynButtonTextColorTextActive: var(--syn-button-text-color-text-active) !default;
|
|
67
|
+
$SynButtonTextColorTextHover: var(--syn-button-text-color-text-hover) !default;
|
|
51
68
|
$SynCheckboxBorderRadius: var(--syn-checkbox-border-radius) !default;
|
|
52
69
|
$SynColorAccent50: var(--syn-color-accent-50) !default;
|
|
53
70
|
$SynColorAccent100: var(--syn-color-accent-100) !default;
|
|
@@ -60,6 +77,17 @@ $SynColorAccent700: var(--syn-color-accent-700) !default;
|
|
|
60
77
|
$SynColorAccent800: var(--syn-color-accent-800) !default;
|
|
61
78
|
$SynColorAccent900: var(--syn-color-accent-900) !default;
|
|
62
79
|
$SynColorAccent950: var(--syn-color-accent-950) !default;
|
|
80
|
+
$SynColorCritical50: var(--syn-color-critical-50) !default;
|
|
81
|
+
$SynColorCritical100: var(--syn-color-critical-100) !default;
|
|
82
|
+
$SynColorCritical200: var(--syn-color-critical-200) !default;
|
|
83
|
+
$SynColorCritical300: var(--syn-color-critical-300) !default;
|
|
84
|
+
$SynColorCritical400: var(--syn-color-critical-400) !default;
|
|
85
|
+
$SynColorCritical500: var(--syn-color-critical-500) !default;
|
|
86
|
+
$SynColorCritical600: var(--syn-color-critical-600) !default;
|
|
87
|
+
$SynColorCritical700: var(--syn-color-critical-700) !default;
|
|
88
|
+
$SynColorCritical800: var(--syn-color-critical-800) !default;
|
|
89
|
+
$SynColorCritical900: var(--syn-color-critical-900) !default;
|
|
90
|
+
$SynColorCritical950: var(--syn-color-critical-950) !default;
|
|
63
91
|
$SynColorError50: var(--syn-color-error-50) !default;
|
|
64
92
|
$SynColorError100: var(--syn-color-error-100) !default;
|
|
65
93
|
$SynColorError200: var(--syn-color-error-200) !default;
|
|
@@ -243,6 +271,20 @@ $SynLinkQuietColorActive: var(--syn-link-quiet-color-active) !default;
|
|
|
243
271
|
$SynLinkQuietColorHover: var(--syn-link-quiet-color-hover) !default;
|
|
244
272
|
$SynLinkUnderlineOutline: var(--syn-link-underline-outline) !default;
|
|
245
273
|
$SynLogoColor: var(--syn-logo-color) !default;
|
|
274
|
+
$SynNamurColorBorder: var(--syn-namur-color-border) !default;
|
|
275
|
+
$SynNamurCriticalColor: var(--syn-namur-critical-color) !default;
|
|
276
|
+
$SynNamurCriticalColorBackground: var(--syn-namur-critical-color-background) !default;
|
|
277
|
+
$SynNamurErrorColor: var(--syn-namur-error-color) !default;
|
|
278
|
+
$SynNamurErrorColorBackground: var(--syn-namur-error-color-background) !default;
|
|
279
|
+
$SynNamurIconColor: var(--syn-namur-icon-color) !default;
|
|
280
|
+
$SynNamurInfoColor: var(--syn-namur-info-color) !default;
|
|
281
|
+
$SynNamurInfoColorBackground: var(--syn-namur-info-color-background) !default;
|
|
282
|
+
$SynNamurNeutralColor: var(--syn-namur-neutral-color) !default;
|
|
283
|
+
$SynNamurNeutralColorBackground: var(--syn-namur-neutral-color-background) !default;
|
|
284
|
+
$SynNamurSuccessColor: var(--syn-namur-success-color) !default;
|
|
285
|
+
$SynNamurSuccessColorBackground: var(--syn-namur-success-color-background) !default;
|
|
286
|
+
$SynNamurWarningColor: var(--syn-namur-warning-color) !default;
|
|
287
|
+
$SynNamurWarningColorBackground: var(--syn-namur-warning-color-background) !default;
|
|
246
288
|
$SynOpacity50: var(--syn-opacity-50) !default;
|
|
247
289
|
$SynOptionBackgroundColorActive: var(--syn-option-background-color-active) !default;
|
|
248
290
|
$SynOptionBackgroundColorHover: var(--syn-option-background-color-hover) !default;
|
|
@@ -269,6 +311,7 @@ $SynRangeErrorColor: var(--syn-range-error-color) !default;
|
|
|
269
311
|
$SynRangeTickColor: var(--syn-range-tick-color) !default;
|
|
270
312
|
$SynRangeTrackColorActive: var(--syn-range-track-color-active) !default;
|
|
271
313
|
$SynReadonlyBackgroundColor: var(--syn-readonly-background-color) !default;
|
|
314
|
+
$SynSpacing15xLarge: var(--syn-spacing-1-5x-large) !default;
|
|
272
315
|
$SynSpacing2xLarge: var(--syn-spacing-2x-large) !default;
|
|
273
316
|
$SynSpacing2xSmall: var(--syn-spacing-2x-small) !default;
|
|
274
317
|
$SynSpacing3xLarge: var(--syn-spacing-3x-large) !default;
|
|
@@ -283,6 +326,12 @@ $SynSpacingSmall: var(--syn-spacing-small) !default;
|
|
|
283
326
|
$SynSpacingXLarge: var(--syn-spacing-x-large) !default;
|
|
284
327
|
$SynSpacingXSmall: var(--syn-spacing-x-small) !default;
|
|
285
328
|
$SynSpinnerOpacity: var(--syn-spinner-opacity) !default;
|
|
329
|
+
$SynSwitchHeightLarge: var(--syn-switch-height-large) !default;
|
|
330
|
+
$SynSwitchHeightMedium: var(--syn-switch-height-medium) !default;
|
|
331
|
+
$SynSwitchHeightSmall: var(--syn-switch-height-small) !default;
|
|
332
|
+
$SynSwitchWidthLarge: var(--syn-switch-width-large) !default;
|
|
333
|
+
$SynSwitchWidthMedium: var(--syn-switch-width-medium) !default;
|
|
334
|
+
$SynSwitchWidthSmall: var(--syn-switch-width-small) !default;
|
|
286
335
|
$SynTableBackgroundColor: var(--syn-table-background-color) !default;
|
|
287
336
|
$SynTableBackgroundColorAlternating: var(--syn-table-background-color-alternating) !default;
|
|
288
337
|
$SynTableBackgroundColorHeader: var(--syn-table-background-color-header) !default;
|