@instructure/shared-types 8.22.1-snapshot.0 → 8.22.1-snapshot.23
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/package.json +2 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/BaseTheme.d.ts +116 -0
- package/types/BaseTheme.d.ts.map +1 -0
- package/types/Colors.d.ts +114 -0
- package/types/Colors.d.ts.map +1 -0
- package/types/CommonProps.d.ts +11 -0
- package/types/CommonProps.d.ts.map +1 -0
- package/types/CommonTypes.d.ts +17 -0
- package/types/CommonTypes.d.ts.map +1 -0
- package/types/ComponentThemeMap.d.ts +7 -0
- package/types/ComponentThemeMap.d.ts.map +1 -0
- package/types/ComponentThemeVariables.d.ts +1414 -0
- package/types/ComponentThemeVariables.d.ts.map +1 -0
- package/types/UtilityTypes.d.ts +38 -0
- package/types/UtilityTypes.d.ts.map +1 -0
- package/types/index.d.ts +8 -0
- package/types/index.d.ts.map +1 -0
|
@@ -0,0 +1,1414 @@
|
|
|
1
|
+
import { Colors } from './Colors';
|
|
2
|
+
import { Border, Breakpoints, Forms, Media, Shadows, Spacing, Stacking, Transitions, Typography } from './BaseTheme';
|
|
3
|
+
export interface ComponentTheme {
|
|
4
|
+
[variableName: string]: string | number | undefined;
|
|
5
|
+
}
|
|
6
|
+
export declare type AlertTheme = {
|
|
7
|
+
background: Colors['backgroundLightest'];
|
|
8
|
+
color: Colors['textDarkest'];
|
|
9
|
+
marginTop: Spacing['small'];
|
|
10
|
+
borderRadius: Border['radiusMedium'];
|
|
11
|
+
borderWidth: Border['widthMedium'];
|
|
12
|
+
borderStyle: Border['style'];
|
|
13
|
+
contentPadding: string | 0;
|
|
14
|
+
contentFontSize: Typography['fontSizeMedium'];
|
|
15
|
+
contentFontFamily: Typography['fontFamily'];
|
|
16
|
+
contentFontWeight: Typography['fontWeightNormal'];
|
|
17
|
+
contentLineHeight: Typography['lineHeightCondensed'];
|
|
18
|
+
closeButtonMarginTop: Spacing['xSmall'];
|
|
19
|
+
closeButtonMarginRight: Spacing['xxSmall'];
|
|
20
|
+
iconColor: Colors['textLightest'];
|
|
21
|
+
successBorderColor: Colors['borderSuccess'];
|
|
22
|
+
successIconBackground: Colors['backgroundSuccess'];
|
|
23
|
+
infoBorderColor: Colors['borderInfo'];
|
|
24
|
+
infoIconBackground: Colors['backgroundInfo'];
|
|
25
|
+
warningBorderColor: Colors['borderWarning'];
|
|
26
|
+
warningIconBackground: Colors['backgroundWarning'];
|
|
27
|
+
dangerBorderColor: Colors['borderDanger'];
|
|
28
|
+
dangerIconBackground: Colors['backgroundDanger'];
|
|
29
|
+
boxShadow: Shadows['depth2'];
|
|
30
|
+
};
|
|
31
|
+
export declare type AvatarTheme = {
|
|
32
|
+
background: Colors['backgroundLightest'];
|
|
33
|
+
borderWidthSmall: Border['widthSmall'];
|
|
34
|
+
borderWidthMedium: Border['widthMedium'];
|
|
35
|
+
borderColor: Colors['borderMedium'];
|
|
36
|
+
boxShadowColor: Colors['backgroundDarkest'];
|
|
37
|
+
boxShadowBlur: string;
|
|
38
|
+
fontFamily: Typography['fontFamily'];
|
|
39
|
+
fontWeight: Typography['fontWeightBold'];
|
|
40
|
+
color: Colors['brand'];
|
|
41
|
+
colorShamrock: Colors['shamrock'];
|
|
42
|
+
colorBarney: Colors['barney'];
|
|
43
|
+
colorCrimson: Colors['crimson'];
|
|
44
|
+
colorFire: Colors['fire'];
|
|
45
|
+
colorLicorice: Colors['licorice'];
|
|
46
|
+
colorAsh: Colors['ash'];
|
|
47
|
+
};
|
|
48
|
+
export declare type BadgeTheme = {
|
|
49
|
+
fontFamily: Typography['fontFamily'];
|
|
50
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
51
|
+
color: Colors['textLightest'];
|
|
52
|
+
fontSize: Typography['fontSizeXSmall'];
|
|
53
|
+
colorDanger: Colors['textDanger'];
|
|
54
|
+
colorSuccess: Colors['textSuccess'];
|
|
55
|
+
colorPrimary: Colors['textBrand'];
|
|
56
|
+
colorInverse: Colors['textDarkest'];
|
|
57
|
+
size: string;
|
|
58
|
+
countOffset: string | 0;
|
|
59
|
+
notificationOffset: string | 0;
|
|
60
|
+
notificationZIndex: Stacking['above'];
|
|
61
|
+
sizeNotification: Spacing['small'];
|
|
62
|
+
borderRadius: string | 0;
|
|
63
|
+
padding: Spacing['xxSmall'];
|
|
64
|
+
pulseBorderThickness: Border['widthMedium'];
|
|
65
|
+
};
|
|
66
|
+
export declare type BillboardTheme = {
|
|
67
|
+
fontFamily: Typography['fontFamily'];
|
|
68
|
+
paddingSmall: Spacing['small'];
|
|
69
|
+
paddingMedium: Spacing['medium'];
|
|
70
|
+
paddingLarge: Spacing['medium'];
|
|
71
|
+
iconColor: Colors['textDark'];
|
|
72
|
+
mediumMargin: Spacing['small'];
|
|
73
|
+
largeMargin: Spacing['medium'];
|
|
74
|
+
iconHoverColor: Colors['textLink'];
|
|
75
|
+
backgroundColor: Colors['backgroundLightest'];
|
|
76
|
+
iconHoverColorInverse: Colors['textLightest'];
|
|
77
|
+
buttonBorderWidth: Border['widthMedium'];
|
|
78
|
+
buttonBorderRadius: Border['radiusLarge'];
|
|
79
|
+
messageColor: Colors['textDark'];
|
|
80
|
+
messageColorClickable: Colors['textLink'];
|
|
81
|
+
messageColorInverse: Colors['textLight'];
|
|
82
|
+
messageFontSizeSmall: Typography['fontSizeSmall'];
|
|
83
|
+
messageFontSizeMedium: Typography['fontSizeMedium'];
|
|
84
|
+
messageFontSizeLarge: Typography['fontSizeLarge'];
|
|
85
|
+
clickableActiveBg: Colors['backgroundBrand'];
|
|
86
|
+
clickableActiveText: Colors['textLightest'];
|
|
87
|
+
buttonBorderStyle: Border['style'];
|
|
88
|
+
buttonHoverBorderStyle: string;
|
|
89
|
+
};
|
|
90
|
+
export declare type BreadcrumbTheme = {
|
|
91
|
+
fontFamily: Typography['fontFamily'];
|
|
92
|
+
separatorColor: Colors['borderDark'];
|
|
93
|
+
smallSeparatorFontSize: string;
|
|
94
|
+
smallFontSize: Typography['fontSizeSmall'];
|
|
95
|
+
mediumSeparatorFontSize: string;
|
|
96
|
+
mediumFontSize: Typography['fontSizeMedium'];
|
|
97
|
+
largeSeparatorFontSize: string;
|
|
98
|
+
largeFontSize: Typography['fontSizeLarge'];
|
|
99
|
+
};
|
|
100
|
+
export declare type BaseButtonTheme = {
|
|
101
|
+
transform: string;
|
|
102
|
+
hoverTransform: string;
|
|
103
|
+
fontFamily: Typography['fontFamily'];
|
|
104
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
105
|
+
textTransform: string;
|
|
106
|
+
letterSpacing: string;
|
|
107
|
+
borderRadius: Border['radiusMedium'];
|
|
108
|
+
borderStyle: Border['style'];
|
|
109
|
+
borderWidth: Border['widthSmall'];
|
|
110
|
+
smallHeight: Forms['inputHeightSmall'];
|
|
111
|
+
smallFontSize: Typography['fontSizeSmall'];
|
|
112
|
+
smallPaddingHorizontal: Spacing['xSmall'];
|
|
113
|
+
smallPaddingTop: string;
|
|
114
|
+
smallPaddingBottom: string;
|
|
115
|
+
mediumHeight: Forms['inputHeightMedium'];
|
|
116
|
+
mediumFontSize: Typography['fontSizeMedium'];
|
|
117
|
+
mediumPaddingHorizontal: Spacing['small'];
|
|
118
|
+
mediumPaddingTop: string;
|
|
119
|
+
mediumPaddingBottom: string;
|
|
120
|
+
largeHeight: Forms['inputHeightLarge'];
|
|
121
|
+
largeFontSize: Typography['fontSizeLarge'];
|
|
122
|
+
largePaddingHorizontal: Spacing['medium'];
|
|
123
|
+
largePaddingTop: string;
|
|
124
|
+
largePaddingBottom: string;
|
|
125
|
+
lineHeight: Typography['lineHeightFit'];
|
|
126
|
+
iconSizeSmall: string;
|
|
127
|
+
iconSizeMedium: string;
|
|
128
|
+
iconSizeLarge: string;
|
|
129
|
+
iconTextGap: Spacing['xSmall'];
|
|
130
|
+
iconTextGapCondensed: Spacing['xxSmall'];
|
|
131
|
+
primaryColor: string;
|
|
132
|
+
primaryBorderColor: string;
|
|
133
|
+
primaryBackground: string;
|
|
134
|
+
primaryHoverBackground: string;
|
|
135
|
+
primaryActiveBackground: string;
|
|
136
|
+
primaryActiveBoxShadow: string;
|
|
137
|
+
primaryGhostColor: string;
|
|
138
|
+
primaryGhostBorderColor: string;
|
|
139
|
+
primaryGhostBackground: string;
|
|
140
|
+
primaryGhostHoverBackground: string;
|
|
141
|
+
primaryGhostActiveBackground: string;
|
|
142
|
+
primaryGhostActiveBoxShadow: string;
|
|
143
|
+
secondaryColor: string;
|
|
144
|
+
secondaryBorderColor: string;
|
|
145
|
+
secondaryBackground: string;
|
|
146
|
+
secondaryHoverBackground: string;
|
|
147
|
+
secondaryActiveBackground: string;
|
|
148
|
+
secondaryActiveBoxShadow: string;
|
|
149
|
+
secondaryGhostColor: string;
|
|
150
|
+
secondaryGhostBorderColor: string;
|
|
151
|
+
secondaryGhostBackground: string;
|
|
152
|
+
secondaryGhostHoverBackground: string;
|
|
153
|
+
secondaryGhostActiveBackground: string;
|
|
154
|
+
secondaryGhostActiveBoxShadow: string;
|
|
155
|
+
successColor: string;
|
|
156
|
+
successBorderColor: string;
|
|
157
|
+
successBackground: string;
|
|
158
|
+
successHoverBackground: string;
|
|
159
|
+
successActiveBackground: string;
|
|
160
|
+
successActiveBoxShadow: string;
|
|
161
|
+
successGhostColor: string;
|
|
162
|
+
successGhostBorderColor: string;
|
|
163
|
+
successGhostBackground: string;
|
|
164
|
+
successGhostHoverBackground: string;
|
|
165
|
+
successGhostActiveBackground: string;
|
|
166
|
+
successGhostActiveBoxShadow: string;
|
|
167
|
+
dangerColor: string;
|
|
168
|
+
dangerBorderColor: string;
|
|
169
|
+
dangerBackground: string;
|
|
170
|
+
dangerHoverBackground: string;
|
|
171
|
+
dangerActiveBackground: string;
|
|
172
|
+
dangerActiveBoxShadow: string;
|
|
173
|
+
dangerGhostColor: string;
|
|
174
|
+
dangerGhostBorderColor: string;
|
|
175
|
+
dangerGhostBackground: string;
|
|
176
|
+
dangerGhostHoverBackground: string;
|
|
177
|
+
dangerGhostActiveBackground: string;
|
|
178
|
+
dangerGhostActiveBoxShadow: string;
|
|
179
|
+
primaryInverseColor: string;
|
|
180
|
+
primaryInverseBorderColor: string;
|
|
181
|
+
primaryInverseBackground: string;
|
|
182
|
+
primaryInverseHoverBackground: string;
|
|
183
|
+
primaryInverseActiveBackground: string;
|
|
184
|
+
primaryInverseActiveBoxShadow: string;
|
|
185
|
+
primaryInverseGhostColor: string;
|
|
186
|
+
primaryInverseGhostBorderColor: string;
|
|
187
|
+
primaryInverseGhostBackground: string;
|
|
188
|
+
primaryInverseGhostHoverBackground: string;
|
|
189
|
+
primaryInverseGhostActiveBackground: string;
|
|
190
|
+
primaryInverseGhostActiveBoxShadow: string;
|
|
191
|
+
};
|
|
192
|
+
export declare type CloseButtonTheme = {
|
|
193
|
+
offsetMedium: Spacing['medium'];
|
|
194
|
+
offsetSmall: Spacing['small'];
|
|
195
|
+
offsetXSmall: Spacing['xSmall'];
|
|
196
|
+
zIndex: Stacking['above'];
|
|
197
|
+
};
|
|
198
|
+
export declare type BylineTheme = {
|
|
199
|
+
fontFamily: Typography['fontFamily'];
|
|
200
|
+
background: Colors['backgroundLightest'];
|
|
201
|
+
color: Colors['textDarkest'];
|
|
202
|
+
figureMargin: Spacing['small'];
|
|
203
|
+
titleMargin: Spacing['xSmall'];
|
|
204
|
+
titleFontSize: Typography['fontSizeLarge'];
|
|
205
|
+
titleFontWeight: Typography['fontWeightNormal'];
|
|
206
|
+
titleLineHeight: Typography['lineHeightFit'];
|
|
207
|
+
descriptionFontSize: Typography['fontSizeMedium'];
|
|
208
|
+
descriptionFontWeight: Typography['fontWeightNormal'];
|
|
209
|
+
descriptionLineHeight: Typography['lineHeightCondensed'];
|
|
210
|
+
small: Breakpoints['small'];
|
|
211
|
+
medium: Breakpoints['medium'];
|
|
212
|
+
large: Breakpoints['large'];
|
|
213
|
+
};
|
|
214
|
+
export declare type CalendarDayTheme = {
|
|
215
|
+
color: Colors['textDarkest'];
|
|
216
|
+
background: Colors['backgroundLightest'];
|
|
217
|
+
fontSize: Typography['fontSizeMedium'];
|
|
218
|
+
padding: Spacing['xxSmall'];
|
|
219
|
+
height: Forms['inputHeightSmall'];
|
|
220
|
+
minWidth: Forms['inputHeightSmall'];
|
|
221
|
+
outsideMonthColor: Colors['textDark'];
|
|
222
|
+
selectedBackground: Colors['backgroundSuccess'];
|
|
223
|
+
selectedColor: Colors['textLightest'];
|
|
224
|
+
selectedBorderRadius: Border['radiusMedium'];
|
|
225
|
+
todayBackground: Colors['backgroundBrand'];
|
|
226
|
+
todayColor: Colors['textLightest'];
|
|
227
|
+
todayBorderRadius: Forms['inputHeightSmall'];
|
|
228
|
+
};
|
|
229
|
+
export declare type CalendarTheme = {
|
|
230
|
+
fontSize: Typography['fontSizeMedium'];
|
|
231
|
+
fontFamily: Typography['fontFamily'];
|
|
232
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
233
|
+
color: Colors['textDarkest'];
|
|
234
|
+
background: Colors['backgroundLightest'];
|
|
235
|
+
navMargin: Spacing['small'];
|
|
236
|
+
maxHeaderWidth: Spacing['medium'];
|
|
237
|
+
};
|
|
238
|
+
export declare type CheckboxFacadeTheme = {
|
|
239
|
+
color: Colors['textLightest'];
|
|
240
|
+
borderWidth: Border['widthSmall'];
|
|
241
|
+
borderColor: Colors['borderDark'];
|
|
242
|
+
borderRadius: Border['radiusMedium'];
|
|
243
|
+
background: Colors['backgroundLightest'];
|
|
244
|
+
marginRight: Spacing['xSmall'];
|
|
245
|
+
padding: Spacing['xxxSmall'];
|
|
246
|
+
checkedBackground: Colors['backgroundDarkest'];
|
|
247
|
+
checkedBorderColor: Colors['borderDarkest'];
|
|
248
|
+
hoverBorderColor: Colors['borderDarkest'];
|
|
249
|
+
focusBorderColor: Colors['borderBrand'];
|
|
250
|
+
focusBorderWidth: Border['widthMedium'];
|
|
251
|
+
focusBorderStyle: Border['style'];
|
|
252
|
+
labelColor: Colors['textDarkest'];
|
|
253
|
+
checkedLabelColor: Colors['textDarkest'];
|
|
254
|
+
labelFontFamily: Typography['fontFamily'];
|
|
255
|
+
labelFontWeight: Typography['fontWeightNormal'];
|
|
256
|
+
labelLineHeight: Typography['lineHeightCondensed'];
|
|
257
|
+
facadeSizeSmall: string;
|
|
258
|
+
facadeSizeMedium: string;
|
|
259
|
+
facadeSizeLarge: string;
|
|
260
|
+
labelFontSizeSmall: Typography['fontSizeSmall'];
|
|
261
|
+
labelFontSizeMedium: Typography['fontSizeMedium'];
|
|
262
|
+
labelFontSizeLarge: Typography['fontSizeLarge'];
|
|
263
|
+
iconSizeSmall: string;
|
|
264
|
+
iconSizeMedium: string;
|
|
265
|
+
iconSizeLarge: string;
|
|
266
|
+
};
|
|
267
|
+
export declare type ToggleFacadeTheme = {
|
|
268
|
+
color: Colors['textLightest'];
|
|
269
|
+
background: Colors['backgroundLight'];
|
|
270
|
+
borderColor: Colors['borderMedium'];
|
|
271
|
+
borderWidth: Border['widthMedium'];
|
|
272
|
+
borderRadius: string;
|
|
273
|
+
marginEnd: Spacing['small'];
|
|
274
|
+
marginStart: Spacing['small'];
|
|
275
|
+
marginVertical: Spacing['xSmall'];
|
|
276
|
+
checkedBackground: Colors['backgroundSuccess'];
|
|
277
|
+
uncheckedIconColor: Colors['textDarkest'];
|
|
278
|
+
checkedIconColor: Colors['textSuccess'];
|
|
279
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
280
|
+
focusBorderWidth: Border['widthMedium'];
|
|
281
|
+
focusBorderStyle: Border['style'];
|
|
282
|
+
toggleBackground: Colors['backgroundLightest'];
|
|
283
|
+
toggleShadow: Shadows['depth1'];
|
|
284
|
+
toggleSize: Forms['inputHeightSmall'];
|
|
285
|
+
labelColor: Colors['textDarkest'];
|
|
286
|
+
labelFontFamily: Typography['fontFamily'];
|
|
287
|
+
labelFontWeight: Typography['fontWeightNormal'];
|
|
288
|
+
labelLineHeight: Typography['lineHeightCondensed'];
|
|
289
|
+
labelFontSizeSmall: Typography['fontSizeSmall'];
|
|
290
|
+
labelFontSizeMedium: Typography['fontSizeMedium'];
|
|
291
|
+
labelFontSizeLarge: Typography['fontSizeLarge'];
|
|
292
|
+
};
|
|
293
|
+
export declare type CodeEditorTheme = {
|
|
294
|
+
fontFamily: Typography['fontFamilyMonospace'];
|
|
295
|
+
fontSize: Typography['fontSizeSmall'];
|
|
296
|
+
background: Colors['backgroundLight'];
|
|
297
|
+
border: string | 0;
|
|
298
|
+
borderRadius: Border['radiusMedium'];
|
|
299
|
+
focusBorderColor: Colors['borderBrand'];
|
|
300
|
+
focusBoxShadow: Colors['borderLightest'];
|
|
301
|
+
horizontalPadding: Spacing['xSmall'];
|
|
302
|
+
verticalPadding: Spacing['xxSmall'];
|
|
303
|
+
color: Colors['textDarkest'];
|
|
304
|
+
lineNumberColor: Colors['textDark'];
|
|
305
|
+
gutterBorder: Colors['borderLight'];
|
|
306
|
+
gutterBackground: Colors['backgroundLight'];
|
|
307
|
+
gutterMarkerColor: Colors['textBrand'];
|
|
308
|
+
gutterMarkerSubtleColor: Colors['textDark'];
|
|
309
|
+
cursorColor: Colors['textDarkest'];
|
|
310
|
+
secondaryCursorColor: Colors['textDark'];
|
|
311
|
+
rulerColor: Colors['borderDark'];
|
|
312
|
+
matchingBracketOutline: Colors['textDark'];
|
|
313
|
+
nonMatchingBracketColor: Colors['textDanger'];
|
|
314
|
+
matchingTagBackground: string;
|
|
315
|
+
activeLineBackground: Colors['backgroundLight'];
|
|
316
|
+
selectedBackground: Colors['backgroundLight'];
|
|
317
|
+
fatCursorBackground: Colors['backgroundSuccess'];
|
|
318
|
+
fatCursorMarkBackground: string;
|
|
319
|
+
searchingBackground: string;
|
|
320
|
+
zIndex: Stacking['above'];
|
|
321
|
+
quoteColor: Colors['textSuccess'];
|
|
322
|
+
headerColor: Colors['textWarning'];
|
|
323
|
+
negativeColor: Colors['textDanger'];
|
|
324
|
+
positiveColor: Colors['textSuccess'];
|
|
325
|
+
keywordColor: Colors['textBrand'];
|
|
326
|
+
atomColor: Colors['textWarning'];
|
|
327
|
+
numberColor: Colors['textWarning'];
|
|
328
|
+
defColor: Colors['textDarkest'];
|
|
329
|
+
variableColor: Colors['textBrand'];
|
|
330
|
+
secondaryVariableColor: Colors['textWarning'];
|
|
331
|
+
typeColor: Colors['textBrand'];
|
|
332
|
+
commentColor: Colors['textDark'];
|
|
333
|
+
stringColor: Colors['textBrand'];
|
|
334
|
+
secondaryStringColor: Colors['textDanger'];
|
|
335
|
+
metaColor: Colors['textDarkest'];
|
|
336
|
+
qualifierColor: Colors['textSuccess'];
|
|
337
|
+
builtInColor: Colors['textWarning'];
|
|
338
|
+
bracketColor: Colors['borderDark'];
|
|
339
|
+
tagColor: Colors['textSuccess'];
|
|
340
|
+
attributeColor: Colors['textBrand'];
|
|
341
|
+
hrColor: Colors['borderDark'];
|
|
342
|
+
linkColor: Colors['textBrand'];
|
|
343
|
+
errorColor: Colors['textDanger'];
|
|
344
|
+
propertyColor: Colors['textAlert'];
|
|
345
|
+
nodeColor: Colors['textWarning'];
|
|
346
|
+
operatorColor: Colors['textDarkest'];
|
|
347
|
+
};
|
|
348
|
+
export declare type DrawerLayoutContentTheme = {
|
|
349
|
+
duration: Transitions['duration'];
|
|
350
|
+
};
|
|
351
|
+
export declare type DrawerLayoutTrayTheme = {
|
|
352
|
+
background: Colors['backgroundLightest'];
|
|
353
|
+
borderColor: Colors['borderMedium'];
|
|
354
|
+
borderWidth: Border['widthSmall'];
|
|
355
|
+
borderStyle: Border['style'];
|
|
356
|
+
zIndex: Stacking['topmost'];
|
|
357
|
+
boxShadow: Shadows['depth3'];
|
|
358
|
+
};
|
|
359
|
+
export declare type DrilldownTheme = {
|
|
360
|
+
headerTitleFontWeight: Typography['fontWeightBold'];
|
|
361
|
+
headerActionColor: Colors['textLink'];
|
|
362
|
+
labelInfoPadding: Spacing['small'];
|
|
363
|
+
};
|
|
364
|
+
export declare type FileDropTheme = {
|
|
365
|
+
backgroundColor: Colors['backgroundLightest'];
|
|
366
|
+
borderRadius: Border['radiusLarge'];
|
|
367
|
+
borderWidth: Border['widthMedium'];
|
|
368
|
+
borderStyle: string;
|
|
369
|
+
borderColor: Colors['borderMedium'];
|
|
370
|
+
hoverBorderColor: Colors['borderBrand'];
|
|
371
|
+
acceptedColor: Colors['textBrand'];
|
|
372
|
+
rejectedColor: Colors['textDanger'];
|
|
373
|
+
};
|
|
374
|
+
export declare type FlexTheme = {
|
|
375
|
+
fontFamily: Typography['fontFamily'];
|
|
376
|
+
};
|
|
377
|
+
export declare type FormFieldGroupTheme = {
|
|
378
|
+
borderWidth: Border['widthSmall'];
|
|
379
|
+
borderStyle: Border['style'];
|
|
380
|
+
borderColor: string;
|
|
381
|
+
borderRadius: Border['radiusMedium'];
|
|
382
|
+
errorBorderColor: Colors['borderDanger'];
|
|
383
|
+
errorFieldsPadding: Spacing['xSmall'];
|
|
384
|
+
};
|
|
385
|
+
export declare type FormFieldLabelTheme = {
|
|
386
|
+
color: Colors['textDarkest'];
|
|
387
|
+
fontFamily: Typography['fontFamily'];
|
|
388
|
+
fontWeight: Typography['fontWeightBold'];
|
|
389
|
+
fontSize: Typography['fontSizeMedium'];
|
|
390
|
+
lineHeight: Typography['lineHeightFit'];
|
|
391
|
+
};
|
|
392
|
+
export declare type FormFieldMessageTheme = {
|
|
393
|
+
colorHint: Colors['textDarkest'];
|
|
394
|
+
colorError: Colors['textDanger'];
|
|
395
|
+
colorSuccess: Colors['textSuccess'];
|
|
396
|
+
fontFamily: Typography['fontFamily'];
|
|
397
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
398
|
+
fontSize: Typography['fontSizeSmall'];
|
|
399
|
+
lineHeight: Typography['lineHeight'];
|
|
400
|
+
};
|
|
401
|
+
export declare type FormFieldMessagesTheme = {
|
|
402
|
+
topMargin: Spacing['xxSmall'];
|
|
403
|
+
};
|
|
404
|
+
export declare type GridTheme = {
|
|
405
|
+
spacingSmall: Spacing['small'];
|
|
406
|
+
spacingMedium: Spacing['medium'];
|
|
407
|
+
spacingLarge: Spacing['large'];
|
|
408
|
+
} & Media;
|
|
409
|
+
export declare type HeadingTheme = {
|
|
410
|
+
lineHeight: Typography['lineHeightFit'];
|
|
411
|
+
h1FontSize: Typography['fontSizeXXLarge'];
|
|
412
|
+
h1FontWeight: Typography['fontWeightLight'];
|
|
413
|
+
h1FontFamily: Typography['fontFamily'];
|
|
414
|
+
h2FontSize: Typography['fontSizeXLarge'];
|
|
415
|
+
h2FontWeight: Typography['fontWeightNormal'];
|
|
416
|
+
h2FontFamily: Typography['fontFamily'];
|
|
417
|
+
h3FontSize: Typography['fontSizeLarge'];
|
|
418
|
+
h3FontWeight: Typography['fontWeightBold'];
|
|
419
|
+
h3FontFamily: Typography['fontFamily'];
|
|
420
|
+
h4FontSize: Typography['fontSizeMedium'];
|
|
421
|
+
h4FontWeight: Typography['fontWeightBold'];
|
|
422
|
+
h4FontFamily: Typography['fontFamily'];
|
|
423
|
+
h5FontSize: Typography['fontSizeSmall'];
|
|
424
|
+
h5FontWeight: Typography['fontWeightNormal'];
|
|
425
|
+
h5FontFamily: Typography['fontFamily'];
|
|
426
|
+
primaryInverseColor: Colors['textLightest'];
|
|
427
|
+
primaryColor: Colors['textDarkest'];
|
|
428
|
+
secondaryColor: Colors['textDark'];
|
|
429
|
+
secondaryInverseColor: Colors['textLight'];
|
|
430
|
+
borderPadding: Spacing['xxxSmall'];
|
|
431
|
+
borderColor: Colors['borderMedium'];
|
|
432
|
+
borderWidth: Border['widthSmall'];
|
|
433
|
+
borderStyle: Border['style'];
|
|
434
|
+
};
|
|
435
|
+
export declare type ImgTheme = {
|
|
436
|
+
effectTransitionDuration: string;
|
|
437
|
+
imageBlurAmount: string | 0;
|
|
438
|
+
};
|
|
439
|
+
export declare type LinkTheme = {
|
|
440
|
+
fontFamily: Typography['fontFamily'];
|
|
441
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
442
|
+
color: Colors['textLink'];
|
|
443
|
+
textDecorationWithinText: string;
|
|
444
|
+
hoverTextDecorationWithinText: string;
|
|
445
|
+
textDecorationOutsideText: string;
|
|
446
|
+
hoverTextDecorationOutsideText: string;
|
|
447
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
448
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
449
|
+
focusOutlineStyle: Border['style'];
|
|
450
|
+
hoverColor: Colors['textLink'];
|
|
451
|
+
colorInverse: Colors['textLight'];
|
|
452
|
+
focusInverseOutlineColor: Colors['borderLightest'];
|
|
453
|
+
focusInverseIconOutlineColor: Colors['borderLightest'];
|
|
454
|
+
iconSize: string;
|
|
455
|
+
iconPlusTextMargin: Spacing['xxSmall'];
|
|
456
|
+
};
|
|
457
|
+
export declare type InlineListItemTheme = {
|
|
458
|
+
fontFamily: Typography['fontFamily'];
|
|
459
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
460
|
+
fontSizeSmall: Typography['fontSizeSmall'];
|
|
461
|
+
fontSizeMedium: Typography['fontSizeMedium'];
|
|
462
|
+
fontSizeLarge: Typography['fontSizeLarge'];
|
|
463
|
+
color: Colors['textDark'];
|
|
464
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
465
|
+
noneSpacing: Spacing['xSmall'];
|
|
466
|
+
pipeSpacing: Spacing['xSmall'];
|
|
467
|
+
slashSpacing: Spacing['xSmall'];
|
|
468
|
+
arrowSpacing: Spacing['xSmall'];
|
|
469
|
+
marginBottomDefault: Spacing['xxxSmall'];
|
|
470
|
+
spacingXXXSmall: Spacing['xxxSmall'];
|
|
471
|
+
spacingXXSmall: Spacing['xxSmall'];
|
|
472
|
+
spacingXSmall: Spacing['xSmall'];
|
|
473
|
+
spacingSmall: Spacing['small'];
|
|
474
|
+
spacingMedium: Spacing['medium'];
|
|
475
|
+
spacingLarge: Spacing['large'];
|
|
476
|
+
spacingXLarge: Spacing['xLarge'];
|
|
477
|
+
spacingXXLarge: Spacing['xxLarge'];
|
|
478
|
+
};
|
|
479
|
+
export declare type ListItemTheme = {
|
|
480
|
+
fontFamily: Typography['fontFamily'];
|
|
481
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
482
|
+
lineHeight: Typography['lineHeight'];
|
|
483
|
+
fontSizeSmall: Typography['fontSizeSmall'];
|
|
484
|
+
fontSizeMedium: Typography['fontSizeMedium'];
|
|
485
|
+
fontSizeLarge: Typography['fontSizeLarge'];
|
|
486
|
+
color: Colors['textDarkest'];
|
|
487
|
+
spacingXXXSmall: Spacing['xxxSmall'];
|
|
488
|
+
spacingXXSmall: Spacing['xxSmall'];
|
|
489
|
+
spacingXSmall: Spacing['xSmall'];
|
|
490
|
+
spacingSmall: Spacing['small'];
|
|
491
|
+
spacingMedium: Spacing['medium'];
|
|
492
|
+
spacingLarge: Spacing['large'];
|
|
493
|
+
spacingXLarge: Spacing['xLarge'];
|
|
494
|
+
spacingXXLarge: Spacing['xxLarge'];
|
|
495
|
+
delimiterDashedBorder: string;
|
|
496
|
+
delimiterSolidBorder: string;
|
|
497
|
+
};
|
|
498
|
+
export declare type ListTheme = {
|
|
499
|
+
listPadding: Spacing['large'];
|
|
500
|
+
orderedNumberFontWeight: Typography['fontWeightBold'];
|
|
501
|
+
orderedNumberMargin: Spacing['xSmall'];
|
|
502
|
+
};
|
|
503
|
+
export declare type MenuItemTheme = {
|
|
504
|
+
padding: string | 0;
|
|
505
|
+
fontFamily: Typography['fontFamily'];
|
|
506
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
507
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
508
|
+
fontSize: Typography['fontSizeMedium'];
|
|
509
|
+
labelPadding: Spacing['large'];
|
|
510
|
+
labelColor: Colors['textDarkest'];
|
|
511
|
+
background: Colors['backgroundLightest'];
|
|
512
|
+
iconColor: Colors['textDarkest'];
|
|
513
|
+
iconPadding: Spacing['small'];
|
|
514
|
+
activeBackground: Colors['backgroundBrand'];
|
|
515
|
+
activeLabelColor: Colors['textLightest'];
|
|
516
|
+
activeIconColor: Colors['textLightest'];
|
|
517
|
+
};
|
|
518
|
+
export declare type MenuGroupTheme = {
|
|
519
|
+
fontSize: Typography['fontSizeMedium'];
|
|
520
|
+
fontFamily: Typography['fontFamily'];
|
|
521
|
+
fontWeight: Typography['fontWeightBold'];
|
|
522
|
+
padding: string | 0;
|
|
523
|
+
color: Colors['textDarkest'];
|
|
524
|
+
background: Colors['backgroundLightest'];
|
|
525
|
+
};
|
|
526
|
+
export declare type MenuSeparatorTheme = {
|
|
527
|
+
background: Colors['backgroundMedium'];
|
|
528
|
+
height: Border['widthSmall'];
|
|
529
|
+
margin: string | 0;
|
|
530
|
+
};
|
|
531
|
+
export declare type MenuTheme = {
|
|
532
|
+
minWidth: Breakpoints['xxSmall'];
|
|
533
|
+
maxWidth: Breakpoints['xSmall'];
|
|
534
|
+
background: Colors['backgroundLightest'];
|
|
535
|
+
focusBorderStyle: Border['style'];
|
|
536
|
+
focusBorderWidth: Border['widthMedium'];
|
|
537
|
+
focusBorderColor: Colors['borderBrand'];
|
|
538
|
+
focusBorderRadius: Border['radiusMedium'];
|
|
539
|
+
};
|
|
540
|
+
export declare type MetricTheme = {
|
|
541
|
+
padding: string | 0;
|
|
542
|
+
fontFamily: Typography['fontFamily'];
|
|
543
|
+
valueColor: Colors['textDarkest'];
|
|
544
|
+
valueFontSize: Typography['fontSizeXLarge'];
|
|
545
|
+
valueFontWeight: Typography['fontWeightBold'];
|
|
546
|
+
labelColor: Colors['textDarkest'];
|
|
547
|
+
labelFontSize: Typography['fontSizeXSmall'];
|
|
548
|
+
};
|
|
549
|
+
export declare type MetricGroupTheme = {
|
|
550
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
551
|
+
};
|
|
552
|
+
export declare type ModalBodyTheme = {
|
|
553
|
+
inverseBackground: Colors['backgroundBrandSecondary'];
|
|
554
|
+
};
|
|
555
|
+
export declare type ModalFooterTheme = {
|
|
556
|
+
background: Colors['backgroundLight'];
|
|
557
|
+
borderColor: Colors['borderMedium'];
|
|
558
|
+
borderWidth: Border['widthSmall'];
|
|
559
|
+
borderRadius: Border['radiusMedium'];
|
|
560
|
+
padding: Spacing['small'];
|
|
561
|
+
inverseBackground: Colors['backgroundDarkest'];
|
|
562
|
+
inverseBorderColor: Colors['borderDarkest'];
|
|
563
|
+
};
|
|
564
|
+
export declare type ModalHeaderTheme = {
|
|
565
|
+
background: Colors['backgroundLightest'];
|
|
566
|
+
borderColor: Colors['borderMedium'];
|
|
567
|
+
padding: Spacing['medium'];
|
|
568
|
+
paddingCompact: Spacing['small'];
|
|
569
|
+
inverseBackground: Colors['backgroundDarkest'];
|
|
570
|
+
inverseBorderColor: Colors['backgroundDarkest'];
|
|
571
|
+
};
|
|
572
|
+
export declare type ModalTheme = {
|
|
573
|
+
fontFamily: Typography['fontFamily'];
|
|
574
|
+
textColor: Colors['textDarkest'];
|
|
575
|
+
background: Colors['backgroundLightest'];
|
|
576
|
+
borderColor: Colors['borderMedium'];
|
|
577
|
+
borderRadius: Border['radiusMedium'];
|
|
578
|
+
inverseBackground: Colors['backgroundBrandSecondary'];
|
|
579
|
+
inverseTextColor: Colors['textLightest'];
|
|
580
|
+
autoMinWidth: Breakpoints['xSmall'];
|
|
581
|
+
smallMaxWidth: Breakpoints['small'];
|
|
582
|
+
mediumMaxWidth: Breakpoints['medium'];
|
|
583
|
+
largeMaxWidth: Breakpoints['large'];
|
|
584
|
+
boxShadow: Shadows['depth3'];
|
|
585
|
+
zIndex: Stacking['topmost'];
|
|
586
|
+
};
|
|
587
|
+
export declare type TransitionTheme = {
|
|
588
|
+
duration: Transitions['duration'];
|
|
589
|
+
timing: Transitions['timing'];
|
|
590
|
+
};
|
|
591
|
+
export declare type AppNavItemTheme = {
|
|
592
|
+
fontFamily: Typography['fontFamily'];
|
|
593
|
+
fontSize: string | 0;
|
|
594
|
+
fontWeight: Typography['fontWeightBold'];
|
|
595
|
+
textColor: Colors['textLink'];
|
|
596
|
+
textColorSelected: Colors['textDarkest'];
|
|
597
|
+
height: string | 0;
|
|
598
|
+
padding: Spacing['small'];
|
|
599
|
+
backgroundColor: Colors['backgroundLightest'];
|
|
600
|
+
};
|
|
601
|
+
export declare type AppNavTheme = {
|
|
602
|
+
fontFamily: Typography['fontFamily'];
|
|
603
|
+
height: string | 0;
|
|
604
|
+
borderColor: Colors['borderMedium'];
|
|
605
|
+
borderStyle: Border['style'];
|
|
606
|
+
borderWidth: Border['widthSmall'];
|
|
607
|
+
horizontalMargin: Spacing['xxSmall'];
|
|
608
|
+
menuTriggerWidth: string | 0;
|
|
609
|
+
};
|
|
610
|
+
export declare type NavigationItemTheme = {
|
|
611
|
+
fontSize: Typography['fontSizeSmall'];
|
|
612
|
+
fontFamily: Typography['fontFamily'];
|
|
613
|
+
fontWeight: Typography['fontWeightLight'];
|
|
614
|
+
fontColor: Colors['textLightest'];
|
|
615
|
+
iconSize: string | 0;
|
|
616
|
+
iconColor: Colors['textLightest'];
|
|
617
|
+
lineHeight: Typography['lineHeight'];
|
|
618
|
+
backgroundColor: string;
|
|
619
|
+
linkTextDecoration: string;
|
|
620
|
+
hoverBackgroundColor: Colors['backgroundDarkest'];
|
|
621
|
+
outerFocusOutline: string;
|
|
622
|
+
innerFocusOutline: string;
|
|
623
|
+
selectedFontColor: Colors['textBrand'];
|
|
624
|
+
selectedIconColor: Colors['textBrand'];
|
|
625
|
+
selectedBackgroundColor: Colors['backgroundLightest'];
|
|
626
|
+
selectedOuterFocusOutline: string;
|
|
627
|
+
selectedInnerFocusOutline: string;
|
|
628
|
+
contentPadding: Spacing['xxSmall'];
|
|
629
|
+
};
|
|
630
|
+
export declare type NavigationTheme = {
|
|
631
|
+
fontColor: Colors['textLightest'];
|
|
632
|
+
backgroundColor: Colors['backgroundBrandSecondary'];
|
|
633
|
+
width: string;
|
|
634
|
+
minimizedWidth: string;
|
|
635
|
+
fill: Colors['textLightest'];
|
|
636
|
+
focusOutlineInnerWidth: Border['widthMedium'];
|
|
637
|
+
focusOutlineOuterWidth: Border['widthSmall'];
|
|
638
|
+
focusOutlineInnerColor: Colors['borderBrand'];
|
|
639
|
+
focusOutlineOuterColor: Colors['borderLightest'];
|
|
640
|
+
marginBottom: Spacing['small'];
|
|
641
|
+
toggleTransition: Transitions['duration'];
|
|
642
|
+
};
|
|
643
|
+
export declare type NumberInputTheme = {
|
|
644
|
+
fontFamily: Typography['fontFamily'];
|
|
645
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
646
|
+
borderWidth: Border['widthSmall'];
|
|
647
|
+
borderStyle: Border['style'];
|
|
648
|
+
borderColor: Colors['borderMedium'];
|
|
649
|
+
borderRadius: Border['radiusMedium'];
|
|
650
|
+
color: Colors['textDarkest'];
|
|
651
|
+
background: Colors['backgroundLightest'];
|
|
652
|
+
padding: string | 0;
|
|
653
|
+
arrowsContainerWidth: string | 0;
|
|
654
|
+
arrowsColor: Colors['textDarkest'];
|
|
655
|
+
arrowsBackgroundColor: Colors['backgroundLight'];
|
|
656
|
+
arrowsHoverBackgroundColor: Colors['backgroundMedium'];
|
|
657
|
+
arrowsBorderColor: Colors['borderMedium'];
|
|
658
|
+
arrowsActiveBoxShadow: string;
|
|
659
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
660
|
+
focusOutlineStyle: Border['style'];
|
|
661
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
662
|
+
errorBorderColor: Colors['borderDanger'];
|
|
663
|
+
errorOutlineColor: Colors['borderDanger'];
|
|
664
|
+
placeholderColor: Colors['textDark'];
|
|
665
|
+
mediumFontSize: Typography['fontSizeMedium'];
|
|
666
|
+
mediumHeight: Forms['inputHeightMedium'];
|
|
667
|
+
largeFontSize: Typography['fontSizeLarge'];
|
|
668
|
+
largeHeight: Forms['inputHeightLarge'];
|
|
669
|
+
};
|
|
670
|
+
export declare type OptionsItemTheme = {
|
|
671
|
+
fontSize: Typography['fontSizeMedium'];
|
|
672
|
+
fontFamily: Typography['fontFamily'];
|
|
673
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
674
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
675
|
+
color: Colors['textDarkest'];
|
|
676
|
+
background: Colors['backgroundLightest'];
|
|
677
|
+
highlightedLabelColor: Colors['textLightest'];
|
|
678
|
+
highlightedBackground: Colors['backgroundBrand'];
|
|
679
|
+
selectedLabelColor: Colors['textLightest'];
|
|
680
|
+
selectedBackground: Colors['backgroundDark'];
|
|
681
|
+
padding: string | 0;
|
|
682
|
+
iconPadding: Spacing['small'];
|
|
683
|
+
nestedPadding: Spacing['medium'];
|
|
684
|
+
beforeLabelContentVOffset: string | 0;
|
|
685
|
+
afterLabelContentVOffset: string | 0;
|
|
686
|
+
descriptionFontSize: Typography['fontSizeSmall'];
|
|
687
|
+
descriptionFontWeight: Typography['fontWeightNormal'];
|
|
688
|
+
descriptionLineHeight: Typography['lineHeight'];
|
|
689
|
+
descriptionPaddingStart: string | 0;
|
|
690
|
+
descriptionColor: Colors['textDark'];
|
|
691
|
+
};
|
|
692
|
+
export declare type OptionsSeparatorTheme = {
|
|
693
|
+
background: Colors['backgroundMedium'];
|
|
694
|
+
height: Border['widthSmall'];
|
|
695
|
+
margin: string | 0;
|
|
696
|
+
};
|
|
697
|
+
export declare type OptionsTheme = {
|
|
698
|
+
labelFontWeight: Typography['fontWeightBold'];
|
|
699
|
+
background: Colors['backgroundLightest'];
|
|
700
|
+
labelColor: Colors['textDarkest'];
|
|
701
|
+
labelPadding: string | 0;
|
|
702
|
+
nestedLabelPadding: string | 0;
|
|
703
|
+
};
|
|
704
|
+
export declare type MaskTheme = {
|
|
705
|
+
zIndex: Stacking['topmost'];
|
|
706
|
+
background: string;
|
|
707
|
+
borderColor: string;
|
|
708
|
+
focusBorderColor: Colors['borderBrand'];
|
|
709
|
+
borderRadius: Border['radiusMedium'];
|
|
710
|
+
borderWidth: Border['widthSmall'];
|
|
711
|
+
};
|
|
712
|
+
export declare type PagesTheme = {
|
|
713
|
+
fontSize: Typography['fontSizeMedium'];
|
|
714
|
+
fontFamily: Typography['fontFamily'];
|
|
715
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
716
|
+
color: Colors['textDarkest'];
|
|
717
|
+
background: Colors['backgroundLightest'];
|
|
718
|
+
};
|
|
719
|
+
export declare type PaginationPageInputTheme = {
|
|
720
|
+
inputSpacing: Spacing['xSmall'];
|
|
721
|
+
inputWidth: string;
|
|
722
|
+
};
|
|
723
|
+
export declare type PillTheme = {
|
|
724
|
+
fontFamily: Typography['fontFamily'];
|
|
725
|
+
padding: string | 0;
|
|
726
|
+
height: string | 0;
|
|
727
|
+
background: Colors['backgroundLightest'];
|
|
728
|
+
textTransformStyle: string;
|
|
729
|
+
textFontSize: Typography['fontSizeXSmall'];
|
|
730
|
+
textFontWeight: Typography['fontWeightBold'];
|
|
731
|
+
maxWidth: string | 0;
|
|
732
|
+
primaryColor: Colors['textDark'];
|
|
733
|
+
infoColor: Colors['textInfo'];
|
|
734
|
+
dangerColor: Colors['textDanger'];
|
|
735
|
+
successColor: Colors['textSuccess'];
|
|
736
|
+
warningColor: Colors['textWarning'];
|
|
737
|
+
alertColor: Colors['textAlert'];
|
|
738
|
+
borderWidth: Border['widthSmall'];
|
|
739
|
+
borderStyle: Border['style'];
|
|
740
|
+
borderRadius: string | 0;
|
|
741
|
+
};
|
|
742
|
+
export declare type PositionTheme = {
|
|
743
|
+
zIndex: Stacking['topmost'];
|
|
744
|
+
};
|
|
745
|
+
export declare type ProgressBarTheme = {
|
|
746
|
+
fontFamily: Typography['fontFamily'];
|
|
747
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
748
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
749
|
+
fontSize: Typography['fontSizeMedium'];
|
|
750
|
+
xSmallHeight: Spacing['xSmall'];
|
|
751
|
+
xSmallValueFontSize: Typography['fontSizeXSmall'];
|
|
752
|
+
smallHeight: string;
|
|
753
|
+
smallValueFontSize: Typography['fontSizeXSmall'];
|
|
754
|
+
mediumHeight: Spacing['medium'];
|
|
755
|
+
mediumValueFontSize: Typography['fontSizeSmall'];
|
|
756
|
+
largeHeight: Spacing['large'];
|
|
757
|
+
largeValueFontSize: Typography['fontSizeMedium'];
|
|
758
|
+
valuePadding: string | 0;
|
|
759
|
+
meterColorBrand: Colors['backgroundBrand'];
|
|
760
|
+
meterColorBrandInverse: Colors['backgroundBrand'];
|
|
761
|
+
meterColorInfo: Colors['backgroundInfo'];
|
|
762
|
+
meterColorInfoInverse: Colors['backgroundInfo'];
|
|
763
|
+
meterColorSuccess: Colors['backgroundSuccess'];
|
|
764
|
+
meterColorSuccessInverse: Colors['backgroundSuccess'];
|
|
765
|
+
meterColorDanger: Colors['backgroundDanger'];
|
|
766
|
+
meterColorDangerInverse: Colors['backgroundDanger'];
|
|
767
|
+
meterColorAlert: Colors['backgroundAlert'];
|
|
768
|
+
meterColorAlertInverse: Colors['backgroundAlert'];
|
|
769
|
+
meterColorWarning: Colors['backgroundWarning'];
|
|
770
|
+
meterColorWarningInverse: Colors['backgroundWarning'];
|
|
771
|
+
meterBorderWidthInverse: Border['widthSmall'];
|
|
772
|
+
meterBorderColorInverse: 'transparent';
|
|
773
|
+
trackColor: Colors['backgroundLightest'];
|
|
774
|
+
trackColorInverse: string;
|
|
775
|
+
trackBottomBorderWidth: Border['widthSmall'];
|
|
776
|
+
trackBottomBorderColor: Colors['borderMedium'];
|
|
777
|
+
trackBottomBorderColorInverse: Colors['borderLightest'];
|
|
778
|
+
};
|
|
779
|
+
export declare type ProgressCircleTheme = {
|
|
780
|
+
fontFamily: Typography['fontFamily'];
|
|
781
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
782
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
783
|
+
xSmallSize: string;
|
|
784
|
+
xSmallRadius: string;
|
|
785
|
+
xSmallCircumference: string;
|
|
786
|
+
xSmallTransform: string;
|
|
787
|
+
xSmallStrokeWidth: string;
|
|
788
|
+
xSmallBorderOffset: string;
|
|
789
|
+
smallSize: string;
|
|
790
|
+
smallRadius: string;
|
|
791
|
+
smallCircumference: string;
|
|
792
|
+
smallTransform: string;
|
|
793
|
+
smallStrokeWidth: string;
|
|
794
|
+
smallBorderOffset: string;
|
|
795
|
+
mediumSize: string;
|
|
796
|
+
mediumRadius: string;
|
|
797
|
+
mediumCircumference: string;
|
|
798
|
+
mediumTransform: string;
|
|
799
|
+
mediumStrokeWidth: string;
|
|
800
|
+
mediumBorderOffset: string;
|
|
801
|
+
largeSize: string;
|
|
802
|
+
largeRadius: string;
|
|
803
|
+
largeCircumference: string;
|
|
804
|
+
largeTransform: string;
|
|
805
|
+
largeStrokeWidth: string;
|
|
806
|
+
largeBorderOffset: string;
|
|
807
|
+
color: Colors['textDarkest'];
|
|
808
|
+
colorInverse: Colors['textLightest'];
|
|
809
|
+
trackColor: Colors['backgroundLightest'];
|
|
810
|
+
trackColorInverse: string;
|
|
811
|
+
trackBorderColor: Colors['borderMedium'];
|
|
812
|
+
trackBorderColorInverse: Colors['borderLightest'];
|
|
813
|
+
meterColorBrand: Colors['backgroundBrand'];
|
|
814
|
+
meterColorBrandInverse: Colors['backgroundBrand'];
|
|
815
|
+
meterColorInfo: Colors['backgroundInfo'];
|
|
816
|
+
meterColorInfoInverse: Colors['backgroundInfo'];
|
|
817
|
+
meterColorSuccess: Colors['backgroundSuccess'];
|
|
818
|
+
meterColorSuccessInverse: Colors['backgroundSuccess'];
|
|
819
|
+
meterColorDanger: Colors['backgroundDanger'];
|
|
820
|
+
meterColorDangerInverse: Colors['backgroundDanger'];
|
|
821
|
+
meterColorAlert: Colors['backgroundAlert'];
|
|
822
|
+
meterColorAlertInverse: Colors['backgroundAlert'];
|
|
823
|
+
meterColorWarning: Colors['backgroundWarning'];
|
|
824
|
+
meterColorWarningInverse: Colors['backgroundWarning'];
|
|
825
|
+
};
|
|
826
|
+
export declare type RadioInputTheme = {
|
|
827
|
+
labelColor: Colors['textDarkest'];
|
|
828
|
+
labelFontFamily: Typography['fontFamily'];
|
|
829
|
+
labelFontWeight: Typography['fontWeightNormal'];
|
|
830
|
+
labelLineHeight: Typography['lineHeightCondensed'];
|
|
831
|
+
background: Colors['backgroundLightest'];
|
|
832
|
+
borderWidth: Border['widthSmall'];
|
|
833
|
+
borderColor: Colors['borderDarkest'];
|
|
834
|
+
hoverBorderColor: Colors['borderDarkest'];
|
|
835
|
+
controlSize: string | 0;
|
|
836
|
+
focusBorderColor: Colors['borderBrand'];
|
|
837
|
+
focusBorderWidth: Border['widthMedium'];
|
|
838
|
+
focusBorderStyle: Border['style'];
|
|
839
|
+
simpleFacadeSmallSize: string | 0;
|
|
840
|
+
simpleFacadeMediumSize: string | 0;
|
|
841
|
+
simpleFacadeLargeSize: string | 0;
|
|
842
|
+
simpleCheckedInsetSmall: string | 0;
|
|
843
|
+
simpleCheckedInsetMedium: string | 0;
|
|
844
|
+
simpleCheckedInsetLarge: string | 0;
|
|
845
|
+
simpleFontSizeSmall: Typography['fontSizeSmall'];
|
|
846
|
+
simpleFontSizeMedium: Typography['fontSizeMedium'];
|
|
847
|
+
simpleFontSizeLarge: Typography['fontSizeLarge'];
|
|
848
|
+
simpleFacadeMarginEnd: Spacing['xSmall'];
|
|
849
|
+
toggleBorderRadius: Border['radiusSmall'];
|
|
850
|
+
toggleBorderWidth: Border['widthLarge'];
|
|
851
|
+
toggleBackgroundSuccess: Colors['backgroundSuccess'];
|
|
852
|
+
toggleBackgroundOff: Colors['backgroundDark'];
|
|
853
|
+
toggleBackgroundDanger: Colors['backgroundDanger'];
|
|
854
|
+
toggleBackgroundWarning: Colors['backgroundWarning'];
|
|
855
|
+
toggleHandleText: Colors['textLightest'];
|
|
856
|
+
toggleSmallHeight: Forms['inputHeightSmall'];
|
|
857
|
+
toggleMediumHeight: Forms['inputHeightMedium'];
|
|
858
|
+
toggleLargeHeight: Forms['inputHeightLarge'];
|
|
859
|
+
toggleShadow: Shadows['depth1'];
|
|
860
|
+
toggleSmallFontSize: Typography['fontSizeXSmall'];
|
|
861
|
+
toggleMediumFontSize: Typography['fontSizeSmall'];
|
|
862
|
+
toggleLargeFontSize: Typography['fontSizeMedium'];
|
|
863
|
+
};
|
|
864
|
+
export declare type RangeInputTheme = {
|
|
865
|
+
minWidth: string | 0;
|
|
866
|
+
handleSize: string | 0;
|
|
867
|
+
handleBackground: Colors['backgroundBrand'];
|
|
868
|
+
handleShadowColor: Colors['borderBrand'];
|
|
869
|
+
handleHoverBackground: Colors['backgroundBrand'];
|
|
870
|
+
handleFocusBackground: Colors['backgroundBrand'];
|
|
871
|
+
handleFocusOutlineColor: Colors['borderBrand'];
|
|
872
|
+
handleFocusOutlineWidth: string | 0;
|
|
873
|
+
trackBackground: Colors['backgroundDark'];
|
|
874
|
+
valueColor: Colors['textLightest'];
|
|
875
|
+
valueFontFamily: Typography['fontFamily'];
|
|
876
|
+
valueFontWeight: Typography['fontWeightNormal'];
|
|
877
|
+
valueSmallFontSize: Typography['fontSizeSmall'];
|
|
878
|
+
valueSmallPadding: string | 0;
|
|
879
|
+
valueSmallLineHeight: Forms['inputHeightSmall'];
|
|
880
|
+
valueMediumFontSize: Typography['fontSizeMedium'];
|
|
881
|
+
valueMediumPadding: string | 0;
|
|
882
|
+
valueMediumLineHeight: Forms['inputHeightMedium'];
|
|
883
|
+
valueLargeFontSize: Typography['fontSizeLarge'];
|
|
884
|
+
valueLargePadding: string | 0;
|
|
885
|
+
valueLargeLineHeight: Forms['inputHeightLarge'];
|
|
886
|
+
};
|
|
887
|
+
export declare type RatingIconTheme = {
|
|
888
|
+
iconMargin: Spacing['xxxSmall'];
|
|
889
|
+
iconEmptyColor: Colors['textBrand'];
|
|
890
|
+
iconFilledColor: Colors['textBrand'];
|
|
891
|
+
smallIconFontSize: Typography['fontSizeMedium'];
|
|
892
|
+
mediumIconFontSize: Typography['fontSizeLarge'];
|
|
893
|
+
largeIconFontSize: Typography['fontSizeXXLarge'];
|
|
894
|
+
};
|
|
895
|
+
export declare type SelectTheme = {
|
|
896
|
+
fontSize: Typography['fontSizeMedium'];
|
|
897
|
+
fontFamily: Typography['fontFamily'];
|
|
898
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
899
|
+
smallIconSize: Typography['fontSizeXSmall'];
|
|
900
|
+
mediumIconSize: Typography['fontSizeSmall'];
|
|
901
|
+
largeIconSize: Typography['fontSizeMedium'];
|
|
902
|
+
color: Colors['textDarkest'];
|
|
903
|
+
background: Colors['backgroundLightest'];
|
|
904
|
+
};
|
|
905
|
+
export declare type SpinnerTheme = {
|
|
906
|
+
trackColor: Colors['backgroundLight'];
|
|
907
|
+
color: Colors['backgroundBrand'];
|
|
908
|
+
xSmallSize: string | 0;
|
|
909
|
+
xSmallBorderWidth: string | 0;
|
|
910
|
+
smallSize: string | 0;
|
|
911
|
+
smallBorderWidth: string | 0;
|
|
912
|
+
mediumSize: string | 0;
|
|
913
|
+
mediumBorderWidth: string | 0;
|
|
914
|
+
largeSize: string | 0;
|
|
915
|
+
largeBorderWidth: string | 0;
|
|
916
|
+
inverseColor: Colors['backgroundBrand'];
|
|
917
|
+
};
|
|
918
|
+
export declare type InlineSVGTheme = {
|
|
919
|
+
primaryInverseColor: Colors['textLightest'];
|
|
920
|
+
primaryColor: Colors['textDarkest'];
|
|
921
|
+
secondaryColor: Colors['textDark'];
|
|
922
|
+
secondaryInverseColor: Colors['textLight'];
|
|
923
|
+
warningColor: Colors['textWarning'];
|
|
924
|
+
brandColor: Colors['textBrand'];
|
|
925
|
+
errorColor: Colors['textDanger'];
|
|
926
|
+
alertColor: Colors['textAlert'];
|
|
927
|
+
successColor: Colors['textSuccess'];
|
|
928
|
+
};
|
|
929
|
+
export declare type SVGIconTheme = {
|
|
930
|
+
sizeXSmall: string | 0;
|
|
931
|
+
sizeSmall: string | 0;
|
|
932
|
+
sizeMedium: string | 0;
|
|
933
|
+
sizeLarge: string | 0;
|
|
934
|
+
sizeXLarge: string | 0;
|
|
935
|
+
};
|
|
936
|
+
export declare type TableBodyTheme = {
|
|
937
|
+
fontSize: Typography['fontSizeMedium'];
|
|
938
|
+
fontFamily: Typography['fontFamily'];
|
|
939
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
940
|
+
color: Colors['textDarkest'];
|
|
941
|
+
background: Colors['backgroundLightest'];
|
|
942
|
+
};
|
|
943
|
+
export declare type TableCellTheme = {
|
|
944
|
+
fontSize: Typography['fontSizeMedium'];
|
|
945
|
+
fontFamily: Typography['fontFamily'];
|
|
946
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
947
|
+
color: Colors['textDarkest'];
|
|
948
|
+
background: Colors['backgroundLightest'];
|
|
949
|
+
borderColor: Colors['borderMedium'];
|
|
950
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
951
|
+
padding: string | 0;
|
|
952
|
+
};
|
|
953
|
+
export declare type TableColHeaderTheme = {
|
|
954
|
+
fontSize: Typography['fontSizeMedium'];
|
|
955
|
+
fontFamily: Typography['fontFamily'];
|
|
956
|
+
color: Colors['textDarkest'];
|
|
957
|
+
background: Colors['backgroundLightest'];
|
|
958
|
+
borderColor: Colors['borderMedium'];
|
|
959
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
960
|
+
padding: string | 0;
|
|
961
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
962
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
963
|
+
focusOutlineStyle: Border['style'];
|
|
964
|
+
};
|
|
965
|
+
export declare type TableHeadTheme = {
|
|
966
|
+
fontSize: Typography['fontSizeMedium'];
|
|
967
|
+
fontFamily: Typography['fontFamily'];
|
|
968
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
969
|
+
color: Colors['textDarkest'];
|
|
970
|
+
background: Colors['backgroundLightest'];
|
|
971
|
+
};
|
|
972
|
+
export declare type TableRowTheme = {
|
|
973
|
+
fontSize: Typography['fontSizeMedium'];
|
|
974
|
+
fontFamily: Typography['fontFamily'];
|
|
975
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
976
|
+
color: Colors['textDarkest'];
|
|
977
|
+
background: Colors['backgroundLightest'];
|
|
978
|
+
borderColor: Colors['borderMedium'];
|
|
979
|
+
hoverBorderColor: Colors['borderBrand'];
|
|
980
|
+
padding: string | 0;
|
|
981
|
+
};
|
|
982
|
+
export declare type TableRowHeaderTheme = {
|
|
983
|
+
fontSize: Typography['fontSizeMedium'];
|
|
984
|
+
fontFamily: Typography['fontFamily'];
|
|
985
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
986
|
+
color: Colors['textDarkest'];
|
|
987
|
+
background: Colors['backgroundLightest'];
|
|
988
|
+
borderColor: Colors['borderMedium'];
|
|
989
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
990
|
+
padding: string | 0;
|
|
991
|
+
};
|
|
992
|
+
export declare type TableTheme = {
|
|
993
|
+
fontSize: Typography['fontSizeMedium'];
|
|
994
|
+
fontFamily: Typography['fontFamily'];
|
|
995
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
996
|
+
color: Colors['textDarkest'];
|
|
997
|
+
background: Colors['backgroundLightest'];
|
|
998
|
+
};
|
|
999
|
+
export declare type TabsPanelTheme = {
|
|
1000
|
+
fontSize: Typography['fontSizeMedium'];
|
|
1001
|
+
fontFamily: Typography['fontFamily'];
|
|
1002
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
1003
|
+
lineHeight: Typography['lineHeight'];
|
|
1004
|
+
color: Colors['textDarkest'];
|
|
1005
|
+
background: Colors['backgroundLightest'];
|
|
1006
|
+
borderColor: Colors['borderMedium'];
|
|
1007
|
+
borderWidth: Border['widthSmall'];
|
|
1008
|
+
borderStyle: Border['style'];
|
|
1009
|
+
};
|
|
1010
|
+
export declare type TabsTabTheme = {
|
|
1011
|
+
fontFamily: Typography['fontFamily'];
|
|
1012
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
1013
|
+
lineHeight: Typography['lineHeightCondensed'];
|
|
1014
|
+
fontSize: Typography['fontSizeMedium'];
|
|
1015
|
+
defaultColor: Colors['textDarkest'];
|
|
1016
|
+
defaultHoverBorderColor: Colors['borderMedium'];
|
|
1017
|
+
defaultSelectedBorderColor: Colors['borderBrand'];
|
|
1018
|
+
secondaryColor: Colors['textDarkest'];
|
|
1019
|
+
secondarySelectedBackground: Colors['backgroundLightest'];
|
|
1020
|
+
secondarySelectedBorderColor: Colors['borderMedium'];
|
|
1021
|
+
zIndex: Stacking['above'];
|
|
1022
|
+
};
|
|
1023
|
+
export declare type TabsTheme = {
|
|
1024
|
+
defaultBackground: Colors['backgroundLightest'];
|
|
1025
|
+
scrollFadeColor: Colors['backgroundLightest'];
|
|
1026
|
+
tabVerticalOffset: Border['widthSmall'];
|
|
1027
|
+
zIndex: Stacking['above'];
|
|
1028
|
+
scrollOverlayWidthDefault: string;
|
|
1029
|
+
scrollOverlayWidthSecondary: string;
|
|
1030
|
+
};
|
|
1031
|
+
export declare type TagTheme = {
|
|
1032
|
+
fontFamily: Typography['fontFamily'];
|
|
1033
|
+
heightSmall: string | 0;
|
|
1034
|
+
heightMedium: Forms['inputHeightSmall'];
|
|
1035
|
+
heightLarge: Forms['inputHeightMedium'];
|
|
1036
|
+
fontSizeSmall: Typography['fontSizeXSmall'];
|
|
1037
|
+
fontSizeMedium: Typography['fontSizeSmall'];
|
|
1038
|
+
fontSizeLarge: Typography['fontSizeMedium'];
|
|
1039
|
+
padding: string | 0;
|
|
1040
|
+
paddingSmall: string | 0;
|
|
1041
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
1042
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
1043
|
+
focusOutlineStyle: Border['style'];
|
|
1044
|
+
maxWidth: string | 0;
|
|
1045
|
+
iconMargin: Spacing['small'];
|
|
1046
|
+
transitionTiming: string;
|
|
1047
|
+
defaultBackgroundHover: string;
|
|
1048
|
+
defaultBackground: string;
|
|
1049
|
+
defaultBorderColor: string;
|
|
1050
|
+
defaultBorderRadius: string;
|
|
1051
|
+
defaultBorderStyle: string;
|
|
1052
|
+
defaultBorderWidth: string;
|
|
1053
|
+
defaultColor: string;
|
|
1054
|
+
defaultIconColor: string;
|
|
1055
|
+
defaultIconHoverColor: string;
|
|
1056
|
+
inlineBackgroundHover: string;
|
|
1057
|
+
inlineBackground: string;
|
|
1058
|
+
inlineBorderColor: string;
|
|
1059
|
+
inlineBorderRadius: string;
|
|
1060
|
+
inlineBorderStyle: string;
|
|
1061
|
+
inlineBorderWidth: string;
|
|
1062
|
+
inlineColor: string;
|
|
1063
|
+
inlineIconColor: string;
|
|
1064
|
+
inlineIconHoverColor: string;
|
|
1065
|
+
};
|
|
1066
|
+
export declare type TextTheme = Typography & {
|
|
1067
|
+
primaryInverseColor: Colors['textLightest'];
|
|
1068
|
+
primaryColor: Colors['textDarkest'];
|
|
1069
|
+
secondaryColor: Colors['textDark'];
|
|
1070
|
+
secondaryInverseColor: Colors['textLight'];
|
|
1071
|
+
warningColor: Colors['textWarning'];
|
|
1072
|
+
brandColor: Colors['textBrand'];
|
|
1073
|
+
dangerColor: Colors['textDanger'];
|
|
1074
|
+
successColor: Colors['textSuccess'];
|
|
1075
|
+
alertColor: Colors['textAlert'];
|
|
1076
|
+
paragraphMargin: string | 0;
|
|
1077
|
+
};
|
|
1078
|
+
export declare type TextAreaTheme = {
|
|
1079
|
+
fontFamily: Typography['fontFamily'];
|
|
1080
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
1081
|
+
color: Colors['textDarkest'];
|
|
1082
|
+
background: Colors['backgroundLightest'];
|
|
1083
|
+
borderWidth: Border['widthSmall'];
|
|
1084
|
+
borderStyle: Border['style'];
|
|
1085
|
+
borderTopColor: Colors['borderMedium'];
|
|
1086
|
+
borderRightColor: Colors['borderMedium'];
|
|
1087
|
+
borderBottomColor: Colors['borderMedium'];
|
|
1088
|
+
borderLeftColor: Colors['borderMedium'];
|
|
1089
|
+
borderRadius: Border['radiusMedium'];
|
|
1090
|
+
padding: Spacing['small'];
|
|
1091
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
1092
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
1093
|
+
focusOutlineStyle: Border['style'];
|
|
1094
|
+
errorBorderColor: Colors['borderDanger'];
|
|
1095
|
+
errorOutlineColor: Colors['borderDanger'];
|
|
1096
|
+
placeholderColor: Colors['textDark'];
|
|
1097
|
+
smallFontSize: Typography['fontSizeSmall'];
|
|
1098
|
+
smallHeight: Forms['inputHeightSmall'];
|
|
1099
|
+
mediumFontSize: Typography['fontSizeMedium'];
|
|
1100
|
+
mediumHeight: Forms['inputHeightMedium'];
|
|
1101
|
+
largeFontSize: Typography['fontSizeLarge'];
|
|
1102
|
+
largeHeight: Forms['inputHeightLarge'];
|
|
1103
|
+
};
|
|
1104
|
+
export declare type TextInputTheme = {
|
|
1105
|
+
fontFamily: Typography['fontFamily'];
|
|
1106
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
1107
|
+
borderWidth: Border['widthSmall'];
|
|
1108
|
+
borderStyle: Border['style'];
|
|
1109
|
+
borderColor: Colors['borderMedium'];
|
|
1110
|
+
borderRadius: Border['radiusMedium'];
|
|
1111
|
+
color: Colors['textDarkest'];
|
|
1112
|
+
background: Colors['backgroundLightest'];
|
|
1113
|
+
padding: Spacing['small'];
|
|
1114
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
1115
|
+
focusOutlineStyle: Border['style'];
|
|
1116
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
1117
|
+
errorBorderColor: Colors['borderDanger'];
|
|
1118
|
+
errorOutlineColor: Colors['borderDanger'];
|
|
1119
|
+
placeholderColor: Colors['textDark'];
|
|
1120
|
+
smallFontSize: Typography['fontSizeSmall'];
|
|
1121
|
+
smallHeight: Forms['inputHeightSmall'];
|
|
1122
|
+
mediumFontSize: Typography['fontSizeMedium'];
|
|
1123
|
+
mediumHeight: Forms['inputHeightMedium'];
|
|
1124
|
+
largeFontSize: Typography['fontSizeLarge'];
|
|
1125
|
+
largeHeight: Forms['inputHeightLarge'];
|
|
1126
|
+
};
|
|
1127
|
+
export declare type ToggleDetailsTheme = {
|
|
1128
|
+
fontFamily: Typography['fontFamily'];
|
|
1129
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
1130
|
+
lineHeight: Typography['lineHeight'];
|
|
1131
|
+
textColor: Colors['textDarkest'];
|
|
1132
|
+
fontSizeSmall: Typography['fontSizeSmall'];
|
|
1133
|
+
fontSizeMedium: Typography['fontSizeMedium'];
|
|
1134
|
+
fontSizeLarge: Typography['fontSizeLarge'];
|
|
1135
|
+
smallIconSize: string | 0;
|
|
1136
|
+
mediumIconSize: string | 0;
|
|
1137
|
+
largeIconSize: string | 0;
|
|
1138
|
+
iconMargin: Spacing['xxSmall'];
|
|
1139
|
+
iconColor: Colors['textDarkest'];
|
|
1140
|
+
togglePadding: Spacing['xxSmall'];
|
|
1141
|
+
toggleBorderRadius: Border['radiusMedium'];
|
|
1142
|
+
toggleBorderWidth: Border['widthMedium'];
|
|
1143
|
+
toggleBorderStyle: Border['style'];
|
|
1144
|
+
toggleFocusBorderColor: Colors['borderBrand'];
|
|
1145
|
+
filledBackgroundColor: Colors['backgroundLight'];
|
|
1146
|
+
filledBorderWidth: Border['widthSmall'];
|
|
1147
|
+
filledBorderStyle: Border['style'];
|
|
1148
|
+
filledBorderColor: Colors['borderMedium'];
|
|
1149
|
+
filledBorderRadius: Border['radiusMedium'];
|
|
1150
|
+
filledPadding: Spacing['small'];
|
|
1151
|
+
};
|
|
1152
|
+
export declare type TooltipTheme = {
|
|
1153
|
+
fontFamily: Typography['fontFamily'];
|
|
1154
|
+
fontWeight: Typography['fontWeightNormal'];
|
|
1155
|
+
fontSize: Typography['fontSizeSmall'];
|
|
1156
|
+
padding: Spacing['small'];
|
|
1157
|
+
};
|
|
1158
|
+
export declare type TrayTheme = {
|
|
1159
|
+
background: Colors['backgroundLightest'];
|
|
1160
|
+
borderColor: Colors['borderMedium'];
|
|
1161
|
+
borderWidth: Border['widthSmall'];
|
|
1162
|
+
borderStyle: Border['style'];
|
|
1163
|
+
boxShadow: Shadows['depth3'];
|
|
1164
|
+
xSmallWidth: Breakpoints['xSmall'];
|
|
1165
|
+
smallWidth: string | 0;
|
|
1166
|
+
regularWidth: Breakpoints['small'];
|
|
1167
|
+
mediumWidth: Breakpoints['medium'];
|
|
1168
|
+
largeWidth: Breakpoints['large'];
|
|
1169
|
+
zIndex: Stacking['topmost'];
|
|
1170
|
+
};
|
|
1171
|
+
export declare type TreeBrowserButtonTheme = {
|
|
1172
|
+
hoverBackgroundColor: Colors['backgroundBrand'];
|
|
1173
|
+
hoverTextColor: Colors['textLightest'];
|
|
1174
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
1175
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
1176
|
+
focusOutlineStyle: Border['style'];
|
|
1177
|
+
iconColor: Colors['textDarkest'];
|
|
1178
|
+
iconsMarginRight: Spacing['xSmall'];
|
|
1179
|
+
descriptorMarginTop: Spacing['xxxSmall'];
|
|
1180
|
+
descriptorTextColor: Colors['textDarkest'];
|
|
1181
|
+
descriptorFontSizeSmall: Typography['fontSizeXSmall'];
|
|
1182
|
+
descriptorFontSizeMedium: Typography['fontSizeXSmall'];
|
|
1183
|
+
descriptorFontSizeLarge: Typography['fontSizeSmall'];
|
|
1184
|
+
nameTextColor: Colors['textBrand'];
|
|
1185
|
+
nameFontSizeSmall: Typography['fontSizeXSmall'];
|
|
1186
|
+
nameFontSizeMedium: Typography['fontSizeSmall'];
|
|
1187
|
+
nameFontSizeLarge: Typography['fontSizeMedium'];
|
|
1188
|
+
baseSpacingSmall: Spacing['xSmall'];
|
|
1189
|
+
baseSpacingMedium: Spacing['small'];
|
|
1190
|
+
baseSpacingLarge: string | 0;
|
|
1191
|
+
borderWidth: Border['widthSmall'];
|
|
1192
|
+
borderRadius: Border['radiusMedium'];
|
|
1193
|
+
borderColor: Colors['borderDark'];
|
|
1194
|
+
textLineHeight: Typography['lineHeightCondensed'];
|
|
1195
|
+
selectedTextColor: Colors['textLightest'];
|
|
1196
|
+
selectedBackgroundColor: Colors['backgroundDark'];
|
|
1197
|
+
selectedOutlineWidth: Border['widthLarge'];
|
|
1198
|
+
};
|
|
1199
|
+
export declare type TreeBrowserCollectionTheme = {
|
|
1200
|
+
fontFamily: Typography['fontFamily'];
|
|
1201
|
+
baseSpacingSmall: Spacing['xSmall'];
|
|
1202
|
+
baseSpacingMedium: Spacing['small'];
|
|
1203
|
+
baseSpacingLarge: string | 0;
|
|
1204
|
+
borderWidth: Border['widthSmall'];
|
|
1205
|
+
borderColor: Colors['borderDark'];
|
|
1206
|
+
};
|
|
1207
|
+
export declare type TreeBrowserTheme = {
|
|
1208
|
+
borderRadius: Border['radiusMedium'];
|
|
1209
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
1210
|
+
focusOutlineColor: Colors['borderBrand'];
|
|
1211
|
+
focusOutlineStyle: Border['style'];
|
|
1212
|
+
};
|
|
1213
|
+
export declare type TruncateTextTheme = {
|
|
1214
|
+
fontFamily: Typography['fontFamily'];
|
|
1215
|
+
lineHeight: Typography['lineHeight'];
|
|
1216
|
+
};
|
|
1217
|
+
export declare type ContextViewTheme = {
|
|
1218
|
+
arrowSize: string | 0;
|
|
1219
|
+
arrowBorderWidth: Border['widthSmall'];
|
|
1220
|
+
arrowBackgroundColor: Colors['white'];
|
|
1221
|
+
arrowBorderColor: Colors['tiara'];
|
|
1222
|
+
arrowBackgroundColorInverse: Colors['licorice'];
|
|
1223
|
+
arrowBorderColorInverse: string;
|
|
1224
|
+
};
|
|
1225
|
+
export declare type ViewTheme = {
|
|
1226
|
+
fontFamily: Typography['fontFamily'];
|
|
1227
|
+
color: Colors['textDarkest'];
|
|
1228
|
+
colorPrimaryInverse: Colors['textLightest'];
|
|
1229
|
+
borderColorPrimary: Colors['borderMedium'];
|
|
1230
|
+
borderColorSecondary: Colors['borderDark'];
|
|
1231
|
+
borderColorSuccess: Colors['borderSuccess'];
|
|
1232
|
+
borderColorBrand: Colors['borderBrand'];
|
|
1233
|
+
borderColorInfo: Colors['borderInfo'];
|
|
1234
|
+
borderColorAlert: Colors['borderAlert'];
|
|
1235
|
+
borderColorWarning: Colors['borderWarning'];
|
|
1236
|
+
borderColorDanger: Colors['borderDanger'];
|
|
1237
|
+
borderColorTransparent: string;
|
|
1238
|
+
debugOutlineColor: Colors['borderDebug'];
|
|
1239
|
+
backgroundPrimary: Colors['backgroundLightest'];
|
|
1240
|
+
backgroundSecondary: Colors['backgroundLight'];
|
|
1241
|
+
backgroundPrimaryInverse: Colors['backgroundDarkest'];
|
|
1242
|
+
backgroundBrand: Colors['backgroundBrand'];
|
|
1243
|
+
backgroundInfo: Colors['backgroundInfo'];
|
|
1244
|
+
backgroundAlert: Colors['backgroundAlert'];
|
|
1245
|
+
backgroundSuccess: Colors['backgroundSuccess'];
|
|
1246
|
+
backgroundDanger: Colors['backgroundDanger'];
|
|
1247
|
+
backgroundWarning: Colors['backgroundWarning'];
|
|
1248
|
+
arrowSize: string | 0;
|
|
1249
|
+
focusOutlineStyle: Border['style'];
|
|
1250
|
+
focusOutlineWidth: Border['widthMedium'];
|
|
1251
|
+
focusOutlineOffset: string | 0;
|
|
1252
|
+
focusOutlineInset: string | 0;
|
|
1253
|
+
focusColorInfo: Colors['borderInfo'];
|
|
1254
|
+
focusColorDanger: Colors['borderDanger'];
|
|
1255
|
+
focusColorSuccess: Colors['borderSuccess'];
|
|
1256
|
+
focusColorInverse: Colors['borderLightest'];
|
|
1257
|
+
xSmallMaxWidth: Breakpoints['xSmall'];
|
|
1258
|
+
smallMaxWidth: Breakpoints['small'];
|
|
1259
|
+
mediumMaxWidth: Breakpoints['medium'];
|
|
1260
|
+
largeMaxWidth: Breakpoints['large'];
|
|
1261
|
+
marginXxxSmall: string;
|
|
1262
|
+
marginXxSmall: string;
|
|
1263
|
+
marginXSmall: string;
|
|
1264
|
+
marginSmall: string;
|
|
1265
|
+
marginMedium: string;
|
|
1266
|
+
marginLarge: string;
|
|
1267
|
+
marginXLarge: string;
|
|
1268
|
+
marginXxLarge: string;
|
|
1269
|
+
paddingXxxSmall: string;
|
|
1270
|
+
paddingXxSmall: string;
|
|
1271
|
+
paddingXSmall: string;
|
|
1272
|
+
paddingSmall: string;
|
|
1273
|
+
paddingMedium: string;
|
|
1274
|
+
paddingLarge: string;
|
|
1275
|
+
paddingXLarge: string;
|
|
1276
|
+
paddingXxLarge: string;
|
|
1277
|
+
shadowDepth1: string;
|
|
1278
|
+
shadowDepth2: string;
|
|
1279
|
+
shadowDepth3: string;
|
|
1280
|
+
shadowResting: string;
|
|
1281
|
+
shadowAbove: string;
|
|
1282
|
+
shadowTopmost: string;
|
|
1283
|
+
stackingTopmost: number;
|
|
1284
|
+
stackingAbove: number;
|
|
1285
|
+
stackingBelow: number;
|
|
1286
|
+
stackingDeepest: number;
|
|
1287
|
+
borderRadiusSmall: string;
|
|
1288
|
+
borderRadiusMedium: string;
|
|
1289
|
+
borderRadiusLarge: string;
|
|
1290
|
+
borderWidthSmall: string;
|
|
1291
|
+
borderWidthMedium: string;
|
|
1292
|
+
borderWidthLarge: string;
|
|
1293
|
+
borderStyle: string;
|
|
1294
|
+
};
|
|
1295
|
+
export interface ThemeVariables {
|
|
1296
|
+
Avatar: AvatarTheme;
|
|
1297
|
+
Alert: AlertTheme;
|
|
1298
|
+
Badge: BadgeTheme;
|
|
1299
|
+
Billboard: BillboardTheme;
|
|
1300
|
+
Breadcrumb: BreadcrumbTheme;
|
|
1301
|
+
BaseButton: BaseButtonTheme;
|
|
1302
|
+
Button: BaseButtonTheme;
|
|
1303
|
+
CloseButton: CloseButtonTheme;
|
|
1304
|
+
CondensedButton: BaseButtonTheme;
|
|
1305
|
+
IconButton: BaseButtonTheme;
|
|
1306
|
+
Byline: BylineTheme;
|
|
1307
|
+
CalendarDay: CalendarDayTheme;
|
|
1308
|
+
'Calendar.Day': CalendarDayTheme;
|
|
1309
|
+
Calendar: CalendarTheme;
|
|
1310
|
+
CheckboxFacade: CheckboxFacadeTheme;
|
|
1311
|
+
ToggleFacade: ToggleFacadeTheme;
|
|
1312
|
+
CodeEditor: CodeEditorTheme;
|
|
1313
|
+
DrawerLayoutContent: DrawerLayoutContentTheme;
|
|
1314
|
+
'DrawerLayout.Content': DrawerLayoutContentTheme;
|
|
1315
|
+
DrawerLayoutTray: DrawerLayoutTrayTheme;
|
|
1316
|
+
'DrawerLayout.Tray': DrawerLayoutTrayTheme;
|
|
1317
|
+
Drilldown: DrilldownTheme;
|
|
1318
|
+
FileDrop: FileDropTheme;
|
|
1319
|
+
Flex: FlexTheme;
|
|
1320
|
+
FormFieldGroup: FormFieldGroupTheme;
|
|
1321
|
+
FormFieldLabel: FormFieldLabelTheme;
|
|
1322
|
+
FormFieldMessage: FormFieldMessageTheme;
|
|
1323
|
+
FormFieldMessages: FormFieldMessagesTheme;
|
|
1324
|
+
Grid: GridTheme;
|
|
1325
|
+
GridCol: GridTheme;
|
|
1326
|
+
GridRow: GridTheme;
|
|
1327
|
+
Heading: HeadingTheme;
|
|
1328
|
+
Img: ImgTheme;
|
|
1329
|
+
Link: LinkTheme;
|
|
1330
|
+
InlineListItem: InlineListItemTheme;
|
|
1331
|
+
'InlineList.Item': InlineListItemTheme;
|
|
1332
|
+
ListItem: ListItemTheme;
|
|
1333
|
+
'List.Item': ListItemTheme;
|
|
1334
|
+
List: ListTheme;
|
|
1335
|
+
MenuItem: MenuItemTheme;
|
|
1336
|
+
'Menu.Item': MenuItemTheme;
|
|
1337
|
+
MenuGroup: MenuGroupTheme;
|
|
1338
|
+
'Menu.Group': MenuGroupTheme;
|
|
1339
|
+
MenuSeparator: MenuSeparatorTheme;
|
|
1340
|
+
'Menu.Separator': MenuSeparatorTheme;
|
|
1341
|
+
Menu: MenuTheme;
|
|
1342
|
+
Metric: MetricTheme;
|
|
1343
|
+
MetricGroup: MetricGroupTheme;
|
|
1344
|
+
ModalBody: ModalBodyTheme;
|
|
1345
|
+
'Modal.Body': ModalBodyTheme;
|
|
1346
|
+
ModalFooter: ModalFooterTheme;
|
|
1347
|
+
'Modal.Footer': ModalFooterTheme;
|
|
1348
|
+
ModalHeader: ModalHeaderTheme;
|
|
1349
|
+
'Modal.Header': ModalHeaderTheme;
|
|
1350
|
+
Modal: ModalTheme;
|
|
1351
|
+
Transition: TransitionTheme;
|
|
1352
|
+
AppNavItem: AppNavItemTheme;
|
|
1353
|
+
'AppNav.Item': AppNavItemTheme;
|
|
1354
|
+
AppNav: AppNavTheme;
|
|
1355
|
+
NavigationItem: NavigationItemTheme;
|
|
1356
|
+
'Navigation.Item': NavigationItemTheme;
|
|
1357
|
+
Navigation: NavigationTheme;
|
|
1358
|
+
NumberInput: NumberInputTheme;
|
|
1359
|
+
OptionsItem: OptionsItemTheme;
|
|
1360
|
+
'Options.Item': OptionsItemTheme;
|
|
1361
|
+
OptionsSeparator: OptionsSeparatorTheme;
|
|
1362
|
+
'Options.Separator': OptionsSeparatorTheme;
|
|
1363
|
+
Options: OptionsTheme;
|
|
1364
|
+
Mask: MaskTheme;
|
|
1365
|
+
Pages: PagesTheme;
|
|
1366
|
+
PaginationPageInput: PaginationPageInputTheme;
|
|
1367
|
+
'Pagination.PageInput': PaginationPageInputTheme;
|
|
1368
|
+
Position: PositionTheme;
|
|
1369
|
+
Pill: PillTheme;
|
|
1370
|
+
ProgressBar: ProgressBarTheme;
|
|
1371
|
+
ProgressCircle: ProgressCircleTheme;
|
|
1372
|
+
RangeInput: RangeInputTheme;
|
|
1373
|
+
RadioInput: RadioInputTheme;
|
|
1374
|
+
RatingIcon: RatingIconTheme;
|
|
1375
|
+
'Rating.Icon': RatingIconTheme;
|
|
1376
|
+
Select: SelectTheme;
|
|
1377
|
+
Spinner: SpinnerTheme;
|
|
1378
|
+
InlineSVG: InlineSVGTheme;
|
|
1379
|
+
SVGIcon: SVGIconTheme;
|
|
1380
|
+
TableBody: TableBodyTheme;
|
|
1381
|
+
'Table.Body': TableBodyTheme;
|
|
1382
|
+
TableCell: TableCellTheme;
|
|
1383
|
+
'Table.Cell': TableCellTheme;
|
|
1384
|
+
TableColHeader: TableColHeaderTheme;
|
|
1385
|
+
'Table.ColHeader': TableColHeaderTheme;
|
|
1386
|
+
TableHead: TableHeadTheme;
|
|
1387
|
+
'Table.Head': TableHeadTheme;
|
|
1388
|
+
TableRow: TableRowTheme;
|
|
1389
|
+
'Table.Row': TableRowTheme;
|
|
1390
|
+
TableRowHeader: TableRowHeaderTheme;
|
|
1391
|
+
'Table.RowHeader': TableRowHeaderTheme;
|
|
1392
|
+
TabsPanel: TabsPanelTheme;
|
|
1393
|
+
'Tabs.Panel': TabsPanelTheme;
|
|
1394
|
+
TabsTab: TabsTabTheme;
|
|
1395
|
+
'Tabs.Tab': TabsTabTheme;
|
|
1396
|
+
Table: TableTheme;
|
|
1397
|
+
Tabs: TabsTheme;
|
|
1398
|
+
Tag: TagTheme;
|
|
1399
|
+
Text: TextTheme;
|
|
1400
|
+
TextArea: TextAreaTheme;
|
|
1401
|
+
TextInput: TextInputTheme;
|
|
1402
|
+
ToggleDetails: ToggleDetailsTheme;
|
|
1403
|
+
Tooltip: TooltipTheme;
|
|
1404
|
+
Tray: TrayTheme;
|
|
1405
|
+
TreeBrowserButton: TreeBrowserButtonTheme;
|
|
1406
|
+
'TreeBrowser.Button': TreeBrowserButtonTheme;
|
|
1407
|
+
TreeBrowserCollection: TreeBrowserCollectionTheme;
|
|
1408
|
+
'TreeBrowser.Collection': TreeBrowserCollectionTheme;
|
|
1409
|
+
TreeBrowser: TreeBrowserTheme;
|
|
1410
|
+
TruncateText: TruncateTextTheme;
|
|
1411
|
+
ContextView: ContextViewTheme;
|
|
1412
|
+
View: ViewTheme;
|
|
1413
|
+
}
|
|
1414
|
+
//# sourceMappingURL=ComponentThemeVariables.d.ts.map
|