@nypl/design-system-react-components 2.0.0 → 2.1.0-rc
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/README.md +466 -17
- package/dist/design-system-react-components.cjs +528 -0
- package/dist/design-system-react-components.js +37957 -0
- package/dist/src/components/Accordion/Accordion.d.ts +29 -0
- package/dist/src/components/AlphabetFilter/AlphabetFilter.d.ts +23 -0
- package/dist/src/components/AudioPlayer/AudioPlayer.d.ts +43 -0
- package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +24 -0
- package/dist/src/components/Button/Button.d.ts +35 -0
- package/dist/src/components/ButtonGroup/ButtonGroup.d.ts +25 -0
- package/dist/src/components/Card/Card.d.ts +55 -0
- package/dist/src/components/Checkbox/Checkbox.d.ts +47 -0
- package/dist/src/components/CheckboxGroup/CheckboxGroup.d.ts +51 -0
- package/dist/src/components/ComponentWrapper/ComponentWrapper.d.ts +31 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts +82 -0
- package/dist/src/components/FeaturedContent/FeaturedContent.d.ts +29 -0
- package/dist/src/components/FeedbackBox/FeedbackBox.d.ts +64 -0
- package/dist/src/components/FeedbackBox/useFeedbackBoxReducer.d.ts +19 -0
- package/dist/src/components/Fieldset/Fieldset.d.ts +24 -0
- package/dist/src/components/Form/Form.d.ts +31 -0
- package/dist/src/components/Grid/SimpleGrid.d.ts +20 -0
- package/dist/src/components/Heading/Heading.d.ts +42 -0
- package/dist/src/components/HelperErrorText/HelperErrorText.d.ts +34 -0
- package/dist/src/components/Hero/Hero.d.ts +49 -0
- package/dist/src/components/HorizontalRule/HorizontalRule.d.ts +11 -0
- package/dist/src/components/Icons/Icon.d.ts +41 -0
- package/dist/src/components/Icons/IconSvgs.d.ts +196 -0
- package/dist/src/components/Icons/iconVariables.d.ts +6 -0
- package/dist/src/components/Image/Image.d.ts +68 -0
- package/dist/src/components/Label/Label.d.ts +25 -0
- package/dist/src/components/Link/Link.d.ts +32 -0
- package/dist/src/components/List/List.d.ts +43 -0
- package/dist/src/components/Logo/Logo.d.ts +29 -0
- package/dist/src/components/Logo/LogoSvgs.d.ts +166 -0
- package/dist/src/components/Logo/logoVariables.d.ts +2 -0
- package/dist/src/components/Modal/Modal.d.ts +35 -0
- package/dist/src/components/NewsletterSignup/NewsletterSignup.d.ts +46 -0
- package/dist/src/components/Notification/Notification.d.ts +52 -0
- package/dist/src/components/Pagination/Pagination.d.ts +27 -0
- package/dist/src/components/ProgressIndicator/ProgressIndicator.d.ts +32 -0
- package/dist/src/components/Radio/Radio.d.ts +43 -0
- package/dist/src/components/RadioGroup/RadioGroup.d.ts +51 -0
- package/dist/src/components/SearchBar/SearchBar.d.ts +58 -0
- package/dist/src/components/Select/Select.d.ts +59 -0
- package/dist/src/components/SkeletonLoader/SkeletonLoader.d.ts +42 -0
- package/dist/src/components/SkipNavigation/SkipNavigation.d.ts +19 -0
- package/dist/src/components/Slider/Slider.d.ts +65 -0
- package/dist/src/components/SocialMediaLinks/SocialMediaLinks.d.ts +42 -0
- package/dist/src/components/SocialMediaLinks/SocialMediaLinksUtils.d.ts +7 -0
- package/dist/src/components/StatusBadge/StatusBadge.d.ts +19 -0
- package/dist/src/components/StructuredContent/StructuredContent.d.ts +30 -0
- package/dist/src/components/StyleGuide/ColorCard.d.ts +348 -0
- package/dist/src/components/StyledList/StyledList.d.ts +26 -0
- package/dist/src/components/Table/Table.d.ts +32 -0
- package/dist/src/components/Tabs/Tabs.d.ts +28 -0
- package/dist/src/components/TagSet/TagSet.d.ts +24 -0
- package/dist/src/components/TagSet/TagSetExplore.d.ts +28 -0
- package/dist/src/components/TagSet/TagSetFilter.d.ts +25 -0
- package/dist/src/components/TagSet/TooltipWrapper.d.ts +9 -0
- package/dist/src/components/Template/Template.d.ts +140 -0
- package/dist/src/components/Text/Text.d.ts +27 -0
- package/dist/src/components/TextInput/TextInput.d.ts +92 -0
- package/dist/src/components/Toggle/Toggle.d.ts +43 -0
- package/dist/src/components/Tooltip/Tooltip.d.ts +17 -0
- package/dist/src/components/VideoPlayer/VideoPlayer.d.ts +42 -0
- package/dist/src/helpers/getSectionColors.d.ts +8 -0
- package/dist/src/helpers/types.d.ts +50 -0
- package/dist/src/hooks/useCarouselStyles.d.ts +17 -0
- package/dist/src/hooks/useCloseDropDown.d.ts +7 -0
- package/dist/src/hooks/useNYPLBreakpoints.d.ts +13 -0
- package/dist/src/hooks/useNYPLTheme.d.ts +75 -0
- package/dist/src/hooks/useStateWithDependencies.d.ts +8 -0
- package/dist/src/hooks/useWindowSize.d.ts +10 -0
- package/dist/src/index.d.ts +87 -0
- package/dist/src/theme/components/accordion.d.ts +34 -0
- package/dist/src/theme/components/alphabetFilter.d.ts +40 -0
- package/dist/src/theme/components/audioPlayer.d.ts +16 -0
- package/dist/src/theme/components/breadcrumb.d.ts +158 -0
- package/dist/src/theme/components/button.d.ts +152 -0
- package/dist/src/theme/components/buttonGroup.d.ts +11 -0
- package/dist/src/theme/components/card.d.ts +485 -0
- package/dist/src/theme/components/checkbox.d.ts +178 -0
- package/dist/src/theme/components/checkboxGroup.d.ts +14 -0
- package/dist/src/theme/components/componentWrapper.d.ts +12 -0
- package/dist/src/theme/components/customTable.d.ts +739 -0
- package/dist/src/theme/components/datePicker.d.ts +17 -0
- package/dist/src/theme/components/featuredContent.d.ts +70 -0
- package/dist/src/theme/components/feedbackBox.d.ts +100 -0
- package/dist/src/theme/components/fieldset.d.ts +24 -0
- package/dist/src/theme/components/filterBar.d.ts +46 -0
- package/dist/src/theme/components/global.d.ts +141 -0
- package/dist/src/theme/components/globalMixins.d.ts +40 -0
- package/dist/src/theme/components/heading.d.ts +372 -0
- package/dist/src/theme/components/helperErrorText.d.ts +18 -0
- package/dist/src/theme/components/hero.d.ts +639 -0
- package/dist/src/theme/components/horizontalRule.d.ts +18 -0
- package/dist/src/theme/components/icon.d.ts +62251 -0
- package/dist/src/theme/components/image.d.ts +754 -0
- package/dist/src/theme/components/label.d.ts +22 -0
- package/dist/src/theme/components/link.d.ts +152 -0
- package/dist/src/theme/components/list.d.ts +230 -0
- package/dist/src/theme/components/logo.d.ts +477 -0
- package/dist/src/theme/components/modal.d.ts +27 -0
- package/dist/src/theme/components/multiSelect.d.ts +29 -0
- package/dist/src/theme/components/multiSelectMenuButton.d.ts +99 -0
- package/dist/src/theme/components/newsletterSignup.d.ts +93 -0
- package/dist/src/theme/components/notification.d.ts +137 -0
- package/dist/src/theme/components/pagination.d.ts +19 -0
- package/dist/src/theme/components/progressIndicator.d.ts +69 -0
- package/dist/src/theme/components/radio.d.ts +202 -0
- package/dist/src/theme/components/radioGroup.d.ts +14 -0
- package/dist/src/theme/components/searchBar.d.ts +34 -0
- package/dist/src/theme/components/select.d.ts +126 -0
- package/dist/src/theme/components/skeletonLoader.d.ts +105 -0
- package/dist/src/theme/components/skipNavigation.d.ts +28 -0
- package/dist/src/theme/components/slider.d.ts +78 -0
- package/dist/src/theme/components/socialmedialinks.d.ts +192 -0
- package/dist/src/theme/components/statusBadge.d.ts +37 -0
- package/dist/src/theme/components/structuredContent.d.ts +454 -0
- package/dist/src/theme/components/styledList.d.ts +51 -0
- package/dist/src/theme/components/tabs.d.ts +172 -0
- package/dist/src/theme/components/tagSet.d.ts +154 -0
- package/dist/src/theme/components/template.d.ts +98 -0
- package/dist/src/theme/components/text.d.ts +59 -0
- package/dist/src/theme/components/textInput.d.ts +360 -0
- package/dist/src/theme/components/toggle.d.ts +129 -0
- package/dist/src/theme/components/tooltip.d.ts +21 -0
- package/dist/src/theme/components/videoPlayer.d.ts +47 -0
- package/dist/src/theme/foundations/breakpoints.d.ts +23 -0
- package/dist/src/theme/foundations/colors.d.ts +3 -0
- package/dist/src/theme/foundations/global.d.ts +68 -0
- package/dist/src/theme/foundations/radii.d.ts +11 -0
- package/dist/src/theme/foundations/shadows.d.ts +4 -0
- package/dist/src/theme/foundations/spacing.d.ts +96 -0
- package/dist/src/theme/foundations/typography.d.ts +8 -0
- package/dist/src/theme/index.d.ts +20 -0
- package/dist/src/theme/internalChakraProvider.d.ts +67 -0
- package/dist/src/theme/provider.d.ts +4 -0
- package/dist/src/theme/types.d.ts +1 -0
- package/dist/src/utils/colorUtils.d.ts +5 -0
- package/dist/src/utils/interfaces.d.ts +5 -0
- package/dist/src/utils/utils.d.ts +42 -0
- package/dist/styles.css +1 -0
- package/package.json +132 -24
- package/CHANGELOG.md +0 -139
- package/dist/design-system-react-components.min.js +0 -23
- package/dist/design-system-react-components.min.js.map +0 -1
- package/lib/components/00-base/Container/Container.d.ts +0 -6
- package/lib/components/00-base/Container/Container.js +0 -19
- package/lib/components/00-base/Container/Modal.d.ts +0 -12
- package/lib/components/00-base/Container/Modal.js +0 -29
- package/lib/components/00-base/Container/Modal.stories.d.ts +0 -7
- package/lib/components/00-base/Container/Modal.stories.js +0 -20
- package/lib/components/00-base/Placeholder.d.ts +0 -10
- package/lib/components/00-base/Placeholder.js +0 -23
- package/lib/components/00-base/SectionName.d.ts +0 -4
- package/lib/components/00-base/SectionName.js +0 -16
- package/lib/components/01-atoms/Button/Button.d.ts +0 -52
- package/lib/components/01-atoms/Button/Button.js +0 -76
- package/lib/components/01-atoms/Button/Button.stories.d.ts +0 -14
- package/lib/components/01-atoms/Button/Button.stories.js +0 -33
- package/lib/components/01-atoms/Button/ButtonTypes.d.ts +0 -10
- package/lib/components/01-atoms/Button/ButtonTypes.js +0 -14
- package/lib/components/01-atoms/Forms/Checkbox.d.ts +0 -21
- package/lib/components/01-atoms/Forms/Checkbox.js +0 -27
- package/lib/components/01-atoms/Forms/Checkbox.stories.d.ts +0 -7
- package/lib/components/01-atoms/Forms/Checkbox.stories.js +0 -23
- package/lib/components/01-atoms/Forms/DateRangeForm.d.ts +0 -31
- package/lib/components/01-atoms/Forms/DateRangeForm.js +0 -27
- package/lib/components/01-atoms/Forms/DateRangeForm.stories.d.ts +0 -9
- package/lib/components/01-atoms/Forms/DateRangeForm.stories.js +0 -23
- package/lib/components/01-atoms/Forms/FormDropdown.d.ts +0 -22
- package/lib/components/01-atoms/Forms/FormDropdown.js +0 -64
- package/lib/components/01-atoms/Forms/FormDropdown.stories.d.ts +0 -8
- package/lib/components/01-atoms/Forms/FormDropdown.stories.js +0 -22
- package/lib/components/01-atoms/Forms/HelperErrorText.d.ts +0 -26
- package/lib/components/01-atoms/Forms/HelperErrorText.js +0 -29
- package/lib/components/01-atoms/Forms/HelperErrorText.stories.d.ts +0 -9
- package/lib/components/01-atoms/Forms/HelperErrorText.stories.js +0 -23
- package/lib/components/01-atoms/Forms/Input.d.ts +0 -47
- package/lib/components/01-atoms/Forms/Input.js +0 -39
- package/lib/components/01-atoms/Forms/Input.stories.d.ts +0 -10
- package/lib/components/01-atoms/Forms/Input.stories.js +0 -22
- package/lib/components/01-atoms/Forms/Label.d.ts +0 -19
- package/lib/components/01-atoms/Forms/Label.js +0 -22
- package/lib/components/01-atoms/Forms/Label.stories.d.ts +0 -7
- package/lib/components/01-atoms/Forms/Label.stories.js +0 -20
- package/lib/components/01-atoms/Forms/TextField.d.ts +0 -26
- package/lib/components/01-atoms/Forms/TextField.js +0 -36
- package/lib/components/01-atoms/Forms/TextField.stories.d.ts +0 -7
- package/lib/components/01-atoms/Forms/TextField.stories.js +0 -20
- package/lib/components/01-atoms/Images/Icons/Icon.d.ts +0 -14
- package/lib/components/01-atoms/Images/Icons/Icon.js +0 -38
- package/lib/components/01-atoms/Images/Image/Image.d.ts +0 -8
- package/lib/components/01-atoms/Images/Image/Image.js +0 -32
- package/lib/components/01-atoms/Images/Image/Image.stories.d.ts +0 -8
- package/lib/components/01-atoms/Images/Image/Image.stories.js +0 -24
- package/lib/components/01-atoms/Links/BasicLink.d.ts +0 -15
- package/lib/components/01-atoms/Links/BasicLink.js +0 -50
- package/lib/components/01-atoms/Links/BasicLink.stories.d.ts +0 -8
- package/lib/components/01-atoms/Links/BasicLink.stories.js +0 -21
- package/lib/components/01-atoms/Links/IconLink.d.ts +0 -13
- package/lib/components/01-atoms/Links/IconLink.js +0 -44
- package/lib/components/01-atoms/Links/IconLink.stories.d.ts +0 -10
- package/lib/components/01-atoms/Links/IconLink.stories.js +0 -24
- package/lib/components/01-atoms/Links/Link.d.ts +0 -13
- package/lib/components/01-atoms/Links/Link.js +0 -51
- package/lib/components/01-atoms/Links/UnderlineLink.d.ts +0 -11
- package/lib/components/01-atoms/Links/UnderlineLink.js +0 -29
- package/lib/components/01-atoms/Links/UnderlineLink.stories.d.ts +0 -8
- package/lib/components/01-atoms/Links/UnderlineLink.stories.js +0 -21
- package/lib/components/01-atoms/Text/Headings/Heading.d.ts +0 -16
- package/lib/components/01-atoms/Text/Headings/Heading.js +0 -40
- package/lib/components/01-atoms/Text/Headings/Heading.stories.d.ts +0 -12
- package/lib/components/01-atoms/Text/Headings/Heading.stories.js +0 -35
- package/lib/components/01-atoms/Text/Headings/RNSectionTitle.d.ts +0 -2
- package/lib/components/01-atoms/Text/Headings/RNSectionTitle.js +0 -18
- package/lib/components/01-atoms/Text/Headings/RNSectionTitle.stories.d.ts +0 -7
- package/lib/components/01-atoms/Text/Headings/RNSectionTitle.stories.js +0 -24
- package/lib/components/01-atoms/Text/Text/BodyText.d.ts +0 -12
- package/lib/components/01-atoms/Text/Text/BodyText.js +0 -73
- package/lib/components/01-atoms/Text/Text/BodyText.stories.d.ts +0 -14
- package/lib/components/01-atoms/Text/Text/BodyText.stories.js +0 -54
- package/lib/components/02-molecules/Cards/EditionCard.d.ts +0 -31
- package/lib/components/02-molecules/Cards/EditionCard.js +0 -51
- package/lib/components/02-molecules/Cards/EditionCard.stories.d.ts +0 -13
- package/lib/components/02-molecules/Cards/EditionCard.stories.js +0 -26
- package/lib/components/02-molecules/Cards/SearchResultItem.d.ts +0 -17
- package/lib/components/02-molecules/Cards/SearchResultItem.js +0 -40
- package/lib/components/02-molecules/Cards/SearchResultItem.stories.d.ts +0 -8
- package/lib/components/02-molecules/Cards/SearchResultItem.stories.js +0 -31
- package/lib/components/02-molecules/Dropdown/Dropdown.d.ts +0 -21
- package/lib/components/02-molecules/Dropdown/Dropdown.js +0 -55
- package/lib/components/02-molecules/Dropdown/Dropdown.stories.d.ts +0 -14
- package/lib/components/02-molecules/Dropdown/Dropdown.stories.js +0 -33
- package/lib/components/02-molecules/Headings/SectionTitle.d.ts +0 -17
- package/lib/components/02-molecules/Headings/SectionTitle.js +0 -42
- package/lib/components/02-molecules/Headings/SectionTitle.stories.d.ts +0 -8
- package/lib/components/02-molecules/Headings/SectionTitle.stories.js +0 -20
- package/lib/components/02-molecules/Menus/Breadcrumbs/Breadcrumbs.d.ts +0 -14
- package/lib/components/02-molecules/Menus/Breadcrumbs/Breadcrumbs.js +0 -51
- package/lib/components/02-molecules/Menus/Breadcrumbs/Breadcrumbs.stories.d.ts +0 -8
- package/lib/components/02-molecules/Menus/Breadcrumbs/Breadcrumbs.stories.js +0 -30
- package/lib/components/02-molecules/Menus/Pagination/Pagination.d.ts +0 -11
- package/lib/components/02-molecules/Menus/Pagination/Pagination.js +0 -57
- package/lib/components/02-molecules/Menus/Pagination/Pagination.stories.d.ts +0 -7
- package/lib/components/02-molecules/Menus/Pagination/Pagination.stories.js +0 -20
- package/lib/components/02-molecules/SearchBar/SearchBar.d.ts +0 -26
- package/lib/components/02-molecules/SearchBar/SearchBar.js +0 -69
- package/lib/components/02-molecules/SearchBar/SearchBar.stories.d.ts +0 -11
- package/lib/components/02-molecules/SearchBar/SearchBar.stories.js +0 -24
- package/lib/components/03-organisms/Accordion/Accordion.d.ts +0 -19
- package/lib/components/03-organisms/Accordion/Accordion.js +0 -41
- package/lib/components/03-organisms/Accordion/Accordion.stories.d.ts +0 -7
- package/lib/components/03-organisms/Accordion/Accordion.stories.js +0 -30
- package/lib/components/03-organisms/Headers/HeaderImgRight.d.ts +0 -12
- package/lib/components/03-organisms/Headers/HeaderImgRight.js +0 -32
- package/lib/components/03-organisms/Headers/HeaderImgRight.stories.d.ts +0 -7
- package/lib/components/03-organisms/Headers/HeaderImgRight.stories.js +0 -19
- package/lib/components/03-organisms/Headers/RNHeaderWithSearch.d.ts +0 -19
- package/lib/components/03-organisms/Headers/RNHeaderWithSearch.js +0 -27
- package/lib/components/03-organisms/Headers/RNHeaderWithSearch.stories.d.ts +0 -7
- package/lib/components/03-organisms/Headers/RNHeaderWithSearch.stories.js +0 -26
- package/lib/components/03-organisms/Hero/Hero.d.ts +0 -31
- package/lib/components/03-organisms/Hero/Hero.js +0 -62
- package/lib/components/03-organisms/Hero/Hero.stories.d.ts +0 -11
- package/lib/components/03-organisms/Hero/Hero.stories.js +0 -35
- package/lib/components/03-organisms/Hero/HeroTypes.d.ts +0 -6
- package/lib/components/03-organisms/Hero/HeroTypes.js +0 -9
- package/lib/components/03-organisms/List/UnorderedList.d.ts +0 -18
- package/lib/components/03-organisms/List/UnorderedList.js +0 -28
- package/lib/components/03-organisms/List/UnorderedList.stories.d.ts +0 -11
- package/lib/components/03-organisms/List/UnorderedList.stories.js +0 -73
- package/lib/components/03-organisms/SearchPromo/SearchPromo.d.ts +0 -22
- package/lib/components/03-organisms/SearchPromo/SearchPromo.js +0 -30
- package/lib/components/03-organisms/SearchPromo/SearchPromo.stories.d.ts +0 -8
- package/lib/components/03-organisms/SearchPromo/SearchPromo.stories.js +0 -28
- package/lib/helpers/hoc/WithOneChild.d.ts +0 -8
- package/lib/helpers/hoc/WithOneChild.js +0 -63
- package/lib/index.d.ts +0 -24
- package/lib/index.js +0 -51
- package/lib/utils/bem.d.ts +0 -1
- package/lib/utils/bem.js +0 -35
- package/tsd.d.ts +0 -4
- package/webpack.prod.js +0 -38
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const SkipNavigation: {
|
|
2
|
+
baseStyle: {
|
|
3
|
+
ul: {
|
|
4
|
+
margin: string;
|
|
5
|
+
};
|
|
6
|
+
a: {
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
height: string;
|
|
9
|
+
left: string;
|
|
10
|
+
overflow: string;
|
|
11
|
+
position: string;
|
|
12
|
+
top: string;
|
|
13
|
+
width: string;
|
|
14
|
+
_focus: {
|
|
15
|
+
height: string;
|
|
16
|
+
left: string;
|
|
17
|
+
paddingX: string;
|
|
18
|
+
paddingY: string;
|
|
19
|
+
top: string;
|
|
20
|
+
width: string;
|
|
21
|
+
};
|
|
22
|
+
_dark: {
|
|
23
|
+
backgroundColor: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export default SkipNavigation;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
interface CustomSliderBaseStyle {
|
|
2
|
+
isDarkMode: boolean;
|
|
3
|
+
isDisabled: boolean;
|
|
4
|
+
isInvalid: boolean;
|
|
5
|
+
showBoxes: boolean;
|
|
6
|
+
showValues: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const CustomSlider: {
|
|
9
|
+
parts: string[];
|
|
10
|
+
baseStyle: ({ isDarkMode, isDisabled, isInvalid, showBoxes, showValues, }: CustomSliderBaseStyle) => {
|
|
11
|
+
container: {
|
|
12
|
+
display: string;
|
|
13
|
+
alignItems: string;
|
|
14
|
+
};
|
|
15
|
+
leftValue: {
|
|
16
|
+
color: string;
|
|
17
|
+
_dark: {
|
|
18
|
+
color: string;
|
|
19
|
+
};
|
|
20
|
+
marginTop: string;
|
|
21
|
+
marginBottom: string;
|
|
22
|
+
marginEnd: string;
|
|
23
|
+
marginStart: string;
|
|
24
|
+
};
|
|
25
|
+
rightValue: {
|
|
26
|
+
marginStart: string;
|
|
27
|
+
marginEnd: string;
|
|
28
|
+
color: string;
|
|
29
|
+
_dark: {
|
|
30
|
+
color: string;
|
|
31
|
+
};
|
|
32
|
+
marginTop: string;
|
|
33
|
+
marginBottom: string;
|
|
34
|
+
};
|
|
35
|
+
textInput: {
|
|
36
|
+
minWidth: string;
|
|
37
|
+
};
|
|
38
|
+
sliderContainer: {
|
|
39
|
+
marginStart: string;
|
|
40
|
+
marginEnd: string;
|
|
41
|
+
};
|
|
42
|
+
filledTrack: {
|
|
43
|
+
bgColor: string;
|
|
44
|
+
};
|
|
45
|
+
track: {
|
|
46
|
+
bgColor: string;
|
|
47
|
+
_disabled: {
|
|
48
|
+
bgColor: string;
|
|
49
|
+
};
|
|
50
|
+
_dark: {
|
|
51
|
+
bgColor: string;
|
|
52
|
+
_disabled: {
|
|
53
|
+
bgColor: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
thumb: {
|
|
58
|
+
border: string;
|
|
59
|
+
borderColor: string;
|
|
60
|
+
boxShadow: string;
|
|
61
|
+
_active: {
|
|
62
|
+
transform: string;
|
|
63
|
+
};
|
|
64
|
+
_disabled: {
|
|
65
|
+
bgColor: string;
|
|
66
|
+
borderColor: string;
|
|
67
|
+
};
|
|
68
|
+
_dark: {
|
|
69
|
+
bgColor: string;
|
|
70
|
+
_disabled: {
|
|
71
|
+
bgColor: string;
|
|
72
|
+
borderColor: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
export default CustomSlider;
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
import { StyleFunctionProps } from "@chakra-ui/theme-tools";
|
|
2
|
+
declare const SocialMediaLinks: {
|
|
3
|
+
baseStyle: {
|
|
4
|
+
display: string;
|
|
5
|
+
alignItems: string;
|
|
6
|
+
gap: string;
|
|
7
|
+
width: {
|
|
8
|
+
base: string;
|
|
9
|
+
md: string;
|
|
10
|
+
};
|
|
11
|
+
marginBottom: string;
|
|
12
|
+
li: {
|
|
13
|
+
marginInlineEnd: string;
|
|
14
|
+
marginTop: string;
|
|
15
|
+
width: {
|
|
16
|
+
base: string;
|
|
17
|
+
md: string;
|
|
18
|
+
};
|
|
19
|
+
_notFirst: {
|
|
20
|
+
marginTop: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
a: {
|
|
24
|
+
display: string;
|
|
25
|
+
justifyContent: string;
|
|
26
|
+
alignContent: string;
|
|
27
|
+
flexWrap: string;
|
|
28
|
+
minWidth: {
|
|
29
|
+
base: string;
|
|
30
|
+
md: string;
|
|
31
|
+
};
|
|
32
|
+
minHeight: {
|
|
33
|
+
base: string;
|
|
34
|
+
md: string;
|
|
35
|
+
};
|
|
36
|
+
fontStyle: string;
|
|
37
|
+
fontSize: string;
|
|
38
|
+
textDecoration: string;
|
|
39
|
+
color: string;
|
|
40
|
+
_hover: {
|
|
41
|
+
color: string;
|
|
42
|
+
};
|
|
43
|
+
_visited: {
|
|
44
|
+
color: string;
|
|
45
|
+
};
|
|
46
|
+
_dark: {
|
|
47
|
+
color: string;
|
|
48
|
+
_hover: {
|
|
49
|
+
color: string;
|
|
50
|
+
};
|
|
51
|
+
_visited: {
|
|
52
|
+
color: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
div: {
|
|
57
|
+
display: string;
|
|
58
|
+
alignItems: string;
|
|
59
|
+
gap: string;
|
|
60
|
+
alignSelf: string;
|
|
61
|
+
justifyContent: string;
|
|
62
|
+
width: string;
|
|
63
|
+
height: string;
|
|
64
|
+
};
|
|
65
|
+
svg: {
|
|
66
|
+
fill: string;
|
|
67
|
+
_dark: {
|
|
68
|
+
fill: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
variants: {
|
|
73
|
+
straight(props: StyleFunctionProps): {
|
|
74
|
+
flexDirection: {
|
|
75
|
+
base: string;
|
|
76
|
+
md: any;
|
|
77
|
+
};
|
|
78
|
+
gap: string;
|
|
79
|
+
a: {
|
|
80
|
+
color: string;
|
|
81
|
+
_hover: {
|
|
82
|
+
color: string;
|
|
83
|
+
};
|
|
84
|
+
_visited: {
|
|
85
|
+
color: string;
|
|
86
|
+
};
|
|
87
|
+
_dark: {
|
|
88
|
+
borderColor: string;
|
|
89
|
+
color: string;
|
|
90
|
+
_hover: {
|
|
91
|
+
color: string;
|
|
92
|
+
};
|
|
93
|
+
_visited: {
|
|
94
|
+
color: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
div: {
|
|
99
|
+
padding: string;
|
|
100
|
+
borderRadius: string;
|
|
101
|
+
borderWidth: string;
|
|
102
|
+
borderStyle: string;
|
|
103
|
+
borderColor: string;
|
|
104
|
+
_dark: {
|
|
105
|
+
borderColor: string;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
svg: {
|
|
109
|
+
fill: string;
|
|
110
|
+
_dark: {
|
|
111
|
+
fill: string;
|
|
112
|
+
borderColor: string;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
circular(props: StyleFunctionProps): {
|
|
117
|
+
flexDirection: {
|
|
118
|
+
base: string;
|
|
119
|
+
md: any;
|
|
120
|
+
};
|
|
121
|
+
gap: string;
|
|
122
|
+
a: {
|
|
123
|
+
color: string;
|
|
124
|
+
_hover: {
|
|
125
|
+
color: string;
|
|
126
|
+
};
|
|
127
|
+
_visited: {
|
|
128
|
+
color: string;
|
|
129
|
+
};
|
|
130
|
+
_dark: {
|
|
131
|
+
color: string;
|
|
132
|
+
_hover: {
|
|
133
|
+
color: string;
|
|
134
|
+
};
|
|
135
|
+
_visited: {
|
|
136
|
+
color: string;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
div: {
|
|
141
|
+
padding: string;
|
|
142
|
+
borderRadius: string;
|
|
143
|
+
borderColor: string;
|
|
144
|
+
borderWidth: string;
|
|
145
|
+
borderStyle: string;
|
|
146
|
+
_dark: {
|
|
147
|
+
borderColor: string;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
svg: {
|
|
151
|
+
fill: string;
|
|
152
|
+
_dark: {
|
|
153
|
+
fill: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
none(props: StyleFunctionProps): {
|
|
158
|
+
flexDirection: {
|
|
159
|
+
base: string;
|
|
160
|
+
md: any;
|
|
161
|
+
};
|
|
162
|
+
a: {
|
|
163
|
+
color: string;
|
|
164
|
+
_hover: {
|
|
165
|
+
color: string;
|
|
166
|
+
};
|
|
167
|
+
_visited: {
|
|
168
|
+
color: string;
|
|
169
|
+
};
|
|
170
|
+
_dark: {
|
|
171
|
+
color: string;
|
|
172
|
+
_hover: {
|
|
173
|
+
color: string;
|
|
174
|
+
};
|
|
175
|
+
_visited: {
|
|
176
|
+
color: string;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
svg: {
|
|
181
|
+
fill: string;
|
|
182
|
+
_dark: {
|
|
183
|
+
fill: string;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
defaultProps: {
|
|
189
|
+
variant: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
export default SocialMediaLinks;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const StatusBadge: {
|
|
2
|
+
baseStyle: {
|
|
3
|
+
borderRadius: string;
|
|
4
|
+
color: string;
|
|
5
|
+
display: string;
|
|
6
|
+
fontSize: string;
|
|
7
|
+
fontStyle: string;
|
|
8
|
+
py: string;
|
|
9
|
+
px: string;
|
|
10
|
+
textAlign: string;
|
|
11
|
+
width: string;
|
|
12
|
+
_dark: {
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
borderLeft: string;
|
|
15
|
+
borderColor: string;
|
|
16
|
+
color: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
variants: {
|
|
20
|
+
low: {
|
|
21
|
+
bg: string;
|
|
22
|
+
};
|
|
23
|
+
medium: {
|
|
24
|
+
bg: string;
|
|
25
|
+
_dark: {
|
|
26
|
+
borderColor: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
high: {
|
|
30
|
+
bg: string;
|
|
31
|
+
_dark: {
|
|
32
|
+
borderColor: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export default StatusBadge;
|