@synergy-design-system/tokens 1.0.0-main.11 → 1.0.0-main.12
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 +7 -0
- package/dist/js/index.d.ts +935 -0
- package/dist/js/index.js +1 -1
- package/dist/scss/_tokens.scss +1 -1
- package/dist/themes/dark.css +2 -2
- package/dist/themes/light.css +2 -2
- package/package.json +6 -2
- package/src/figma-tokens/$themes.json +3 -6
- package/src/figma-tokens/_docs.json +205 -19
- package/src/figma-tokens/semantic/input.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@synergy-design-system/tokens-v1.0.0-main.12](https://github.com/SickDesignSystem/synergy/compare/tokens/1.0.0-main.11...tokens/1.0.0-main.12) (2023-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* ✨ Add types for @synergy-design-system/tokens ([#187](https://github.com/SickDesignSystem/synergy/issues/187)) ([894b09b](https://github.com/SickDesignSystem/synergy/commit/894b09b13ab68f95f7dbc8b9d91c1f0c7b45163c))
|
|
7
|
+
|
|
1
8
|
# [@synergy-design-system/tokens-v1.0.0-main.11](https://github.com/SickDesignSystem/synergy/compare/tokens/1.0.0-main.10...tokens/1.0.0-main.11) (2023-11-20)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -0,0 +1,935 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synergy-design-system/tokens version 1.0.0-main.11
|
|
3
|
+
* SICK Global UX Foundation
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Maps to the css variable `--syn-font-size-2x-small`
|
|
9
|
+
*/
|
|
10
|
+
export const SynFontSize2xSmall: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Maps to the css variable `--syn-font-size-x-small`
|
|
14
|
+
*/
|
|
15
|
+
export const SynFontSizeXSmall: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Maps to the css variable `--syn-font-size-small`
|
|
19
|
+
*/
|
|
20
|
+
export const SynFontSizeSmall: string;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Maps to the css variable `--syn-font-size-medium`
|
|
24
|
+
*/
|
|
25
|
+
export const SynFontSizeMedium: string;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Maps to the css variable `--syn-font-size-large`
|
|
29
|
+
*/
|
|
30
|
+
export const SynFontSizeLarge: string;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Maps to the css variable `--syn-font-size-x-large`
|
|
34
|
+
*/
|
|
35
|
+
export const SynFontSizeXLarge: string;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Maps to the css variable `--syn-font-size-2x-large`
|
|
39
|
+
*/
|
|
40
|
+
export const SynFontSize2xLarge: string;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Maps to the css variable `--syn-font-size-3x-large`
|
|
44
|
+
*/
|
|
45
|
+
export const SynFontSize3xLarge: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Maps to the css variable `--syn-duration-extra-fast`
|
|
49
|
+
*/
|
|
50
|
+
export const SynDurationExtraFast: string;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Maps to the css variable `--syn-duration-fast`
|
|
54
|
+
*/
|
|
55
|
+
export const SynDurationFast: string;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Maps to the css variable `--syn-duration-normal`
|
|
59
|
+
*/
|
|
60
|
+
export const SynDurationNormal: string;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Maps to the css variable `--syn-duration-slow`
|
|
64
|
+
*/
|
|
65
|
+
export const SynDurationSlow: string;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Maps to the css variable `--syn-duration-extra-slow`
|
|
69
|
+
*/
|
|
70
|
+
export const SynDurationExtraSlow: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Maps to the css variable `--syn-line-height-denser`
|
|
74
|
+
*/
|
|
75
|
+
export const SynLineHeightDenser: string;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Maps to the css variable `--syn-line-height-dense`
|
|
79
|
+
*/
|
|
80
|
+
export const SynLineHeightDense: string;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Maps to the css variable `--syn-line-height-normal`
|
|
84
|
+
*/
|
|
85
|
+
export const SynLineHeightNormal: string;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Maps to the css variable `--syn-line-height-loose`
|
|
89
|
+
*/
|
|
90
|
+
export const SynLineHeightLoose: string;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Maps to the css variable `--syn-line-height-looser`
|
|
94
|
+
*/
|
|
95
|
+
export const SynLineHeightLooser: string;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Maps to the css variable `--syn-font-weight-normal`
|
|
99
|
+
*/
|
|
100
|
+
export const SynFontWeightNormal: string;
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Maps to the css variable `--syn-font-weight-semibold`
|
|
104
|
+
*/
|
|
105
|
+
export const SynFontWeightSemibold: string;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Maps to the css variable `--syn-font-weight-bold`
|
|
109
|
+
*/
|
|
110
|
+
export const SynFontWeightBold: string;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Maps to the css variable `--syn-shadow-medium`
|
|
114
|
+
*/
|
|
115
|
+
export const SynShadowMedium: string;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Maps to the css variable `--syn-shadow-large`
|
|
119
|
+
*/
|
|
120
|
+
export const SynShadowLarge: string;
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Maps to the css variable `--syn-shadow-x-large`
|
|
124
|
+
*/
|
|
125
|
+
export const SynShadowXLarge: string;
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Maps to the css variable `--syn-shadow-overflow-down`
|
|
129
|
+
*/
|
|
130
|
+
export const SynShadowOverflowDown: string;
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Maps to the css variable `--syn-shadow-overflow-up`
|
|
134
|
+
*/
|
|
135
|
+
export const SynShadowOverflowUp: string;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Maps to the css variable `--syn-shadow-overflow-left`
|
|
139
|
+
*/
|
|
140
|
+
export const SynShadowOverflowLeft: string;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Maps to the css variable `--syn-shadow-overflow-right`
|
|
144
|
+
*/
|
|
145
|
+
export const SynShadowOverflowRight: string;
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Maps to the css variable `--syn-font-sans`
|
|
149
|
+
*/
|
|
150
|
+
export const SynFontSans: string;
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* Maps to the css variable `--syn-font-mono`
|
|
154
|
+
*/
|
|
155
|
+
export const SynFontMono: string;
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Maps to the css variable `--syn-spacing-4x-small`
|
|
159
|
+
*/
|
|
160
|
+
export const SynSpacing4xSmall: string;
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Maps to the css variable `--syn-spacing-3x-small`
|
|
164
|
+
*/
|
|
165
|
+
export const SynSpacing3xSmall: string;
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Maps to the css variable `--syn-spacing-2x-small`
|
|
169
|
+
*/
|
|
170
|
+
export const SynSpacing2xSmall: string;
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Maps to the css variable `--syn-spacing-x-small`
|
|
174
|
+
*/
|
|
175
|
+
export const SynSpacingXSmall: string;
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* Maps to the css variable `--syn-spacing-small`
|
|
179
|
+
*/
|
|
180
|
+
export const SynSpacingSmall: string;
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Maps to the css variable `--syn-spacing-medium`
|
|
184
|
+
*/
|
|
185
|
+
export const SynSpacingMedium: string;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Maps to the css variable `--syn-spacing-large`
|
|
189
|
+
*/
|
|
190
|
+
export const SynSpacingLarge: string;
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Maps to the css variable `--syn-spacing-x-large`
|
|
194
|
+
*/
|
|
195
|
+
export const SynSpacingXLarge: string;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Maps to the css variable `--syn-spacing-2x-large`
|
|
199
|
+
*/
|
|
200
|
+
export const SynSpacing2xLarge: string;
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Maps to the css variable `--syn-spacing-3x-large`
|
|
204
|
+
*/
|
|
205
|
+
export const SynSpacing3xLarge: string;
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Maps to the css variable `--syn-spacing-4x-large`
|
|
209
|
+
*/
|
|
210
|
+
export const SynSpacing4xLarge: string;
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Maps to the css variable `--syn-spacing-5x-large`
|
|
214
|
+
*/
|
|
215
|
+
export const SynSpacing5xLarge: string;
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* Maps to the css variable `--syn-border-radius-none`
|
|
219
|
+
*/
|
|
220
|
+
export const SynBorderRadiusNone: string;
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* Maps to the css variable `--syn-border-radius-pill`
|
|
224
|
+
*/
|
|
225
|
+
export const SynBorderRadiusPill: string;
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* Maps to the css variable `--syn-border-radius-circle`
|
|
229
|
+
*/
|
|
230
|
+
export const SynBorderRadiusCircle: string;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Maps to the css variable `--syn-dimension-base`
|
|
234
|
+
*/
|
|
235
|
+
export const SynDimensionBase: string;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Maps to the css variable `--syn-border-width-none`
|
|
239
|
+
*/
|
|
240
|
+
export const SynBorderWidthNone: string;
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* Maps to the css variable `--syn-border-width-small`
|
|
244
|
+
*/
|
|
245
|
+
export const SynBorderWidthSmall: string;
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* Maps to the css variable `--syn-border-width-medium`
|
|
249
|
+
*/
|
|
250
|
+
export const SynBorderWidthMedium: string;
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Maps to the css variable `--syn-border-width-large`
|
|
254
|
+
*/
|
|
255
|
+
export const SynBorderWidthLarge: string;
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Maps to the css variable `--syn-border-width-x-large`
|
|
259
|
+
*/
|
|
260
|
+
export const SynBorderWidthXLarge: string;
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Maps to the css variable `--syn-font-sans-fallback`
|
|
264
|
+
*/
|
|
265
|
+
export const SynFontSansFallback: string;
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* Maps to the css variable `--syn-button-font-size-small`
|
|
269
|
+
*/
|
|
270
|
+
export const SynButtonFontSizeSmall: string;
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Maps to the css variable `--syn-button-font-size-medium`
|
|
274
|
+
*/
|
|
275
|
+
export const SynButtonFontSizeMedium: string;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Maps to the css variable `--syn-button-font-size-large`
|
|
279
|
+
*/
|
|
280
|
+
export const SynButtonFontSizeLarge: string;
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* Maps to the css variable `--syn-focus-ring-color`
|
|
284
|
+
*/
|
|
285
|
+
export const SynFocusRingColor: string;
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Maps to the css variable `--syn-focus-ring-width`
|
|
289
|
+
*/
|
|
290
|
+
export const SynFocusRingWidth: string;
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* Maps to the css variable `--syn-focus-ring-offset`
|
|
294
|
+
*/
|
|
295
|
+
export const SynFocusRingOffset: string;
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* Maps to the css variable `--syn-input-color`
|
|
299
|
+
*/
|
|
300
|
+
export const SynInputColor: string;
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Maps to the css variable `--syn-input-color-hover`
|
|
304
|
+
*/
|
|
305
|
+
export const SynInputColorHover: string;
|
|
306
|
+
|
|
307
|
+
/**
|
|
308
|
+
* Maps to the css variable `--syn-input-color-focus`
|
|
309
|
+
*/
|
|
310
|
+
export const SynInputColorFocus: string;
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* Maps to the css variable `--syn-input-color-disabled`
|
|
314
|
+
*/
|
|
315
|
+
export const SynInputColorDisabled: string;
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* Maps to the css variable `--syn-input-background-color`
|
|
319
|
+
*/
|
|
320
|
+
export const SynInputBackgroundColor: string;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Maps to the css variable `--syn-input-background-color-hover`
|
|
324
|
+
*/
|
|
325
|
+
export const SynInputBackgroundColorHover: string;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Maps to the css variable `--syn-input-background-color-focus`
|
|
329
|
+
*/
|
|
330
|
+
export const SynInputBackgroundColorFocus: string;
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* Maps to the css variable `--syn-input-background-color-disabled`
|
|
334
|
+
*/
|
|
335
|
+
export const SynInputBackgroundColorDisabled: string;
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* Maps to the css variable `--syn-input-border-color`
|
|
339
|
+
*/
|
|
340
|
+
export const SynInputBorderColor: string;
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* Maps to the css variable `--syn-input-border-color-hover`
|
|
344
|
+
*/
|
|
345
|
+
export const SynInputBorderColorHover: string;
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* Maps to the css variable `--syn-input-border-color-focus`
|
|
349
|
+
*/
|
|
350
|
+
export const SynInputBorderColorFocus: string;
|
|
351
|
+
|
|
352
|
+
/**
|
|
353
|
+
* Maps to the css variable `--syn-input-border-color-disables`
|
|
354
|
+
*/
|
|
355
|
+
export const SynInputBorderColorDisables: string;
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* Maps to the css variable `--syn-input-border-radius-small`
|
|
359
|
+
*/
|
|
360
|
+
export const SynInputBorderRadiusSmall: string;
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* Maps to the css variable `--syn-input-border-radius-medium`
|
|
364
|
+
*/
|
|
365
|
+
export const SynInputBorderRadiusMedium: string;
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* Maps to the css variable `--syn-input-border-radius-large`
|
|
369
|
+
*/
|
|
370
|
+
export const SynInputBorderRadiusLarge: string;
|
|
371
|
+
|
|
372
|
+
/**
|
|
373
|
+
* Maps to the css variable `--syn-input-border-color-focus-error`
|
|
374
|
+
*/
|
|
375
|
+
export const SynInputBorderColorFocusError: string;
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* Maps to the css variable `--syn-input-width`
|
|
379
|
+
*/
|
|
380
|
+
export const SynInputWidth: string;
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* Maps to the css variable `--syn-input-icon-color`
|
|
384
|
+
*/
|
|
385
|
+
export const SynInputIconColor: string;
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* Maps to the css variable `--syn-input-icon-color-hover`
|
|
389
|
+
*/
|
|
390
|
+
export const SynInputIconColorHover: string;
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* Maps to the css variable `--syn-input-icon-color-focus`
|
|
394
|
+
*/
|
|
395
|
+
export const SynInputIconColorFocus: string;
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* Maps to the css variable `--syn-input-icon-icon-clearable-color`
|
|
399
|
+
*/
|
|
400
|
+
export const SynInputIconIconClearableColor: string;
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* Maps to the css variable `--syn-input-icon-icon-clearable-color-hover`
|
|
404
|
+
*/
|
|
405
|
+
export const SynInputIconIconClearableColorHover: string;
|
|
406
|
+
|
|
407
|
+
/**
|
|
408
|
+
* Maps to the css variable `--syn-input-icon-icon-clearable-color-focus`
|
|
409
|
+
*/
|
|
410
|
+
export const SynInputIconIconClearableColorFocus: string;
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* Maps to the css variable `--syn-input-placeholder-color`
|
|
414
|
+
*/
|
|
415
|
+
export const SynInputPlaceholderColor: string;
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* Maps to the css variable `--syn-input-placeholder-color-disabled`
|
|
419
|
+
*/
|
|
420
|
+
export const SynInputPlaceholderColorDisabled: string;
|
|
421
|
+
|
|
422
|
+
/**
|
|
423
|
+
* Maps to the css variable `--syn-input-required-content`
|
|
424
|
+
*/
|
|
425
|
+
export const SynInputRequiredContent: string;
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* Maps to the css variable `--syn-input-required-content-offset`
|
|
429
|
+
*/
|
|
430
|
+
export const SynInputRequiredContentOffset: string;
|
|
431
|
+
|
|
432
|
+
/**
|
|
433
|
+
* Maps to the css variable `--syn-input-label-color`
|
|
434
|
+
*/
|
|
435
|
+
export const SynInputLabelColor: string;
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* Maps to the css variable `--syn-input-label-font-size-small`
|
|
439
|
+
*/
|
|
440
|
+
export const SynInputLabelFontSizeSmall: string;
|
|
441
|
+
|
|
442
|
+
/**
|
|
443
|
+
* Maps to the css variable `--syn-input-label-font-size-medium`
|
|
444
|
+
*/
|
|
445
|
+
export const SynInputLabelFontSizeMedium: string;
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* Maps to the css variable `--syn-input-label-font-size-large`
|
|
449
|
+
*/
|
|
450
|
+
export const SynInputLabelFontSizeLarge: string;
|
|
451
|
+
|
|
452
|
+
/**
|
|
453
|
+
* Maps to the css variable `--syn-input-spacing-small`
|
|
454
|
+
*/
|
|
455
|
+
export const SynInputSpacingSmall: string;
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* Maps to the css variable `--syn-input-spacing-medium`
|
|
459
|
+
*/
|
|
460
|
+
export const SynInputSpacingMedium: string;
|
|
461
|
+
|
|
462
|
+
/**
|
|
463
|
+
* Maps to the css variable `--syn-input-spacing-large`
|
|
464
|
+
*/
|
|
465
|
+
export const SynInputSpacingLarge: string;
|
|
466
|
+
|
|
467
|
+
/**
|
|
468
|
+
* Maps to the css variable `--syn-input-focus-ring-color`
|
|
469
|
+
*/
|
|
470
|
+
export const SynInputFocusRingColor: string;
|
|
471
|
+
|
|
472
|
+
/**
|
|
473
|
+
* Maps to the css variable `--syn-input-focus-ring-offset`
|
|
474
|
+
*/
|
|
475
|
+
export const SynInputFocusRingOffset: string;
|
|
476
|
+
|
|
477
|
+
/**
|
|
478
|
+
* Maps to the css variable `--syn-input-focus-ring-error`
|
|
479
|
+
*/
|
|
480
|
+
export const SynInputFocusRingError: string;
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* Maps to the css variable `--syn-input-disabled-opacity`
|
|
484
|
+
*/
|
|
485
|
+
export const SynInputDisabledOpacity: string;
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* Maps to the css variable `--syn-input-readonly-background-color`
|
|
489
|
+
*/
|
|
490
|
+
export const SynInputReadonlyBackgroundColor: string;
|
|
491
|
+
|
|
492
|
+
/**
|
|
493
|
+
* Maps to the css variable `--syn-input-readonly-background-color-hover`
|
|
494
|
+
*/
|
|
495
|
+
export const SynInputReadonlyBackgroundColorHover: string;
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* Maps to the css variable `--syn-input-readonly-background-color-focus`
|
|
499
|
+
*/
|
|
500
|
+
export const SynInputReadonlyBackgroundColorFocus: string;
|
|
501
|
+
|
|
502
|
+
/**
|
|
503
|
+
* Maps to the css variable `--syn-input-readonly-background-color-disabled`
|
|
504
|
+
*/
|
|
505
|
+
export const SynInputReadonlyBackgroundColorDisabled: string;
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* Maps to the css variable `--syn-input-help-text-color`
|
|
509
|
+
*/
|
|
510
|
+
export const SynInputHelpTextColor: string;
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Maps to the css variable `--syn-input-help-text-color-error`
|
|
514
|
+
*/
|
|
515
|
+
export const SynInputHelpTextColorError: string;
|
|
516
|
+
|
|
517
|
+
/**
|
|
518
|
+
* Maps to the css variable `--syn-input-help-text-font-size-small`
|
|
519
|
+
*/
|
|
520
|
+
export const SynInputHelpTextFontSizeSmall: string;
|
|
521
|
+
|
|
522
|
+
/**
|
|
523
|
+
* Maps to the css variable `--syn-input-help-text-font-size-medium`
|
|
524
|
+
*/
|
|
525
|
+
export const SynInputHelpTextFontSizeMedium: string;
|
|
526
|
+
|
|
527
|
+
/**
|
|
528
|
+
* Maps to the css variable `--syn-input-help-text-font-size-large`
|
|
529
|
+
*/
|
|
530
|
+
export const SynInputHelpTextFontSizeLarge: string;
|
|
531
|
+
|
|
532
|
+
/**
|
|
533
|
+
* Maps to the css variable `--syn-input-height-small`
|
|
534
|
+
*/
|
|
535
|
+
export const SynInputHeightSmall: string;
|
|
536
|
+
|
|
537
|
+
/**
|
|
538
|
+
* Maps to the css variable `--syn-input-height-medium`
|
|
539
|
+
*/
|
|
540
|
+
export const SynInputHeightMedium: string;
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* Maps to the css variable `--syn-input-height-large`
|
|
544
|
+
*/
|
|
545
|
+
export const SynInputHeightLarge: string;
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* Maps to the css variable `--syn-input-readonly-color`
|
|
549
|
+
*/
|
|
550
|
+
export const SynInputReadonlyColor: string;
|
|
551
|
+
|
|
552
|
+
/**
|
|
553
|
+
* Maps to the css variable `--syn-input-readonly-color-disabled`
|
|
554
|
+
*/
|
|
555
|
+
export const SynInputReadonlyColorDisabled: string;
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* Maps to the css variable `--syn-input-readonly-color-hover`
|
|
559
|
+
*/
|
|
560
|
+
export const SynInputReadonlyColorHover: string;
|
|
561
|
+
|
|
562
|
+
/**
|
|
563
|
+
* Maps to the css variable `--syn-input-readonly-color-focus`
|
|
564
|
+
*/
|
|
565
|
+
export const SynInputReadonlyColorFocus: string;
|
|
566
|
+
|
|
567
|
+
/**
|
|
568
|
+
* Maps to the css variable `--syn-input-font-size-small`
|
|
569
|
+
*/
|
|
570
|
+
export const SynInputFontSizeSmall: string;
|
|
571
|
+
|
|
572
|
+
/**
|
|
573
|
+
* Maps to the css variable `--syn-input-font-size-medium`
|
|
574
|
+
*/
|
|
575
|
+
export const SynInputFontSizeMedium: string;
|
|
576
|
+
|
|
577
|
+
/**
|
|
578
|
+
* Maps to the css variable `--syn-input-font-size-large`
|
|
579
|
+
*/
|
|
580
|
+
export const SynInputFontSizeLarge: string;
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* Maps to the css variable `--syn-toggle-size-small`
|
|
584
|
+
*/
|
|
585
|
+
export const SynToggleSizeSmall: string;
|
|
586
|
+
|
|
587
|
+
/**
|
|
588
|
+
* Maps to the css variable `--syn-toggle-size-medium`
|
|
589
|
+
*/
|
|
590
|
+
export const SynToggleSizeMedium: string;
|
|
591
|
+
|
|
592
|
+
/**
|
|
593
|
+
* Maps to the css variable `--syn-toggle-size-large`
|
|
594
|
+
*/
|
|
595
|
+
export const SynToggleSizeLarge: string;
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* Maps to the css variable `--syn-color-primary-50`
|
|
599
|
+
*/
|
|
600
|
+
export const SynColorPrimary50: string;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* Maps to the css variable `--syn-color-primary-100`
|
|
604
|
+
*/
|
|
605
|
+
export const SynColorPrimary100: string;
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Maps to the css variable `--syn-color-primary-200`
|
|
609
|
+
*/
|
|
610
|
+
export const SynColorPrimary200: string;
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* Maps to the css variable `--syn-color-primary-300`
|
|
614
|
+
*/
|
|
615
|
+
export const SynColorPrimary300: string;
|
|
616
|
+
|
|
617
|
+
/**
|
|
618
|
+
* Maps to the css variable `--syn-color-primary-400`
|
|
619
|
+
*/
|
|
620
|
+
export const SynColorPrimary400: string;
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* Maps to the css variable `--syn-color-primary-500`
|
|
624
|
+
*/
|
|
625
|
+
export const SynColorPrimary500: string;
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* Maps to the css variable `--syn-color-primary-600`
|
|
629
|
+
*/
|
|
630
|
+
export const SynColorPrimary600: string;
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* Maps to the css variable `--syn-color-primary-700`
|
|
634
|
+
*/
|
|
635
|
+
export const SynColorPrimary700: string;
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* Maps to the css variable `--syn-color-primary-800`
|
|
639
|
+
*/
|
|
640
|
+
export const SynColorPrimary800: string;
|
|
641
|
+
|
|
642
|
+
/**
|
|
643
|
+
* Maps to the css variable `--syn-color-primary-900`
|
|
644
|
+
*/
|
|
645
|
+
export const SynColorPrimary900: string;
|
|
646
|
+
|
|
647
|
+
/**
|
|
648
|
+
* Maps to the css variable `--syn-color-primary-950`
|
|
649
|
+
*/
|
|
650
|
+
export const SynColorPrimary950: string;
|
|
651
|
+
|
|
652
|
+
/**
|
|
653
|
+
* Maps to the css variable `--syn-color-success-50`
|
|
654
|
+
*/
|
|
655
|
+
export const SynColorSuccess50: string;
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* Maps to the css variable `--syn-color-success-100`
|
|
659
|
+
*/
|
|
660
|
+
export const SynColorSuccess100: string;
|
|
661
|
+
|
|
662
|
+
/**
|
|
663
|
+
* Maps to the css variable `--syn-color-success-200`
|
|
664
|
+
*/
|
|
665
|
+
export const SynColorSuccess200: string;
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* Maps to the css variable `--syn-color-success-300`
|
|
669
|
+
*/
|
|
670
|
+
export const SynColorSuccess300: string;
|
|
671
|
+
|
|
672
|
+
/**
|
|
673
|
+
* Maps to the css variable `--syn-color-success-400`
|
|
674
|
+
*/
|
|
675
|
+
export const SynColorSuccess400: string;
|
|
676
|
+
|
|
677
|
+
/**
|
|
678
|
+
* Maps to the css variable `--syn-color-success-500`
|
|
679
|
+
*/
|
|
680
|
+
export const SynColorSuccess500: string;
|
|
681
|
+
|
|
682
|
+
/**
|
|
683
|
+
* Maps to the css variable `--syn-color-success-600`
|
|
684
|
+
*/
|
|
685
|
+
export const SynColorSuccess600: string;
|
|
686
|
+
|
|
687
|
+
/**
|
|
688
|
+
* Maps to the css variable `--syn-color-success-700`
|
|
689
|
+
*/
|
|
690
|
+
export const SynColorSuccess700: string;
|
|
691
|
+
|
|
692
|
+
/**
|
|
693
|
+
* Maps to the css variable `--syn-color-success-800`
|
|
694
|
+
*/
|
|
695
|
+
export const SynColorSuccess800: string;
|
|
696
|
+
|
|
697
|
+
/**
|
|
698
|
+
* Maps to the css variable `--syn-color-success-900`
|
|
699
|
+
*/
|
|
700
|
+
export const SynColorSuccess900: string;
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* Maps to the css variable `--syn-color-success-950`
|
|
704
|
+
*/
|
|
705
|
+
export const SynColorSuccess950: string;
|
|
706
|
+
|
|
707
|
+
/**
|
|
708
|
+
* Maps to the css variable `--syn-color-warning-50`
|
|
709
|
+
*/
|
|
710
|
+
export const SynColorWarning50: string;
|
|
711
|
+
|
|
712
|
+
/**
|
|
713
|
+
* Maps to the css variable `--syn-color-warning-100`
|
|
714
|
+
*/
|
|
715
|
+
export const SynColorWarning100: string;
|
|
716
|
+
|
|
717
|
+
/**
|
|
718
|
+
* Maps to the css variable `--syn-color-warning-200`
|
|
719
|
+
*/
|
|
720
|
+
export const SynColorWarning200: string;
|
|
721
|
+
|
|
722
|
+
/**
|
|
723
|
+
* Maps to the css variable `--syn-color-warning-300`
|
|
724
|
+
*/
|
|
725
|
+
export const SynColorWarning300: string;
|
|
726
|
+
|
|
727
|
+
/**
|
|
728
|
+
* Maps to the css variable `--syn-color-warning-400`
|
|
729
|
+
*/
|
|
730
|
+
export const SynColorWarning400: string;
|
|
731
|
+
|
|
732
|
+
/**
|
|
733
|
+
* Maps to the css variable `--syn-color-warning-500`
|
|
734
|
+
*/
|
|
735
|
+
export const SynColorWarning500: string;
|
|
736
|
+
|
|
737
|
+
/**
|
|
738
|
+
* Maps to the css variable `--syn-color-warning-600`
|
|
739
|
+
*/
|
|
740
|
+
export const SynColorWarning600: string;
|
|
741
|
+
|
|
742
|
+
/**
|
|
743
|
+
* Maps to the css variable `--syn-color-warning-700`
|
|
744
|
+
*/
|
|
745
|
+
export const SynColorWarning700: string;
|
|
746
|
+
|
|
747
|
+
/**
|
|
748
|
+
* Maps to the css variable `--syn-color-warning-800`
|
|
749
|
+
*/
|
|
750
|
+
export const SynColorWarning800: string;
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* Maps to the css variable `--syn-color-warning-900`
|
|
754
|
+
*/
|
|
755
|
+
export const SynColorWarning900: string;
|
|
756
|
+
|
|
757
|
+
/**
|
|
758
|
+
* Maps to the css variable `--syn-color-warning-950`
|
|
759
|
+
*/
|
|
760
|
+
export const SynColorWarning950: string;
|
|
761
|
+
|
|
762
|
+
/**
|
|
763
|
+
* Maps to the css variable `--syn-color-error-50`
|
|
764
|
+
*/
|
|
765
|
+
export const SynColorError50: string;
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* Maps to the css variable `--syn-color-error-100`
|
|
769
|
+
*/
|
|
770
|
+
export const SynColorError100: string;
|
|
771
|
+
|
|
772
|
+
/**
|
|
773
|
+
* Maps to the css variable `--syn-color-error-200`
|
|
774
|
+
*/
|
|
775
|
+
export const SynColorError200: string;
|
|
776
|
+
|
|
777
|
+
/**
|
|
778
|
+
* Maps to the css variable `--syn-color-error-300`
|
|
779
|
+
*/
|
|
780
|
+
export const SynColorError300: string;
|
|
781
|
+
|
|
782
|
+
/**
|
|
783
|
+
* Maps to the css variable `--syn-color-error-400`
|
|
784
|
+
*/
|
|
785
|
+
export const SynColorError400: string;
|
|
786
|
+
|
|
787
|
+
/**
|
|
788
|
+
* Maps to the css variable `--syn-color-error-500`
|
|
789
|
+
*/
|
|
790
|
+
export const SynColorError500: string;
|
|
791
|
+
|
|
792
|
+
/**
|
|
793
|
+
* Maps to the css variable `--syn-color-error-600`
|
|
794
|
+
*/
|
|
795
|
+
export const SynColorError600: string;
|
|
796
|
+
|
|
797
|
+
/**
|
|
798
|
+
* Maps to the css variable `--syn-color-error-700`
|
|
799
|
+
*/
|
|
800
|
+
export const SynColorError700: string;
|
|
801
|
+
|
|
802
|
+
/**
|
|
803
|
+
* Maps to the css variable `--syn-color-error-800`
|
|
804
|
+
*/
|
|
805
|
+
export const SynColorError800: string;
|
|
806
|
+
|
|
807
|
+
/**
|
|
808
|
+
* Maps to the css variable `--syn-color-error-900`
|
|
809
|
+
*/
|
|
810
|
+
export const SynColorError900: string;
|
|
811
|
+
|
|
812
|
+
/**
|
|
813
|
+
* Maps to the css variable `--syn-color-error-950`
|
|
814
|
+
*/
|
|
815
|
+
export const SynColorError950: string;
|
|
816
|
+
|
|
817
|
+
/**
|
|
818
|
+
* Maps to the css variable `--syn-color-accent-50`
|
|
819
|
+
*/
|
|
820
|
+
export const SynColorAccent50: string;
|
|
821
|
+
|
|
822
|
+
/**
|
|
823
|
+
* Maps to the css variable `--syn-color-accent-100`
|
|
824
|
+
*/
|
|
825
|
+
export const SynColorAccent100: string;
|
|
826
|
+
|
|
827
|
+
/**
|
|
828
|
+
* Maps to the css variable `--syn-color-accent-200`
|
|
829
|
+
*/
|
|
830
|
+
export const SynColorAccent200: string;
|
|
831
|
+
|
|
832
|
+
/**
|
|
833
|
+
* Maps to the css variable `--syn-color-accent-300`
|
|
834
|
+
*/
|
|
835
|
+
export const SynColorAccent300: string;
|
|
836
|
+
|
|
837
|
+
/**
|
|
838
|
+
* Maps to the css variable `--syn-color-accent-400`
|
|
839
|
+
*/
|
|
840
|
+
export const SynColorAccent400: string;
|
|
841
|
+
|
|
842
|
+
/**
|
|
843
|
+
* Maps to the css variable `--syn-color-accent-500`
|
|
844
|
+
*/
|
|
845
|
+
export const SynColorAccent500: string;
|
|
846
|
+
|
|
847
|
+
/**
|
|
848
|
+
* Maps to the css variable `--syn-color-accent-600`
|
|
849
|
+
*/
|
|
850
|
+
export const SynColorAccent600: string;
|
|
851
|
+
|
|
852
|
+
/**
|
|
853
|
+
* Maps to the css variable `--syn-color-accent-700`
|
|
854
|
+
*/
|
|
855
|
+
export const SynColorAccent700: string;
|
|
856
|
+
|
|
857
|
+
/**
|
|
858
|
+
* Maps to the css variable `--syn-color-accent-800`
|
|
859
|
+
*/
|
|
860
|
+
export const SynColorAccent800: string;
|
|
861
|
+
|
|
862
|
+
/**
|
|
863
|
+
* Maps to the css variable `--syn-color-accent-900`
|
|
864
|
+
*/
|
|
865
|
+
export const SynColorAccent900: string;
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* Maps to the css variable `--syn-color-accent-950`
|
|
869
|
+
*/
|
|
870
|
+
export const SynColorAccent950: string;
|
|
871
|
+
|
|
872
|
+
/**
|
|
873
|
+
* Maps to the css variable `--syn-color-neutral-0`
|
|
874
|
+
*/
|
|
875
|
+
export const SynColorNeutral0: string;
|
|
876
|
+
|
|
877
|
+
/**
|
|
878
|
+
* Maps to the css variable `--syn-color-neutral-50`
|
|
879
|
+
*/
|
|
880
|
+
export const SynColorNeutral50: string;
|
|
881
|
+
|
|
882
|
+
/**
|
|
883
|
+
* Maps to the css variable `--syn-color-neutral-100`
|
|
884
|
+
*/
|
|
885
|
+
export const SynColorNeutral100: string;
|
|
886
|
+
|
|
887
|
+
/**
|
|
888
|
+
* Maps to the css variable `--syn-color-neutral-200`
|
|
889
|
+
*/
|
|
890
|
+
export const SynColorNeutral200: string;
|
|
891
|
+
|
|
892
|
+
/**
|
|
893
|
+
* Maps to the css variable `--syn-color-neutral-300`
|
|
894
|
+
*/
|
|
895
|
+
export const SynColorNeutral300: string;
|
|
896
|
+
|
|
897
|
+
/**
|
|
898
|
+
* Maps to the css variable `--syn-color-neutral-400`
|
|
899
|
+
*/
|
|
900
|
+
export const SynColorNeutral400: string;
|
|
901
|
+
|
|
902
|
+
/**
|
|
903
|
+
* Maps to the css variable `--syn-color-neutral-500`
|
|
904
|
+
*/
|
|
905
|
+
export const SynColorNeutral500: string;
|
|
906
|
+
|
|
907
|
+
/**
|
|
908
|
+
* Maps to the css variable `--syn-color-neutral-600`
|
|
909
|
+
*/
|
|
910
|
+
export const SynColorNeutral600: string;
|
|
911
|
+
|
|
912
|
+
/**
|
|
913
|
+
* Maps to the css variable `--syn-color-neutral-700`
|
|
914
|
+
*/
|
|
915
|
+
export const SynColorNeutral700: string;
|
|
916
|
+
|
|
917
|
+
/**
|
|
918
|
+
* Maps to the css variable `--syn-color-neutral-800`
|
|
919
|
+
*/
|
|
920
|
+
export const SynColorNeutral800: string;
|
|
921
|
+
|
|
922
|
+
/**
|
|
923
|
+
* Maps to the css variable `--syn-color-neutral-900`
|
|
924
|
+
*/
|
|
925
|
+
export const SynColorNeutral900: string;
|
|
926
|
+
|
|
927
|
+
/**
|
|
928
|
+
* Maps to the css variable `--syn-color-neutral-950`
|
|
929
|
+
*/
|
|
930
|
+
export const SynColorNeutral950: string;
|
|
931
|
+
|
|
932
|
+
/**
|
|
933
|
+
* Maps to the css variable `--syn-color-neutral-1000`
|
|
934
|
+
*/
|
|
935
|
+
export const SynColorNeutral1000: string;
|
package/dist/js/index.js
CHANGED
package/dist/scss/_tokens.scss
CHANGED
package/dist/themes/dark.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 1.0.0-main.
|
|
2
|
+
* @synergy-design-system/tokens version 1.0.0-main.11
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
* Do not edit directly
|
|
5
|
-
* Generated on
|
|
5
|
+
* Generated on Wed, 29 Nov 2023 08:00:35 GMT
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
:root {
|
package/dist/themes/light.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 1.0.0-main.
|
|
2
|
+
* @synergy-design-system/tokens version 1.0.0-main.11
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
* Do not edit directly
|
|
5
|
-
* Generated on
|
|
5
|
+
* Generated on Wed, 29 Nov 2023 08:00:35 GMT
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
:root {
|
package/package.json
CHANGED
|
@@ -20,7 +20,10 @@
|
|
|
20
20
|
"@synergy-design-system/eslint-config-syn": "0.1.0"
|
|
21
21
|
},
|
|
22
22
|
"exports": {
|
|
23
|
-
".":
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./dist/js/index.d.ts",
|
|
25
|
+
"import": "./dist/js/index.js"
|
|
26
|
+
},
|
|
24
27
|
"./themes/*": "./dist/themes/*",
|
|
25
28
|
"./scss": "./dist/scss/_tokens.scss"
|
|
26
29
|
},
|
|
@@ -100,7 +103,8 @@
|
|
|
100
103
|
]
|
|
101
104
|
},
|
|
102
105
|
"type": "module",
|
|
103
|
-
"
|
|
106
|
+
"types": "./dist/js/index.d.ts",
|
|
107
|
+
"version": "1.0.0-main.12",
|
|
104
108
|
"scripts": {
|
|
105
109
|
"build": "pnpm clean && node scripts/build.js",
|
|
106
110
|
"clean": "rimraf build",
|
|
@@ -5,8 +5,7 @@
|
|
|
5
5
|
"group": "Theme",
|
|
6
6
|
"selectedTokenSets": {
|
|
7
7
|
"color/light": "enabled",
|
|
8
|
-
"color/primitives": "source"
|
|
9
|
-
"semantic/toggle": "disabled"
|
|
8
|
+
"color/primitives": "source"
|
|
10
9
|
},
|
|
11
10
|
"$figmaStyleReferences": {
|
|
12
11
|
"primary.50": "S:eb21790c7e19e4a2f70b605f29d45573656ac66e,",
|
|
@@ -157,8 +156,7 @@
|
|
|
157
156
|
"group": "Theme",
|
|
158
157
|
"selectedTokenSets": {
|
|
159
158
|
"color/dark": "enabled",
|
|
160
|
-
"color/primitives": "source"
|
|
161
|
-
"semantic/toggle": "disabled"
|
|
159
|
+
"color/primitives": "source"
|
|
162
160
|
},
|
|
163
161
|
"$figmaStyleReferences": {},
|
|
164
162
|
"$figmaVariableReferences": {
|
|
@@ -238,8 +236,7 @@
|
|
|
238
236
|
"id": "bc6b869612b2783f5cf45d3783bee47bdf9e2e27",
|
|
239
237
|
"name": "Default",
|
|
240
238
|
"selectedTokenSets": {
|
|
241
|
-
"globals": "enabled"
|
|
242
|
-
"semantic/toggle": "disabled"
|
|
239
|
+
"globals": "enabled"
|
|
243
240
|
},
|
|
244
241
|
"$figmaStyleReferences": {
|
|
245
242
|
"shadow.overflow-down": "S:83a7cfa6ab292f413e064c58b850a3931c575de8,",
|
|
@@ -213,13 +213,85 @@
|
|
|
213
213
|
}
|
|
214
214
|
},
|
|
215
215
|
"checkbox": {
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
|
|
216
|
+
"default": {
|
|
217
|
+
"description": {
|
|
218
|
+
"value": "Checkboxes allow the user to toggle an option on or off.",
|
|
219
|
+
"type": "text"
|
|
220
|
+
},
|
|
221
|
+
"title": {
|
|
222
|
+
"value": "Checkbox",
|
|
223
|
+
"type": "text"
|
|
224
|
+
}
|
|
219
225
|
},
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
|
|
226
|
+
"checked": {
|
|
227
|
+
"title": {
|
|
228
|
+
"value": "Checked",
|
|
229
|
+
"type": "text"
|
|
230
|
+
},
|
|
231
|
+
"description": {
|
|
232
|
+
"value": "Use the checked attribute to activate the checkbox.",
|
|
233
|
+
"type": "text"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"indeterminate": {
|
|
237
|
+
"title": {
|
|
238
|
+
"value": "Indeterminate",
|
|
239
|
+
"type": "text"
|
|
240
|
+
},
|
|
241
|
+
"description": {
|
|
242
|
+
"value": "Use the indeterminate attribute to make the checkbox indeterminate.",
|
|
243
|
+
"type": "text"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"focus": {
|
|
247
|
+
"title": {
|
|
248
|
+
"value": "Focus",
|
|
249
|
+
"type": "text"
|
|
250
|
+
},
|
|
251
|
+
"description": {
|
|
252
|
+
"value": "The focus event gives the user feedback that the Checkbox has been focused by the keyboard interaction.",
|
|
253
|
+
"type": "text"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"disabled": {
|
|
257
|
+
"title": {
|
|
258
|
+
"value": "Disabled",
|
|
259
|
+
"type": "text"
|
|
260
|
+
},
|
|
261
|
+
"description": {
|
|
262
|
+
"value": "Use the disabled attribute to disable the checkbox.",
|
|
263
|
+
"type": "text"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"sizes": {
|
|
267
|
+
"title": {
|
|
268
|
+
"value": "Sizes",
|
|
269
|
+
"type": "text"
|
|
270
|
+
},
|
|
271
|
+
"description": {
|
|
272
|
+
"value": "Use the size attribute to change a checkbox’s size.",
|
|
273
|
+
"type": "text"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"invalid": {
|
|
277
|
+
"title": {
|
|
278
|
+
"value": "Invalid",
|
|
279
|
+
"type": "text"
|
|
280
|
+
},
|
|
281
|
+
"description": {
|
|
282
|
+
"value": "The invalid status is used to warn the user that the Checkbox is invalid. For example, if the check is mandatory and nothing has been checked.",
|
|
283
|
+
"type": "text"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"validity": {
|
|
287
|
+
"title": {
|
|
288
|
+
"value": "Custom Validity",
|
|
289
|
+
"type": "text"
|
|
290
|
+
},
|
|
291
|
+
"description": {
|
|
292
|
+
"value": "Use the setCustomValidity() method to set a custom validation message. This will prevent the form from submitting and make the browser display the error message you provide. To clear the error, call this function with an empty string.",
|
|
293
|
+
"type": "text"
|
|
294
|
+
}
|
|
223
295
|
}
|
|
224
296
|
},
|
|
225
297
|
"color-picker": {
|
|
@@ -323,13 +395,55 @@
|
|
|
323
395
|
}
|
|
324
396
|
},
|
|
325
397
|
"icon-button": {
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
-
|
|
398
|
+
"default": {
|
|
399
|
+
"description": {
|
|
400
|
+
"value": "Icons buttons are simple, icon-only buttons that can be used for actions and in toolbars.\n\nFor a full list of icons that come bundled with Synergy, refer to the Assets.",
|
|
401
|
+
"type": "text"
|
|
402
|
+
},
|
|
403
|
+
"title": {
|
|
404
|
+
"value": "Icon Button",
|
|
405
|
+
"type": "text"
|
|
406
|
+
}
|
|
329
407
|
},
|
|
330
|
-
"
|
|
331
|
-
"
|
|
332
|
-
|
|
408
|
+
"sizes": {
|
|
409
|
+
"title": {
|
|
410
|
+
"value": "Sizes",
|
|
411
|
+
"type": "text"
|
|
412
|
+
},
|
|
413
|
+
"description": {
|
|
414
|
+
"value": "Use the size attribute to change a icon-button size.",
|
|
415
|
+
"type": "text"
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"disabled": {
|
|
419
|
+
"title": {
|
|
420
|
+
"value": "Disabled",
|
|
421
|
+
"type": "text"
|
|
422
|
+
},
|
|
423
|
+
"description": {
|
|
424
|
+
"value": "Use the disabled attribute to disable the icon button.",
|
|
425
|
+
"type": "text"
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
"focus": {
|
|
429
|
+
"title": {
|
|
430
|
+
"value": "Focus",
|
|
431
|
+
"type": "text"
|
|
432
|
+
},
|
|
433
|
+
"description": {
|
|
434
|
+
"value": "The focus event gives the user feedback that the icon-button has been focused by the keyboard interaction.",
|
|
435
|
+
"type": "text"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
"color": {
|
|
439
|
+
"title": {
|
|
440
|
+
"value": "Color",
|
|
441
|
+
"type": "text"
|
|
442
|
+
},
|
|
443
|
+
"description": {
|
|
444
|
+
"value": "The Icon button can have two color variants, Primary or Neutral Color.",
|
|
445
|
+
"type": "text"
|
|
446
|
+
}
|
|
333
447
|
}
|
|
334
448
|
},
|
|
335
449
|
"icon": {
|
|
@@ -809,13 +923,35 @@
|
|
|
809
923
|
}
|
|
810
924
|
},
|
|
811
925
|
"tag": {
|
|
812
|
-
"
|
|
813
|
-
"
|
|
814
|
-
|
|
926
|
+
"default": {
|
|
927
|
+
"description": {
|
|
928
|
+
"value": "Tags are used as labels to organize things or to indicate a selection.",
|
|
929
|
+
"type": "text"
|
|
930
|
+
},
|
|
931
|
+
"title": {
|
|
932
|
+
"value": "Tag",
|
|
933
|
+
"type": "text"
|
|
934
|
+
}
|
|
815
935
|
},
|
|
816
|
-
"
|
|
817
|
-
"
|
|
818
|
-
|
|
936
|
+
"size": {
|
|
937
|
+
"title": {
|
|
938
|
+
"value": "Sizes",
|
|
939
|
+
"type": "text"
|
|
940
|
+
},
|
|
941
|
+
"description": {
|
|
942
|
+
"value": "Use the size attribute to change a tab’s size.",
|
|
943
|
+
"type": "text"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
"removable": {
|
|
947
|
+
"title": {
|
|
948
|
+
"value": "Removable",
|
|
949
|
+
"type": "text"
|
|
950
|
+
},
|
|
951
|
+
"description": {
|
|
952
|
+
"value": "Use the removable attribute to add a remove button to the tag.",
|
|
953
|
+
"type": "text"
|
|
954
|
+
}
|
|
819
955
|
}
|
|
820
956
|
},
|
|
821
957
|
"textarea": {
|
|
@@ -982,12 +1118,62 @@
|
|
|
982
1118
|
},
|
|
983
1119
|
"radio": {
|
|
984
1120
|
"default": {
|
|
1121
|
+
"description": {
|
|
1122
|
+
"value": "Radios allow the user to select a single option from a group. \\nRadios are designed to be used with radio groups.",
|
|
1123
|
+
"type": "text"
|
|
1124
|
+
},
|
|
985
1125
|
"title": {
|
|
986
1126
|
"value": "Radio",
|
|
987
1127
|
"type": "text"
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
"focus": {
|
|
1131
|
+
"title": {
|
|
1132
|
+
"value": "Focus",
|
|
1133
|
+
"type": "text"
|
|
1134
|
+
},
|
|
1135
|
+
"description": {
|
|
1136
|
+
"value": "The focus event gives the user feedback that the Radio has been focused by the keyboard interaction.",
|
|
1137
|
+
"type": "text"
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
"disabled": {
|
|
1141
|
+
"title": {
|
|
1142
|
+
"value": "Disabled",
|
|
1143
|
+
"type": "text"
|
|
1144
|
+
},
|
|
1145
|
+
"description": {
|
|
1146
|
+
"value": "Use the disabled attribute to disable a radio.",
|
|
1147
|
+
"type": "text"
|
|
1148
|
+
}
|
|
1149
|
+
},
|
|
1150
|
+
"sizes": {
|
|
1151
|
+
"title": {
|
|
1152
|
+
"value": "Sizes",
|
|
1153
|
+
"type": "text"
|
|
1154
|
+
},
|
|
1155
|
+
"description": {
|
|
1156
|
+
"value": "Add the size attribute to the Radio Group to change the radios’ size.",
|
|
1157
|
+
"type": "text"
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
"invalid": {
|
|
1161
|
+
"title": {
|
|
1162
|
+
"value": "Invalid",
|
|
1163
|
+
"type": "text"
|
|
1164
|
+
},
|
|
1165
|
+
"description": {
|
|
1166
|
+
"value": "The invalid status is used to warn the user that the Radio is invalid. For example, if the radio is mandatory and nothing has been checked.",
|
|
1167
|
+
"type": "text"
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
"value": {
|
|
1171
|
+
"title": {
|
|
1172
|
+
"value": "Initial Value",
|
|
1173
|
+
"type": "text"
|
|
988
1174
|
},
|
|
989
1175
|
"description": {
|
|
990
|
-
"value": "
|
|
1176
|
+
"value": "To set the initial value and checked state, use the value attribute on the containing radio group.",
|
|
991
1177
|
"type": "text"
|
|
992
1178
|
}
|
|
993
1179
|
}
|