@synergy-design-system/tokens 2.48.2 → 3.0.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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#1160](https://github.com/synergy-design-system/synergy-design-system/pull/1160) [`669cbcb`](https://github.com/synergy-design-system/synergy-design-system/commit/669cbcb9cccce72134beac99ac12a2591f3e3c74) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-02-02
8
+
9
+ feat: 💥 New default theme SICK 2025
10
+
11
+ This release introduces SICK 2025 as the new default theme. The `light.css` and `dark.css` imports now point to SICK 2025 instead of SICK 2018.
12
+
13
+ **Key Changes:**
14
+ - **Breaking:** Default theme changed to SICK 2025 - if you want to continue using SICK 2018, import `sick2018_light.css` or `sick2018_dark.css` instead
15
+ - **Deprecation Notice:** SICK 2018 theme will be removed in a future major release (expected 2027+)
16
+ - **Deprecation Notice:** `--syn-page-background` token renamed to `--syn-page-background-color`
17
+ - **Deprecation Notice:** Token Studio code in `src/figma-tokens` will be removed in a future release
18
+
19
+ For detailed migration instructions, please refer to the [breaking changes documentation](https://synergy-design-system.github.io/?path=/docs/packages-tokens-breaking-changes--docs).
20
+
3
21
  ## 2.48.2
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -15,6 +15,8 @@ Please make sure to install the tokens package as a dependency:
15
15
  npm install --save @synergy-design-system/tokens
16
16
  ```
17
17
 
18
+ > For best compliance, please make sure to install the same version that is also used in your `@synergy-design-system/components` package!
19
+
18
20
  ---
19
21
 
20
22
  ## Provided tokens
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.48.1
2
+ * @synergy-design-system/tokens version 2.48.2
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -1508,6 +1508,11 @@ export const SynOverlayBackgroundColor: string;
1508
1508
  */
1509
1509
  export const SynPageBackground: string;
1510
1510
 
1511
+ /**
1512
+ * Maps to the css variable `--syn-page-background-color`
1513
+ */
1514
+ export const SynPageBackgroundColor: string;
1515
+
1511
1516
  /**
1512
1517
  * Maps to the css variable `--syn-panel-background-color`
1513
1518
  */
package/dist/js/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.48.1
2
+ * @synergy-design-system/tokens version 2.48.2
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -1508,6 +1508,11 @@ export const SynOverlayBackgroundColor = 'var(--syn-overlay-background-color)';
1508
1508
  */
1509
1509
  export const SynPageBackground = 'var(--syn-page-background)';
1510
1510
 
1511
+ /**
1512
+ * @type {string}
1513
+ */
1514
+ export const SynPageBackgroundColor = 'var(--syn-page-background-color)';
1515
+
1511
1516
  /**
1512
1517
  * @type {string}
1513
1518
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.48.1
2
+ * @synergy-design-system/tokens version 2.48.2
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
  $SynAlertErrorColorBackground: var(--syn-alert-error-color-background) !default;
@@ -303,6 +303,7 @@ $SynOptionIconColorHover: var(--syn-option-icon-color-hover) !default;
303
303
  $SynOverlayBackgroundBlur: var(--syn-overlay-background-blur) !default;
304
304
  $SynOverlayBackgroundColor: var(--syn-overlay-background-color) !default;
305
305
  $SynPageBackground: var(--syn-page-background) !default;
306
+ $SynPageBackgroundColor: var(--syn-page-background-color) !default;
306
307
  $SynPanelBackgroundColor: var(--syn-panel-background-color) !default;
307
308
  $SynPanelBorderColor: var(--syn-panel-border-color) !default;
308
309
  $SynPanelBorderRadius: var(--syn-panel-border-radius) !default;