@skbkontur/markdown 1.5.0 → 1.6.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.
Files changed (87) hide show
  1. package/index.d.ts +7 -0
  2. package/index.js +6 -0
  3. package/package.json +1 -1
  4. package/src/Markdown/Files/Files.logic.d.ts +13 -0
  5. package/src/Markdown/Files/Files.logic.js +123 -0
  6. package/src/Markdown/Markdown.creevey.d.ts +1 -0
  7. package/src/Markdown/Markdown.creevey.js +169 -0
  8. package/src/Markdown/Markdown.d.ts +24 -0
  9. package/src/Markdown/Markdown.js +148 -0
  10. package/src/Markdown/Markdown.styled.d.ts +1271 -0
  11. package/src/Markdown/Markdown.styled.js +76 -0
  12. package/src/Markdown/MarkdownActions.d.ts +20 -0
  13. package/src/Markdown/MarkdownActions.js +64 -0
  14. package/src/Markdown/MarkdownEditor.d.ts +16 -0
  15. package/src/Markdown/MarkdownEditor.js +42 -0
  16. package/src/Markdown/MarkdownFormat.d.ts +18 -0
  17. package/src/Markdown/MarkdownFormat.js +19 -0
  18. package/src/Markdown/MarkdownHelpItems.d.ts +30 -0
  19. package/src/Markdown/MarkdownHelpItems.js +243 -0
  20. package/src/Markdown/MarkdownHelpers/MarkdownButton.d.ts +10 -0
  21. package/src/Markdown/MarkdownHelpers/MarkdownButton.js +10 -0
  22. package/src/Markdown/MarkdownHelpers/MarkdownCombination.d.ts +8 -0
  23. package/src/Markdown/MarkdownHelpers/MarkdownCombination.js +15 -0
  24. package/src/Markdown/MarkdownHelpers/MarkdownFormatButton.d.ts +8 -0
  25. package/src/Markdown/MarkdownHelpers/MarkdownFormatButton.js +11 -0
  26. package/src/Markdown/MarkdownHelpers/markdownHelpers.d.ts +10 -0
  27. package/src/Markdown/MarkdownHelpers/markdownHelpers.js +107 -0
  28. package/src/Markdown/MarkdownHelpers/markdownMentionHelpers.d.ts +7 -0
  29. package/src/Markdown/MarkdownHelpers/markdownMentionHelpers.js +44 -0
  30. package/src/Markdown/MarkdownHelpers/markdownTextareaHelpers.d.ts +11 -0
  31. package/src/Markdown/MarkdownHelpers/markdownTextareaHelpers.js +98 -0
  32. package/src/Markdown/MarkdownMention.d.ts +11 -0
  33. package/src/Markdown/MarkdownMention.js +88 -0
  34. package/src/Markdown/constants.d.ts +3 -0
  35. package/src/Markdown/constants.js +3 -0
  36. package/src/Markdown/types.d.ts +39 -0
  37. package/src/Markdown/types.js +5 -0
  38. package/src/Markdown/utils/guid.d.ts +6 -0
  39. package/src/Markdown/utils/guid.js +23 -0
  40. package/src/Markdown/utils/htmlToMd.d.ts +2 -0
  41. package/src/Markdown/utils/htmlToMd.js +5 -0
  42. package/src/Markdown/utils/isMacintosh.d.ts +1 -0
  43. package/src/Markdown/utils/isMacintosh.js +3 -0
  44. package/src/Markdown/utils/requestStatus.d.ts +6 -0
  45. package/src/Markdown/utils/requestStatus.js +7 -0
  46. package/src/Markdown/utils/saveFile.d.ts +1 -0
  47. package/src/Markdown/utils/saveFile.js +9 -0
  48. package/src/MarkdownIcons/AttachLink.d.ts +2 -0
  49. package/src/MarkdownIcons/AttachLink.js +5 -0
  50. package/src/MarkdownIcons/AttachPaperclip.d.ts +2 -0
  51. package/src/MarkdownIcons/AttachPaperclip.js +3 -0
  52. package/src/MarkdownIcons/CheckedList.d.ts +2 -0
  53. package/src/MarkdownIcons/CheckedList.js +8 -0
  54. package/src/MarkdownIcons/Collapse.d.ts +2 -0
  55. package/src/MarkdownIcons/Collapse.js +4 -0
  56. package/src/MarkdownIcons/Expand.d.ts +2 -0
  57. package/src/MarkdownIcons/Expand.js +4 -0
  58. package/src/MarkdownIcons/EyeOpen.d.ts +2 -0
  59. package/src/MarkdownIcons/EyeOpen.js +4 -0
  60. package/src/MarkdownIcons/List.d.ts +2 -0
  61. package/src/MarkdownIcons/List.js +8 -0
  62. package/src/MarkdownIcons/MarkdownIcons.styled.d.ts +1 -0
  63. package/src/MarkdownIcons/MarkdownIcons.styled.js +7 -0
  64. package/src/MarkdownIcons/NumberedList.d.ts +2 -0
  65. package/src/MarkdownIcons/NumberedList.js +6 -0
  66. package/src/MarkdownIcons/Table.d.ts +2 -0
  67. package/src/MarkdownIcons/Table.js +3 -0
  68. package/src/MarkdownIcons/ToolPencil.d.ts +2 -0
  69. package/src/MarkdownIcons/ToolPencil.js +3 -0
  70. package/src/MarkdownViewer/Helpers/MarkdownImage.d.ts +6 -0
  71. package/src/MarkdownViewer/Helpers/MarkdownImage.js +7 -0
  72. package/src/MarkdownViewer/Helpers/MarkdownLink.d.ts +3 -0
  73. package/src/MarkdownViewer/Helpers/MarkdownLink.js +5 -0
  74. package/src/MarkdownViewer/MarkdownViewer.d.ts +12 -0
  75. package/src/MarkdownViewer/MarkdownViewer.js +70 -0
  76. package/src/MarkdownViewer/MarkdownViewer.styles.d.ts +9 -0
  77. package/src/MarkdownViewer/MarkdownViewer.styles.js +16 -0
  78. package/src/MarkdownViewer/index.d.ts +1 -0
  79. package/src/MarkdownViewer/index.js +1 -0
  80. package/src/MarkdownViewer/types.d.ts +7 -0
  81. package/src/MarkdownViewer/types.js +1 -0
  82. package/src/styles/styled-components.d.ts +5 -0
  83. package/src/styles/styled-components.js +4 -0
  84. package/src/styles/theme.d.ts +15 -0
  85. package/src/styles/theme.js +17 -0
  86. package/src/styles/types.d.ts +9 -0
  87. package/src/styles/types.js +1 -0
@@ -0,0 +1,1271 @@
1
+ import { Button, MenuItem, THEME_2022 } from '@skbkontur/react-ui';
2
+ import { CSSProperties } from 'react';
3
+ import { HorizontalPaddings, Nullable } from './types';
4
+ import { MarkdownTheme } from '../styles/theme';
5
+ export declare const Wrapper: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
6
+ export declare const Avatar: import("styled-components").StyledComponent<"img", MarkdownTheme, {
7
+ alt: "";
8
+ }, "alt">;
9
+ export declare const UserWrapper: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
10
+ export declare const DroppablePlaceholder: import("styled-components").StyledComponent<"div", MarkdownTheme, HorizontalPaddings, never>;
11
+ export declare const MentionWrapper: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
12
+ export declare const MarkdownPreview: import("styled-components").StyledComponent<"div", MarkdownTheme, HorizontalPaddings, never>;
13
+ export declare const MarkdownActionsWrapper: import("styled-components").StyledComponent<"div", MarkdownTheme, {
14
+ width?: Nullable<number | string>;
15
+ } & HorizontalPaddings, never>;
16
+ export declare const ButtonsWrapper: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
17
+ export declare const ActionsWrapper: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
18
+ export declare const MarkdownButtonWrapper: import("styled-components").StyledComponent<typeof Button, MarkdownTheme, {}, never>;
19
+ export declare const MarkdownButtonIcon: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
20
+ export declare const MarkdownDropdown: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
21
+ export declare const MarkdownSymbolWrapper: import("styled-components").StyledComponent<"span", MarkdownTheme, {}, never>;
22
+ export declare const MarkdownMenuItem: import("styled-components").StyledComponent<typeof MenuItem, MarkdownTheme, {}, never>;
23
+ export declare const HintContentWrapper: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
24
+ export declare const MarkdownEditorBlock: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
25
+ export declare const getMarkdownMentionStyle: (x: number, y: number) => CSSProperties;
26
+ export declare const UserDescriptions: import("styled-components").StyledComponent<"div", MarkdownTheme, {}, never>;
27
+ export declare const MentionMenuItem: import("styled-components").StyledComponent<typeof MenuItem, MarkdownTheme, {}, never>;
28
+ export declare const VisuallyHidden: import("styled-components").StyledComponent<"span", MarkdownTheme, {}, never>;
29
+ export declare const getMarkdownReactUiTheme: (theme: MarkdownTheme, reactUiTheme?: typeof THEME_2022, panelHorizontalPadding?: number, fullScreenTextareaPadding?: number, borderless?: boolean) => Readonly<Readonly<typeof import("@skbkontur/react-ui/cjs/internal/themes/DefaultTheme").DefaultTheme> & {
30
+ prototype?: import("@skbkontur/react-ui/cjs/internal/themes/DefaultTheme").DefaultTheme | undefined;
31
+ fontFamilyCompensationBaseline?: string | undefined;
32
+ labGrotesqueBaselineCompensation?: string | undefined;
33
+ brandXLight?: string | undefined;
34
+ brandLight?: string | undefined;
35
+ brand?: string | undefined;
36
+ brandDark?: string | undefined;
37
+ brandXDark?: string | undefined;
38
+ white?: string | undefined;
39
+ grayXxLight?: string | undefined;
40
+ grayXLight?: string | undefined;
41
+ grayLight?: string | undefined;
42
+ gray?: string | undefined;
43
+ grayDark?: string | undefined;
44
+ black?: string | undefined;
45
+ blueXxLight?: string | undefined;
46
+ blueLight?: string | undefined;
47
+ blue?: string | undefined;
48
+ blueDark?: string | undefined;
49
+ blueXDark?: string | undefined;
50
+ greenXxLight?: string | undefined;
51
+ green?: string | undefined;
52
+ greenDark?: string | undefined;
53
+ redXxLight?: string | undefined;
54
+ red?: string | undefined;
55
+ redDark?: string | undefined;
56
+ yellowXxLight?: string | undefined;
57
+ yellow?: string | undefined;
58
+ yellowDark?: string | undefined;
59
+ bgDefault?: string | undefined;
60
+ bgSecondary?: string | undefined;
61
+ bgDisabled?: string | undefined;
62
+ errorMain?: string | undefined;
63
+ errorSecondary?: string | undefined;
64
+ errorText?: string | undefined;
65
+ warningMain?: string | undefined;
66
+ warningSecondary?: string | undefined;
67
+ warningText?: string | undefined;
68
+ borderColorFocusLight?: string | undefined;
69
+ borderColorGrayDark?: string | undefined;
70
+ borderColorGrayLight?: string | undefined;
71
+ borderColorDisabled?: string | undefined;
72
+ placeholderColor?: string | undefined;
73
+ outlineColorFocus?: string | undefined;
74
+ placeholderColorLight?: string | undefined;
75
+ blinkColor?: string | undefined;
76
+ controlBorderWidth?: string | undefined;
77
+ controlOutlineWidth?: string | undefined;
78
+ controlLineHeightSmall?: string | undefined;
79
+ controlLineHeightMedium?: string | undefined;
80
+ controlLineHeightLarge?: string | undefined;
81
+ controlPaddingYSmall?: string | undefined;
82
+ controlPaddingYMedium?: string | undefined;
83
+ controlPaddingYLarge?: string | undefined;
84
+ textColorDefault?: string | undefined;
85
+ textColorInvert?: string | undefined;
86
+ textColorDisabled?: string | undefined;
87
+ textColorDisabledContrast?: string | undefined;
88
+ fontSizeSmall?: string | undefined;
89
+ fontSizeMedium?: string | undefined;
90
+ fontSizeLarge?: string | undefined;
91
+ fontSizeMobile?: string | undefined;
92
+ lineHeightMobile?: string | undefined;
93
+ specificityLevel?: string | undefined;
94
+ fixedPanelShadow?: string | undefined;
95
+ bgActive?: string | undefined;
96
+ borderColorFocus?: string | undefined;
97
+ borderColorError?: string | undefined;
98
+ borderColorWarning?: string | undefined;
99
+ controlHeightSmall?: string | undefined;
100
+ controlHeightMedium?: string | undefined;
101
+ controlHeightLarge?: string | undefined;
102
+ mobileMediaQuery?: string | undefined;
103
+ transitionDuration?: string | undefined;
104
+ transitionTimingFunction?: string | undefined;
105
+ linkColor?: string | undefined;
106
+ linkActiveColor?: string | undefined;
107
+ linkHoverTextDecoration?: string | undefined;
108
+ linkSuccessColor?: string | undefined;
109
+ linkSuccessHoverColor?: string | undefined;
110
+ linkSuccessActiveColor?: string | undefined;
111
+ linkDangerColor?: string | undefined;
112
+ linkDangerHoverColor?: string | undefined;
113
+ linkDangerActiveColor?: string | undefined;
114
+ linkIconMarginRight?: string | undefined;
115
+ linkHoverColor?: string | undefined;
116
+ linkDisabledColor?: string | undefined;
117
+ linkGrayedColor?: string | undefined;
118
+ linkGrayedHoverColor?: string | undefined;
119
+ linkGrayedActiveColor?: string | undefined;
120
+ linkButtonLineHeight?: string | undefined;
121
+ linkButtonPaddingX?: string | undefined;
122
+ linkLineBorderBottomStyle?: string | undefined;
123
+ linkLineHoverBorderBottomStyle?: string | undefined;
124
+ linkLineBorderBottomWidth?: string | undefined;
125
+ linkLineBorderBottomOpacity?: string | undefined;
126
+ linkLineBorderBottomColor?: string | undefined;
127
+ tokenDisabledBg?: string | undefined;
128
+ tokenTextColorDisabled?: string | undefined;
129
+ tokenFontSize?: string | undefined;
130
+ tokenMarginY?: string | undefined;
131
+ tokenMarginX?: string | undefined;
132
+ tokenLineHeight?: string | undefined;
133
+ tokenPaddingY?: string | undefined;
134
+ tokenPaddingX?: string | undefined;
135
+ tokenMarginBeforeIcon?: string | undefined;
136
+ tokenRemoveIconSize?: string | undefined;
137
+ tokenRemoveIconPaddingY?: string | undefined;
138
+ tokenRemoveIconPaddingX?: string | undefined;
139
+ tokenRemoveIconGap?: string | undefined;
140
+ tokenRemoveIconBoxSizing?: string | undefined;
141
+ tokenBorderRadius?: string | undefined;
142
+ tokenBorderWidth?: string | undefined;
143
+ tokenBorderColorDisabled?: string | undefined;
144
+ tokenDefaultIdle?: string | undefined;
145
+ tokenDefaultActive?: string | undefined;
146
+ tokenGrayIdle?: string | undefined;
147
+ tokenGrayActive?: string | undefined;
148
+ tokenBlueIdle?: string | undefined;
149
+ tokenBlueActive?: string | undefined;
150
+ tokenGreenIdle?: string | undefined;
151
+ tokenGreenActive?: string | undefined;
152
+ tokenYellowIdle?: string | undefined;
153
+ tokenYellowActive?: string | undefined;
154
+ tokenRedIdle?: string | undefined;
155
+ tokenRedActive?: string | undefined;
156
+ tokenWhite?: string | undefined;
157
+ tokenBlack?: string | undefined;
158
+ tokenBorderColorWarning?: string | undefined;
159
+ tokenBorderColorError?: string | undefined;
160
+ tokenOutlineWidth?: string | undefined;
161
+ tokenLegacyTextShift?: string | undefined;
162
+ tokenPaddingYDisabled?: string | undefined;
163
+ tokenPaddingXDisabled?: string | undefined;
164
+ tokenMarginYDisabled?: string | undefined;
165
+ tokenMarginXDisabled?: string | undefined;
166
+ tokenShadowDisabled?: string | undefined;
167
+ tokenDefaultIdleBg?: string | undefined;
168
+ tokenDefaultIdleColor?: string | undefined;
169
+ tokenDefaultIdleBorderColor?: string | undefined;
170
+ tokenDefaultIdleBgHover?: string | undefined;
171
+ tokenDefaultIdleColorHover?: string | undefined;
172
+ tokenDefaultIdleBorderColorHover?: string | undefined;
173
+ tokenDefaultActiveBg?: string | undefined;
174
+ tokenDefaultActiveColor?: string | undefined;
175
+ tokenDefaultActiveBorderColor?: string | undefined;
176
+ tokenInputBorderColor?: string | undefined;
177
+ tokenInputBorderColorHover?: string | undefined;
178
+ tokenInputBorderColorFocus?: string | undefined;
179
+ tokenInputBorderColorError?: string | undefined;
180
+ tokenInputBorderColorWarning?: string | undefined;
181
+ tokenInputBorderTopColor?: string | undefined;
182
+ tokenInputBorderRadius?: string | undefined;
183
+ tokenInputPlaceholderColor?: string | undefined;
184
+ tokenInputPlaceholderColorLight?: string | undefined;
185
+ tokenInputDisabledBg?: string | undefined;
186
+ tokenInputDisabledBorderColor?: string | undefined;
187
+ tokenInputBorderWidth?: string | undefined;
188
+ tokenInputOutlineWidth?: string | undefined;
189
+ tokenInputBg?: string | undefined;
190
+ tokenInputMenuPopupBg?: string | undefined;
191
+ tokenInputShadow?: string | undefined;
192
+ tokenInputTextColor?: string | undefined;
193
+ tokenInputTextColorDisabled?: string | undefined;
194
+ tokenInputPlaceholderColorDisabled?: string | undefined;
195
+ tokenInputPaddingY?: string | undefined;
196
+ tokenInputPaddingX?: string | undefined;
197
+ tokenInputFontSize?: string | undefined;
198
+ tokenInputLineHeight?: string | undefined;
199
+ tokenInputInputPaddingLeft?: string | undefined;
200
+ tokenInputInputPaddingRight?: string | undefined;
201
+ loaderBg?: string | undefined;
202
+ loaderOpacity?: string | undefined;
203
+ loaderBorderRadius?: string | undefined;
204
+ btnBackgroundClip?: string | undefined;
205
+ btnArrowBgImageActive?: string | undefined;
206
+ btnArrowBgImageChecked?: string | undefined;
207
+ btnLinkBorderRadius?: string | undefined;
208
+ btnFocusShadowWidth?: string | undefined;
209
+ btnBorderColorTransition?: string | undefined;
210
+ btnDisabledBorderColor: string;
211
+ btnCheckedBg?: string | undefined;
212
+ btnCheckedDisabledBg?: string | undefined;
213
+ btnCheckedDisabledColor?: string | undefined;
214
+ btnCheckedTextColor?: string | undefined;
215
+ btnCheckedDisabledBorderColor?: string | undefined;
216
+ btnCheckedShadow?: string | undefined;
217
+ btnCheckedDisabledShadow?: string | undefined;
218
+ btnBorderRadiusSmall?: string | undefined;
219
+ btnBorderRadiusMedium?: string | undefined;
220
+ btnBorderRadiusLarge?: string | undefined;
221
+ btnBorderWidth?: string | undefined;
222
+ btnInsetWidth?: string | undefined;
223
+ btnOutlineWidth?: string | undefined;
224
+ btnPaddingXSmall?: string | undefined;
225
+ btnPaddingXMedium?: string | undefined;
226
+ btnPaddingXLarge?: string | undefined;
227
+ btnIconGapSmall?: string | undefined;
228
+ btnIconGapMedium?: string | undefined;
229
+ btnIconGapLarge?: string | undefined;
230
+ btnIconSizeSmall?: string | undefined;
231
+ btnIconSizeMedium?: string | undefined;
232
+ btnIconSizeLarge?: string | undefined;
233
+ btnDefaultBg: string;
234
+ btnDefaultBgStart?: string | undefined;
235
+ btnDefaultBgEnd?: string | undefined;
236
+ btnDefaultCheckedBorderColor?: string | undefined;
237
+ btnDefaultTextColor?: string | undefined;
238
+ btnDefaultHoverBg: string | undefined;
239
+ btnDefaultHoverBgStart?: string | undefined;
240
+ btnDefaultHoverBgEnd?: string | undefined;
241
+ btnDefaultActiveBg?: string | undefined;
242
+ btnDefaultHoverBorderColor?: string | undefined;
243
+ btnDefaultHoverBorderBottomColor?: string | undefined;
244
+ btnDefaultActiveBorderColor: string;
245
+ btnDefaultActiveBorderTopColor?: string | undefined;
246
+ btnDefaultBorderColor?: string | undefined;
247
+ btnDefaultBorderBottomColor?: string | undefined;
248
+ btnDefaultActiveShadow?: string | undefined;
249
+ btnSuccessBg?: string | undefined;
250
+ btnSuccessHoverBg?: string | undefined;
251
+ btnSuccessHoverBorderColor?: string | undefined;
252
+ btnSuccessHoverBorderBottomColor?: string | undefined;
253
+ btnSuccessBorderColor?: string | undefined;
254
+ btnSuccessBorderBottomColor?: string | undefined;
255
+ btnSuccessBgStart?: string | undefined;
256
+ btnSuccessBgEnd?: string | undefined;
257
+ btnSuccessTextColor?: string | undefined;
258
+ btnSuccessHoverBgStart?: string | undefined;
259
+ btnSuccessHoverBgEnd?: string | undefined;
260
+ btnSuccessActiveBg?: string | undefined;
261
+ btnSuccessActiveBorderColor?: string | undefined;
262
+ btnSuccessActiveBorderTopColor?: string | undefined;
263
+ btnSuccessActiveShadow?: string | undefined;
264
+ btnPrimaryBg?: string | undefined;
265
+ btnPrimaryHoverBg?: string | undefined;
266
+ btnPrimaryHoverBorderColor?: string | undefined;
267
+ btnPrimaryHoverBorderBottomColor?: string | undefined;
268
+ btnPrimaryBorderColor?: string | undefined;
269
+ btnPrimaryBorderBottomColor?: string | undefined;
270
+ btnPrimaryBgStart?: string | undefined;
271
+ btnPrimaryBgEnd?: string | undefined;
272
+ btnPrimaryTextColor?: string | undefined;
273
+ btnPrimaryHoverBgStart?: string | undefined;
274
+ btnPrimaryHoverBgEnd?: string | undefined;
275
+ btnPrimaryActiveBg?: string | undefined;
276
+ btnPrimaryActiveBorderColor?: string | undefined;
277
+ btnPrimaryActiveBorderTopColor?: string | undefined;
278
+ btnPrimaryActiveShadow?: string | undefined;
279
+ btnDangerBg?: string | undefined;
280
+ btnDangerHoverBg?: string | undefined;
281
+ btnDangerHoverBorderColor?: string | undefined;
282
+ btnDangerHoverBorderBottomColor?: string | undefined;
283
+ btnDangerBorderColor?: string | undefined;
284
+ btnDangerBorderBottomColor?: string | undefined;
285
+ btnDangerBgStart?: string | undefined;
286
+ btnDangerBgEnd?: string | undefined;
287
+ btnDangerTextColor?: string | undefined;
288
+ btnDangerHoverBgStart?: string | undefined;
289
+ btnDangerHoverBgEnd?: string | undefined;
290
+ btnDangerActiveBg?: string | undefined;
291
+ btnDangerActiveBorderColor?: string | undefined;
292
+ btnDangerActiveBorderTopColor?: string | undefined;
293
+ btnDangerActiveShadow?: string | undefined;
294
+ btnPayBg?: string | undefined;
295
+ btnPayHoverBg?: string | undefined;
296
+ btnPayHoverBorderColor?: string | undefined;
297
+ btnPayHoverBorderBottomColor?: string | undefined;
298
+ btnPayBorderColor?: string | undefined;
299
+ btnPayBorderBottomColor?: string | undefined;
300
+ btnPayBgStart?: string | undefined;
301
+ btnPayBgEnd?: string | undefined;
302
+ btnPayTextColor?: string | undefined;
303
+ btnPayHoverBgStart?: string | undefined;
304
+ btnPayHoverBgEnd?: string | undefined;
305
+ btnPayActiveBg?: string | undefined;
306
+ btnPayActiveBorderColor?: string | undefined;
307
+ btnPayActiveBorderTopColor?: string | undefined;
308
+ btnPayActiveShadow?: string | undefined;
309
+ btnMenuArrowColor?: string | undefined;
310
+ btnFontSizeSmall: string;
311
+ btnFontSizeMedium?: string | undefined;
312
+ btnFontSizeLarge?: string | undefined;
313
+ btnLineHeightSmall?: string | undefined;
314
+ btnLineHeightMedium?: string | undefined;
315
+ btnLineHeightLarge?: string | undefined;
316
+ btnPaddingYSmall?: string | undefined;
317
+ btnPaddingYMedium?: string | undefined;
318
+ btnPaddingYLarge?: string | undefined;
319
+ btnDisabledBg: string;
320
+ btnBorderColorWarning?: string | undefined;
321
+ btnBorderColorError?: string | undefined;
322
+ btnHeightSmall?: string | undefined;
323
+ btnHeightMedium?: string | undefined;
324
+ btnHeightLarge?: string | undefined;
325
+ btnLinkColor?: string | undefined;
326
+ btnLinkHoverColor?: string | undefined;
327
+ btnLinkActiveColor?: string | undefined;
328
+ btnLinkHoverTextDecoration?: string | undefined;
329
+ btnLinkLineBorderBottomColor?: string | undefined;
330
+ btnLinkLineBorderBottomStyle?: string | undefined;
331
+ btnLinkHoverLineBorderBottomStyle?: string | undefined;
332
+ btnLinkLineBorderBottomWidth?: string | undefined;
333
+ btnLinkLineBorderBottomOpacity?: string | undefined;
334
+ btnLinkIconMarginRight?: string | undefined;
335
+ btnErrorSecondary?: string | undefined;
336
+ btnWarningSecondary?: string | undefined;
337
+ btnOutlineColorFocus?: string | undefined;
338
+ btnInsetColor?: string | undefined;
339
+ btnBorderColorFocus?: string | undefined;
340
+ btnLinkDisabledColor?: string | undefined;
341
+ btnDisabledTextColor: string;
342
+ btnBacklessBg?: string | undefined;
343
+ btnBacklessHoverBg?: string | undefined;
344
+ btnBacklessActiveBg?: string | undefined;
345
+ btnBacklessBorderColor?: string | undefined;
346
+ btnBacklessHoverBorderColor?: string | undefined;
347
+ btnBacklessTextColor?: string | undefined;
348
+ btnTextBg?: string | undefined;
349
+ btnTextHoverBg?: string | undefined;
350
+ btnTextActiveBg?: string | undefined;
351
+ btnTextBorderColor?: string | undefined;
352
+ btnTextTextColor?: string | undefined;
353
+ btnTextHoverBorderColor?: string | undefined;
354
+ btnWithIconPaddingLeftSmall?: string | undefined;
355
+ btnWithIconPaddingLeftMedium?: string | undefined;
356
+ btnWithIconPaddingLeftLarge?: string | undefined;
357
+ btnIconColor?: string | undefined;
358
+ btnIconHoverColor?: string | undefined;
359
+ btnIconDisabledColor?: string | undefined;
360
+ selectDefaultBg?: string | undefined;
361
+ selectPlaceholderColor?: string | undefined;
362
+ selectBorderWidth: string;
363
+ selectPlaceholderColorDisabled?: string | undefined;
364
+ selectOutlineWidth?: string | undefined;
365
+ selectLineHeightSmall: string;
366
+ selectFontSizeSmall?: string | undefined;
367
+ selectPaddingXSmall: string;
368
+ selectPaddingYSmall?: string | undefined;
369
+ selectBorderRadiusSmall?: string | undefined;
370
+ selectIconGapSmall?: string | undefined;
371
+ selectLineHeightMedium?: string | undefined;
372
+ selectFontSizeMedium?: string | undefined;
373
+ selectPaddingXMedium?: string | undefined;
374
+ selectPaddingYMedium?: string | undefined;
375
+ selectBorderRadiusMedium?: string | undefined;
376
+ selectIconGapMedium?: string | undefined;
377
+ selectLineHeightLarge?: string | undefined;
378
+ selectFontSizeLarge?: string | undefined;
379
+ selectPaddingXLarge?: string | undefined;
380
+ selectPaddingYLarge?: string | undefined;
381
+ selectBorderRadiusLarge?: string | undefined;
382
+ selectIconGapLarge?: string | undefined;
383
+ selectMenuArrowColor?: string | undefined;
384
+ selectMenuArrowColorDisabled?: string | undefined;
385
+ selectIconSizeSmall?: string | undefined;
386
+ selectIconSizeMedium?: string | undefined;
387
+ selectIconSizeLarge?: string | undefined;
388
+ selectRootWidthMobile?: string | undefined;
389
+ mobileSelectMaxWidth?: string | undefined;
390
+ selectTextColorDisabled?: string | undefined;
391
+ selectBgDisabled?: string | undefined;
392
+ selectBorderColorDisabled?: string | undefined;
393
+ selectMenuOffsetY?: string | undefined;
394
+ selectBorderColorHover?: string | undefined;
395
+ selectBorderColorTransition?: string | undefined;
396
+ tooltipPaddingY?: string | undefined;
397
+ tooltipPaddingX?: string | undefined;
398
+ tooltipCloseBtnPadding?: string | undefined;
399
+ tooltipCloseBtnSide?: string | undefined;
400
+ tooltipCloseBtnColor?: string | undefined;
401
+ tooltipCloseBtnHoverColor?: string | undefined;
402
+ tooltipTextColor?: string | undefined;
403
+ tooltipBg?: string | undefined;
404
+ tooltipBorder?: string | undefined;
405
+ tooltipBorderRadius?: string | undefined;
406
+ tooltipPinOffset?: string | undefined;
407
+ tooltipPinOffsetX?: string | undefined;
408
+ tooltipPinOffsetY?: string | undefined;
409
+ tooltipMargin?: string | undefined;
410
+ tooltipPinSize?: string | undefined;
411
+ tooltipFontSize?: string | undefined;
412
+ tooltipLineHeight?: string | undefined;
413
+ tooltipMenuPinOffset?: string | undefined;
414
+ tooltipMenuMargin?: string | undefined;
415
+ tooltipMenuPinSize?: string | undefined;
416
+ kebabPinOffset?: string | undefined;
417
+ kebabPinSize?: string | undefined;
418
+ kebabMargin?: string | undefined;
419
+ kebabBackground?: string | undefined;
420
+ kebabBackgroundHover?: string | undefined;
421
+ kebabBackgroundActive?: string | undefined;
422
+ kebabBorderRadius?: string | undefined;
423
+ kebabBorder?: string | undefined;
424
+ kebabSizeSmall?: string | undefined;
425
+ kebabSizeMedium?: string | undefined;
426
+ kebabSizeLarge?: string | undefined;
427
+ kebabIconSizeSmall?: string | undefined;
428
+ kebabIconSizeMedium?: string | undefined;
429
+ kebabIconSizeLarge?: string | undefined;
430
+ kebabIconColor?: string | undefined;
431
+ modalWindowShadow?: string | undefined;
432
+ modalBackBg?: string | undefined;
433
+ modalBg?: string | undefined;
434
+ modalBackOpacity?: string | undefined;
435
+ modalCloseButtonColor?: string | undefined;
436
+ modalCloseButtonDisabledColor?: string | undefined;
437
+ modalCloseButtonHoverColor?: string | undefined;
438
+ modalCloseButtonPadding?: string | undefined;
439
+ modalCloseButtonLegacyShift?: string | undefined;
440
+ modalCloseButtonBottomPadding?: string | undefined;
441
+ modalCloseButtonClickArea?: string | undefined;
442
+ modalCloseIconSize?: string | undefined;
443
+ modalCloseLegacyGap?: string | undefined;
444
+ modalCloseWrapperLegacyGap?: string | undefined;
445
+ modalBorderRadius?: string | undefined;
446
+ modalFixedHeaderBg?: string | undefined;
447
+ modalFixedHeaderShadow?: string | undefined;
448
+ modalFixedHeaderBorder?: string | undefined;
449
+ modalFixedFooterBorder?: string | undefined;
450
+ modalFixedFooterShadow?: string | undefined;
451
+ modalFixedPanelShadow?: string | undefined;
452
+ modalFooterBg?: string | undefined;
453
+ modalAdaptiveThreshold?: string | undefined;
454
+ modalPaddingTop?: string | undefined;
455
+ modalPaddingLeft?: string | undefined;
456
+ modalPaddingRight?: string | undefined;
457
+ modalHeaderFontSize?: string | undefined;
458
+ modalHeaderFontWeight?: string | undefined;
459
+ modalHeaderTextColor?: string | undefined;
460
+ modalHeaderLineHeight?: string | undefined;
461
+ modalHeaderPaddingBottom?: string | undefined;
462
+ modalHeaderPaddingTop?: string | undefined;
463
+ modalHeaderAdditionalPaddingBottom?: string | undefined;
464
+ modalFixedHeaderMarginBottom?: string | undefined;
465
+ modalFixedHeaderPaddingBottom?: string | undefined;
466
+ modalFixedFooterPaddingTop?: string | undefined;
467
+ modalFixedFooterMarginTop?: string | undefined;
468
+ modalSeparatorBorderBottom?: string | undefined;
469
+ modalBodyTextColor?: string | undefined;
470
+ modalFooterTextColor?: string | undefined;
471
+ modalBodyPaddingTop?: string | undefined;
472
+ modalBodyPaddingBottom?: string | undefined;
473
+ modalBodyBorderRadius?: string | undefined;
474
+ modalFooterPaddingTop?: string | undefined;
475
+ modalFooterPaddingBottom?: string | undefined;
476
+ modalPaddingBottom?: string | undefined;
477
+ modalFooterPanelPaddingTop?: string | undefined;
478
+ modalFooterPanelPaddingBottom?: string | undefined;
479
+ mobileModalCloseButtonRightPadding?: string | undefined;
480
+ mobileModalCloseButtonTopPadding?: string | undefined;
481
+ mobileModalCloseButtonClickArea?: string | undefined;
482
+ mobileModalCloseIconSize?: string | undefined;
483
+ mobileModalHeaderFontSize?: string | undefined;
484
+ mobileModalHeaderLineHeight?: string | undefined;
485
+ mobileModalHeaderPadding?: string | undefined;
486
+ mobileModalBodyPadding?: string | undefined;
487
+ mobileModalBodyFontSize?: string | undefined;
488
+ mobileModalFooterPadding?: string | undefined;
489
+ mobileModalPaddingBottom?: string | undefined;
490
+ mobileModalContainerHeight?: string | undefined;
491
+ mobileModalContainerMarginTop?: string | undefined;
492
+ mobileModalContainerMarginRight?: string | undefined;
493
+ mobileModalContainerMarginBottom?: string | undefined;
494
+ mobileModalContainerMarginLeft?: string | undefined;
495
+ sidePageFooterPanelBg?: string | undefined;
496
+ sidePageBackingBg?: string | undefined;
497
+ sidePageBackingBgOpacity?: string | undefined;
498
+ sidePageCloseButtonColor?: string | undefined;
499
+ sidePageCloseButtonHoverColor?: string | undefined;
500
+ sidePageContainerShadow?: string | undefined;
501
+ mobileSidePagePaddingLeft?: string | undefined;
502
+ mobileSidePagePaddingRight?: string | undefined;
503
+ mobileSidePagePaddingTop?: string | undefined;
504
+ mobileSidePagePaddingBottom?: string | undefined;
505
+ mobileSidePageFooterPadding?: string | undefined;
506
+ sidePagePaddingLeft?: string | undefined;
507
+ sidePagePaddingRight?: string | undefined;
508
+ sidePagePaddingTop?: string | undefined;
509
+ sidePagePaddingBottom?: string | undefined;
510
+ sidePageFooterPaddingTop?: string | undefined;
511
+ sidePageFooterPaddingBottom?: string | undefined;
512
+ sidePageBgDefault?: string | undefined;
513
+ sidePageHeaderTextColor?: string | undefined;
514
+ sidePageBodyTextColor?: string | undefined;
515
+ sidePageFooterTextColor?: string | undefined;
516
+ sidePageHeaderFontSize?: string | undefined;
517
+ sidePageHeaderLineHeight?: string | undefined;
518
+ sidePageHeaderPaddingBottom?: string | undefined;
519
+ sidePageHeaderPaddingTop?: string | undefined;
520
+ sidePageHeaderFixedFontSize?: string | undefined;
521
+ sidePageHeaderFixedLineHeight?: string | undefined;
522
+ sidePageHeaderFixedPaddingY?: string | undefined;
523
+ sidePageHeaderStickyOffset?: string | undefined;
524
+ sidePageCloseButtonPadding?: string | undefined;
525
+ mobileSidePageCloseButtonPadding?: string | undefined;
526
+ sidePageCloseButtonLegacyPaddingLeft?: string | undefined;
527
+ sidePageFooterPanelPaddingTop?: string | undefined;
528
+ sidePageFooterPanelPaddingBottom?: string | undefined;
529
+ sidePageCloseIconSize?: string | undefined;
530
+ sidePageCloseButtonClickArea?: string | undefined;
531
+ mobileSidePageCloseButtonClickArea?: string | undefined;
532
+ sidePageFixedHeaderShadow?: string | undefined;
533
+ sidePageFixedFooterShadow?: string | undefined;
534
+ sidePageFixedPanelShadow?: string | undefined;
535
+ mobileSidePageHeaderFontSize?: string | undefined;
536
+ mobileSidePageHeaderLineHeight?: string | undefined;
537
+ mobileSidePageHeaderPaddingBottom?: string | undefined;
538
+ mobileSidePageHeaderPaddingTop?: string | undefined;
539
+ sidePageHeaderFontWeight?: string | undefined;
540
+ dateInputIconColor?: string | undefined;
541
+ dateInputMaskColor?: string | undefined;
542
+ dateInputComponentSelectedBgColor?: string | undefined;
543
+ calendarBottomSeparatorBorderColor?: string | undefined;
544
+ calendarBottomSeparatorBorderWidth?: string | undefined;
545
+ calendarBottomSeparatorBorder?: string | undefined;
546
+ calendarBg?: string | undefined;
547
+ calendarCellBg?: string | undefined;
548
+ calendarCellHoverColor?: string | undefined;
549
+ calendarCellActiveHoverColor?: string | undefined;
550
+ calendarCellWeekendColor?: string | undefined;
551
+ calendarCellTodayBorder?: string | undefined;
552
+ calendarCellSelectedBgColor?: string | undefined;
553
+ calendarCellSelectedFontColor?: string | undefined;
554
+ calendarCellSize?: string | undefined;
555
+ calendarCellLineHeight?: string | undefined;
556
+ calendarMonthHeaderStickedBgColor?: string | undefined;
557
+ calendarMonthTitleBorderBottomColor?: string | undefined;
558
+ calendarCellHoverBgColor?: string | undefined;
559
+ calendarPaddingX?: string | undefined;
560
+ calendarMonthTitleLineHeight?: string | undefined;
561
+ calendarMonthTitlePaddingTop?: string | undefined;
562
+ calendarMonthTitlePaddingBottom?: string | undefined;
563
+ calendarMonthTitleMarginX?: string | undefined;
564
+ calendarMonthTitleMarginBottom?: string | undefined;
565
+ calendarWrapperHeight?: string | undefined;
566
+ calendarMonthMarginBottom?: string | undefined;
567
+ calendarMaxMonthsToAppendOnScroll?: string | undefined;
568
+ dateSelectLineHeight?: string | undefined;
569
+ dateSelectFontSize?: string | undefined;
570
+ dateSelectFontWeight?: string | undefined;
571
+ dateSelectMenuItemBgSelected?: string | undefined;
572
+ dateSelectTextColorDisabled?: string | undefined;
573
+ dateSelectTextColorDefault?: string | undefined;
574
+ dateSelectLinkColor?: string | undefined;
575
+ dateSelectPopupBoxShadow?: string | undefined;
576
+ dateSelectTextColorInvert?: string | undefined;
577
+ datePickerOpenBtnColor?: string | undefined;
578
+ datePickerMenuOffsetY?: string | undefined;
579
+ pickerBg?: string | undefined;
580
+ pickerShadow?: string | undefined;
581
+ pickerTodayWrapperBgColor?: string | undefined;
582
+ pickerTodayWrapperBorderTop?: string | undefined;
583
+ pickerTodayWrapperHoverBgColor?: string | undefined;
584
+ pickerTodayWrapperFontSize?: string | undefined;
585
+ pickerTodayWrapperLineHeight?: string | undefined;
586
+ pickerTodayWrapperPaddingTop?: string | undefined;
587
+ pickerTodayWrapperPaddingBottom?: string | undefined;
588
+ pickerBorderRadius?: string | undefined;
589
+ dateSelectMenuBg?: string | undefined;
590
+ dateSelectMenuItemBgActive?: string | undefined;
591
+ dateSelectMenuItemBgDisabled?: string | undefined;
592
+ dateSelectMenuItemFontActive?: string | undefined;
593
+ dateSelectMenuItemFontSelected?: string | undefined;
594
+ dateSelectMenuItemFontDisabled?: string | undefined;
595
+ pagingFontSize?: string | undefined;
596
+ pagingForwardIconSize?: string | undefined;
597
+ pagingForwardIconMarginTop?: string | undefined;
598
+ pagingPageLinkBoxSizing?: string | undefined;
599
+ pagingPageLinkPaddingX?: string | undefined;
600
+ pagingPageLinkPaddingY?: string | undefined;
601
+ pagingPageLinkLegacyPaddingY?: string | undefined;
602
+ pagingPageLinkMinWidth?: string | undefined;
603
+ pagingPageForwardLinkMarginTop?: string | undefined;
604
+ pagingPageForwardLinkMarginLeft?: string | undefined;
605
+ pagingPageForwardLinkPaddingRight?: string | undefined;
606
+ pagingLineHeight?: string | undefined;
607
+ pagingDotsColor?: string | undefined;
608
+ pagingDotsPadding?: string | undefined;
609
+ pagingPageLinkActiveBg?: string | undefined;
610
+ pagingPageLinkDisabledActiveBg?: string | undefined;
611
+ pagingPageLinkActiveColor?: string | undefined;
612
+ pagingPageLinkHoverBg?: string | undefined;
613
+ pagingPageLinkBorderRadius?: string | undefined;
614
+ pagingPageLinkHintColor?: string | undefined;
615
+ pagingPageLinkHintFontSize?: string | undefined;
616
+ pagingPageLinkHintLineHeight?: string | undefined;
617
+ pagingPageLinkHintMargin?: string | undefined;
618
+ pagingPageLinkMargin?: string | undefined;
619
+ pagingForwardLinkColor?: string | undefined;
620
+ pagingForwardLinkDisabledColor?: string | undefined;
621
+ pagingDotsDisabledColor?: string | undefined;
622
+ hintColor: string;
623
+ mobileHintColor?: string | undefined;
624
+ hintFontSize: string;
625
+ hintLineHeight?: string | undefined;
626
+ hintMaxWidth?: string | undefined;
627
+ hintPaddingY?: string | undefined;
628
+ hintPaddingX?: string | undefined;
629
+ hintTextAlign?: string | undefined;
630
+ hintBgColor?: string | undefined;
631
+ hintBorder?: string | undefined;
632
+ hintBorderRadius?: string | undefined;
633
+ hintPinOffset?: string | undefined;
634
+ hintMargin?: string | undefined;
635
+ toastFontSize?: string | undefined;
636
+ toastLineHeight?: string | undefined;
637
+ toastPaddingY?: string | undefined;
638
+ toastPaddingX?: string | undefined;
639
+ toastBorderRadius?: string | undefined;
640
+ toastBorder?: string | undefined;
641
+ toastTop?: string | undefined;
642
+ toastBg?: string | undefined;
643
+ toastColor?: string | undefined;
644
+ toastLinkColor?: string | undefined;
645
+ toastLinkTextDecorationHover?: string | undefined;
646
+ toastLinkBgHover?: string | undefined;
647
+ toastLinkBgActive?: string | undefined;
648
+ toastClosePadding?: string | undefined;
649
+ toastCloseColor?: string | undefined;
650
+ toastCloseHoverColor?: string | undefined;
651
+ toastCloseSize?: string | undefined;
652
+ dropdownMenuSelectedBg?: string | undefined;
653
+ dropdownMenuBorderColorTransition?: string | undefined;
654
+ dropdownMenuHoverBorderColor?: string | undefined;
655
+ dropdownMenuHoverBg?: string | undefined;
656
+ dropdownMenuOffsetY?: string | undefined;
657
+ dropdownMenuMenuOffsetY?: string | undefined;
658
+ dropdownMenuMenuBoxSizing?: string | undefined;
659
+ dropdownButtonBorderRadiusSmall?: string | undefined;
660
+ dropdownButtonBorderRadiusMedium?: string | undefined;
661
+ dropdownButtonBorderRadiusLarge?: string | undefined;
662
+ dropdownDefaultBg?: string | undefined;
663
+ dropdownBorderWidth: string;
664
+ dropdownOutlineWidth?: string | undefined;
665
+ dropdownLineHeightSmall?: string | undefined;
666
+ dropdownFontSizeSmall?: string | undefined;
667
+ dropdownPaddingXSmall?: string | undefined;
668
+ dropdownPaddingYSmall?: string | undefined;
669
+ dropdownIconSizeSmall?: string | undefined;
670
+ dropdownLineHeightMedium?: string | undefined;
671
+ dropdownFontSizeMedium?: string | undefined;
672
+ dropdownPaddingXMedium?: string | undefined;
673
+ dropdownPaddingYMedium?: string | undefined;
674
+ dropdownIconSizeMedium?: string | undefined;
675
+ dropdownLineHeightLarge?: string | undefined;
676
+ dropdownFontSizeLarge?: string | undefined;
677
+ dropdownPaddingXLarge?: string | undefined;
678
+ dropdownPaddingYLarge?: string | undefined;
679
+ dropdownIconSizeLarge?: string | undefined;
680
+ dropdownBgDisabled?: string | undefined;
681
+ dropdownBorderColorDisabled?: string | undefined;
682
+ dropdownTextColorDisabled?: string | undefined;
683
+ menuBgDefault?: string | undefined;
684
+ menuBorderRadius?: string | undefined;
685
+ menuBorder?: string | undefined;
686
+ menuShadow?: string | undefined;
687
+ menuPaddingY?: string | undefined;
688
+ menuLegacyPaddingY?: string | undefined;
689
+ menuScrollContainerContentWrapperPaddingY?: string | undefined;
690
+ mobileMenuPaddingY?: string | undefined;
691
+ mobileMenuScrollContainerContentWrapperPaddingY?: string | undefined;
692
+ menuPaddingX?: string | undefined;
693
+ mobileMenuPaddingX?: string | undefined;
694
+ menuOffsetY?: string | undefined;
695
+ menuBoxSizing?: string | undefined;
696
+ menuItemTextColor?: string | undefined;
697
+ menuItemSelectedBg?: string | undefined;
698
+ menuItemHoverBg?: string | undefined;
699
+ menuItemIconWidth?: string | undefined;
700
+ menuItemIconWidthSmall?: string | undefined;
701
+ menuItemIconWidthMedium?: string | undefined;
702
+ menuItemIconWidthLarge?: string | undefined;
703
+ menuItemIconGap?: string | undefined;
704
+ menuItemIconLegacyMargin?: string | undefined;
705
+ menuItemIconLegacyShift?: string | undefined;
706
+ menuItemPaddingForIcon?: string | undefined;
707
+ menuItemPaddingForIconSmall?: string | undefined;
708
+ menuItemPaddingForIconMedium?: string | undefined;
709
+ menuItemPaddingForIconLarge?: string | undefined;
710
+ menuItemLineHeight?: string | undefined;
711
+ menuItemLineHeightSmall?: string | undefined;
712
+ menuItemLineHeightMedium?: string | undefined;
713
+ menuItemLineHeightLarge?: string | undefined;
714
+ menuItemFontSize: string;
715
+ menuItemFontSizeSmall?: string | undefined;
716
+ menuItemFontSizeMedium?: string | undefined;
717
+ menuItemFontSizeLarge?: string | undefined;
718
+ menuItemPaddingX: string;
719
+ menuItemPaddingY: string;
720
+ menuItemPaddingXSmall?: string | undefined;
721
+ menuItemPaddingYSmall?: string | undefined;
722
+ menuItemPaddingXMedium?: string | undefined;
723
+ menuItemPaddingYMedium?: string | undefined;
724
+ menuItemPaddingXLarge?: string | undefined;
725
+ menuItemPaddingYLarge?: string | undefined;
726
+ menuItemBorderRadius?: string | undefined;
727
+ menuItemLegacyPaddingX?: string | undefined;
728
+ menuItemLegacyPaddingY?: string | undefined;
729
+ menuItemHoverColor?: string | undefined;
730
+ menuItemLinkColor?: string | undefined;
731
+ menuItemCommentColor?: string | undefined;
732
+ menuItemCommentOpacity?: string | undefined;
733
+ menuItemCommentColorHover?: string | undefined;
734
+ menuItemDisplay?: string | undefined;
735
+ menuItemPaddingMobile?: string | undefined;
736
+ menuItemLineHeightMobile?: string | undefined;
737
+ menuItemFontSizeMobile?: string | undefined;
738
+ menuItemDisabledColor?: string | undefined;
739
+ menuItemDisabledBg?: string | undefined;
740
+ menuMessageTextColor?: string | undefined;
741
+ menuMessageBg?: string | undefined;
742
+ menuMessagePaddingY?: string | undefined;
743
+ menuMessagePaddingX?: string | undefined;
744
+ menuMessageDisplay?: string | undefined;
745
+ menuMessagePaddingMobile?: string | undefined;
746
+ menuMessageLineHeight?: string | undefined;
747
+ menuMessageLineHeightMobile?: string | undefined;
748
+ menuMessageFontSize?: string | undefined;
749
+ menuMessageFontSizeMobile?: string | undefined;
750
+ menuMessageFontSizeSmall?: string | undefined;
751
+ menuMessageFontSizeMedium?: string | undefined;
752
+ menuMessageFontSizeLarge?: string | undefined;
753
+ menuMessageLineHeightSmall?: string | undefined;
754
+ menuMessageLineHeightMedium?: string | undefined;
755
+ menuMessageLineHeightLarge?: string | undefined;
756
+ menuItemGap?: string | undefined;
757
+ menuHeaderColor?: string | undefined;
758
+ menuHeaderLineHeight?: string | undefined;
759
+ menuHeaderLineHeightSmall?: string | undefined;
760
+ menuHeaderLineHeightMedium?: string | undefined;
761
+ menuHeaderLineHeightLarge?: string | undefined;
762
+ menuHeaderFontSize?: string | undefined;
763
+ menuHeaderFontSizeSmall?: string | undefined;
764
+ menuHeaderFontSizeMedium?: string | undefined;
765
+ menuHeaderFontSizeLarge?: string | undefined;
766
+ menuHeaderPaddingX?: string | undefined;
767
+ menuHeaderPaddingTop?: string | undefined;
768
+ menuHeaderPaddingBottom?: string | undefined;
769
+ menuHeaderPaddingXSmall?: string | undefined;
770
+ menuHeaderPaddingTopSmall?: string | undefined;
771
+ menuHeaderPaddingBottomSmall?: string | undefined;
772
+ menuHeaderPaddingXMedium?: string | undefined;
773
+ menuHeaderPaddingTopMedium?: string | undefined;
774
+ menuHeaderPaddingBottomMedium?: string | undefined;
775
+ menuHeaderPaddingXLarge?: string | undefined;
776
+ menuHeaderPaddingTopLarge?: string | undefined;
777
+ menuHeaderPaddingBottomLarge?: string | undefined;
778
+ menuHeaderTotalCountPaddingTopSmall?: string | undefined;
779
+ menuHeaderTotalCountPaddingTopMedium?: string | undefined;
780
+ menuHeaderTotalCountPaddingTopLarge?: string | undefined;
781
+ menuHeaderTotalCountPaddingBottomSmall?: string | undefined;
782
+ menuHeaderTotalCountPaddingBottomMedium?: string | undefined;
783
+ menuHeaderTotalCountPaddingBottomLarge?: string | undefined;
784
+ menuHeaderLegacyPaddingRight?: string | undefined;
785
+ menuFooterColor?: string | undefined;
786
+ menuFooterLineHeightSmall?: string | undefined;
787
+ menuFooterLineHeightMedium?: string | undefined;
788
+ menuFooterLineHeightLarge?: string | undefined;
789
+ menuFooterFontSizeSmall?: string | undefined;
790
+ menuFooterFontSizeMedium?: string | undefined;
791
+ menuFooterFontSizeLarge?: string | undefined;
792
+ menuFooterPaddingXSmall?: string | undefined;
793
+ menuFooterPaddingXMedium?: string | undefined;
794
+ menuFooterPaddingXLarge?: string | undefined;
795
+ menuFooterPaddingTopSmall?: string | undefined;
796
+ menuFooterPaddingTopMedium?: string | undefined;
797
+ menuFooterPaddingTopLarge?: string | undefined;
798
+ menuFooterPaddingBottomSmall?: string | undefined;
799
+ menuFooterPaddingBottomMedium?: string | undefined;
800
+ menuFooterPaddingBottomLarge?: string | undefined;
801
+ menuFooterLegacyPaddingRight?: string | undefined;
802
+ menuSeparatorBorderColor?: string | undefined;
803
+ menuSeparatorMarginY?: string | undefined;
804
+ menuSeparatorMarginX?: string | undefined;
805
+ menuSeparatorBorderWidth?: string | undefined;
806
+ mobileMenuSeparatorMarginY?: string | undefined;
807
+ mobileMenuSeparatorMarginX?: string | undefined;
808
+ toggleFontSize?: string | undefined;
809
+ toggleLineHeight?: string | undefined;
810
+ toggleLineHeightSmall?: string | undefined;
811
+ toggleLineHeightMedium?: string | undefined;
812
+ toggleLineHeightLarge?: string | undefined;
813
+ toggleFontSizeSmall?: string | undefined;
814
+ toggleFontSizeMedium?: string | undefined;
815
+ toggleFontSizeLarge?: string | undefined;
816
+ toggleTextColor?: string | undefined;
817
+ toggleHandleActiveWidthIncrement?: string | undefined;
818
+ toggleHandleBorderRadius?: string | undefined;
819
+ toggleHandleBorderRadiusSmall?: string | undefined;
820
+ toggleHandleBorderRadiusMedium?: string | undefined;
821
+ toggleHandleBorderRadiusLarge?: string | undefined;
822
+ toggleHeight?: string | undefined;
823
+ toggleWidth?: string | undefined;
824
+ toggleHeightSmall?: string | undefined;
825
+ toggleWidthSmall?: string | undefined;
826
+ toggleHeightMedium?: string | undefined;
827
+ toggleWidthMedium?: string | undefined;
828
+ toggleHeightLarge?: string | undefined;
829
+ toggleWidthLarge?: string | undefined;
830
+ toggleBorderRadius?: string | undefined;
831
+ toggleBorderRadiusSmall?: string | undefined;
832
+ toggleBorderRadiusMedium?: string | undefined;
833
+ toggleBorderRadiusLarge?: string | undefined;
834
+ toggleBg?: string | undefined;
835
+ toggleCheckedBg?: string | undefined;
836
+ toggleDisabledHandleBg?: string | undefined;
837
+ toggleBaseBg?: string | undefined;
838
+ toggleBgDisabled?: string | undefined;
839
+ toggleBgDisabledChecked?: string | undefined;
840
+ toggleBgHover?: string | undefined;
841
+ toggleCheckedBgHover?: string | undefined;
842
+ toggleBgChecked?: string | undefined;
843
+ toggleBorderWidth?: string | undefined;
844
+ toggleOutlineWidth?: string | undefined;
845
+ toggleBorderColor?: string | undefined;
846
+ toggleBorderColorDisabled?: string | undefined;
847
+ toggleBorderColorDisabledChecked?: string | undefined;
848
+ toggleHandleSize?: string | undefined;
849
+ toggleHandleSizeSmall?: string | undefined;
850
+ toggleHandleSizeMedium?: string | undefined;
851
+ toggleHandleSizeLarge?: string | undefined;
852
+ toggleHandleLeft?: string | undefined;
853
+ toggleHandleTop?: string | undefined;
854
+ toggleBgFocus?: string | undefined;
855
+ toggleBgActive?: string | undefined;
856
+ toggleShadowColorError?: string | undefined;
857
+ toggleShadowColorWarning?: string | undefined;
858
+ toggleFocusShadowColor?: string | undefined;
859
+ toggleCaptionGap?: string | undefined;
860
+ toggleButtonOffsetY?: string | undefined;
861
+ toggleOutlineColorFocus?: string | undefined;
862
+ toggleHandleBoxShadowOld?: string | undefined;
863
+ toggleContainerBg?: string | undefined;
864
+ toggleContainerBgHover?: string | undefined;
865
+ toggleContainerBgChecked?: string | undefined;
866
+ toggleContainerBgCheckedHover?: string | undefined;
867
+ toggleContainerBoxShadow?: string | undefined;
868
+ toggleContainerBoxShadowHover?: string | undefined;
869
+ toggleContainerBoxShadowChecked?: string | undefined;
870
+ toggleContainerBoxShadowCheckedHover?: string | undefined;
871
+ toggleHandleBg?: string | undefined;
872
+ toggleHandleBgHover?: string | undefined;
873
+ toggleHandleBgChecked?: string | undefined;
874
+ toggleHandleBgCheckedHover?: string | undefined;
875
+ toggleHandleBoxShadow?: string | undefined;
876
+ toggleHandleBoxShadowHover?: string | undefined;
877
+ toggleHandleBoxShadowChecked?: string | undefined;
878
+ toggleHandleBoxShadowCheckedHover?: string | undefined;
879
+ toggleContainerBgDisabled?: string | undefined;
880
+ toggleHandleBgDisabled?: string | undefined;
881
+ toggleContainerBoxShadowDisabled?: string | undefined;
882
+ toggleHandleBoxShadowDisabled?: string | undefined;
883
+ toggleContainerBgDisabledChecked?: string | undefined;
884
+ toggleHandleBgDisabledChecked?: string | undefined;
885
+ toggleContainerBoxShadowDisabledChecked?: string | undefined;
886
+ toggleHandleBoxShadowDisabledChecked?: string | undefined;
887
+ popupBorder?: string | undefined;
888
+ popupBorderRadius?: string | undefined;
889
+ popupBorderColor?: string | undefined;
890
+ popupDropShadow?: string | undefined;
891
+ popupBoxShadow?: string | undefined;
892
+ popupTextColor?: string | undefined;
893
+ popupBackground?: string | undefined;
894
+ popupPinOffset?: string | undefined;
895
+ popupPinOffsetX?: string | undefined;
896
+ popupPinOffsetY?: string | undefined;
897
+ popupMargin?: string | undefined;
898
+ popupPinSize?: string | undefined;
899
+ popupMenuMenuOffsetY?: string | undefined;
900
+ inputTextColor?: string | undefined;
901
+ inputShadow?: string | undefined;
902
+ inputBg?: string | undefined;
903
+ inputIconColor?: string | undefined;
904
+ inputFocusedIconColor?: string | undefined;
905
+ inputColor?: string | undefined;
906
+ inputWidth?: string | undefined;
907
+ inputTextColorDisabled?: string | undefined;
908
+ inputFontSizeSmall?: string | undefined;
909
+ inputFontSizeMedium?: string | undefined;
910
+ inputFontSizeLarge?: string | undefined;
911
+ inputLineHeightSmall?: string | undefined;
912
+ inputLineHeightMedium?: string | undefined;
913
+ inputLineHeightLarge?: string | undefined;
914
+ inputHeightSmall?: string | undefined;
915
+ inputHeightMedium?: string | undefined;
916
+ inputHeightLarge?: string | undefined;
917
+ inputPaddingYSmall?: string | undefined;
918
+ inputPaddingYMedium?: string | undefined;
919
+ inputPaddingYLarge?: string | undefined;
920
+ inputPaddingXSmall?: string | undefined;
921
+ inputPaddingXMedium?: string | undefined;
922
+ inputPaddingXLarge?: string | undefined;
923
+ inputIconGapSmall?: string | undefined;
924
+ inputIconGapMedium?: string | undefined;
925
+ inputIconGapLarge?: string | undefined;
926
+ inputIconSizeSmall?: string | undefined;
927
+ inputIconSizeMedium?: string | undefined;
928
+ inputIconSizeLarge?: string | undefined;
929
+ inputFocusShadow?: string | undefined;
930
+ inputFocusedBg?: string | undefined;
931
+ inputDisabledBg?: string | undefined;
932
+ inputDisabledBorderColor?: string | undefined;
933
+ inputFocusOutline?: string | undefined;
934
+ inputBorderWidth?: string | undefined;
935
+ inputOutlineWidth?: string | undefined;
936
+ inputBackgroundClip?: string | undefined;
937
+ inputBorderRadiusSmall?: string | undefined;
938
+ inputBorderRadiusMedium?: string | undefined;
939
+ inputBorderRadiusLarge?: string | undefined;
940
+ inputDisabledBackgroundClip?: string | undefined;
941
+ inputBorderColor?: string | undefined;
942
+ inputBorderColorHover?: string | undefined;
943
+ inputBorderColorFocus?: string | undefined;
944
+ inputBorderColorError?: string | undefined;
945
+ inputBorderColorWarning?: string | undefined;
946
+ inputBorderTopColor?: string | undefined;
947
+ inputPlaceholderColor?: string | undefined;
948
+ inputPlaceholderColorDisabled?: string | undefined;
949
+ inputPlaceholderColorLight?: string | undefined;
950
+ inputBlinkColor?: string | undefined;
951
+ inputColorScheme?: string | undefined;
952
+ checkboxFontSize?: string | undefined;
953
+ checkboxFontSizeSmall?: string | undefined;
954
+ checkboxFontSizeMedium?: string | undefined;
955
+ checkboxFontSizeLarge?: string | undefined;
956
+ checkboxLineHeight?: string | undefined;
957
+ checkboxLineHeightSmall?: string | undefined;
958
+ checkboxLineHeightMedium?: string | undefined;
959
+ checkboxLineHeightLarge?: string | undefined;
960
+ checkboxBoxSize: string;
961
+ checkboxBoxSizeSmall?: string | undefined;
962
+ checkboxBoxSizeMedium?: string | undefined;
963
+ checkboxBoxSizeLarge?: string | undefined;
964
+ checkboxCaptionGap?: string | undefined;
965
+ checkboxPaddingY: string;
966
+ checkboxPaddingYSmall?: string | undefined;
967
+ checkboxPaddingYMedium?: string | undefined;
968
+ checkboxPaddingYLarge?: string | undefined;
969
+ checkboxBoxOffsetY?: string | undefined;
970
+ checkboxBgStart?: string | undefined;
971
+ checkboxBgEnd?: string | undefined;
972
+ checkboxTextColorDefault?: string | undefined;
973
+ checkboxTextColorDisabled?: string | undefined;
974
+ checkboxShadowDisabled?: string | undefined;
975
+ checkboxBorder?: string | undefined;
976
+ checkboxBorderWidth?: string | undefined;
977
+ checkboxShadow: string;
978
+ checkboxShadowHover: string;
979
+ checkboxCheckedColor: string;
980
+ checkboxOutlineColorFocus?: string | undefined;
981
+ checkboxBorderColorWarning?: string | undefined;
982
+ checkboxBorderColorError?: string | undefined;
983
+ checkboxCheckedHoverShadow: string;
984
+ checkboxBorderRadius?: string | undefined;
985
+ checkboxOutlineWidth?: string | undefined;
986
+ checkboxCheckedShadow: string;
987
+ checkboxCheckedActiveShadow: string;
988
+ checkboxBorderColorFocus?: string | undefined;
989
+ checkboxBg: string;
990
+ checkboxHoverBg: string;
991
+ checkboxActiveBg?: string | undefined;
992
+ checkboxCheckedBg: string;
993
+ checkboxBgDisabled?: string | undefined;
994
+ checkboxCheckedHoverBg?: string | undefined;
995
+ checkboxCheckedActiveBg?: string | undefined;
996
+ checkboxShadowActive: string;
997
+ textareaBg?: string | undefined;
998
+ textareaColor?: string | undefined;
999
+ textareaTextColorDisabled?: string | undefined;
1000
+ textareaPlaceholderColorLight?: string | undefined;
1001
+ textareaPlaceholderColor?: string | undefined;
1002
+ textareaPlaceholderColorDisabled?: string | undefined;
1003
+ textareaShadow?: string | undefined;
1004
+ textareaBackgroundClip?: string | undefined;
1005
+ textareaFontSize?: string | undefined;
1006
+ textareaFontSizeSmall?: string | undefined;
1007
+ textareaFontSizeMedium?: string | undefined;
1008
+ textareaFontSizeLarge?: string | undefined;
1009
+ textareaLineHeight?: string | undefined;
1010
+ textareaLineHeightSmall?: string | undefined;
1011
+ textareaLineHeightMedium?: string | undefined;
1012
+ textareaLineHeightLarge?: string | undefined;
1013
+ textareaBorderRadius?: string | undefined;
1014
+ textareaBorderWidth?: string | undefined;
1015
+ textareaOutlineWidth?: string | undefined;
1016
+ textareaMinHeight?: string | undefined;
1017
+ textareaMinHeightSmall?: string | undefined;
1018
+ textareaMinHeightMedium?: string | undefined;
1019
+ textareaMinHeightLarge?: string | undefined;
1020
+ textareaWidth?: string | undefined;
1021
+ textareaPaddingX?: string | undefined;
1022
+ textareaPaddingXSmall?: string | undefined;
1023
+ textareaPaddingXMedium?: string | undefined;
1024
+ textareaPaddingXLarge?: string | undefined;
1025
+ textareaPaddingY?: string | undefined;
1026
+ textareaPaddingYSmall?: string | undefined;
1027
+ textareaPaddingYMedium?: string | undefined;
1028
+ textareaPaddingYLarge?: string | undefined;
1029
+ textareaBorderColor?: string | undefined;
1030
+ textareaBorderTopColor?: string | undefined;
1031
+ textareaBorderColorFocus?: string | undefined;
1032
+ textareaBorderColorHover?: string | undefined;
1033
+ textareaBorderColorWarning?: string | undefined;
1034
+ textareaBorderColorError?: string | undefined;
1035
+ textareaDisabledBg?: string | undefined;
1036
+ textareaDisabledBorderColor?: string | undefined;
1037
+ textareaCounterColor?: string | undefined;
1038
+ textareaCounterBg?: string | undefined;
1039
+ textareaCounterErrorColor?: string | undefined;
1040
+ textareaCounterHelpIconColor?: string | undefined;
1041
+ radioBulletSize?: string | undefined;
1042
+ radioBulletSizeSmall?: string | undefined;
1043
+ radioBulletSizeMedium?: string | undefined;
1044
+ radioBulletSizeLarge?: string | undefined;
1045
+ radioOutlineWidth?: string | undefined;
1046
+ radioTextColor?: string | undefined;
1047
+ radioSize?: string | undefined;
1048
+ radioSizeSmall?: string | undefined;
1049
+ radioSizeMedium?: string | undefined;
1050
+ radioSizeLarge?: string | undefined;
1051
+ radioFontSize?: string | undefined;
1052
+ radioFontSizeSmall?: string | undefined;
1053
+ radioFontSizeMedium?: string | undefined;
1054
+ radioFontSizeLarge?: string | undefined;
1055
+ radioLineHeight?: string | undefined;
1056
+ radioLineHeightSmall?: string | undefined;
1057
+ radioLineHeightMedium?: string | undefined;
1058
+ radioLineHeightLarge?: string | undefined;
1059
+ radioCaptionGap?: string | undefined;
1060
+ radioPaddingY?: string | undefined;
1061
+ radioPaddingYSmall?: string | undefined;
1062
+ radioPaddingYMedium?: string | undefined;
1063
+ radioPaddingYLarge?: string | undefined;
1064
+ radioVerticalAlign?: string | undefined;
1065
+ radioBgImage?: string | undefined;
1066
+ radioBgColor?: string | undefined;
1067
+ radioHoverBg?: string | undefined;
1068
+ radioActiveBg?: string | undefined;
1069
+ radioBorderWidth?: string | undefined;
1070
+ radioBorderColor?: string | undefined;
1071
+ radioBoxShadow?: string | undefined;
1072
+ radioBorder?: string | undefined;
1073
+ radioBorderColorFocus?: string | undefined;
1074
+ radioBorderColorWarning?: string | undefined;
1075
+ radioBorderColorError?: string | undefined;
1076
+ radioHoverShadow?: string | undefined;
1077
+ radioActiveShadow?: string | undefined;
1078
+ radioFocusShadow?: string | undefined;
1079
+ radioCheckedBgColor?: string | undefined;
1080
+ radioCheckedBorderColor?: string | undefined;
1081
+ radioCheckedBulletColor?: string | undefined;
1082
+ radioCheckedHoverBgColor?: string | undefined;
1083
+ radioDisabledBg?: string | undefined;
1084
+ radioDisabledShadow?: string | undefined;
1085
+ radioCaptionDisplay?: string | undefined;
1086
+ radioBorderWidthCompensation?: string | undefined;
1087
+ radioCircleOffsetY?: string | undefined;
1088
+ radioCheckedDisabledBulletBg?: string | undefined;
1089
+ radioGroupLegacyItemGap?: string | undefined;
1090
+ tabFontSize: string;
1091
+ tabFontSizeSmall?: string | undefined;
1092
+ tabFontSizeMedium?: string | undefined;
1093
+ tabFontSizeLarge?: string | undefined;
1094
+ tabLineHeight: string;
1095
+ tabLineHeightSmall?: string | undefined;
1096
+ tabLineHeightMedium?: string | undefined;
1097
+ tabLineHeightLarge?: string | undefined;
1098
+ tabPaddingX: string;
1099
+ tabPaddingXSmall?: string | undefined;
1100
+ tabPaddingXMedium?: string | undefined;
1101
+ tabPaddingXLarge?: string | undefined;
1102
+ tabsMarginX?: string | undefined;
1103
+ tabPaddingY: string;
1104
+ tabPaddingYSmall?: string | undefined;
1105
+ tabPaddingYMedium?: string | undefined;
1106
+ tabPaddingYLarge?: string | undefined;
1107
+ tabBorderWidth: string;
1108
+ tabOutlineWidth?: string | undefined;
1109
+ tabTextColorDefault?: string | undefined;
1110
+ tabColorFocus: string;
1111
+ tabColorError?: string | undefined;
1112
+ tabColorWarning?: string | undefined;
1113
+ tabColorSuccess?: string | undefined;
1114
+ tabColorPrimary?: string | undefined;
1115
+ tabColorHover: string;
1116
+ tabColorHoverError?: string | undefined;
1117
+ tabColorHoverWarning?: string | undefined;
1118
+ tabColorHoverSuccess?: string | undefined;
1119
+ tabColorHoverPrimary?: string | undefined;
1120
+ tabIndicatorBorderRadius?: string | undefined;
1121
+ spinnerBgColor?: string | undefined;
1122
+ spinnerColor?: string | undefined;
1123
+ spinnerDimmedColor?: string | undefined;
1124
+ spinnerCaptionColor?: string | undefined;
1125
+ spinnerFontSizeSmall?: string | undefined;
1126
+ spinnerFontSizeMedium?: string | undefined;
1127
+ spinnerFontSizeLarge?: string | undefined;
1128
+ spinnerLineHeightSmall?: string | undefined;
1129
+ spinnerLineHeightMedium?: string | undefined;
1130
+ spinnerLineHeightLarge?: string | undefined;
1131
+ spinnerCaptionGapSmall?: string | undefined;
1132
+ spinnerCaptionGapMedium?: string | undefined;
1133
+ spinnerCaptionGapLarge?: string | undefined;
1134
+ spinnerCaptionMarginSmall?: string | undefined;
1135
+ spinnerCaptionMarginMedium?: string | undefined;
1136
+ spinnerCaptionMarginLarge?: string | undefined;
1137
+ switcherBorderRadius?: string | undefined;
1138
+ switcherTextColor?: string | undefined;
1139
+ switcherOutlineWidth?: string | undefined;
1140
+ switcherCaptionFontSizeSmall?: string | undefined;
1141
+ switcherCaptionFontSizeMedium?: string | undefined;
1142
+ switcherCaptionFontSizeLarge?: string | undefined;
1143
+ switcherCaptionLineHeightSmall?: string | undefined;
1144
+ switcherCaptionLineHeightMedium?: string | undefined;
1145
+ switcherCaptionLineHeightLarge?: string | undefined;
1146
+ switcherCaptionGapSmall?: string | undefined;
1147
+ switcherCaptionGapMedium?: string | undefined;
1148
+ switcherCaptionGapLarge?: string | undefined;
1149
+ switcherButtonPaddingXSmall?: string | undefined;
1150
+ switcherButtonPaddingXMedium?: string | undefined;
1151
+ switcherButtonPaddingXLarge?: string | undefined;
1152
+ switcherButtonPaddingYSmall?: string | undefined;
1153
+ switcherButtonPaddingYMedium?: string | undefined;
1154
+ switcherButtonPaddingYLarge?: string | undefined;
1155
+ switcherButtonLineHeightSmall?: string | undefined;
1156
+ switcherButtonLineHeightMedium?: string | undefined;
1157
+ switcherButtonLineHeightLarge?: string | undefined;
1158
+ switcherButtonFontSizeSmall?: string | undefined;
1159
+ switcherButtonFontSizeMedium?: string | undefined;
1160
+ switcherButtonFontSizeLarge?: string | undefined;
1161
+ switcherButtonBorderRadiusSmall?: string | undefined;
1162
+ switcherButtonBorderRadiusMedium?: string | undefined;
1163
+ switcherButtonBorderRadiusLarge?: string | undefined;
1164
+ switcherButtonBorderWidth?: string | undefined;
1165
+ switcherBtnDisabledBorderColor?: string | undefined;
1166
+ switcherButtonDisabledBorderColor?: string | undefined;
1167
+ switcherButtonCheckedDisabledShadow?: string | undefined;
1168
+ mobilePopupTopPadding?: string | undefined;
1169
+ mobilePopupContainerBottomPadding?: string | undefined;
1170
+ mobilePopupHeaderPadding?: string | undefined;
1171
+ mobilePopupContainerBorderRadius?: string | undefined;
1172
+ mobilePopupHeaderFontSize?: string | undefined;
1173
+ mobilePopupHeaderLineHeight?: string | undefined;
1174
+ mobilePopupHeaderFontWeight?: string | undefined;
1175
+ mobilePopupHeaderChildPadding?: string | undefined;
1176
+ mobilePopupOuterIndentY?: string | undefined;
1177
+ scrollContainerScrollBarSize?: string | undefined;
1178
+ scrollContainerScrollBarHoverSize?: string | undefined;
1179
+ scrollContainerScrollBarColor?: string | undefined;
1180
+ scrollContainerScrollBarInvertColor?: string | undefined;
1181
+ scrollContainerScrollBarOffsetY?: string | undefined;
1182
+ dropdownMenuScrollContainerScrollBarOffsetY?: string | undefined;
1183
+ passwordInputVisibilityIconColor?: string | undefined;
1184
+ passwordInputVisibilityIconOpacity?: string | undefined;
1185
+ passwordInputVisibilityIconHoverColor?: string | undefined;
1186
+ passwordInputVisibilityIconHoverOpacity?: string | undefined;
1187
+ globalLoaderColor?: string | undefined;
1188
+ globalLoaderHeight?: string | undefined;
1189
+ globalLoaderWidth?: string | undefined;
1190
+ globalLoaderPosition?: string | undefined;
1191
+ globalLoaderTop?: string | undefined;
1192
+ globalLoaderLeft?: string | undefined;
1193
+ globalLoaderBottom?: string | undefined;
1194
+ globalLoaderRight?: string | undefined;
1195
+ globalLoaderBackgroundColor?: string | undefined;
1196
+ globalLoaderTransitionToSpinnerDuration?: string | undefined;
1197
+ globalLoaderSpinnerAnimationDuration?: string | undefined;
1198
+ globalLoaderSlowAnimationDuration?: string | undefined;
1199
+ globalLoaderTransitionFromSpinnerDuration?: string | undefined;
1200
+ fileUploaderWidth?: string | undefined;
1201
+ fileUploaderBg?: string | undefined;
1202
+ fileUploaderUploadButtonBg?: string | undefined;
1203
+ fileUploaderFontSize?: string | undefined;
1204
+ fileUploaderPaddingXSmall?: string | undefined;
1205
+ fileUploaderPaddingXMedium?: string | undefined;
1206
+ fileUploaderPaddingXLarge?: string | undefined;
1207
+ fileUploaderFontSizeSmall?: string | undefined;
1208
+ fileUploaderFontSizeMedium?: string | undefined;
1209
+ fileUploaderFontSizeLarge?: string | undefined;
1210
+ fileUploaderLineHeight?: string | undefined;
1211
+ fileUploaderLineHeightSmall?: string | undefined;
1212
+ fileUploaderLineHeightMedium?: string | undefined;
1213
+ fileUploaderLineHeightLarge?: string | undefined;
1214
+ fileUploaderPaddingYSmall?: string | undefined;
1215
+ fileUploaderPaddingYMedium?: string | undefined;
1216
+ fileUploaderPaddingYLarge?: string | undefined;
1217
+ fileUploaderTextColorDefault?: string | undefined;
1218
+ fileUploaderPaddingX?: string | undefined;
1219
+ fileUploaderPaddingY?: string | undefined;
1220
+ fileUploaderBorderRadius?: string | undefined;
1221
+ fileUploaderBorderColor?: string | undefined;
1222
+ fileUploaderBorderWidth?: string | undefined;
1223
+ fileUploaderDisabledBorder?: string | undefined;
1224
+ fileUploaderBorderStyle?: string | undefined;
1225
+ fileUploaderBorderColorFocus?: string | undefined;
1226
+ fileUploaderLinkColor?: string | undefined;
1227
+ fileUploaderAfterLinkColor?: string | undefined;
1228
+ fileUploaderIconSize?: string | undefined;
1229
+ fileUploaderIconColor?: string | undefined;
1230
+ fileUploaderIconHoverColor?: string | undefined;
1231
+ fileUploaderBorderColorError?: string | undefined;
1232
+ fileUploaderBorderColorWarning?: string | undefined;
1233
+ fileUploaderDisabledBg?: string | undefined;
1234
+ fileUploaderDisabledBgClip?: string | undefined;
1235
+ fileUploaderDisabledBorderColor?: string | undefined;
1236
+ fileUploaderDisabledTextColor?: string | undefined;
1237
+ fileUploaderDisabledLinkColor?: string | undefined;
1238
+ fileUploaderDisabledIconColor?: string | undefined;
1239
+ fileUploaderLinkHoverTextDecoration?: string | undefined;
1240
+ fileUploaderHoveredBg?: string | undefined;
1241
+ fileUploaderHoveredBorderColor?: string | undefined;
1242
+ fileUploaderIconGapSmall?: string | undefined;
1243
+ fileUploaderIconGapMedium?: string | undefined;
1244
+ fileUploaderIconGapLarge?: string | undefined;
1245
+ fileUploaderDragOverBorderColor?: string | undefined;
1246
+ fileUploaderDragOverShadow?: string | undefined;
1247
+ closeBtnIconColor?: string | undefined;
1248
+ closeBtnIconDisabledColor?: string | undefined;
1249
+ closeBtnIconHoverColor?: string | undefined;
1250
+ closeBtnIconBorderRadius?: string | undefined;
1251
+ closeBtnIconFocusShadow?: string | undefined;
1252
+ internalMenuPaddingY?: string | undefined;
1253
+ autocompleteMenuOffsetY?: string | undefined;
1254
+ comboboxMenuOffsetY?: string | undefined;
1255
+ miniModalHeaderPaddingBottom?: string | undefined;
1256
+ miniModalBodyPaddingTop?: string | undefined;
1257
+ miniModalBodyPaddingBottom?: string | undefined;
1258
+ miniModalHeaderPaddingTop?: string | undefined;
1259
+ miniModalActionGap?: string | undefined;
1260
+ miniModalCancelIndent?: string | undefined;
1261
+ miniModalFooterPaddingTop?: string | undefined;
1262
+ miniModalFooterPaddingBottom?: string | undefined;
1263
+ miniModalTitleMarginTop?: string | undefined;
1264
+ miniModalHeightMobile?: string | undefined;
1265
+ miniModalMarginTopMobile?: string | undefined;
1266
+ miniModalMarginLeftMobile?: string | undefined;
1267
+ miniModalMarginRightMobile?: string | undefined;
1268
+ miniModalFooterPaddingMobile?: string | undefined;
1269
+ miniModalHeaderPaddingMobile?: string | undefined;
1270
+ miniModalBodyPaddingMobile?: string | undefined;
1271
+ }>;