@telus-uds/system-theme-tokens 3.2.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -2
- package/babel.config.cjs +14 -0
- package/bin/android/build.js +1 -1
- package/bin/ios/build.js +1 -1
- package/bin/ios/tokens.js +1 -1
- package/build/cjs/appearances.js +435 -0
- package/build/cjs/components.js +2221 -0
- package/build/cjs/index.js +27 -0
- package/build/cjs/tokens.js +390 -0
- package/build/esm/appearances.js +430 -0
- package/build/esm/components.js +2215 -0
- package/build/esm/index.js +9 -0
- package/build/esm/tokens.js +385 -0
- package/package.json +8 -12
- package/{components.js → src/components.js} +22 -1
- /package/{appearances.js → src/appearances.js} +0 -0
- /package/{index.js → src/index.js} +0 -0
- /package/{tokens.js → src/tokens.js} +0 -0
|
@@ -0,0 +1,2221 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
// Define the required components and their supported tokens
|
|
8
|
+
var _default = exports.default = {
|
|
9
|
+
Autocomplete: {
|
|
10
|
+
color: 'color',
|
|
11
|
+
maxHeight: 'size',
|
|
12
|
+
overflowY: 'overflow'
|
|
13
|
+
},
|
|
14
|
+
ActionCard: {
|
|
15
|
+
actionIcon: 'icon',
|
|
16
|
+
actionIconColor: 'color',
|
|
17
|
+
actionIconMarginBottom: 'size',
|
|
18
|
+
actionIconMarginLeft: 'size',
|
|
19
|
+
actionIconMarginRight: 'size',
|
|
20
|
+
actionIconMarginTop: 'size',
|
|
21
|
+
actionIconTranslate: 'size',
|
|
22
|
+
backgroundColor: 'color',
|
|
23
|
+
borderColor: 'color',
|
|
24
|
+
borderRadius: 'radius',
|
|
25
|
+
borderWidth: 'border',
|
|
26
|
+
contentFontColor: 'color',
|
|
27
|
+
contentFontName: 'fontName',
|
|
28
|
+
contentFontSize: 'fontSize',
|
|
29
|
+
contentFontWeight: 'fontWeight',
|
|
30
|
+
contentLineHeight: 'lineHeight',
|
|
31
|
+
contentMarginBottom: 'size',
|
|
32
|
+
contentMarginLeft: 'size',
|
|
33
|
+
contentMarginRight: 'size',
|
|
34
|
+
contentMarginTop: 'size',
|
|
35
|
+
iconBackgroundColor: 'color',
|
|
36
|
+
iconColor: 'color',
|
|
37
|
+
iconMarginBottom: 'size',
|
|
38
|
+
iconMarginLeft: 'size',
|
|
39
|
+
iconMarginRight: 'size',
|
|
40
|
+
iconMarginTop: 'size',
|
|
41
|
+
paddingBottom: 'size',
|
|
42
|
+
paddingLeft: 'size',
|
|
43
|
+
paddingRight: 'size',
|
|
44
|
+
paddingTop: 'size',
|
|
45
|
+
statusIcon: 'icon',
|
|
46
|
+
statusIconColor: 'color',
|
|
47
|
+
titleFontColor: 'color',
|
|
48
|
+
titleFontName: 'fontName',
|
|
49
|
+
titleFontSize: 'fontSize',
|
|
50
|
+
titleFontWeight: 'fontWeight',
|
|
51
|
+
titleLineHeight: 'lineHeight',
|
|
52
|
+
titleMarginBottom: 'size',
|
|
53
|
+
titleMarginLeft: 'size',
|
|
54
|
+
titleMarginRight: 'size',
|
|
55
|
+
titleMarginTop: 'size'
|
|
56
|
+
},
|
|
57
|
+
SplashButton: {
|
|
58
|
+
playIcon: 'icon',
|
|
59
|
+
playIconColor: 'color',
|
|
60
|
+
buttonContentBackground: 'color',
|
|
61
|
+
buttonContentChildrenBackground: 'color'
|
|
62
|
+
},
|
|
63
|
+
SplashButtonWithDetails: {
|
|
64
|
+
playIcon: 'icon',
|
|
65
|
+
playIconColor: 'color',
|
|
66
|
+
buttonContentBackground: 'color',
|
|
67
|
+
buttonContentChildrenBackground: 'color',
|
|
68
|
+
buttonBackground: 'color',
|
|
69
|
+
buttonBorderColor: 'color',
|
|
70
|
+
buttonRadius: 'radius',
|
|
71
|
+
buttonLeftPosition: 'size',
|
|
72
|
+
buttonBottomPosition: 'size',
|
|
73
|
+
buttonMinHeight: 'size',
|
|
74
|
+
buttonPaddingLeft: 'size',
|
|
75
|
+
labelFontName: 'fontName',
|
|
76
|
+
labelFontWeight: 'fontWeight',
|
|
77
|
+
buttonPaddingRight: 'size',
|
|
78
|
+
detailsContainerPadding: 'size',
|
|
79
|
+
playIconContainerBackground: 'color'
|
|
80
|
+
},
|
|
81
|
+
VideoPickerThumbnail: {
|
|
82
|
+
splashButtonRadius: 'radius',
|
|
83
|
+
borderWidth: 'border',
|
|
84
|
+
borderColor: 'color',
|
|
85
|
+
borderRadius: 'radius',
|
|
86
|
+
pressablePaddingVertical: 'size',
|
|
87
|
+
pressablePaddingHorizontal: 'size',
|
|
88
|
+
pressableBorderTopWidth: 'border',
|
|
89
|
+
pressableBorderTopColor: 'color',
|
|
90
|
+
pressablePaddingBottom: 'size',
|
|
91
|
+
titleColor: 'color',
|
|
92
|
+
subTitleColor: 'color',
|
|
93
|
+
outerBorderColor: 'color',
|
|
94
|
+
outerBorderGap: 'size',
|
|
95
|
+
outerBorderRadius: 'radius',
|
|
96
|
+
outerBorderWidth: 'border'
|
|
97
|
+
},
|
|
98
|
+
VideoPickerSlider: {
|
|
99
|
+
previousIcon: 'icon',
|
|
100
|
+
nextIcon: 'icon'
|
|
101
|
+
},
|
|
102
|
+
VideoPicker: {
|
|
103
|
+
framedMaxHeight: 'size',
|
|
104
|
+
framedContainerBackgroundColor: 'color',
|
|
105
|
+
framedContainerBorderWidth: 'border',
|
|
106
|
+
framedContainerBorderColor: 'color',
|
|
107
|
+
framedContainerBorderRadius: 'radius',
|
|
108
|
+
framedContainerPadding: 'size',
|
|
109
|
+
stackViewDividerColor: 'color'
|
|
110
|
+
},
|
|
111
|
+
Disclaimer: {
|
|
112
|
+
color: 'color',
|
|
113
|
+
fontName: 'fontName',
|
|
114
|
+
fontWeight: 'fontWeight',
|
|
115
|
+
fontSize: 'fontSize',
|
|
116
|
+
lineHeight: 'lineHeight'
|
|
117
|
+
},
|
|
118
|
+
// TO DO: Create a separate Cell schema that includes all cell-related tokens.
|
|
119
|
+
FileUpload: {
|
|
120
|
+
buttonBackgroundColor: 'color',
|
|
121
|
+
buttonBorderColor: 'color',
|
|
122
|
+
buttonBorderRadius: 'radius',
|
|
123
|
+
buttonBorderWidth: 'border',
|
|
124
|
+
buttonTextColor: 'color',
|
|
125
|
+
buttonHeight: 'size',
|
|
126
|
+
buttonMinWidth: 'size',
|
|
127
|
+
buttonWidth: 'size',
|
|
128
|
+
notificationBackgroundColor: 'color',
|
|
129
|
+
notificationBorderColor: 'color',
|
|
130
|
+
notificationBorderRadius: 'radius',
|
|
131
|
+
notificationTextColor: 'color',
|
|
132
|
+
notificationDismissButtonGap: 'size',
|
|
133
|
+
notificationDismissIcon: 'icon',
|
|
134
|
+
notificationDismissIconColor: 'color',
|
|
135
|
+
notificationIcon: 'icon',
|
|
136
|
+
notificationIconColor: 'color',
|
|
137
|
+
notificationIconGap: 'size',
|
|
138
|
+
notificationIconSize: 'size'
|
|
139
|
+
},
|
|
140
|
+
Table: {
|
|
141
|
+
rowHoverBackgroundColor: 'color',
|
|
142
|
+
cellMinWidth: 'size',
|
|
143
|
+
tablePaddingBottom: 'size',
|
|
144
|
+
cellBoxShadowColor: 'color',
|
|
145
|
+
// sharedStyles, box-shadow
|
|
146
|
+
cellBackground: 'color',
|
|
147
|
+
display: 'display',
|
|
148
|
+
cellStickyShadow: 'shadow',
|
|
149
|
+
cellPaddingTop: 'size',
|
|
150
|
+
// sharedStyles padding.
|
|
151
|
+
cellPaddingRight: 'size',
|
|
152
|
+
cellPaddingLeft: 'size',
|
|
153
|
+
cellPaddingBottom: 'size',
|
|
154
|
+
fontWeight: 'fontWeight',
|
|
155
|
+
fontName: 'fontName',
|
|
156
|
+
fontSize: 'fontSize',
|
|
157
|
+
lineHeight: 'lineHeight',
|
|
158
|
+
stickyBackgroundColor: 'color',
|
|
159
|
+
fontColor: 'color',
|
|
160
|
+
borderColor: 'color',
|
|
161
|
+
borderWidth: 'border'
|
|
162
|
+
},
|
|
163
|
+
Image: {
|
|
164
|
+
borderRadius: 'radius'
|
|
165
|
+
},
|
|
166
|
+
Spinner: {
|
|
167
|
+
fullScreenOverLayBackground: 'color',
|
|
168
|
+
size: 'size',
|
|
169
|
+
thickness: 'border'
|
|
170
|
+
},
|
|
171
|
+
Status: {
|
|
172
|
+
backgroundColor: 'color',
|
|
173
|
+
backgroundGradient: 'gradient',
|
|
174
|
+
borderColor: 'color',
|
|
175
|
+
borderRadius: 'radius',
|
|
176
|
+
borderWidth: 'border',
|
|
177
|
+
fontName: 'fontName',
|
|
178
|
+
fontSize: 'fontSize',
|
|
179
|
+
fontWeight: 'fontWeight',
|
|
180
|
+
icon: 'icon',
|
|
181
|
+
iconColor: 'color',
|
|
182
|
+
iconGradient: 'gradient',
|
|
183
|
+
marginLeft: 'size',
|
|
184
|
+
paddingBottom: 'size',
|
|
185
|
+
paddingLeft: 'size',
|
|
186
|
+
paddingRight: 'size',
|
|
187
|
+
paddingTop: 'size',
|
|
188
|
+
textColor: 'color',
|
|
189
|
+
textLineHeight: 'lineHeight',
|
|
190
|
+
iconSize: 'size',
|
|
191
|
+
iconPaddingTop: 'size'
|
|
192
|
+
},
|
|
193
|
+
Video: {
|
|
194
|
+
borderColor: 'color',
|
|
195
|
+
pauseIcon: 'icon',
|
|
196
|
+
replayIcon: 'icon',
|
|
197
|
+
playIcon: 'icon'
|
|
198
|
+
},
|
|
199
|
+
VideoMiddleControlButton: {
|
|
200
|
+
width: 'size',
|
|
201
|
+
height: 'size',
|
|
202
|
+
background: 'color',
|
|
203
|
+
iconColor: 'color'
|
|
204
|
+
},
|
|
205
|
+
VideoControlBar: {
|
|
206
|
+
paddingTop: 'size',
|
|
207
|
+
paddingBottom: 'size',
|
|
208
|
+
paddingLeft: 'size',
|
|
209
|
+
paddingRight: 'size',
|
|
210
|
+
height: 'size',
|
|
211
|
+
menuBottom: 'size',
|
|
212
|
+
menuRight: 'size',
|
|
213
|
+
menuMarginLeft: 'size',
|
|
214
|
+
captionsIcon: 'icon',
|
|
215
|
+
settingsIcon: 'icon',
|
|
216
|
+
minimizeIcon: 'icon',
|
|
217
|
+
maximizeIcon: 'icon'
|
|
218
|
+
},
|
|
219
|
+
VideoButton: {
|
|
220
|
+
color: 'color'
|
|
221
|
+
},
|
|
222
|
+
VideoMenu: {
|
|
223
|
+
padding: 'size',
|
|
224
|
+
background: 'color',
|
|
225
|
+
checkMarkWidth: 'size',
|
|
226
|
+
checkMarkHeight: 'size',
|
|
227
|
+
checkMarkSelectedColor: 'color',
|
|
228
|
+
checkMarkHoverColor: 'color',
|
|
229
|
+
checkMarkFocusColor: 'color',
|
|
230
|
+
checkMarkUnselectedColor: 'color',
|
|
231
|
+
checkMarkIcon: 'icon'
|
|
232
|
+
},
|
|
233
|
+
VideoProgressBar: {
|
|
234
|
+
thumbHeight: 'size',
|
|
235
|
+
thumbWidth: 'size',
|
|
236
|
+
thumbBackground: 'color',
|
|
237
|
+
timestampMarginLeft: 'size',
|
|
238
|
+
timestampMarginRight: 'size',
|
|
239
|
+
remainingTimestampMarginLeft: 'size',
|
|
240
|
+
remainingTimestampMarginRight: 'size',
|
|
241
|
+
trackGradientStart: 'color',
|
|
242
|
+
trackGradientEnd: 'color',
|
|
243
|
+
rangeBackground: 'color'
|
|
244
|
+
},
|
|
245
|
+
VideoVolumeSlider: {
|
|
246
|
+
marginLeft: 'size',
|
|
247
|
+
marginRight: 'size',
|
|
248
|
+
thumbHeight: 'size',
|
|
249
|
+
thumbWidth: 'size',
|
|
250
|
+
thumbBackground: 'color',
|
|
251
|
+
trackGradientStart: 'color',
|
|
252
|
+
trackGradientEnd: 'color',
|
|
253
|
+
rangeBackground: 'color',
|
|
254
|
+
mutedIcon: 'icon',
|
|
255
|
+
unmutedIcon: 'icon'
|
|
256
|
+
},
|
|
257
|
+
Callout: {
|
|
258
|
+
background: 'color',
|
|
259
|
+
gap: 'size',
|
|
260
|
+
borderRadius: 'size',
|
|
261
|
+
paddingLeft: 'size',
|
|
262
|
+
paddingRight: 'size',
|
|
263
|
+
paddingTop: 'size',
|
|
264
|
+
paddingBottom: 'size',
|
|
265
|
+
color: 'color'
|
|
266
|
+
},
|
|
267
|
+
FootnoteLink: {
|
|
268
|
+
lineHeight: 'lineHeight',
|
|
269
|
+
paddingLeft: 'size',
|
|
270
|
+
paddingRight: 'size',
|
|
271
|
+
color: 'color',
|
|
272
|
+
fontName: 'fontName',
|
|
273
|
+
fontWeight: 'fontWeight',
|
|
274
|
+
fontSize: 'fontSize'
|
|
275
|
+
},
|
|
276
|
+
WaffleGrid: {
|
|
277
|
+
rowBorderWidth: 'border',
|
|
278
|
+
itemBorderColor: 'color',
|
|
279
|
+
itemPadding: 'size',
|
|
280
|
+
rowSize: 'integer'
|
|
281
|
+
},
|
|
282
|
+
QuantitySelector: {
|
|
283
|
+
inputBorderColor: 'color',
|
|
284
|
+
inputBackgroundColor: 'color',
|
|
285
|
+
inputBorderWidth: 'border',
|
|
286
|
+
padding: 'size',
|
|
287
|
+
paddingLeft: 'size',
|
|
288
|
+
paddingRight: 'size',
|
|
289
|
+
paddingTop: 'size',
|
|
290
|
+
paddingBottom: 'size',
|
|
291
|
+
textColor: 'color',
|
|
292
|
+
inputWidth: 'size',
|
|
293
|
+
lineHeight: 'lineHeight',
|
|
294
|
+
fontSize: 'fontSize'
|
|
295
|
+
},
|
|
296
|
+
QuantitySelectorSideButton: {
|
|
297
|
+
borderRadius: 'radius',
|
|
298
|
+
borderTopLeftRadius: 'radius',
|
|
299
|
+
borderTopRightRadius: 'radius',
|
|
300
|
+
borderBottomLeftRadius: 'radius',
|
|
301
|
+
borderBottomRightRadius: 'radius',
|
|
302
|
+
borderColor: 'color',
|
|
303
|
+
borderWidth: 'border',
|
|
304
|
+
borderLeftWidth: 'border',
|
|
305
|
+
borderRightWidth: 'border',
|
|
306
|
+
borderTopWidth: 'border',
|
|
307
|
+
borderBottomWidth: 'border',
|
|
308
|
+
padding: 'size',
|
|
309
|
+
paddingLeft: 'size',
|
|
310
|
+
paddingRight: 'size',
|
|
311
|
+
paddingTop: 'size',
|
|
312
|
+
paddingBottom: 'size',
|
|
313
|
+
iconColor: 'color',
|
|
314
|
+
iconSize: 'size',
|
|
315
|
+
icon: 'icon',
|
|
316
|
+
backgroundColor: 'color'
|
|
317
|
+
},
|
|
318
|
+
Footnote: {
|
|
319
|
+
footnoteBackground: 'color',
|
|
320
|
+
footnoteBorderTopSizeMd: 'border',
|
|
321
|
+
footnoteBorderColorMd: 'color',
|
|
322
|
+
headerMargin: 'size',
|
|
323
|
+
footnoteBodyBackground: 'color',
|
|
324
|
+
footnoteBodyPaddingLeft: 'size',
|
|
325
|
+
footnoteBodyPaddingRight: 'size',
|
|
326
|
+
footnoteBodyPaddingTop: 'size',
|
|
327
|
+
footnoteBodyPaddingBottom: 'size',
|
|
328
|
+
footnoteHeaderPaddingLeft: 'size',
|
|
329
|
+
footnoteHeaderPaddingRight: 'size',
|
|
330
|
+
footnoteHeaderPaddingTop: 'size',
|
|
331
|
+
footnoteHeaderPaddingBottom: 'size',
|
|
332
|
+
listPaddingLeft: 'size',
|
|
333
|
+
listItemMarkerFontSize: 'size',
|
|
334
|
+
listItemMarkerLineHeight: 'lineHeight',
|
|
335
|
+
headerLineHeight: 'lineHeight',
|
|
336
|
+
headerFontSize: 'size',
|
|
337
|
+
headerFontName: 'fontName',
|
|
338
|
+
headerFontWeight: 'fontWeight',
|
|
339
|
+
listItemColor: 'color',
|
|
340
|
+
listItemFontSize: 'size',
|
|
341
|
+
listItemLineHeight: 'lineHeight',
|
|
342
|
+
listItemPaddingLeft: 'size',
|
|
343
|
+
listItemFontName: 'fontName',
|
|
344
|
+
listItemFontWeight: 'fontWeight',
|
|
345
|
+
closeButtonBorderSize: 'border',
|
|
346
|
+
closeButtonBorderColor: 'color',
|
|
347
|
+
closeButtonBackgroundColor: 'color',
|
|
348
|
+
closeButtonHeight: 'size',
|
|
349
|
+
closeButtonMarginTop: 'size',
|
|
350
|
+
closeButtonMarginLeft: 'size',
|
|
351
|
+
closeButtonMarginRight: 'size',
|
|
352
|
+
closeButtonMarginBottom: 'size',
|
|
353
|
+
closeButtonWidth: 'size',
|
|
354
|
+
closeButtonIconSize: 'size',
|
|
355
|
+
closeIcon: 'icon'
|
|
356
|
+
},
|
|
357
|
+
// Speical note: The reasoning behind having duplicate fontName/fontWeight tokens is due to the validation of themes, You'll recieve an error when trying to adjust 'fontWeight' without a paired 'fontName' token.
|
|
358
|
+
PriceLockup: {
|
|
359
|
+
fontName: 'fontName',
|
|
360
|
+
fontWeight: 'fontWeight',
|
|
361
|
+
footnoteMarginTop: 'size',
|
|
362
|
+
footnoteGap: 'size',
|
|
363
|
+
bottomTextMarginTop: 'size',
|
|
364
|
+
priceMarginBottom: 'size',
|
|
365
|
+
bottomLinksMarginLeft: 'size',
|
|
366
|
+
topTextMarginBottom: 'size',
|
|
367
|
+
strikeThroughHeight: 'size',
|
|
368
|
+
strikeThroughColor: 'color',
|
|
369
|
+
fontColor: 'color',
|
|
370
|
+
dividerColor: 'color',
|
|
371
|
+
topTextFontSize: 'fontSize',
|
|
372
|
+
strikeThroughPosition: 'size',
|
|
373
|
+
topTextLineHeight: 'lineHeight',
|
|
374
|
+
currencySymbolFontSize: 'fontSize',
|
|
375
|
+
currencySymbolLineHeight: 'lineHeight',
|
|
376
|
+
currencySymbolFontName: 'fontName',
|
|
377
|
+
currencySymbolFontWeight: 'fontWeight',
|
|
378
|
+
currencySymbolPaddingTop: 'size',
|
|
379
|
+
amountFontSize: 'fontSize',
|
|
380
|
+
amountLineHeight: 'lineHeight',
|
|
381
|
+
amountLetterSpacing: 'letterSpacing',
|
|
382
|
+
amountFontWeight: 'fontWeight',
|
|
383
|
+
amountFontName: 'fontName',
|
|
384
|
+
centsFontSize: 'fontSize',
|
|
385
|
+
centsLineHeight: 'lineHeight',
|
|
386
|
+
centsFontName: 'fontName',
|
|
387
|
+
centsFontWeight: 'fontWeight',
|
|
388
|
+
centsPaddingTop: 'size',
|
|
389
|
+
topTextFontName: 'fontName',
|
|
390
|
+
topTextFontWeight: 'fontWeight',
|
|
391
|
+
rateFontSize: 'fontSize',
|
|
392
|
+
rateLineHeight: 'lineHeight',
|
|
393
|
+
rateFontName: 'fontName',
|
|
394
|
+
rateFontWeight: 'fontWeight',
|
|
395
|
+
bottomTextFontSize: 'fontSize',
|
|
396
|
+
bottomTextLineHeight: 'lineHeight',
|
|
397
|
+
footnoteLinkColor: 'color',
|
|
398
|
+
footnoteLinkFontName: 'fontName',
|
|
399
|
+
footnoteLinkFontWeight: 'fontWeight',
|
|
400
|
+
footnoteLinkFontSize: 'fontSize',
|
|
401
|
+
footnoteLinkLineHeight: 'lineHeight',
|
|
402
|
+
alignItemsText: 'flexAlign'
|
|
403
|
+
},
|
|
404
|
+
ProductCard: {
|
|
405
|
+
borderStyle: 'borderStyle',
|
|
406
|
+
borderColor: 'color',
|
|
407
|
+
borderWidth: 'border',
|
|
408
|
+
borderRadius: 'radius',
|
|
409
|
+
paddingHorizontal: 'size',
|
|
410
|
+
paddingVertical: 'size',
|
|
411
|
+
selectedButtonIcon: 'icon'
|
|
412
|
+
},
|
|
413
|
+
ActivityIndicator: {
|
|
414
|
+
size: 'size',
|
|
415
|
+
thickness: 'border',
|
|
416
|
+
color: 'color'
|
|
417
|
+
},
|
|
418
|
+
Badge: {
|
|
419
|
+
fontWeight: 'fontWeight',
|
|
420
|
+
fontSize: 'fontSize',
|
|
421
|
+
fontName: 'fontName',
|
|
422
|
+
backgroundColor: 'color',
|
|
423
|
+
borderColor: 'color',
|
|
424
|
+
borderRadius: 'radius',
|
|
425
|
+
borderWidth: 'border',
|
|
426
|
+
color: 'color',
|
|
427
|
+
gradient: 'gradient',
|
|
428
|
+
paddingLeft: 'size',
|
|
429
|
+
paddingRight: 'size',
|
|
430
|
+
paddingTop: 'size',
|
|
431
|
+
paddingBottom: 'size'
|
|
432
|
+
},
|
|
433
|
+
BlockQuote: {
|
|
434
|
+
color: 'color',
|
|
435
|
+
backgroundGradient: 'gradient',
|
|
436
|
+
paddingLeft: 'size',
|
|
437
|
+
paddingRight: 'size',
|
|
438
|
+
paddingTop: 'size',
|
|
439
|
+
paddingBottom: 'size',
|
|
440
|
+
marginBottom: 'size',
|
|
441
|
+
width: 'size',
|
|
442
|
+
titleHeadingFontSize: 'fontSize',
|
|
443
|
+
titleHeadingFontName: 'fontName',
|
|
444
|
+
titleHeadingFontWeight: 'fontWeight',
|
|
445
|
+
titleHeadingLineHeight: 'lineHeight',
|
|
446
|
+
titleFontSize: 'fontSize',
|
|
447
|
+
titleFontName: 'fontName',
|
|
448
|
+
titleFontWeight: 'fontWeight',
|
|
449
|
+
titleLineHeight: 'lineHeight',
|
|
450
|
+
linkFontSize: 'fontSize',
|
|
451
|
+
linkFontName: 'fontName',
|
|
452
|
+
linkFontWeight: 'fontWeight',
|
|
453
|
+
linkLineHeight: 'lineHeight'
|
|
454
|
+
},
|
|
455
|
+
Box: {
|
|
456
|
+
backgroundColor: 'color',
|
|
457
|
+
gradient: 'gradient',
|
|
458
|
+
borderWidth: 'border',
|
|
459
|
+
borderColor: 'color',
|
|
460
|
+
borderTopLeftRadius: 'radius',
|
|
461
|
+
borderTopRightRadius: 'radius',
|
|
462
|
+
borderBottomLeftRadius: 'radius',
|
|
463
|
+
borderBottomRightRadius: 'radius'
|
|
464
|
+
},
|
|
465
|
+
Button: {
|
|
466
|
+
borderColor: 'color',
|
|
467
|
+
borderWidth: 'border',
|
|
468
|
+
borderRadius: 'radius',
|
|
469
|
+
shadow: 'shadow',
|
|
470
|
+
fontSize: 'fontSize',
|
|
471
|
+
color: 'color',
|
|
472
|
+
lineHeight: 'lineHeight',
|
|
473
|
+
textAlign: 'flexJustifyContent',
|
|
474
|
+
fontName: 'fontName',
|
|
475
|
+
fontWeight: 'fontWeight',
|
|
476
|
+
backgroundColor: 'color',
|
|
477
|
+
opacity: 'opacity',
|
|
478
|
+
paddingLeft: 'size',
|
|
479
|
+
paddingRight: 'size',
|
|
480
|
+
paddingTop: 'size',
|
|
481
|
+
paddingBottom: 'size',
|
|
482
|
+
width: 'size',
|
|
483
|
+
height: 'size',
|
|
484
|
+
minWidth: 'size',
|
|
485
|
+
iconSize: 'size',
|
|
486
|
+
iconSpace: 'integer',
|
|
487
|
+
icon: 'icon',
|
|
488
|
+
borderLeftWidth: 'border',
|
|
489
|
+
borderRightWidth: 'border',
|
|
490
|
+
borderTopWidth: 'border',
|
|
491
|
+
borderBottomWidth: 'border',
|
|
492
|
+
outerBorderColor: 'color',
|
|
493
|
+
outerBorderWidth: 'border',
|
|
494
|
+
outerBorderGap: 'size',
|
|
495
|
+
outerBackgroundColor: 'color',
|
|
496
|
+
textLine: 'textLine',
|
|
497
|
+
textLineStyle: 'textLineStyle'
|
|
498
|
+
},
|
|
499
|
+
ButtonDropdown: {
|
|
500
|
+
icon: 'icon',
|
|
501
|
+
iconPosition: 'position',
|
|
502
|
+
iconSpace: 'integer',
|
|
503
|
+
iconSize: 'size',
|
|
504
|
+
iconColor: 'color',
|
|
505
|
+
iconPadding: 'size',
|
|
506
|
+
iconAlignSelf: 'flexAlign',
|
|
507
|
+
iconTranslateX: 'size',
|
|
508
|
+
iconTranslateY: 'size',
|
|
509
|
+
iconBackground: 'color',
|
|
510
|
+
iconBorderRadius: 'radius',
|
|
511
|
+
// These are duplicated Button tokens. TODO: consider token sets to reduce duplication.
|
|
512
|
+
// https://github.com/telus/universal-design-system/issues/782
|
|
513
|
+
borderColor: 'color',
|
|
514
|
+
borderWidth: 'border',
|
|
515
|
+
borderRadius: 'radius',
|
|
516
|
+
shadow: 'shadow',
|
|
517
|
+
fontSize: 'fontSize',
|
|
518
|
+
color: 'color',
|
|
519
|
+
dividerColor: 'color',
|
|
520
|
+
subtitleColor: 'color',
|
|
521
|
+
lineHeight: 'lineHeight',
|
|
522
|
+
textAlign: 'flexJustifyContent',
|
|
523
|
+
alignSelf: 'flexAlign',
|
|
524
|
+
fontName: 'fontName',
|
|
525
|
+
fontWeight: 'fontWeight',
|
|
526
|
+
backgroundColor: 'color',
|
|
527
|
+
opacity: 'opacity',
|
|
528
|
+
paddingLeft: 'size',
|
|
529
|
+
paddingRight: 'size',
|
|
530
|
+
paddingTop: 'size',
|
|
531
|
+
paddingBottom: 'size',
|
|
532
|
+
width: 'size',
|
|
533
|
+
minWidth: 'size',
|
|
534
|
+
outerBorderColor: 'color',
|
|
535
|
+
outerBorderWidth: 'border',
|
|
536
|
+
outerBorderGap: 'size',
|
|
537
|
+
outerBackgroundColor: 'color'
|
|
538
|
+
},
|
|
539
|
+
ButtonGroup: {
|
|
540
|
+
space: 'integer',
|
|
541
|
+
fieldSpace: 'integer',
|
|
542
|
+
direction: 'direction',
|
|
543
|
+
alignItems: 'flexAlign',
|
|
544
|
+
justifyContent: 'flexJustifyContent',
|
|
545
|
+
flexGrow: 'integer',
|
|
546
|
+
flexShrink: 'integer',
|
|
547
|
+
backgroundColor: 'color',
|
|
548
|
+
borderRadius: 'radius',
|
|
549
|
+
padding: 'size',
|
|
550
|
+
gap: 'size'
|
|
551
|
+
},
|
|
552
|
+
ButtonGroupItem: {
|
|
553
|
+
// These are duplicated Button tokens. TODO: consider token sets to reduce duplication.
|
|
554
|
+
// https://github.com/telus/universal-design-system/issues/782
|
|
555
|
+
borderColor: 'color',
|
|
556
|
+
borderWidth: 'border',
|
|
557
|
+
borderRadius: 'radius',
|
|
558
|
+
shadow: 'shadow',
|
|
559
|
+
fontSize: 'fontSize',
|
|
560
|
+
color: 'color',
|
|
561
|
+
lineHeight: 'lineHeight',
|
|
562
|
+
textAlign: 'flexJustifyContent',
|
|
563
|
+
alignSelf: 'flexAlign',
|
|
564
|
+
fontName: 'fontName',
|
|
565
|
+
fontWeight: 'fontWeight',
|
|
566
|
+
backgroundColor: 'color',
|
|
567
|
+
opacity: 'opacity',
|
|
568
|
+
paddingLeft: 'size',
|
|
569
|
+
paddingRight: 'size',
|
|
570
|
+
paddingTop: 'size',
|
|
571
|
+
paddingBottom: 'size',
|
|
572
|
+
height: 'size',
|
|
573
|
+
width: 'size',
|
|
574
|
+
minWidth: 'size',
|
|
575
|
+
outerBorderColor: 'color',
|
|
576
|
+
outerBorderWidth: 'border',
|
|
577
|
+
outerBorderGap: 'size',
|
|
578
|
+
outerBackgroundColor: 'color',
|
|
579
|
+
iconSpace: 'integer',
|
|
580
|
+
iconSize: 'size'
|
|
581
|
+
},
|
|
582
|
+
Card: {
|
|
583
|
+
flex: 'integer',
|
|
584
|
+
backgroundColor: 'color',
|
|
585
|
+
borderColor: 'color',
|
|
586
|
+
gradient: 'gradient',
|
|
587
|
+
backgroundGradient: 'gradient',
|
|
588
|
+
borderRadius: 'radius',
|
|
589
|
+
borderWidth: 'border',
|
|
590
|
+
paddingBottom: 'size',
|
|
591
|
+
paddingLeft: 'size',
|
|
592
|
+
paddingRight: 'size',
|
|
593
|
+
paddingTop: 'size',
|
|
594
|
+
minWidth: 'size',
|
|
595
|
+
shadow: 'shadow',
|
|
596
|
+
contentAlignItems: 'flexAlign',
|
|
597
|
+
contentJustifyContent: 'flexJustifyContent',
|
|
598
|
+
contentFlexGrow: 'integer',
|
|
599
|
+
contentFlexShrink: 'integer',
|
|
600
|
+
// Tokens of the checkbox or radio input
|
|
601
|
+
inputBackgroundColor: 'color',
|
|
602
|
+
iconBackgroundColor: 'color',
|
|
603
|
+
icon: 'icon',
|
|
604
|
+
iconColor: 'color',
|
|
605
|
+
inputBorderRadius: 'radius',
|
|
606
|
+
inputHeight: 'size',
|
|
607
|
+
inputWidth: 'size',
|
|
608
|
+
iconSize: 'size',
|
|
609
|
+
inputShadow: 'shadow',
|
|
610
|
+
inputBorderWidth: 'border',
|
|
611
|
+
inputBorderColor: 'color',
|
|
612
|
+
// tokens for Autocomplete
|
|
613
|
+
maxHeight: 'size',
|
|
614
|
+
overflowY: 'overflow'
|
|
615
|
+
},
|
|
616
|
+
CardGroup: {
|
|
617
|
+
// Layout
|
|
618
|
+
direction: 'direction',
|
|
619
|
+
space: 'integer',
|
|
620
|
+
// Fieldset
|
|
621
|
+
fieldSpace: 'integer',
|
|
622
|
+
// Border for error feedback
|
|
623
|
+
showIcon: 'show',
|
|
624
|
+
outlineWidth: 'border',
|
|
625
|
+
borderBottomLeftRadius: 'radius',
|
|
626
|
+
borderBottomRightRadius: 'radius',
|
|
627
|
+
borderTopLeftRadius: 'radius',
|
|
628
|
+
borderTopRightRadius: 'radius',
|
|
629
|
+
outlineOffset: 'size',
|
|
630
|
+
// For padding of the card
|
|
631
|
+
paddingTop: 'size',
|
|
632
|
+
paddingBottom: 'size',
|
|
633
|
+
paddingLeft: 'size',
|
|
634
|
+
paddingRight: 'size'
|
|
635
|
+
},
|
|
636
|
+
PreviewCard: {
|
|
637
|
+
flex: 'integer',
|
|
638
|
+
outerBorderColor: 'color',
|
|
639
|
+
outerBorderGap: 'size',
|
|
640
|
+
outerBorderWidth: 'size',
|
|
641
|
+
backgroundColor: 'color',
|
|
642
|
+
separatorColor: 'color',
|
|
643
|
+
borderColor: 'color',
|
|
644
|
+
borderRadius: 'radius',
|
|
645
|
+
borderWidth: 'border',
|
|
646
|
+
paddingBottom: 'size',
|
|
647
|
+
paddingLeft: 'size',
|
|
648
|
+
paddingRight: 'size',
|
|
649
|
+
paddingTop: 'size'
|
|
650
|
+
},
|
|
651
|
+
Carousel: {
|
|
652
|
+
backgroundColor: 'color',
|
|
653
|
+
nextIcon: 'icon',
|
|
654
|
+
playIcon: 'icon',
|
|
655
|
+
pauseIcon: 'icon',
|
|
656
|
+
previousIcon: 'icon',
|
|
657
|
+
iconBackgroundColor: 'color',
|
|
658
|
+
showPreviousNextNavigation: 'show',
|
|
659
|
+
showPanelNavigation: 'show',
|
|
660
|
+
showPanelTabs: 'show',
|
|
661
|
+
spaceBetweenSlideAndPreviousNextNavigation: 'size',
|
|
662
|
+
spaceBetweenSlideAndPanelNavigation: 'size',
|
|
663
|
+
stepTrackerCurrentBackgroundColor: 'color'
|
|
664
|
+
},
|
|
665
|
+
CarouselThumbnail: {
|
|
666
|
+
alignItems: 'flexAlign',
|
|
667
|
+
borderColor: 'color',
|
|
668
|
+
borderRadius: 'radius',
|
|
669
|
+
borderWidth: 'border',
|
|
670
|
+
containerPaddingTop: 'size',
|
|
671
|
+
margin: 'size',
|
|
672
|
+
padding: 'size',
|
|
673
|
+
selectedBorderColor: 'color',
|
|
674
|
+
selectedBorderWidth: 'border',
|
|
675
|
+
size: 'size'
|
|
676
|
+
},
|
|
677
|
+
CarouselTabsPanelItem: {
|
|
678
|
+
paddingLeft: 'size',
|
|
679
|
+
paddingRight: 'size',
|
|
680
|
+
paddingTop: 'size',
|
|
681
|
+
paddingBottom: 'size',
|
|
682
|
+
borderBottomColor: 'color',
|
|
683
|
+
borderBottomWidth: 'border',
|
|
684
|
+
borderBottomStyle: 'borderStyle',
|
|
685
|
+
flex: 'integer',
|
|
686
|
+
alignItems: 'flexAlign',
|
|
687
|
+
justifyContent: 'flexJustifyContent',
|
|
688
|
+
color: 'color',
|
|
689
|
+
fontSize: 'fontSize',
|
|
690
|
+
fontScaleCap: 'fontSize',
|
|
691
|
+
lineHeight: 'lineHeight',
|
|
692
|
+
letterSpacing: 'letterSpacing',
|
|
693
|
+
fontWeight: 'fontWeight',
|
|
694
|
+
fontName: 'fontName'
|
|
695
|
+
},
|
|
696
|
+
Checkbox: {
|
|
697
|
+
containerBackgroundColor: 'color',
|
|
698
|
+
feedbackMarginBottom: 'size',
|
|
699
|
+
feedbackMarginTop: 'size',
|
|
700
|
+
feedbackPosition: 'position',
|
|
701
|
+
icon: 'icon',
|
|
702
|
+
iconBackgroundColor: 'color',
|
|
703
|
+
iconColor: 'color',
|
|
704
|
+
iconSize: 'size',
|
|
705
|
+
inputBackgroundColor: 'color',
|
|
706
|
+
inputBorderColor: 'color',
|
|
707
|
+
inputBorderRadius: 'radius',
|
|
708
|
+
inputBorderWidth: 'border',
|
|
709
|
+
inputHeight: 'size',
|
|
710
|
+
inputOutlineColor: 'color',
|
|
711
|
+
inputOutlineWidth: 'border',
|
|
712
|
+
inputShadow: 'shadow',
|
|
713
|
+
inputWidth: 'size',
|
|
714
|
+
labelColor: 'color',
|
|
715
|
+
labelFontName: 'fontName',
|
|
716
|
+
labelFontSize: 'fontSize',
|
|
717
|
+
labelFontWeight: 'fontWeight',
|
|
718
|
+
labelLineHeight: 'lineHeight',
|
|
719
|
+
labelMarginLeft: 'size',
|
|
720
|
+
inputOutlineOffset: 'size'
|
|
721
|
+
},
|
|
722
|
+
CheckboxCard: {
|
|
723
|
+
// Outer border
|
|
724
|
+
outerBorderColor: 'color',
|
|
725
|
+
outerBorderWidth: 'border',
|
|
726
|
+
outerBorderGap: 'size',
|
|
727
|
+
// Card
|
|
728
|
+
flex: 'integer',
|
|
729
|
+
backgroundColor: 'color',
|
|
730
|
+
borderColor: 'color',
|
|
731
|
+
borderRadius: 'radius',
|
|
732
|
+
borderWidth: 'border',
|
|
733
|
+
paddingBottom: 'size',
|
|
734
|
+
paddingLeft: 'size',
|
|
735
|
+
paddingRight: 'size',
|
|
736
|
+
paddingTop: 'size',
|
|
737
|
+
minWidth: 'size',
|
|
738
|
+
shadow: 'shadow',
|
|
739
|
+
contentAlignItems: 'flexAlign',
|
|
740
|
+
contentJustifyContent: 'flexJustifyContent',
|
|
741
|
+
contentFlexGrow: 'integer',
|
|
742
|
+
contentFlexShrink: 'integer',
|
|
743
|
+
// Checkbox
|
|
744
|
+
checkboxCheckedBackgroundColor: 'color',
|
|
745
|
+
checkboxCheckedSize: 'size',
|
|
746
|
+
checkboxInputBackgroundColor: 'color',
|
|
747
|
+
checkboxInputBorderColor: 'color',
|
|
748
|
+
checkboxInputBorderWidth: 'border',
|
|
749
|
+
checkboxInputOutlineColor: 'color',
|
|
750
|
+
checkboxInputOutlineWidth: 'border',
|
|
751
|
+
checkboxInputSize: 'size',
|
|
752
|
+
checkboxOuterBorderColor: 'color',
|
|
753
|
+
checkboxOuterBorderWidth: 'border',
|
|
754
|
+
checkboxOuterBorderGap: 'size',
|
|
755
|
+
// Title text - duplicates Typography variant { size: 'h3' }
|
|
756
|
+
fontSize: 'fontSize',
|
|
757
|
+
fontName: 'fontName',
|
|
758
|
+
lineHeight: 'lineHeight',
|
|
759
|
+
color: 'color',
|
|
760
|
+
letterSpacing: 'letterSpacing',
|
|
761
|
+
textTransform: 'textTransform',
|
|
762
|
+
fontWeight: 'fontWeight',
|
|
763
|
+
// Spacing
|
|
764
|
+
checkboxSpace: 'integer',
|
|
765
|
+
contentSpace: 'integer'
|
|
766
|
+
},
|
|
767
|
+
CheckboxCardGroup: {
|
|
768
|
+
// Layout
|
|
769
|
+
direction: 'direction',
|
|
770
|
+
space: 'integer',
|
|
771
|
+
// Fieldset
|
|
772
|
+
fieldSpace: 'integer',
|
|
773
|
+
// Border for error feedback
|
|
774
|
+
showIcon: 'show',
|
|
775
|
+
outlineWidth: 'border',
|
|
776
|
+
borderBottomLeftRadius: 'radius',
|
|
777
|
+
borderBottomRightRadius: 'radius',
|
|
778
|
+
borderTopLeftRadius: 'radius',
|
|
779
|
+
borderTopRightRadius: 'radius',
|
|
780
|
+
outlineOffset: 'size'
|
|
781
|
+
},
|
|
782
|
+
ChevronLink: {
|
|
783
|
+
fontSize: 'fontSize',
|
|
784
|
+
color: 'color',
|
|
785
|
+
outerBorderColor: 'color',
|
|
786
|
+
leftIcon: 'icon',
|
|
787
|
+
rightIcon: 'icon',
|
|
788
|
+
iconDisplace: 'size',
|
|
789
|
+
iconSize: 'size',
|
|
790
|
+
iconSpace: 'integer',
|
|
791
|
+
textLine: 'textLine',
|
|
792
|
+
blockLineHeight: 'lineHeight'
|
|
793
|
+
},
|
|
794
|
+
CheckboxGroup: {
|
|
795
|
+
space: 'integer',
|
|
796
|
+
fieldSpace: 'integer',
|
|
797
|
+
showIcon: 'show',
|
|
798
|
+
outlineWidth: 'border',
|
|
799
|
+
borderBottomLeftRadius: 'radius',
|
|
800
|
+
borderBottomRightRadius: 'radius',
|
|
801
|
+
borderTopLeftRadius: 'radius',
|
|
802
|
+
borderTopRightRadius: 'radius',
|
|
803
|
+
outlineOffset: 'size'
|
|
804
|
+
},
|
|
805
|
+
ColourToggle: {
|
|
806
|
+
space: 'integer',
|
|
807
|
+
shadow: 'shadow',
|
|
808
|
+
// general Border Bubble
|
|
809
|
+
borderColor: 'color',
|
|
810
|
+
borderWidth: 'border',
|
|
811
|
+
borderRadius: 'radius',
|
|
812
|
+
// Border Bubble
|
|
813
|
+
bubbleBorderColor: 'color',
|
|
814
|
+
bubbleBorderWidth: 'border',
|
|
815
|
+
bubbleBorderRadius: 'radius',
|
|
816
|
+
// Outer Colour Bubble
|
|
817
|
+
outerBubbleContentAlignItems: 'flexAlign',
|
|
818
|
+
outerBubbleJustifyContent: 'flexJustifyContent',
|
|
819
|
+
outerBubbleHeight: 'size',
|
|
820
|
+
outerBubbleWidth: 'size',
|
|
821
|
+
// Inner Colour Bubble
|
|
822
|
+
innerBubbleHeight: 'size',
|
|
823
|
+
innerBubbleWidth: 'size',
|
|
824
|
+
innerBubbleBorderRadius: 'radius'
|
|
825
|
+
},
|
|
826
|
+
Divider: {
|
|
827
|
+
width: 'size',
|
|
828
|
+
color: 'color'
|
|
829
|
+
},
|
|
830
|
+
DownloadApp: {
|
|
831
|
+
borderColor: 'color',
|
|
832
|
+
borderWidth: 'border',
|
|
833
|
+
borderGap: 'size',
|
|
834
|
+
borderRadius: 'radius',
|
|
835
|
+
padding: 'size',
|
|
836
|
+
androidENIcon: 'icon',
|
|
837
|
+
androidFRIcon: 'icon',
|
|
838
|
+
iosENIcon: 'icon',
|
|
839
|
+
iosFRIcon: 'icon'
|
|
840
|
+
},
|
|
841
|
+
DatePicker: {
|
|
842
|
+
calendarBackgroundColor: 'color',
|
|
843
|
+
calendarDayBlockedCalendarHoverBackground: 'color',
|
|
844
|
+
calendarDayBlockedCalendarHoverColor: 'color',
|
|
845
|
+
calendarDayDefaultBackgroundColor: 'color',
|
|
846
|
+
calendarDayDefaultBorder: 'border',
|
|
847
|
+
calendarDayDefaultBorderColor: 'color',
|
|
848
|
+
calendarDayDefaultCalendarDaySelectedHoverBackground: 'color',
|
|
849
|
+
calendarDayDefaultCalendarDaySelectedHoverBeforeBackground: 'color',
|
|
850
|
+
calendarDayDefaultCalendarDaySelectedHoverColor: 'color',
|
|
851
|
+
calendarDayDefaultColor: 'color',
|
|
852
|
+
calendarDayDefaultFontName: 'fontName',
|
|
853
|
+
calendarDayDefaultFontSize: 'fontSize',
|
|
854
|
+
calendarDayDefaultFontWeight: 'fontWeight',
|
|
855
|
+
calendarDaySelectedFocusBeforeBackground: 'color',
|
|
856
|
+
calendarDaySelectedHoverBackground: 'color',
|
|
857
|
+
calendarDaySelectedHoverBeforeBackground: 'color',
|
|
858
|
+
calendarDaySelectedHoverBeforeBorderColor: 'color',
|
|
859
|
+
calendarDaySelectedHoverBorderColor: 'color',
|
|
860
|
+
calendarDaySelectedHoverColor: 'color',
|
|
861
|
+
calendarDaySelectedDisabledBackground: 'color',
|
|
862
|
+
calendarDaySelectedDisabledColor: 'color',
|
|
863
|
+
calendarDaySelectedDisabledContentBackgroundColor: 'color',
|
|
864
|
+
calendarMonthCaptionColor: 'color',
|
|
865
|
+
calendarMonthCaptionFontName: 'fontName',
|
|
866
|
+
calendarMonthCaptionFontSize: 'fontSize',
|
|
867
|
+
calendarMonthCaptionFontWeight: 'fontWeight',
|
|
868
|
+
calendarMonthCaptionLineHeight: 'lineHeight',
|
|
869
|
+
calendarMonthCaptionPaddingBottom: 'size',
|
|
870
|
+
dateInputStrokeColor: 'color',
|
|
871
|
+
dayPickerWeekHeaderColor: 'color',
|
|
872
|
+
dayPickerWeekHeaderFontName: 'fontName',
|
|
873
|
+
dayPickerWeekHeaderFontWeight: 'fontWeight',
|
|
874
|
+
dayPickerWeekHeaderLineHeight: 'lineHeight',
|
|
875
|
+
dayPickerWeekHeaderSmall: 'fontSize',
|
|
876
|
+
hiddenInputFieldContainerHeight: 'size',
|
|
877
|
+
hiddenInputFieldContainerWidth: 'size',
|
|
878
|
+
dayPickerNavigationButtonPadding: 'size',
|
|
879
|
+
invalidInputMixin: 'color',
|
|
880
|
+
nextIcon: 'icon',
|
|
881
|
+
previousIcon: 'icon',
|
|
882
|
+
singleDatePickerBorderColor: 'color',
|
|
883
|
+
singleDatePickerLeftRight: 'size',
|
|
884
|
+
singleDatePickerPaddingTopBottom: 'size',
|
|
885
|
+
singleDatePickerRadius: 'radius',
|
|
886
|
+
validInputMixin: 'color'
|
|
887
|
+
},
|
|
888
|
+
ExpandCollapse: {
|
|
889
|
+
borderColor: 'color',
|
|
890
|
+
borderWidth: 'border',
|
|
891
|
+
borderStyle: 'borderStyle'
|
|
892
|
+
},
|
|
893
|
+
ExpandCollapseMini: {
|
|
894
|
+
borderWidth: 'border'
|
|
895
|
+
},
|
|
896
|
+
ExpandCollapseControl: {
|
|
897
|
+
icon: 'icon',
|
|
898
|
+
iconColor: 'color',
|
|
899
|
+
iconSize: 'size',
|
|
900
|
+
iconGap: 'size',
|
|
901
|
+
iconPaddingTop: 'size',
|
|
902
|
+
iconPosition: 'position',
|
|
903
|
+
verticalAlign: 'verticalAlign',
|
|
904
|
+
justifyContent: 'flexJustifyContent',
|
|
905
|
+
paddingLeft: 'size',
|
|
906
|
+
paddingRight: 'size',
|
|
907
|
+
paddingTop: 'size',
|
|
908
|
+
paddingBottom: 'size',
|
|
909
|
+
borderWidth: 'border',
|
|
910
|
+
borderColor: 'color',
|
|
911
|
+
backgroundColor: 'color',
|
|
912
|
+
borderTopLeftRadius: 'radius',
|
|
913
|
+
borderBottomLeftRadius: 'radius',
|
|
914
|
+
borderTopRightRadius: 'radius',
|
|
915
|
+
borderBottomRightRadius: 'radius',
|
|
916
|
+
textLine: 'textLine'
|
|
917
|
+
},
|
|
918
|
+
ExpandCollapseMiniControl: {
|
|
919
|
+
size: 'size',
|
|
920
|
+
icon: 'icon',
|
|
921
|
+
iconColor: 'color',
|
|
922
|
+
iconSize: 'size',
|
|
923
|
+
iconGap: 'size',
|
|
924
|
+
color: 'color',
|
|
925
|
+
iconPaddingTop: 'size',
|
|
926
|
+
iconPosition: 'position',
|
|
927
|
+
verticalAlign: 'verticalAlign',
|
|
928
|
+
justifyContent: 'flexJustifyContent',
|
|
929
|
+
paddingLeft: 'size',
|
|
930
|
+
paddingRight: 'size',
|
|
931
|
+
paddingTop: 'size',
|
|
932
|
+
paddingBottom: 'size',
|
|
933
|
+
borderWidth: 'border',
|
|
934
|
+
borderColor: 'color',
|
|
935
|
+
textLine: 'textLine',
|
|
936
|
+
fontSize: 'fontSize',
|
|
937
|
+
lineHeight: 'lineHeight'
|
|
938
|
+
},
|
|
939
|
+
ExpandCollapsePanel: {
|
|
940
|
+
expandDuration: 'duration',
|
|
941
|
+
collapseDuration: 'duration',
|
|
942
|
+
contentPaddingLeft: 'size',
|
|
943
|
+
contentPaddingRight: 'size',
|
|
944
|
+
contentPaddingTop: 'size',
|
|
945
|
+
contentPaddingBottom: 'size',
|
|
946
|
+
marginBottom: 'size',
|
|
947
|
+
borderColor: 'color',
|
|
948
|
+
borderRadius: 'radius',
|
|
949
|
+
borderWidth: 'border',
|
|
950
|
+
expandDividerColor: 'color',
|
|
951
|
+
expandDividerWidth: 'size',
|
|
952
|
+
contentPanelBackgroundColor: 'color',
|
|
953
|
+
contentPanelPaddingLeft: 'size',
|
|
954
|
+
contentPanelPaddingRight: 'size',
|
|
955
|
+
contentPanelPaddingTop: 'size',
|
|
956
|
+
contentPanelPaddingBottom: 'size',
|
|
957
|
+
contentPanelBorderWidth: 'border',
|
|
958
|
+
contentPanelBorderColor: 'color',
|
|
959
|
+
contentPanelFontName: 'fontName',
|
|
960
|
+
contentPanelFontSize: 'fontSize',
|
|
961
|
+
contentPanelFontColor: 'color',
|
|
962
|
+
contentPanelFontWeight: 'fontWeight',
|
|
963
|
+
contentPanelLineHeight: 'lineHeight'
|
|
964
|
+
},
|
|
965
|
+
Feedback: {
|
|
966
|
+
backgroundColor: 'color',
|
|
967
|
+
borderColor: 'color',
|
|
968
|
+
borderWidth: 'border',
|
|
969
|
+
borderRadius: 'radius',
|
|
970
|
+
paddingTop: 'size',
|
|
971
|
+
paddingBottom: 'size',
|
|
972
|
+
paddingLeft: 'size',
|
|
973
|
+
paddingRight: 'size',
|
|
974
|
+
space: 'integer',
|
|
975
|
+
color: 'color',
|
|
976
|
+
fontName: 'fontName',
|
|
977
|
+
fontWeight: 'fontWeight',
|
|
978
|
+
lineHeight: 'lineHeight',
|
|
979
|
+
titleFontSize: 'fontSize',
|
|
980
|
+
contentFontSize: 'fontSize',
|
|
981
|
+
icon: 'icon',
|
|
982
|
+
iconSize: 'size',
|
|
983
|
+
iconColor: 'color',
|
|
984
|
+
iconGap: 'size'
|
|
985
|
+
},
|
|
986
|
+
Fieldset: {
|
|
987
|
+
outlineWidth: 'border',
|
|
988
|
+
outlineColor: 'color',
|
|
989
|
+
borderTopLeftRadius: 'radius',
|
|
990
|
+
borderTopRightRadius: 'radius',
|
|
991
|
+
borderBottomLeftRadius: 'radius',
|
|
992
|
+
borderBottomRightRadius: 'radius',
|
|
993
|
+
paddingBottom: 'size',
|
|
994
|
+
paddingTop: 'size',
|
|
995
|
+
paddingLeft: 'size',
|
|
996
|
+
paddingRight: 'size',
|
|
997
|
+
outlineOffset: 'size'
|
|
998
|
+
},
|
|
999
|
+
HorizontalScrollButton: {
|
|
1000
|
+
backgroundColor: 'color',
|
|
1001
|
+
borderRadius: 'radius',
|
|
1002
|
+
borderColor: 'color',
|
|
1003
|
+
borderWidth: 'border',
|
|
1004
|
+
iconColor: 'color',
|
|
1005
|
+
iconSize: 'size',
|
|
1006
|
+
iconScale: 'iconScale',
|
|
1007
|
+
iconTranslateX: 'size',
|
|
1008
|
+
iconTranslateY: 'size',
|
|
1009
|
+
outerBorderWidth: 'border',
|
|
1010
|
+
outerBorderColor: 'color',
|
|
1011
|
+
outerBorderGap: 'size',
|
|
1012
|
+
padding: 'size',
|
|
1013
|
+
shadow: 'shadow'
|
|
1014
|
+
},
|
|
1015
|
+
Icon: {
|
|
1016
|
+
size: 'size',
|
|
1017
|
+
color: 'color',
|
|
1018
|
+
backgroundColor: 'color',
|
|
1019
|
+
borderRadius: 'radius',
|
|
1020
|
+
padding: 'size',
|
|
1021
|
+
scale: 'integer',
|
|
1022
|
+
translateX: 'size',
|
|
1023
|
+
translateY: 'size',
|
|
1024
|
+
width: 'size',
|
|
1025
|
+
paddingTop: 'size'
|
|
1026
|
+
},
|
|
1027
|
+
InputLabel: {
|
|
1028
|
+
gap: 'size',
|
|
1029
|
+
color: 'color',
|
|
1030
|
+
fontName: 'fontName',
|
|
1031
|
+
fontWeight: 'fontWeight',
|
|
1032
|
+
fontSize: 'fontSize',
|
|
1033
|
+
lineHeight: 'lineHeight',
|
|
1034
|
+
hintColor: 'color',
|
|
1035
|
+
hintFontName: 'fontName',
|
|
1036
|
+
hintFontWeight: 'fontWeight',
|
|
1037
|
+
hintFontSize: 'fontSize',
|
|
1038
|
+
hintLineHeight: 'lineHeight'
|
|
1039
|
+
},
|
|
1040
|
+
InputSupports: {
|
|
1041
|
+
space: 'integer'
|
|
1042
|
+
},
|
|
1043
|
+
IconButton: {
|
|
1044
|
+
icon: 'icon',
|
|
1045
|
+
backgroundColor: 'color',
|
|
1046
|
+
borderRadius: 'radius',
|
|
1047
|
+
borderTopLeftRadius: 'radius',
|
|
1048
|
+
borderTopRightRadius: 'radius',
|
|
1049
|
+
borderBottomLeftRadius: 'radius',
|
|
1050
|
+
borderBottomRightRadius: 'radius',
|
|
1051
|
+
borderTopWidth: 'border',
|
|
1052
|
+
borderBottomWidth: 'border',
|
|
1053
|
+
borderLeftWidth: 'border',
|
|
1054
|
+
borderRightWidth: 'border',
|
|
1055
|
+
borderColor: 'color',
|
|
1056
|
+
borderWidth: 'border',
|
|
1057
|
+
outerBorderWidth: 'border',
|
|
1058
|
+
outerBorderColor: 'color',
|
|
1059
|
+
outerBorderGap: 'size',
|
|
1060
|
+
padding: 'size',
|
|
1061
|
+
shadow: 'shadow',
|
|
1062
|
+
iconColor: 'color',
|
|
1063
|
+
iconSize: 'size',
|
|
1064
|
+
iconScale: 'iconScale',
|
|
1065
|
+
iconTranslateX: 'size',
|
|
1066
|
+
iconTranslateY: 'size',
|
|
1067
|
+
height: 'size',
|
|
1068
|
+
width: 'size'
|
|
1069
|
+
},
|
|
1070
|
+
Link: {
|
|
1071
|
+
color: 'color',
|
|
1072
|
+
textLine: 'textLine',
|
|
1073
|
+
textLineStyle: 'textLineStyle',
|
|
1074
|
+
outerBorderColor: 'color',
|
|
1075
|
+
outerBorderWidth: 'border',
|
|
1076
|
+
outerBorderGap: 'size',
|
|
1077
|
+
outerBorderOutline: 'borderStyle',
|
|
1078
|
+
borderRadius: 'radius',
|
|
1079
|
+
blockFontName: 'fontName',
|
|
1080
|
+
blockFontWeight: 'fontWeight',
|
|
1081
|
+
blockFontSize: 'fontSize',
|
|
1082
|
+
blockLineHeight: 'lineHeight',
|
|
1083
|
+
icon: 'icon',
|
|
1084
|
+
iconSize: 'size',
|
|
1085
|
+
iconSpace: 'integer',
|
|
1086
|
+
iconTranslateX: 'size',
|
|
1087
|
+
iconTranslateY: 'size',
|
|
1088
|
+
alignSelf: 'flexAlign'
|
|
1089
|
+
},
|
|
1090
|
+
List: {
|
|
1091
|
+
iconMarginTop: 'size',
|
|
1092
|
+
itemFontWeight: 'fontWeight',
|
|
1093
|
+
itemFontSize: 'fontSize',
|
|
1094
|
+
itemLineHeight: 'lineHeight',
|
|
1095
|
+
itemFontName: 'fontName',
|
|
1096
|
+
interItemMargin: 'size',
|
|
1097
|
+
interItemMarginWithDivider: 'size',
|
|
1098
|
+
dividerColor: 'color',
|
|
1099
|
+
dividerSize: 'border',
|
|
1100
|
+
itemBulletContainerWidth: 'size',
|
|
1101
|
+
itemBulletContainerAlign: 'textAlign',
|
|
1102
|
+
itemBulletColor: 'color',
|
|
1103
|
+
itemTextColor: 'color',
|
|
1104
|
+
itemIconSize: 'size',
|
|
1105
|
+
itemIconColor: 'color',
|
|
1106
|
+
listGutter: 'size',
|
|
1107
|
+
bulletIcon: 'icon'
|
|
1108
|
+
},
|
|
1109
|
+
Listbox: {
|
|
1110
|
+
groupBorderRadius: 'radius',
|
|
1111
|
+
groupBorderWidth: 'border',
|
|
1112
|
+
groupFontSize: 'size',
|
|
1113
|
+
groupFontName: 'fontName',
|
|
1114
|
+
groupFontWeight: 'fontWeight',
|
|
1115
|
+
groupColor: 'color',
|
|
1116
|
+
groupBorderColor: 'color',
|
|
1117
|
+
groupBackgroundColor: 'color',
|
|
1118
|
+
groupPaddingTop: 'size',
|
|
1119
|
+
groupPaddingBottom: 'size',
|
|
1120
|
+
groupPaddingLeft: 'size',
|
|
1121
|
+
groupPaddingRight: 'size',
|
|
1122
|
+
groupIcon: 'icon',
|
|
1123
|
+
itemDisplay: 'show',
|
|
1124
|
+
itemFontName: 'fontName',
|
|
1125
|
+
itemFontWeight: 'fontWeight',
|
|
1126
|
+
itemFontSize: 'size',
|
|
1127
|
+
itemPaddingTop: 'size',
|
|
1128
|
+
itemPaddingBottom: 'size',
|
|
1129
|
+
itemPaddingLeft: 'size',
|
|
1130
|
+
itemPaddingRight: 'size',
|
|
1131
|
+
itemColor: 'color',
|
|
1132
|
+
itemBackgroundColor: 'color',
|
|
1133
|
+
itemBorderLeftColor: 'color',
|
|
1134
|
+
itemBorderLeftWidth: 'border',
|
|
1135
|
+
itemBorderWidth: 'border',
|
|
1136
|
+
itemTextDecoration: 'textLine',
|
|
1137
|
+
itemOutline: 'border',
|
|
1138
|
+
shadow: 'shadow',
|
|
1139
|
+
itemBorderRightColor: 'color',
|
|
1140
|
+
itemBorderBottomColor: 'color',
|
|
1141
|
+
itemBorderTopColor: 'color',
|
|
1142
|
+
itemBorderRightWidth: 'border',
|
|
1143
|
+
itemBorderBottomWidth: 'border',
|
|
1144
|
+
itemBorderTopWidth: 'border',
|
|
1145
|
+
itemBorderRadius: 'radius',
|
|
1146
|
+
minWidth: 'size',
|
|
1147
|
+
minHeight: 'size',
|
|
1148
|
+
itemHeight: 'size',
|
|
1149
|
+
groupHeight: 'size',
|
|
1150
|
+
lineHeight: 'lineHeight'
|
|
1151
|
+
},
|
|
1152
|
+
OrderedList: {
|
|
1153
|
+
headerFontWeight: 'fontWeight',
|
|
1154
|
+
headerFontName: 'fontName',
|
|
1155
|
+
itemMarginTop: 'size',
|
|
1156
|
+
itemPaddingTop: 'size',
|
|
1157
|
+
itemBulletWidth: 'size',
|
|
1158
|
+
itemBulletHeight: 'size',
|
|
1159
|
+
itemBulletTextAlign: 'textAlign',
|
|
1160
|
+
itemBulletContainerWidth: 'size',
|
|
1161
|
+
interItemMargin: 'size',
|
|
1162
|
+
listGutter: 'size',
|
|
1163
|
+
itemFontName: 'fontName',
|
|
1164
|
+
itemFontWeight: 'fontWeight',
|
|
1165
|
+
itemFontSize: 'fontSize',
|
|
1166
|
+
itemLineHeight: 'lineHeight',
|
|
1167
|
+
itemColor: 'color',
|
|
1168
|
+
itemTextColor: 'color'
|
|
1169
|
+
},
|
|
1170
|
+
Modal: {
|
|
1171
|
+
backdropColor: 'color',
|
|
1172
|
+
backdropOpacity: 'opacity',
|
|
1173
|
+
headingColor: 'color',
|
|
1174
|
+
cancelButtonColor: 'color',
|
|
1175
|
+
subHeadingMarginTop: 'size',
|
|
1176
|
+
headingPaddingRight: 'size',
|
|
1177
|
+
headingPaddingTop: 'size',
|
|
1178
|
+
headingBorderBottomWidth: 'size',
|
|
1179
|
+
height: 'size',
|
|
1180
|
+
maxWidth: 'size',
|
|
1181
|
+
containerPaddingLeft: 'size',
|
|
1182
|
+
containerPaddingRight: 'size',
|
|
1183
|
+
containerPaddingTop: 'size',
|
|
1184
|
+
containerPaddingBottom: 'size',
|
|
1185
|
+
contentPaddingTop: 'size',
|
|
1186
|
+
contentPaddingBottom: 'size',
|
|
1187
|
+
backgroundColor: 'color',
|
|
1188
|
+
borderRadius: 'radius',
|
|
1189
|
+
borderColor: 'color',
|
|
1190
|
+
borderWidth: 'size',
|
|
1191
|
+
shadow: 'shadow',
|
|
1192
|
+
paddingLeft: 'size',
|
|
1193
|
+
paddingRight: 'size',
|
|
1194
|
+
paddingTop: 'size',
|
|
1195
|
+
paddingBottom: 'size',
|
|
1196
|
+
marginLeft: 'size',
|
|
1197
|
+
marginRight: 'size',
|
|
1198
|
+
gap: 'size',
|
|
1199
|
+
closeIcon: 'icon',
|
|
1200
|
+
closeIconColor: 'color',
|
|
1201
|
+
closeIconSize: 'size',
|
|
1202
|
+
closePadding: 'size',
|
|
1203
|
+
direction: 'direction',
|
|
1204
|
+
footerTopWidth: 'size'
|
|
1205
|
+
},
|
|
1206
|
+
MultiSelectFilter: {
|
|
1207
|
+
buttonDirection: 'direction',
|
|
1208
|
+
buttonIconSize: 'size',
|
|
1209
|
+
buttonIconPadding: 'size',
|
|
1210
|
+
buttonBorderColor: 'color',
|
|
1211
|
+
contentMarginBottom: 'size',
|
|
1212
|
+
contentMarginLeft: 'size',
|
|
1213
|
+
contentMarginRight: 'size',
|
|
1214
|
+
contentMarginTop: 'size',
|
|
1215
|
+
contentPaddingLeft: 'size',
|
|
1216
|
+
contentPaddingRight: 'size',
|
|
1217
|
+
headerFontColor: 'color',
|
|
1218
|
+
headerFontName: 'fontName',
|
|
1219
|
+
headerFontSize: 'fontSize',
|
|
1220
|
+
headerFontWeight: 'fontWeight',
|
|
1221
|
+
headerLineHeight: 'lineHeight',
|
|
1222
|
+
labelFontSize: 'fontSize',
|
|
1223
|
+
labelFontName: 'fontName',
|
|
1224
|
+
labelFontWeight: 'fontWeight',
|
|
1225
|
+
labelLineHeight: 'lineHeight',
|
|
1226
|
+
labelColor: 'color',
|
|
1227
|
+
labelPaddingLeft: 'size',
|
|
1228
|
+
labelPaddingRight: 'size',
|
|
1229
|
+
labelPaddingTop: 'size',
|
|
1230
|
+
labelPaddingBottom: 'size',
|
|
1231
|
+
maxHeightSize: 'size',
|
|
1232
|
+
maxWidthSize: 'size',
|
|
1233
|
+
minHeight: 'size',
|
|
1234
|
+
minWidth: 'size',
|
|
1235
|
+
subHeaderFontName: 'fontName',
|
|
1236
|
+
subHeaderFontSize: 'fontSize',
|
|
1237
|
+
subHeaderFontWeight: 'fontWeight',
|
|
1238
|
+
subHeaderLineHeight: 'lineHeight'
|
|
1239
|
+
},
|
|
1240
|
+
NavigationBar: {
|
|
1241
|
+
alignSelf: 'flexAlign',
|
|
1242
|
+
backgroundColor: 'color',
|
|
1243
|
+
borderColor: 'color',
|
|
1244
|
+
borderRadius: 'radius',
|
|
1245
|
+
borderWidth: 'border',
|
|
1246
|
+
color: 'color',
|
|
1247
|
+
fontName: 'fontName',
|
|
1248
|
+
fontSize: 'fontSize',
|
|
1249
|
+
fontWeight: 'fontWeight',
|
|
1250
|
+
lineHeight: 'lineHeight',
|
|
1251
|
+
minWidth: 'size',
|
|
1252
|
+
opacity: 'opacity',
|
|
1253
|
+
outerBackgroundColor: 'color',
|
|
1254
|
+
outerBorderColor: 'color',
|
|
1255
|
+
outerBorderGap: 'size',
|
|
1256
|
+
outerBorderWidth: 'border',
|
|
1257
|
+
paddingBottom: 'size',
|
|
1258
|
+
paddingLeft: 'size',
|
|
1259
|
+
paddingRight: 'size',
|
|
1260
|
+
paddingTop: 'size',
|
|
1261
|
+
shadow: 'shadow',
|
|
1262
|
+
textAlign: 'flexJustifyContent',
|
|
1263
|
+
width: 'size',
|
|
1264
|
+
icoMenu: 'icon'
|
|
1265
|
+
},
|
|
1266
|
+
Notification: {
|
|
1267
|
+
backgroundColor: 'color',
|
|
1268
|
+
borderBottomWidth: 'border',
|
|
1269
|
+
borderTopWidth: 'border',
|
|
1270
|
+
borderLeftWidth: 'border',
|
|
1271
|
+
borderRightWidth: 'border',
|
|
1272
|
+
borderColor: 'color',
|
|
1273
|
+
borderRadius: 'radius',
|
|
1274
|
+
paddingTop: 'size',
|
|
1275
|
+
paddingBottom: 'size',
|
|
1276
|
+
paddingLeft: 'size',
|
|
1277
|
+
paddingRight: 'size',
|
|
1278
|
+
color: 'color',
|
|
1279
|
+
fontSize: 'fontSize',
|
|
1280
|
+
lineHeight: 'lineHeight',
|
|
1281
|
+
fontName: 'fontName',
|
|
1282
|
+
fontWeight: 'fontWeight',
|
|
1283
|
+
icon: 'icon',
|
|
1284
|
+
iconColor: 'color',
|
|
1285
|
+
iconSize: 'size',
|
|
1286
|
+
iconGap: 'size',
|
|
1287
|
+
dismissIcon: 'icon',
|
|
1288
|
+
dismissIconColor: 'color',
|
|
1289
|
+
dismissButtonGap: 'size',
|
|
1290
|
+
justifyContent: 'flexJustifyContent',
|
|
1291
|
+
containerPaddingLeft: 'size',
|
|
1292
|
+
containerPaddingRight: 'size'
|
|
1293
|
+
},
|
|
1294
|
+
Pagination: {
|
|
1295
|
+
gap: 'size',
|
|
1296
|
+
truncateAbove: 'integer',
|
|
1297
|
+
color: 'color',
|
|
1298
|
+
fontName: 'fontName',
|
|
1299
|
+
fontWeight: 'fontWeight',
|
|
1300
|
+
fontSize: 'fontSize',
|
|
1301
|
+
lineHeight: 'lineHeight',
|
|
1302
|
+
borderLeftWidth: 'border',
|
|
1303
|
+
borderRightWidth: 'border',
|
|
1304
|
+
borderTopWidth: 'border',
|
|
1305
|
+
borderBottomWidth: 'border',
|
|
1306
|
+
borderColor: 'color',
|
|
1307
|
+
ellipsisPadding: 'size',
|
|
1308
|
+
ellipsisBorderRightWidth: 'border',
|
|
1309
|
+
ellipsisBorderLeftWidth: 'border',
|
|
1310
|
+
ellipsisBorderTopWidth: 'border',
|
|
1311
|
+
ellipsisBorderBottomWidth: 'border',
|
|
1312
|
+
ellipsisHeight: 'size'
|
|
1313
|
+
},
|
|
1314
|
+
PaginationPageButton: {
|
|
1315
|
+
borderColor: 'color',
|
|
1316
|
+
borderLeftWidth: 'border',
|
|
1317
|
+
borderRightWidth: 'border',
|
|
1318
|
+
borderTopWidth: 'border',
|
|
1319
|
+
borderBottomWidth: 'border',
|
|
1320
|
+
borderRadius: 'radius',
|
|
1321
|
+
backgroundColor: 'color',
|
|
1322
|
+
height: 'size',
|
|
1323
|
+
paddingLeft: 'size',
|
|
1324
|
+
paddingRight: 'size',
|
|
1325
|
+
paddingTop: 'size',
|
|
1326
|
+
paddingBottom: 'size',
|
|
1327
|
+
width: 'size',
|
|
1328
|
+
outerBorderColor: 'color',
|
|
1329
|
+
outerBorderWidth: 'border',
|
|
1330
|
+
outerBorderGap: 'size',
|
|
1331
|
+
color: 'color',
|
|
1332
|
+
fontName: 'fontName',
|
|
1333
|
+
fontWeight: 'fontWeight',
|
|
1334
|
+
fontSize: 'fontSize',
|
|
1335
|
+
lineHeight: 'lineHeight',
|
|
1336
|
+
textAlign: 'flexJustifyContent',
|
|
1337
|
+
textLine: 'textLine'
|
|
1338
|
+
},
|
|
1339
|
+
PaginationSideButton: {
|
|
1340
|
+
borderColor: 'color',
|
|
1341
|
+
borderLeftWidth: 'border',
|
|
1342
|
+
borderRightWidth: 'border',
|
|
1343
|
+
borderTopWidth: 'border',
|
|
1344
|
+
borderBottomWidth: 'border',
|
|
1345
|
+
borderRadius: 'radius',
|
|
1346
|
+
backgroundColor: 'color',
|
|
1347
|
+
paddingLeft: 'size',
|
|
1348
|
+
paddingRight: 'size',
|
|
1349
|
+
paddingTop: 'size',
|
|
1350
|
+
paddingBottom: 'size',
|
|
1351
|
+
outerBorderColor: 'color',
|
|
1352
|
+
outerBorderWidth: 'border',
|
|
1353
|
+
color: 'color',
|
|
1354
|
+
fontName: 'fontName',
|
|
1355
|
+
fontWeight: 'fontWeight',
|
|
1356
|
+
fontSize: 'fontSize',
|
|
1357
|
+
lineHeight: 'lineHeight',
|
|
1358
|
+
textLine: 'textLine',
|
|
1359
|
+
icon: 'icon',
|
|
1360
|
+
iconSize: 'size',
|
|
1361
|
+
iconDisplace: 'size',
|
|
1362
|
+
width: 'size',
|
|
1363
|
+
textAlign: 'flexJustifyContent',
|
|
1364
|
+
displayLabel: 'show',
|
|
1365
|
+
height: 'size'
|
|
1366
|
+
},
|
|
1367
|
+
Progress: {
|
|
1368
|
+
backgroundColor: 'color',
|
|
1369
|
+
borderWidth: 'border',
|
|
1370
|
+
borderColor: 'color',
|
|
1371
|
+
borderRadius: 'radius',
|
|
1372
|
+
height: 'size',
|
|
1373
|
+
shadow: 'shadow'
|
|
1374
|
+
},
|
|
1375
|
+
ProgressBar: {
|
|
1376
|
+
backgroundColor: 'color',
|
|
1377
|
+
borderRadius: 'radius',
|
|
1378
|
+
gradient: 'gradient',
|
|
1379
|
+
outlineColor: 'color',
|
|
1380
|
+
outlineWidth: 'border',
|
|
1381
|
+
shadow: 'shadow'
|
|
1382
|
+
},
|
|
1383
|
+
QuickLinks: {
|
|
1384
|
+
// Sets which subcomponents are rendered
|
|
1385
|
+
list: 'show',
|
|
1386
|
+
card: 'show',
|
|
1387
|
+
dividers: 'show',
|
|
1388
|
+
stackSpace: 'integer',
|
|
1389
|
+
stackGap: 'integer',
|
|
1390
|
+
stackJustify: 'flexJustifyContent'
|
|
1391
|
+
},
|
|
1392
|
+
QuickLinksCard: {
|
|
1393
|
+
// Card tokens
|
|
1394
|
+
flex: 'integer',
|
|
1395
|
+
backgroundColor: 'color',
|
|
1396
|
+
borderColor: 'color',
|
|
1397
|
+
borderRadius: 'radius',
|
|
1398
|
+
borderWidth: 'border',
|
|
1399
|
+
paddingBottom: 'size',
|
|
1400
|
+
paddingLeft: 'size',
|
|
1401
|
+
paddingRight: 'size',
|
|
1402
|
+
paddingTop: 'size',
|
|
1403
|
+
minWidth: 'size',
|
|
1404
|
+
shadow: 'shadow'
|
|
1405
|
+
},
|
|
1406
|
+
QuickLinksList: {
|
|
1407
|
+
// List tokens
|
|
1408
|
+
dividerColor: 'color',
|
|
1409
|
+
dividerSize: 'border',
|
|
1410
|
+
iconMarginTop: 'size',
|
|
1411
|
+
interItemMargin: 'size',
|
|
1412
|
+
interItemMarginWithDivider: 'size',
|
|
1413
|
+
itemBulletColor: 'color',
|
|
1414
|
+
itemBulletContainerAlign: 'textAlign',
|
|
1415
|
+
itemBulletContainerWidth: 'size',
|
|
1416
|
+
itemBulletHeight: 'size',
|
|
1417
|
+
itemBulletWidth: 'size',
|
|
1418
|
+
itemFontColor: 'color',
|
|
1419
|
+
itemFontName: 'fontName',
|
|
1420
|
+
itemFontSize: 'fontSize',
|
|
1421
|
+
itemFontWeight: 'fontWeight',
|
|
1422
|
+
itemIconColor: 'color',
|
|
1423
|
+
itemIconSize: 'size',
|
|
1424
|
+
itemLineHeight: 'lineHeight',
|
|
1425
|
+
listGutter: 'size',
|
|
1426
|
+
itemUnderline: 'textLine',
|
|
1427
|
+
// PressableListItemBase tokens
|
|
1428
|
+
backgroundColor: 'color',
|
|
1429
|
+
paddingLeft: 'size',
|
|
1430
|
+
paddingRight: 'size',
|
|
1431
|
+
paddingTop: 'size',
|
|
1432
|
+
paddingBottom: 'size'
|
|
1433
|
+
},
|
|
1434
|
+
QuickLinksButton: {
|
|
1435
|
+
// Button tokens
|
|
1436
|
+
borderColor: 'color',
|
|
1437
|
+
borderWidth: 'border',
|
|
1438
|
+
borderRadius: 'radius',
|
|
1439
|
+
shadow: 'shadow',
|
|
1440
|
+
fontSize: 'fontSize',
|
|
1441
|
+
color: 'color',
|
|
1442
|
+
lineHeight: 'lineHeight',
|
|
1443
|
+
textAlign: 'flexJustifyContent',
|
|
1444
|
+
alignSelf: 'flexAlign',
|
|
1445
|
+
fontName: 'fontName',
|
|
1446
|
+
fontWeight: 'fontWeight',
|
|
1447
|
+
backgroundColor: 'color',
|
|
1448
|
+
opacity: 'opacity',
|
|
1449
|
+
paddingLeft: 'size',
|
|
1450
|
+
paddingRight: 'size',
|
|
1451
|
+
paddingTop: 'size',
|
|
1452
|
+
paddingBottom: 'size',
|
|
1453
|
+
width: 'size',
|
|
1454
|
+
minWidth: 'size',
|
|
1455
|
+
outerBorderColor: 'color',
|
|
1456
|
+
outerBorderWidth: 'border',
|
|
1457
|
+
outerBorderGap: 'size',
|
|
1458
|
+
outerBackgroundColor: 'color',
|
|
1459
|
+
// Icon & IconText
|
|
1460
|
+
icon: 'icon',
|
|
1461
|
+
iconColor: 'color',
|
|
1462
|
+
iconSize: 'size',
|
|
1463
|
+
iconSpace: 'integer'
|
|
1464
|
+
},
|
|
1465
|
+
QuickLinksFeature: {
|
|
1466
|
+
stackSpace: 'integer',
|
|
1467
|
+
stackGap: 'integer',
|
|
1468
|
+
stackJustify: 'flexJustifyContent'
|
|
1469
|
+
},
|
|
1470
|
+
QuickLinksFeatureItem: {
|
|
1471
|
+
color: 'color',
|
|
1472
|
+
textLine: 'textLine',
|
|
1473
|
+
imageDimension: 'size',
|
|
1474
|
+
contentMaxDimension: 'size',
|
|
1475
|
+
contentDirection: 'direction',
|
|
1476
|
+
contentSpace: 'integer',
|
|
1477
|
+
contentAlignItems: 'flexAlign',
|
|
1478
|
+
gap: 'size',
|
|
1479
|
+
textAlign: 'textAlign',
|
|
1480
|
+
outerBorderColor: 'color',
|
|
1481
|
+
fontWeight: 'fontWeight',
|
|
1482
|
+
fontName: 'fontName',
|
|
1483
|
+
fontSize: 'fontSize'
|
|
1484
|
+
},
|
|
1485
|
+
Radio: {
|
|
1486
|
+
checkedBackgroundColor: 'color',
|
|
1487
|
+
checkedSize: 'size',
|
|
1488
|
+
containerBackgroundColor: 'color',
|
|
1489
|
+
containerBorderRadius: 'radius',
|
|
1490
|
+
containerOpacity: 'opacity',
|
|
1491
|
+
containerPaddingBottom: 'size',
|
|
1492
|
+
containerPaddingLeft: 'size',
|
|
1493
|
+
containerPaddingRight: 'size',
|
|
1494
|
+
containerPaddingTop: 'size',
|
|
1495
|
+
containerShadow: 'shadow',
|
|
1496
|
+
descriptionFontSize: 'fontSize',
|
|
1497
|
+
descriptionLineHeight: 'lineHeight',
|
|
1498
|
+
descriptionMarginLeft: 'size',
|
|
1499
|
+
descriptionFontName: 'fontName',
|
|
1500
|
+
descriptionFontWeight: 'fontWeight',
|
|
1501
|
+
inputBackgroundColor: 'color',
|
|
1502
|
+
inputBorderColor: 'color',
|
|
1503
|
+
inputBorderWidth: 'border',
|
|
1504
|
+
inputOutlineColor: 'color',
|
|
1505
|
+
inputOutlineWidth: 'border',
|
|
1506
|
+
inputSize: 'size',
|
|
1507
|
+
outerBorderGap: 'size',
|
|
1508
|
+
outerBorderWidth: 'border',
|
|
1509
|
+
outerBorderColor: 'color',
|
|
1510
|
+
labelColor: 'color',
|
|
1511
|
+
labelFontName: 'fontName',
|
|
1512
|
+
labelFontSize: 'fontSize',
|
|
1513
|
+
labelFontWeight: 'fontWeight',
|
|
1514
|
+
labelLineHeight: 'lineHeight',
|
|
1515
|
+
labelMarginLeft: 'size',
|
|
1516
|
+
// Used for card group
|
|
1517
|
+
icon: 'icon',
|
|
1518
|
+
iconBackgroundColor: 'color',
|
|
1519
|
+
iconColor: 'color'
|
|
1520
|
+
},
|
|
1521
|
+
RadioCard: {
|
|
1522
|
+
// Outer border
|
|
1523
|
+
outerBorderColor: 'color',
|
|
1524
|
+
outerBorderWidth: 'border',
|
|
1525
|
+
outerBorderGap: 'size',
|
|
1526
|
+
// Card
|
|
1527
|
+
flex: 'integer',
|
|
1528
|
+
backgroundColor: 'color',
|
|
1529
|
+
borderColor: 'color',
|
|
1530
|
+
borderRadius: 'radius',
|
|
1531
|
+
borderWidth: 'border',
|
|
1532
|
+
paddingBottom: 'size',
|
|
1533
|
+
paddingLeft: 'size',
|
|
1534
|
+
paddingRight: 'size',
|
|
1535
|
+
paddingTop: 'size',
|
|
1536
|
+
minWidth: 'size',
|
|
1537
|
+
shadow: 'shadow',
|
|
1538
|
+
contentAlignItems: 'flexAlign',
|
|
1539
|
+
contentJustifyContent: 'flexJustifyContent',
|
|
1540
|
+
contentFlexGrow: 'integer',
|
|
1541
|
+
contentFlexShrink: 'integer',
|
|
1542
|
+
// RadioButton
|
|
1543
|
+
radioCheckedBackgroundColor: 'color',
|
|
1544
|
+
radioCheckedSize: 'size',
|
|
1545
|
+
radioInputBackgroundColor: 'color',
|
|
1546
|
+
radioInputBorderColor: 'color',
|
|
1547
|
+
radioInputBorderWidth: 'border',
|
|
1548
|
+
radioInputOutlineColor: 'color',
|
|
1549
|
+
radioInputOutlineWidth: 'border',
|
|
1550
|
+
radioInputSize: 'size',
|
|
1551
|
+
radioOuterBorderColor: 'color',
|
|
1552
|
+
radioOuterBorderWidth: 'border',
|
|
1553
|
+
radioOuterBorderGap: 'size',
|
|
1554
|
+
// Title text - duplicates Typography variant { size: 'h3' }
|
|
1555
|
+
fontSize: 'fontSize',
|
|
1556
|
+
fontName: 'fontName',
|
|
1557
|
+
lineHeight: 'lineHeight',
|
|
1558
|
+
color: 'color',
|
|
1559
|
+
letterSpacing: 'letterSpacing',
|
|
1560
|
+
textTransform: 'textTransform',
|
|
1561
|
+
fontWeight: 'fontWeight',
|
|
1562
|
+
// Spacing
|
|
1563
|
+
radioSpace: 'integer',
|
|
1564
|
+
contentSpace: 'integer'
|
|
1565
|
+
},
|
|
1566
|
+
RadioCardGroup: {
|
|
1567
|
+
// Layout
|
|
1568
|
+
direction: 'direction',
|
|
1569
|
+
space: 'integer',
|
|
1570
|
+
// Fieldset
|
|
1571
|
+
fieldSpace: 'integer',
|
|
1572
|
+
// Border for error feedback
|
|
1573
|
+
showIcon: 'show',
|
|
1574
|
+
outlineWidth: 'border',
|
|
1575
|
+
borderBottomLeftRadius: 'radius',
|
|
1576
|
+
borderBottomRightRadius: 'radius',
|
|
1577
|
+
borderTopLeftRadius: 'radius',
|
|
1578
|
+
borderTopRightRadius: 'radius',
|
|
1579
|
+
outlineOffset: 'size'
|
|
1580
|
+
},
|
|
1581
|
+
RadioGroup: {
|
|
1582
|
+
space: 'integer',
|
|
1583
|
+
fieldSpace: 'integer',
|
|
1584
|
+
showIcon: 'show',
|
|
1585
|
+
outlineWidth: 'border',
|
|
1586
|
+
borderBottomLeftRadius: 'radius',
|
|
1587
|
+
borderBottomRightRadius: 'radius',
|
|
1588
|
+
borderTopLeftRadius: 'radius',
|
|
1589
|
+
borderTopRightRadius: 'radius',
|
|
1590
|
+
outlineOffset: 'size'
|
|
1591
|
+
},
|
|
1592
|
+
Ribbon: {
|
|
1593
|
+
paddingLeft: 'size',
|
|
1594
|
+
paddingRight: 'size',
|
|
1595
|
+
paddingTop: 'size',
|
|
1596
|
+
paddingBottom: 'size',
|
|
1597
|
+
borderRadius: 'size',
|
|
1598
|
+
backgroundColor: 'color',
|
|
1599
|
+
boxShadowPaddingLeft: 'size',
|
|
1600
|
+
boxShadowPaddingTop: 'size',
|
|
1601
|
+
boxShadowPaddingRight: 'size',
|
|
1602
|
+
boxShadowPaddingBottom: 'size',
|
|
1603
|
+
boxShadowColor: 'color',
|
|
1604
|
+
curveAfterWidth: 'size',
|
|
1605
|
+
curveMarginTop: 'size',
|
|
1606
|
+
curveAfterRadius: 'size',
|
|
1607
|
+
curveBackgroundColor: 'color',
|
|
1608
|
+
curveHeight: 'size',
|
|
1609
|
+
curveWidth: 'size',
|
|
1610
|
+
curveAfterBackgroundColor: 'color',
|
|
1611
|
+
curveAfterHeight: 'size',
|
|
1612
|
+
gradient: 'gradient',
|
|
1613
|
+
fontColor: 'color',
|
|
1614
|
+
borderRadiusBottomLeft: 'size',
|
|
1615
|
+
borderRadiusBottomRight: 'size',
|
|
1616
|
+
fontName: 'fontName',
|
|
1617
|
+
fontWeight: 'fontWeight',
|
|
1618
|
+
fontSize: 'fontSize',
|
|
1619
|
+
lineHeight: 'lineHeight'
|
|
1620
|
+
},
|
|
1621
|
+
Search: {
|
|
1622
|
+
backgroundColor: 'color',
|
|
1623
|
+
color: 'color',
|
|
1624
|
+
borderWidth: 'border',
|
|
1625
|
+
borderColor: 'color',
|
|
1626
|
+
borderRadius: 'radius',
|
|
1627
|
+
paddingTop: 'size',
|
|
1628
|
+
paddingBottom: 'size',
|
|
1629
|
+
paddingLeft: 'size',
|
|
1630
|
+
paddingRight: 'size',
|
|
1631
|
+
outerBackgroundColor: 'color',
|
|
1632
|
+
outerBorderWidth: 'border',
|
|
1633
|
+
outerBorderColor: 'color',
|
|
1634
|
+
outerBorderRadius: 'radius',
|
|
1635
|
+
fontName: 'fontName',
|
|
1636
|
+
fontWeight: 'fontWeight',
|
|
1637
|
+
fontSize: 'fontSize',
|
|
1638
|
+
lineHeight: 'lineHeight',
|
|
1639
|
+
placeholderColor: 'color',
|
|
1640
|
+
buttonsGap: 'size',
|
|
1641
|
+
clearButtonIcon: 'icon',
|
|
1642
|
+
submitButtonIcon: 'icon',
|
|
1643
|
+
iconLeftColor: 'color',
|
|
1644
|
+
iconLeftSize: 'size',
|
|
1645
|
+
mobileBorderWidth: 'border'
|
|
1646
|
+
},
|
|
1647
|
+
SearchButton: {
|
|
1648
|
+
borderColor: 'color',
|
|
1649
|
+
borderWidth: 'border',
|
|
1650
|
+
borderRadius: 'radius',
|
|
1651
|
+
backgroundColor: 'color',
|
|
1652
|
+
mobileBackgroundColor: 'color',
|
|
1653
|
+
opacity: 'opacity',
|
|
1654
|
+
paddingLeft: 'size',
|
|
1655
|
+
paddingRight: 'size',
|
|
1656
|
+
paddingBottom: 'size',
|
|
1657
|
+
paddingTop: 'size',
|
|
1658
|
+
iconSize: 'size',
|
|
1659
|
+
iconColor: 'color',
|
|
1660
|
+
shadow: 'shadow'
|
|
1661
|
+
},
|
|
1662
|
+
Select: {
|
|
1663
|
+
backgroundColor: 'color',
|
|
1664
|
+
color: 'color',
|
|
1665
|
+
borderWidth: 'border',
|
|
1666
|
+
borderColor: 'color',
|
|
1667
|
+
borderRadius: 'radius',
|
|
1668
|
+
paddingTop: 'size',
|
|
1669
|
+
paddingBottom: 'size',
|
|
1670
|
+
paddingLeft: 'size',
|
|
1671
|
+
paddingRight: 'size',
|
|
1672
|
+
height: 'size',
|
|
1673
|
+
outerBackgroundColor: 'color',
|
|
1674
|
+
outerBorderWidth: 'border',
|
|
1675
|
+
outerBorderColor: 'color',
|
|
1676
|
+
fontSize: 'fontSize',
|
|
1677
|
+
fontName: 'fontName',
|
|
1678
|
+
fontWeight: 'fontWeight',
|
|
1679
|
+
icon: 'icon',
|
|
1680
|
+
iconSize: 'size',
|
|
1681
|
+
iconColor: 'color',
|
|
1682
|
+
validationIcon: 'icon',
|
|
1683
|
+
validationIconSize: 'size',
|
|
1684
|
+
validationIconColor: 'color',
|
|
1685
|
+
feedbackBackgroundColor: 'color'
|
|
1686
|
+
},
|
|
1687
|
+
SideNav: {
|
|
1688
|
+
borderColor: 'color',
|
|
1689
|
+
borderWidth: 'border',
|
|
1690
|
+
borderStyle: 'borderStyle'
|
|
1691
|
+
},
|
|
1692
|
+
SideNavItem: {
|
|
1693
|
+
borderColor: 'color',
|
|
1694
|
+
borderWidth: 'border',
|
|
1695
|
+
borderStyle: 'borderStyle',
|
|
1696
|
+
paddingLeft: 'size',
|
|
1697
|
+
paddingRight: 'size',
|
|
1698
|
+
paddingTop: 'size',
|
|
1699
|
+
paddingBottom: 'size',
|
|
1700
|
+
justifyContent: 'flexJustifyContent',
|
|
1701
|
+
color: 'color',
|
|
1702
|
+
accentOffset: 'size',
|
|
1703
|
+
accentPadding: 'size',
|
|
1704
|
+
accentWidth: 'size',
|
|
1705
|
+
accentBackgroundColor: 'color',
|
|
1706
|
+
fontWeight: 'fontWeight',
|
|
1707
|
+
fontName: 'fontName',
|
|
1708
|
+
fontSize: 'fontSize',
|
|
1709
|
+
lineHeight: 'lineHeight',
|
|
1710
|
+
backgroundColor: 'color'
|
|
1711
|
+
},
|
|
1712
|
+
SideNavItemsGroup: {
|
|
1713
|
+
expandDuration: 'duration',
|
|
1714
|
+
collapseDuration: 'duration',
|
|
1715
|
+
contentPaddingLeft: 'size',
|
|
1716
|
+
contentPaddingRight: 'size',
|
|
1717
|
+
contentPaddingTop: 'size',
|
|
1718
|
+
contentPaddingBottom: 'size',
|
|
1719
|
+
icon: 'icon',
|
|
1720
|
+
iconColor: 'color',
|
|
1721
|
+
iconGap: 'size',
|
|
1722
|
+
iconSize: 'size',
|
|
1723
|
+
iconPosition: 'position',
|
|
1724
|
+
justifyContent: 'flexJustifyContent',
|
|
1725
|
+
verticalAlign: 'verticalAlign'
|
|
1726
|
+
},
|
|
1727
|
+
spacingScale: {
|
|
1728
|
+
size: 'size'
|
|
1729
|
+
},
|
|
1730
|
+
StackView: {
|
|
1731
|
+
alignItems: 'flexAlign',
|
|
1732
|
+
justifyContent: 'flexJustifyContent',
|
|
1733
|
+
flexGrow: 'integer',
|
|
1734
|
+
flexShrink: 'integer',
|
|
1735
|
+
width: 'size'
|
|
1736
|
+
},
|
|
1737
|
+
StepTracker: {
|
|
1738
|
+
completedIcon: 'icon',
|
|
1739
|
+
completedIconColor: 'color',
|
|
1740
|
+
completedIconSize: 'size',
|
|
1741
|
+
connectorColor: 'color',
|
|
1742
|
+
connectorCompletedColor: 'color',
|
|
1743
|
+
// TODO: should these be border or size???
|
|
1744
|
+
connectorCompletedHeight: 'border',
|
|
1745
|
+
connectorHeight: 'border',
|
|
1746
|
+
connectorMinWidth: 'size',
|
|
1747
|
+
containerPaddingBottom: 'size',
|
|
1748
|
+
containerPaddingLeft: 'size',
|
|
1749
|
+
containerPaddingRight: 'size',
|
|
1750
|
+
containerPaddingTop: 'size',
|
|
1751
|
+
knobBackgroundColor: 'color',
|
|
1752
|
+
knobBorderColor: 'color',
|
|
1753
|
+
knobBorderWidth: 'border',
|
|
1754
|
+
knobCompletedBackgroundColor: 'color',
|
|
1755
|
+
knobCompletedBorderColor: 'color',
|
|
1756
|
+
knobCompletedPaddingLeft: 'size',
|
|
1757
|
+
knobCompletedPaddingTop: 'size',
|
|
1758
|
+
knobCurrentBackgroundColor: 'color',
|
|
1759
|
+
knobCurrentBorderColor: 'color',
|
|
1760
|
+
knobCurrentBorderWidth: 'border',
|
|
1761
|
+
knobCurrentInnerColor: 'color',
|
|
1762
|
+
knobCurrentInnerSize: 'size',
|
|
1763
|
+
knobCurrentPaddingLeft: 'size',
|
|
1764
|
+
knobCurrentPaddingTop: 'size',
|
|
1765
|
+
knobSize: 'size',
|
|
1766
|
+
labelColor: 'color',
|
|
1767
|
+
labelCurrentColor: 'color',
|
|
1768
|
+
labelCurrentFontWeight: 'fontWeight',
|
|
1769
|
+
labelCurrentFontName: 'fontName',
|
|
1770
|
+
labelDirection: 'direction',
|
|
1771
|
+
labelFontSize: 'fontSize',
|
|
1772
|
+
labelFontWeight: 'fontWeight',
|
|
1773
|
+
labelFontName: 'fontName',
|
|
1774
|
+
labelGap: 'size',
|
|
1775
|
+
labelLineHeight: 'lineHeight',
|
|
1776
|
+
labelMarginTop: 'size',
|
|
1777
|
+
labelPaddingLeft: 'size',
|
|
1778
|
+
labelPaddingRight: 'size',
|
|
1779
|
+
showStepLabel: 'show',
|
|
1780
|
+
showStepName: 'show',
|
|
1781
|
+
showStepTrackerLabel: 'show',
|
|
1782
|
+
textStepTrackerLabel: 'integer',
|
|
1783
|
+
stepLabelColor: 'color',
|
|
1784
|
+
stepLabelFontSize: 'fontSize',
|
|
1785
|
+
stepLabelFontWeight: 'fontWeight',
|
|
1786
|
+
stepLabelFontName: 'fontName',
|
|
1787
|
+
stepLabelLineHeight: 'lineHeight'
|
|
1788
|
+
},
|
|
1789
|
+
SkipLink: {
|
|
1790
|
+
backgroundColor: 'color',
|
|
1791
|
+
color: 'color',
|
|
1792
|
+
outlineColor: 'color',
|
|
1793
|
+
outlineOffset: 'border',
|
|
1794
|
+
outlineStyle: 'borderStyle',
|
|
1795
|
+
outlineWidth: 'border',
|
|
1796
|
+
paddingHorizontal: 'size',
|
|
1797
|
+
paddingVertical: 'size',
|
|
1798
|
+
borderRadius: 'radius',
|
|
1799
|
+
textLine: 'textLine',
|
|
1800
|
+
fontName: 'fontName',
|
|
1801
|
+
fontWeight: 'fontWeight',
|
|
1802
|
+
fontSize: 'fontSize',
|
|
1803
|
+
lineHeight: 'lineHeight'
|
|
1804
|
+
},
|
|
1805
|
+
StoryCard: {
|
|
1806
|
+
outerBorderColor: 'color',
|
|
1807
|
+
outerBorderGap: 'size',
|
|
1808
|
+
outerBorderWidth: 'border',
|
|
1809
|
+
flex: 'integer',
|
|
1810
|
+
backgroundColor: 'color',
|
|
1811
|
+
borderColor: 'color',
|
|
1812
|
+
borderRadius: 'radius',
|
|
1813
|
+
borderWidth: 'border',
|
|
1814
|
+
paddingBottom: 'size',
|
|
1815
|
+
paddingLeft: 'size',
|
|
1816
|
+
paddingRight: 'size',
|
|
1817
|
+
paddingTop: 'size',
|
|
1818
|
+
minWidth: 'size',
|
|
1819
|
+
shadow: 'shadow',
|
|
1820
|
+
contentAlignItems: 'flexAlign',
|
|
1821
|
+
contentJustifyContent: 'flexJustifyContent',
|
|
1822
|
+
contentFlexGrow: 'integer',
|
|
1823
|
+
contentFlexShrink: 'integer'
|
|
1824
|
+
},
|
|
1825
|
+
Tabs: {
|
|
1826
|
+
nextIcon: 'icon',
|
|
1827
|
+
previousIcon: 'icon',
|
|
1828
|
+
space: 'integer',
|
|
1829
|
+
buttonClearance: 'size',
|
|
1830
|
+
gutter: 'size',
|
|
1831
|
+
borderBottomColor: 'color',
|
|
1832
|
+
borderBottomWidth: 'border'
|
|
1833
|
+
},
|
|
1834
|
+
TabsItem: {
|
|
1835
|
+
highlightColor: 'color',
|
|
1836
|
+
highlightBarHeight: 'border',
|
|
1837
|
+
highlightBarBorderRadius: 'radius',
|
|
1838
|
+
highlightBarBorderWidth: 'border',
|
|
1839
|
+
highlightTriangleSize: 'size',
|
|
1840
|
+
backgroundColor: 'color',
|
|
1841
|
+
borderColor: 'color',
|
|
1842
|
+
borderWidth: 'border',
|
|
1843
|
+
borderRadius: 'radius',
|
|
1844
|
+
maxWidth: 'size',
|
|
1845
|
+
paddingHorizontal: 'size',
|
|
1846
|
+
paddingVertical: 'size',
|
|
1847
|
+
space: 'integer',
|
|
1848
|
+
textAlign: 'textAlign',
|
|
1849
|
+
lineHeight: 'lineHeight',
|
|
1850
|
+
color: 'color',
|
|
1851
|
+
fontSize: 'fontSize',
|
|
1852
|
+
letterSpacing: 'letterSpacing',
|
|
1853
|
+
textTransform: 'textTransform',
|
|
1854
|
+
fontScaleCap: 'fontSize',
|
|
1855
|
+
fontName: 'fontName',
|
|
1856
|
+
fontWeight: 'fontWeight'
|
|
1857
|
+
},
|
|
1858
|
+
TabBar: {
|
|
1859
|
+
paddingTop: 'size',
|
|
1860
|
+
paddingBottom: 'size',
|
|
1861
|
+
borderTopWidth: 'border',
|
|
1862
|
+
borderTopColor: 'color',
|
|
1863
|
+
gap: 'size',
|
|
1864
|
+
backgroundColor: 'color',
|
|
1865
|
+
paddingLeft: 'size',
|
|
1866
|
+
paddingRight: 'size'
|
|
1867
|
+
},
|
|
1868
|
+
TabBarItem: {
|
|
1869
|
+
borderRadius: 'radius',
|
|
1870
|
+
backgroundColor: 'color',
|
|
1871
|
+
paddingTop: 'size',
|
|
1872
|
+
paddingBottom: 'size',
|
|
1873
|
+
fontName: 'fontName',
|
|
1874
|
+
fontWeight: 'fontWeight',
|
|
1875
|
+
color: 'color',
|
|
1876
|
+
lineHeight: 'lineHeight',
|
|
1877
|
+
iconSize: 'size',
|
|
1878
|
+
iconColor: 'color',
|
|
1879
|
+
activeColor: 'color'
|
|
1880
|
+
},
|
|
1881
|
+
Tags: {
|
|
1882
|
+
space: 'integer',
|
|
1883
|
+
direction: 'direction',
|
|
1884
|
+
alignItems: 'flexAlign',
|
|
1885
|
+
justifyContent: 'flexJustifyContent',
|
|
1886
|
+
flexGrow: 'integer',
|
|
1887
|
+
flexShrink: 'integer'
|
|
1888
|
+
},
|
|
1889
|
+
TagsItem: {
|
|
1890
|
+
icon: 'icon',
|
|
1891
|
+
iconPosition: 'position',
|
|
1892
|
+
iconSpace: 'integer',
|
|
1893
|
+
iconSize: 'size',
|
|
1894
|
+
iconColor: 'color',
|
|
1895
|
+
iconPadding: 'size',
|
|
1896
|
+
iconAlignSelf: 'flexAlign',
|
|
1897
|
+
iconTranslateX: 'size',
|
|
1898
|
+
iconTranslateY: 'size',
|
|
1899
|
+
iconBackground: 'color',
|
|
1900
|
+
iconBorderRadius: 'radius',
|
|
1901
|
+
// These are duplicated Button tokens. TODO: consider token sets to reduce duplication.
|
|
1902
|
+
// https://github.com/telus/universal-design-system/issues/782
|
|
1903
|
+
borderColor: 'color',
|
|
1904
|
+
borderWidth: 'border',
|
|
1905
|
+
borderRadius: 'radius',
|
|
1906
|
+
shadow: 'shadow',
|
|
1907
|
+
fontSize: 'fontSize',
|
|
1908
|
+
color: 'color',
|
|
1909
|
+
lineHeight: 'lineHeight',
|
|
1910
|
+
textAlign: 'flexJustifyContent',
|
|
1911
|
+
alignSelf: 'flexAlign',
|
|
1912
|
+
fontName: 'fontName',
|
|
1913
|
+
fontWeight: 'fontWeight',
|
|
1914
|
+
backgroundColor: 'color',
|
|
1915
|
+
opacity: 'opacity',
|
|
1916
|
+
paddingLeft: 'size',
|
|
1917
|
+
paddingRight: 'size',
|
|
1918
|
+
paddingTop: 'size',
|
|
1919
|
+
paddingBottom: 'size',
|
|
1920
|
+
minWidth: 'size',
|
|
1921
|
+
outerBorderColor: 'color',
|
|
1922
|
+
outerBorderWidth: 'border',
|
|
1923
|
+
outerBorderGap: 'size',
|
|
1924
|
+
outerBackgroundColor: 'color'
|
|
1925
|
+
},
|
|
1926
|
+
Testimonial: {
|
|
1927
|
+
testimonialContainerGap: 'size',
|
|
1928
|
+
quoteContainerGap: 'size',
|
|
1929
|
+
iconColor: 'color',
|
|
1930
|
+
dividerBorder: 'border',
|
|
1931
|
+
dividerBackgroundColor: 'color',
|
|
1932
|
+
figcaptionGap: 'size',
|
|
1933
|
+
textColor: 'color',
|
|
1934
|
+
imageSize: 'size',
|
|
1935
|
+
icon: 'icon',
|
|
1936
|
+
iconFr: 'icon',
|
|
1937
|
+
testimonialFontSizeLarge: 'fontSize',
|
|
1938
|
+
testimonialLineHeightLarge: 'lineHeight',
|
|
1939
|
+
testimonialFontNameLarge: 'fontName',
|
|
1940
|
+
testimonialFontWeightLarge: 'fontWeight',
|
|
1941
|
+
testimonialFontSizeHeading: 'fontSize',
|
|
1942
|
+
testimonialLineHeightHeading: 'lineHeight',
|
|
1943
|
+
testimonialFontNameHeading: 'fontName',
|
|
1944
|
+
testimonialFontWeightHeading: 'fontWeight',
|
|
1945
|
+
authorFontSize: 'fontSize',
|
|
1946
|
+
authorLineHeight: 'lineHeight',
|
|
1947
|
+
authorFontName: 'fontName',
|
|
1948
|
+
authorFontWeight: 'fontWeight',
|
|
1949
|
+
additionalFontSize: 'fontSize',
|
|
1950
|
+
additionalLineHeight: 'lineHeight',
|
|
1951
|
+
additionalFontName: 'fontName',
|
|
1952
|
+
additionalFontWeight: 'fontWeight'
|
|
1953
|
+
},
|
|
1954
|
+
TermsAndConditions: {
|
|
1955
|
+
headerBackgroundColor: 'color',
|
|
1956
|
+
contentPaddingBottom: 'size',
|
|
1957
|
+
contentPaddingLeft: 'size',
|
|
1958
|
+
contentBorderColor: 'color',
|
|
1959
|
+
contentMarginBottom: 'size',
|
|
1960
|
+
mdContentPaddingBottom: 'size',
|
|
1961
|
+
mdContentPaddingLeft: 'size',
|
|
1962
|
+
orderedPadding: 'size',
|
|
1963
|
+
unorderedPadding: 'size',
|
|
1964
|
+
listFontName: 'fontName',
|
|
1965
|
+
listFontWeight: 'fontWeight',
|
|
1966
|
+
listFontSize: 'fontSize',
|
|
1967
|
+
listLineHeight: 'lineHeight',
|
|
1968
|
+
listColor: 'color',
|
|
1969
|
+
listMarginBottom: 'size',
|
|
1970
|
+
listMarginLeft: 'size',
|
|
1971
|
+
titleColor: 'color',
|
|
1972
|
+
titleFontSize: 'fontSize',
|
|
1973
|
+
titleLineHeight: 'lineHeight',
|
|
1974
|
+
titlePaddingLeft: 'size',
|
|
1975
|
+
expandIconContainerBorder: 'border',
|
|
1976
|
+
expandIconContainerBorderColor: 'color',
|
|
1977
|
+
expandIconContainerHeight: 'size',
|
|
1978
|
+
expandIconContainerMarginX: 'size',
|
|
1979
|
+
expandIconContainerMarginY: 'size',
|
|
1980
|
+
expandIconContainerWidth: 'size',
|
|
1981
|
+
expandIconContainerAlignItems: 'flexAlign',
|
|
1982
|
+
expandIconContainerJustifyContent: 'flexJustifyContent',
|
|
1983
|
+
expandTitleColor: 'color',
|
|
1984
|
+
expandTitleFontSize: 'size',
|
|
1985
|
+
expandTitleLineHeight: 'lineHeight',
|
|
1986
|
+
expandTitleFontName: 'fontName',
|
|
1987
|
+
expandTitleFontWeight: 'fontWeight',
|
|
1988
|
+
expandTitleMarginX: 'size',
|
|
1989
|
+
expandTitleMarginY: 'size',
|
|
1990
|
+
expandTitlePaddingLeft: 'size',
|
|
1991
|
+
expandTitleBorder: 'border',
|
|
1992
|
+
expandTitleBorderColor: 'color',
|
|
1993
|
+
expandTitleUnderline: 'textLine',
|
|
1994
|
+
expandBaseBorderWidth: 'border',
|
|
1995
|
+
expandContentPaddingBottom: 'size',
|
|
1996
|
+
expandContentPaddingLeft: 'size',
|
|
1997
|
+
expandContentPaddingRight: 'size',
|
|
1998
|
+
expandContentPaddingTop: 'size',
|
|
1999
|
+
dividerColor: 'color',
|
|
2000
|
+
icon: 'icon',
|
|
2001
|
+
iconBackgroundColor: 'color',
|
|
2002
|
+
iconColor: 'color',
|
|
2003
|
+
iconBorderColor: 'color',
|
|
2004
|
+
iconOuterBorderColor: 'color',
|
|
2005
|
+
iconOuterBorderGap: 'size',
|
|
2006
|
+
iconOuterBorderWidth: 'border'
|
|
2007
|
+
},
|
|
2008
|
+
TextArea: {
|
|
2009
|
+
minLines: 'integer',
|
|
2010
|
+
maxLines: 'integer'
|
|
2011
|
+
},
|
|
2012
|
+
TextInput: {
|
|
2013
|
+
backgroundColor: 'color',
|
|
2014
|
+
color: 'color',
|
|
2015
|
+
borderWidth: 'border',
|
|
2016
|
+
borderColor: 'color',
|
|
2017
|
+
borderRadius: 'radius',
|
|
2018
|
+
passwordShowButtonIcon: 'icon',
|
|
2019
|
+
passwordHideButtonIcon: 'icon',
|
|
2020
|
+
buttonSize: 'size',
|
|
2021
|
+
buttonsGap: 'size',
|
|
2022
|
+
buttonsPaddingRight: 'size',
|
|
2023
|
+
clearButtonIcon: 'icon',
|
|
2024
|
+
paddingTop: 'size',
|
|
2025
|
+
paddingBottom: 'size',
|
|
2026
|
+
paddingLeft: 'size',
|
|
2027
|
+
paddingRight: 'size',
|
|
2028
|
+
outerBackgroundColor: 'color',
|
|
2029
|
+
outerBorderWidth: 'border',
|
|
2030
|
+
outerBorderColor: 'color',
|
|
2031
|
+
fontName: 'fontName',
|
|
2032
|
+
fontWeight: 'fontWeight',
|
|
2033
|
+
fontSize: 'fontSize',
|
|
2034
|
+
leftIconPaddingBottom: 'size',
|
|
2035
|
+
iconLeftPaddingBottom: 'size',
|
|
2036
|
+
iconLeftGap: 'size',
|
|
2037
|
+
lineHeight: 'lineHeight',
|
|
2038
|
+
icon: 'icon',
|
|
2039
|
+
iconSize: 'size',
|
|
2040
|
+
iconColor: 'color',
|
|
2041
|
+
defaultCreditIcon: 'icon',
|
|
2042
|
+
visaIcon: 'icon',
|
|
2043
|
+
masterCardIcon: 'icon',
|
|
2044
|
+
amexIcon: 'icon'
|
|
2045
|
+
},
|
|
2046
|
+
Toast: {
|
|
2047
|
+
containerBackgroundColor: 'color',
|
|
2048
|
+
containerGap: 'size',
|
|
2049
|
+
animationHeightBefore: 'size',
|
|
2050
|
+
animationHeightAfter: 'size',
|
|
2051
|
+
animationPaddingBottomBefore: 'size',
|
|
2052
|
+
animationPaddingBottomAfter: 'size',
|
|
2053
|
+
animationPaddingTopBefore: 'size',
|
|
2054
|
+
padding: 'size',
|
|
2055
|
+
animationPaddingTopAfter: 'size',
|
|
2056
|
+
animationBackgroundColorBefore: 'color',
|
|
2057
|
+
animationBackgroundColorAfter: 'color',
|
|
2058
|
+
animationColorBefore: 'color',
|
|
2059
|
+
animationColorAfter: 'color',
|
|
2060
|
+
animationDivColorBefore: 'color',
|
|
2061
|
+
animationDivColorAfter: 'color',
|
|
2062
|
+
chevronlinkFontWeight: 'fontWeight',
|
|
2063
|
+
chevronlinkFontName: 'fontName'
|
|
2064
|
+
},
|
|
2065
|
+
ToggleSwitch: {
|
|
2066
|
+
borderColor: 'color',
|
|
2067
|
+
borderWidth: 'border',
|
|
2068
|
+
borderRadius: 'radius',
|
|
2069
|
+
outerBorderColor: 'color',
|
|
2070
|
+
outerBorderWidth: 'border',
|
|
2071
|
+
outerBorderGap: 'size',
|
|
2072
|
+
outerBackgroundColor: 'color',
|
|
2073
|
+
backgroundColor: 'color',
|
|
2074
|
+
opacity: 'opacity',
|
|
2075
|
+
paddingLeft: 'size',
|
|
2076
|
+
paddingRight: 'size',
|
|
2077
|
+
paddingTop: 'size',
|
|
2078
|
+
paddingBottom: 'size',
|
|
2079
|
+
shadow: 'shadow',
|
|
2080
|
+
alignSelf: 'flexAlign',
|
|
2081
|
+
space: 'integer',
|
|
2082
|
+
icon: 'icon',
|
|
2083
|
+
trackHeight: 'size',
|
|
2084
|
+
outerBorderGapButton: 'size',
|
|
2085
|
+
width: 'size',
|
|
2086
|
+
trackBorderWidth: 'border',
|
|
2087
|
+
trackBorderColor: 'color',
|
|
2088
|
+
trackBorderRadius: 'radius',
|
|
2089
|
+
iconSize: 'size',
|
|
2090
|
+
iconColor: 'color',
|
|
2091
|
+
labelColor: 'color',
|
|
2092
|
+
labelFontName: 'fontName',
|
|
2093
|
+
labelFontSize: 'fontSize',
|
|
2094
|
+
labelFontWeight: 'fontWeight',
|
|
2095
|
+
labelLineHeight: 'lineHeight',
|
|
2096
|
+
labelMarginLeft: 'size',
|
|
2097
|
+
switchSize: 'size',
|
|
2098
|
+
switchColor: 'color',
|
|
2099
|
+
switchBorderColor: 'color',
|
|
2100
|
+
switchBorderWidth: 'border',
|
|
2101
|
+
switchBorderRadius: 'radius',
|
|
2102
|
+
switchShadow: 'shadow'
|
|
2103
|
+
},
|
|
2104
|
+
ToggleSwitchGroup: {
|
|
2105
|
+
space: 'integer',
|
|
2106
|
+
fieldSpace: 'integer',
|
|
2107
|
+
direction: 'direction',
|
|
2108
|
+
alignItems: 'flexAlign',
|
|
2109
|
+
justifyContent: 'flexJustifyContent',
|
|
2110
|
+
flexGrow: 'integer',
|
|
2111
|
+
flexShrink: 'integer'
|
|
2112
|
+
},
|
|
2113
|
+
Breadcrumbs: {
|
|
2114
|
+
fontWeight: 'fontWeight',
|
|
2115
|
+
fontName: 'fontName',
|
|
2116
|
+
fontSize: 'fontSize',
|
|
2117
|
+
lineHeight: 'lineHeight',
|
|
2118
|
+
color: 'color',
|
|
2119
|
+
currentColor: 'color',
|
|
2120
|
+
icon: 'icon',
|
|
2121
|
+
iconColor: 'color',
|
|
2122
|
+
iconSize: 'size',
|
|
2123
|
+
iconPadding: 'size',
|
|
2124
|
+
iconContainerSize: 'size',
|
|
2125
|
+
listItemPadding: 'size'
|
|
2126
|
+
},
|
|
2127
|
+
Timeline: {
|
|
2128
|
+
dotColor: 'color',
|
|
2129
|
+
dotWidth: 'size',
|
|
2130
|
+
dotBorderWidth: 'border',
|
|
2131
|
+
timelineContainerDirection: 'direction',
|
|
2132
|
+
timelineConnectorColor: 'color',
|
|
2133
|
+
timelineColor: 'color',
|
|
2134
|
+
connectorWidth: 'size',
|
|
2135
|
+
connectorHeight: 'size',
|
|
2136
|
+
lineItemContainerDirection: 'direction',
|
|
2137
|
+
lineContainerFlexSize: 'integer',
|
|
2138
|
+
lineItemAlign: 'flexAlign',
|
|
2139
|
+
lineItemDirection: 'direction',
|
|
2140
|
+
lineItemMarginRight: 'size',
|
|
2141
|
+
lineItemMarginBottom: 'size',
|
|
2142
|
+
itemContentFlexSize: 'integer',
|
|
2143
|
+
itemContentMarginRight: 'size',
|
|
2144
|
+
itemContentMarginBottom: 'size'
|
|
2145
|
+
},
|
|
2146
|
+
Tooltip: {
|
|
2147
|
+
backgroundColor: 'color',
|
|
2148
|
+
paddingTop: 'size',
|
|
2149
|
+
paddingBottom: 'size',
|
|
2150
|
+
paddingLeft: 'size',
|
|
2151
|
+
paddingRight: 'size',
|
|
2152
|
+
borderRadius: 'radius',
|
|
2153
|
+
shadow: 'shadow',
|
|
2154
|
+
color: 'color',
|
|
2155
|
+
fontSize: 'fontSize',
|
|
2156
|
+
lineHeight: 'lineHeight',
|
|
2157
|
+
fontName: 'fontName',
|
|
2158
|
+
fontWeight: 'fontWeight',
|
|
2159
|
+
arrowWidth: 'size',
|
|
2160
|
+
arrowBorderRadius: 'radius',
|
|
2161
|
+
arrowOffset: 'size',
|
|
2162
|
+
maxWidth: 'size',
|
|
2163
|
+
minWidth: 'size'
|
|
2164
|
+
},
|
|
2165
|
+
TooltipButton: {
|
|
2166
|
+
outerBorderColor: 'color',
|
|
2167
|
+
backgroundColor: 'color',
|
|
2168
|
+
outerBorderWidth: 'border',
|
|
2169
|
+
outerBorderGap: 'size',
|
|
2170
|
+
borderRadius: 'radius',
|
|
2171
|
+
width: 'size',
|
|
2172
|
+
icon: 'icon',
|
|
2173
|
+
iconSize: 'size',
|
|
2174
|
+
iconColor: 'color',
|
|
2175
|
+
iconScale: 'iconScale'
|
|
2176
|
+
},
|
|
2177
|
+
Typography: {
|
|
2178
|
+
fontName: 'fontName',
|
|
2179
|
+
superScriptFontSize: 'fontSize',
|
|
2180
|
+
fontWeight: 'fontWeight',
|
|
2181
|
+
fontSize: 'fontSize',
|
|
2182
|
+
color: 'color',
|
|
2183
|
+
lineHeight: 'lineHeight',
|
|
2184
|
+
textTransform: 'textTransform',
|
|
2185
|
+
fontScaleCap: 'fontSize',
|
|
2186
|
+
letterSpacing: 'letterSpacing',
|
|
2187
|
+
gradient: 'gradient'
|
|
2188
|
+
},
|
|
2189
|
+
Countdown: {
|
|
2190
|
+
containerBorderRadius: 'radius',
|
|
2191
|
+
containerGradient: 'gradient',
|
|
2192
|
+
containerBorderWidth: 'border',
|
|
2193
|
+
containerBorderColor: 'color',
|
|
2194
|
+
containerInverseBorder: 'border',
|
|
2195
|
+
containerInverseBorderColor: 'color',
|
|
2196
|
+
containerPaddingBottomTop: 'size',
|
|
2197
|
+
containerPaddingLeftRight: 'size',
|
|
2198
|
+
inverseBorderColor: 'color',
|
|
2199
|
+
labelBorderColor: 'color',
|
|
2200
|
+
textFontSize: 'fontSize',
|
|
2201
|
+
textLineHeight: 'lineHeight',
|
|
2202
|
+
labelFontSize: 'fontSize',
|
|
2203
|
+
labelFontName: 'fontName',
|
|
2204
|
+
labelFontWeight: 'fontWeight',
|
|
2205
|
+
labelLineHeight: 'lineHeight',
|
|
2206
|
+
textTimerFontWeight: 'fontWeight',
|
|
2207
|
+
textTimerFontName: 'fontName'
|
|
2208
|
+
},
|
|
2209
|
+
Skeleton: {
|
|
2210
|
+
color: 'color',
|
|
2211
|
+
secondColor: 'color',
|
|
2212
|
+
animationDuration: 'integer',
|
|
2213
|
+
size: 'size',
|
|
2214
|
+
radius: 'radius',
|
|
2215
|
+
baseWidth: 'size',
|
|
2216
|
+
characters: 'size',
|
|
2217
|
+
spaceBetweenLines: 'size',
|
|
2218
|
+
squareRadius: 'radius',
|
|
2219
|
+
lineRadius: 'radius'
|
|
2220
|
+
}
|
|
2221
|
+
};
|