@nypl/design-system-react-components 0.27.0 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +29 -0
- package/dist/components/Accordion/Accordion.d.ts +1 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +1 -5
- package/dist/components/Button/Button.d.ts +2 -10
- package/dist/components/ButtonGroup/ButtonGroup.d.ts +22 -0
- package/dist/components/Card/Card.d.ts +2 -2
- package/dist/components/Checkbox/Checkbox.d.ts +10 -8
- package/dist/components/CheckboxGroup/CheckboxGroup.d.ts +1 -1
- package/dist/components/DatePicker/DatePicker.d.ts +1 -1
- package/dist/components/Form/Form.d.ts +2 -2
- package/dist/components/Grid/SimpleGrid.d.ts +6 -3
- package/dist/components/Heading/Heading.d.ts +2 -5
- package/dist/components/HelperErrorText/HelperErrorText.d.ts +1 -5
- package/dist/components/Hero/Hero.d.ts +13 -9
- package/dist/components/Icons/Icon.d.ts +6 -5
- package/dist/components/Icons/IconSvgs.d.ts +21 -21
- package/dist/components/Image/Image.d.ts +8 -5
- package/dist/components/Link/Link.d.ts +1 -9
- package/dist/components/List/List.d.ts +7 -11
- package/dist/components/Logo/Logo.d.ts +2 -5
- package/dist/components/Logo/LogoSvgs.d.ts +39 -39
- package/dist/components/Notification/Notification.d.ts +1 -1
- package/dist/components/ProgressIndicator/ProgressIndicator.d.ts +2 -1
- package/dist/components/RadioGroup/RadioGroup.d.ts +1 -1
- package/dist/components/SearchBar/SearchBar.d.ts +3 -2
- package/dist/components/Select/Select.d.ts +2 -5
- package/dist/components/SkeletonLoader/SkeletonLoader.d.ts +4 -4
- package/dist/components/SkipNavigation/SkipNavigation.d.ts +17 -0
- package/dist/components/StatusBadge/StatusBadge.d.ts +2 -3
- package/dist/components/StructuredContent/StructuredContent.d.ts +2 -2
- package/dist/components/Table/Table.d.ts +1 -1
- package/dist/components/Template/Template.d.ts +2 -0
- package/dist/components/Text/Text.d.ts +1 -1
- package/dist/components/TextInput/TextInput.d.ts +21 -9
- package/dist/components/Toggle/Toggle.d.ts +1 -5
- package/dist/components/VideoPlayer/VideoPlayer.d.ts +2 -1
- package/dist/design-system-react-components.cjs.development.js +856 -1155
- package/dist/design-system-react-components.cjs.development.js.map +1 -1
- package/dist/design-system-react-components.cjs.production.min.js +1 -1
- package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
- package/dist/design-system-react-components.esm.js +858 -1220
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/helpers/types.d.ts +1 -0
- package/dist/index.d.ts +26 -47
- package/dist/theme/components/buttonGroup.d.ts +11 -0
- package/dist/theme/components/card.d.ts +104 -8
- package/dist/theme/components/componentWrapper.d.ts +4 -3
- package/dist/theme/components/customTable.d.ts +11 -14
- package/dist/theme/components/fieldset.d.ts +4 -3
- package/dist/theme/components/helperErrorText.d.ts +4 -3
- package/dist/theme/components/hero.d.ts +1 -1
- package/dist/theme/components/horizontalRule.d.ts +4 -3
- package/dist/theme/components/icon.d.ts +47743 -1
- package/dist/theme/components/image.d.ts +563 -10
- package/dist/theme/components/label.d.ts +4 -3
- package/dist/theme/components/list.d.ts +6 -7
- package/dist/theme/components/logo.d.ts +474 -1
- package/dist/theme/components/notification.d.ts +20 -16
- package/dist/theme/components/progressIndicator.d.ts +6 -4
- package/dist/theme/components/select.d.ts +4 -4
- package/dist/theme/components/skeletonLoader.d.ts +14 -10
- package/dist/theme/components/skipNavigation.d.ts +22 -0
- package/dist/theme/components/slider.d.ts +7 -6
- package/dist/theme/components/structuredContent.d.ts +10 -9
- package/dist/theme/components/text.d.ts +7 -1
- package/dist/theme/components/toggle.d.ts +6 -4
- package/dist/theme/provider.d.ts +2 -4
- package/dist/utils/componentCategories.d.ts +1 -1
- package/dist/utils/interfaces.d.ts +5 -0
- package/dist/utils/utils.d.ts +2 -18
- package/package.json +2 -2
- package/src/__tests__/setup.ts +3 -3
- package/src/__tests__/utils/utils.test.ts +1 -23
- package/src/components/AccessibilityGuide/SkipNavigation.stories.mdx +22 -14
- package/src/components/Accordion/Accordion.stories.mdx +43 -44
- package/src/components/Accordion/Accordion.test.tsx +5 -13
- package/src/components/Accordion/Accordion.tsx +14 -18
- package/src/components/Accordion/__snapshots__/Accordion.test.tsx.snap +6 -6
- package/src/components/Autosuggest/Autosuggest.stories.mdx +1 -1
- package/src/components/Autosuggest/Autosuggest.stories.tsx +23 -25
- package/src/components/Breadcrumbs/Breadcrumbs.stories.mdx +21 -37
- package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +4 -17
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +18 -21
- package/src/components/Breadcrumbs/__snapshots__/Breadcrumbs.test.tsx.snap +1 -100
- package/src/components/Button/Button.stories.mdx +89 -126
- package/src/components/Button/Button.test.tsx +16 -30
- package/src/components/Button/Button.tsx +14 -20
- package/src/components/ButtonGroup/ButtonGroup.stories.mdx +147 -0
- package/src/components/ButtonGroup/ButtonGroup.test.tsx +141 -0
- package/src/components/ButtonGroup/ButtonGroup.tsx +99 -0
- package/src/components/ButtonGroup/__snapshots__/ButtonGroup.test.tsx.snap +117 -0
- package/src/components/Card/Card.stories.mdx +143 -177
- package/src/components/Card/Card.test.tsx +36 -97
- package/src/components/Card/Card.tsx +78 -74
- package/src/components/Chakra/Box.stories.mdx +2 -6
- package/src/components/Chakra/Center.stories.mdx +5 -23
- package/src/components/Chakra/Flex.stories.mdx +4 -6
- package/src/components/Chakra/Stack.stories.mdx +9 -10
- package/src/components/Checkbox/Checkbox.stories.mdx +1 -1
- package/src/components/Checkbox/Checkbox.test.tsx +2 -2
- package/src/components/Checkbox/Checkbox.tsx +20 -13
- package/src/components/CheckboxGroup/CheckboxGroup.stories.mdx +6 -17
- package/src/components/CheckboxGroup/CheckboxGroup.test.tsx +1 -7
- package/src/components/CheckboxGroup/CheckboxGroup.tsx +33 -29
- package/src/components/CheckboxGroup/__snapshots__/CheckboxGroup.test.tsx.snap +0 -11
- package/src/components/ComponentWrapper/ComponentWrapper.tsx +3 -10
- package/src/components/DatePicker/DatePicker.stories.mdx +23 -37
- package/src/components/DatePicker/DatePicker.test.tsx +21 -19
- package/src/components/DatePicker/DatePicker.tsx +57 -49
- package/src/components/Form/Form.stories.mdx +46 -31
- package/src/components/Form/Form.test.tsx +1 -18
- package/src/components/Form/Form.tsx +7 -7
- package/src/components/Grid/SimpleGrid.stories.mdx +73 -49
- package/src/components/Grid/SimpleGrid.test.tsx +7 -9
- package/src/components/Grid/SimpleGrid.tsx +14 -11
- package/src/components/Heading/Heading.stories.mdx +27 -72
- package/src/components/Heading/Heading.test.tsx +18 -44
- package/src/components/Heading/Heading.tsx +7 -10
- package/src/components/HelperErrorText/HelperErrorText.stories.mdx +1 -3
- package/src/components/HelperErrorText/HelperErrorText.tsx +1 -5
- package/src/components/Hero/Hero.stories.mdx +219 -216
- package/src/components/Hero/Hero.test.tsx +107 -223
- package/src/components/Hero/Hero.tsx +63 -61
- package/src/components/Icons/Icon.stories.mdx +172 -118
- package/src/components/Icons/Icon.test.tsx +8 -16
- package/src/components/Icons/Icon.tsx +75 -29
- package/src/components/Icons/IconSvgs.tsx +42 -42
- package/src/components/Image/Image.stories.mdx +45 -132
- package/src/components/Image/Image.test.tsx +16 -31
- package/src/components/Image/Image.tsx +28 -12
- package/src/components/Link/Link.stories.mdx +30 -80
- package/src/components/Link/Link.test.tsx +25 -53
- package/src/components/Link/Link.tsx +43 -56
- package/src/components/Link/__snapshots__/Link.test.tsx.snap +1 -2
- package/src/components/List/List.stories.mdx +20 -31
- package/src/components/List/List.test.tsx +24 -43
- package/src/components/List/List.tsx +25 -36
- package/src/components/Logo/Logo.stories.mdx +94 -50
- package/src/components/Logo/Logo.test.tsx +10 -19
- package/src/components/Logo/Logo.tsx +50 -17
- package/src/components/Logo/LogoSvgs.tsx +78 -78
- package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +4 -4
- package/src/components/Modal/Modal.stories.mdx +8 -9
- package/src/components/Modal/Modal.test.tsx +5 -10
- package/src/components/Modal/Modal.tsx +1 -1
- package/src/components/Notification/Notification.stories.mdx +10 -28
- package/src/components/Notification/Notification.test.tsx +9 -12
- package/src/components/Notification/Notification.tsx +34 -37
- package/src/components/Pagination/Pagination.stories.mdx +2 -2
- package/src/components/Pagination/Pagination.tsx +15 -10
- package/src/components/ProgressIndicator/ProgressIndicator.stories.mdx +27 -53
- package/src/components/ProgressIndicator/ProgressIndicator.test.tsx +9 -10
- package/src/components/ProgressIndicator/ProgressIndicator.tsx +17 -21
- package/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.test.tsx.snap +0 -10
- package/src/components/Radio/Radio.stories.mdx +1 -1
- package/src/components/Radio/Radio.tsx +9 -6
- package/src/components/RadioGroup/RadioGroup.stories.mdx +15 -16
- package/src/components/RadioGroup/RadioGroup.test.tsx +2 -8
- package/src/components/RadioGroup/RadioGroup.tsx +28 -24
- package/src/components/SearchBar/SearchBar.stories.mdx +1 -1
- package/src/components/SearchBar/SearchBar.test.tsx +1 -1
- package/src/components/SearchBar/SearchBar.tsx +14 -22
- package/src/components/SearchBar/__snapshots__/SearchBar.test.tsx.snap +0 -12
- package/src/components/Select/Select.stories.mdx +8 -23
- package/src/components/Select/Select.test.tsx +6 -7
- package/src/components/Select/Select.tsx +13 -26
- package/src/components/SkeletonLoader/SkeletonLoader.stories.mdx +17 -56
- package/src/components/SkeletonLoader/SkeletonLoader.test.tsx +7 -21
- package/src/components/SkeletonLoader/SkeletonLoader.tsx +9 -8
- package/src/components/SkeletonLoader/__snapshots__/SkeletonLoader.test.tsx.snap +33 -33
- package/src/components/SkipNavigation/SkipNavigation.stories.mdx +90 -0
- package/src/components/SkipNavigation/SkipNavigation.test.tsx +63 -0
- package/src/components/SkipNavigation/SkipNavigation.tsx +51 -0
- package/src/components/SkipNavigation/__snapshots__/SkipNavigation.test.tsx.snap +130 -0
- package/src/components/Slider/Slider.stories.mdx +19 -53
- package/src/components/Slider/Slider.test.tsx +2 -2
- package/src/components/Slider/Slider.tsx +10 -12
- package/src/components/Slider/__snapshots__/Slider.test.tsx.snap +2 -9
- package/src/components/StatusBadge/StatusBadge.stories.mdx +6 -21
- package/src/components/StatusBadge/StatusBadge.test.tsx +2 -3
- package/src/components/StatusBadge/StatusBadge.tsx +3 -10
- package/src/components/StructuredContent/StructuredContent.stories.mdx +30 -58
- package/src/components/StructuredContent/StructuredContent.test.tsx +42 -44
- package/src/components/StructuredContent/StructuredContent.tsx +9 -18
- package/src/components/StyleGuide/Bidirectionality.stories.mdx +9 -23
- package/src/components/StyleGuide/Buttons.stories.mdx +62 -62
- package/src/components/StyleGuide/ColorCard.tsx +2 -4
- package/src/components/StyleGuide/Colors.stories.mdx +7 -8
- package/src/components/StyleGuide/DesignTokens.stories.mdx +5 -7
- package/src/components/StyleGuide/Forms.stories.mdx +0 -1
- package/src/components/StyleGuide/Iconography.stories.mdx +59 -77
- package/src/components/StyleGuide/Spacing.stories.mdx +0 -1
- package/src/components/StyleGuide/Typography.stories.mdx +15 -18
- package/src/components/Table/Table.stories.mdx +85 -1
- package/src/components/Table/Table.test.tsx +57 -1
- package/src/components/Table/Table.tsx +7 -4
- package/src/components/Table/__snapshots__/Table.test.tsx.snap +121 -0
- package/src/components/Tabs/Tabs.stories.mdx +1 -1
- package/src/components/Tabs/Tabs.test.tsx +2 -2
- package/src/components/Tabs/Tabs.tsx +26 -27
- package/src/components/Template/Template.stories.mdx +49 -54
- package/src/components/Template/Template.tsx +9 -3
- package/src/components/Text/Text.stories.mdx +5 -11
- package/src/components/Text/Text.test.tsx +3 -6
- package/src/components/Text/Text.tsx +3 -5
- package/src/components/TextInput/TextInput.stories.mdx +10 -22
- package/src/components/TextInput/TextInput.test.tsx +32 -62
- package/src/components/TextInput/TextInput.tsx +61 -30
- package/src/components/TextInput/__snapshots__/TextInput.test.tsx.snap +1 -0
- package/src/components/Toggle/Toggle.stories.mdx +5 -16
- package/src/components/Toggle/Toggle.test.tsx +2 -3
- package/src/components/Toggle/Toggle.tsx +9 -10
- package/src/components/VideoPlayer/VideoPlayer.stories.mdx +13 -29
- package/src/components/VideoPlayer/VideoPlayer.test.tsx +18 -23
- package/src/components/VideoPlayer/VideoPlayer.tsx +13 -10
- package/src/docs/Chakra.stories.mdx +14 -11
- package/src/docs/Welcome.stories.mdx +23 -43
- package/src/helpers/types.ts +1 -0
- package/src/hooks/tests/useNYPLTheme.test.tsx +1 -1
- package/src/hooks/useNYPLTheme.stories.mdx +3 -6
- package/src/index.ts +51 -45
- package/src/theme/components/buttonGroup.ts +10 -0
- package/src/theme/components/card.ts +50 -15
- package/src/theme/components/componentWrapper.ts +5 -1
- package/src/theme/components/customTable.ts +8 -2
- package/src/theme/components/fieldset.ts +5 -1
- package/src/theme/components/helperErrorText.ts +5 -1
- package/src/theme/components/hero.ts +2 -2
- package/src/theme/components/horizontalRule.ts +5 -1
- package/src/theme/components/icon.ts +7 -1
- package/src/theme/components/image.ts +14 -3
- package/src/theme/components/label.ts +5 -1
- package/src/theme/components/list.ts +8 -2
- package/src/theme/components/logo.ts +5 -1
- package/src/theme/components/notification.ts +38 -14
- package/src/theme/components/progressIndicator.ts +10 -5
- package/src/theme/components/select.ts +5 -2
- package/src/theme/components/skeletonLoader.ts +8 -2
- package/src/theme/components/skipNavigation.ts +26 -0
- package/src/theme/components/slider.ts +13 -1
- package/src/theme/components/structuredContent.ts +11 -1
- package/src/theme/components/text.ts +12 -5
- package/src/theme/components/toggle.ts +9 -3
- package/src/theme/index.ts +4 -0
- package/src/theme/provider.tsx +1 -1
- package/src/utils/componentCategories.ts +13 -5
- package/src/utils/interfaces.ts +5 -0
- package/src/utils/utils.ts +2 -32
- package/dist/components/Accordion/AccordionTypes.d.ts +0 -5
- package/dist/components/Breadcrumbs/BreadcrumbsTypes.d.ts +0 -8
- package/dist/components/Button/ButtonTypes.d.ts +0 -8
- package/dist/components/DatePicker/DatePickerTypes.d.ts +0 -5
- package/dist/components/Form/FormTypes.d.ts +0 -2
- package/dist/components/Grid/GridTypes.d.ts +0 -9
- package/dist/components/Heading/HeadingTypes.d.ts +0 -14
- package/dist/components/Hero/HeroTypes.d.ts +0 -12
- package/dist/components/Icons/IconTypes.d.ts +0 -77
- package/dist/components/Image/ImageTypes.d.ts +0 -22
- package/dist/components/Link/LinkTypes.d.ts +0 -8
- package/dist/components/List/ListTypes.d.ts +0 -5
- package/dist/components/Logo/LogoTypes.d.ts +0 -54
- package/dist/components/Notification/NotificationTypes.d.ts +0 -5
- package/dist/components/ProgressIndicator/ProgressIndicatorTypes.d.ts +0 -8
- package/dist/components/Select/SelectTypes.d.ts +0 -8
- package/dist/components/SkeletonLoader/SkeletonLoaderTypes.d.ts +0 -5
- package/dist/components/StatusBadge/StatusBadgeTypes.d.ts +0 -5
- package/dist/components/StructuredContent/StructuredContentTypes.d.ts +0 -5
- package/dist/components/Text/TextTypes.d.ts +0 -6
- package/dist/components/TextInput/TextInputTypes.d.ts +0 -25
- package/dist/components/Toggle/ToggleTypes.d.ts +0 -4
- package/dist/components/VideoPlayer/VideoPlayerTypes.d.ts +0 -9
- package/dist/helpers/enums.d.ts +0 -4
- package/dist/utils/siteSections.d.ts +0 -2
- package/src/components/Accordion/AccordionTypes.tsx +0 -5
- package/src/components/Breadcrumbs/BreadcrumbsTypes.tsx +0 -8
- package/src/components/Button/ButtonTypes.tsx +0 -8
- package/src/components/DatePicker/DatePickerTypes.tsx +0 -5
- package/src/components/Form/FormTypes.tsx +0 -3
- package/src/components/Grid/GridTypes.tsx +0 -9
- package/src/components/Heading/HeadingTypes.tsx +0 -15
- package/src/components/Hero/HeroTypes.tsx +0 -20
- package/src/components/Icons/IconTypes.tsx +0 -83
- package/src/components/Image/ImageTypes.ts +0 -24
- package/src/components/Link/LinkTypes.tsx +0 -8
- package/src/components/List/ListTypes.tsx +0 -5
- package/src/components/Logo/LogoTypes.tsx +0 -56
- package/src/components/Notification/NotificationTypes.tsx +0 -5
- package/src/components/ProgressIndicator/ProgressIndicatorTypes.ts +0 -8
- package/src/components/Select/SelectTypes.tsx +0 -10
- package/src/components/SkeletonLoader/SkeletonLoaderTypes.tsx +0 -5
- package/src/components/StatusBadge/StatusBadgeTypes.tsx +0 -5
- package/src/components/StructuredContent/StructuredContentTypes.tsx +0 -5
- package/src/components/Text/TextTypes.tsx +0 -6
- package/src/components/TextInput/TextInputTypes.tsx +0 -48
- package/src/components/Toggle/ToggleTypes.tsx +0 -4
- package/src/components/VideoPlayer/VideoPlayerTypes.tsx +0 -10
- package/src/helpers/enums.ts +0 -4
- package/src/utils/siteSections.ts +0 -10
|
@@ -1,4 +1,477 @@
|
|
|
1
|
+
interface LogoBaseStyle {
|
|
2
|
+
size: keyof typeof size;
|
|
3
|
+
}
|
|
4
|
+
declare const size: {
|
|
5
|
+
default: {
|
|
6
|
+
maxWidth: string;
|
|
7
|
+
};
|
|
8
|
+
xxsmall: {
|
|
9
|
+
maxWidth: string;
|
|
10
|
+
};
|
|
11
|
+
xsmall: {
|
|
12
|
+
maxWidth: string;
|
|
13
|
+
};
|
|
14
|
+
small: {
|
|
15
|
+
maxWidth: string;
|
|
16
|
+
};
|
|
17
|
+
medium: {
|
|
18
|
+
maxWidth: string;
|
|
19
|
+
};
|
|
20
|
+
large: {
|
|
21
|
+
maxWidth: string;
|
|
22
|
+
};
|
|
23
|
+
xlarge: {
|
|
24
|
+
maxWidth: string;
|
|
25
|
+
};
|
|
26
|
+
xxlarge: {
|
|
27
|
+
height: string;
|
|
28
|
+
width: string;
|
|
29
|
+
};
|
|
30
|
+
xxxlarge: {
|
|
31
|
+
height: string;
|
|
32
|
+
width: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
1
35
|
declare const Logo: {
|
|
2
|
-
baseStyle: (props:
|
|
36
|
+
baseStyle: (props: LogoBaseStyle) => {
|
|
37
|
+
svg: {
|
|
38
|
+
maxWidth: string;
|
|
39
|
+
display: string;
|
|
40
|
+
height: string;
|
|
41
|
+
width: string;
|
|
42
|
+
} | {
|
|
43
|
+
maxWidth: string;
|
|
44
|
+
display: string;
|
|
45
|
+
height: string;
|
|
46
|
+
width: string;
|
|
47
|
+
} | {
|
|
48
|
+
maxWidth: string;
|
|
49
|
+
display: string;
|
|
50
|
+
height: string;
|
|
51
|
+
width: string;
|
|
52
|
+
} | {
|
|
53
|
+
maxWidth: string;
|
|
54
|
+
display: string;
|
|
55
|
+
height: string;
|
|
56
|
+
width: string;
|
|
57
|
+
} | {
|
|
58
|
+
maxWidth: string;
|
|
59
|
+
display: string;
|
|
60
|
+
height: string;
|
|
61
|
+
width: string;
|
|
62
|
+
} | {
|
|
63
|
+
maxWidth: string;
|
|
64
|
+
display: string;
|
|
65
|
+
height: string;
|
|
66
|
+
width: string;
|
|
67
|
+
} | {
|
|
68
|
+
maxWidth: string;
|
|
69
|
+
display: string;
|
|
70
|
+
height: string;
|
|
71
|
+
width: string;
|
|
72
|
+
} | {
|
|
73
|
+
height: string;
|
|
74
|
+
width: string;
|
|
75
|
+
display: string;
|
|
76
|
+
} | {
|
|
77
|
+
height: string;
|
|
78
|
+
width: string;
|
|
79
|
+
display: string;
|
|
80
|
+
};
|
|
81
|
+
maxWidth: string;
|
|
82
|
+
display: string;
|
|
83
|
+
height: string;
|
|
84
|
+
width: string;
|
|
85
|
+
} | {
|
|
86
|
+
svg: {
|
|
87
|
+
maxWidth: string;
|
|
88
|
+
display: string;
|
|
89
|
+
height: string;
|
|
90
|
+
width: string;
|
|
91
|
+
} | {
|
|
92
|
+
maxWidth: string;
|
|
93
|
+
display: string;
|
|
94
|
+
height: string;
|
|
95
|
+
width: string;
|
|
96
|
+
} | {
|
|
97
|
+
maxWidth: string;
|
|
98
|
+
display: string;
|
|
99
|
+
height: string;
|
|
100
|
+
width: string;
|
|
101
|
+
} | {
|
|
102
|
+
maxWidth: string;
|
|
103
|
+
display: string;
|
|
104
|
+
height: string;
|
|
105
|
+
width: string;
|
|
106
|
+
} | {
|
|
107
|
+
maxWidth: string;
|
|
108
|
+
display: string;
|
|
109
|
+
height: string;
|
|
110
|
+
width: string;
|
|
111
|
+
} | {
|
|
112
|
+
maxWidth: string;
|
|
113
|
+
display: string;
|
|
114
|
+
height: string;
|
|
115
|
+
width: string;
|
|
116
|
+
} | {
|
|
117
|
+
maxWidth: string;
|
|
118
|
+
display: string;
|
|
119
|
+
height: string;
|
|
120
|
+
width: string;
|
|
121
|
+
} | {
|
|
122
|
+
height: string;
|
|
123
|
+
width: string;
|
|
124
|
+
display: string;
|
|
125
|
+
} | {
|
|
126
|
+
height: string;
|
|
127
|
+
width: string;
|
|
128
|
+
display: string;
|
|
129
|
+
};
|
|
130
|
+
maxWidth: string;
|
|
131
|
+
display: string;
|
|
132
|
+
height: string;
|
|
133
|
+
width: string;
|
|
134
|
+
} | {
|
|
135
|
+
svg: {
|
|
136
|
+
maxWidth: string;
|
|
137
|
+
display: string;
|
|
138
|
+
height: string;
|
|
139
|
+
width: string;
|
|
140
|
+
} | {
|
|
141
|
+
maxWidth: string;
|
|
142
|
+
display: string;
|
|
143
|
+
height: string;
|
|
144
|
+
width: string;
|
|
145
|
+
} | {
|
|
146
|
+
maxWidth: string;
|
|
147
|
+
display: string;
|
|
148
|
+
height: string;
|
|
149
|
+
width: string;
|
|
150
|
+
} | {
|
|
151
|
+
maxWidth: string;
|
|
152
|
+
display: string;
|
|
153
|
+
height: string;
|
|
154
|
+
width: string;
|
|
155
|
+
} | {
|
|
156
|
+
maxWidth: string;
|
|
157
|
+
display: string;
|
|
158
|
+
height: string;
|
|
159
|
+
width: string;
|
|
160
|
+
} | {
|
|
161
|
+
maxWidth: string;
|
|
162
|
+
display: string;
|
|
163
|
+
height: string;
|
|
164
|
+
width: string;
|
|
165
|
+
} | {
|
|
166
|
+
maxWidth: string;
|
|
167
|
+
display: string;
|
|
168
|
+
height: string;
|
|
169
|
+
width: string;
|
|
170
|
+
} | {
|
|
171
|
+
height: string;
|
|
172
|
+
width: string;
|
|
173
|
+
display: string;
|
|
174
|
+
} | {
|
|
175
|
+
height: string;
|
|
176
|
+
width: string;
|
|
177
|
+
display: string;
|
|
178
|
+
};
|
|
179
|
+
maxWidth: string;
|
|
180
|
+
display: string;
|
|
181
|
+
height: string;
|
|
182
|
+
width: string;
|
|
183
|
+
} | {
|
|
184
|
+
svg: {
|
|
185
|
+
maxWidth: string;
|
|
186
|
+
display: string;
|
|
187
|
+
height: string;
|
|
188
|
+
width: string;
|
|
189
|
+
} | {
|
|
190
|
+
maxWidth: string;
|
|
191
|
+
display: string;
|
|
192
|
+
height: string;
|
|
193
|
+
width: string;
|
|
194
|
+
} | {
|
|
195
|
+
maxWidth: string;
|
|
196
|
+
display: string;
|
|
197
|
+
height: string;
|
|
198
|
+
width: string;
|
|
199
|
+
} | {
|
|
200
|
+
maxWidth: string;
|
|
201
|
+
display: string;
|
|
202
|
+
height: string;
|
|
203
|
+
width: string;
|
|
204
|
+
} | {
|
|
205
|
+
maxWidth: string;
|
|
206
|
+
display: string;
|
|
207
|
+
height: string;
|
|
208
|
+
width: string;
|
|
209
|
+
} | {
|
|
210
|
+
maxWidth: string;
|
|
211
|
+
display: string;
|
|
212
|
+
height: string;
|
|
213
|
+
width: string;
|
|
214
|
+
} | {
|
|
215
|
+
maxWidth: string;
|
|
216
|
+
display: string;
|
|
217
|
+
height: string;
|
|
218
|
+
width: string;
|
|
219
|
+
} | {
|
|
220
|
+
height: string;
|
|
221
|
+
width: string;
|
|
222
|
+
display: string;
|
|
223
|
+
} | {
|
|
224
|
+
height: string;
|
|
225
|
+
width: string;
|
|
226
|
+
display: string;
|
|
227
|
+
};
|
|
228
|
+
maxWidth: string;
|
|
229
|
+
display: string;
|
|
230
|
+
height: string;
|
|
231
|
+
width: string;
|
|
232
|
+
} | {
|
|
233
|
+
svg: {
|
|
234
|
+
maxWidth: string;
|
|
235
|
+
display: string;
|
|
236
|
+
height: string;
|
|
237
|
+
width: string;
|
|
238
|
+
} | {
|
|
239
|
+
maxWidth: string;
|
|
240
|
+
display: string;
|
|
241
|
+
height: string;
|
|
242
|
+
width: string;
|
|
243
|
+
} | {
|
|
244
|
+
maxWidth: string;
|
|
245
|
+
display: string;
|
|
246
|
+
height: string;
|
|
247
|
+
width: string;
|
|
248
|
+
} | {
|
|
249
|
+
maxWidth: string;
|
|
250
|
+
display: string;
|
|
251
|
+
height: string;
|
|
252
|
+
width: string;
|
|
253
|
+
} | {
|
|
254
|
+
maxWidth: string;
|
|
255
|
+
display: string;
|
|
256
|
+
height: string;
|
|
257
|
+
width: string;
|
|
258
|
+
} | {
|
|
259
|
+
maxWidth: string;
|
|
260
|
+
display: string;
|
|
261
|
+
height: string;
|
|
262
|
+
width: string;
|
|
263
|
+
} | {
|
|
264
|
+
maxWidth: string;
|
|
265
|
+
display: string;
|
|
266
|
+
height: string;
|
|
267
|
+
width: string;
|
|
268
|
+
} | {
|
|
269
|
+
height: string;
|
|
270
|
+
width: string;
|
|
271
|
+
display: string;
|
|
272
|
+
} | {
|
|
273
|
+
height: string;
|
|
274
|
+
width: string;
|
|
275
|
+
display: string;
|
|
276
|
+
};
|
|
277
|
+
maxWidth: string;
|
|
278
|
+
display: string;
|
|
279
|
+
height: string;
|
|
280
|
+
width: string;
|
|
281
|
+
} | {
|
|
282
|
+
svg: {
|
|
283
|
+
maxWidth: string;
|
|
284
|
+
display: string;
|
|
285
|
+
height: string;
|
|
286
|
+
width: string;
|
|
287
|
+
} | {
|
|
288
|
+
maxWidth: string;
|
|
289
|
+
display: string;
|
|
290
|
+
height: string;
|
|
291
|
+
width: string;
|
|
292
|
+
} | {
|
|
293
|
+
maxWidth: string;
|
|
294
|
+
display: string;
|
|
295
|
+
height: string;
|
|
296
|
+
width: string;
|
|
297
|
+
} | {
|
|
298
|
+
maxWidth: string;
|
|
299
|
+
display: string;
|
|
300
|
+
height: string;
|
|
301
|
+
width: string;
|
|
302
|
+
} | {
|
|
303
|
+
maxWidth: string;
|
|
304
|
+
display: string;
|
|
305
|
+
height: string;
|
|
306
|
+
width: string;
|
|
307
|
+
} | {
|
|
308
|
+
maxWidth: string;
|
|
309
|
+
display: string;
|
|
310
|
+
height: string;
|
|
311
|
+
width: string;
|
|
312
|
+
} | {
|
|
313
|
+
maxWidth: string;
|
|
314
|
+
display: string;
|
|
315
|
+
height: string;
|
|
316
|
+
width: string;
|
|
317
|
+
} | {
|
|
318
|
+
height: string;
|
|
319
|
+
width: string;
|
|
320
|
+
display: string;
|
|
321
|
+
} | {
|
|
322
|
+
height: string;
|
|
323
|
+
width: string;
|
|
324
|
+
display: string;
|
|
325
|
+
};
|
|
326
|
+
maxWidth: string;
|
|
327
|
+
display: string;
|
|
328
|
+
height: string;
|
|
329
|
+
width: string;
|
|
330
|
+
} | {
|
|
331
|
+
svg: {
|
|
332
|
+
maxWidth: string;
|
|
333
|
+
display: string;
|
|
334
|
+
height: string;
|
|
335
|
+
width: string;
|
|
336
|
+
} | {
|
|
337
|
+
maxWidth: string;
|
|
338
|
+
display: string;
|
|
339
|
+
height: string;
|
|
340
|
+
width: string;
|
|
341
|
+
} | {
|
|
342
|
+
maxWidth: string;
|
|
343
|
+
display: string;
|
|
344
|
+
height: string;
|
|
345
|
+
width: string;
|
|
346
|
+
} | {
|
|
347
|
+
maxWidth: string;
|
|
348
|
+
display: string;
|
|
349
|
+
height: string;
|
|
350
|
+
width: string;
|
|
351
|
+
} | {
|
|
352
|
+
maxWidth: string;
|
|
353
|
+
display: string;
|
|
354
|
+
height: string;
|
|
355
|
+
width: string;
|
|
356
|
+
} | {
|
|
357
|
+
maxWidth: string;
|
|
358
|
+
display: string;
|
|
359
|
+
height: string;
|
|
360
|
+
width: string;
|
|
361
|
+
} | {
|
|
362
|
+
maxWidth: string;
|
|
363
|
+
display: string;
|
|
364
|
+
height: string;
|
|
365
|
+
width: string;
|
|
366
|
+
} | {
|
|
367
|
+
height: string;
|
|
368
|
+
width: string;
|
|
369
|
+
display: string;
|
|
370
|
+
} | {
|
|
371
|
+
height: string;
|
|
372
|
+
width: string;
|
|
373
|
+
display: string;
|
|
374
|
+
};
|
|
375
|
+
maxWidth: string;
|
|
376
|
+
display: string;
|
|
377
|
+
height: string;
|
|
378
|
+
width: string;
|
|
379
|
+
} | {
|
|
380
|
+
svg: {
|
|
381
|
+
maxWidth: string;
|
|
382
|
+
display: string;
|
|
383
|
+
height: string;
|
|
384
|
+
width: string;
|
|
385
|
+
} | {
|
|
386
|
+
maxWidth: string;
|
|
387
|
+
display: string;
|
|
388
|
+
height: string;
|
|
389
|
+
width: string;
|
|
390
|
+
} | {
|
|
391
|
+
maxWidth: string;
|
|
392
|
+
display: string;
|
|
393
|
+
height: string;
|
|
394
|
+
width: string;
|
|
395
|
+
} | {
|
|
396
|
+
maxWidth: string;
|
|
397
|
+
display: string;
|
|
398
|
+
height: string;
|
|
399
|
+
width: string;
|
|
400
|
+
} | {
|
|
401
|
+
maxWidth: string;
|
|
402
|
+
display: string;
|
|
403
|
+
height: string;
|
|
404
|
+
width: string;
|
|
405
|
+
} | {
|
|
406
|
+
maxWidth: string;
|
|
407
|
+
display: string;
|
|
408
|
+
height: string;
|
|
409
|
+
width: string;
|
|
410
|
+
} | {
|
|
411
|
+
maxWidth: string;
|
|
412
|
+
display: string;
|
|
413
|
+
height: string;
|
|
414
|
+
width: string;
|
|
415
|
+
} | {
|
|
416
|
+
height: string;
|
|
417
|
+
width: string;
|
|
418
|
+
display: string;
|
|
419
|
+
} | {
|
|
420
|
+
height: string;
|
|
421
|
+
width: string;
|
|
422
|
+
display: string;
|
|
423
|
+
};
|
|
424
|
+
height: string;
|
|
425
|
+
width: string;
|
|
426
|
+
display: string;
|
|
427
|
+
} | {
|
|
428
|
+
svg: {
|
|
429
|
+
maxWidth: string;
|
|
430
|
+
display: string;
|
|
431
|
+
height: string;
|
|
432
|
+
width: string;
|
|
433
|
+
} | {
|
|
434
|
+
maxWidth: string;
|
|
435
|
+
display: string;
|
|
436
|
+
height: string;
|
|
437
|
+
width: string;
|
|
438
|
+
} | {
|
|
439
|
+
maxWidth: string;
|
|
440
|
+
display: string;
|
|
441
|
+
height: string;
|
|
442
|
+
width: string;
|
|
443
|
+
} | {
|
|
444
|
+
maxWidth: string;
|
|
445
|
+
display: string;
|
|
446
|
+
height: string;
|
|
447
|
+
width: string;
|
|
448
|
+
} | {
|
|
449
|
+
maxWidth: string;
|
|
450
|
+
display: string;
|
|
451
|
+
height: string;
|
|
452
|
+
width: string;
|
|
453
|
+
} | {
|
|
454
|
+
maxWidth: string;
|
|
455
|
+
display: string;
|
|
456
|
+
height: string;
|
|
457
|
+
width: string;
|
|
458
|
+
} | {
|
|
459
|
+
maxWidth: string;
|
|
460
|
+
display: string;
|
|
461
|
+
height: string;
|
|
462
|
+
width: string;
|
|
463
|
+
} | {
|
|
464
|
+
height: string;
|
|
465
|
+
width: string;
|
|
466
|
+
display: string;
|
|
467
|
+
} | {
|
|
468
|
+
height: string;
|
|
469
|
+
width: string;
|
|
470
|
+
display: string;
|
|
471
|
+
};
|
|
472
|
+
height: string;
|
|
473
|
+
width: string;
|
|
474
|
+
display: string;
|
|
475
|
+
};
|
|
3
476
|
};
|
|
4
477
|
export default Logo;
|
|
@@ -1,12 +1,24 @@
|
|
|
1
|
+
import { NotificationTypes } from "../../components/Notification/Notification";
|
|
2
|
+
interface NotificationBaseStyle {
|
|
3
|
+
dismissible: boolean;
|
|
4
|
+
isCentered: boolean;
|
|
5
|
+
noMargin: boolean;
|
|
6
|
+
notificationType: NotificationTypes;
|
|
7
|
+
}
|
|
8
|
+
interface NotificationContentBaseStyle {
|
|
9
|
+
alignText: boolean;
|
|
10
|
+
icon: boolean;
|
|
11
|
+
notificationType: NotificationTypes;
|
|
12
|
+
}
|
|
13
|
+
interface NotificationHeadingBaseStyle {
|
|
14
|
+
icon: boolean;
|
|
15
|
+
isCentered: boolean;
|
|
16
|
+
notificationType: NotificationTypes;
|
|
17
|
+
}
|
|
1
18
|
declare const _default: {
|
|
2
19
|
Notification: {
|
|
3
20
|
parts: string[];
|
|
4
|
-
baseStyle: ({ dismissible, isCentered, noMargin, notificationType }: {
|
|
5
|
-
dismissible: any;
|
|
6
|
-
isCentered: any;
|
|
7
|
-
noMargin: any;
|
|
8
|
-
notificationType: any;
|
|
9
|
-
}) => {
|
|
21
|
+
baseStyle: ({ dismissible, isCentered, noMargin, notificationType, }: NotificationBaseStyle) => {
|
|
10
22
|
bg: string;
|
|
11
23
|
display: string;
|
|
12
24
|
fontSize: string;
|
|
@@ -49,11 +61,7 @@ declare const _default: {
|
|
|
49
61
|
};
|
|
50
62
|
NotificationContent: {
|
|
51
63
|
parts: string[];
|
|
52
|
-
baseStyle: ({ alignText, icon, notificationType }: {
|
|
53
|
-
alignText: any;
|
|
54
|
-
icon: any;
|
|
55
|
-
notificationType: any;
|
|
56
|
-
}) => {
|
|
64
|
+
baseStyle: ({ alignText, icon, notificationType, }: NotificationContentBaseStyle) => {
|
|
57
65
|
display: string;
|
|
58
66
|
justifyContent: string;
|
|
59
67
|
content: {
|
|
@@ -72,11 +80,7 @@ declare const _default: {
|
|
|
72
80
|
};
|
|
73
81
|
NotificationHeading: {
|
|
74
82
|
parts: string[];
|
|
75
|
-
baseStyle: ({ icon, isCentered, notificationType }: {
|
|
76
|
-
icon: any;
|
|
77
|
-
isCentered: any;
|
|
78
|
-
notificationType: any;
|
|
79
|
-
}) => {
|
|
83
|
+
baseStyle: ({ icon, isCentered, notificationType, }: NotificationHeadingBaseStyle) => {
|
|
80
84
|
display: string;
|
|
81
85
|
marginBottom: string;
|
|
82
86
|
justifyContent: string;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { ProgressIndicatorSizes } from "../../components/ProgressIndicator/ProgressIndicator";
|
|
2
|
+
interface ProgressIndicatorBaseStyle {
|
|
3
|
+
darkMode: boolean;
|
|
4
|
+
size: ProgressIndicatorSizes;
|
|
5
|
+
}
|
|
1
6
|
declare const ProgressIndicator: {
|
|
2
7
|
parts: string[];
|
|
3
|
-
baseStyle: ({ darkMode, size }: {
|
|
4
|
-
darkMode: any;
|
|
5
|
-
size: any;
|
|
6
|
-
}) => {
|
|
8
|
+
baseStyle: ({ darkMode, size }: ProgressIndicatorBaseStyle) => {
|
|
7
9
|
color: string;
|
|
8
10
|
circular: {
|
|
9
11
|
svg: {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
interface SelectBaseStyle {
|
|
2
|
+
labelPosition: string;
|
|
3
|
+
}
|
|
1
4
|
declare const Select: {
|
|
2
5
|
parts: string[];
|
|
3
|
-
baseStyle: ({ labelPosition }: {
|
|
4
|
-
labelPosition: any;
|
|
5
|
-
}) => {
|
|
6
|
-
marginBottom: string;
|
|
6
|
+
baseStyle: ({ labelPosition }: SelectBaseStyle) => {
|
|
7
7
|
".chakra-select__icon-wrapper": {
|
|
8
8
|
zIndex: string;
|
|
9
9
|
};
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
+
interface SkeletonLoaderBaseStyle {
|
|
2
|
+
imageAspectRatio: keyof typeof imagePaddingBottomStyles;
|
|
3
|
+
isBordered: boolean;
|
|
4
|
+
showImage?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare const imagePaddingBottomStyles: {
|
|
7
|
+
landscape: string;
|
|
8
|
+
portrait: string;
|
|
9
|
+
square: string;
|
|
10
|
+
};
|
|
1
11
|
declare const SkeletonLoader: {
|
|
2
12
|
parts: string[];
|
|
3
|
-
baseStyle: ({ imageAspectRatio, isBordered }: {
|
|
4
|
-
imageAspectRatio: any;
|
|
5
|
-
isBordered: any;
|
|
6
|
-
}) => {
|
|
13
|
+
baseStyle: ({ imageAspectRatio, isBordered }: SkeletonLoaderBaseStyle) => {
|
|
7
14
|
section: {
|
|
8
15
|
marginBottom: string;
|
|
9
16
|
_last: {
|
|
@@ -15,7 +22,7 @@ declare const SkeletonLoader: {
|
|
|
15
22
|
flexShrink: string;
|
|
16
23
|
height: string;
|
|
17
24
|
overflow: string;
|
|
18
|
-
paddingBottom:
|
|
25
|
+
paddingBottom: string;
|
|
19
26
|
position: string;
|
|
20
27
|
width: string;
|
|
21
28
|
borderRadius: string;
|
|
@@ -47,10 +54,7 @@ declare const SkeletonLoader: {
|
|
|
47
54
|
width: string;
|
|
48
55
|
};
|
|
49
56
|
variants: {
|
|
50
|
-
row: ({ imageAspectRatio, showImage }: {
|
|
51
|
-
imageAspectRatio: any;
|
|
52
|
-
showImage: any;
|
|
53
|
-
}) => {
|
|
57
|
+
row: ({ imageAspectRatio, showImage }: SkeletonLoaderBaseStyle) => {
|
|
54
58
|
alignItems: string;
|
|
55
59
|
display: {
|
|
56
60
|
md: string;
|
|
@@ -69,7 +73,7 @@ declare const SkeletonLoader: {
|
|
|
69
73
|
md: string;
|
|
70
74
|
};
|
|
71
75
|
height: {
|
|
72
|
-
md:
|
|
76
|
+
md: string;
|
|
73
77
|
};
|
|
74
78
|
};
|
|
75
79
|
container: {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const SkipNavigation: {
|
|
2
|
+
baseStyle: {
|
|
3
|
+
a: {
|
|
4
|
+
backgroundColor: string;
|
|
5
|
+
height: string;
|
|
6
|
+
left: string;
|
|
7
|
+
overflow: string;
|
|
8
|
+
position: string;
|
|
9
|
+
top: string;
|
|
10
|
+
width: string;
|
|
11
|
+
_focus: {
|
|
12
|
+
border: string;
|
|
13
|
+
height: string;
|
|
14
|
+
left: string;
|
|
15
|
+
padding: string;
|
|
16
|
+
top: string;
|
|
17
|
+
width: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
export default SkipNavigation;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
interface CustomSliderBaseStyle {
|
|
2
|
+
isDisabled: boolean;
|
|
3
|
+
isInvalid: boolean;
|
|
4
|
+
showBoxes: boolean;
|
|
5
|
+
showValues: boolean;
|
|
6
|
+
}
|
|
1
7
|
declare const CustomSlider: {
|
|
2
8
|
parts: string[];
|
|
3
|
-
baseStyle: ({ isDisabled, isInvalid, showBoxes, showValues }: {
|
|
4
|
-
isDisabled: any;
|
|
5
|
-
isInvalid: any;
|
|
6
|
-
showBoxes: any;
|
|
7
|
-
showValues: any;
|
|
8
|
-
}) => {
|
|
9
|
+
baseStyle: ({ isDisabled, isInvalid, showBoxes, showValues, }: CustomSliderBaseStyle) => {
|
|
9
10
|
container: {
|
|
10
11
|
display: string;
|
|
11
12
|
alignItems: string;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
interface StructuredContentBaseStyle {
|
|
2
|
+
hasFigureImage: boolean;
|
|
3
|
+
imageAspectRatio: string;
|
|
4
|
+
imagePosition: string;
|
|
5
|
+
}
|
|
1
6
|
declare const StructuredContent: {
|
|
2
7
|
parts: string[];
|
|
3
|
-
baseStyle: ({ hasFigureImage, imageAspectRatio, imagePosition }: {
|
|
4
|
-
hasFigureImage: any;
|
|
5
|
-
imageAspectRatio: any;
|
|
6
|
-
imagePosition: any;
|
|
7
|
-
}) => {
|
|
8
|
+
baseStyle: ({ hasFigureImage, imageAspectRatio, imagePosition, }: StructuredContentBaseStyle) => {
|
|
8
9
|
h1: {
|
|
9
10
|
width: string;
|
|
10
11
|
marginTop: string;
|
|
@@ -59,7 +60,7 @@ declare const StructuredContent: {
|
|
|
59
60
|
imageFigure: {
|
|
60
61
|
marginBottom: string;
|
|
61
62
|
maxWidth?: string;
|
|
62
|
-
float:
|
|
63
|
+
float: string[];
|
|
63
64
|
marginLeft: string[];
|
|
64
65
|
marginRight: string[];
|
|
65
66
|
width: string;
|
|
@@ -67,14 +68,14 @@ declare const StructuredContent: {
|
|
|
67
68
|
imageWrapper: {
|
|
68
69
|
marginBottom: string;
|
|
69
70
|
maxWidth?: string;
|
|
70
|
-
float:
|
|
71
|
+
float: string[];
|
|
71
72
|
marginLeft: string[];
|
|
72
73
|
marginRight: string[];
|
|
73
74
|
width: string;
|
|
74
75
|
};
|
|
75
76
|
image: {
|
|
76
77
|
maxWidth?: string;
|
|
77
|
-
float:
|
|
78
|
+
float: string[];
|
|
78
79
|
marginLeft: string[];
|
|
79
80
|
marginRight: string[];
|
|
80
81
|
marginBottom: string;
|
|
@@ -185,7 +186,7 @@ declare const StructuredContent: {
|
|
|
185
186
|
th: {
|
|
186
187
|
border: string;
|
|
187
188
|
borderBottom: string;
|
|
188
|
-
color: string
|
|
189
|
+
color: string;
|
|
189
190
|
fontSize: string;
|
|
190
191
|
fontWeight: string;
|
|
191
192
|
letterSpacing: string;
|