@synergy-design-system/tokens 1.16.0 → 1.17.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,3 +1,10 @@
1
+ # [@synergy-design-system/tokens-v1.17.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/1.16.0...tokens/1.17.0) (2024-05-08)
2
+
3
+
4
+ ### Features
5
+
6
+ * ✨ syn-dialog ([#458](https://github.com/synergy-design-system/synergy-design-system/issues/458)) ([7247f0c](https://github.com/synergy-design-system/synergy-design-system/commit/7247f0cca654ea10ec5968d92175e546c43515cd))
7
+
1
8
  # [@synergy-design-system/tokens-v1.16.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/1.15.0...tokens/1.16.0) (2024-05-02)
2
9
 
3
10
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 1.15.0
2
+ * @synergy-design-system/tokens version 1.16.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
package/dist/js/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 1.15.0
2
+ * @synergy-design-system/tokens version 1.16.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 1.15.0
2
+ * @synergy-design-system/tokens version 1.16.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
  $SynFontSizeXSmall: var(--syn-font-size-x-small) !default;
@@ -1,8 +1,8 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 1.15.0
2
+ * @synergy-design-system/tokens version 1.16.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly
5
- * Generated on Thu, 02 May 2024 06:39:11 GMT
5
+ * Generated on Wed, 08 May 2024 05:53:28 GMT
6
6
  */
7
7
 
8
8
  :root, .syn-theme-dark {
@@ -126,7 +126,7 @@
126
126
  --syn-input-font-size-small: var(--syn-font-size-small);
127
127
  --syn-input-font-size-medium: var(--syn-font-size-medium);
128
128
  --syn-input-font-size-large: var(--syn-font-size-large);
129
- --syn-overlay-background-color: rgba(0, 0, 0, 0.4);
129
+ --syn-overlay-background-color: rgba(0, 0, 0, 0.5);
130
130
  --syn-panel-background-color: var(--syn-color-neutral-0);
131
131
  --syn-panel-border-color: var(--syn-color-neutral-300);
132
132
  --syn-panel-border-width: var(--syn-border-width-small);
@@ -1,8 +1,8 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 1.15.0
2
+ * @synergy-design-system/tokens version 1.16.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly
5
- * Generated on Thu, 02 May 2024 06:39:11 GMT
5
+ * Generated on Wed, 08 May 2024 05:53:28 GMT
6
6
  */
7
7
 
8
8
  :root, .syn-theme-light {
@@ -126,7 +126,7 @@
126
126
  --syn-input-font-size-small: var(--syn-font-size-small);
127
127
  --syn-input-font-size-medium: var(--syn-font-size-medium);
128
128
  --syn-input-font-size-large: var(--syn-font-size-large);
129
- --syn-overlay-background-color: rgba(0, 0, 0, 0.4);
129
+ --syn-overlay-background-color: rgba(0, 0, 0, 0.5);
130
130
  --syn-panel-background-color: var(--syn-color-neutral-0);
131
131
  --syn-panel-border-color: var(--syn-color-neutral-300);
132
132
  --syn-panel-border-width: var(--syn-border-width-small);
package/package.json CHANGED
@@ -101,7 +101,7 @@
101
101
  },
102
102
  "type": "module",
103
103
  "types": "./dist/js/index.d.ts",
104
- "version": "1.16.0",
104
+ "version": "1.17.0",
105
105
  "scripts": {
106
106
  "build": "pnpm clean && node scripts/build.js",
107
107
  "clean": "rimraf build",
@@ -175,13 +175,55 @@
175
175
  }
176
176
  },
177
177
  "breadcrumb": {
178
- "description": {
179
- "value": "Breadcrumbs provide a group of links so users can easily navigate a website's hierarchy.",
180
- "type": "text"
178
+ "default": {
179
+ "description": {
180
+ "value": "Breadcrumbs provide a group of links so users can easily navigate a website's hierarchy. Breadcrumbs are usually placed before a page’s main content with the current page shown last to indicate the user’s position in the navigation.",
181
+ "type": "text"
182
+ },
183
+ "title": {
184
+ "value": "Breadcrumb",
185
+ "type": "text"
186
+ }
181
187
  },
182
- "title": {
183
- "value": "Breadcrumb",
184
- "type": "text"
188
+ "links": {
189
+ "title": {
190
+ "value": "Breadcrumb Links",
191
+ "type": "text"
192
+ },
193
+ "description": {
194
+ "value": "By default, breadcrumb items are rendered as buttons so you can use them to navigate single-page applications. In this case, you’ll need to add event listeners to handle clicks.\n\nFor websites, you’ll probably want to use links instead. You can make any breadcrumb item a link by applying an href attribute to it. Now, when the user activates it, they’ll be taken to the corresponding page — no event listeners required.",
195
+ "type": "text"
196
+ }
197
+ },
198
+ "prefix": {
199
+ "title": {
200
+ "value": "Prefixes",
201
+ "type": "text"
202
+ },
203
+ "description": {
204
+ "value": "Use the prefix slot to add content before any breadcrumb item.",
205
+ "type": "text"
206
+ }
207
+ },
208
+ "suffix": {
209
+ "title": {
210
+ "value": "Suffixes",
211
+ "type": "text"
212
+ },
213
+ "description": {
214
+ "value": "Use the suffix slot to add content after any breadcrumb item.",
215
+ "type": "text"
216
+ }
217
+ },
218
+ "menu": {
219
+ "title": {
220
+ "value": "With Dropdowns",
221
+ "type": "text"
222
+ },
223
+ "description": {
224
+ "value": "Dropdown menus can be placed in a prefix or suffix slot to provide additional options.",
225
+ "type": "text"
226
+ }
185
227
  }
186
228
  },
187
229
  "button": {
@@ -2,9 +2,9 @@
2
2
  "overlay": {
3
3
  "background": {
4
4
  "color": {
5
- "value": "rgba(0, 0, 0, 0.4)",
5
+ "value": "rgba(0, 0, 0, 0.5)",
6
6
  "type": "color"
7
7
  }
8
8
  }
9
9
  }
10
- }
10
+ }