@pingux/astro 2.143.0-alpha.0 → 2.143.0-alpha.2
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/lib/cjs/components/AccordionGridGroup/AccordionGrid.styles.js +1 -2
- package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.stories.js +86 -5
- package/lib/cjs/components/AccordionGridItem/AccordionGridItemHeader.js +7 -5
- package/lib/cjs/components/AccordionGroup/AccordionGroup.js +5 -3
- package/lib/cjs/components/AccordionGroup/AccordionGroup.stories.js +3 -6
- package/lib/cjs/components/AccordionItem/AccordionItem.js +8 -4
- package/lib/cjs/components/AstroProvider/AstroProvider.js +3 -3
- package/lib/cjs/components/Breadcrumbs/Breadcrumbs.js +6 -2
- package/lib/cjs/components/Button/Button.stories.js +6 -3
- package/lib/cjs/components/Button/Buttons.styles.d.ts +40 -0
- package/lib/cjs/components/Button/Buttons.styles.js +2 -0
- package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.stories.js +5 -1
- package/lib/cjs/components/CopyText/CopyButton.js +4 -1
- package/lib/cjs/components/CopyText/CopyText.js +2 -1
- package/lib/cjs/components/GridList/GridList.stories.js +0 -1
- package/lib/cjs/components/Icon/Icon.js +2 -1
- package/lib/cjs/components/Icon/Icon.stories.js +1 -1
- package/lib/cjs/components/IconBadge/IconBadge.js +4 -4
- package/lib/cjs/components/IconBadge/IconBadge.stories.js +2 -2
- package/lib/cjs/components/Input/Input.styles.js +3 -0
- package/lib/cjs/components/ListBox/ListBox.js +4 -2
- package/lib/cjs/components/ListBox/Option.js +8 -4
- package/lib/cjs/components/ListView/ListView.stories.js +27 -10
- package/lib/cjs/components/ListView/ListViewItem.js +1 -1
- package/lib/cjs/components/Loader/Loader.js +71 -5
- package/lib/cjs/components/Loader/Loader.stories.js +17 -2
- package/lib/cjs/components/Loader/Loader.styles.d.ts +7 -0
- package/lib/cjs/components/Loader/Loader.styles.js +11 -1
- package/lib/cjs/components/MultivaluesField/CondensedMultivaluesField.js +6 -4
- package/lib/cjs/components/MultivaluesField/DefaultMultivaluesField.js +26 -15
- package/lib/cjs/components/PageHeader/PageHeader.js +5 -2
- package/lib/cjs/components/PanelHeader/PanelHeader.js +43 -10
- package/lib/cjs/components/PanelHeader/PanelHeader.stories.js +9 -4
- package/lib/cjs/components/PanelHeader/PanelHeader.styles.js +5 -0
- package/lib/cjs/components/PanelHeader/PanelHeader.test.js +22 -0
- package/lib/cjs/components/RequirementsList/RequirementsList.js +11 -8
- package/lib/cjs/components/SearchField/SearchAutoComplete.d.ts +3 -0
- package/lib/cjs/components/SearchField/SearchAutoComplete.js +168 -0
- package/lib/cjs/components/SearchField/SearchField.d.ts +2 -2
- package/lib/cjs/components/SearchField/SearchField.js +20 -78
- package/lib/cjs/components/SearchField/SearchField.stories.d.ts +8 -7
- package/lib/cjs/components/SearchField/SearchField.stories.js +43 -3
- package/lib/cjs/components/SearchField/SearchField.test.js +132 -0
- package/lib/cjs/components/SearchField/SearchFieldBase.d.ts +3 -0
- package/lib/cjs/components/SearchField/SearchFieldBase.js +91 -0
- package/lib/cjs/components/Stepper/Step.js +1 -1
- package/lib/cjs/components/Stepper/Stepper.styles.js +1 -0
- package/lib/cjs/components/Switch/Switch.js +12 -2
- package/lib/cjs/components/Switch/Switch.styles.js +1 -1
- package/lib/cjs/components/SwitchField/SwitchField.js +7 -2
- package/lib/cjs/components/Tabs/Tabs.stories.js +23 -7
- package/lib/cjs/components/Text/Text.stories.d.ts +1 -0
- package/lib/cjs/components/Text/Text.stories.js +354 -1
- package/lib/cjs/components/Text/Text.styles.d.ts +10 -0
- package/lib/cjs/components/Text/Text.styles.js +5 -0
- package/lib/cjs/components/TextField/TextField.stories.js +12 -2
- package/lib/cjs/hooks/useCircularLoader/useCircularLoader.d.ts +23 -0
- package/lib/cjs/hooks/useCircularLoader/useCircularLoader.js +80 -0
- package/lib/cjs/hooks/useCircularLoader/useCircularLoader.test.d.ts +1 -0
- package/lib/cjs/hooks/useCircularLoader/useCircularLoader.test.js +136 -0
- package/lib/cjs/hooks/useField/useField.d.ts +6 -6
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +75 -0
- package/lib/cjs/hooks/usePagination/usePagination.d.ts +4 -4
- package/lib/cjs/styles/colors.d.ts +6 -0
- package/lib/cjs/styles/colors.js +4 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +36 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +23 -2
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +5 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +17 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.js +7 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.d.ts +66 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +18 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.d.ts +15 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.js +18 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.d.ts +0 -8
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.js +9 -9
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.d.ts +14 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.js +15 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +5 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +5 -0
- package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +5 -0
- package/lib/cjs/styles/themes/astro/customProperties/icons.js +11 -4
- package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +18 -0
- package/lib/cjs/styles/themes/astro/customProperties/index.js +26 -1
- package/lib/cjs/styles/themes/next-gen/codeView/codeView.d.ts +2 -0
- package/lib/cjs/styles/themes/next-gen/codeView/codeView.js +4 -2
- package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +37 -0
- package/lib/cjs/styles/themes/next-gen/colors/colors.js +5 -2
- package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.js +14 -35
- package/lib/cjs/styles/themes/next-gen/colors/twoTone.d.ts +37 -0
- package/lib/cjs/styles/themes/next-gen/colors/twoTone.js +46 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.d.ts +4 -1
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +6 -3
- package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.d.ts +10 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.js +22 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +5 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +10 -3
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +17 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/index.js +26 -4
- package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +4 -4
- package/lib/cjs/styles/themes/next-gen/forms.d.ts +42 -0
- package/lib/cjs/styles/themes/next-gen/forms.js +5 -0
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +1151 -857
- package/lib/cjs/styles/themes/next-gen/next-gen.js +1 -1
- package/lib/cjs/styles/themes/next-gen/text.js +2 -2
- package/lib/cjs/styles/themes/next-gen/variants/accordion.d.ts +16 -0
- package/lib/cjs/styles/themes/next-gen/variants/accordion.js +26 -0
- package/lib/cjs/styles/themes/next-gen/variants/badges.d.ts +0 -17
- package/lib/cjs/styles/themes/next-gen/variants/badges.js +1 -3
- package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +151 -105
- package/lib/cjs/styles/themes/next-gen/variants/button.js +38 -7
- package/lib/cjs/styles/themes/next-gen/variants/cards.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/input.js +16 -5
- package/lib/cjs/styles/themes/next-gen/variants/label.js +5 -3
- package/lib/cjs/styles/themes/next-gen/variants/links.d.ts +4 -2
- package/lib/cjs/styles/themes/next-gen/variants/listview.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/panelHeader.d.ts +16 -0
- package/lib/cjs/styles/themes/next-gen/variants/panelHeader.js +26 -0
- package/lib/cjs/styles/themes/next-gen/variants/stepper.d.ts +66 -0
- package/lib/cjs/styles/themes/next-gen/variants/stepper.js +74 -0
- package/lib/cjs/styles/themes/next-gen/variants/switch.d.ts +36 -0
- package/lib/cjs/styles/themes/next-gen/variants/switch.js +44 -0
- package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +62 -0
- package/lib/cjs/styles/themes/next-gen/variants/text.js +67 -7
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +900 -743
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +88 -38
- package/lib/cjs/types/listBox.d.ts +2 -0
- package/lib/cjs/types/loader.d.ts +5 -2
- package/lib/cjs/types/searchField.d.ts +11 -1
- package/lib/cjs/types/shared/style.d.ts +2 -0
- package/lib/components/AccordionGridGroup/AccordionGrid.styles.js +1 -2
- package/lib/components/AccordionGridGroup/AccordionGridGroup.stories.js +86 -5
- package/lib/components/AccordionGridItem/AccordionGridItemHeader.js +6 -4
- package/lib/components/AccordionGroup/AccordionGroup.js +5 -3
- package/lib/components/AccordionGroup/AccordionGroup.stories.js +3 -6
- package/lib/components/AccordionItem/AccordionItem.js +8 -4
- package/lib/components/AstroProvider/AstroProvider.js +3 -3
- package/lib/components/Breadcrumbs/Breadcrumbs.js +7 -3
- package/lib/components/Button/Button.stories.js +4 -1
- package/lib/components/Button/Buttons.styles.js +2 -0
- package/lib/components/CollapsiblePanel/CollapsiblePanel.stories.js +5 -1
- package/lib/components/CopyText/CopyButton.js +4 -1
- package/lib/components/CopyText/CopyText.js +2 -1
- package/lib/components/GridList/GridList.stories.js +0 -1
- package/lib/components/Icon/Icon.js +2 -1
- package/lib/components/Icon/Icon.stories.js +1 -1
- package/lib/components/IconBadge/IconBadge.js +4 -4
- package/lib/components/IconBadge/IconBadge.stories.js +2 -2
- package/lib/components/Input/Input.styles.js +3 -0
- package/lib/components/ListBox/ListBox.js +4 -2
- package/lib/components/ListBox/Option.js +8 -4
- package/lib/components/ListView/ListView.stories.js +28 -11
- package/lib/components/ListView/ListViewItem.js +1 -1
- package/lib/components/Loader/Loader.js +71 -3
- package/lib/components/Loader/Loader.stories.js +13 -0
- package/lib/components/Loader/Loader.styles.js +11 -1
- package/lib/components/MultivaluesField/CondensedMultivaluesField.js +6 -4
- package/lib/components/MultivaluesField/DefaultMultivaluesField.js +27 -16
- package/lib/components/PageHeader/PageHeader.js +5 -2
- package/lib/components/PanelHeader/PanelHeader.js +44 -11
- package/lib/components/PanelHeader/PanelHeader.stories.js +9 -4
- package/lib/components/PanelHeader/PanelHeader.styles.js +5 -0
- package/lib/components/PanelHeader/PanelHeader.test.js +23 -1
- package/lib/components/RequirementsList/RequirementsList.js +7 -4
- package/lib/components/SearchField/SearchAutoComplete.js +156 -0
- package/lib/components/SearchField/SearchField.js +18 -78
- package/lib/components/SearchField/SearchField.stories.js +41 -3
- package/lib/components/SearchField/SearchField.test.js +132 -0
- package/lib/components/SearchField/SearchFieldBase.js +79 -0
- package/lib/components/Stepper/Step.js +1 -1
- package/lib/components/Stepper/Stepper.styles.js +1 -0
- package/lib/components/Switch/Switch.js +12 -2
- package/lib/components/Switch/Switch.styles.js +1 -1
- package/lib/components/SwitchField/SwitchField.js +7 -2
- package/lib/components/Tabs/Tabs.stories.js +23 -7
- package/lib/components/Text/Text.stories.js +352 -0
- package/lib/components/Text/Text.styles.js +5 -0
- package/lib/components/TextField/TextField.stories.js +12 -2
- package/lib/hooks/useCircularLoader/useCircularLoader.js +71 -0
- package/lib/hooks/useCircularLoader/useCircularLoader.test.js +129 -0
- package/lib/styles/colors.js +4 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +23 -2
- package/lib/styles/themeOverrides/nextGenDarkMode/customProperties/index.js +7 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +18 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/forms.js +18 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/input.js +9 -9
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/links.js +15 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +5 -0
- package/lib/styles/themes/astro/customProperties/icons.js +12 -5
- package/lib/styles/themes/astro/customProperties/index.js +26 -1
- package/lib/styles/themes/next-gen/codeView/codeView.js +4 -2
- package/lib/styles/themes/next-gen/colors/colors.js +5 -2
- package/lib/styles/themes/next-gen/colors/iconWrapper.js +14 -35
- package/lib/styles/themes/next-gen/colors/twoTone.js +38 -0
- package/lib/styles/themes/next-gen/convertedComponentList.js +6 -3
- package/lib/styles/themes/next-gen/customProperties/customSizes.js +14 -0
- package/lib/styles/themes/next-gen/customProperties/icons.js +10 -3
- package/lib/styles/themes/next-gen/customProperties/index.js +26 -2
- package/lib/styles/themes/next-gen/customProperties/tShirtSizes.js +4 -4
- package/lib/styles/themes/next-gen/forms.js +5 -0
- package/lib/styles/themes/next-gen/next-gen.js +1 -1
- package/lib/styles/themes/next-gen/text.js +2 -2
- package/lib/styles/themes/next-gen/variants/accordion.js +18 -0
- package/lib/styles/themes/next-gen/variants/badges.js +1 -3
- package/lib/styles/themes/next-gen/variants/button.js +38 -7
- package/lib/styles/themes/next-gen/variants/cards.js +1 -1
- package/lib/styles/themes/next-gen/variants/input.js +16 -5
- package/lib/styles/themes/next-gen/variants/label.js +5 -3
- package/lib/styles/themes/next-gen/variants/listview.js +1 -1
- package/lib/styles/themes/next-gen/variants/panelHeader.js +18 -0
- package/lib/styles/themes/next-gen/variants/stepper.js +66 -0
- package/lib/styles/themes/next-gen/variants/switch.js +36 -0
- package/lib/styles/themes/next-gen/variants/text.js +67 -7
- package/lib/styles/themes/next-gen/variants/variants.js +82 -37
- package/package.json +2 -1
@@ -40,6 +40,7 @@ declare const _default: {
|
|
40
40
|
base: string;
|
41
41
|
input: string;
|
42
42
|
separator: string;
|
43
|
+
hairline: string;
|
43
44
|
};
|
44
45
|
active: string;
|
45
46
|
primary: string;
|
@@ -87,6 +88,42 @@ declare const _default: {
|
|
87
88
|
};
|
88
89
|
};
|
89
90
|
tooltip: string;
|
91
|
+
twoTone: {
|
92
|
+
bg: {
|
93
|
+
orange: string;
|
94
|
+
cyan: string;
|
95
|
+
green: string;
|
96
|
+
purple: string;
|
97
|
+
pink: string;
|
98
|
+
red: string;
|
99
|
+
yellow: string;
|
100
|
+
teal: string;
|
101
|
+
blue: string;
|
102
|
+
indigo: string;
|
103
|
+
lightBlue: string;
|
104
|
+
lightPink: string;
|
105
|
+
lightGreen: string;
|
106
|
+
lightYellow: string;
|
107
|
+
lightIndigo: string;
|
108
|
+
};
|
109
|
+
text: {
|
110
|
+
orange: string;
|
111
|
+
cyan: string;
|
112
|
+
green: string;
|
113
|
+
purple: string;
|
114
|
+
pink: string;
|
115
|
+
red: string;
|
116
|
+
yellow: string;
|
117
|
+
teal: string;
|
118
|
+
blue: string;
|
119
|
+
indigo: string;
|
120
|
+
lightBlue: string;
|
121
|
+
lightPink: string;
|
122
|
+
lightGreen: string;
|
123
|
+
lightYellow: string;
|
124
|
+
lightIndigo: string;
|
125
|
+
};
|
126
|
+
};
|
90
127
|
neutral: {
|
91
128
|
80: string;
|
92
129
|
};
|
@@ -270,13 +307,13 @@ declare const _default: {
|
|
270
307
|
transition: string;
|
271
308
|
alignItems: string;
|
272
309
|
justifyContent: string;
|
310
|
+
flexShrink: number;
|
273
311
|
minWidth: string;
|
274
312
|
cursor: string;
|
275
313
|
display: string;
|
276
314
|
maxWidth: string;
|
277
315
|
fontFamily: string;
|
278
316
|
fontSize: string;
|
279
|
-
flexGrow: string;
|
280
317
|
fontWeight: number;
|
281
318
|
textAlign: string;
|
282
319
|
verticalAlign: string;
|
@@ -287,6 +324,7 @@ declare const _default: {
|
|
287
324
|
borderColor: string;
|
288
325
|
px: string;
|
289
326
|
py: string;
|
327
|
+
maxHeight: string;
|
290
328
|
height: string;
|
291
329
|
'&.is-disabled': {
|
292
330
|
opacity: number;
|
@@ -318,13 +356,13 @@ declare const _default: {
|
|
318
356
|
};
|
319
357
|
alignItems: string;
|
320
358
|
justifyContent: string;
|
359
|
+
flexShrink: number;
|
321
360
|
minWidth: string;
|
322
361
|
cursor: string;
|
323
362
|
display: string;
|
324
363
|
maxWidth: string;
|
325
364
|
fontFamily: string;
|
326
365
|
fontSize: string;
|
327
|
-
flexGrow: string;
|
328
366
|
fontWeight: number;
|
329
367
|
textAlign: string;
|
330
368
|
verticalAlign: string;
|
@@ -333,6 +371,7 @@ declare const _default: {
|
|
333
371
|
border: string;
|
334
372
|
px: string;
|
335
373
|
py: string;
|
374
|
+
maxHeight: string;
|
336
375
|
height: string;
|
337
376
|
'&.is-disabled': {
|
338
377
|
opacity: number;
|
@@ -362,13 +401,13 @@ declare const _default: {
|
|
362
401
|
};
|
363
402
|
alignItems: string;
|
364
403
|
justifyContent: string;
|
404
|
+
flexShrink: number;
|
365
405
|
minWidth: string;
|
366
406
|
cursor: string;
|
367
407
|
display: string;
|
368
408
|
maxWidth: string;
|
369
409
|
fontFamily: string;
|
370
410
|
fontSize: string;
|
371
|
-
flexGrow: string;
|
372
411
|
fontWeight: number;
|
373
412
|
textAlign: string;
|
374
413
|
verticalAlign: string;
|
@@ -377,6 +416,7 @@ declare const _default: {
|
|
377
416
|
border: string;
|
378
417
|
px: string;
|
379
418
|
py: string;
|
419
|
+
maxHeight: string;
|
380
420
|
height: string;
|
381
421
|
'&.is-disabled': {
|
382
422
|
opacity: number;
|
@@ -397,13 +437,13 @@ declare const _default: {
|
|
397
437
|
};
|
398
438
|
alignItems: string;
|
399
439
|
justifyContent: string;
|
440
|
+
flexShrink: number;
|
400
441
|
minWidth: string;
|
401
442
|
cursor: string;
|
402
443
|
display: string;
|
403
444
|
maxWidth: string;
|
404
445
|
fontFamily: string;
|
405
446
|
fontSize: string;
|
406
|
-
flexGrow: string;
|
407
447
|
fontWeight: number;
|
408
448
|
textAlign: string;
|
409
449
|
verticalAlign: string;
|
@@ -412,6 +452,7 @@ declare const _default: {
|
|
412
452
|
border: string;
|
413
453
|
px: string;
|
414
454
|
py: string;
|
455
|
+
maxHeight: string;
|
415
456
|
height: string;
|
416
457
|
'&.is-disabled': {
|
417
458
|
opacity: number;
|
@@ -429,13 +470,13 @@ declare const _default: {
|
|
429
470
|
color: string;
|
430
471
|
alignItems: string;
|
431
472
|
justifyContent: string;
|
473
|
+
flexShrink: number;
|
432
474
|
minWidth: string;
|
433
475
|
cursor: string;
|
434
476
|
display: string;
|
435
477
|
maxWidth: string;
|
436
478
|
fontFamily: string;
|
437
479
|
fontSize: string;
|
438
|
-
flexGrow: string;
|
439
480
|
fontWeight: number;
|
440
481
|
textAlign: string;
|
441
482
|
verticalAlign: string;
|
@@ -444,6 +485,7 @@ declare const _default: {
|
|
444
485
|
border: string;
|
445
486
|
px: string;
|
446
487
|
py: string;
|
488
|
+
maxHeight: string;
|
447
489
|
height: string;
|
448
490
|
'&.is-disabled': {
|
449
491
|
opacity: number;
|
@@ -480,13 +522,13 @@ declare const _default: {
|
|
480
522
|
};
|
481
523
|
alignItems: string;
|
482
524
|
justifyContent: string;
|
525
|
+
flexShrink: number;
|
483
526
|
minWidth: string;
|
484
527
|
cursor: string;
|
485
528
|
display: string;
|
486
529
|
maxWidth: string;
|
487
530
|
fontFamily: string;
|
488
531
|
fontSize: string;
|
489
|
-
flexGrow: string;
|
490
532
|
fontWeight: number;
|
491
533
|
textAlign: string;
|
492
534
|
verticalAlign: string;
|
@@ -495,6 +537,7 @@ declare const _default: {
|
|
495
537
|
border: string;
|
496
538
|
px: string;
|
497
539
|
py: string;
|
540
|
+
maxHeight: string;
|
498
541
|
height: string;
|
499
542
|
'&.is-disabled': {
|
500
543
|
opacity: number;
|
@@ -530,16 +573,17 @@ declare const _default: {
|
|
530
573
|
};
|
531
574
|
alignItems: string;
|
532
575
|
justifyContent: string;
|
576
|
+
flexShrink: number;
|
533
577
|
minWidth: string;
|
534
578
|
cursor: string;
|
535
579
|
maxWidth: string;
|
536
580
|
fontFamily: string;
|
537
|
-
flexGrow: string;
|
538
581
|
fontWeight: number;
|
539
582
|
textAlign: string;
|
540
583
|
verticalAlign: string;
|
541
584
|
px: string;
|
542
585
|
py: string;
|
586
|
+
maxHeight: string;
|
543
587
|
'&.is-disabled': {
|
544
588
|
opacity: number;
|
545
589
|
};
|
@@ -579,16 +623,17 @@ declare const _default: {
|
|
579
623
|
};
|
580
624
|
alignItems: string;
|
581
625
|
justifyContent: string;
|
626
|
+
flexShrink: number;
|
582
627
|
minWidth: string;
|
583
628
|
cursor: string;
|
584
629
|
maxWidth: string;
|
585
630
|
fontFamily: string;
|
586
|
-
flexGrow: string;
|
587
631
|
fontWeight: number;
|
588
632
|
textAlign: string;
|
589
633
|
verticalAlign: string;
|
590
634
|
px: string;
|
591
635
|
py: string;
|
636
|
+
maxHeight: string;
|
592
637
|
'&.is-disabled': {
|
593
638
|
opacity: number;
|
594
639
|
};
|
@@ -600,13 +645,13 @@ declare const _default: {
|
|
600
645
|
color: string;
|
601
646
|
alignItems: string;
|
602
647
|
justifyContent: string;
|
648
|
+
flexShrink: number;
|
603
649
|
minWidth: string;
|
604
650
|
cursor: string;
|
605
651
|
display: string;
|
606
652
|
maxWidth: string;
|
607
653
|
fontFamily: string;
|
608
654
|
fontSize: string;
|
609
|
-
flexGrow: string;
|
610
655
|
fontWeight: number;
|
611
656
|
textAlign: string;
|
612
657
|
verticalAlign: string;
|
@@ -615,6 +660,7 @@ declare const _default: {
|
|
615
660
|
border: string;
|
616
661
|
px: string;
|
617
662
|
py: string;
|
663
|
+
maxHeight: string;
|
618
664
|
height: string;
|
619
665
|
'&.is-disabled': {
|
620
666
|
opacity: number;
|
@@ -634,13 +680,13 @@ declare const _default: {
|
|
634
680
|
color: string;
|
635
681
|
alignItems: string;
|
636
682
|
justifyContent: string;
|
683
|
+
flexShrink: number;
|
637
684
|
minWidth: string;
|
638
685
|
cursor: string;
|
639
686
|
display: string;
|
640
687
|
maxWidth: string;
|
641
688
|
fontFamily: string;
|
642
689
|
fontSize: string;
|
643
|
-
flexGrow: string;
|
644
690
|
fontWeight: number;
|
645
691
|
textAlign: string;
|
646
692
|
verticalAlign: string;
|
@@ -650,6 +696,7 @@ declare const _default: {
|
|
650
696
|
borderColor: string;
|
651
697
|
px: string;
|
652
698
|
py: string;
|
699
|
+
maxHeight: string;
|
653
700
|
height: string;
|
654
701
|
'&.is-disabled': {
|
655
702
|
opacity: number;
|
@@ -676,13 +723,13 @@ declare const _default: {
|
|
676
723
|
outlineColor: string;
|
677
724
|
alignItems: string;
|
678
725
|
justifyContent: string;
|
726
|
+
flexShrink: number;
|
679
727
|
minWidth: string;
|
680
728
|
cursor: string;
|
681
729
|
display: string;
|
682
730
|
maxWidth: string;
|
683
731
|
fontFamily: string;
|
684
732
|
fontSize: string;
|
685
|
-
flexGrow: string;
|
686
733
|
fontWeight: number;
|
687
734
|
textAlign: string;
|
688
735
|
verticalAlign: string;
|
@@ -691,6 +738,7 @@ declare const _default: {
|
|
691
738
|
border: string;
|
692
739
|
px: string;
|
693
740
|
py: string;
|
741
|
+
maxHeight: string;
|
694
742
|
height: string;
|
695
743
|
'&.is-disabled': {
|
696
744
|
opacity: number;
|
@@ -717,6 +765,119 @@ declare const _default: {
|
|
717
765
|
outline: string;
|
718
766
|
};
|
719
767
|
};
|
768
|
+
listBoxLink: {
|
769
|
+
color: string;
|
770
|
+
transition: string;
|
771
|
+
fontSize: string;
|
772
|
+
textDecoration: string;
|
773
|
+
px: string;
|
774
|
+
pt: string;
|
775
|
+
'&.is-pressed': {
|
776
|
+
textDecoration: string;
|
777
|
+
outline: string;
|
778
|
+
color: string;
|
779
|
+
};
|
780
|
+
'&.is-focused': {
|
781
|
+
textDecoration: string;
|
782
|
+
outline: string;
|
783
|
+
};
|
784
|
+
badgeDeleteButton: {
|
785
|
+
transition: string;
|
786
|
+
height: number;
|
787
|
+
p: number;
|
788
|
+
width: number;
|
789
|
+
border: string;
|
790
|
+
'&.is-focused': {
|
791
|
+
backgroundColor: string;
|
792
|
+
outline: string;
|
793
|
+
outlineColor: string;
|
794
|
+
outlineOffset: string;
|
795
|
+
};
|
796
|
+
'&.is-pressed': {
|
797
|
+
backgroundColor: string;
|
798
|
+
borderColor: string;
|
799
|
+
path: {
|
800
|
+
fill: string;
|
801
|
+
};
|
802
|
+
};
|
803
|
+
'&.is-hovered': {
|
804
|
+
bg: string;
|
805
|
+
};
|
806
|
+
cursor: string;
|
807
|
+
outline: string;
|
808
|
+
borderRadius: string;
|
809
|
+
borderColor: string;
|
810
|
+
path: {
|
811
|
+
fill: string;
|
812
|
+
};
|
813
|
+
};
|
814
|
+
invertedBadgeDeleteButton: {
|
815
|
+
transition: string;
|
816
|
+
height: number;
|
817
|
+
p: number;
|
818
|
+
width: number;
|
819
|
+
border: string;
|
820
|
+
'&.is-focused': {
|
821
|
+
backgroundColor: string;
|
822
|
+
outline: string;
|
823
|
+
outlineColor: string;
|
824
|
+
outlineOffset: string;
|
825
|
+
};
|
826
|
+
'&.is-pressed': {
|
827
|
+
backgroundColor: string;
|
828
|
+
borderColor: string;
|
829
|
+
path: {
|
830
|
+
fill: string;
|
831
|
+
};
|
832
|
+
};
|
833
|
+
'&.is-hovered': {
|
834
|
+
bg: string;
|
835
|
+
};
|
836
|
+
cursor: string;
|
837
|
+
outline: string;
|
838
|
+
borderRadius: string;
|
839
|
+
borderColor: string;
|
840
|
+
path: {
|
841
|
+
fill: string;
|
842
|
+
};
|
843
|
+
};
|
844
|
+
clearSelectionButton: {
|
845
|
+
top: string;
|
846
|
+
right: string;
|
847
|
+
bg: string;
|
848
|
+
'.is-float-label &': {
|
849
|
+
top: string;
|
850
|
+
};
|
851
|
+
width: string;
|
852
|
+
height: string;
|
853
|
+
border: string;
|
854
|
+
position: string;
|
855
|
+
'& > svg': {
|
856
|
+
minWidth: string;
|
857
|
+
width: string;
|
858
|
+
height: string;
|
859
|
+
};
|
860
|
+
'&.is-hovered': {
|
861
|
+
bg: string;
|
862
|
+
};
|
863
|
+
'&.is-pressed': {
|
864
|
+
bg: string;
|
865
|
+
};
|
866
|
+
cursor: string;
|
867
|
+
transition: string;
|
868
|
+
outline: string;
|
869
|
+
borderRadius: string;
|
870
|
+
borderColor: string;
|
871
|
+
path: {
|
872
|
+
fill: string;
|
873
|
+
};
|
874
|
+
'&.is-focused': {
|
875
|
+
outline: string;
|
876
|
+
outlineColor: string;
|
877
|
+
outlineOffset: string;
|
878
|
+
};
|
879
|
+
};
|
880
|
+
};
|
720
881
|
withIcon: {
|
721
882
|
display: string;
|
722
883
|
path: {
|
@@ -744,12 +905,12 @@ declare const _default: {
|
|
744
905
|
};
|
745
906
|
alignItems: string;
|
746
907
|
justifyContent: string;
|
908
|
+
flexShrink: number;
|
747
909
|
minWidth: string;
|
748
910
|
cursor: string;
|
749
911
|
maxWidth: string;
|
750
912
|
fontFamily: string;
|
751
913
|
fontSize: string;
|
752
|
-
flexGrow: string;
|
753
914
|
fontWeight: number;
|
754
915
|
textAlign: string;
|
755
916
|
verticalAlign: string;
|
@@ -758,6 +919,7 @@ declare const _default: {
|
|
758
919
|
border: string;
|
759
920
|
px: string;
|
760
921
|
py: string;
|
922
|
+
maxHeight: string;
|
761
923
|
height: string;
|
762
924
|
'&.is-disabled': {
|
763
925
|
opacity: number;
|
@@ -790,12 +952,12 @@ declare const _default: {
|
|
790
952
|
};
|
791
953
|
alignItems: string;
|
792
954
|
justifyContent: string;
|
955
|
+
flexShrink: number;
|
793
956
|
minWidth: string;
|
794
957
|
cursor: string;
|
795
958
|
maxWidth: string;
|
796
959
|
fontFamily: string;
|
797
960
|
fontSize: string;
|
798
|
-
flexGrow: string;
|
799
961
|
fontWeight: number;
|
800
962
|
textAlign: string;
|
801
963
|
verticalAlign: string;
|
@@ -804,6 +966,7 @@ declare const _default: {
|
|
804
966
|
border: string;
|
805
967
|
px: string;
|
806
968
|
py: string;
|
969
|
+
maxHeight: string;
|
807
970
|
height: string;
|
808
971
|
'&.is-disabled': {
|
809
972
|
opacity: number;
|
@@ -842,16 +1005,17 @@ declare const _default: {
|
|
842
1005
|
};
|
843
1006
|
alignItems: string;
|
844
1007
|
justifyContent: string;
|
1008
|
+
flexShrink: number;
|
845
1009
|
minWidth: string;
|
846
1010
|
cursor: string;
|
847
1011
|
maxWidth: string;
|
848
1012
|
fontFamily: string;
|
849
|
-
flexGrow: string;
|
850
1013
|
fontWeight: number;
|
851
1014
|
textAlign: string;
|
852
1015
|
verticalAlign: string;
|
853
1016
|
px: string;
|
854
1017
|
py: string;
|
1018
|
+
maxHeight: string;
|
855
1019
|
'&.is-disabled': {
|
856
1020
|
opacity: number;
|
857
1021
|
};
|
@@ -891,16 +1055,17 @@ declare const _default: {
|
|
891
1055
|
};
|
892
1056
|
alignItems: string;
|
893
1057
|
justifyContent: string;
|
1058
|
+
flexShrink: number;
|
894
1059
|
minWidth: string;
|
895
1060
|
cursor: string;
|
896
1061
|
maxWidth: string;
|
897
1062
|
fontFamily: string;
|
898
|
-
flexGrow: string;
|
899
1063
|
fontWeight: number;
|
900
1064
|
textAlign: string;
|
901
1065
|
verticalAlign: string;
|
902
1066
|
px: string;
|
903
1067
|
py: string;
|
1068
|
+
maxHeight: string;
|
904
1069
|
'&.is-disabled': {
|
905
1070
|
opacity: number;
|
906
1071
|
};
|
@@ -1020,11 +1185,11 @@ declare const _default: {
|
|
1020
1185
|
backgroundColor: string;
|
1021
1186
|
borderColor: string;
|
1022
1187
|
color: string;
|
1188
|
+
flexShrink: number;
|
1023
1189
|
minWidth: string;
|
1024
1190
|
cursor: string;
|
1025
1191
|
fontFamily: string;
|
1026
1192
|
fontSize: string;
|
1027
|
-
flexGrow: string;
|
1028
1193
|
fontWeight: number;
|
1029
1194
|
textAlign: string;
|
1030
1195
|
verticalAlign: string;
|
@@ -1072,11 +1237,11 @@ declare const _default: {
|
|
1072
1237
|
backgroundColor: string;
|
1073
1238
|
borderColor: string;
|
1074
1239
|
color: string;
|
1240
|
+
flexShrink: number;
|
1075
1241
|
minWidth: string;
|
1076
1242
|
cursor: string;
|
1077
1243
|
fontFamily: string;
|
1078
1244
|
fontSize: string;
|
1079
|
-
flexGrow: string;
|
1080
1245
|
fontWeight: number;
|
1081
1246
|
textAlign: string;
|
1082
1247
|
verticalAlign: string;
|
@@ -1268,9 +1433,11 @@ declare const _default: {
|
|
1268
1433
|
borderColor: string;
|
1269
1434
|
};
|
1270
1435
|
copyButton: {
|
1436
|
+
mx: string;
|
1271
1437
|
path: {
|
1272
1438
|
fill: string;
|
1273
1439
|
};
|
1440
|
+
border: string;
|
1274
1441
|
};
|
1275
1442
|
deleteAttachment: {
|
1276
1443
|
backgroundColor: string;
|
@@ -1393,106 +1560,21 @@ declare const _default: {
|
|
1393
1560
|
};
|
1394
1561
|
};
|
1395
1562
|
hintButton: {
|
1396
|
-
|
1397
|
-
'&.is-hovered': {
|
1398
|
-
bg: string;
|
1399
|
-
};
|
1400
|
-
};
|
1401
|
-
badgeDeleteButton: {
|
1402
|
-
transition: string;
|
1403
|
-
height: number;
|
1404
|
-
p: number;
|
1405
|
-
width: number;
|
1406
|
-
border: string;
|
1407
|
-
'&.is-focused': {
|
1408
|
-
backgroundColor: string;
|
1409
|
-
outline: string;
|
1410
|
-
outlineColor: string;
|
1411
|
-
outlineOffset: string;
|
1412
|
-
};
|
1413
|
-
'&.is-pressed': {
|
1414
|
-
backgroundColor: string;
|
1415
|
-
borderColor: string;
|
1416
|
-
path: {
|
1417
|
-
fill: string;
|
1418
|
-
};
|
1419
|
-
};
|
1420
|
-
'&.is-hovered': {
|
1421
|
-
bg: string;
|
1422
|
-
};
|
1423
|
-
cursor: string;
|
1424
|
-
outline: string;
|
1425
|
-
borderRadius: string;
|
1426
|
-
borderColor: string;
|
1563
|
+
backgroundColor: string;
|
1427
1564
|
path: {
|
1428
1565
|
fill: string;
|
1429
1566
|
};
|
1430
|
-
};
|
1431
|
-
invertedBadgeDeleteButton: {
|
1432
|
-
transition: string;
|
1433
|
-
height: number;
|
1434
|
-
p: number;
|
1435
|
-
width: number;
|
1436
|
-
border: string;
|
1437
1567
|
'&.is-focused': {
|
1438
|
-
backgroundColor: string;
|
1439
1568
|
outline: string;
|
1440
1569
|
outlineColor: string;
|
1441
1570
|
outlineOffset: string;
|
1442
1571
|
};
|
1443
|
-
'&.is-
|
1572
|
+
'&.is-hovered': {
|
1444
1573
|
backgroundColor: string;
|
1445
|
-
borderColor: string;
|
1446
1574
|
path: {
|
1447
1575
|
fill: string;
|
1448
1576
|
};
|
1449
1577
|
};
|
1450
|
-
'&.is-hovered': {
|
1451
|
-
bg: string;
|
1452
|
-
};
|
1453
|
-
cursor: string;
|
1454
|
-
outline: string;
|
1455
|
-
borderRadius: string;
|
1456
|
-
borderColor: string;
|
1457
|
-
path: {
|
1458
|
-
fill: string;
|
1459
|
-
};
|
1460
|
-
};
|
1461
|
-
clearSelectionButton: {
|
1462
|
-
top: string;
|
1463
|
-
right: string;
|
1464
|
-
bg: string;
|
1465
|
-
'.is-float-label &': {
|
1466
|
-
top: string;
|
1467
|
-
};
|
1468
|
-
width: string;
|
1469
|
-
height: string;
|
1470
|
-
border: string;
|
1471
|
-
position: string;
|
1472
|
-
'& > svg': {
|
1473
|
-
minWidth: string;
|
1474
|
-
width: string;
|
1475
|
-
height: string;
|
1476
|
-
};
|
1477
|
-
'&.is-hovered': {
|
1478
|
-
bg: string;
|
1479
|
-
};
|
1480
|
-
'&.is-pressed': {
|
1481
|
-
bg: string;
|
1482
|
-
};
|
1483
|
-
cursor: string;
|
1484
|
-
transition: string;
|
1485
|
-
outline: string;
|
1486
|
-
borderRadius: string;
|
1487
|
-
borderColor: string;
|
1488
|
-
path: {
|
1489
|
-
fill: string;
|
1490
|
-
};
|
1491
|
-
'&.is-focused': {
|
1492
|
-
outline: string;
|
1493
|
-
outlineColor: string;
|
1494
|
-
outlineOffset: string;
|
1495
|
-
};
|
1496
1578
|
};
|
1497
1579
|
};
|
1498
1580
|
modalCloseButton: {
|
@@ -1557,11 +1639,11 @@ declare const _default: {
|
|
1557
1639
|
borderColor: string;
|
1558
1640
|
alignItems: string;
|
1559
1641
|
justifyContent: string;
|
1642
|
+
flexShrink: number;
|
1560
1643
|
minWidth: string;
|
1561
1644
|
cursor: string;
|
1562
1645
|
fontFamily: string;
|
1563
1646
|
fontSize: string;
|
1564
|
-
flexGrow: string;
|
1565
1647
|
fontWeight: number;
|
1566
1648
|
textAlign: string;
|
1567
1649
|
verticalAlign: string;
|
@@ -1569,6 +1651,7 @@ declare const _default: {
|
|
1569
1651
|
borderRadius: string;
|
1570
1652
|
px: string;
|
1571
1653
|
py: string;
|
1654
|
+
maxHeight: string;
|
1572
1655
|
height: string;
|
1573
1656
|
'&.is-disabled': {
|
1574
1657
|
opacity: number;
|
@@ -1612,6 +1695,9 @@ declare const _default: {
|
|
1612
1695
|
borderRadius: string;
|
1613
1696
|
height: string;
|
1614
1697
|
};
|
1698
|
+
button: {
|
1699
|
+
border: string;
|
1700
|
+
};
|
1615
1701
|
};
|
1616
1702
|
select: {
|
1617
1703
|
borderRadius: string;
|
@@ -1674,6 +1760,42 @@ declare const _default: {
|
|
1674
1760
|
ml: string;
|
1675
1761
|
};
|
1676
1762
|
};
|
1763
|
+
switch: {
|
1764
|
+
container: {
|
1765
|
+
minWidth: string;
|
1766
|
+
color: string;
|
1767
|
+
bg: string;
|
1768
|
+
border: string;
|
1769
|
+
borderColor: string;
|
1770
|
+
borderRadius: number;
|
1771
|
+
'&.is-selected': {
|
1772
|
+
bg: string;
|
1773
|
+
borderColor: string;
|
1774
|
+
};
|
1775
|
+
};
|
1776
|
+
thumbContainer: {
|
1777
|
+
bg: string;
|
1778
|
+
border: string;
|
1779
|
+
maxWidth: number;
|
1780
|
+
height: number;
|
1781
|
+
py: string;
|
1782
|
+
px: string;
|
1783
|
+
'label.is-selected &': {
|
1784
|
+
bg: string;
|
1785
|
+
};
|
1786
|
+
};
|
1787
|
+
thumb: {
|
1788
|
+
bg: string;
|
1789
|
+
minHeight: number;
|
1790
|
+
maxHeight: number;
|
1791
|
+
width: number;
|
1792
|
+
border: string;
|
1793
|
+
'&.is-selected': {
|
1794
|
+
bg: string;
|
1795
|
+
transform: string;
|
1796
|
+
};
|
1797
|
+
};
|
1798
|
+
};
|
1677
1799
|
numberField: {
|
1678
1800
|
arrowsWrapper: {
|
1679
1801
|
'> textarea': {
|
@@ -1774,6 +1896,15 @@ declare const _default: {
|
|
1774
1896
|
fontSize: string;
|
1775
1897
|
fontWeight: number;
|
1776
1898
|
};
|
1899
|
+
panelHeaderText: {
|
1900
|
+
textOverflow: string;
|
1901
|
+
overflow: string;
|
1902
|
+
whiteSpace: string;
|
1903
|
+
fontSize: string;
|
1904
|
+
fontWeight: number;
|
1905
|
+
color: string;
|
1906
|
+
fontFamily: string;
|
1907
|
+
};
|
1777
1908
|
messagesText: {
|
1778
1909
|
'&.is-success, &.is-warning, &.is-error, &.is-default': {
|
1779
1910
|
color: string;
|
@@ -1784,6 +1915,44 @@ declare const _default: {
|
|
1784
1915
|
};
|
1785
1916
|
};
|
1786
1917
|
};
|
1918
|
+
H1: {
|
1919
|
+
fontSize: string;
|
1920
|
+
fontWeight: number;
|
1921
|
+
color: string;
|
1922
|
+
fontFamily: string;
|
1923
|
+
};
|
1924
|
+
H2: {
|
1925
|
+
fontSize: string;
|
1926
|
+
fontWeight: number;
|
1927
|
+
color: string;
|
1928
|
+
fontFamily: string;
|
1929
|
+
};
|
1930
|
+
H3: {
|
1931
|
+
fontSize: string;
|
1932
|
+
fontWeight: number;
|
1933
|
+
color: string;
|
1934
|
+
fontFamily: string;
|
1935
|
+
};
|
1936
|
+
H4: {
|
1937
|
+
fontSize: string;
|
1938
|
+
fontWeight: number;
|
1939
|
+
color: string;
|
1940
|
+
fontFamily: string;
|
1941
|
+
};
|
1942
|
+
H5: {
|
1943
|
+
fontSize: string;
|
1944
|
+
fontWeight: number;
|
1945
|
+
color: string;
|
1946
|
+
fontFamily: string;
|
1947
|
+
};
|
1948
|
+
H6: {
|
1949
|
+
textTransform: string;
|
1950
|
+
color: string;
|
1951
|
+
fontFamily: string;
|
1952
|
+
fontWeight: number;
|
1953
|
+
fontSize: string;
|
1954
|
+
letterSpacing: string;
|
1955
|
+
};
|
1787
1956
|
h1: {
|
1788
1957
|
fontSize: string;
|
1789
1958
|
fontWeight: number;
|
@@ -1820,6 +1989,21 @@ declare const _default: {
|
|
1820
1989
|
fontFamily: string;
|
1821
1990
|
fontWeight: number;
|
1822
1991
|
fontSize: string;
|
1992
|
+
letterSpacing: string;
|
1993
|
+
};
|
1994
|
+
base: {
|
1995
|
+
lineHeight: string;
|
1996
|
+
};
|
1997
|
+
buttonSubtitle: {
|
1998
|
+
fontSize: string;
|
1999
|
+
fontWeight: number;
|
2000
|
+
};
|
2001
|
+
buttonTitle: {
|
2002
|
+
fontSize: string;
|
2003
|
+
};
|
2004
|
+
pageHeaderBody: {
|
2005
|
+
lineHeight: string;
|
2006
|
+
color: string;
|
1823
2007
|
};
|
1824
2008
|
sideNavHeader: {
|
1825
2009
|
py: string;
|
@@ -1917,7 +2101,6 @@ declare const _default: {
|
|
1917
2101
|
badges: {
|
1918
2102
|
baseBadge: {
|
1919
2103
|
'& span': {
|
1920
|
-
color: string;
|
1921
2104
|
fontSize: string;
|
1922
2105
|
fontWeight: number;
|
1923
2106
|
};
|
@@ -1954,7 +2137,6 @@ declare const _default: {
|
|
1954
2137
|
};
|
1955
2138
|
default: {
|
1956
2139
|
'& span': {
|
1957
|
-
color: string;
|
1958
2140
|
fontSize: string;
|
1959
2141
|
fontWeight: number;
|
1960
2142
|
};
|
@@ -1993,7 +2175,6 @@ declare const _default: {
|
|
1993
2175
|
backgroundColor: string;
|
1994
2176
|
color: string;
|
1995
2177
|
'& span': {
|
1996
|
-
color: string;
|
1997
2178
|
fontSize: string;
|
1998
2179
|
fontWeight: number;
|
1999
2180
|
};
|
@@ -2069,7 +2250,6 @@ declare const _default: {
|
|
2069
2250
|
backgroundColor: string;
|
2070
2251
|
color: string;
|
2071
2252
|
'& span': {
|
2072
|
-
color: string;
|
2073
2253
|
fontSize: string;
|
2074
2254
|
fontWeight: number;
|
2075
2255
|
};
|
@@ -2107,7 +2287,6 @@ declare const _default: {
|
|
2107
2287
|
backgroundColor: string;
|
2108
2288
|
color: string;
|
2109
2289
|
'& span': {
|
2110
|
-
color: string;
|
2111
2290
|
fontSize: string;
|
2112
2291
|
fontWeight: number;
|
2113
2292
|
};
|
@@ -2145,7 +2324,6 @@ declare const _default: {
|
|
2145
2324
|
backgroundColor: string;
|
2146
2325
|
color: string;
|
2147
2326
|
'& span': {
|
2148
|
-
color: string;
|
2149
2327
|
fontSize: string;
|
2150
2328
|
fontWeight: number;
|
2151
2329
|
};
|
@@ -2183,7 +2361,6 @@ declare const _default: {
|
|
2183
2361
|
backgroundColor: string;
|
2184
2362
|
color: string;
|
2185
2363
|
'& span': {
|
2186
|
-
color: string;
|
2187
2364
|
fontSize: string;
|
2188
2365
|
fontWeight: number;
|
2189
2366
|
};
|
@@ -2221,7 +2398,6 @@ declare const _default: {
|
|
2221
2398
|
backgroundColor: string;
|
2222
2399
|
color: string;
|
2223
2400
|
'& span': {
|
2224
|
-
color: string;
|
2225
2401
|
fontSize: string;
|
2226
2402
|
fontWeight: number;
|
2227
2403
|
};
|
@@ -2259,7 +2435,6 @@ declare const _default: {
|
|
2259
2435
|
backgroundColor: string;
|
2260
2436
|
color: string;
|
2261
2437
|
'& span': {
|
2262
|
-
color: string;
|
2263
2438
|
fontSize: string;
|
2264
2439
|
fontWeight: number;
|
2265
2440
|
};
|
@@ -2297,7 +2472,6 @@ declare const _default: {
|
|
2297
2472
|
backgroundColor: string;
|
2298
2473
|
color: string;
|
2299
2474
|
'& span': {
|
2300
|
-
color: string;
|
2301
2475
|
fontSize: string;
|
2302
2476
|
fontWeight: number;
|
2303
2477
|
};
|
@@ -2452,7 +2626,6 @@ declare const _default: {
|
|
2452
2626
|
backgroundColor: string;
|
2453
2627
|
color: string;
|
2454
2628
|
'& span': {
|
2455
|
-
color: string;
|
2456
2629
|
fontSize: string;
|
2457
2630
|
fontWeight: number;
|
2458
2631
|
};
|
@@ -2492,7 +2665,6 @@ declare const _default: {
|
|
2492
2665
|
backgroundColor: string;
|
2493
2666
|
color: string;
|
2494
2667
|
'& span': {
|
2495
|
-
color: string;
|
2496
2668
|
fontSize: string;
|
2497
2669
|
fontWeight: number;
|
2498
2670
|
};
|
@@ -2532,7 +2704,6 @@ declare const _default: {
|
|
2532
2704
|
backgroundColor: string;
|
2533
2705
|
color: string;
|
2534
2706
|
'& span': {
|
2535
|
-
color: string;
|
2536
2707
|
fontSize: string;
|
2537
2708
|
fontWeight: number;
|
2538
2709
|
};
|
@@ -2572,7 +2743,6 @@ declare const _default: {
|
|
2572
2743
|
backgroundColor: string;
|
2573
2744
|
color: string;
|
2574
2745
|
'& span': {
|
2575
|
-
color: string;
|
2576
2746
|
fontSize: string;
|
2577
2747
|
fontWeight: number;
|
2578
2748
|
};
|
@@ -2612,7 +2782,6 @@ declare const _default: {
|
|
2612
2782
|
backgroundColor: string;
|
2613
2783
|
color: string;
|
2614
2784
|
'& span': {
|
2615
|
-
color: string;
|
2616
2785
|
fontSize: string;
|
2617
2786
|
fontWeight: number;
|
2618
2787
|
};
|
@@ -2723,7 +2892,6 @@ declare const _default: {
|
|
2723
2892
|
backgroundColor: string;
|
2724
2893
|
color: string;
|
2725
2894
|
'& span': {
|
2726
|
-
color: string;
|
2727
2895
|
fontSize: string;
|
2728
2896
|
fontWeight: number;
|
2729
2897
|
};
|
@@ -2761,7 +2929,6 @@ declare const _default: {
|
|
2761
2929
|
backgroundColor: string;
|
2762
2930
|
color: string;
|
2763
2931
|
'& span': {
|
2764
|
-
color: string;
|
2765
2932
|
fontSize: string;
|
2766
2933
|
fontWeight: number;
|
2767
2934
|
};
|
@@ -3123,13 +3290,13 @@ declare const _default: {
|
|
3123
3290
|
};
|
3124
3291
|
alignItems: string;
|
3125
3292
|
justifyContent: string;
|
3293
|
+
flexShrink: number;
|
3126
3294
|
minWidth: string;
|
3127
3295
|
cursor: string;
|
3128
3296
|
display: string;
|
3129
3297
|
maxWidth: string;
|
3130
3298
|
fontFamily: string;
|
3131
3299
|
fontSize: string;
|
3132
|
-
flexGrow: string;
|
3133
3300
|
fontWeight: number;
|
3134
3301
|
textAlign: string;
|
3135
3302
|
verticalAlign: string;
|
@@ -3138,6 +3305,7 @@ declare const _default: {
|
|
3138
3305
|
border: string;
|
3139
3306
|
px: string;
|
3140
3307
|
py: string;
|
3308
|
+
maxHeight: string;
|
3141
3309
|
height: string;
|
3142
3310
|
'&.is-disabled': {
|
3143
3311
|
opacity: number;
|
@@ -3170,13 +3338,13 @@ declare const _default: {
|
|
3170
3338
|
};
|
3171
3339
|
alignItems: string;
|
3172
3340
|
justifyContent: string;
|
3341
|
+
flexShrink: number;
|
3173
3342
|
minWidth: string;
|
3174
3343
|
cursor: string;
|
3175
3344
|
display: string;
|
3176
3345
|
maxWidth: string;
|
3177
3346
|
fontFamily: string;
|
3178
3347
|
fontSize: string;
|
3179
|
-
flexGrow: string;
|
3180
3348
|
fontWeight: number;
|
3181
3349
|
textAlign: string;
|
3182
3350
|
verticalAlign: string;
|
@@ -3185,6 +3353,7 @@ declare const _default: {
|
|
3185
3353
|
border: string;
|
3186
3354
|
px: string;
|
3187
3355
|
py: string;
|
3356
|
+
maxHeight: string;
|
3188
3357
|
height: string;
|
3189
3358
|
'&.is-disabled': {
|
3190
3359
|
opacity: number;
|
@@ -3352,6 +3521,21 @@ declare const _default: {
|
|
3352
3521
|
};
|
3353
3522
|
};
|
3354
3523
|
variants: {
|
3524
|
+
accordion: {
|
3525
|
+
accordion: {
|
3526
|
+
'&:not(:last-of-type)': {
|
3527
|
+
borderBottom: string;
|
3528
|
+
borderBottomColor: string;
|
3529
|
+
};
|
3530
|
+
pb: string;
|
3531
|
+
};
|
3532
|
+
body: {
|
3533
|
+
py: string;
|
3534
|
+
};
|
3535
|
+
header: {
|
3536
|
+
p: string;
|
3537
|
+
};
|
3538
|
+
};
|
3355
3539
|
attachment: {
|
3356
3540
|
container: {
|
3357
3541
|
backgroundColor: string;
|
@@ -3373,279 +3557,384 @@ declare const _default: {
|
|
3373
3557
|
right: string;
|
3374
3558
|
};
|
3375
3559
|
};
|
3376
|
-
|
3377
|
-
|
3378
|
-
|
3379
|
-
|
3380
|
-
|
3560
|
+
avatar: {
|
3561
|
+
backgroundColor: string;
|
3562
|
+
color: string;
|
3563
|
+
cursor: string;
|
3564
|
+
'&.is-orange': {
|
3381
3565
|
backgroundColor: string;
|
3382
|
-
|
3566
|
+
color: string;
|
3383
3567
|
};
|
3384
|
-
|
3385
|
-
|
3568
|
+
'&.is-green': {
|
3569
|
+
backgroundColor: string;
|
3570
|
+
color: string;
|
3386
3571
|
};
|
3387
|
-
|
3388
|
-
|
3389
|
-
|
3390
|
-
backgroundColor: string;
|
3391
|
-
};
|
3392
|
-
'&.is-pressed': {
|
3393
|
-
backgroundColor: string;
|
3394
|
-
};
|
3395
|
-
'&.is-focused': {
|
3396
|
-
outline: string;
|
3397
|
-
outlineColor: string;
|
3398
|
-
outlineOffset: string;
|
3399
|
-
};
|
3572
|
+
'&.is-purple': {
|
3573
|
+
backgroundColor: string;
|
3574
|
+
color: string;
|
3400
3575
|
};
|
3401
|
-
|
3402
|
-
|
3403
|
-
paddingLeft: string;
|
3576
|
+
'&.is-pink': {
|
3577
|
+
backgroundColor: string;
|
3404
3578
|
color: string;
|
3405
|
-
borderRadius: string;
|
3406
|
-
'&.is-focused': {
|
3407
|
-
outline: string;
|
3408
|
-
outlineColor: string;
|
3409
|
-
outlineOffset: string;
|
3410
|
-
};
|
3411
|
-
'&.is-hovered': {
|
3412
|
-
backgroundColor: string;
|
3413
|
-
};
|
3414
|
-
'&.is-pressed': {
|
3415
|
-
backgroundColor: string;
|
3416
|
-
color: string;
|
3417
|
-
};
|
3418
|
-
'&.is-selected': {
|
3419
|
-
bg: string;
|
3420
|
-
boxShadow: string;
|
3421
|
-
color: string;
|
3422
|
-
};
|
3423
3579
|
};
|
3424
|
-
|
3580
|
+
'&.is-red': {
|
3581
|
+
backgroundColor: string;
|
3425
3582
|
color: string;
|
3426
3583
|
};
|
3427
|
-
|
3584
|
+
'&.is-yellow': {
|
3585
|
+
backgroundColor: string;
|
3428
3586
|
color: string;
|
3429
|
-
ml: string;
|
3430
|
-
'.is-selected &': {
|
3431
|
-
color: string;
|
3432
|
-
};
|
3433
3587
|
};
|
3434
|
-
|
3435
|
-
|
3588
|
+
'&.is-cyan': {
|
3589
|
+
backgroundColor: string;
|
3436
3590
|
color: string;
|
3437
|
-
'&.is-hovered': {
|
3438
|
-
backgroundColor: string;
|
3439
|
-
};
|
3440
|
-
'&.is-focused': {
|
3441
|
-
boxShadow: string;
|
3442
|
-
WebkitBoxShadow: string;
|
3443
|
-
MozBoxShadow: string;
|
3444
|
-
};
|
3445
3591
|
};
|
3446
|
-
|
3447
|
-
|
3448
|
-
py: string;
|
3592
|
+
'&.is-teal': {
|
3593
|
+
backgroundColor: string;
|
3449
3594
|
color: string;
|
3450
|
-
|
3451
|
-
|
3452
|
-
|
3453
|
-
|
3454
|
-
|
3455
|
-
|
3456
|
-
|
3457
|
-
|
3458
|
-
|
3459
|
-
|
3460
|
-
|
3461
|
-
|
3595
|
+
};
|
3596
|
+
display: string;
|
3597
|
+
borderRadius: string;
|
3598
|
+
textAlign: string;
|
3599
|
+
alignItems: string;
|
3600
|
+
justifyContent: string;
|
3601
|
+
fontFamily: string;
|
3602
|
+
};
|
3603
|
+
breadcrumb: {
|
3604
|
+
link: {
|
3605
|
+
fontWeight: number;
|
3606
|
+
fontSize: string;
|
3607
|
+
};
|
3608
|
+
};
|
3609
|
+
box: {
|
3610
|
+
indeterminateCheckboxIcon: {
|
3611
|
+
height: string;
|
3612
|
+
width: string;
|
3613
|
+
'&.is-disabled': {
|
3614
|
+
'& rect[id="indeterminate-checkbox-icon-wrapper"]': {
|
3462
3615
|
fill: string;
|
3616
|
+
stroke: string;
|
3463
3617
|
};
|
3464
|
-
backgroundColor: string;
|
3465
|
-
boxShadow: string;
|
3466
3618
|
};
|
3467
3619
|
'&.is-focused': {
|
3468
|
-
outline: string;
|
3469
|
-
outlineColor: string;
|
3470
|
-
outlineOffset: string;
|
3471
3620
|
boxShadow: string;
|
3472
|
-
WebkitBoxShadow: string;
|
3473
|
-
MozBoxShadow: string;
|
3474
3621
|
};
|
3475
3622
|
};
|
3476
|
-
|
3477
|
-
|
3478
|
-
|
3479
|
-
|
3480
|
-
py: string;
|
3481
|
-
'&.is-selected': {
|
3482
|
-
backgroundColor: string;
|
3483
|
-
boxShadow: string;
|
3484
|
-
};
|
3623
|
+
};
|
3624
|
+
buttonBar: {
|
3625
|
+
container: {
|
3626
|
+
gap: string;
|
3485
3627
|
backgroundColor: string;
|
3486
|
-
'> svg': {
|
3487
|
-
fill: string;
|
3488
|
-
};
|
3489
|
-
'> div > svg': {
|
3490
|
-
fill: string;
|
3491
|
-
};
|
3492
3628
|
};
|
3493
|
-
|
3494
|
-
|
3629
|
+
justifyRightContainer: {
|
3630
|
+
gap: string;
|
3631
|
+
backgroundColor: string;
|
3495
3632
|
};
|
3496
3633
|
};
|
3497
|
-
|
3498
|
-
|
3499
|
-
|
3500
|
-
|
3501
|
-
|
3502
|
-
|
3503
|
-
|
3634
|
+
callout: {
|
3635
|
+
base: {
|
3636
|
+
width: string;
|
3637
|
+
backgroundColor: string;
|
3638
|
+
lineHeight: string;
|
3639
|
+
p: string;
|
3640
|
+
border: string;
|
3641
|
+
borderLeft: string;
|
3642
|
+
borderLeftColor: string;
|
3643
|
+
borderRadius: string;
|
3644
|
+
alignItems: string;
|
3645
|
+
color: string;
|
3646
|
+
'&.is-success, > .is-success': {
|
3647
|
+
borderColor: string;
|
3648
|
+
borderLeftColor: string;
|
3504
3649
|
};
|
3505
|
-
'&.is-
|
3506
|
-
|
3650
|
+
'&.is-warning, > .is-warning': {
|
3651
|
+
borderColor: string;
|
3652
|
+
borderLeftColor: string;
|
3507
3653
|
};
|
3508
|
-
'&.is-
|
3509
|
-
|
3654
|
+
'&.is-error, > .is-error': {
|
3655
|
+
borderColor: string;
|
3656
|
+
borderLeftColor: string;
|
3510
3657
|
};
|
3511
|
-
|
3658
|
+
};
|
3659
|
+
icon: {
|
3660
|
+
ml: string;
|
3661
|
+
mr: string;
|
3662
|
+
minWidth: string;
|
3663
|
+
width: string;
|
3664
|
+
height: string;
|
3665
|
+
};
|
3666
|
+
};
|
3667
|
+
codeView: {
|
3668
|
+
theme: {
|
3669
|
+
plain: {
|
3512
3670
|
color: string;
|
3671
|
+
backgroundColor: string;
|
3513
3672
|
};
|
3673
|
+
styles: ({
|
3674
|
+
types: string[];
|
3675
|
+
style: {
|
3676
|
+
color: string;
|
3677
|
+
background?: undefined;
|
3678
|
+
fontWeight?: undefined;
|
3679
|
+
cursor?: undefined;
|
3680
|
+
};
|
3681
|
+
} | {
|
3682
|
+
types: string[];
|
3683
|
+
style: {
|
3684
|
+
color: string;
|
3685
|
+
background: string;
|
3686
|
+
fontWeight?: undefined;
|
3687
|
+
cursor?: undefined;
|
3688
|
+
};
|
3689
|
+
} | {
|
3690
|
+
types: string[];
|
3691
|
+
style: {
|
3692
|
+
fontWeight: string;
|
3693
|
+
color?: undefined;
|
3694
|
+
background?: undefined;
|
3695
|
+
cursor?: undefined;
|
3696
|
+
};
|
3697
|
+
} | {
|
3698
|
+
types: string[];
|
3699
|
+
style: {
|
3700
|
+
cursor: string;
|
3701
|
+
color?: undefined;
|
3702
|
+
background?: undefined;
|
3703
|
+
fontWeight?: undefined;
|
3704
|
+
};
|
3705
|
+
})[];
|
3514
3706
|
};
|
3515
|
-
};
|
3516
|
-
message: {
|
3517
3707
|
wrapper: {
|
3518
|
-
gap: string;
|
3519
|
-
right: string;
|
3520
|
-
};
|
3521
|
-
item: {
|
3522
|
-
maxWidth: number;
|
3523
|
-
pointerEvents: string;
|
3524
|
-
mb: string;
|
3525
|
-
p: string;
|
3526
|
-
wordBreak: string;
|
3527
|
-
alignItems: string;
|
3528
3708
|
backgroundColor: string;
|
3529
|
-
|
3530
|
-
|
3531
|
-
|
3532
|
-
|
3533
|
-
|
3534
|
-
|
3535
|
-
|
3536
|
-
|
3537
|
-
|
3538
|
-
|
3709
|
+
border: string;
|
3710
|
+
borderColor: string;
|
3711
|
+
borderRadius: string;
|
3712
|
+
width: number;
|
3713
|
+
height: number;
|
3714
|
+
my: string;
|
3715
|
+
overflow: string;
|
3716
|
+
alignItems: string;
|
3717
|
+
'&.is-focused, &:focus': {
|
3718
|
+
boxShadow: string;
|
3719
|
+
outline: string;
|
3720
|
+
};
|
3721
|
+
pre: {
|
3722
|
+
backgroundColor: string;
|
3723
|
+
padding: string;
|
3539
3724
|
height: string;
|
3540
|
-
|
3541
|
-
|
3542
|
-
|
3543
|
-
|
3544
|
-
|
3725
|
+
width: string;
|
3726
|
+
overflowX: string;
|
3727
|
+
overflowY: string;
|
3728
|
+
fontSize: string;
|
3729
|
+
'& .token-line': {
|
3730
|
+
display: string;
|
3731
|
+
alignItems: string;
|
3732
|
+
'& .token': {
|
3733
|
+
whiteSpace: string;
|
3734
|
+
wordBreak: string;
|
3735
|
+
};
|
3545
3736
|
};
|
3546
|
-
|
3737
|
+
fontFamily: string;
|
3738
|
+
lineHeight: string;
|
3547
3739
|
};
|
3548
|
-
'&.
|
3740
|
+
'&.has-no-copy-button': {
|
3741
|
+
pre: {
|
3742
|
+
p: string;
|
3743
|
+
};
|
3744
|
+
};
|
3745
|
+
'&.has-line-numbers': {
|
3746
|
+
pre: {
|
3747
|
+
p: string;
|
3748
|
+
overflow: string;
|
3749
|
+
'& .token-line:first-of-type *': {
|
3750
|
+
pt: string;
|
3751
|
+
};
|
3752
|
+
'& .token-line': {
|
3753
|
+
display: string;
|
3754
|
+
'& .token': {
|
3755
|
+
whiteSpace: string;
|
3756
|
+
};
|
3757
|
+
};
|
3758
|
+
};
|
3759
|
+
};
|
3760
|
+
};
|
3761
|
+
lineNo: {
|
3762
|
+
display: string;
|
3763
|
+
userSelect: string;
|
3764
|
+
px: string;
|
3765
|
+
m: string;
|
3766
|
+
bg: string;
|
3767
|
+
minWidth: number;
|
3768
|
+
color: string;
|
3769
|
+
lineHeight: string;
|
3770
|
+
};
|
3771
|
+
header: {
|
3772
|
+
color: string;
|
3773
|
+
px: string;
|
3774
|
+
width: string;
|
3775
|
+
border: string;
|
3776
|
+
borderColor: string;
|
3777
|
+
lineHeight: string;
|
3778
|
+
};
|
3779
|
+
};
|
3780
|
+
dataTable: {
|
3781
|
+
container: {
|
3782
|
+
border: string;
|
3783
|
+
borderColor: string;
|
3784
|
+
borderRadius: string;
|
3785
|
+
};
|
3786
|
+
tableRow: {
|
3787
|
+
borderTop: string;
|
3788
|
+
borderTopColor: string;
|
3789
|
+
borderBottom: string;
|
3790
|
+
pl: string;
|
3791
|
+
'&:last-of-type': {
|
3792
|
+
borderBottomLeftRadius: string;
|
3793
|
+
borderBottomRightRadius: string;
|
3794
|
+
};
|
3795
|
+
};
|
3796
|
+
selectableTableRow: {
|
3797
|
+
bg: string;
|
3798
|
+
'&.is-hovered': {
|
3549
3799
|
bg: string;
|
3550
|
-
borderLeftColor: string;
|
3551
|
-
color: string;
|
3552
3800
|
};
|
3553
|
-
'&.is-
|
3801
|
+
'&.is-selected': {
|
3554
3802
|
bg: string;
|
3555
|
-
borderLeftColor: string;
|
3556
|
-
color: string;
|
3557
3803
|
};
|
3558
|
-
'&.is-
|
3804
|
+
'&.is-focused': {
|
3805
|
+
boxShadow: string;
|
3559
3806
|
bg: string;
|
3560
3807
|
};
|
3561
|
-
'&.is-
|
3562
|
-
|
3563
|
-
path: {
|
3564
|
-
fill: string;
|
3565
|
-
};
|
3808
|
+
'&.is-disabled': {
|
3809
|
+
opacity: string;
|
3566
3810
|
};
|
3567
|
-
|
3568
|
-
|
3811
|
+
borderTop: string;
|
3812
|
+
borderTopColor: string;
|
3813
|
+
borderBottom: string;
|
3814
|
+
pl: string;
|
3815
|
+
'&:last-of-type': {
|
3816
|
+
borderBottomLeftRadius: string;
|
3817
|
+
borderBottomRightRadius: string;
|
3569
3818
|
};
|
3570
3819
|
};
|
3571
|
-
|
3572
|
-
|
3573
|
-
|
3574
|
-
|
3820
|
+
tableHeadWrapper: {
|
3821
|
+
borderBottom: string;
|
3822
|
+
};
|
3823
|
+
tableHeadCell: {
|
3575
3824
|
px: string;
|
3576
|
-
|
3577
|
-
|
3578
|
-
|
3579
|
-
|
3580
|
-
|
3581
|
-
|
3582
|
-
transition: string;
|
3583
|
-
m: string[];
|
3584
|
-
maxHeight: string;
|
3585
|
-
overflowY: string;
|
3586
|
-
'&.is-open-no-transition': {
|
3587
|
-
opacity: string;
|
3588
|
-
transform: string;
|
3825
|
+
fontWeight: string;
|
3826
|
+
fontSize: string;
|
3827
|
+
'&.is-column-sortable': {
|
3828
|
+
svg: {
|
3829
|
+
fill: string;
|
3830
|
+
};
|
3589
3831
|
};
|
3590
|
-
'&.is-
|
3591
|
-
|
3592
|
-
transform: string;
|
3832
|
+
'&.is-first-column': {
|
3833
|
+
borderTopLeftRadius: string;
|
3593
3834
|
};
|
3594
|
-
'&.is-
|
3595
|
-
|
3596
|
-
maxWidth: string[];
|
3835
|
+
'&.is-last-column': {
|
3836
|
+
borderTopRightRadius: string;
|
3597
3837
|
};
|
3598
|
-
'&.is-
|
3599
|
-
|
3600
|
-
|
3838
|
+
'&.is-key-focused': {
|
3839
|
+
outline: string;
|
3840
|
+
outlineStyle: string;
|
3841
|
+
outlineColor: string;
|
3842
|
+
outlineOffset: string;
|
3601
3843
|
};
|
3602
|
-
|
3603
|
-
|
3604
|
-
|
3844
|
+
};
|
3845
|
+
rowHeader: {
|
3846
|
+
py: string;
|
3847
|
+
};
|
3848
|
+
tableCell: {
|
3849
|
+
fontSize: string;
|
3850
|
+
px: string;
|
3851
|
+
};
|
3852
|
+
};
|
3853
|
+
fieldHelperText: {
|
3854
|
+
title: {
|
3855
|
+
fontSize: string;
|
3856
|
+
pt: string;
|
3857
|
+
mt: string;
|
3858
|
+
'&.is-default': {
|
3859
|
+
color: string;
|
3605
3860
|
};
|
3606
|
-
'&.is-
|
3607
|
-
|
3608
|
-
maxWidth: string[];
|
3861
|
+
'&.is-error': {
|
3862
|
+
color: string;
|
3609
3863
|
};
|
3610
|
-
'&.is-
|
3611
|
-
|
3612
|
-
|
3864
|
+
'&.is-warning': {
|
3865
|
+
color: string;
|
3866
|
+
};
|
3867
|
+
'&.is-success': {
|
3868
|
+
color: string;
|
3613
3869
|
};
|
3614
3870
|
};
|
3871
|
+
};
|
3872
|
+
footer: {
|
3615
3873
|
container: {
|
3874
|
+
fontFamily: string;
|
3616
3875
|
justifyContent: string;
|
3876
|
+
backgroundColor: string;
|
3617
3877
|
};
|
3618
|
-
|
3619
|
-
|
3620
|
-
|
3621
|
-
|
3878
|
+
wrapper: {
|
3879
|
+
px: string[];
|
3880
|
+
py: string;
|
3881
|
+
maxWidth: string;
|
3882
|
+
mx: string;
|
3883
|
+
width: string;
|
3884
|
+
flexDirection: string[];
|
3885
|
+
justifyContent: string;
|
3886
|
+
alignItems: string;
|
3887
|
+
};
|
3888
|
+
footerLeftSection: {
|
3889
|
+
columnGap: string;
|
3890
|
+
flexDirection: string[];
|
3891
|
+
};
|
3892
|
+
footerNav: {
|
3893
|
+
listStyle: string;
|
3894
|
+
margin: string;
|
3895
|
+
padding: string;
|
3896
|
+
alignItems: string;
|
3897
|
+
justifyContent: string[];
|
3898
|
+
gap: string;
|
3899
|
+
flexWrap: string;
|
3900
|
+
my: string;
|
3622
3901
|
};
|
3623
3902
|
};
|
3624
|
-
|
3625
|
-
|
3626
|
-
|
3627
|
-
|
3628
|
-
|
3629
|
-
|
3903
|
+
iconWrapper: {
|
3904
|
+
sm: {
|
3905
|
+
'&.is-circle': {
|
3906
|
+
borderRadius: string;
|
3907
|
+
};
|
3908
|
+
borderRadius: string;
|
3909
|
+
minHeight: string;
|
3910
|
+
minWidth: string;
|
3911
|
+
height: string;
|
3912
|
+
width: string;
|
3913
|
+
p: string;
|
3630
3914
|
};
|
3631
|
-
|
3632
|
-
|
3633
|
-
|
3634
|
-
outlineColor: string;
|
3635
|
-
outlineOffset: string;
|
3636
|
-
'& > span': {
|
3637
|
-
outline: string;
|
3915
|
+
md: {
|
3916
|
+
'&.is-circle': {
|
3917
|
+
borderRadius: string;
|
3638
3918
|
};
|
3919
|
+
borderRadius: string;
|
3920
|
+
minHeight: string;
|
3921
|
+
minWidth: string;
|
3922
|
+
height: string;
|
3923
|
+
width: string;
|
3924
|
+
p: string;
|
3639
3925
|
};
|
3640
|
-
|
3641
|
-
|
3642
|
-
|
3643
|
-
|
3926
|
+
lg: {
|
3927
|
+
'&.is-circle': {
|
3928
|
+
borderRadius: string;
|
3929
|
+
};
|
3930
|
+
borderRadius: string;
|
3931
|
+
minHeight: string;
|
3932
|
+
minWidth: string;
|
3933
|
+
height: string;
|
3934
|
+
width: string;
|
3935
|
+
p: string;
|
3644
3936
|
};
|
3645
3937
|
};
|
3646
|
-
menuTab: {
|
3647
|
-
ml: string;
|
3648
|
-
};
|
3649
3938
|
listBox: {
|
3650
3939
|
container: {
|
3651
3940
|
px: string;
|
@@ -3672,90 +3961,24 @@ declare const _default: {
|
|
3672
3961
|
color: string;
|
3673
3962
|
bg: string;
|
3674
3963
|
};
|
3675
|
-
|
3676
|
-
|
3677
|
-
separator: {
|
3678
|
-
base: {
|
3679
|
-
bg: string;
|
3680
|
-
'&.is-vertical': {
|
3681
|
-
m: string;
|
3682
|
-
};
|
3683
|
-
};
|
3684
|
-
navBarSeparator: {
|
3685
|
-
my: string;
|
3686
|
-
mx: string;
|
3687
|
-
maxWidth: string;
|
3688
|
-
backgroundColor: string;
|
3689
|
-
};
|
3690
|
-
navBarSubtitleSeparator: {
|
3691
|
-
backgroundColor: string;
|
3692
|
-
};
|
3693
|
-
};
|
3694
|
-
menuItem: {
|
3695
|
-
item: {
|
3696
|
-
bg: string;
|
3697
|
-
padding: string;
|
3698
|
-
outline: string;
|
3699
|
-
color: string;
|
3700
|
-
cursor: string;
|
3701
|
-
'&.is-focused, &.is-selected, &.is-pressed': {
|
3964
|
+
'&.is-condensed': {
|
3965
|
+
pl: string;
|
3702
3966
|
bg: string;
|
3703
|
-
|
3704
|
-
|
3705
|
-
|
3967
|
+
'&.is-selected': {
|
3968
|
+
bg: string;
|
3969
|
+
};
|
3970
|
+
'&.is-focused': {
|
3971
|
+
bg: string;
|
3706
3972
|
};
|
3707
3973
|
};
|
3708
|
-
'&.is-pressed': {
|
3709
|
-
color: string;
|
3710
|
-
bg: string;
|
3711
|
-
};
|
3712
|
-
};
|
3713
|
-
separator: {
|
3714
|
-
my: string;
|
3715
3974
|
};
|
3716
3975
|
};
|
3717
|
-
|
3718
|
-
|
3719
|
-
|
3720
|
-
|
3721
|
-
|
3722
|
-
backgroundColor: string;
|
3723
|
-
color: string;
|
3724
|
-
};
|
3725
|
-
'&.is-green': {
|
3726
|
-
backgroundColor: string;
|
3727
|
-
color: string;
|
3728
|
-
};
|
3729
|
-
'&.is-purple': {
|
3730
|
-
backgroundColor: string;
|
3731
|
-
color: string;
|
3732
|
-
};
|
3733
|
-
'&.is-pink': {
|
3734
|
-
backgroundColor: string;
|
3735
|
-
color: string;
|
3736
|
-
};
|
3737
|
-
'&.is-red': {
|
3738
|
-
backgroundColor: string;
|
3739
|
-
color: string;
|
3740
|
-
};
|
3741
|
-
'&.is-yellow': {
|
3742
|
-
backgroundColor: string;
|
3743
|
-
color: string;
|
3744
|
-
};
|
3745
|
-
'&.is-cyan': {
|
3746
|
-
backgroundColor: string;
|
3747
|
-
color: string;
|
3748
|
-
};
|
3749
|
-
'&.is-teal': {
|
3750
|
-
backgroundColor: string;
|
3751
|
-
color: string;
|
3976
|
+
listView: {
|
3977
|
+
container: {
|
3978
|
+
borderRadius: string;
|
3979
|
+
border: string;
|
3980
|
+
borderColor: string;
|
3752
3981
|
};
|
3753
|
-
display: string;
|
3754
|
-
borderRadius: string;
|
3755
|
-
textAlign: string;
|
3756
|
-
alignItems: string;
|
3757
|
-
justifyContent: string;
|
3758
|
-
fontFamily: string;
|
3759
3982
|
};
|
3760
3983
|
listViewItem: {
|
3761
3984
|
rightOfData: {
|
@@ -3858,26 +4081,6 @@ declare const _default: {
|
|
3858
4081
|
height: string;
|
3859
4082
|
};
|
3860
4083
|
};
|
3861
|
-
progressBar: {
|
3862
|
-
transition: string;
|
3863
|
-
container: {
|
3864
|
-
backgroundColor: string;
|
3865
|
-
borderRadius: string;
|
3866
|
-
height: string;
|
3867
|
-
};
|
3868
|
-
percentageBar: {
|
3869
|
-
backgroundColor: string;
|
3870
|
-
borderRadius: string;
|
3871
|
-
height: string;
|
3872
|
-
};
|
3873
|
-
};
|
3874
|
-
listView: {
|
3875
|
-
container: {
|
3876
|
-
borderRadius: string;
|
3877
|
-
border: string;
|
3878
|
-
borderColor: string;
|
3879
|
-
};
|
3880
|
-
};
|
3881
4084
|
lisViewItemChart: {
|
3882
4085
|
title: {
|
3883
4086
|
color: string;
|
@@ -3891,278 +4094,286 @@ declare const _default: {
|
|
3891
4094
|
chartLabel: {
|
3892
4095
|
color: string;
|
3893
4096
|
};
|
3894
|
-
trend: {
|
3895
|
-
color: string;
|
4097
|
+
trend: {
|
4098
|
+
color: string;
|
4099
|
+
};
|
4100
|
+
chartButton: {
|
4101
|
+
color: string;
|
4102
|
+
};
|
4103
|
+
};
|
4104
|
+
loader: {
|
4105
|
+
withinListView: {
|
4106
|
+
color: string;
|
4107
|
+
py: string;
|
4108
|
+
};
|
4109
|
+
circleSpinner: {
|
4110
|
+
borderColor: string;
|
4111
|
+
};
|
4112
|
+
};
|
4113
|
+
menu: {
|
4114
|
+
p: string;
|
4115
|
+
border: string;
|
4116
|
+
borderColor: string;
|
4117
|
+
};
|
4118
|
+
menuItem: {
|
4119
|
+
item: {
|
4120
|
+
bg: string;
|
4121
|
+
padding: string;
|
4122
|
+
outline: string;
|
4123
|
+
color: string;
|
4124
|
+
cursor: string;
|
4125
|
+
'&.is-focused, &.is-selected, &.is-pressed': {
|
4126
|
+
bg: string;
|
4127
|
+
color: string;
|
4128
|
+
'> *': {
|
4129
|
+
color: string;
|
4130
|
+
};
|
4131
|
+
};
|
4132
|
+
'&.is-pressed': {
|
4133
|
+
color: string;
|
4134
|
+
bg: string;
|
4135
|
+
};
|
4136
|
+
};
|
4137
|
+
separator: {
|
4138
|
+
my: string;
|
4139
|
+
};
|
4140
|
+
};
|
4141
|
+
menuTab: {
|
4142
|
+
ml: string;
|
4143
|
+
};
|
4144
|
+
message: {
|
4145
|
+
wrapper: {
|
4146
|
+
gap: string;
|
4147
|
+
right: string;
|
4148
|
+
};
|
4149
|
+
item: {
|
4150
|
+
maxWidth: number;
|
4151
|
+
pointerEvents: string;
|
4152
|
+
mb: string;
|
4153
|
+
p: string;
|
4154
|
+
wordBreak: string;
|
4155
|
+
alignItems: string;
|
4156
|
+
backgroundColor: string;
|
4157
|
+
borderLeftWidth: string;
|
4158
|
+
borderLeftStyle: string;
|
4159
|
+
borderLeftColor: string;
|
4160
|
+
color: string;
|
4161
|
+
fontSize: string;
|
4162
|
+
lineHeight: string;
|
4163
|
+
borderRadius: number;
|
4164
|
+
'& > svg': {
|
4165
|
+
minWidth: string;
|
4166
|
+
width: string;
|
4167
|
+
height: string;
|
4168
|
+
color: string;
|
4169
|
+
path: {
|
4170
|
+
fill: string;
|
4171
|
+
transform: string;
|
4172
|
+
transformOrigin: string;
|
4173
|
+
};
|
4174
|
+
alignSelf: string;
|
4175
|
+
};
|
4176
|
+
'&.is-success': {
|
4177
|
+
bg: string;
|
4178
|
+
borderLeftColor: string;
|
4179
|
+
color: string;
|
4180
|
+
};
|
4181
|
+
'&.is-warning': {
|
4182
|
+
bg: string;
|
4183
|
+
borderLeftColor: string;
|
4184
|
+
color: string;
|
4185
|
+
};
|
4186
|
+
'&.is-error, > .is-error': {
|
4187
|
+
bg: string;
|
4188
|
+
};
|
4189
|
+
'&.is-error, > button > svg': {
|
4190
|
+
color: string;
|
4191
|
+
path: {
|
4192
|
+
fill: string;
|
4193
|
+
};
|
4194
|
+
};
|
4195
|
+
'&.is-error': {
|
4196
|
+
borderLeftColor: string;
|
4197
|
+
};
|
4198
|
+
};
|
4199
|
+
};
|
4200
|
+
modal: {
|
4201
|
+
content: {
|
4202
|
+
boxShadow: string;
|
4203
|
+
px: string;
|
4204
|
+
pb: string;
|
4205
|
+
pt: number;
|
4206
|
+
borderRadius: string;
|
4207
|
+
opacity: number;
|
4208
|
+
top: string;
|
4209
|
+
transform: string;
|
4210
|
+
transition: string;
|
4211
|
+
m: string[];
|
4212
|
+
maxHeight: string;
|
4213
|
+
overflowY: string;
|
4214
|
+
'&.is-open-no-transition': {
|
4215
|
+
opacity: string;
|
4216
|
+
transform: string;
|
4217
|
+
};
|
4218
|
+
'&.is-open.is-transitioning': {
|
4219
|
+
opacity: string;
|
4220
|
+
transform: string;
|
4221
|
+
};
|
4222
|
+
'&.is-extra-small': {
|
4223
|
+
width: string;
|
4224
|
+
maxWidth: string[];
|
4225
|
+
};
|
4226
|
+
'&.is-small': {
|
4227
|
+
width: string;
|
4228
|
+
maxWidth: string[];
|
4229
|
+
};
|
4230
|
+
'&.is-medium': {
|
4231
|
+
width: string;
|
4232
|
+
maxWidth: string[];
|
4233
|
+
};
|
4234
|
+
'&.is-large': {
|
4235
|
+
width: string;
|
4236
|
+
maxWidth: string[];
|
4237
|
+
};
|
4238
|
+
'&.is-full': {
|
4239
|
+
width: string;
|
4240
|
+
maxWidth: string[];
|
4241
|
+
};
|
4242
|
+
};
|
4243
|
+
container: {
|
4244
|
+
justifyContent: string;
|
3896
4245
|
};
|
3897
|
-
|
3898
|
-
|
4246
|
+
header: {
|
4247
|
+
pt: string;
|
4248
|
+
bg: string;
|
4249
|
+
mb: string;
|
3899
4250
|
};
|
3900
4251
|
};
|
3901
|
-
|
4252
|
+
navBar: {
|
3902
4253
|
container: {
|
3903
|
-
|
3904
|
-
|
3905
|
-
|
4254
|
+
fontFamily: string;
|
4255
|
+
width: string;
|
4256
|
+
p: string;
|
4257
|
+
backgroundColor: string;
|
4258
|
+
boxShadow: string;
|
3906
4259
|
};
|
3907
|
-
|
3908
|
-
|
3909
|
-
borderTopColor: string;
|
3910
|
-
borderBottom: string;
|
3911
|
-
pl: string;
|
3912
|
-
'&:last-of-type': {
|
3913
|
-
borderBottomLeftRadius: string;
|
3914
|
-
borderBottomRightRadius: string;
|
3915
|
-
};
|
4260
|
+
sectionContainer: {
|
4261
|
+
pt: string;
|
3916
4262
|
};
|
3917
|
-
|
3918
|
-
|
4263
|
+
sectionButton: {
|
4264
|
+
borderRadius: string;
|
3919
4265
|
'&.is-hovered': {
|
3920
|
-
|
4266
|
+
backgroundColor: string;
|
3921
4267
|
};
|
3922
|
-
'&.is-
|
3923
|
-
|
4268
|
+
'&.is-pressed': {
|
4269
|
+
backgroundColor: string;
|
3924
4270
|
};
|
3925
4271
|
'&.is-focused': {
|
3926
|
-
boxShadow: string;
|
3927
|
-
bg: string;
|
3928
|
-
};
|
3929
|
-
'&.is-disabled': {
|
3930
|
-
opacity: string;
|
3931
|
-
};
|
3932
|
-
borderTop: string;
|
3933
|
-
borderTopColor: string;
|
3934
|
-
borderBottom: string;
|
3935
|
-
pl: string;
|
3936
|
-
'&:last-of-type': {
|
3937
|
-
borderBottomLeftRadius: string;
|
3938
|
-
borderBottomRightRadius: string;
|
3939
|
-
};
|
3940
|
-
};
|
3941
|
-
tableHeadWrapper: {
|
3942
|
-
borderBottom: string;
|
3943
|
-
};
|
3944
|
-
tableHeadCell: {
|
3945
|
-
px: string;
|
3946
|
-
fontWeight: string;
|
3947
|
-
fontSize: string;
|
3948
|
-
'&.is-column-sortable': {
|
3949
|
-
svg: {
|
3950
|
-
fill: string;
|
3951
|
-
};
|
3952
|
-
};
|
3953
|
-
'&.is-first-column': {
|
3954
|
-
borderTopLeftRadius: string;
|
3955
|
-
};
|
3956
|
-
'&.is-last-column': {
|
3957
|
-
borderTopRightRadius: string;
|
3958
|
-
};
|
3959
|
-
'&.is-key-focused': {
|
3960
4272
|
outline: string;
|
3961
|
-
outlineStyle: string;
|
3962
4273
|
outlineColor: string;
|
3963
4274
|
outlineOffset: string;
|
3964
4275
|
};
|
3965
4276
|
};
|
3966
|
-
|
4277
|
+
itemButton: {
|
3967
4278
|
py: string;
|
3968
|
-
|
3969
|
-
|
3970
|
-
fontSize: string;
|
3971
|
-
px: string;
|
3972
|
-
};
|
3973
|
-
};
|
3974
|
-
codeView: {
|
3975
|
-
theme: {
|
3976
|
-
plain: {
|
3977
|
-
color: string;
|
3978
|
-
backgroundColor: string;
|
3979
|
-
};
|
3980
|
-
styles: ({
|
3981
|
-
types: string[];
|
3982
|
-
style: {
|
3983
|
-
color: string;
|
3984
|
-
background?: undefined;
|
3985
|
-
fontWeight?: undefined;
|
3986
|
-
cursor?: undefined;
|
3987
|
-
};
|
3988
|
-
} | {
|
3989
|
-
types: string[];
|
3990
|
-
style: {
|
3991
|
-
color: string;
|
3992
|
-
background: string;
|
3993
|
-
fontWeight?: undefined;
|
3994
|
-
cursor?: undefined;
|
3995
|
-
};
|
3996
|
-
} | {
|
3997
|
-
types: string[];
|
3998
|
-
style: {
|
3999
|
-
fontWeight: string;
|
4000
|
-
color?: undefined;
|
4001
|
-
background?: undefined;
|
4002
|
-
cursor?: undefined;
|
4003
|
-
};
|
4004
|
-
} | {
|
4005
|
-
types: string[];
|
4006
|
-
style: {
|
4007
|
-
cursor: string;
|
4008
|
-
color?: undefined;
|
4009
|
-
background?: undefined;
|
4010
|
-
fontWeight?: undefined;
|
4011
|
-
};
|
4012
|
-
})[];
|
4013
|
-
};
|
4014
|
-
wrapper: {
|
4015
|
-
backgroundColor: string;
|
4016
|
-
border: string;
|
4017
|
-
borderColor: string;
|
4279
|
+
paddingLeft: string;
|
4280
|
+
color: string;
|
4018
4281
|
borderRadius: string;
|
4019
|
-
|
4020
|
-
height: number;
|
4021
|
-
my: string;
|
4022
|
-
overflow: string;
|
4023
|
-
alignItems: string;
|
4024
|
-
'&.is-focused, &:focus': {
|
4025
|
-
boxShadow: string;
|
4282
|
+
'&.is-focused': {
|
4026
4283
|
outline: string;
|
4284
|
+
outlineColor: string;
|
4285
|
+
outlineOffset: string;
|
4027
4286
|
};
|
4028
|
-
|
4287
|
+
'&.is-hovered': {
|
4029
4288
|
backgroundColor: string;
|
4030
|
-
padding: string;
|
4031
|
-
height: string;
|
4032
|
-
width: string;
|
4033
|
-
overflowX: string;
|
4034
|
-
overflowY: string;
|
4035
|
-
fontSize: string;
|
4036
|
-
'& .token-line': {
|
4037
|
-
display: string;
|
4038
|
-
alignItems: string;
|
4039
|
-
'& .token': {
|
4040
|
-
whiteSpace: string;
|
4041
|
-
wordBreak: string;
|
4042
|
-
};
|
4043
|
-
};
|
4044
|
-
fontFamily: string;
|
4045
|
-
lineHeight: string;
|
4046
4289
|
};
|
4047
|
-
'&.
|
4048
|
-
|
4049
|
-
|
4050
|
-
};
|
4290
|
+
'&.is-pressed': {
|
4291
|
+
backgroundColor: string;
|
4292
|
+
color: string;
|
4051
4293
|
};
|
4052
|
-
'&.
|
4053
|
-
|
4054
|
-
|
4055
|
-
|
4056
|
-
'& .token-line:first-of-type *': {
|
4057
|
-
pt: string;
|
4058
|
-
};
|
4059
|
-
'& .token-line': {
|
4060
|
-
display: string;
|
4061
|
-
'& .token': {
|
4062
|
-
whiteSpace: string;
|
4063
|
-
};
|
4064
|
-
};
|
4065
|
-
};
|
4294
|
+
'&.is-selected': {
|
4295
|
+
bg: string;
|
4296
|
+
boxShadow: string;
|
4297
|
+
color: string;
|
4066
4298
|
};
|
4067
4299
|
};
|
4068
|
-
|
4069
|
-
display: string;
|
4070
|
-
userSelect: string;
|
4071
|
-
px: string;
|
4072
|
-
m: string;
|
4073
|
-
bg: string;
|
4074
|
-
minWidth: number;
|
4300
|
+
subtitle: {
|
4075
4301
|
color: string;
|
4076
|
-
lineHeight: string;
|
4077
4302
|
};
|
4078
|
-
|
4303
|
+
headerText: {
|
4079
4304
|
color: string;
|
4080
|
-
|
4081
|
-
|
4082
|
-
|
4083
|
-
|
4084
|
-
lineHeight: string;
|
4305
|
+
ml: string;
|
4306
|
+
'.is-selected &': {
|
4307
|
+
color: string;
|
4308
|
+
};
|
4085
4309
|
};
|
4086
|
-
|
4087
|
-
|
4088
|
-
|
4089
|
-
|
4090
|
-
|
4091
|
-
opacity: number;
|
4310
|
+
headerNav: {
|
4311
|
+
borderRadius: string;
|
4312
|
+
color: string;
|
4313
|
+
'&.is-hovered': {
|
4314
|
+
backgroundColor: string;
|
4092
4315
|
};
|
4093
|
-
'&.
|
4094
|
-
|
4316
|
+
'&.is-focused': {
|
4317
|
+
boxShadow: string;
|
4318
|
+
WebkitBoxShadow: string;
|
4319
|
+
MozBoxShadow: string;
|
4320
|
+
};
|
4321
|
+
};
|
4322
|
+
item: {
|
4323
|
+
px: string;
|
4324
|
+
py: string;
|
4325
|
+
color: string;
|
4326
|
+
borderRadius: string;
|
4327
|
+
'&.is-hovered': {
|
4328
|
+
backgroundColor: string;
|
4329
|
+
};
|
4330
|
+
'> div > svg': {
|
4331
|
+
fill: string;
|
4332
|
+
};
|
4333
|
+
'&.is-pressed': {
|
4334
|
+
backgroundColor: string;
|
4335
|
+
};
|
4336
|
+
'&.is-selected': {
|
4337
|
+
'> div > svg': {
|
4338
|
+
fill: string;
|
4339
|
+
};
|
4340
|
+
backgroundColor: string;
|
4341
|
+
boxShadow: string;
|
4342
|
+
};
|
4343
|
+
'&.is-focused': {
|
4344
|
+
outline: string;
|
4345
|
+
outlineColor: string;
|
4346
|
+
outlineOffset: string;
|
4347
|
+
boxShadow: string;
|
4348
|
+
WebkitBoxShadow: string;
|
4349
|
+
MozBoxShadow: string;
|
4095
4350
|
};
|
4096
4351
|
};
|
4097
|
-
|
4098
|
-
|
4099
|
-
|
4100
|
-
|
4101
|
-
|
4102
|
-
|
4103
|
-
|
4352
|
+
itemHeaderContainer: {
|
4353
|
+
boxShadow: string;
|
4354
|
+
maxWidth: string;
|
4355
|
+
px: string;
|
4356
|
+
py: string;
|
4357
|
+
'&.is-selected': {
|
4358
|
+
backgroundColor: string;
|
4359
|
+
boxShadow: string;
|
4104
4360
|
};
|
4105
|
-
};
|
4106
|
-
};
|
4107
|
-
prompt: {
|
4108
|
-
container: {
|
4109
4361
|
backgroundColor: string;
|
4110
|
-
|
4111
|
-
|
4112
|
-
p: string;
|
4113
|
-
borderRadius: string;
|
4114
|
-
marginLeft: string;
|
4115
|
-
};
|
4116
|
-
};
|
4117
|
-
tabs: {
|
4118
|
-
'&.is-horizontal': {
|
4119
|
-
gap: string;
|
4120
|
-
};
|
4121
|
-
};
|
4122
|
-
menu: {
|
4123
|
-
p: string;
|
4124
|
-
border: string;
|
4125
|
-
borderColor: string;
|
4126
|
-
};
|
4127
|
-
iconWrapper: {
|
4128
|
-
sm: {
|
4129
|
-
'&.is-circle': {
|
4130
|
-
borderRadius: string;
|
4362
|
+
'> svg': {
|
4363
|
+
fill: string;
|
4131
4364
|
};
|
4132
|
-
|
4133
|
-
|
4134
|
-
minWidth: string;
|
4135
|
-
height: string;
|
4136
|
-
width: string;
|
4137
|
-
p: string;
|
4138
|
-
};
|
4139
|
-
md: {
|
4140
|
-
'&.is-circle': {
|
4141
|
-
borderRadius: string;
|
4365
|
+
'> div > svg': {
|
4366
|
+
fill: string;
|
4142
4367
|
};
|
4143
|
-
borderRadius: string;
|
4144
|
-
minHeight: string;
|
4145
|
-
minWidth: string;
|
4146
|
-
height: string;
|
4147
|
-
width: string;
|
4148
|
-
p: string;
|
4149
4368
|
};
|
4150
|
-
|
4151
|
-
|
4152
|
-
borderRadius: string;
|
4153
|
-
};
|
4154
|
-
borderRadius: string;
|
4155
|
-
minHeight: string;
|
4156
|
-
minWidth: string;
|
4157
|
-
height: string;
|
4158
|
-
width: string;
|
4159
|
-
p: string;
|
4369
|
+
navBarItemBody: {
|
4370
|
+
mb: string;
|
4160
4371
|
};
|
4161
4372
|
};
|
4162
4373
|
overlayPanel: {
|
4163
4374
|
container: {
|
4164
4375
|
backgroundColor: string;
|
4165
|
-
|
4376
|
+
borderColor: string;
|
4166
4377
|
};
|
4167
4378
|
aiPanelContainer: {
|
4168
4379
|
backgroundColor: string;
|
@@ -4202,20 +4413,62 @@ declare const _default: {
|
|
4202
4413
|
backgroundColor: string;
|
4203
4414
|
};
|
4204
4415
|
};
|
4205
|
-
|
4206
|
-
|
4207
|
-
|
4208
|
-
|
4209
|
-
|
4210
|
-
|
4211
|
-
flexDirection: string;
|
4416
|
+
panelHeader: {
|
4417
|
+
container: {
|
4418
|
+
bg: string;
|
4419
|
+
border: string;
|
4420
|
+
minHeight: number;
|
4421
|
+
maxHeight: number;
|
4212
4422
|
};
|
4213
|
-
|
4214
|
-
|
4215
|
-
|
4216
|
-
|
4423
|
+
controls: {
|
4424
|
+
alignSelf: string;
|
4425
|
+
pt: string;
|
4426
|
+
};
|
4427
|
+
wrapper: {
|
4217
4428
|
mr: string;
|
4218
|
-
|
4429
|
+
};
|
4430
|
+
};
|
4431
|
+
popoverMenu: {
|
4432
|
+
container: {
|
4433
|
+
transition: string;
|
4434
|
+
'&.animate': {
|
4435
|
+
opacity: number;
|
4436
|
+
};
|
4437
|
+
'&.animate.is-mounted.is-transitioning': {
|
4438
|
+
opacity: string;
|
4439
|
+
};
|
4440
|
+
};
|
4441
|
+
arrow: {
|
4442
|
+
color: string;
|
4443
|
+
'&:before': {
|
4444
|
+
content: string;
|
4445
|
+
position: string;
|
4446
|
+
borderColor: string;
|
4447
|
+
borderStyle: string;
|
4448
|
+
};
|
4449
|
+
};
|
4450
|
+
};
|
4451
|
+
progressBar: {
|
4452
|
+
transition: string;
|
4453
|
+
container: {
|
4454
|
+
backgroundColor: string;
|
4455
|
+
borderRadius: string;
|
4456
|
+
height: string;
|
4457
|
+
};
|
4458
|
+
percentageBar: {
|
4459
|
+
backgroundColor: string;
|
4460
|
+
borderRadius: string;
|
4461
|
+
height: string;
|
4462
|
+
};
|
4463
|
+
};
|
4464
|
+
prompt: {
|
4465
|
+
container: {
|
4466
|
+
backgroundColor: string;
|
4467
|
+
maxWidth: string;
|
4468
|
+
width: string;
|
4469
|
+
p: string;
|
4470
|
+
borderRadius: string;
|
4471
|
+
marginLeft: string;
|
4219
4472
|
};
|
4220
4473
|
};
|
4221
4474
|
response: {
|
@@ -4289,6 +4542,82 @@ declare const _default: {
|
|
4289
4542
|
flexDirection: string;
|
4290
4543
|
};
|
4291
4544
|
};
|
4545
|
+
rockerButton: {
|
4546
|
+
innerContainer: {
|
4547
|
+
boxShadow: string;
|
4548
|
+
backgroundColor: string;
|
4549
|
+
borderRadius: string;
|
4550
|
+
padding: number;
|
4551
|
+
border: string;
|
4552
|
+
};
|
4553
|
+
thumbSwitch: {
|
4554
|
+
textTransform: string;
|
4555
|
+
backgroundColor: string;
|
4556
|
+
padding: string;
|
4557
|
+
height: string;
|
4558
|
+
color: string;
|
4559
|
+
border: string;
|
4560
|
+
borderColor: string;
|
4561
|
+
borderRadius: number;
|
4562
|
+
'&:not(:last-of-type)': {
|
4563
|
+
borderRight: string;
|
4564
|
+
};
|
4565
|
+
'&:first-of-type': {
|
4566
|
+
borderTopLeftRadius: string;
|
4567
|
+
borderBottomLeftRadius: string;
|
4568
|
+
};
|
4569
|
+
'&:last-of-type': {
|
4570
|
+
borderTopRightRadius: string;
|
4571
|
+
borderBottomRightRadius: string;
|
4572
|
+
};
|
4573
|
+
'&.is-selected': {
|
4574
|
+
color: string;
|
4575
|
+
backgroundColor: string;
|
4576
|
+
'& > div.status-icon': {
|
4577
|
+
bg: string;
|
4578
|
+
'& > svg': {
|
4579
|
+
path: {
|
4580
|
+
fill: string;
|
4581
|
+
};
|
4582
|
+
};
|
4583
|
+
};
|
4584
|
+
};
|
4585
|
+
'&.is-hovered': {
|
4586
|
+
borderColor: string;
|
4587
|
+
backgroundColor: string;
|
4588
|
+
color: string;
|
4589
|
+
};
|
4590
|
+
'&.is-pressed': {
|
4591
|
+
borderColor: string;
|
4592
|
+
backgroundColor: string;
|
4593
|
+
color: string;
|
4594
|
+
};
|
4595
|
+
'&.is-focused': {
|
4596
|
+
position: string;
|
4597
|
+
zIndex: string;
|
4598
|
+
outline: string;
|
4599
|
+
outlineColor: string;
|
4600
|
+
outlineOffset: string;
|
4601
|
+
};
|
4602
|
+
};
|
4603
|
+
};
|
4604
|
+
separator: {
|
4605
|
+
base: {
|
4606
|
+
bg: string;
|
4607
|
+
'&.is-vertical': {
|
4608
|
+
m: string;
|
4609
|
+
};
|
4610
|
+
};
|
4611
|
+
navBarSeparator: {
|
4612
|
+
my: string;
|
4613
|
+
mx: string;
|
4614
|
+
maxWidth: string;
|
4615
|
+
backgroundColor: string;
|
4616
|
+
};
|
4617
|
+
navBarSubtitleSeparator: {
|
4618
|
+
backgroundColor: string;
|
4619
|
+
};
|
4620
|
+
};
|
4292
4621
|
skeleton: {
|
4293
4622
|
base: {
|
4294
4623
|
backgroundColor: string;
|
@@ -4396,140 +4725,167 @@ declare const _default: {
|
|
4396
4725
|
};
|
4397
4726
|
};
|
4398
4727
|
};
|
4399
|
-
|
4400
|
-
|
4401
|
-
|
4402
|
-
backgroundColor: string;
|
4403
|
-
borderRadius: string;
|
4404
|
-
padding: number;
|
4405
|
-
border: string;
|
4728
|
+
stepper: {
|
4729
|
+
tab: {
|
4730
|
+
mr: string;
|
4406
4731
|
};
|
4407
|
-
|
4408
|
-
|
4409
|
-
|
4410
|
-
|
4411
|
-
|
4412
|
-
|
4413
|
-
|
4414
|
-
borderColor: string;
|
4415
|
-
borderRadius: number;
|
4416
|
-
'&:not(:last-of-type)': {
|
4417
|
-
borderRight: string;
|
4418
|
-
};
|
4419
|
-
'&:first-of-type': {
|
4420
|
-
borderTopLeftRadius: string;
|
4421
|
-
borderBottomLeftRadius: string;
|
4422
|
-
};
|
4423
|
-
'&:last-of-type': {
|
4424
|
-
borderTopRightRadius: string;
|
4425
|
-
borderBottomRightRadius: string;
|
4732
|
+
line: {
|
4733
|
+
mr: string;
|
4734
|
+
borderBottomWidth: string;
|
4735
|
+
borderBottomColor: string;
|
4736
|
+
'&.is-inactive': {
|
4737
|
+
borderBottomStyle: string;
|
4738
|
+
borderBottomColor: string;
|
4426
4739
|
};
|
4427
|
-
|
4428
|
-
|
4429
|
-
|
4430
|
-
'
|
4431
|
-
|
4432
|
-
|
4433
|
-
|
4434
|
-
|
4435
|
-
|
4436
|
-
|
4740
|
+
};
|
4741
|
+
step: {
|
4742
|
+
active: {
|
4743
|
+
'&:before': {
|
4744
|
+
content: string;
|
4745
|
+
height: string;
|
4746
|
+
width: string;
|
4747
|
+
top: number;
|
4748
|
+
left: number;
|
4749
|
+
position: string;
|
4750
|
+
borderRadius: string;
|
4751
|
+
borderStyle: string;
|
4752
|
+
borderColor: string;
|
4753
|
+
borderWidth: string;
|
4437
4754
|
};
|
4438
|
-
|
4439
|
-
|
4440
|
-
|
4755
|
+
borderWidth: string;
|
4756
|
+
width: number;
|
4757
|
+
height: number;
|
4758
|
+
minWidth: number;
|
4759
|
+
minHeight: number;
|
4760
|
+
position: string;
|
4761
|
+
fontWeight: number;
|
4762
|
+
fontSize: string;
|
4441
4763
|
backgroundColor: string;
|
4764
|
+
borderColor: string;
|
4442
4765
|
color: string;
|
4443
4766
|
};
|
4444
|
-
|
4767
|
+
completed: {
|
4445
4768
|
borderColor: string;
|
4446
|
-
|
4447
|
-
|
4769
|
+
borderWidth: string;
|
4770
|
+
width: number;
|
4771
|
+
height: number;
|
4772
|
+
minWidth: number;
|
4773
|
+
minHeight: number;
|
4774
|
+
position: string;
|
4775
|
+
fontWeight: number;
|
4776
|
+
fontSize: string;
|
4448
4777
|
};
|
4449
|
-
|
4778
|
+
inactive: {
|
4779
|
+
borderWidth: string;
|
4780
|
+
width: number;
|
4781
|
+
height: number;
|
4782
|
+
minWidth: number;
|
4783
|
+
minHeight: number;
|
4450
4784
|
position: string;
|
4451
|
-
|
4452
|
-
|
4453
|
-
|
4454
|
-
|
4785
|
+
fontWeight: number;
|
4786
|
+
fontSize: string;
|
4787
|
+
backgroundColor: string;
|
4788
|
+
borderColor: string;
|
4789
|
+
color: string;
|
4455
4790
|
};
|
4456
4791
|
};
|
4457
4792
|
};
|
4458
|
-
|
4459
|
-
|
4460
|
-
|
4461
|
-
|
4462
|
-
|
4463
|
-
fontFamily: string;
|
4793
|
+
suggestion: {
|
4794
|
+
iconContainer: {
|
4795
|
+
ml: string;
|
4796
|
+
mr: string;
|
4797
|
+
minWidth: string;
|
4464
4798
|
};
|
4465
4799
|
};
|
4466
|
-
|
4467
|
-
|
4468
|
-
|
4469
|
-
|
4470
|
-
|
4471
|
-
};
|
4472
|
-
wrapper: {
|
4473
|
-
px: string[];
|
4474
|
-
py: string;
|
4475
|
-
maxWidth: string;
|
4476
|
-
mx: string;
|
4477
|
-
width: string;
|
4478
|
-
flexDirection: string[];
|
4479
|
-
justifyContent: string;
|
4480
|
-
alignItems: string;
|
4481
|
-
};
|
4482
|
-
footerLeftSection: {
|
4483
|
-
columnGap: string;
|
4484
|
-
flexDirection: string[];
|
4485
|
-
};
|
4486
|
-
footerNav: {
|
4487
|
-
listStyle: string;
|
4488
|
-
margin: string;
|
4489
|
-
padding: string;
|
4490
|
-
alignItems: string;
|
4491
|
-
justifyContent: string[];
|
4800
|
+
suggestions: {
|
4801
|
+
justifyContent: string;
|
4802
|
+
gap: string;
|
4803
|
+
flexDirection: string;
|
4804
|
+
'&.is-full-screen': {
|
4492
4805
|
gap: string;
|
4493
|
-
|
4494
|
-
my: string;
|
4495
|
-
};
|
4496
|
-
};
|
4497
|
-
loader: {
|
4498
|
-
withinListView: {
|
4499
|
-
color: string;
|
4806
|
+
flexDirection: string;
|
4500
4807
|
};
|
4501
4808
|
};
|
4502
|
-
|
4809
|
+
statusIcon: {
|
4503
4810
|
base: {
|
4504
|
-
|
4505
|
-
|
4506
|
-
|
4507
|
-
|
4508
|
-
|
4509
|
-
borderLeft: string;
|
4510
|
-
borderLeftColor: string;
|
4511
|
-
borderRadius: string;
|
4512
|
-
alignItems: string;
|
4513
|
-
color: string;
|
4514
|
-
'&.is-success, > .is-success': {
|
4515
|
-
borderColor: string;
|
4516
|
-
borderLeftColor: string;
|
4811
|
+
'&.is-default': {
|
4812
|
+
bg: string;
|
4813
|
+
path: {
|
4814
|
+
fill: string;
|
4815
|
+
};
|
4517
4816
|
};
|
4518
|
-
'&.is-
|
4519
|
-
|
4520
|
-
|
4817
|
+
'&.is-critical': {
|
4818
|
+
bg: string;
|
4819
|
+
path: {
|
4820
|
+
fill: string;
|
4821
|
+
};
|
4521
4822
|
};
|
4522
|
-
'&.is-
|
4523
|
-
|
4524
|
-
|
4823
|
+
'&.is-warning': {
|
4824
|
+
bg: string;
|
4825
|
+
path: {
|
4826
|
+
fill: string;
|
4827
|
+
};
|
4828
|
+
};
|
4829
|
+
'&.is-info': {
|
4830
|
+
bg: string;
|
4831
|
+
path: {
|
4832
|
+
fill: string;
|
4833
|
+
};
|
4834
|
+
};
|
4835
|
+
'&.is-major': {
|
4836
|
+
bg: string;
|
4837
|
+
path: {
|
4838
|
+
fill: string;
|
4839
|
+
};
|
4840
|
+
};
|
4841
|
+
'&.is-minor': {
|
4842
|
+
bg: string;
|
4843
|
+
path: {
|
4844
|
+
fill: string;
|
4845
|
+
};
|
4846
|
+
};
|
4847
|
+
'&.is-warning-neutral': {
|
4848
|
+
bg: string;
|
4849
|
+
path: {
|
4850
|
+
fill: string;
|
4851
|
+
};
|
4852
|
+
};
|
4853
|
+
'&.is-fatal': {
|
4854
|
+
bg: string;
|
4855
|
+
path: {
|
4856
|
+
fill: string;
|
4857
|
+
};
|
4858
|
+
};
|
4859
|
+
'&.is-selected.is-selected': {
|
4860
|
+
bg: string;
|
4861
|
+
'& > svg': {
|
4862
|
+
path: {
|
4863
|
+
fill: string;
|
4864
|
+
};
|
4865
|
+
};
|
4525
4866
|
};
|
4526
4867
|
};
|
4527
|
-
|
4868
|
+
};
|
4869
|
+
tab: {
|
4870
|
+
borderRadius: string;
|
4871
|
+
pt: string;
|
4872
|
+
'& > span': {
|
4873
|
+
px: string;
|
4874
|
+
fontSize: string;
|
4875
|
+
};
|
4876
|
+
'&.is-focused': {
|
4877
|
+
boxShadow: string;
|
4878
|
+
outline: string;
|
4879
|
+
outlineColor: string;
|
4880
|
+
outlineOffset: string;
|
4881
|
+
'& > span': {
|
4882
|
+
outline: string;
|
4883
|
+
};
|
4884
|
+
};
|
4885
|
+
'& > div': {
|
4886
|
+
borderBottom: string;
|
4887
|
+
borderBottomColor: string;
|
4528
4888
|
ml: string;
|
4529
|
-
mr: string;
|
4530
|
-
minWidth: string;
|
4531
|
-
width: string;
|
4532
|
-
height: string;
|
4533
4889
|
};
|
4534
4890
|
};
|
4535
4891
|
table: {
|
@@ -4676,79 +5032,17 @@ declare const _default: {
|
|
4676
5032
|
};
|
4677
5033
|
};
|
4678
5034
|
};
|
4679
|
-
|
4680
|
-
|
4681
|
-
|
4682
|
-
bg: string;
|
4683
|
-
path: {
|
4684
|
-
fill: string;
|
4685
|
-
};
|
4686
|
-
};
|
4687
|
-
'&.is-critical': {
|
4688
|
-
bg: string;
|
4689
|
-
path: {
|
4690
|
-
fill: string;
|
4691
|
-
};
|
4692
|
-
};
|
4693
|
-
'&.is-warning': {
|
4694
|
-
bg: string;
|
4695
|
-
path: {
|
4696
|
-
fill: string;
|
4697
|
-
};
|
4698
|
-
};
|
4699
|
-
'&.is-info': {
|
4700
|
-
bg: string;
|
4701
|
-
path: {
|
4702
|
-
fill: string;
|
4703
|
-
};
|
4704
|
-
};
|
4705
|
-
'&.is-major': {
|
4706
|
-
bg: string;
|
4707
|
-
path: {
|
4708
|
-
fill: string;
|
4709
|
-
};
|
4710
|
-
};
|
4711
|
-
'&.is-minor': {
|
4712
|
-
bg: string;
|
4713
|
-
path: {
|
4714
|
-
fill: string;
|
4715
|
-
};
|
4716
|
-
};
|
4717
|
-
'&.is-warning-neutral': {
|
4718
|
-
bg: string;
|
4719
|
-
path: {
|
4720
|
-
fill: string;
|
4721
|
-
};
|
4722
|
-
};
|
4723
|
-
'&.is-fatal': {
|
4724
|
-
bg: string;
|
4725
|
-
path: {
|
4726
|
-
fill: string;
|
4727
|
-
};
|
4728
|
-
};
|
4729
|
-
'&.is-selected.is-selected': {
|
4730
|
-
bg: string;
|
4731
|
-
'& > svg': {
|
4732
|
-
path: {
|
4733
|
-
fill: string;
|
4734
|
-
};
|
4735
|
-
};
|
4736
|
-
};
|
5035
|
+
tabs: {
|
5036
|
+
'&.is-horizontal': {
|
5037
|
+
gap: string;
|
4737
5038
|
};
|
4738
5039
|
};
|
4739
|
-
|
4740
|
-
|
4741
|
-
|
4742
|
-
|
4743
|
-
|
4744
|
-
|
4745
|
-
fill: string;
|
4746
|
-
stroke: string;
|
4747
|
-
};
|
4748
|
-
};
|
4749
|
-
'&.is-focused': {
|
4750
|
-
boxShadow: string;
|
4751
|
-
};
|
5040
|
+
tooltip: {
|
5041
|
+
container: {
|
5042
|
+
backgroundColor: string;
|
5043
|
+
borderRadius: string;
|
5044
|
+
fontSize: string;
|
5045
|
+
fontFamily: string;
|
4752
5046
|
};
|
4753
5047
|
};
|
4754
5048
|
};
|