@synergy-design-system/tokens 2.21.0 → 2.22.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 +7 -0
- package/README.md +201 -2
- package/dist/js/index.d.ts +517 -522
- package/dist/js/index.js +259 -264
- package/dist/scss/_tokens.scss +203 -204
- package/dist/themes/dark.css +203 -206
- package/dist/themes/light.css +203 -206
- package/package.json +20 -8
- package/src/figma-variables/output/sick2018-dark.json +1187 -0
- package/src/figma-variables/output/sick2018-light.json +1187 -0
package/dist/js/index.js
CHANGED
|
@@ -1,1299 +1,1294 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 2.
|
|
2
|
+
* @synergy-design-system/tokens version 2.21.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* @type {string}
|
|
8
8
|
*/
|
|
9
|
-
export const
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* @type {string}
|
|
13
|
-
*/
|
|
14
|
-
export const SynFontSizeSmall = 'var(--syn-font-size-small)';
|
|
9
|
+
export const SynBorderRadiusCircle = 'var(--syn-border-radius-circle)';
|
|
15
10
|
|
|
16
11
|
/**
|
|
17
12
|
* @type {string}
|
|
18
13
|
*/
|
|
19
|
-
export const
|
|
14
|
+
export const SynBorderRadiusLarge = 'var(--syn-border-radius-large)';
|
|
20
15
|
|
|
21
16
|
/**
|
|
22
17
|
* @type {string}
|
|
23
18
|
*/
|
|
24
|
-
export const
|
|
19
|
+
export const SynBorderRadiusMedium = 'var(--syn-border-radius-medium)';
|
|
25
20
|
|
|
26
21
|
/**
|
|
27
22
|
* @type {string}
|
|
28
23
|
*/
|
|
29
|
-
export const
|
|
24
|
+
export const SynBorderRadiusNone = 'var(--syn-border-radius-none)';
|
|
30
25
|
|
|
31
26
|
/**
|
|
32
27
|
* @type {string}
|
|
33
28
|
*/
|
|
34
|
-
export const
|
|
29
|
+
export const SynBorderRadiusPill = 'var(--syn-border-radius-pill)';
|
|
35
30
|
|
|
36
31
|
/**
|
|
37
32
|
* @type {string}
|
|
38
33
|
*/
|
|
39
|
-
export const
|
|
34
|
+
export const SynBorderRadiusSmall = 'var(--syn-border-radius-small)';
|
|
40
35
|
|
|
41
36
|
/**
|
|
42
37
|
* @type {string}
|
|
43
38
|
*/
|
|
44
|
-
export const
|
|
39
|
+
export const SynBorderRadiusXLarge = 'var(--syn-border-radius-x-large)';
|
|
45
40
|
|
|
46
41
|
/**
|
|
47
42
|
* @type {string}
|
|
48
43
|
*/
|
|
49
|
-
export const
|
|
44
|
+
export const SynBorderWidthLarge = 'var(--syn-border-width-large)';
|
|
50
45
|
|
|
51
46
|
/**
|
|
52
47
|
* @type {string}
|
|
53
48
|
*/
|
|
54
|
-
export const
|
|
49
|
+
export const SynBorderWidthMedium = 'var(--syn-border-width-medium)';
|
|
55
50
|
|
|
56
51
|
/**
|
|
57
52
|
* @type {string}
|
|
58
53
|
*/
|
|
59
|
-
export const
|
|
54
|
+
export const SynBorderWidthNone = 'var(--syn-border-width-none)';
|
|
60
55
|
|
|
61
56
|
/**
|
|
62
57
|
* @type {string}
|
|
63
58
|
*/
|
|
64
|
-
export const
|
|
59
|
+
export const SynBorderWidthSmall = 'var(--syn-border-width-small)';
|
|
65
60
|
|
|
66
61
|
/**
|
|
67
62
|
* @type {string}
|
|
68
63
|
*/
|
|
69
|
-
export const
|
|
64
|
+
export const SynBorderWidthXLarge = 'var(--syn-border-width-x-large)';
|
|
70
65
|
|
|
71
66
|
/**
|
|
72
67
|
* @type {string}
|
|
73
68
|
*/
|
|
74
|
-
export const
|
|
69
|
+
export const SynButtonFontSizeLarge = 'var(--syn-button-font-size-large)';
|
|
75
70
|
|
|
76
71
|
/**
|
|
77
72
|
* @type {string}
|
|
78
73
|
*/
|
|
79
|
-
export const
|
|
74
|
+
export const SynButtonFontSizeMedium = 'var(--syn-button-font-size-medium)';
|
|
80
75
|
|
|
81
76
|
/**
|
|
82
77
|
* @type {string}
|
|
83
78
|
*/
|
|
84
|
-
export const
|
|
79
|
+
export const SynButtonFontSizeSmall = 'var(--syn-button-font-size-small)';
|
|
85
80
|
|
|
86
81
|
/**
|
|
87
82
|
* @type {string}
|
|
88
83
|
*/
|
|
89
|
-
export const
|
|
84
|
+
export const SynColorAccent50 = 'var(--syn-color-accent-50)';
|
|
90
85
|
|
|
91
86
|
/**
|
|
92
87
|
* @type {string}
|
|
93
88
|
*/
|
|
94
|
-
export const
|
|
89
|
+
export const SynColorAccent100 = 'var(--syn-color-accent-100)';
|
|
95
90
|
|
|
96
91
|
/**
|
|
97
92
|
* @type {string}
|
|
98
93
|
*/
|
|
99
|
-
export const
|
|
94
|
+
export const SynColorAccent200 = 'var(--syn-color-accent-200)';
|
|
100
95
|
|
|
101
96
|
/**
|
|
102
97
|
* @type {string}
|
|
103
98
|
*/
|
|
104
|
-
export const
|
|
99
|
+
export const SynColorAccent300 = 'var(--syn-color-accent-300)';
|
|
105
100
|
|
|
106
101
|
/**
|
|
107
102
|
* @type {string}
|
|
108
103
|
*/
|
|
109
|
-
export const
|
|
104
|
+
export const SynColorAccent400 = 'var(--syn-color-accent-400)';
|
|
110
105
|
|
|
111
106
|
/**
|
|
112
107
|
* @type {string}
|
|
113
108
|
*/
|
|
114
|
-
export const
|
|
109
|
+
export const SynColorAccent500 = 'var(--syn-color-accent-500)';
|
|
115
110
|
|
|
116
111
|
/**
|
|
117
112
|
* @type {string}
|
|
118
113
|
*/
|
|
119
|
-
export const
|
|
114
|
+
export const SynColorAccent600 = 'var(--syn-color-accent-600)';
|
|
120
115
|
|
|
121
116
|
/**
|
|
122
117
|
* @type {string}
|
|
123
118
|
*/
|
|
124
|
-
export const
|
|
119
|
+
export const SynColorAccent700 = 'var(--syn-color-accent-700)';
|
|
125
120
|
|
|
126
121
|
/**
|
|
127
122
|
* @type {string}
|
|
128
123
|
*/
|
|
129
|
-
export const
|
|
124
|
+
export const SynColorAccent800 = 'var(--syn-color-accent-800)';
|
|
130
125
|
|
|
131
126
|
/**
|
|
132
127
|
* @type {string}
|
|
133
128
|
*/
|
|
134
|
-
export const
|
|
129
|
+
export const SynColorAccent900 = 'var(--syn-color-accent-900)';
|
|
135
130
|
|
|
136
131
|
/**
|
|
137
132
|
* @type {string}
|
|
138
133
|
*/
|
|
139
|
-
export const
|
|
134
|
+
export const SynColorAccent950 = 'var(--syn-color-accent-950)';
|
|
140
135
|
|
|
141
136
|
/**
|
|
142
137
|
* @type {string}
|
|
143
138
|
*/
|
|
144
|
-
export const
|
|
139
|
+
export const SynColorError50 = 'var(--syn-color-error-50)';
|
|
145
140
|
|
|
146
141
|
/**
|
|
147
142
|
* @type {string}
|
|
148
143
|
*/
|
|
149
|
-
export const
|
|
144
|
+
export const SynColorError100 = 'var(--syn-color-error-100)';
|
|
150
145
|
|
|
151
146
|
/**
|
|
152
147
|
* @type {string}
|
|
153
148
|
*/
|
|
154
|
-
export const
|
|
149
|
+
export const SynColorError200 = 'var(--syn-color-error-200)';
|
|
155
150
|
|
|
156
151
|
/**
|
|
157
152
|
* @type {string}
|
|
158
153
|
*/
|
|
159
|
-
export const
|
|
154
|
+
export const SynColorError300 = 'var(--syn-color-error-300)';
|
|
160
155
|
|
|
161
156
|
/**
|
|
162
157
|
* @type {string}
|
|
163
158
|
*/
|
|
164
|
-
export const
|
|
159
|
+
export const SynColorError400 = 'var(--syn-color-error-400)';
|
|
165
160
|
|
|
166
161
|
/**
|
|
167
162
|
* @type {string}
|
|
168
163
|
*/
|
|
169
|
-
export const
|
|
164
|
+
export const SynColorError500 = 'var(--syn-color-error-500)';
|
|
170
165
|
|
|
171
166
|
/**
|
|
172
167
|
* @type {string}
|
|
173
168
|
*/
|
|
174
|
-
export const
|
|
169
|
+
export const SynColorError600 = 'var(--syn-color-error-600)';
|
|
175
170
|
|
|
176
171
|
/**
|
|
177
172
|
* @type {string}
|
|
178
173
|
*/
|
|
179
|
-
export const
|
|
174
|
+
export const SynColorError700 = 'var(--syn-color-error-700)';
|
|
180
175
|
|
|
181
176
|
/**
|
|
182
177
|
* @type {string}
|
|
183
178
|
*/
|
|
184
|
-
export const
|
|
179
|
+
export const SynColorError800 = 'var(--syn-color-error-800)';
|
|
185
180
|
|
|
186
181
|
/**
|
|
187
182
|
* @type {string}
|
|
188
183
|
*/
|
|
189
|
-
export const
|
|
184
|
+
export const SynColorError900 = 'var(--syn-color-error-900)';
|
|
190
185
|
|
|
191
186
|
/**
|
|
192
187
|
* @type {string}
|
|
193
188
|
*/
|
|
194
|
-
export const
|
|
189
|
+
export const SynColorError950 = 'var(--syn-color-error-950)';
|
|
195
190
|
|
|
196
191
|
/**
|
|
197
192
|
* @type {string}
|
|
198
193
|
*/
|
|
199
|
-
export const
|
|
194
|
+
export const SynColorNeutral0 = 'var(--syn-color-neutral-0)';
|
|
200
195
|
|
|
201
196
|
/**
|
|
202
197
|
* @type {string}
|
|
203
198
|
*/
|
|
204
|
-
export const
|
|
199
|
+
export const SynColorNeutral50 = 'var(--syn-color-neutral-50)';
|
|
205
200
|
|
|
206
201
|
/**
|
|
207
202
|
* @type {string}
|
|
208
203
|
*/
|
|
209
|
-
export const
|
|
204
|
+
export const SynColorNeutral100 = 'var(--syn-color-neutral-100)';
|
|
210
205
|
|
|
211
206
|
/**
|
|
212
207
|
* @type {string}
|
|
213
208
|
*/
|
|
214
|
-
export const
|
|
209
|
+
export const SynColorNeutral200 = 'var(--syn-color-neutral-200)';
|
|
215
210
|
|
|
216
211
|
/**
|
|
217
212
|
* @type {string}
|
|
218
213
|
*/
|
|
219
|
-
export const
|
|
214
|
+
export const SynColorNeutral300 = 'var(--syn-color-neutral-300)';
|
|
220
215
|
|
|
221
216
|
/**
|
|
222
217
|
* @type {string}
|
|
223
218
|
*/
|
|
224
|
-
export const
|
|
219
|
+
export const SynColorNeutral400 = 'var(--syn-color-neutral-400)';
|
|
225
220
|
|
|
226
221
|
/**
|
|
227
222
|
* @type {string}
|
|
228
223
|
*/
|
|
229
|
-
export const
|
|
224
|
+
export const SynColorNeutral500 = 'var(--syn-color-neutral-500)';
|
|
230
225
|
|
|
231
226
|
/**
|
|
232
227
|
* @type {string}
|
|
233
228
|
*/
|
|
234
|
-
export const
|
|
229
|
+
export const SynColorNeutral600 = 'var(--syn-color-neutral-600)';
|
|
235
230
|
|
|
236
231
|
/**
|
|
237
232
|
* @type {string}
|
|
238
233
|
*/
|
|
239
|
-
export const
|
|
234
|
+
export const SynColorNeutral700 = 'var(--syn-color-neutral-700)';
|
|
240
235
|
|
|
241
236
|
/**
|
|
242
237
|
* @type {string}
|
|
243
238
|
*/
|
|
244
|
-
export const
|
|
239
|
+
export const SynColorNeutral800 = 'var(--syn-color-neutral-800)';
|
|
245
240
|
|
|
246
241
|
/**
|
|
247
242
|
* @type {string}
|
|
248
243
|
*/
|
|
249
|
-
export const
|
|
244
|
+
export const SynColorNeutral900 = 'var(--syn-color-neutral-900)';
|
|
250
245
|
|
|
251
246
|
/**
|
|
252
247
|
* @type {string}
|
|
253
248
|
*/
|
|
254
|
-
export const
|
|
249
|
+
export const SynColorNeutral950 = 'var(--syn-color-neutral-950)';
|
|
255
250
|
|
|
256
251
|
/**
|
|
257
252
|
* @type {string}
|
|
258
253
|
*/
|
|
259
|
-
export const
|
|
254
|
+
export const SynColorNeutral1000 = 'var(--syn-color-neutral-1000)';
|
|
260
255
|
|
|
261
256
|
/**
|
|
262
257
|
* @type {string}
|
|
263
258
|
*/
|
|
264
|
-
export const
|
|
259
|
+
export const SynColorPrimary50 = 'var(--syn-color-primary-50)';
|
|
265
260
|
|
|
266
261
|
/**
|
|
267
262
|
* @type {string}
|
|
268
263
|
*/
|
|
269
|
-
export const
|
|
264
|
+
export const SynColorPrimary100 = 'var(--syn-color-primary-100)';
|
|
270
265
|
|
|
271
266
|
/**
|
|
272
267
|
* @type {string}
|
|
273
268
|
*/
|
|
274
|
-
export const
|
|
269
|
+
export const SynColorPrimary200 = 'var(--syn-color-primary-200)';
|
|
275
270
|
|
|
276
271
|
/**
|
|
277
272
|
* @type {string}
|
|
278
273
|
*/
|
|
279
|
-
export const
|
|
274
|
+
export const SynColorPrimary300 = 'var(--syn-color-primary-300)';
|
|
280
275
|
|
|
281
276
|
/**
|
|
282
277
|
* @type {string}
|
|
283
278
|
*/
|
|
284
|
-
export const
|
|
279
|
+
export const SynColorPrimary400 = 'var(--syn-color-primary-400)';
|
|
285
280
|
|
|
286
281
|
/**
|
|
287
282
|
* @type {string}
|
|
288
283
|
*/
|
|
289
|
-
export const
|
|
284
|
+
export const SynColorPrimary500 = 'var(--syn-color-primary-500)';
|
|
290
285
|
|
|
291
286
|
/**
|
|
292
287
|
* @type {string}
|
|
293
288
|
*/
|
|
294
|
-
export const
|
|
289
|
+
export const SynColorPrimary600 = 'var(--syn-color-primary-600)';
|
|
295
290
|
|
|
296
291
|
/**
|
|
297
292
|
* @type {string}
|
|
298
293
|
*/
|
|
299
|
-
export const
|
|
294
|
+
export const SynColorPrimary700 = 'var(--syn-color-primary-700)';
|
|
300
295
|
|
|
301
296
|
/**
|
|
302
297
|
* @type {string}
|
|
303
298
|
*/
|
|
304
|
-
export const
|
|
299
|
+
export const SynColorPrimary800 = 'var(--syn-color-primary-800)';
|
|
305
300
|
|
|
306
301
|
/**
|
|
307
302
|
* @type {string}
|
|
308
303
|
*/
|
|
309
|
-
export const
|
|
304
|
+
export const SynColorPrimary900 = 'var(--syn-color-primary-900)';
|
|
310
305
|
|
|
311
306
|
/**
|
|
312
307
|
* @type {string}
|
|
313
308
|
*/
|
|
314
|
-
export const
|
|
309
|
+
export const SynColorPrimary950 = 'var(--syn-color-primary-950)';
|
|
315
310
|
|
|
316
311
|
/**
|
|
317
312
|
* @type {string}
|
|
318
313
|
*/
|
|
319
|
-
export const
|
|
314
|
+
export const SynColorSuccess50 = 'var(--syn-color-success-50)';
|
|
320
315
|
|
|
321
316
|
/**
|
|
322
317
|
* @type {string}
|
|
323
318
|
*/
|
|
324
|
-
export const
|
|
319
|
+
export const SynColorSuccess100 = 'var(--syn-color-success-100)';
|
|
325
320
|
|
|
326
321
|
/**
|
|
327
322
|
* @type {string}
|
|
328
323
|
*/
|
|
329
|
-
export const
|
|
324
|
+
export const SynColorSuccess200 = 'var(--syn-color-success-200)';
|
|
330
325
|
|
|
331
326
|
/**
|
|
332
327
|
* @type {string}
|
|
333
328
|
*/
|
|
334
|
-
export const
|
|
329
|
+
export const SynColorSuccess300 = 'var(--syn-color-success-300)';
|
|
335
330
|
|
|
336
331
|
/**
|
|
337
332
|
* @type {string}
|
|
338
333
|
*/
|
|
339
|
-
export const
|
|
334
|
+
export const SynColorSuccess400 = 'var(--syn-color-success-400)';
|
|
340
335
|
|
|
341
336
|
/**
|
|
342
337
|
* @type {string}
|
|
343
338
|
*/
|
|
344
|
-
export const
|
|
339
|
+
export const SynColorSuccess500 = 'var(--syn-color-success-500)';
|
|
345
340
|
|
|
346
341
|
/**
|
|
347
342
|
* @type {string}
|
|
348
343
|
*/
|
|
349
|
-
export const
|
|
344
|
+
export const SynColorSuccess600 = 'var(--syn-color-success-600)';
|
|
350
345
|
|
|
351
346
|
/**
|
|
352
347
|
* @type {string}
|
|
353
348
|
*/
|
|
354
|
-
export const
|
|
349
|
+
export const SynColorSuccess700 = 'var(--syn-color-success-700)';
|
|
355
350
|
|
|
356
351
|
/**
|
|
357
352
|
* @type {string}
|
|
358
353
|
*/
|
|
359
|
-
export const
|
|
354
|
+
export const SynColorSuccess800 = 'var(--syn-color-success-800)';
|
|
360
355
|
|
|
361
356
|
/**
|
|
362
357
|
* @type {string}
|
|
363
358
|
*/
|
|
364
|
-
export const
|
|
359
|
+
export const SynColorSuccess900 = 'var(--syn-color-success-900)';
|
|
365
360
|
|
|
366
361
|
/**
|
|
367
362
|
* @type {string}
|
|
368
363
|
*/
|
|
369
|
-
export const
|
|
364
|
+
export const SynColorSuccess950 = 'var(--syn-color-success-950)';
|
|
370
365
|
|
|
371
366
|
/**
|
|
372
367
|
* @type {string}
|
|
373
368
|
*/
|
|
374
|
-
export const
|
|
369
|
+
export const SynColorWarning50 = 'var(--syn-color-warning-50)';
|
|
375
370
|
|
|
376
371
|
/**
|
|
377
372
|
* @type {string}
|
|
378
373
|
*/
|
|
379
|
-
export const
|
|
374
|
+
export const SynColorWarning100 = 'var(--syn-color-warning-100)';
|
|
380
375
|
|
|
381
376
|
/**
|
|
382
377
|
* @type {string}
|
|
383
378
|
*/
|
|
384
|
-
export const
|
|
379
|
+
export const SynColorWarning200 = 'var(--syn-color-warning-200)';
|
|
385
380
|
|
|
386
381
|
/**
|
|
387
382
|
* @type {string}
|
|
388
383
|
*/
|
|
389
|
-
export const
|
|
384
|
+
export const SynColorWarning300 = 'var(--syn-color-warning-300)';
|
|
390
385
|
|
|
391
386
|
/**
|
|
392
387
|
* @type {string}
|
|
393
388
|
*/
|
|
394
|
-
export const
|
|
389
|
+
export const SynColorWarning400 = 'var(--syn-color-warning-400)';
|
|
395
390
|
|
|
396
391
|
/**
|
|
397
392
|
* @type {string}
|
|
398
393
|
*/
|
|
399
|
-
export const
|
|
394
|
+
export const SynColorWarning500 = 'var(--syn-color-warning-500)';
|
|
400
395
|
|
|
401
396
|
/**
|
|
402
397
|
* @type {string}
|
|
403
398
|
*/
|
|
404
|
-
export const
|
|
399
|
+
export const SynColorWarning600 = 'var(--syn-color-warning-600)';
|
|
405
400
|
|
|
406
401
|
/**
|
|
407
402
|
* @type {string}
|
|
408
403
|
*/
|
|
409
|
-
export const
|
|
404
|
+
export const SynColorWarning700 = 'var(--syn-color-warning-700)';
|
|
410
405
|
|
|
411
406
|
/**
|
|
412
407
|
* @type {string}
|
|
413
408
|
*/
|
|
414
|
-
export const
|
|
409
|
+
export const SynColorWarning800 = 'var(--syn-color-warning-800)';
|
|
415
410
|
|
|
416
411
|
/**
|
|
417
412
|
* @type {string}
|
|
418
413
|
*/
|
|
419
|
-
export const
|
|
414
|
+
export const SynColorWarning900 = 'var(--syn-color-warning-900)';
|
|
420
415
|
|
|
421
416
|
/**
|
|
422
417
|
* @type {string}
|
|
423
418
|
*/
|
|
424
|
-
export const
|
|
419
|
+
export const SynColorWarning950 = 'var(--syn-color-warning-950)';
|
|
425
420
|
|
|
426
421
|
/**
|
|
427
422
|
* @type {string}
|
|
428
423
|
*/
|
|
429
|
-
export const
|
|
424
|
+
export const SynDimensionBase = 'var(--syn-dimension-base)';
|
|
430
425
|
|
|
431
426
|
/**
|
|
432
427
|
* @type {string}
|
|
433
428
|
*/
|
|
434
|
-
export const
|
|
429
|
+
export const SynDurationExtraFast = 'var(--syn-duration-extra-fast)';
|
|
435
430
|
|
|
436
431
|
/**
|
|
437
432
|
* @type {string}
|
|
438
433
|
*/
|
|
439
|
-
export const
|
|
434
|
+
export const SynDurationExtraSlow = 'var(--syn-duration-extra-slow)';
|
|
440
435
|
|
|
441
436
|
/**
|
|
442
437
|
* @type {string}
|
|
443
438
|
*/
|
|
444
|
-
export const
|
|
439
|
+
export const SynDurationFast = 'var(--syn-duration-fast)';
|
|
445
440
|
|
|
446
441
|
/**
|
|
447
442
|
* @type {string}
|
|
448
443
|
*/
|
|
449
|
-
export const
|
|
444
|
+
export const SynDurationNormal = 'var(--syn-duration-normal)';
|
|
450
445
|
|
|
451
446
|
/**
|
|
452
447
|
* @type {string}
|
|
453
448
|
*/
|
|
454
|
-
export const
|
|
449
|
+
export const SynDurationSlow = 'var(--syn-duration-slow)';
|
|
455
450
|
|
|
456
451
|
/**
|
|
457
452
|
* @type {string}
|
|
458
453
|
*/
|
|
459
|
-
export const
|
|
454
|
+
export const SynFocusRingColor = 'var(--syn-focus-ring-color)';
|
|
460
455
|
|
|
461
456
|
/**
|
|
462
457
|
* @type {string}
|
|
463
458
|
*/
|
|
464
|
-
export const
|
|
459
|
+
export const SynFocusRingOffset = 'var(--syn-focus-ring-offset)';
|
|
465
460
|
|
|
466
461
|
/**
|
|
467
462
|
* @type {string}
|
|
468
463
|
*/
|
|
469
|
-
export const
|
|
464
|
+
export const SynFocusRingStyle = 'var(--syn-focus-ring-style)';
|
|
470
465
|
|
|
471
466
|
/**
|
|
472
467
|
* @type {string}
|
|
473
468
|
*/
|
|
474
|
-
export const
|
|
469
|
+
export const SynFocusRingWidth = 'var(--syn-focus-ring-width)';
|
|
475
470
|
|
|
476
471
|
/**
|
|
477
472
|
* @type {string}
|
|
478
473
|
*/
|
|
479
|
-
export const
|
|
474
|
+
export const SynFontMono = 'var(--syn-font-mono)';
|
|
480
475
|
|
|
481
476
|
/**
|
|
482
477
|
* @type {string}
|
|
483
478
|
*/
|
|
484
|
-
export const
|
|
479
|
+
export const SynFontSans = 'var(--syn-font-sans)';
|
|
485
480
|
|
|
486
481
|
/**
|
|
487
482
|
* @type {string}
|
|
488
483
|
*/
|
|
489
|
-
export const
|
|
484
|
+
export const SynFontSansFallback = 'var(--syn-font-sans-fallback)';
|
|
490
485
|
|
|
491
486
|
/**
|
|
492
487
|
* @type {string}
|
|
493
488
|
*/
|
|
494
|
-
export const
|
|
489
|
+
export const SynFontSerif = 'var(--syn-font-serif)';
|
|
495
490
|
|
|
496
491
|
/**
|
|
497
492
|
* @type {string}
|
|
498
493
|
*/
|
|
499
|
-
export const
|
|
494
|
+
export const SynFontSize2xLarge = 'var(--syn-font-size-2x-large)';
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
497
|
* @type {string}
|
|
503
498
|
*/
|
|
504
|
-
export const
|
|
499
|
+
export const SynFontSize2xSmall = 'var(--syn-font-size-2x-small)';
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* @type {string}
|
|
508
503
|
*/
|
|
509
|
-
export const
|
|
504
|
+
export const SynFontSize3xLarge = 'var(--syn-font-size-3x-large)';
|
|
510
505
|
|
|
511
506
|
/**
|
|
512
507
|
* @type {string}
|
|
513
508
|
*/
|
|
514
|
-
export const
|
|
509
|
+
export const SynFontSize4xLarge = 'var(--syn-font-size-4x-large)';
|
|
515
510
|
|
|
516
511
|
/**
|
|
517
512
|
* @type {string}
|
|
518
513
|
*/
|
|
519
|
-
export const
|
|
514
|
+
export const SynFontSizeLarge = 'var(--syn-font-size-large)';
|
|
520
515
|
|
|
521
516
|
/**
|
|
522
517
|
* @type {string}
|
|
523
518
|
*/
|
|
524
|
-
export const
|
|
519
|
+
export const SynFontSizeMedium = 'var(--syn-font-size-medium)';
|
|
525
520
|
|
|
526
521
|
/**
|
|
527
522
|
* @type {string}
|
|
528
523
|
*/
|
|
529
|
-
export const
|
|
524
|
+
export const SynFontSizeSmall = 'var(--syn-font-size-small)';
|
|
530
525
|
|
|
531
526
|
/**
|
|
532
527
|
* @type {string}
|
|
533
528
|
*/
|
|
534
|
-
export const
|
|
529
|
+
export const SynFontSizeXLarge = 'var(--syn-font-size-x-large)';
|
|
535
530
|
|
|
536
531
|
/**
|
|
537
532
|
* @type {string}
|
|
538
533
|
*/
|
|
539
|
-
export const
|
|
534
|
+
export const SynFontSizeXSmall = 'var(--syn-font-size-x-small)';
|
|
540
535
|
|
|
541
536
|
/**
|
|
542
537
|
* @type {string}
|
|
543
538
|
*/
|
|
544
|
-
export const
|
|
539
|
+
export const SynFontWeightBold = 'var(--syn-font-weight-bold)';
|
|
545
540
|
|
|
546
541
|
/**
|
|
547
542
|
* @type {string}
|
|
548
543
|
*/
|
|
549
|
-
export const
|
|
544
|
+
export const SynFontWeightLight = 'var(--syn-font-weight-light)';
|
|
550
545
|
|
|
551
546
|
/**
|
|
552
547
|
* @type {string}
|
|
553
548
|
*/
|
|
554
|
-
export const
|
|
549
|
+
export const SynFontWeightNormal = 'var(--syn-font-weight-normal)';
|
|
555
550
|
|
|
556
551
|
/**
|
|
557
552
|
* @type {string}
|
|
558
553
|
*/
|
|
559
|
-
export const
|
|
554
|
+
export const SynFontWeightSemibold = 'var(--syn-font-weight-semibold)';
|
|
560
555
|
|
|
561
556
|
/**
|
|
562
557
|
* @type {string}
|
|
563
558
|
*/
|
|
564
|
-
export const
|
|
559
|
+
export const SynInputBackgroundColor = 'var(--syn-input-background-color)';
|
|
565
560
|
|
|
566
561
|
/**
|
|
567
562
|
* @type {string}
|
|
568
563
|
*/
|
|
569
|
-
export const
|
|
564
|
+
export const SynInputBackgroundColorDisabled = 'var(--syn-input-background-color-disabled)';
|
|
570
565
|
|
|
571
566
|
/**
|
|
572
567
|
* @type {string}
|
|
573
568
|
*/
|
|
574
|
-
export const
|
|
569
|
+
export const SynInputBackgroundColorFocus = 'var(--syn-input-background-color-focus)';
|
|
575
570
|
|
|
576
571
|
/**
|
|
577
572
|
* @type {string}
|
|
578
573
|
*/
|
|
579
|
-
export const
|
|
574
|
+
export const SynInputBackgroundColorHover = 'var(--syn-input-background-color-hover)';
|
|
580
575
|
|
|
581
576
|
/**
|
|
582
577
|
* @type {string}
|
|
583
578
|
*/
|
|
584
|
-
export const
|
|
579
|
+
export const SynInputBorderColor = 'var(--syn-input-border-color)';
|
|
585
580
|
|
|
586
581
|
/**
|
|
587
582
|
* @type {string}
|
|
588
583
|
*/
|
|
589
|
-
export const
|
|
584
|
+
export const SynInputBorderColorDisabled = 'var(--syn-input-border-color-disabled)';
|
|
590
585
|
|
|
591
586
|
/**
|
|
592
587
|
* @type {string}
|
|
593
588
|
*/
|
|
594
|
-
export const
|
|
589
|
+
export const SynInputBorderColorFocus = 'var(--syn-input-border-color-focus)';
|
|
595
590
|
|
|
596
591
|
/**
|
|
597
592
|
* @type {string}
|
|
598
593
|
*/
|
|
599
|
-
export const
|
|
594
|
+
export const SynInputBorderColorFocusError = 'var(--syn-input-border-color-focus-error)';
|
|
600
595
|
|
|
601
596
|
/**
|
|
602
597
|
* @type {string}
|
|
603
598
|
*/
|
|
604
|
-
export const
|
|
599
|
+
export const SynInputBorderColorHover = 'var(--syn-input-border-color-hover)';
|
|
605
600
|
|
|
606
601
|
/**
|
|
607
602
|
* @type {string}
|
|
608
603
|
*/
|
|
609
|
-
export const
|
|
604
|
+
export const SynInputBorderRadiusLarge = 'var(--syn-input-border-radius-large)';
|
|
610
605
|
|
|
611
606
|
/**
|
|
612
607
|
* @type {string}
|
|
613
608
|
*/
|
|
614
|
-
export const
|
|
609
|
+
export const SynInputBorderRadiusMedium = 'var(--syn-input-border-radius-medium)';
|
|
615
610
|
|
|
616
611
|
/**
|
|
617
612
|
* @type {string}
|
|
618
613
|
*/
|
|
619
|
-
export const
|
|
614
|
+
export const SynInputBorderRadiusSmall = 'var(--syn-input-border-radius-small)';
|
|
620
615
|
|
|
621
616
|
/**
|
|
622
617
|
* @type {string}
|
|
623
618
|
*/
|
|
624
|
-
export const
|
|
619
|
+
export const SynInputBorderWidth = 'var(--syn-input-border-width)';
|
|
625
620
|
|
|
626
621
|
/**
|
|
627
622
|
* @type {string}
|
|
628
623
|
*/
|
|
629
|
-
export const
|
|
624
|
+
export const SynInputColor = 'var(--syn-input-color)';
|
|
630
625
|
|
|
631
626
|
/**
|
|
632
627
|
* @type {string}
|
|
633
628
|
*/
|
|
634
|
-
export const
|
|
629
|
+
export const SynInputColorDisabled = 'var(--syn-input-color-disabled)';
|
|
635
630
|
|
|
636
631
|
/**
|
|
637
632
|
* @type {string}
|
|
638
633
|
*/
|
|
639
|
-
export const
|
|
634
|
+
export const SynInputColorFocus = 'var(--syn-input-color-focus)';
|
|
640
635
|
|
|
641
636
|
/**
|
|
642
637
|
* @type {string}
|
|
643
638
|
*/
|
|
644
|
-
export const
|
|
639
|
+
export const SynInputColorHover = 'var(--syn-input-color-hover)';
|
|
645
640
|
|
|
646
641
|
/**
|
|
647
642
|
* @type {string}
|
|
648
643
|
*/
|
|
649
|
-
export const
|
|
644
|
+
export const SynInputDisabledOpacity = 'var(--syn-input-disabled-opacity)';
|
|
650
645
|
|
|
651
646
|
/**
|
|
652
647
|
* @type {string}
|
|
653
648
|
*/
|
|
654
|
-
export const
|
|
649
|
+
export const SynInputFocusRingColor = 'var(--syn-input-focus-ring-color)';
|
|
655
650
|
|
|
656
651
|
/**
|
|
657
652
|
* @type {string}
|
|
658
653
|
*/
|
|
659
|
-
export const
|
|
654
|
+
export const SynInputFocusRingError = 'var(--syn-input-focus-ring-error)';
|
|
660
655
|
|
|
661
656
|
/**
|
|
662
657
|
* @type {string}
|
|
663
658
|
*/
|
|
664
|
-
export const
|
|
659
|
+
export const SynInputFocusRingOffset = 'var(--syn-input-focus-ring-offset)';
|
|
665
660
|
|
|
666
661
|
/**
|
|
667
662
|
* @type {string}
|
|
668
663
|
*/
|
|
669
|
-
export const
|
|
664
|
+
export const SynInputFontFamily = 'var(--syn-input-font-family)';
|
|
670
665
|
|
|
671
666
|
/**
|
|
672
667
|
* @type {string}
|
|
673
668
|
*/
|
|
674
|
-
export const
|
|
669
|
+
export const SynInputFontSizeLarge = 'var(--syn-input-font-size-large)';
|
|
675
670
|
|
|
676
671
|
/**
|
|
677
672
|
* @type {string}
|
|
678
673
|
*/
|
|
679
|
-
export const
|
|
674
|
+
export const SynInputFontSizeMedium = 'var(--syn-input-font-size-medium)';
|
|
680
675
|
|
|
681
676
|
/**
|
|
682
677
|
* @type {string}
|
|
683
678
|
*/
|
|
684
|
-
export const
|
|
679
|
+
export const SynInputFontSizeSmall = 'var(--syn-input-font-size-small)';
|
|
685
680
|
|
|
686
681
|
/**
|
|
687
682
|
* @type {string}
|
|
688
683
|
*/
|
|
689
|
-
export const
|
|
684
|
+
export const SynInputFontWeight = 'var(--syn-input-font-weight)';
|
|
690
685
|
|
|
691
686
|
/**
|
|
692
687
|
* @type {string}
|
|
693
688
|
*/
|
|
694
|
-
export const
|
|
689
|
+
export const SynInputHeightLarge = 'var(--syn-input-height-large)';
|
|
695
690
|
|
|
696
691
|
/**
|
|
697
692
|
* @type {string}
|
|
698
693
|
*/
|
|
699
|
-
export const
|
|
694
|
+
export const SynInputHeightMedium = 'var(--syn-input-height-medium)';
|
|
700
695
|
|
|
701
696
|
/**
|
|
702
697
|
* @type {string}
|
|
703
698
|
*/
|
|
704
|
-
export const
|
|
699
|
+
export const SynInputHeightSmall = 'var(--syn-input-height-small)';
|
|
705
700
|
|
|
706
701
|
/**
|
|
707
702
|
* @type {string}
|
|
708
703
|
*/
|
|
709
|
-
export const
|
|
704
|
+
export const SynInputHelpTextColor = 'var(--syn-input-help-text-color)';
|
|
710
705
|
|
|
711
706
|
/**
|
|
712
707
|
* @type {string}
|
|
713
708
|
*/
|
|
714
|
-
export const
|
|
709
|
+
export const SynInputHelpTextColorError = 'var(--syn-input-help-text-color-error)';
|
|
715
710
|
|
|
716
711
|
/**
|
|
717
712
|
* @type {string}
|
|
718
713
|
*/
|
|
719
|
-
export const
|
|
714
|
+
export const SynInputHelpTextFontSizeLarge = 'var(--syn-input-help-text-font-size-large)';
|
|
720
715
|
|
|
721
716
|
/**
|
|
722
717
|
* @type {string}
|
|
723
718
|
*/
|
|
724
|
-
export const
|
|
719
|
+
export const SynInputHelpTextFontSizeMedium = 'var(--syn-input-help-text-font-size-medium)';
|
|
725
720
|
|
|
726
721
|
/**
|
|
727
722
|
* @type {string}
|
|
728
723
|
*/
|
|
729
|
-
export const
|
|
724
|
+
export const SynInputHelpTextFontSizeSmall = 'var(--syn-input-help-text-font-size-small)';
|
|
730
725
|
|
|
731
726
|
/**
|
|
732
727
|
* @type {string}
|
|
733
728
|
*/
|
|
734
|
-
export const
|
|
729
|
+
export const SynInputIconColor = 'var(--syn-input-icon-color)';
|
|
735
730
|
|
|
736
731
|
/**
|
|
737
732
|
* @type {string}
|
|
738
733
|
*/
|
|
739
|
-
export const
|
|
734
|
+
export const SynInputIconColorFocus = 'var(--syn-input-icon-color-focus)';
|
|
740
735
|
|
|
741
736
|
/**
|
|
742
737
|
* @type {string}
|
|
743
738
|
*/
|
|
744
|
-
export const
|
|
739
|
+
export const SynInputIconColorHover = 'var(--syn-input-icon-color-hover)';
|
|
745
740
|
|
|
746
741
|
/**
|
|
747
742
|
* @type {string}
|
|
748
743
|
*/
|
|
749
|
-
export const
|
|
744
|
+
export const SynInputIconIconClearableColor = 'var(--syn-input-icon-icon-clearable-color)';
|
|
750
745
|
|
|
751
746
|
/**
|
|
752
747
|
* @type {string}
|
|
753
748
|
*/
|
|
754
|
-
export const
|
|
749
|
+
export const SynInputIconIconClearableColorFocus = 'var(--syn-input-icon-icon-clearable-color-focus)';
|
|
755
750
|
|
|
756
751
|
/**
|
|
757
752
|
* @type {string}
|
|
758
753
|
*/
|
|
759
|
-
export const
|
|
754
|
+
export const SynInputIconIconClearableColorHover = 'var(--syn-input-icon-icon-clearable-color-hover)';
|
|
760
755
|
|
|
761
756
|
/**
|
|
762
757
|
* @type {string}
|
|
763
758
|
*/
|
|
764
|
-
export const
|
|
759
|
+
export const SynInputLabelColor = 'var(--syn-input-label-color)';
|
|
765
760
|
|
|
766
761
|
/**
|
|
767
762
|
* @type {string}
|
|
768
763
|
*/
|
|
769
|
-
export const
|
|
764
|
+
export const SynInputLabelFontSizeLarge = 'var(--syn-input-label-font-size-large)';
|
|
770
765
|
|
|
771
766
|
/**
|
|
772
767
|
* @type {string}
|
|
773
768
|
*/
|
|
774
|
-
export const
|
|
769
|
+
export const SynInputLabelFontSizeMedium = 'var(--syn-input-label-font-size-medium)';
|
|
775
770
|
|
|
776
771
|
/**
|
|
777
772
|
* @type {string}
|
|
778
773
|
*/
|
|
779
|
-
export const
|
|
774
|
+
export const SynInputLabelFontSizeSmall = 'var(--syn-input-label-font-size-small)';
|
|
780
775
|
|
|
781
776
|
/**
|
|
782
777
|
* @type {string}
|
|
783
778
|
*/
|
|
784
|
-
export const
|
|
779
|
+
export const SynInputLetterSpacing = 'var(--syn-input-letter-spacing)';
|
|
785
780
|
|
|
786
781
|
/**
|
|
787
782
|
* @type {string}
|
|
788
783
|
*/
|
|
789
|
-
export const
|
|
784
|
+
export const SynInputPlaceholderColor = 'var(--syn-input-placeholder-color)';
|
|
790
785
|
|
|
791
786
|
/**
|
|
792
787
|
* @type {string}
|
|
793
788
|
*/
|
|
794
|
-
export const
|
|
789
|
+
export const SynInputPlaceholderColorDisabled = 'var(--syn-input-placeholder-color-disabled)';
|
|
795
790
|
|
|
796
791
|
/**
|
|
797
792
|
* @type {string}
|
|
798
793
|
*/
|
|
799
|
-
export const
|
|
794
|
+
export const SynInputReadonlyColor = 'var(--syn-input-readonly-color)';
|
|
800
795
|
|
|
801
796
|
/**
|
|
802
797
|
* @type {string}
|
|
803
798
|
*/
|
|
804
|
-
export const
|
|
799
|
+
export const SynInputReadonlyColorDisabled = 'var(--syn-input-readonly-color-disabled)';
|
|
805
800
|
|
|
806
801
|
/**
|
|
807
802
|
* @type {string}
|
|
808
803
|
*/
|
|
809
|
-
export const
|
|
804
|
+
export const SynInputReadonlyColorFocus = 'var(--syn-input-readonly-color-focus)';
|
|
810
805
|
|
|
811
806
|
/**
|
|
812
807
|
* @type {string}
|
|
813
808
|
*/
|
|
814
|
-
export const
|
|
809
|
+
export const SynInputReadonlyColorHover = 'var(--syn-input-readonly-color-hover)';
|
|
815
810
|
|
|
816
811
|
/**
|
|
817
812
|
* @type {string}
|
|
818
813
|
*/
|
|
819
|
-
export const
|
|
814
|
+
export const SynInputReadonlyBackgroundColor = 'var(--syn-input-readonly-background-color)';
|
|
820
815
|
|
|
821
816
|
/**
|
|
822
817
|
* @type {string}
|
|
823
818
|
*/
|
|
824
|
-
export const
|
|
819
|
+
export const SynInputReadonlyBackgroundColorDisabled = 'var(--syn-input-readonly-background-color-disabled)';
|
|
825
820
|
|
|
826
821
|
/**
|
|
827
822
|
* @type {string}
|
|
828
823
|
*/
|
|
829
|
-
export const
|
|
824
|
+
export const SynInputReadonlyBackgroundColorFocus = 'var(--syn-input-readonly-background-color-focus)';
|
|
830
825
|
|
|
831
826
|
/**
|
|
832
827
|
* @type {string}
|
|
833
828
|
*/
|
|
834
|
-
export const
|
|
829
|
+
export const SynInputReadonlyBackgroundColorHover = 'var(--syn-input-readonly-background-color-hover)';
|
|
835
830
|
|
|
836
831
|
/**
|
|
837
832
|
* @type {string}
|
|
838
833
|
*/
|
|
839
|
-
export const
|
|
834
|
+
export const SynInputRequiredContent = 'var(--syn-input-required-content)';
|
|
840
835
|
|
|
841
836
|
/**
|
|
842
837
|
* @type {string}
|
|
843
838
|
*/
|
|
844
|
-
export const
|
|
839
|
+
export const SynInputRequiredContentColor = 'var(--syn-input-required-content-color)';
|
|
845
840
|
|
|
846
841
|
/**
|
|
847
842
|
* @type {string}
|
|
848
843
|
*/
|
|
849
|
-
export const
|
|
844
|
+
export const SynInputRequiredContentOffset = 'var(--syn-input-required-content-offset)';
|
|
850
845
|
|
|
851
846
|
/**
|
|
852
847
|
* @type {string}
|
|
853
848
|
*/
|
|
854
|
-
export const
|
|
849
|
+
export const SynInputSpacingLarge = 'var(--syn-input-spacing-large)';
|
|
855
850
|
|
|
856
851
|
/**
|
|
857
852
|
* @type {string}
|
|
858
853
|
*/
|
|
859
|
-
export const
|
|
854
|
+
export const SynInputSpacingMedium = 'var(--syn-input-spacing-medium)';
|
|
860
855
|
|
|
861
856
|
/**
|
|
862
857
|
* @type {string}
|
|
863
858
|
*/
|
|
864
|
-
export const
|
|
859
|
+
export const SynInputSpacingSmall = 'var(--syn-input-spacing-small)';
|
|
865
860
|
|
|
866
861
|
/**
|
|
867
862
|
* @type {string}
|
|
868
863
|
*/
|
|
869
|
-
export const
|
|
864
|
+
export const SynInputWidth = 'var(--syn-input-width)';
|
|
870
865
|
|
|
871
866
|
/**
|
|
872
867
|
* @type {string}
|
|
873
868
|
*/
|
|
874
|
-
export const
|
|
869
|
+
export const SynLetterSpacingDense = 'var(--syn-letter-spacing-dense)';
|
|
875
870
|
|
|
876
871
|
/**
|
|
877
872
|
* @type {string}
|
|
878
873
|
*/
|
|
879
|
-
export const
|
|
874
|
+
export const SynLetterSpacingDenser = 'var(--syn-letter-spacing-denser)';
|
|
880
875
|
|
|
881
876
|
/**
|
|
882
877
|
* @type {string}
|
|
883
878
|
*/
|
|
884
|
-
export const
|
|
879
|
+
export const SynLetterSpacingLoose = 'var(--syn-letter-spacing-loose)';
|
|
885
880
|
|
|
886
881
|
/**
|
|
887
882
|
* @type {string}
|
|
888
883
|
*/
|
|
889
|
-
export const
|
|
884
|
+
export const SynLetterSpacingLooser = 'var(--syn-letter-spacing-looser)';
|
|
890
885
|
|
|
891
886
|
/**
|
|
892
887
|
* @type {string}
|
|
893
888
|
*/
|
|
894
|
-
export const
|
|
889
|
+
export const SynLetterSpacingNormal = 'var(--syn-letter-spacing-normal)';
|
|
895
890
|
|
|
896
891
|
/**
|
|
897
892
|
* @type {string}
|
|
898
893
|
*/
|
|
899
|
-
export const
|
|
894
|
+
export const SynLineHeightDense = 'var(--syn-line-height-dense)';
|
|
900
895
|
|
|
901
896
|
/**
|
|
902
897
|
* @type {string}
|
|
903
898
|
*/
|
|
904
|
-
export const
|
|
899
|
+
export const SynLineHeightDenser = 'var(--syn-line-height-denser)';
|
|
905
900
|
|
|
906
901
|
/**
|
|
907
902
|
* @type {string}
|
|
908
903
|
*/
|
|
909
|
-
export const
|
|
904
|
+
export const SynLineHeightLoose = 'var(--syn-line-height-loose)';
|
|
910
905
|
|
|
911
906
|
/**
|
|
912
907
|
* @type {string}
|
|
913
908
|
*/
|
|
914
|
-
export const
|
|
909
|
+
export const SynLineHeightLooser = 'var(--syn-line-height-looser)';
|
|
915
910
|
|
|
916
911
|
/**
|
|
917
912
|
* @type {string}
|
|
918
913
|
*/
|
|
919
|
-
export const
|
|
914
|
+
export const SynLineHeightNormal = 'var(--syn-line-height-normal)';
|
|
920
915
|
|
|
921
916
|
/**
|
|
922
917
|
* @type {string}
|
|
923
918
|
*/
|
|
924
|
-
export const
|
|
919
|
+
export const SynLinkColor = 'var(--syn-link-color)';
|
|
925
920
|
|
|
926
921
|
/**
|
|
927
922
|
* @type {string}
|
|
928
923
|
*/
|
|
929
|
-
export const
|
|
924
|
+
export const SynLinkColorActive = 'var(--syn-link-color-active)';
|
|
930
925
|
|
|
931
926
|
/**
|
|
932
927
|
* @type {string}
|
|
933
928
|
*/
|
|
934
|
-
export const
|
|
929
|
+
export const SynLinkColorHover = 'var(--syn-link-color-hover)';
|
|
935
930
|
|
|
936
931
|
/**
|
|
937
932
|
* @type {string}
|
|
938
933
|
*/
|
|
939
|
-
export const
|
|
934
|
+
export const SynLinkQuietColor = 'var(--syn-link-quiet-color)';
|
|
940
935
|
|
|
941
936
|
/**
|
|
942
937
|
* @type {string}
|
|
943
938
|
*/
|
|
944
|
-
export const
|
|
939
|
+
export const SynLinkQuietColorActive = 'var(--syn-link-quiet-color-active)';
|
|
945
940
|
|
|
946
941
|
/**
|
|
947
942
|
* @type {string}
|
|
948
943
|
*/
|
|
949
|
-
export const
|
|
944
|
+
export const SynLinkQuietColorHover = 'var(--syn-link-quiet-color-hover)';
|
|
950
945
|
|
|
951
946
|
/**
|
|
952
947
|
* @type {string}
|
|
953
948
|
*/
|
|
954
|
-
export const
|
|
949
|
+
export const SynOpacity50 = 'var(--syn-opacity-50)';
|
|
955
950
|
|
|
956
951
|
/**
|
|
957
952
|
* @type {string}
|
|
958
953
|
*/
|
|
959
|
-
export const
|
|
954
|
+
export const SynOverlayBackgroundColor = 'var(--syn-overlay-background-color)';
|
|
960
955
|
|
|
961
956
|
/**
|
|
962
957
|
* @type {string}
|
|
963
958
|
*/
|
|
964
|
-
export const
|
|
959
|
+
export const SynPanelBackgroundColor = 'var(--syn-panel-background-color)';
|
|
965
960
|
|
|
966
961
|
/**
|
|
967
962
|
* @type {string}
|
|
968
963
|
*/
|
|
969
|
-
export const
|
|
964
|
+
export const SynPanelBorderColor = 'var(--syn-panel-border-color)';
|
|
970
965
|
|
|
971
966
|
/**
|
|
972
967
|
* @type {string}
|
|
973
968
|
*/
|
|
974
|
-
export const
|
|
969
|
+
export const SynPanelBorderWidth = 'var(--syn-panel-border-width)';
|
|
975
970
|
|
|
976
971
|
/**
|
|
977
972
|
* @type {string}
|
|
978
973
|
*/
|
|
979
|
-
export const
|
|
974
|
+
export const SynSpacing2xLarge = 'var(--syn-spacing-2x-large)';
|
|
980
975
|
|
|
981
976
|
/**
|
|
982
977
|
* @type {string}
|
|
983
978
|
*/
|
|
984
|
-
export const
|
|
979
|
+
export const SynSpacing2xSmall = 'var(--syn-spacing-2x-small)';
|
|
985
980
|
|
|
986
981
|
/**
|
|
987
982
|
* @type {string}
|
|
988
983
|
*/
|
|
989
|
-
export const
|
|
984
|
+
export const SynSpacing3xLarge = 'var(--syn-spacing-3x-large)';
|
|
990
985
|
|
|
991
986
|
/**
|
|
992
987
|
* @type {string}
|
|
993
988
|
*/
|
|
994
|
-
export const
|
|
989
|
+
export const SynSpacing3xSmall = 'var(--syn-spacing-3x-small)';
|
|
995
990
|
|
|
996
991
|
/**
|
|
997
992
|
* @type {string}
|
|
998
993
|
*/
|
|
999
|
-
export const
|
|
994
|
+
export const SynSpacing4xLarge = 'var(--syn-spacing-4x-large)';
|
|
1000
995
|
|
|
1001
996
|
/**
|
|
1002
997
|
* @type {string}
|
|
1003
998
|
*/
|
|
1004
|
-
export const
|
|
999
|
+
export const SynSpacing4xSmall = 'var(--syn-spacing-4x-small)';
|
|
1005
1000
|
|
|
1006
1001
|
/**
|
|
1007
1002
|
* @type {string}
|
|
1008
1003
|
*/
|
|
1009
|
-
export const
|
|
1004
|
+
export const SynSpacing5xLarge = 'var(--syn-spacing-5x-large)';
|
|
1010
1005
|
|
|
1011
1006
|
/**
|
|
1012
1007
|
* @type {string}
|
|
1013
1008
|
*/
|
|
1014
|
-
export const
|
|
1009
|
+
export const SynSpacingLarge = 'var(--syn-spacing-large)';
|
|
1015
1010
|
|
|
1016
1011
|
/**
|
|
1017
1012
|
* @type {string}
|
|
1018
1013
|
*/
|
|
1019
|
-
export const
|
|
1014
|
+
export const SynSpacingMedium = 'var(--syn-spacing-medium)';
|
|
1020
1015
|
|
|
1021
1016
|
/**
|
|
1022
1017
|
* @type {string}
|
|
1023
1018
|
*/
|
|
1024
|
-
export const
|
|
1019
|
+
export const SynSpacingMediumLarge = 'var(--syn-spacing-medium-large)';
|
|
1025
1020
|
|
|
1026
1021
|
/**
|
|
1027
1022
|
* @type {string}
|
|
1028
1023
|
*/
|
|
1029
|
-
export const
|
|
1024
|
+
export const SynSpacingSmall = 'var(--syn-spacing-small)';
|
|
1030
1025
|
|
|
1031
1026
|
/**
|
|
1032
1027
|
* @type {string}
|
|
1033
1028
|
*/
|
|
1034
|
-
export const
|
|
1029
|
+
export const SynSpacingXLarge = 'var(--syn-spacing-x-large)';
|
|
1035
1030
|
|
|
1036
1031
|
/**
|
|
1037
1032
|
* @type {string}
|
|
1038
1033
|
*/
|
|
1039
|
-
export const
|
|
1034
|
+
export const SynSpacingXSmall = 'var(--syn-spacing-x-small)';
|
|
1040
1035
|
|
|
1041
1036
|
/**
|
|
1042
1037
|
* @type {string}
|
|
1043
1038
|
*/
|
|
1044
|
-
export const
|
|
1039
|
+
export const SynTextDecorationDefault = 'var(--syn-text-decoration-default)';
|
|
1045
1040
|
|
|
1046
1041
|
/**
|
|
1047
1042
|
* @type {string}
|
|
1048
1043
|
*/
|
|
1049
|
-
export const
|
|
1044
|
+
export const SynTextDecorationUnderline = 'var(--syn-text-decoration-underline)';
|
|
1050
1045
|
|
|
1051
1046
|
/**
|
|
1052
1047
|
* @type {string}
|
|
1053
1048
|
*/
|
|
1054
|
-
export const
|
|
1049
|
+
export const SynToggleSizeLarge = 'var(--syn-toggle-size-large)';
|
|
1055
1050
|
|
|
1056
1051
|
/**
|
|
1057
1052
|
* @type {string}
|
|
1058
1053
|
*/
|
|
1059
|
-
export const
|
|
1054
|
+
export const SynToggleSizeMedium = 'var(--syn-toggle-size-medium)';
|
|
1060
1055
|
|
|
1061
1056
|
/**
|
|
1062
1057
|
* @type {string}
|
|
1063
1058
|
*/
|
|
1064
|
-
export const
|
|
1059
|
+
export const SynToggleSizeSmall = 'var(--syn-toggle-size-small)';
|
|
1065
1060
|
|
|
1066
1061
|
/**
|
|
1067
1062
|
* @type {string}
|
|
1068
1063
|
*/
|
|
1069
|
-
export const
|
|
1064
|
+
export const SynTooltipArrowSize = 'var(--syn-tooltip-arrow-size)';
|
|
1070
1065
|
|
|
1071
1066
|
/**
|
|
1072
1067
|
* @type {string}
|
|
1073
1068
|
*/
|
|
1074
|
-
export const
|
|
1069
|
+
export const SynTooltipBackgroundColor = 'var(--syn-tooltip-background-color)';
|
|
1075
1070
|
|
|
1076
1071
|
/**
|
|
1077
1072
|
* @type {string}
|
|
1078
1073
|
*/
|
|
1079
|
-
export const
|
|
1074
|
+
export const SynTooltipBorderRadius = 'var(--syn-tooltip-border-radius)';
|
|
1080
1075
|
|
|
1081
1076
|
/**
|
|
1082
1077
|
* @type {string}
|
|
1083
1078
|
*/
|
|
1084
|
-
export const
|
|
1079
|
+
export const SynTooltipColor = 'var(--syn-tooltip-color)';
|
|
1085
1080
|
|
|
1086
1081
|
/**
|
|
1087
1082
|
* @type {string}
|
|
1088
1083
|
*/
|
|
1089
|
-
export const
|
|
1084
|
+
export const SynTooltipFontFamily = 'var(--syn-tooltip-font-family)';
|
|
1090
1085
|
|
|
1091
1086
|
/**
|
|
1092
1087
|
* @type {string}
|
|
1093
1088
|
*/
|
|
1094
|
-
export const
|
|
1089
|
+
export const SynTooltipFontSize = 'var(--syn-tooltip-font-size)';
|
|
1095
1090
|
|
|
1096
1091
|
/**
|
|
1097
1092
|
* @type {string}
|
|
1098
1093
|
*/
|
|
1099
|
-
export const
|
|
1094
|
+
export const SynTooltipFontWeight = 'var(--syn-tooltip-font-weight)';
|
|
1100
1095
|
|
|
1101
1096
|
/**
|
|
1102
1097
|
* @type {string}
|
|
1103
1098
|
*/
|
|
1104
|
-
export const
|
|
1099
|
+
export const SynTooltipLineHeight = 'var(--syn-tooltip-line-height)';
|
|
1105
1100
|
|
|
1106
1101
|
/**
|
|
1107
1102
|
* @type {string}
|
|
1108
1103
|
*/
|
|
1109
|
-
export const
|
|
1104
|
+
export const SynTooltipPadding = 'var(--syn-tooltip-padding)';
|
|
1110
1105
|
|
|
1111
1106
|
/**
|
|
1112
1107
|
* @type {string}
|
|
1113
1108
|
*/
|
|
1114
|
-
export const
|
|
1109
|
+
export const SynTransitionFast = 'var(--syn-transition-fast)';
|
|
1115
1110
|
|
|
1116
1111
|
/**
|
|
1117
1112
|
* @type {string}
|
|
1118
1113
|
*/
|
|
1119
|
-
export const
|
|
1114
|
+
export const SynTransitionMedium = 'var(--syn-transition-medium)';
|
|
1120
1115
|
|
|
1121
1116
|
/**
|
|
1122
1117
|
* @type {string}
|
|
1123
1118
|
*/
|
|
1124
|
-
export const
|
|
1119
|
+
export const SynTransitionSlow = 'var(--syn-transition-slow)';
|
|
1125
1120
|
|
|
1126
1121
|
/**
|
|
1127
1122
|
* @type {string}
|
|
1128
1123
|
*/
|
|
1129
|
-
export const
|
|
1124
|
+
export const SynTransitionXFast = 'var(--syn-transition-x-fast)';
|
|
1130
1125
|
|
|
1131
1126
|
/**
|
|
1132
1127
|
* @type {string}
|
|
1133
1128
|
*/
|
|
1134
|
-
export const
|
|
1129
|
+
export const SynTransitionXSlow = 'var(--syn-transition-x-slow)';
|
|
1135
1130
|
|
|
1136
1131
|
/**
|
|
1137
1132
|
* @type {string}
|
|
1138
1133
|
*/
|
|
1139
|
-
export const
|
|
1134
|
+
export const SynTypographyColorText = 'var(--syn-typography-color-text)';
|
|
1140
1135
|
|
|
1141
1136
|
/**
|
|
1142
1137
|
* @type {string}
|
|
1143
1138
|
*/
|
|
1144
|
-
export const
|
|
1139
|
+
export const SynTypographyColorTextInverted = 'var(--syn-typography-color-text-inverted)';
|
|
1145
1140
|
|
|
1146
1141
|
/**
|
|
1147
1142
|
* @type {string}
|
|
1148
1143
|
*/
|
|
1149
|
-
export const
|
|
1144
|
+
export const SynZIndexDialog = 'var(--syn-z-index-dialog)';
|
|
1150
1145
|
|
|
1151
1146
|
/**
|
|
1152
1147
|
* @type {string}
|
|
1153
1148
|
*/
|
|
1154
|
-
export const
|
|
1149
|
+
export const SynZIndexDrawer = 'var(--syn-z-index-drawer)';
|
|
1155
1150
|
|
|
1156
1151
|
/**
|
|
1157
1152
|
* @type {string}
|
|
1158
1153
|
*/
|
|
1159
|
-
export const
|
|
1154
|
+
export const SynZIndexDropdown = 'var(--syn-z-index-dropdown)';
|
|
1160
1155
|
|
|
1161
1156
|
/**
|
|
1162
1157
|
* @type {string}
|
|
1163
1158
|
*/
|
|
1164
|
-
export const
|
|
1159
|
+
export const SynZIndexToast = 'var(--syn-z-index-toast)';
|
|
1165
1160
|
|
|
1166
1161
|
/**
|
|
1167
1162
|
* @type {string}
|
|
1168
1163
|
*/
|
|
1169
|
-
export const
|
|
1164
|
+
export const SynZIndexTooltip = 'var(--syn-z-index-tooltip)';
|
|
1170
1165
|
|
|
1171
1166
|
/**
|
|
1172
1167
|
* @type {string}
|
|
1173
1168
|
*/
|
|
1174
|
-
export const
|
|
1169
|
+
export const SynShadowMedium = 'var(--syn-shadow-medium)';
|
|
1175
1170
|
|
|
1176
1171
|
/**
|
|
1177
1172
|
* @type {string}
|
|
1178
1173
|
*/
|
|
1179
|
-
export const
|
|
1174
|
+
export const SynShadowLarge = 'var(--syn-shadow-large)';
|
|
1180
1175
|
|
|
1181
1176
|
/**
|
|
1182
1177
|
* @type {string}
|
|
1183
1178
|
*/
|
|
1184
|
-
export const
|
|
1179
|
+
export const SynShadowXLarge = 'var(--syn-shadow-x-large)';
|
|
1185
1180
|
|
|
1186
1181
|
/**
|
|
1187
1182
|
* @type {string}
|
|
1188
1183
|
*/
|
|
1189
|
-
export const
|
|
1184
|
+
export const SynShadowOverflowDown = 'var(--syn-shadow-overflow-down)';
|
|
1190
1185
|
|
|
1191
1186
|
/**
|
|
1192
1187
|
* @type {string}
|
|
1193
1188
|
*/
|
|
1194
|
-
export const
|
|
1189
|
+
export const SynShadowOverflowUp = 'var(--syn-shadow-overflow-up)';
|
|
1195
1190
|
|
|
1196
1191
|
/**
|
|
1197
1192
|
* @type {string}
|
|
1198
1193
|
*/
|
|
1199
|
-
export const
|
|
1194
|
+
export const SynShadowOverflowLeft = 'var(--syn-shadow-overflow-left)';
|
|
1200
1195
|
|
|
1201
1196
|
/**
|
|
1202
1197
|
* @type {string}
|
|
1203
1198
|
*/
|
|
1204
|
-
export const
|
|
1199
|
+
export const SynShadowOverflowRight = 'var(--syn-shadow-overflow-right)';
|
|
1205
1200
|
|
|
1206
1201
|
/**
|
|
1207
1202
|
* @type {string}
|
|
1208
1203
|
*/
|
|
1209
|
-
export const
|
|
1204
|
+
export const SynShadowXSmall = 'var(--syn-shadow-x-small)';
|
|
1210
1205
|
|
|
1211
1206
|
/**
|
|
1212
1207
|
* @type {string}
|
|
1213
1208
|
*/
|
|
1214
|
-
export const
|
|
1209
|
+
export const SynShadowSmall = 'var(--syn-shadow-small)';
|
|
1215
1210
|
|
|
1216
1211
|
/**
|
|
1217
1212
|
* @type {string}
|
|
1218
1213
|
*/
|
|
1219
|
-
export const
|
|
1214
|
+
export const SynBodyXSmallRegular = 'var(--syn-body-x-small-regular)';
|
|
1220
1215
|
|
|
1221
1216
|
/**
|
|
1222
1217
|
* @type {string}
|
|
1223
1218
|
*/
|
|
1224
|
-
export const
|
|
1219
|
+
export const SynBodyXSmallSemibold = 'var(--syn-body-x-small-semibold)';
|
|
1225
1220
|
|
|
1226
1221
|
/**
|
|
1227
1222
|
* @type {string}
|
|
1228
1223
|
*/
|
|
1229
|
-
export const
|
|
1224
|
+
export const SynBodyXSmallBold = 'var(--syn-body-x-small-bold)';
|
|
1230
1225
|
|
|
1231
1226
|
/**
|
|
1232
1227
|
* @type {string}
|
|
1233
1228
|
*/
|
|
1234
|
-
export const
|
|
1229
|
+
export const SynBodySmallRegular = 'var(--syn-body-small-regular)';
|
|
1235
1230
|
|
|
1236
1231
|
/**
|
|
1237
1232
|
* @type {string}
|
|
1238
1233
|
*/
|
|
1239
|
-
export const
|
|
1234
|
+
export const SynBodySmallSemibold = 'var(--syn-body-small-semibold)';
|
|
1240
1235
|
|
|
1241
1236
|
/**
|
|
1242
1237
|
* @type {string}
|
|
1243
1238
|
*/
|
|
1244
|
-
export const
|
|
1239
|
+
export const SynBodySmallBold = 'var(--syn-body-small-bold)';
|
|
1245
1240
|
|
|
1246
1241
|
/**
|
|
1247
1242
|
* @type {string}
|
|
1248
1243
|
*/
|
|
1249
|
-
export const
|
|
1244
|
+
export const SynBodyMediumRegular = 'var(--syn-body-medium-regular)';
|
|
1250
1245
|
|
|
1251
1246
|
/**
|
|
1252
1247
|
* @type {string}
|
|
1253
1248
|
*/
|
|
1254
|
-
export const
|
|
1249
|
+
export const SynBodyMediumSemibold = 'var(--syn-body-medium-semibold)';
|
|
1255
1250
|
|
|
1256
1251
|
/**
|
|
1257
1252
|
* @type {string}
|
|
1258
1253
|
*/
|
|
1259
|
-
export const
|
|
1254
|
+
export const SynBodyMediumBold = 'var(--syn-body-medium-bold)';
|
|
1260
1255
|
|
|
1261
1256
|
/**
|
|
1262
1257
|
* @type {string}
|
|
1263
1258
|
*/
|
|
1264
|
-
export const
|
|
1259
|
+
export const SynBodyLargeRegular = 'var(--syn-body-large-regular)';
|
|
1265
1260
|
|
|
1266
1261
|
/**
|
|
1267
1262
|
* @type {string}
|
|
1268
1263
|
*/
|
|
1269
|
-
export const
|
|
1264
|
+
export const SynBodyLargeSemibold = 'var(--syn-body-large-semibold)';
|
|
1270
1265
|
|
|
1271
1266
|
/**
|
|
1272
1267
|
* @type {string}
|
|
1273
1268
|
*/
|
|
1274
|
-
export const
|
|
1269
|
+
export const SynBodyLargeBold = 'var(--syn-body-large-bold)';
|
|
1275
1270
|
|
|
1276
1271
|
/**
|
|
1277
1272
|
* @type {string}
|
|
1278
1273
|
*/
|
|
1279
|
-
export const
|
|
1274
|
+
export const SynHeadingLarge = 'var(--syn-heading-large)';
|
|
1280
1275
|
|
|
1281
1276
|
/**
|
|
1282
1277
|
* @type {string}
|
|
1283
1278
|
*/
|
|
1284
|
-
export const
|
|
1279
|
+
export const SynHeadingXLarge = 'var(--syn-heading-x-large)';
|
|
1285
1280
|
|
|
1286
1281
|
/**
|
|
1287
1282
|
* @type {string}
|
|
1288
1283
|
*/
|
|
1289
|
-
export const
|
|
1284
|
+
export const SynHeading2xLarge = 'var(--syn-heading-2x-large)';
|
|
1290
1285
|
|
|
1291
1286
|
/**
|
|
1292
1287
|
* @type {string}
|
|
1293
1288
|
*/
|
|
1294
|
-
export const
|
|
1289
|
+
export const SynHeading3xLarge = 'var(--syn-heading-3x-large)';
|
|
1295
1290
|
|
|
1296
1291
|
/**
|
|
1297
1292
|
* @type {string}
|
|
1298
1293
|
*/
|
|
1299
|
-
export const
|
|
1294
|
+
export const SynFocusRing = 'var(--syn-focus-ring)';
|