trepur_components 2.3.6 → 2.3.8
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/.eslintrc.cjs +33 -4
- package/.prettierignore +10 -0
- package/README.md +1 -1
- package/archive/theme.ts +1 -1
- package/lib/_virtual/react.js +4 -0
- package/lib/components/Accordion/Accordion.stories.d.ts +3 -2
- package/lib/components/Accordion/index.d.ts +2 -4
- package/lib/components/Accordion/index.js +4 -13
- package/lib/components/AlertBar/AlertBar.stories.d.ts +3 -2
- package/lib/components/AlertBar/index.d.ts +1 -1
- package/lib/components/Avatar/index.d.ts +1 -2
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.d.ts +62 -0
- package/lib/components/Breadcrumbs/index.d.ts +9 -0
- package/lib/components/Breadcrumbs/index.js +12 -0
- package/lib/components/BreadcrumbsBordered/BreadcrumbsBordered.stories.d.ts +67 -0
- package/lib/components/BreadcrumbsBordered/index.d.ts +6 -0
- package/lib/components/BreadcrumbsBordered/index.js +28 -0
- package/lib/components/BreadcrumbsItem/BreadcrumbsItem.stories.d.ts +74 -0
- package/lib/components/BreadcrumbsItem/index.d.ts +10 -0
- package/lib/components/BreadcrumbsItem/index.js +117 -0
- package/lib/components/Button/Button.stories.d.ts +192 -0
- package/lib/components/Button/index.d.ts +19 -0
- package/lib/components/Button/index.js +66 -0
- package/lib/components/Calendar/Calendar.stories.d.ts +136 -0
- package/lib/components/Calendar/index.d.ts +15 -0
- package/lib/components/Calendar/index.js +46 -0
- package/lib/components/Calendar/style.css.js +1 -0
- package/lib/components/Card/Card.stories.d.ts +108 -0
- package/lib/components/Card/index.d.ts +17 -0
- package/lib/components/Card/index.js +51 -0
- package/lib/components/CardWithTopImage/CardWithTopImage.stories.d.ts +83 -0
- package/lib/components/CardWithTopImage/index.d.ts +9 -0
- package/lib/components/CardWithTopImage/index.js +28 -0
- package/lib/components/Carousel/Carousel.stories.d.ts +562 -0
- package/lib/components/Carousel/index.d.ts +77 -0
- package/lib/components/Carousel/index.js +248 -0
- package/lib/components/CarouselThumbnail/CarouselThumbnail.stories.d.ts +546 -0
- package/lib/components/CarouselThumbnail/index.d.ts +50 -0
- package/lib/components/CarouselThumbnail/index.js +205 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +52 -0
- package/lib/components/Checkbox/index.d.ts +7 -0
- package/lib/components/Checkbox/index.js +31 -0
- package/lib/components/Collapsible/Collapsible.stories.d.ts +82 -0
- package/lib/components/Collapsible/index.d.ts +12 -0
- package/lib/components/Collapsible/index.js +88 -0
- package/lib/components/Column/Column.stories.d.ts +116 -0
- package/lib/components/Column/index.d.ts +10 -0
- package/lib/components/Column/index.js +8 -0
- package/lib/components/ComponentWrapper/ComponentWrapper.stories.d.ts +77 -0
- package/lib/components/ComponentWrapper/index.d.ts +14 -0
- package/lib/components/ComponentWrapper/index.js +27 -0
- package/lib/components/Container/Container.stories.d.ts +75 -0
- package/lib/components/Container/index.d.ts +7 -0
- package/lib/components/Container/index.js +12 -0
- package/lib/components/Counter/Counter.stories.d.ts +45 -0
- package/lib/components/Counter/index.d.ts +6 -0
- package/lib/components/Counter/index.js +31 -0
- package/lib/components/DetailUpdater/DetailUpdater.stories.d.ts +104 -0
- package/lib/components/DetailUpdater/index.d.ts +18 -0
- package/lib/components/DetailUpdater/index.js +63 -0
- package/lib/components/Dialog/Dialog.stories.d.ts +145 -0
- package/lib/components/Dialog/index.d.ts +12 -0
- package/lib/components/Dialog/index.js +78 -0
- package/lib/components/DropdownMenu/DropdownMenu.stories.d.ts +76 -0
- package/lib/components/DropdownMenu/index.d.ts +14 -0
- package/lib/components/DropdownMenu/index.js +27 -0
- package/lib/components/DynamicTextSection/DynamicTextSection.stories.d.ts +100 -0
- package/lib/components/DynamicTextSection/index.d.ts +11 -0
- package/lib/components/DynamicTextSection/index.js +18 -0
- package/lib/components/FileUploader/FilePreview.d.ts +8 -0
- package/lib/components/FileUploader/FileUploader.stories.d.ts +50 -0
- package/lib/components/FileUploader/index.d.ts +9 -0
- package/lib/components/FilterItem/FilterItem.stories.d.ts +57 -0
- package/lib/components/FilterItem/index.d.ts +8 -0
- package/lib/components/FilterItem/index.js +60 -0
- package/lib/components/Footer/Footer.stories.d.ts +105 -0
- package/lib/components/Footer/index.d.ts +10 -0
- package/lib/components/Footer/index.js +36 -0
- package/lib/components/FooterNav/FooterNav.stories.d.ts +135 -0
- package/lib/components/FooterNav/index.d.ts +13 -0
- package/lib/components/FooterNav/index.js +28 -0
- package/lib/components/FooterNavItem/FooterNavItem.stories.d.ts +93 -0
- package/lib/components/FooterNavItem/index.d.ts +16 -0
- package/lib/components/FooterNavItem/index.js +27 -0
- package/lib/components/Form/Form.stories.d.ts +117 -0
- package/lib/components/Form/index.d.ts +13 -0
- package/lib/components/Form/index.js +28 -0
- package/lib/components/FyreCard/FyreCard.stories.d.ts +58 -0
- package/lib/components/FyreCard/index.d.ts +12 -0
- package/lib/components/FyreCard/index.js +27 -0
- package/lib/components/Greeting/Greeting.stories.d.ts +83 -0
- package/lib/components/Greeting/index.d.ts +8 -0
- package/lib/components/Greeting/index.js +13 -0
- package/lib/components/HamburgerIcon/HamburgerIcon.stories.d.ts +64 -0
- package/lib/components/HamburgerIcon/index.d.ts +7 -0
- package/lib/components/HamburgerIcon/index.js +93 -0
- package/lib/components/HorizontalLine/HorizontalLine.stories.d.ts +96 -0
- package/lib/components/HorizontalLine/index.d.ts +11 -0
- package/lib/components/HorizontalLine/index.js +24 -0
- package/lib/components/Icon/Icon.stories.d.ts +47 -0
- package/lib/components/Icon/index.d.ts +10 -0
- package/lib/components/Icon/index.js +15 -0
- package/lib/components/IconCard/IconCard.stories.d.ts +51 -0
- package/lib/components/IconCard/index.d.ts +13 -0
- package/lib/components/IconCard/index.js +27 -0
- package/lib/components/Image/Image.stories.d.ts +158 -0
- package/lib/components/Image/index.d.ts +15 -0
- package/lib/components/Image/index.js +99 -0
- package/lib/components/ImageInfo/ImageInfo.stories.d.ts +69 -0
- package/lib/components/ImageInfo/index.d.ts +14 -0
- package/lib/components/ImageLink/ImageLink.stories.d.ts +63 -0
- package/lib/components/ImageLink/index.d.ts +14 -0
- package/lib/components/ImageLink/index.js +39 -0
- package/lib/components/ImageLinkList/ImageLinkList.stories.d.ts +48 -0
- package/lib/components/ImageLinkList/index.d.ts +8 -0
- package/lib/components/ImageLinkList/index.js +18 -0
- package/lib/components/InformationIcon/InformationIcon.stories.d.ts +54 -0
- package/lib/components/InformationIcon/index.d.ts +12 -0
- package/lib/components/InformationIcon/index.js +65 -0
- package/lib/components/InformationIconBlock/InformationIconBlock.stories.d.ts +55 -0
- package/lib/components/InformationIconBlock/index.d.ts +12 -0
- package/lib/components/Input/Input.stories.d.ts +114 -0
- package/lib/components/Input/index.d.ts +29 -0
- package/lib/components/Input/index.js +89 -0
- package/lib/components/Jumbotron/Jumbotron.stories.d.ts +48 -0
- package/lib/components/Jumbotron/index.d.ts +8 -0
- package/lib/components/Jumbotron/index.js +9 -0
- package/lib/components/MenuButton/MenuButton.stories.d.ts +76 -0
- package/lib/components/MenuButton/index.d.ts +14 -0
- package/lib/components/MenuButton/index.js +56 -0
- package/lib/components/Modal/Modal.stories.d.ts +67 -0
- package/lib/components/Modal/index.d.ts +10 -0
- package/lib/components/Modal/index.js +45 -0
- package/lib/components/NavItem/NavItem.stories.d.ts +154 -0
- package/lib/components/NavItem/index.d.ts +16 -0
- package/lib/components/NavItem/index.js +25 -0
- package/lib/components/NavOld/NavOld.stories.d.ts +290 -0
- package/lib/components/NavOld/StickyNav.d.ts +22 -0
- package/lib/components/NavOld/StickyNav.js +135 -0
- package/lib/components/NavOld/index.d.ts +26 -0
- package/lib/components/NavOld/index.js +187 -0
- package/lib/components/NavTwo/Dropdown.d.ts +7 -0
- package/lib/components/NavTwo/Dropdown.js +21 -0
- package/lib/components/NavTwo/Nav.stories.d.ts +62 -0
- package/lib/components/NavTwo/Sidebar.d.ts +7 -0
- package/lib/components/NavTwo/Sidebar.js +21 -0
- package/lib/components/NavTwo/StickyNav.d.ts +7 -0
- package/lib/components/NavTwo/StickyNav.js +20 -0
- package/lib/components/NavTwo/index.d.ts +13 -0
- package/lib/components/NavTwo/index.js +28 -0
- package/lib/components/NewsCard/NewsCard.stories.d.ts +102 -0
- package/lib/components/NewsCard/index.d.ts +13 -0
- package/lib/components/NewsCard/index.js +26 -0
- package/lib/components/Pill/Pill.stories.d.ts +84 -0
- package/lib/components/Pill/index.d.ts +8 -0
- package/lib/components/Pill/index.js +31 -0
- package/lib/components/ProductCard/ProductCard.stories.d.ts +86 -0
- package/lib/components/ProductCard/index.d.ts +18 -0
- package/lib/components/ProductCard/index.js +69 -0
- package/lib/components/ProductCardV2/ProductCardV2.stories.d.ts +75 -0
- package/lib/components/ProductCardV2/index.d.ts +21 -0
- package/lib/components/ProductCardV2/index.js +67 -0
- package/lib/components/Proficiencies/Proficiencies.stories.d.ts +51 -0
- package/lib/components/Proficiencies/index.d.ts +12 -0
- package/lib/components/Profile/Profile.stories.d.ts +80 -0
- package/lib/components/Profile/index.d.ts +17 -0
- package/lib/components/Profile/index.js +78 -0
- package/lib/components/Row/Row.stories.d.ts +62 -0
- package/lib/components/Row/index.d.ts +6 -0
- package/lib/components/Row/index.js +9 -0
- package/lib/components/Search/Search.stories.d.ts +86 -0
- package/lib/components/Search/index.d.ts +12 -0
- package/lib/components/Search/index.js +42 -0
- package/lib/components/Select/Select.stories.d.ts +56 -0
- package/lib/components/Select/index.d.ts +11 -0
- package/lib/components/Select/index.js +68 -0
- package/lib/components/Showcase/Showcase.stories.d.ts +55 -0
- package/lib/components/Showcase/index.d.ts +15 -0
- package/lib/components/SideNav/SideNav.stories.d.ts +80 -0
- package/lib/components/SideNav/index.d.ts +12 -0
- package/lib/components/SocialBlock/SocialBlock.stories.d.ts +101 -0
- package/lib/components/SocialBlock/index.d.ts +14 -0
- package/lib/components/SocialBlock/index.js +37 -0
- package/lib/components/SocialButton/SocialButton.stories.d.ts +130 -0
- package/lib/components/SocialButton/index.d.ts +12 -0
- package/lib/components/SocialButton/index.js +37 -0
- package/lib/components/StarRating/StarRating.stories.d.ts +49 -0
- package/lib/components/StarRating/index.d.ts +9 -0
- package/lib/components/StarRating/index.js +47 -0
- package/lib/components/Testimonial/Testimonial.stories.d.ts +172 -0
- package/lib/components/Testimonial/index.d.ts +16 -0
- package/lib/components/Testimonial/index.js +42 -0
- package/lib/components/TextAndTitle/TextAndTitle.stories.d.ts +97 -0
- package/lib/components/TextAndTitle/index.d.ts +25 -0
- package/lib/components/TextAndTitle/index.js +70 -0
- package/lib/components/TextArea/TextArea.stories.d.ts +85 -0
- package/lib/components/TextArea/index.d.ts +26 -0
- package/lib/components/TextArea/index.js +86 -0
- package/lib/components/Timeline/Timeline.stories.d.ts +81 -0
- package/lib/components/Timeline/index.d.ts +17 -0
- package/lib/components/Timeline/index.js +172 -0
- package/lib/components/TimelineV2/TimelineV2.stories.d.ts +87 -0
- package/lib/components/TimelineV2/index.d.ts +20 -0
- package/lib/components/Tubestops/Tubestops.stories.d.ts +54 -0
- package/lib/components/Tubestops/index.d.ts +8 -0
- package/lib/components/Tubestops/index.js +44 -0
- package/lib/components/UserIcon/UserIcon.stories.d.ts +81 -0
- package/lib/components/UserIcon/index.d.ts +10 -0
- package/lib/components/UserIcon/index.js +34 -0
- package/lib/components/Video/Video.stories.d.ts +49 -0
- package/lib/components/Video/index.d.ts +15 -0
- package/lib/components/Video/index.js +34 -0
- package/lib/components/index.d.ts +57 -1
- package/lib/components/typography/Fonts/Fonts.d.ts +2 -0
- package/lib/components/typography/Fonts/Fonts.stories.d.ts +10 -0
- package/lib/index.js +114 -2
- package/lib/node_modules/keen-slider/keen-slider.min.css.js +1 -0
- package/lib/node_modules/keen-slider/react.js +591 -0
- package/lib/style.css +1 -0
- package/lib/styles/global.css +1 -0
- package/lib/styles/themes/local.css +39 -39
- package/lib/styles/themes/palette.css +131 -0
- package/lib/tailwind/boxShadow.ts +9 -0
- package/lib/tailwind/colors.ts +410 -0
- package/lib/tailwind/container.ts +11 -0
- package/lib/tailwind/preset.ts +88 -0
- package/lib/tailwind/spacing.ts +14 -0
- package/lib/utils/matchMedia.js +9 -0
- package/package.json +7 -4
- package/src/components/Accordion/Accordion.stories.tsx +8 -8
- package/src/components/Accordion/index.tsx +8 -15
- package/src/components/AlertBar/AlertBar.stories.tsx +9 -9
- package/src/components/AlertBar/index.tsx +11 -11
- package/src/components/Avatar/Avatar.stories.tsx +3 -3
- package/src/components/Avatar/index.tsx +35 -38
- package/{archive → src/components}/Breadcrumbs/Breadcrumbs.stories.tsx +8 -8
- package/{archive → src/components}/Breadcrumbs/index.tsx +11 -13
- package/{archive → src/components}/BreadcrumbsBordered/BreadcrumbsBordered.stories.tsx +8 -8
- package/{archive → src/components}/BreadcrumbsBordered/index.tsx +8 -11
- package/{archive → src/components}/BreadcrumbsItem/BreadcrumbsItem.stories.tsx +8 -8
- package/{archive → src/components}/BreadcrumbsItem/index.tsx +20 -22
- package/{archive → src/components}/Button/Button.stories.tsx +18 -18
- package/{archive → src/components}/Button/index.tsx +27 -34
- package/{archive → src/components}/Calendar/Calendar.stories.tsx +9 -9
- package/{archive → src/components}/Calendar/index.tsx +6 -10
- package/{archive → src/components}/Card/Card.stories.tsx +7 -7
- package/{archive → src/components}/Card/index.tsx +20 -26
- package/{archive → src/components}/CardWithTopImage/CardWithTopImage.stories.tsx +8 -8
- package/{archive → src/components}/CardWithTopImage/index.tsx +9 -13
- package/{archive → src/components}/Carousel/Carousel.stories.tsx +37 -37
- package/{archive → src/components}/Carousel/index.tsx +35 -41
- package/{archive → src/components}/CarouselThumbnail/CarouselThumbnail.stories.tsx +36 -36
- package/{archive → src/components}/CarouselThumbnail/index.tsx +24 -33
- package/{archive → src/components}/Checkbox/Checkbox.stories.tsx +9 -9
- package/{archive → src/components}/Checkbox/index.tsx +8 -18
- package/{archive → src/components}/Collapsible/Collapsible.stories.tsx +10 -10
- package/{archive → src/components}/Collapsible/index.tsx +42 -30
- package/{archive → src/components}/Column/Column.stories.tsx +12 -12
- package/src/components/Column/index.tsx +18 -0
- package/{archive → src/components}/ComponentWrapper/ComponentWrapper.stories.tsx +7 -7
- package/{archive → src/components}/ComponentWrapper/index.tsx +13 -20
- package/{archive → src/components}/Container/Container.stories.tsx +7 -7
- package/{archive → src/components}/Container/index.tsx +6 -9
- package/{archive → src/components}/Counter/Counter.stories.tsx +4 -4
- package/src/components/Counter/index.tsx +42 -0
- package/{archive → src/components}/DetailUpdater/DetailUpdater.stories.tsx +17 -18
- package/{archive → src/components}/DetailUpdater/index.tsx +21 -25
- package/{archive → src/components}/Dialog/Dialog.stories.tsx +14 -15
- package/{archive → src/components}/Dialog/index.tsx +26 -24
- package/{archive → src/components}/DropdownMenu/DropdownMenu.stories.tsx +8 -8
- package/{archive → src/components}/DropdownMenu/index.tsx +6 -12
- package/{archive → src/components}/DynamicTextSection/DynamicTextSection.stories.tsx +13 -11
- package/{archive → src/components}/DynamicTextSection/index.tsx +5 -9
- package/{archive → src/components}/FileUploader/FilePreview.tsx +13 -16
- package/{archive → src/components}/FileUploader/FileUploader.stories.tsx +6 -8
- package/{archive → src/components}/FileUploader/index.tsx +22 -25
- package/{archive → src/components}/FilterItem/FilterItem.stories.tsx +7 -7
- package/{archive → src/components}/FilterItem/index.tsx +23 -27
- package/{archive → src/components}/Footer/Footer.stories.tsx +7 -7
- package/{archive → src/components}/Footer/index.tsx +14 -16
- package/{archive → src/components}/FooterNav/FooterNav.stories.tsx +22 -25
- package/{archive → src/components}/FooterNav/index.tsx +8 -16
- package/{archive → src/components}/FooterNavItem/FooterNavItem.stories.tsx +8 -8
- package/{archive → src/components}/FooterNavItem/index.tsx +10 -32
- package/{archive → src/components}/Form/Form.stories.tsx +11 -11
- package/{archive → src/components}/Form/index.tsx +6 -21
- package/{archive → src/components}/FyreCard/FyreCard.stories.tsx +7 -7
- package/{archive → src/components}/FyreCard/index.tsx +10 -18
- package/{archive → src/components}/Greeting/Greeting.stories.tsx +9 -9
- package/{archive → src/components}/Greeting/index.tsx +4 -6
- package/{archive → src/components}/HamburgerIcon/HamburgerIcon.stories.tsx +6 -6
- package/{archive → src/components}/HamburgerIcon/index.tsx +26 -32
- package/{archive → src/components}/HorizontalLine/HorizontalLine.stories.tsx +5 -5
- package/{archive → src/components}/HorizontalLine/index.tsx +8 -16
- package/src/components/Icon/Icon.stories.tsx +22 -0
- package/src/components/Icon/index.tsx +25 -0
- package/{archive → src/components}/IconCard/IconCard.stories.tsx +7 -27
- package/{archive → src/components}/IconCard/index.tsx +13 -16
- package/{archive → src/components}/Image/Image.stories.tsx +15 -15
- package/{archive → src/components}/Image/index.tsx +43 -48
- package/{archive → src/components}/ImageInfo/ImageInfo.stories.tsx +8 -9
- package/{archive → src/components}/ImageInfo/index.tsx +18 -29
- package/{archive → src/components}/ImageLink/ImageLink.stories.tsx +8 -9
- package/src/components/ImageLink/index.tsx +58 -0
- package/{archive → src/components}/ImageLinkList/ImageLinkList.stories.tsx +8 -8
- package/{archive → src/components}/ImageLinkList/index.tsx +4 -9
- package/src/components/InformationIcon/InformationIcon.stories.tsx +29 -0
- package/{archive → src/components}/InformationIcon/index.tsx +21 -44
- package/src/components/InformationIconBlock/InformationIconBlock.stories.tsx +38 -0
- package/{archive → src/components}/InformationIconBlock/index.tsx +15 -22
- package/{archive → src/components}/Input/Input.stories.tsx +13 -13
- package/{archive → src/components}/Input/index.tsx +22 -23
- package/{archive → src/components}/Jumbotron/Jumbotron.stories.tsx +5 -5
- package/{archive → src/components}/Jumbotron/index.tsx +4 -16
- package/{archive → src/components}/MenuButton/MenuButton.stories.tsx +7 -7
- package/src/components/MenuButton/index.tsx +66 -0
- package/{archive → src/components}/Modal/Modal.stories.tsx +11 -15
- package/{archive → src/components}/Modal/index.tsx +13 -16
- package/{archive → src/components}/NavItem/NavItem.stories.tsx +9 -9
- package/src/components/NavItem/index.tsx +43 -0
- package/{archive → src/components}/NavOld/NavOld.stories.tsx +21 -21
- package/{archive → src/components}/NavOld/StickyNav.tsx +47 -51
- package/{archive → src/components}/NavOld/index.tsx +50 -58
- package/{archive → src/components}/NavTwo/Dropdown.tsx +7 -12
- package/{archive → src/components}/NavTwo/Nav.stories.tsx +6 -12
- package/{archive → src/components}/NavTwo/Sidebar.tsx +6 -10
- package/{archive → src/components}/NavTwo/StickyNav.tsx +5 -10
- package/{archive → src/components}/NavTwo/index.tsx +6 -14
- package/{archive → src/components}/NewsCard/NewsCard.stories.tsx +11 -11
- package/{archive → src/components}/NewsCard/index.tsx +8 -21
- package/{archive → src/components}/Pill/Pill.stories.tsx +9 -9
- package/{archive → src/components}/Pill/index.tsx +17 -27
- package/{archive → src/components}/ProductCard/ProductCard.stories.tsx +6 -6
- package/{archive → src/components}/ProductCard/index.tsx +21 -22
- package/{archive → src/components}/ProductCardV2/ProductCardV2.stories.tsx +6 -6
- package/src/components/ProductCardV2/index.tsx +98 -0
- package/{archive → src/components}/Proficiencies/Proficiencies.stories.tsx +5 -5
- package/{archive → src/components}/Proficiencies/index.tsx +10 -22
- package/{archive → src/components}/Profile/Profile.stories.tsx +9 -9
- package/{archive → src/components}/Profile/index.tsx +26 -26
- package/{archive → src/components}/Row/Row.stories.tsx +8 -8
- package/{archive → src/components}/Row/index.tsx +3 -9
- package/{archive → src/components}/Search/Search.stories.tsx +10 -10
- package/{archive → src/components}/Search/index.tsx +14 -18
- package/{archive → src/components}/Select/Select.stories.tsx +7 -8
- package/{archive → src/components}/Select/index.tsx +28 -36
- package/{archive → src/components}/Showcase/Showcase.stories.tsx +7 -6
- package/src/components/Showcase/index.tsx +69 -0
- package/{archive → src/components}/SideNav/SideNav.stories.tsx +9 -9
- package/{archive → src/components}/SideNav/index.tsx +10 -17
- package/{archive → src/components}/SocialBlock/SocialBlock.stories.tsx +8 -8
- package/{archive → src/components}/SocialBlock/index.tsx +15 -19
- package/{archive → src/components}/SocialButton/SocialButton.stories.tsx +13 -13
- package/{archive → src/components}/SocialButton/index.tsx +19 -26
- package/{archive → src/components}/StarRating/StarRating.stories.tsx +5 -5
- package/{archive → src/components}/StarRating/index.tsx +22 -28
- package/{archive → src/components}/Testimonial/Testimonial.stories.tsx +7 -8
- package/{archive → src/components}/Testimonial/index.tsx +12 -18
- package/{archive → src/components}/TextAndTitle/TextAndTitle.stories.tsx +9 -8
- package/{archive → src/components}/TextAndTitle/index.tsx +25 -29
- package/{archive → src/components}/TextArea/TextArea.stories.tsx +9 -9
- package/{archive → src/components}/TextArea/index.tsx +22 -23
- package/{archive → src/components}/Timeline/Timeline.stories.tsx +14 -14
- package/{archive → src/components}/Timeline/index.tsx +58 -56
- package/{archive → src/components}/TimelineV2/TimelineV2.stories.tsx +10 -10
- package/{archive → src/components}/TimelineV2/index.tsx +15 -15
- package/{archive → src/components}/Tubestops/Tubestops.stories.tsx +6 -6
- package/src/components/Tubestops/index.tsx +54 -0
- package/{archive → src/components}/UserIcon/UserIcon.stories.tsx +8 -8
- package/{archive → src/components}/UserIcon/index.tsx +15 -18
- package/{archive → src/components}/Video/Video.stories.tsx +5 -5
- package/{archive → src/components}/Video/index.tsx +3 -5
- package/src/components/index.ts +112 -112
- package/src/components/typography/Fonts/Fonts.stories.tsx +14 -0
- package/src/components/typography/Fonts/Fonts.tsx +74 -0
- package/src/documentation/Colours.mdx +1 -1
- package/src/styles/global.css +1 -0
- package/src/styles/themes/local.css +39 -39
- package/src/styles/themes/palette.css +131 -0
- package/tailwind/boxShadow.ts +9 -0
- package/tailwind/colors.ts +410 -0
- package/tailwind/container.ts +11 -0
- package/tailwind/preset.ts +88 -0
- package/tailwind/spacing.ts +14 -0
- package/tsconfig.json +8 -2
- package/archive/Button/style.module.css +0 -76
- package/archive/Card/style.module.css +0 -75
- package/archive/CardWithTopImage/style.module.css +0 -11
- package/archive/Carousel/style.module.css +0 -99
- package/archive/CarouselThumbnail/style.module.css +0 -67
- package/archive/Checkbox/style.module.css +0 -15
- package/archive/Collapsible/style.module.css +0 -47
- package/archive/Column/index.tsx +0 -119
- package/archive/Column/style.module.css +0 -151
- package/archive/ComponentWrapper/style.module.css +0 -40
- package/archive/Container/style.module.css +0 -4
- package/archive/Counter/index.tsx +0 -66
- package/archive/Counter/style.module.css +0 -19
- package/archive/DetailUpdater/style.module.css +0 -31
- package/archive/Dialog/style.module.css +0 -44
- package/archive/DropdownMenu/style.module.css +0 -38
- package/archive/FileUploader/style.module.css +0 -54
- package/archive/FilterItem/style.module.css +0 -27
- package/archive/Footer/style.module.css +0 -19
- package/archive/FooterNav/style.module.css +0 -32
- package/archive/FooterNavItem/style.module.css +0 -139
- package/archive/Form/style.module.css +0 -0
- package/archive/FyreCard/style.module.css +0 -19
- package/archive/HamburgerIcon/style.module.css +0 -85
- package/archive/HorizontalLine/style.module.css +0 -55
- package/archive/Icon/Icon.stories.tsx +0 -164
- package/archive/Icon/index.tsx +0 -115
- package/archive/Icon/style.module.css +0 -253
- package/archive/IconCard/style.module.css +0 -18
- package/archive/Image/style.module.css +0 -109
- package/archive/ImageInfo/style.module.css +0 -47
- package/archive/ImageLink/index.tsx +0 -49
- package/archive/ImageLink/style.module.css +0 -23
- package/archive/ImageLinkList/style.module.css +0 -3
- package/archive/InformationIcon/InformationIcon.stories.tsx +0 -83
- package/archive/InformationIcon/style.module.css +0 -71
- package/archive/InformationIconBlock/InformationIconBlock.stories.tsx +0 -32
- package/archive/InformationIconBlock/style.module.css +0 -7
- package/archive/Input/style.module.css +0 -60
- package/archive/Jumbotron/style.module.css +0 -8
- package/archive/MenuButton/index.tsx +0 -82
- package/archive/MenuButton/style.module.css +0 -45
- package/archive/Modal/style.module.css +0 -35
- package/archive/NavItem/index.tsx +0 -65
- package/archive/NavItem/style.module.css +0 -71
- package/archive/NavOld/style.module.css +0 -156
- package/archive/NavTwo/style.module.css +0 -35
- package/archive/NewsCard/style.module.css +0 -15
- package/archive/Pill/style.module.css +0 -32
- package/archive/ProductCard/style.module.css +0 -53
- package/archive/ProductCardV2/index.tsx +0 -119
- package/archive/ProductCardV2/style.module.css +0 -59
- package/archive/Proficiencies/style.module.css +0 -31
- package/archive/Profile/style.module.css +0 -47
- package/archive/Row/style.module.css +0 -3
- package/archive/Search/style.module.css +0 -23
- package/archive/Select/style.module.css +0 -52
- package/archive/Showcase/index.tsx +0 -75
- package/archive/Showcase/style.module.css +0 -47
- package/archive/SideNav/style.module.css +0 -43
- package/archive/SocialButton/style.module.css +0 -77
- package/archive/Testimonial/style.module.css +0 -27
- package/archive/TextAndTitle/style.module.css +0 -75
- package/archive/TextArea/style.module.css +0 -60
- package/archive/Timeline/style.module.css +0 -134
- package/archive/TimelineV2/style.module.css +0 -28
- package/archive/Tubestops/index.tsx +0 -58
- package/archive/Tubestops/style.module.css +0 -54
- package/archive/UserIcon/style.module.css +0 -19
- package/archive/typography/Fonts/Fonts.stories.tsx +0 -14
- package/archive/typography/Fonts/Fonts.tsx +0 -181
- /package/{archive → src/components}/Calendar/style.css +0 -0
- /package/{archive → src/components}/Checkbox/Checkbox.mdx +0 -0
- /package/{archive/DynamicTextSection → src/components/Form}/style.module.css +0 -0
- /package/{archive → src/components}/fonts/Sora/OFL.txt +0 -0
- /package/{archive → src/components}/fonts/Sora/README.txt +0 -0
- /package/{archive → src/components}/fonts/Sora/Sora-VariableFont_wght.ttf +0 -0
- /package/{archive → src/components}/fonts/Sora/static/Sora-Bold.ttf +0 -0
- /package/{archive → src/components}/fonts/Sora/static/Sora-ExtraBold.ttf +0 -0
- /package/{archive → src/components}/fonts/Sora/static/Sora-ExtraLight.ttf +0 -0
- /package/{archive → src/components}/fonts/Sora/static/Sora-Light.ttf +0 -0
- /package/{archive → src/components}/fonts/Sora/static/Sora-Medium.ttf +0 -0
- /package/{archive → src/components}/fonts/Sora/static/Sora-Regular.ttf +0 -0
- /package/{archive → src/components}/fonts/Sora/static/Sora-SemiBold.ttf +0 -0
- /package/{archive → src/components}/fonts/Sora/static/Sora-Thin.ttf +0 -0
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
body {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
2
|
+
--color-primary: #0036a0;
|
|
3
|
+
--color-secondary: #e2e2e2;
|
|
4
|
+
--color-tertiary: #921457;
|
|
5
|
+
--color-ink: #495863;
|
|
6
|
+
--color-transparent: transparent;
|
|
7
|
+
--color-white: #ffffff;
|
|
8
|
+
--color-black: #000000;
|
|
9
|
+
--color-red: #bb0a1e;
|
|
10
|
+
--color-grey: #2c373b;
|
|
11
|
+
--color-light-grey: #495c63;
|
|
12
|
+
--color-lightest-grey: #f5f5f5;
|
|
13
|
+
--color-primary-strict: #ff007d;
|
|
14
|
+
--color-border: #d0d0d0;
|
|
15
|
+
--color-border-lightest: #eeeeee;
|
|
16
|
+
--color-border-light: #d8d8d8;
|
|
17
|
+
--color-border-dark: #616161;
|
|
18
|
+
--color-error-light: #ffd9d9;
|
|
19
|
+
--color-success-light: #e7f5e7;
|
|
20
|
+
--color-facebook: #3b5999;
|
|
21
|
+
--color-whatsapp: #25d366;
|
|
22
|
+
--color-twitter: #55acee;
|
|
23
|
+
--color-linkedin: #0a66c2;
|
|
24
|
+
--color-email: #c71610;
|
|
25
|
+
--color-github: #171515;
|
|
26
|
+
--color-instagram: #8a3ab9;
|
|
27
|
+
--color-interactive-facebook: #2d4474;
|
|
28
|
+
--color-interactive-whatsapp: #25d566;
|
|
29
|
+
--color-interactive-twitter: #55acee;
|
|
30
|
+
--color-interactive-linkedin: #0a66c2;
|
|
31
|
+
--color-interactive-instagram: #6d2e92;
|
|
32
|
+
--color-interactive-email: #9f110c;
|
|
33
|
+
--color-interactive-github: #000000;
|
|
34
|
+
--color-gold: #e2b13c;
|
|
35
|
+
--color-error: #b11013;
|
|
36
|
+
--color-warning: #ffd35c;
|
|
37
|
+
--color-success: #69c364;
|
|
38
|
+
--color-info-light: #d8eaf5;
|
|
39
|
+
--color-linkedin: #0e76a8;
|
|
40
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
* {
|
|
2
|
+
/* Palette */
|
|
3
|
+
--hsl-black: 0 0% 0%;
|
|
4
|
+
--hsl-white: 0 0% 100%;
|
|
5
|
+
|
|
6
|
+
/* Blue */
|
|
7
|
+
--hsl-blue-100: 240 100% 15%;
|
|
8
|
+
--hsl-blue-90: 240 91% 26%;
|
|
9
|
+
--hsl-blue-80: 239 82.1% 44%;
|
|
10
|
+
--hsl-blue-70: 235 89.8% 57.8%;
|
|
11
|
+
--hsl-blue-60: 233 92.4% 63.7%;
|
|
12
|
+
--hsl-blue-50: 230 94.7% 70.4%;
|
|
13
|
+
--hsl-blue-40: 227 96.4% 78.4%;
|
|
14
|
+
--hsl-blue-30: 224 97% 87.1%;
|
|
15
|
+
--hsl-blue-20: 222 100% 91.6%;
|
|
16
|
+
--hsl-blue-10: 222 100% 96.1%;
|
|
17
|
+
|
|
18
|
+
/* Cyan */
|
|
19
|
+
--hsl-cyan-100: 198.1 96.4% 10.8%;
|
|
20
|
+
--hsl-cyan-90: 198 100% 18.6%;
|
|
21
|
+
--hsl-cyan-80: 198.3 93.8% 31.6%;
|
|
22
|
+
--hsl-cyan-70: 197.9 85.1% 39.4%;
|
|
23
|
+
--hsl-cyan-60: 198 73.5% 48.8%;
|
|
24
|
+
--hsl-cyan-50: 197.9 91.1% 60.4%;
|
|
25
|
+
--hsl-cyan-40: 198 91.1% 69.2%;
|
|
26
|
+
--hsl-cyan-30: 198.2 92.7% 78.4%;
|
|
27
|
+
--hsl-cyan-20: 198.3 93.7% 87.6%;
|
|
28
|
+
--hsl-cyan-10: 200 100% 97.1%;
|
|
29
|
+
|
|
30
|
+
/* Fuchsia */
|
|
31
|
+
--hsl-fuchsia-100: 296.9 54.9% 13.9%;
|
|
32
|
+
--hsl-fuchsia-90: 297.4 60% 22.5%;
|
|
33
|
+
--hsl-fuchsia-80: 298.2 66.7% 38.8%;
|
|
34
|
+
--hsl-fuchsia-70: 297.8 67.6% 47.3%;
|
|
35
|
+
--hsl-fuchsia-60: 297.8 85.7% 56.3%;
|
|
36
|
+
--hsl-fuchsia-50: 297.8 94.3% 65.5%;
|
|
37
|
+
--hsl-fuchsia-40: 300 100% 75.1%;
|
|
38
|
+
--hsl-fuchsia-30: 300 100% 86.1%;
|
|
39
|
+
--hsl-fuchsia-20: 300 100% 91.6%;
|
|
40
|
+
--hsl-fuchsia-10: 296 100% 97.1%;
|
|
41
|
+
|
|
42
|
+
/* Green */
|
|
43
|
+
--hsl-green-100: 140.6 94.6% 7.3%;
|
|
44
|
+
--hsl-green-90: 135.6 73% 14.5%;
|
|
45
|
+
--hsl-green-80: 136.4 67.7% 25.5%;
|
|
46
|
+
--hsl-green-70: 139.6 68.5% 32.4%;
|
|
47
|
+
--hsl-green-60: 140.2 54.7% 45.9%;
|
|
48
|
+
--hsl-green-50: 139.8 55.4% 65.7%;
|
|
49
|
+
--hsl-green-40: 140.3 64.4% 80.2%;
|
|
50
|
+
--hsl-green-30: 135.6 73.5% 86.7%;
|
|
51
|
+
--hsl-green-20: 136 75% 92.2%;
|
|
52
|
+
--hsl-green-10: 138 100% 98%;
|
|
53
|
+
|
|
54
|
+
/* Neutral */
|
|
55
|
+
--hsl-neutral-99: 216.7 64.3% 5.5%;
|
|
56
|
+
--hsl-neutral-95: 220.9 39.3% 11%;
|
|
57
|
+
--hsl-neutral-90: 223.6 27.5% 15.7%;
|
|
58
|
+
--hsl-neutral-85: 222 19.6% 20%;
|
|
59
|
+
--hsl-neutral-80: 222.4 11.6% 28.8%;
|
|
60
|
+
--hsl-neutral-70: 221.3 8.3% 37.6%;
|
|
61
|
+
--hsl-neutral-60: 221.5 5.5% 46.5%;
|
|
62
|
+
--hsl-neutral-50: 223.6 4.8% 55.5%;
|
|
63
|
+
--hsl-neutral-40: 220 5% 64.5%;
|
|
64
|
+
--hsl-neutral-30: 220 5.3% 77.6%;
|
|
65
|
+
--hsl-neutral-25: 216 5.5% 82.2%;
|
|
66
|
+
--hsl-neutral-20: 225 5.9% 86.7%;
|
|
67
|
+
--hsl-neutral-15: 210 4.3% 91%;
|
|
68
|
+
--hsl-neutral-10: 180 4.3% 95.5%;
|
|
69
|
+
--hsl-neutral-5: 210 20% 98%;
|
|
70
|
+
--hsl-neutral-1: 0 0% 99.6%;
|
|
71
|
+
|
|
72
|
+
/* Orange */
|
|
73
|
+
--hsl-orange-100: 23.6 57.9% 11.2%;
|
|
74
|
+
--hsl-orange-90: 24.7 64.2% 20.8%;
|
|
75
|
+
--hsl-orange-80: 25.1 68.6% 30%;
|
|
76
|
+
--hsl-orange-70: 24.8 72.5% 48.4%;
|
|
77
|
+
--hsl-orange-60: 24.8 88.5% 55.5%;
|
|
78
|
+
--hsl-orange-50: 26 100% 66.5%;
|
|
79
|
+
--hsl-orange-40: 28.3 100% 75.9%;
|
|
80
|
+
--hsl-orange-30: 28.1 100% 87.5%;
|
|
81
|
+
--hsl-orange-20: 27.4 100% 93.1%;
|
|
82
|
+
--hsl-orange-10: 30 100% 98.4%;
|
|
83
|
+
|
|
84
|
+
/* Purple */
|
|
85
|
+
--hsl-purple-100: 265.5 60.6% 12.9%;
|
|
86
|
+
--hsl-purple-90: 266.1 85.7% 24.7%;
|
|
87
|
+
--hsl-purple-80: 266 83.6% 40.6%;
|
|
88
|
+
--hsl-purple-70: 265.9 78% 50%;
|
|
89
|
+
--hsl-purple-60: 266 85.2% 60.2%;
|
|
90
|
+
--hsl-purple-50: 265.7 97.2% 72.2%;
|
|
91
|
+
--hsl-purple-40: 266.1 96.4% 78%;
|
|
92
|
+
--hsl-purple-30: 266.2 97.5% 84.3%;
|
|
93
|
+
--hsl-purple-20: 266.1 95.8% 90.6%;
|
|
94
|
+
--hsl-purple-10: 264 100% 97.1%;
|
|
95
|
+
|
|
96
|
+
/* Red */
|
|
97
|
+
--hsl-red-100: 356.6 63.6% 10.8%;
|
|
98
|
+
--hsl-red-90: 356.3 69.9% 18.2%;
|
|
99
|
+
--hsl-red-80: 356.9 74% 25.7%;
|
|
100
|
+
--hsl-red-70: 356.8 77.4% 32.9%;
|
|
101
|
+
--hsl-red-60: 356.9 75.9% 45.5%;
|
|
102
|
+
--hsl-red-50: 356.5 87.9% 57.8%;
|
|
103
|
+
--hsl-red-40: 356.8 89.2% 71%;
|
|
104
|
+
--hsl-red-30: 357.5 89.9% 84.5%;
|
|
105
|
+
--hsl-red-20: 357 90.9% 91.4%;
|
|
106
|
+
--hsl-red-10: 352.5 100% 98.4%;
|
|
107
|
+
|
|
108
|
+
/* Teal */
|
|
109
|
+
--hsl-teal-100: 177.1 44.7% 9.2%;
|
|
110
|
+
--hsl-teal-90: 180 51.3% 15.3%;
|
|
111
|
+
--hsl-teal-80: 179.1 61.9% 20.6%;
|
|
112
|
+
--hsl-teal-70: 179.3 70.8% 25.5%;
|
|
113
|
+
--hsl-teal-60: 178.9 100% 30.8%;
|
|
114
|
+
--hsl-teal-50: 179 91.9% 38.6%;
|
|
115
|
+
--hsl-teal-40: 178.9 64.8% 52.2%;
|
|
116
|
+
--hsl-teal-30: 178.7 68.4% 73.9%;
|
|
117
|
+
--hsl-teal-20: 178.8 69.9% 85.7%;
|
|
118
|
+
--hsl-teal-10: 180 100% 98.4%;
|
|
119
|
+
|
|
120
|
+
/* Yellow */
|
|
121
|
+
--hsl-yellow-100: 47 85.2% 10.6%;
|
|
122
|
+
--hsl-yellow-90: 46.9 90.7% 16.9%;
|
|
123
|
+
--hsl-yellow-80: 46.9 94.8% 22.7%;
|
|
124
|
+
--hsl-yellow-70: 47.1 94.5% 35.7%;
|
|
125
|
+
--hsl-yellow-60: 46.9 89.1% 43.3%;
|
|
126
|
+
--hsl-yellow-50: 46.8 88.4% 52.5%;
|
|
127
|
+
--hsl-yellow-40: 46.9 97.7% 66.1%;
|
|
128
|
+
--hsl-yellow-30: 46.7 100% 82.4%;
|
|
129
|
+
--hsl-yellow-20: 46.5 100% 90.4%;
|
|
130
|
+
--hsl-yellow-10: 45 100% 98.4%;
|
|
131
|
+
}
|
|
@@ -0,0 +1,410 @@
|
|
|
1
|
+
/* eslint-disable sort-keys */
|
|
2
|
+
export default {
|
|
3
|
+
focus: 'hsl(var(--hsl-focus))',
|
|
4
|
+
overlay: 'hsl(var(--hsl-overlay))',
|
|
5
|
+
page: 'hsl(var(--hsl-page))',
|
|
6
|
+
// General
|
|
7
|
+
active: {
|
|
8
|
+
DEFAULT: 'hsl(var(--hsl-active))',
|
|
9
|
+
foreground: 'hsl(var(--hsl-active-foreground))',
|
|
10
|
+
},
|
|
11
|
+
inactive: {
|
|
12
|
+
DEFAULT: 'hsl(var(--hsl-inactive))',
|
|
13
|
+
foreground: 'hsl(var(--hsl-inactive-foreground))',
|
|
14
|
+
readonly: 'hsl(var(--hsl-inactive-readonly))',
|
|
15
|
+
subtle: 'hsl(var(--hsl-inactive-subtle))',
|
|
16
|
+
},
|
|
17
|
+
border: {
|
|
18
|
+
DEFAULT: 'hsl(var(--hsl-border))',
|
|
19
|
+
secondary: 'hsl(var(--hsl-border-secondary))',
|
|
20
|
+
tertiary: 'hsl(var(--hsl-border-tertiary))',
|
|
21
|
+
inverse: 'hsl(var(--hsl-border-inverse))',
|
|
22
|
+
},
|
|
23
|
+
foreground: {
|
|
24
|
+
DEFAULT: 'hsl(var(--hsl-foreground))',
|
|
25
|
+
secondary: 'hsl(var(--hsl-foreground-secondary))',
|
|
26
|
+
tertiary: 'hsl(var(--hsl-foreground-tertiary))',
|
|
27
|
+
inverse: 'hsl(var(--hsl-foreground-inverse))',
|
|
28
|
+
},
|
|
29
|
+
skeleton: {
|
|
30
|
+
DEFAULT: 'hsl(var(--hsl-skeleton))',
|
|
31
|
+
inverse: 'hsl(var(--hsl-skeleton-inverse))',
|
|
32
|
+
},
|
|
33
|
+
textlink: {
|
|
34
|
+
DEFAULT: 'hsl(var(--hsl-textlink))',
|
|
35
|
+
hover: 'hsl(var(--hsl-textlink-hover))',
|
|
36
|
+
},
|
|
37
|
+
dataviz: {
|
|
38
|
+
1: 'hsl(var(--hsl-dataviz-1))',
|
|
39
|
+
2: 'hsl(var(--hsl-dataviz-2))',
|
|
40
|
+
3: 'hsl(var(--hsl-dataviz-3))',
|
|
41
|
+
4: 'hsl(var(--hsl-dataviz-4))',
|
|
42
|
+
5: 'hsl(var(--hsl-dataviz-5))',
|
|
43
|
+
6: 'hsl(var(--hsl-dataviz-6))',
|
|
44
|
+
7: 'hsl(var(--hsl-dataviz-7))',
|
|
45
|
+
8: 'hsl(var(--hsl-dataviz-8))',
|
|
46
|
+
9: 'hsl(var(--hsl-dataviz-9))',
|
|
47
|
+
10: 'hsl(var(--hsl-dataviz-10))',
|
|
48
|
+
11: 'hsl(var(--hsl-dataviz-11))',
|
|
49
|
+
12: 'hsl(var(--hsl-dataviz-12))',
|
|
50
|
+
13: 'hsl(var(--hsl-dataviz-13))',
|
|
51
|
+
14: 'hsl(var(--hsl-dataviz-14))',
|
|
52
|
+
15: 'hsl(var(--hsl-dataviz-15))',
|
|
53
|
+
16: 'hsl(var(--hsl-dataviz-16))',
|
|
54
|
+
},
|
|
55
|
+
// Contextual
|
|
56
|
+
error: {
|
|
57
|
+
DEFAULT: 'hsl(var(--hsl-error))',
|
|
58
|
+
border: 'hsl(var(--hsl-error-border))',
|
|
59
|
+
hover: 'hsl(var(--hsl-error-hover))',
|
|
60
|
+
press: 'hsl(var(--hsl-error-press))',
|
|
61
|
+
skeleton: 'hsl(var(--hsl-error-skeleton))',
|
|
62
|
+
accent: 'hsl(var(--hsl-error-accent))',
|
|
63
|
+
foreground: 'hsl(var(--hsl-error-foreground))',
|
|
64
|
+
secondary: 'hsl(var(--hsl-error-secondary))',
|
|
65
|
+
},
|
|
66
|
+
info: {
|
|
67
|
+
DEFAULT: 'hsl(var(--hsl-info))',
|
|
68
|
+
border: 'hsl(var(--hsl-info-border))',
|
|
69
|
+
hover: 'hsl(var(--hsl-info-hover))',
|
|
70
|
+
press: 'hsl(var(--hsl-info-press))',
|
|
71
|
+
skeleton: 'hsl(var(--hsl-info-skeleton))',
|
|
72
|
+
accent: 'hsl(var(--hsl-info-accent))',
|
|
73
|
+
foreground: 'hsl(var(--hsl-info-foreground))',
|
|
74
|
+
secondary: 'hsl(var(--hsl-info-secondary))',
|
|
75
|
+
},
|
|
76
|
+
success: {
|
|
77
|
+
DEFAULT: 'hsl(var(--hsl-success))',
|
|
78
|
+
border: 'hsl(var(--hsl-success-border))',
|
|
79
|
+
hover: 'hsl(var(--hsl-success-hover))',
|
|
80
|
+
press: 'hsl(var(--hsl-success-press))',
|
|
81
|
+
skeleton: 'hsl(var(--hsl-success-skeleton))',
|
|
82
|
+
accent: 'hsl(var(--hsl-success-accent))',
|
|
83
|
+
foreground: 'hsl(var(--hsl-success-foreground))',
|
|
84
|
+
secondary: 'hsl(var(--hsl-success-secondary))',
|
|
85
|
+
},
|
|
86
|
+
warning: {
|
|
87
|
+
DEFAULT: 'hsl(var(--hsl-warning))',
|
|
88
|
+
border: 'hsl(var(--hsl-warning-border))',
|
|
89
|
+
hover: 'hsl(var(--hsl-warning-hover))',
|
|
90
|
+
press: 'hsl(var(--hsl-warning-press))',
|
|
91
|
+
skeleton: 'hsl(var(--hsl-warning-skeleton))',
|
|
92
|
+
accent: 'hsl(var(--hsl-warning-accent))',
|
|
93
|
+
foreground: 'hsl(var(--hsl-warning-foreground))',
|
|
94
|
+
secondary: 'hsl(var(--hsl-warning-secondary))',
|
|
95
|
+
},
|
|
96
|
+
// Components
|
|
97
|
+
button: {
|
|
98
|
+
primary: {
|
|
99
|
+
DEFAULT: 'hsl(var(--hsl-button-primary))',
|
|
100
|
+
hover: 'hsl(var(--hsl-button-primary-hover))',
|
|
101
|
+
press: 'hsl(var(--hsl-button-primary-press))',
|
|
102
|
+
skeleton: 'hsl(var(--hsl-button-primary-skeleton))',
|
|
103
|
+
foreground: 'hsl(var(--hsl-button-primary-foreground))',
|
|
104
|
+
},
|
|
105
|
+
secondary: {
|
|
106
|
+
DEFAULT: 'hsl(var(--hsl-button-secondary))',
|
|
107
|
+
hover: 'hsl(var(--hsl-button-secondary-hover))',
|
|
108
|
+
press: 'hsl(var(--hsl-button-secondary-press))',
|
|
109
|
+
skeleton: 'hsl(var(--hsl-button-secondary-skeleton))',
|
|
110
|
+
foreground: 'hsl(var(--hsl-button-secondary-foreground))',
|
|
111
|
+
},
|
|
112
|
+
group: {
|
|
113
|
+
DEFAULT: 'hsl(var(--hsl-button-group))',
|
|
114
|
+
hover: 'hsl(var(--hsl-button-group-hover))',
|
|
115
|
+
press: 'hsl(var(--hsl-button-group-press))',
|
|
116
|
+
skeleton: 'hsl(var(--hsl-button-group-skeleton))',
|
|
117
|
+
foreground: 'hsl(var(--hsl-button-group-foreground))',
|
|
118
|
+
},
|
|
119
|
+
outline: {
|
|
120
|
+
hover: 'hsl(var(--hsl-button-outline-hover))',
|
|
121
|
+
press: 'hsl(var(--hsl-button-outline-press))',
|
|
122
|
+
skeleton: 'hsl(var(--hsl-button-outline-skeleton))',
|
|
123
|
+
foreground: 'hsl(var(--hsl-button-outline-foreground))',
|
|
124
|
+
},
|
|
125
|
+
ghost: {
|
|
126
|
+
hover: 'hsl(var(--hsl-button-ghost-hover))',
|
|
127
|
+
press: 'hsl(var(--hsl-button-ghost-press))',
|
|
128
|
+
foreground: 'hsl(var(--hsl-button-ghost-foreground))',
|
|
129
|
+
},
|
|
130
|
+
inverse: {
|
|
131
|
+
hover: 'hsl(var(--hsl-button-inverse-hover))',
|
|
132
|
+
press: 'hsl(var(--hsl-button-inverse-press))',
|
|
133
|
+
},
|
|
134
|
+
disabled: {
|
|
135
|
+
DEFAULT: 'hsl(var(--hsl-button-disabled))',
|
|
136
|
+
foreground: 'hsl(var(--hsl-button-disabled-foreground))',
|
|
137
|
+
'foreground-actionbutton':
|
|
138
|
+
'hsl(var(--hsl-button-disabled-foreground-actionbutton))',
|
|
139
|
+
'foreground-group': 'hsl(var(--hsl-button-disabled-foreground-group))',
|
|
140
|
+
inverse: 'hsl(var(--hsl-button-disabled-inverse))',
|
|
141
|
+
'inverse-foreground':
|
|
142
|
+
'hsl(var(--hsl-button-disabled-inverse-foreground))',
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
|
|
146
|
+
card: {
|
|
147
|
+
DEFAULT: 'hsl(var(--hsl-card))',
|
|
148
|
+
secondary: 'hsl(var(--hsl-card-secondary))',
|
|
149
|
+
tertiary: 'hsl(var(--hsl-card-tertiary))',
|
|
150
|
+
quaternary: 'hsl(var(--hsl-card-quaternary))',
|
|
151
|
+
inverse: 'hsl(var(--hsl-card-inverse))',
|
|
152
|
+
},
|
|
153
|
+
|
|
154
|
+
lozenge: {
|
|
155
|
+
blue: {
|
|
156
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-blue))',
|
|
157
|
+
hover: 'hsl(var(--hsl-lozenge-blue-hover))',
|
|
158
|
+
press: 'hsl(var(--hsl-lozenge-blue-press))',
|
|
159
|
+
},
|
|
160
|
+
cyan: {
|
|
161
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-cyan))',
|
|
162
|
+
hover: 'hsl(var(--hsl-lozenge-cyan-hover))',
|
|
163
|
+
press: 'hsl(var(--hsl-lozenge-cyan-press))',
|
|
164
|
+
},
|
|
165
|
+
fuchsia: {
|
|
166
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-fuchsia))',
|
|
167
|
+
hover: 'hsl(var(--hsl-lozenge-fuchsia-hover))',
|
|
168
|
+
press: 'hsl(var(--hsl-lozenge-fuchsia-press))',
|
|
169
|
+
},
|
|
170
|
+
neutral: {
|
|
171
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-neutral))',
|
|
172
|
+
hover: 'hsl(var(--hsl-lozenge-neutral-hover))',
|
|
173
|
+
press: 'hsl(var(--hsl-lozenge-neutral-press))',
|
|
174
|
+
},
|
|
175
|
+
orange: {
|
|
176
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-orange))',
|
|
177
|
+
hover: 'hsl(var(--hsl-lozenge-orange-hover))',
|
|
178
|
+
press: 'hsl(var(--hsl-lozenge-orange-press))',
|
|
179
|
+
},
|
|
180
|
+
purple: {
|
|
181
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-purple))',
|
|
182
|
+
hover: 'hsl(var(--hsl-lozenge-purple-hover))',
|
|
183
|
+
press: 'hsl(var(--hsl-lozenge-purple-press))',
|
|
184
|
+
},
|
|
185
|
+
teal: {
|
|
186
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-teal))',
|
|
187
|
+
hover: 'hsl(var(--hsl-lozenge-teal-hover))',
|
|
188
|
+
press: 'hsl(var(--hsl-lozenge-teal-press))',
|
|
189
|
+
},
|
|
190
|
+
white: {
|
|
191
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-white))',
|
|
192
|
+
hover: 'hsl(var(--hsl-lozenge-white-hover))',
|
|
193
|
+
press: 'hsl(var(--hsl-lozenge-white-press))',
|
|
194
|
+
},
|
|
195
|
+
yellow: {
|
|
196
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-yellow))',
|
|
197
|
+
hover: 'hsl(var(--hsl-lozenge-yellow-hover))',
|
|
198
|
+
press: 'hsl(var(--hsl-lozenge-yellow-press))',
|
|
199
|
+
},
|
|
200
|
+
green: {
|
|
201
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-green))',
|
|
202
|
+
hover: 'hsl(var(--hsl-lozenge-green-hover))',
|
|
203
|
+
press: 'hsl(var(--hsl-lozenge-green-press))',
|
|
204
|
+
},
|
|
205
|
+
red: {
|
|
206
|
+
DEFAULT: 'hsl(var(--hsl-lozenge-red))',
|
|
207
|
+
hover: 'hsl(var(--hsl-lozenge-red-hover))',
|
|
208
|
+
press: 'hsl(var(--hsl-lozenge-red-press))',
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
|
|
212
|
+
sidebar: {
|
|
213
|
+
DEFAULT: 'hsl(var(--hsl-sidebar))',
|
|
214
|
+
active: 'hsl(var(--hsl-sidebar-active))',
|
|
215
|
+
foreground: {
|
|
216
|
+
DEFAULT: 'hsl(var(--hsl-sidebar-foreground))',
|
|
217
|
+
secondary: 'hsl(var(--hsl-sidebar-foreground-secondary))',
|
|
218
|
+
},
|
|
219
|
+
hover: 'hsl(var(--hsl-sidebar-hover))',
|
|
220
|
+
skeleton: 'hsl(var(--hsl-sidebar-skeleton))',
|
|
221
|
+
border: 'hsl(var(--hsl-sidebar-border))',
|
|
222
|
+
},
|
|
223
|
+
|
|
224
|
+
switch: {
|
|
225
|
+
off: {
|
|
226
|
+
DEFAULT: 'hsl(var(--hsl-switch-off))',
|
|
227
|
+
hover: 'hsl(var(--hsl-switch-off-hover))',
|
|
228
|
+
disabled: 'hsl(var(--hsl-switch-off-disabled))',
|
|
229
|
+
foreground: 'hsl(var(--hsl-switch-off-foreground))',
|
|
230
|
+
},
|
|
231
|
+
on: {
|
|
232
|
+
DEFAULT: 'hsl(var(--hsl-switch-on))',
|
|
233
|
+
hover: 'hsl(var(--hsl-switch-on-hover))',
|
|
234
|
+
foreground: 'hsl(var(--hsl-switch-on-foreground))',
|
|
235
|
+
disabled: {
|
|
236
|
+
DEFAULT: 'hsl(var(--hsl-switch-on-disabled))',
|
|
237
|
+
foreground: 'hsl(var(--hsl-switch-on-disabled-foreground))',
|
|
238
|
+
},
|
|
239
|
+
},
|
|
240
|
+
},
|
|
241
|
+
tag: {
|
|
242
|
+
neutral: {
|
|
243
|
+
DEFAULT: 'hsl(var(--hsl-tag-neutral))',
|
|
244
|
+
border: 'hsl(var(--hsl-tag-neutral-border))',
|
|
245
|
+
},
|
|
246
|
+
blue: {
|
|
247
|
+
DEFAULT: 'hsl(var(--hsl-tag-blue))',
|
|
248
|
+
border: 'hsl(var(--hsl-tag-blue-border))',
|
|
249
|
+
},
|
|
250
|
+
cyan: {
|
|
251
|
+
DEFAULT: 'hsl(var(--hsl-tag-cyan))',
|
|
252
|
+
border: 'hsl(var(--hsl-tag-cyan-border))',
|
|
253
|
+
},
|
|
254
|
+
fuchsia: {
|
|
255
|
+
DEFAULT: 'hsl(var(--hsl-tag-fuchsia))',
|
|
256
|
+
border: 'hsl(var(--hsl-tag-fuchsia-border))',
|
|
257
|
+
},
|
|
258
|
+
green: {
|
|
259
|
+
DEFAULT: 'hsl(var(--hsl-tag-green))',
|
|
260
|
+
border: 'hsl(var(--hsl-tag-green-border))',
|
|
261
|
+
},
|
|
262
|
+
orange: {
|
|
263
|
+
DEFAULT: 'hsl(var(--hsl-tag-orange))',
|
|
264
|
+
border: 'hsl(var(--hsl-tag-orange-border))',
|
|
265
|
+
},
|
|
266
|
+
purple: {
|
|
267
|
+
DEFAULT: 'hsl(var(--hsl-tag-purple))',
|
|
268
|
+
border: 'hsl(var(--hsl-tag-purple-border))',
|
|
269
|
+
},
|
|
270
|
+
red: {
|
|
271
|
+
DEFAULT: 'hsl(var(--hsl-tag-red))',
|
|
272
|
+
border: 'hsl(var(--hsl-tag-red-border))',
|
|
273
|
+
},
|
|
274
|
+
teal: {
|
|
275
|
+
DEFAULT: 'hsl(var(--hsl-tag-teal))',
|
|
276
|
+
border: 'hsl(var(--hsl-tag-teal-border))',
|
|
277
|
+
},
|
|
278
|
+
yellow: {
|
|
279
|
+
DEFAULT: 'hsl(var(--hsl-tag-yellow))',
|
|
280
|
+
border: 'hsl(var(--hsl-tag-yellow-border))',
|
|
281
|
+
},
|
|
282
|
+
},
|
|
283
|
+
// Palette
|
|
284
|
+
blue: {
|
|
285
|
+
10: 'hsl(var(--hsl-blue-10))',
|
|
286
|
+
20: 'hsl(var(--hsl-blue-20))',
|
|
287
|
+
30: 'hsl(var(--hsl-blue-30))',
|
|
288
|
+
40: 'hsl(var(--hsl-blue-40))',
|
|
289
|
+
50: 'hsl(var(--hsl-blue-50))',
|
|
290
|
+
60: 'hsl(var(--hsl-blue-60))',
|
|
291
|
+
70: 'hsl(var(--hsl-blue-70))',
|
|
292
|
+
80: 'hsl(var(--hsl-blue-80))',
|
|
293
|
+
90: 'hsl(var(--hsl-blue-90))',
|
|
294
|
+
100: 'hsl(var(--hsl-blue-100))',
|
|
295
|
+
},
|
|
296
|
+
cyan: {
|
|
297
|
+
10: 'hsl(var(--hsl-cyan-10))',
|
|
298
|
+
20: 'hsl(var(--hsl-cyan-20))',
|
|
299
|
+
30: 'hsl(var(--hsl-cyan-30))',
|
|
300
|
+
40: 'hsl(var(--hsl-cyan-40))',
|
|
301
|
+
50: 'hsl(var(--hsl-cyan-50))',
|
|
302
|
+
60: 'hsl(var(--hsl-cyan-60))',
|
|
303
|
+
70: 'hsl(var(--hsl-cyan-70))',
|
|
304
|
+
80: 'hsl(var(--hsl-cyan-80))',
|
|
305
|
+
90: 'hsl(var(--hsl-cyan-90))',
|
|
306
|
+
100: 'hsl(var(--hsl-cyan-100))',
|
|
307
|
+
},
|
|
308
|
+
fuchsia: {
|
|
309
|
+
10: 'hsl(var(--hsl-fuchsia-10))',
|
|
310
|
+
20: 'hsl(var(--hsl-fuchsia-20))',
|
|
311
|
+
30: 'hsl(var(--hsl-fuchsia-30))',
|
|
312
|
+
40: 'hsl(var(--hsl-fuchsia-40))',
|
|
313
|
+
50: 'hsl(var(--hsl-fuchsia-50))',
|
|
314
|
+
60: 'hsl(var(--hsl-fuchsia-60))',
|
|
315
|
+
70: 'hsl(var(--hsl-fuchsia-70))',
|
|
316
|
+
80: 'hsl(var(--hsl-fuchsia-80))',
|
|
317
|
+
90: 'hsl(var(--hsl-fuchsia-90))',
|
|
318
|
+
100: 'hsl(var(--hsl-fuchsia-100))',
|
|
319
|
+
},
|
|
320
|
+
green: {
|
|
321
|
+
10: 'hsl(var(--hsl-green-10))',
|
|
322
|
+
20: 'hsl(var(--hsl-green-20))',
|
|
323
|
+
30: 'hsl(var(--hsl-green-30))',
|
|
324
|
+
40: 'hsl(var(--hsl-green-40))',
|
|
325
|
+
50: 'hsl(var(--hsl-green-50))',
|
|
326
|
+
60: 'hsl(var(--hsl-green-60))',
|
|
327
|
+
70: 'hsl(var(--hsl-green-70))',
|
|
328
|
+
80: 'hsl(var(--hsl-green-80))',
|
|
329
|
+
90: 'hsl(var(--hsl-green-90))',
|
|
330
|
+
100: 'hsl(var(--hsl-green-100))',
|
|
331
|
+
},
|
|
332
|
+
neutral: {
|
|
333
|
+
1: 'hsl(var(--hsl-neutral-1))',
|
|
334
|
+
5: 'hsl(var(--hsl-neutral-5))',
|
|
335
|
+
10: 'hsl(var(--hsl-neutral-10))',
|
|
336
|
+
15: 'hsl(var(--hsl-neutral-15))',
|
|
337
|
+
20: 'hsl(var(--hsl-neutral-20))',
|
|
338
|
+
25: 'hsl(var(--hsl-neutral-25))',
|
|
339
|
+
30: 'hsl(var(--hsl-neutral-30))',
|
|
340
|
+
40: 'hsl(var(--hsl-neutral-40))',
|
|
341
|
+
50: 'hsl(var(--hsl-neutral-50))',
|
|
342
|
+
60: 'hsl(var(--hsl-neutral-60))',
|
|
343
|
+
70: 'hsl(var(--hsl-neutral-70))',
|
|
344
|
+
80: 'hsl(var(--hsl-neutral-80))',
|
|
345
|
+
85: 'hsl(var(--hsl-neutral-85))',
|
|
346
|
+
90: 'hsl(var(--hsl-neutral-90))',
|
|
347
|
+
95: 'hsl(var(--hsl-neutral-95))',
|
|
348
|
+
99: 'hsl(var(--hsl-neutral-99))',
|
|
349
|
+
},
|
|
350
|
+
orange: {
|
|
351
|
+
10: 'hsl(var(--hsl-orange-10))',
|
|
352
|
+
20: 'hsl(var(--hsl-orange-20))',
|
|
353
|
+
30: 'hsl(var(--hsl-orange-30))',
|
|
354
|
+
40: 'hsl(var(--hsl-orange-40))',
|
|
355
|
+
50: 'hsl(var(--hsl-orange-50))',
|
|
356
|
+
60: 'hsl(var(--hsl-orange-60))',
|
|
357
|
+
70: 'hsl(var(--hsl-orange-70))',
|
|
358
|
+
80: 'hsl(var(--hsl-orange-80))',
|
|
359
|
+
90: 'hsl(var(--hsl-orange-90))',
|
|
360
|
+
100: 'hsl(var(--hsl-orange-100))',
|
|
361
|
+
},
|
|
362
|
+
purple: {
|
|
363
|
+
10: 'hsl(var(--hsl-purple-10))',
|
|
364
|
+
20: 'hsl(var(--hsl-purple-20))',
|
|
365
|
+
30: 'hsl(var(--hsl-purple-30))',
|
|
366
|
+
40: 'hsl(var(--hsl-purple-40))',
|
|
367
|
+
50: 'hsl(var(--hsl-purple-50))',
|
|
368
|
+
60: 'hsl(var(--hsl-purple-60))',
|
|
369
|
+
70: 'hsl(var(--hsl-purple-70))',
|
|
370
|
+
80: 'hsl(var(--hsl-purple-80))',
|
|
371
|
+
90: 'hsl(var(--hsl-purple-90))',
|
|
372
|
+
100: 'hsl(var(--hsl-purple-100))',
|
|
373
|
+
},
|
|
374
|
+
red: {
|
|
375
|
+
10: 'hsl(var(--hsl-red-10))',
|
|
376
|
+
20: 'hsl(var(--hsl-red-20))',
|
|
377
|
+
30: 'hsl(var(--hsl-red-30))',
|
|
378
|
+
40: 'hsl(var(--hsl-red-40))',
|
|
379
|
+
50: 'hsl(var(--hsl-red-50))',
|
|
380
|
+
60: 'hsl(var(--hsl-red-60))',
|
|
381
|
+
70: 'hsl(var(--hsl-red-70))',
|
|
382
|
+
80: 'hsl(var(--hsl-red-80))',
|
|
383
|
+
90: 'hsl(var(--hsl-red-90))',
|
|
384
|
+
100: 'hsl(var(--hsl-red-100))',
|
|
385
|
+
},
|
|
386
|
+
teal: {
|
|
387
|
+
10: 'hsl(var(--hsl-teal-10))',
|
|
388
|
+
20: 'hsl(var(--hsl-teal-20))',
|
|
389
|
+
30: 'hsl(var(--hsl-teal-30))',
|
|
390
|
+
40: 'hsl(var(--hsl-teal-40))',
|
|
391
|
+
50: 'hsl(var(--hsl-teal-50))',
|
|
392
|
+
60: 'hsl(var(--hsl-teal-60))',
|
|
393
|
+
70: 'hsl(var(--hsl-teal-70))',
|
|
394
|
+
80: 'hsl(var(--hsl-teal-80))',
|
|
395
|
+
90: 'hsl(var(--hsl-teal-90))',
|
|
396
|
+
100: 'hsl(var(--hsl-teal-100))',
|
|
397
|
+
},
|
|
398
|
+
yellow: {
|
|
399
|
+
10: 'hsl(var(--hsl-yellow-10))',
|
|
400
|
+
20: 'hsl(var(--hsl-yellow-20))',
|
|
401
|
+
30: 'hsl(var(--hsl-yellow-30))',
|
|
402
|
+
40: 'hsl(var(--hsl-yellow-40))',
|
|
403
|
+
50: 'hsl(var(--hsl-yellow-50))',
|
|
404
|
+
60: 'hsl(var(--hsl-yellow-60))',
|
|
405
|
+
70: 'hsl(var(--hsl-yellow-70))',
|
|
406
|
+
80: 'hsl(var(--hsl-yellow-80))',
|
|
407
|
+
90: 'hsl(var(--hsl-yellow-90))',
|
|
408
|
+
100: 'hsl(var(--hsl-yellow-100))',
|
|
409
|
+
},
|
|
410
|
+
};
|