trepur_components 2.3.7 → 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/themes/local.css +39 -39
- 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/themes/local.css +39 -39
- 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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trepur_components",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.8",
|
|
4
4
|
"description": "component lib",
|
|
5
5
|
"author": "trepur_ttenneb",
|
|
6
6
|
"private": false,
|
|
@@ -38,8 +38,11 @@
|
|
|
38
38
|
"tailwindcss": "^3.0.23"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
+
"@fortawesome/fontawesome": "^1.2.0-6",
|
|
41
42
|
"@fortawesome/fontawesome-common-types": "^6.5.1",
|
|
42
|
-
"@fortawesome/fontawesome-
|
|
43
|
+
"@fortawesome/fontawesome-free-regular": "^5.1.0-3",
|
|
44
|
+
"@fortawesome/fontawesome-free-solid": "^5.1.0-3",
|
|
45
|
+
"@fortawesome/fontawesome-svg-core": "^6.5.2",
|
|
43
46
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
44
47
|
"class-variance-authority": "^0.7.0",
|
|
45
48
|
"classnames": "^2.5.1",
|
|
@@ -47,11 +50,11 @@
|
|
|
47
50
|
"cmdk": "^0.2.0",
|
|
48
51
|
"d3-array": "^3.2.4",
|
|
49
52
|
"embla-carousel-react": "^8.0.0-rc17",
|
|
53
|
+
"eslint-config-love": "^47.0.0",
|
|
50
54
|
"keen-slider": "^6.7.0",
|
|
51
55
|
"luxon": "^3.4.4",
|
|
52
56
|
"react-calendar": "^5.0.0",
|
|
53
57
|
"react-hook-form": "^7.49.2",
|
|
54
|
-
"snapsvg-cjs": "^0.0.6",
|
|
55
58
|
"sonner": "^1.4.0",
|
|
56
59
|
"tailwind-merge": "^2.1.0",
|
|
57
60
|
"tailwind-scrollbar": "^3.0.5",
|
|
@@ -115,7 +118,7 @@
|
|
|
115
118
|
"react": "^18.2.0",
|
|
116
119
|
"react-dom": "^18.2.0",
|
|
117
120
|
"react-i18next": "^14.0.5",
|
|
118
|
-
"snapsvg-cjs": "0.0.6",
|
|
121
|
+
"snapsvg-cjs": "^0.0.6",
|
|
119
122
|
"storybook": "^7.6.17",
|
|
120
123
|
"storybook-addon-themes": "^6.1.0",
|
|
121
124
|
"storybook-react-i18next": "^2.0.10",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import { type Meta, type StoryObj } from '@storybook/react';
|
|
2
2
|
import { idAndClassName } from '@utils/controls';
|
|
3
3
|
|
|
4
|
-
import { Accordion } from '
|
|
4
|
+
import { Accordion } from './';
|
|
5
5
|
|
|
6
6
|
const propItems = [
|
|
7
7
|
{
|
|
@@ -86,8 +86,8 @@ const propItems = [
|
|
|
86
86
|
risus, et bibendum nunc condimentum eu.
|
|
87
87
|
</p>
|
|
88
88
|
),
|
|
89
|
-
}
|
|
90
|
-
]
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
91
|
|
|
92
92
|
const meta = {
|
|
93
93
|
title: 'Components/Accordion',
|
|
@@ -101,16 +101,16 @@ const meta = {
|
|
|
101
101
|
category: 'Accordion',
|
|
102
102
|
type: { summary: 'array' },
|
|
103
103
|
defaultValue: { summary: 'undefined' },
|
|
104
|
-
}
|
|
105
|
-
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
106
|
},
|
|
107
107
|
args: {
|
|
108
108
|
items: propItems,
|
|
109
|
-
}
|
|
109
|
+
}
|
|
110
110
|
} satisfies Meta<typeof Accordion>;
|
|
111
111
|
|
|
112
112
|
export default meta;
|
|
113
113
|
|
|
114
|
-
type Story = StoryObj<typeof
|
|
114
|
+
type Story = StoryObj<typeof Accordion>;
|
|
115
115
|
|
|
116
116
|
export const Default: Story = {};
|
|
@@ -1,28 +1,21 @@
|
|
|
1
|
-
import
|
|
2
|
-
// import Collapsible from '@components/Collapsible';
|
|
3
|
-
import classNames from 'classnames';
|
|
1
|
+
import { Collapsible } from "@components/index";
|
|
4
2
|
|
|
5
|
-
export interface
|
|
3
|
+
export interface AccordionProps {
|
|
6
4
|
id?: string;
|
|
7
5
|
className?: string;
|
|
8
6
|
items: any;
|
|
9
7
|
}
|
|
10
8
|
|
|
11
|
-
export const Accordion
|
|
12
|
-
id,
|
|
13
|
-
className,
|
|
14
|
-
items,
|
|
15
|
-
}: Props): JSX.Element => {
|
|
9
|
+
export const Accordion = ({ id, className, items }: AccordionProps) => {
|
|
16
10
|
return (
|
|
17
|
-
<div id={id} className={
|
|
11
|
+
<div id={id} className={className}>
|
|
18
12
|
{items?.map((item: any, i: number) => {
|
|
19
13
|
return (
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
<div></div>
|
|
14
|
+
<Collapsible key={`collapsible_item_${i}`} {...item}>
|
|
15
|
+
{item.children}
|
|
16
|
+
</Collapsible>
|
|
24
17
|
);
|
|
25
18
|
})}
|
|
26
19
|
</div>
|
|
27
20
|
);
|
|
28
|
-
}
|
|
21
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import { Meta, type StoryObj } from '@storybook/react';
|
|
2
2
|
import { idAndClassName } from '@utils/controls';
|
|
3
3
|
|
|
4
4
|
import { AlertBar } from '.';
|
|
@@ -25,7 +25,7 @@ const meta = {
|
|
|
25
25
|
table: {
|
|
26
26
|
type: { summary: 'string' },
|
|
27
27
|
defaultValue: { summary: 'undefined' },
|
|
28
|
-
}
|
|
28
|
+
}
|
|
29
29
|
},
|
|
30
30
|
|
|
31
31
|
leftIconProps: {
|
|
@@ -34,7 +34,7 @@ const meta = {
|
|
|
34
34
|
category: '',
|
|
35
35
|
type: { summary: 'string' },
|
|
36
36
|
defaultValue: { summary: 'undefined' },
|
|
37
|
-
}
|
|
37
|
+
}
|
|
38
38
|
},
|
|
39
39
|
rightIconProps: {
|
|
40
40
|
description:
|
|
@@ -43,7 +43,7 @@ const meta = {
|
|
|
43
43
|
category: '',
|
|
44
44
|
type: { summary: 'string' },
|
|
45
45
|
defaultValue: { summary: 'undefined' },
|
|
46
|
-
}
|
|
46
|
+
}
|
|
47
47
|
},
|
|
48
48
|
textCenter: {
|
|
49
49
|
type: { name: 'boolean', required: false },
|
|
@@ -72,8 +72,8 @@ const meta = {
|
|
|
72
72
|
summary: 'function',
|
|
73
73
|
},
|
|
74
74
|
defaultValue: { summary: 'undefined' },
|
|
75
|
-
}
|
|
76
|
-
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
77
|
},
|
|
78
78
|
args: {
|
|
79
79
|
text: 'This is an alert bar message',
|
|
@@ -85,11 +85,11 @@ const meta = {
|
|
|
85
85
|
rightIconProps: {
|
|
86
86
|
type: 'heart',
|
|
87
87
|
colour: 'white',
|
|
88
|
-
}
|
|
89
|
-
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
90
|
};
|
|
91
91
|
export default meta;
|
|
92
92
|
|
|
93
|
-
type Story = StoryObj<typeof
|
|
93
|
+
type Story = StoryObj<typeof AlertBar>;
|
|
94
94
|
|
|
95
95
|
export const Default: Story = {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MouseEventHandler, useState } from 'react';
|
|
1
|
+
import { type MouseEventHandler, useState } from 'react';
|
|
2
2
|
|
|
3
3
|
// import Icon, { type Props as iconProps } from '@components/Icon';
|
|
4
4
|
import classNames from 'classnames';
|
|
@@ -25,11 +25,11 @@ export const AlertBar = ({
|
|
|
25
25
|
textCenter = false,
|
|
26
26
|
isDismissable = false,
|
|
27
27
|
onDismissClick,
|
|
28
|
-
}: Props)
|
|
28
|
+
}: Props) => {
|
|
29
29
|
const [alertBarStatus, setAlertBarStatus] = useState({
|
|
30
30
|
state: 'open',
|
|
31
31
|
display: true,
|
|
32
|
-
})
|
|
32
|
+
})
|
|
33
33
|
|
|
34
34
|
// const iconLeft = leftIconProps != null && <Icon {...leftIconProps} />;
|
|
35
35
|
|
|
@@ -40,20 +40,20 @@ export const AlertBar = ({
|
|
|
40
40
|
'bg-warning': type === 'warning',
|
|
41
41
|
'bg-error': type === 'error',
|
|
42
42
|
'bg-info-light': type === 'info',
|
|
43
|
-
})
|
|
43
|
+
})
|
|
44
44
|
|
|
45
45
|
const alertBarState = classNames({
|
|
46
46
|
'opacity-100': alertBarStatus.state === 'open',
|
|
47
47
|
'opacity-0': alertBarStatus.state === 'closed',
|
|
48
48
|
hidden: !alertBarStatus.display,
|
|
49
|
-
})
|
|
49
|
+
})
|
|
50
50
|
|
|
51
51
|
const classList = classNames(
|
|
52
52
|
className,
|
|
53
53
|
bgColor,
|
|
54
54
|
alertBarState,
|
|
55
55
|
'flex py-2 text-white duration-700 w-parent transition-opactiy',
|
|
56
|
-
)
|
|
56
|
+
)
|
|
57
57
|
|
|
58
58
|
const textClassList = classNames(
|
|
59
59
|
{
|
|
@@ -62,25 +62,25 @@ export const AlertBar = ({
|
|
|
62
62
|
// 'pl-4': !textCenter && leftIconProps === null,
|
|
63
63
|
},
|
|
64
64
|
'w-full py-3',
|
|
65
|
-
)
|
|
65
|
+
)
|
|
66
66
|
|
|
67
67
|
const rightIconClasses = classNames(
|
|
68
68
|
{
|
|
69
69
|
'hover:cursor-pointer': isDismissable,
|
|
70
70
|
},
|
|
71
71
|
'absolute right-0 pr-8 pt-3',
|
|
72
|
-
)
|
|
72
|
+
)
|
|
73
73
|
|
|
74
74
|
const closeAlertBar = (e: any): void => {
|
|
75
75
|
setAlertBarStatus({
|
|
76
76
|
state: 'closed',
|
|
77
77
|
display: alertBarStatus.display,
|
|
78
|
-
})
|
|
78
|
+
})
|
|
79
79
|
setTimeout(() => {
|
|
80
80
|
setAlertBarStatus({
|
|
81
81
|
state: 'closed',
|
|
82
82
|
display: false,
|
|
83
|
-
})
|
|
83
|
+
})
|
|
84
84
|
}, 700);
|
|
85
85
|
if (onDismissClick != null) {
|
|
86
86
|
onDismissClick(e);
|
|
@@ -110,4 +110,4 @@ export const AlertBar = ({
|
|
|
110
110
|
)} */}
|
|
111
111
|
</div>
|
|
112
112
|
);
|
|
113
|
-
}
|
|
113
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import { Meta, type StoryObj } from '@storybook/react';
|
|
2
2
|
import { idAndClassName } from '@utils/controls';
|
|
3
3
|
|
|
4
|
-
import Avatar from '.';
|
|
4
|
+
import { Avatar } from '.';
|
|
5
5
|
|
|
6
6
|
const meta = {
|
|
7
7
|
title: 'Components/Avatar',
|
|
@@ -10,7 +10,7 @@ const meta = {
|
|
|
10
10
|
...idAndClassName,
|
|
11
11
|
},
|
|
12
12
|
args: {},
|
|
13
|
-
}
|
|
13
|
+
}
|
|
14
14
|
|
|
15
15
|
export default meta;
|
|
16
16
|
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React, { useEffect, useState } from 'react';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const Avatar: React.FC = (): any => {
|
|
3
|
+
// @ts-expect-error
|
|
4
|
+
import Snap from 'snapsvg-cjs';
|
|
5
|
+
|
|
6
|
+
export const Avatar: React.FC = (): any => {
|
|
8
7
|
const [s, setS] = useState(null);
|
|
9
8
|
|
|
10
9
|
let rightEyeWhite: any,
|
|
@@ -67,7 +66,7 @@ const Avatar: React.FC = (): any => {
|
|
|
67
66
|
mask: beardGroup,
|
|
68
67
|
fill: beardColour,
|
|
69
68
|
opacity: 0.6,
|
|
70
|
-
})
|
|
69
|
+
})
|
|
71
70
|
|
|
72
71
|
const outerHair = s?.rect(103, 90, 68, 60, 25).attr({ fill: 'white' });
|
|
73
72
|
const innerHair = s?.rect(109, 105, 56, 40, 10);
|
|
@@ -75,7 +74,7 @@ const Avatar: React.FC = (): any => {
|
|
|
75
74
|
const baseHair = s?.rect(103, 90, 68, 40).attr({
|
|
76
75
|
mask: hairGroup,
|
|
77
76
|
fill: hairColour,
|
|
78
|
-
})
|
|
77
|
+
})
|
|
79
78
|
const hairLevel1 = s
|
|
80
79
|
?.rect(113, 88, 50, 16, 10)
|
|
81
80
|
.attr({ fill: hairColour })
|
|
@@ -88,7 +87,7 @@ const Avatar: React.FC = (): any => {
|
|
|
88
87
|
const nose = s?.rect(129, 140, 12, 10)?.attr({
|
|
89
88
|
mask: noseGroup,
|
|
90
89
|
fill: noseColour,
|
|
91
|
-
})
|
|
90
|
+
})
|
|
92
91
|
|
|
93
92
|
const leftEar = s?.circle(103, 135, 5)?.attr({ fill: 'white' });
|
|
94
93
|
const leftEarMask = s
|
|
@@ -180,7 +179,7 @@ const Avatar: React.FC = (): any => {
|
|
|
180
179
|
ears,
|
|
181
180
|
hair,
|
|
182
181
|
beard,
|
|
183
|
-
)
|
|
182
|
+
)
|
|
184
183
|
torso = s?.group(rucksack, hood, body, neck, zip);
|
|
185
184
|
legs = s
|
|
186
185
|
?.group(leftThigh, rightThigh, wasteBand, shoes)
|
|
@@ -191,10 +190,10 @@ const Avatar: React.FC = (): any => {
|
|
|
191
190
|
|
|
192
191
|
mouthCutOff?.attr({
|
|
193
192
|
mask: mouth,
|
|
194
|
-
})
|
|
193
|
+
})
|
|
195
194
|
|
|
196
195
|
callBack(avatar);
|
|
197
|
-
}
|
|
196
|
+
}
|
|
198
197
|
|
|
199
198
|
const nextFrame = (s: any, frameArray: any, frame: number): void => {
|
|
200
199
|
if (frame >= frameArray.length) {
|
|
@@ -208,8 +207,8 @@ const Avatar: React.FC = (): any => {
|
|
|
208
207
|
frameArray[frame].dur,
|
|
209
208
|
null,
|
|
210
209
|
nextFrame.bind(null, Snap, frameArray, frame + 1),
|
|
211
|
-
)
|
|
212
|
-
}
|
|
210
|
+
)
|
|
211
|
+
}
|
|
213
212
|
|
|
214
213
|
const rightWave = [
|
|
215
214
|
{
|
|
@@ -274,8 +273,8 @@ const Avatar: React.FC = (): any => {
|
|
|
274
273
|
from: 120,
|
|
275
274
|
to: 0,
|
|
276
275
|
dur: 100,
|
|
277
|
-
}
|
|
278
|
-
]
|
|
276
|
+
}
|
|
277
|
+
]
|
|
279
278
|
|
|
280
279
|
const leftWave = [
|
|
281
280
|
{
|
|
@@ -340,8 +339,8 @@ const Avatar: React.FC = (): any => {
|
|
|
340
339
|
from: -120,
|
|
341
340
|
to: 0,
|
|
342
341
|
dur: 100,
|
|
343
|
-
}
|
|
344
|
-
]
|
|
342
|
+
}
|
|
343
|
+
]
|
|
345
344
|
|
|
346
345
|
const jump = (): void => {
|
|
347
346
|
torso.animate({ transform: 't0,20' }, 500);
|
|
@@ -361,24 +360,24 @@ const Avatar: React.FC = (): any => {
|
|
|
361
360
|
straps.animate({ transform: 't0,0' }, 200);
|
|
362
361
|
hands.animate({ transform: 't0,0' }, 200);
|
|
363
362
|
legs.animate({ transform: 't0,0' }, 200);
|
|
364
|
-
})
|
|
363
|
+
})
|
|
365
364
|
});
|
|
366
|
-
}
|
|
365
|
+
}
|
|
367
366
|
|
|
368
367
|
const eyesLeft = (duration: any): void => {
|
|
369
368
|
leftEyePupil.animate({ transform: 't2,0' }, duration);
|
|
370
369
|
rightEyePupil.animate({ transform: 't2,0' }, duration);
|
|
371
|
-
}
|
|
370
|
+
}
|
|
372
371
|
|
|
373
372
|
const eyesRight = (duration: any): void => {
|
|
374
373
|
leftEyePupil.animate({ transform: 't-2,0' }, duration);
|
|
375
374
|
rightEyePupil.animate({ transform: 't-2,0' }, duration);
|
|
376
|
-
}
|
|
375
|
+
}
|
|
377
376
|
|
|
378
377
|
const eyesCenter = (duration: any): void => {
|
|
379
378
|
leftEyePupil.animate({ transform: 't0,0' }, duration);
|
|
380
379
|
rightEyePupil.animate({ transform: 't0,0' }, duration);
|
|
381
|
-
}
|
|
380
|
+
}
|
|
382
381
|
|
|
383
382
|
const blink = (times: number): void => {
|
|
384
383
|
if (times < 1) return;
|
|
@@ -392,14 +391,14 @@ const Avatar: React.FC = (): any => {
|
|
|
392
391
|
rightEyeWhite?.animate({ ry: 4 }, 200);
|
|
393
392
|
rightEyePupil?.animate({ ry: 3 }, 200, () => {
|
|
394
393
|
blink(times - 1);
|
|
395
|
-
})
|
|
394
|
+
})
|
|
396
395
|
});
|
|
397
|
-
})
|
|
398
|
-
}
|
|
396
|
+
})
|
|
397
|
+
}
|
|
399
398
|
|
|
400
399
|
const animate = (s: any, animation: any): any => {
|
|
401
400
|
nextFrame(s, animation, 0);
|
|
402
|
-
}
|
|
401
|
+
}
|
|
403
402
|
|
|
404
403
|
// const drawPath = (s: any): void => {
|
|
405
404
|
// const linePath =
|
|
@@ -434,7 +433,7 @@ const Avatar: React.FC = (): any => {
|
|
|
434
433
|
const makeBlinkHappen = (): void => {
|
|
435
434
|
const randNum = Math.floor(Math.random() * 2) + 1;
|
|
436
435
|
blink(randNum);
|
|
437
|
-
}
|
|
436
|
+
}
|
|
438
437
|
|
|
439
438
|
const loadActions = (): void => {
|
|
440
439
|
if (!avatar) return;
|
|
@@ -454,28 +453,28 @@ const Avatar: React.FC = (): any => {
|
|
|
454
453
|
armless?.click(jump);
|
|
455
454
|
leftArm?.hover(() => {
|
|
456
455
|
eyesLeft(200);
|
|
457
|
-
})
|
|
456
|
+
})
|
|
458
457
|
leftThigh?.hover(() => {
|
|
459
458
|
eyesLeft(200);
|
|
460
|
-
})
|
|
459
|
+
})
|
|
461
460
|
leftShoe?.hover(() => {
|
|
462
461
|
eyesLeft(200);
|
|
463
|
-
})
|
|
462
|
+
})
|
|
464
463
|
|
|
465
464
|
torso?.hover(() => {
|
|
466
465
|
eyesCenter(200);
|
|
467
|
-
})
|
|
466
|
+
})
|
|
468
467
|
|
|
469
468
|
rightArm?.hover(() => {
|
|
470
469
|
eyesRight(200);
|
|
471
|
-
})
|
|
470
|
+
})
|
|
472
471
|
rightThigh?.hover(() => {
|
|
473
472
|
eyesRight(200);
|
|
474
|
-
})
|
|
473
|
+
})
|
|
475
474
|
rightShoe?.hover(() => {
|
|
476
475
|
eyesRight(200);
|
|
477
|
-
})
|
|
478
|
-
}
|
|
476
|
+
})
|
|
477
|
+
}
|
|
479
478
|
|
|
480
479
|
createAvatar(s, loadActions);
|
|
481
480
|
}, [s]);
|
|
@@ -490,6 +489,4 @@ const Avatar: React.FC = (): any => {
|
|
|
490
489
|
xmlns="http://www.w3.org/2000/svg"
|
|
491
490
|
/>
|
|
492
491
|
);
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
export default Avatar;
|
|
492
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import { Meta, type StoryObj } from '@storybook/react';
|
|
2
2
|
import { idAndClassName } from '@utils/controls';
|
|
3
3
|
|
|
4
|
-
import Breadcrumbs from '.';
|
|
4
|
+
import { Breadcrumbs } from '.';
|
|
5
5
|
|
|
6
6
|
const meta = {
|
|
7
7
|
title: 'Components/Breadcrumbs',
|
|
@@ -15,8 +15,8 @@ const meta = {
|
|
|
15
15
|
category: '',
|
|
16
16
|
type: { summary: 'array' },
|
|
17
17
|
defaultValue: { summary: 'undefined' },
|
|
18
|
-
}
|
|
19
|
-
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
20
|
},
|
|
21
21
|
args: {
|
|
22
22
|
links: [
|
|
@@ -35,12 +35,12 @@ const meta = {
|
|
|
35
35
|
{
|
|
36
36
|
href: '/',
|
|
37
37
|
name: 'link 4',
|
|
38
|
-
}
|
|
39
|
-
]
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
40
|
},
|
|
41
|
-
}
|
|
41
|
+
}
|
|
42
42
|
export default meta;
|
|
43
43
|
|
|
44
|
-
type Story = StoryObj<typeof
|
|
44
|
+
type Story = StoryObj<typeof Breadcrumbs>;
|
|
45
45
|
|
|
46
46
|
export const Default: Story = {};
|
|
@@ -6,30 +6,30 @@ export interface Props {
|
|
|
6
6
|
links?: Array<{ name: string; href: string }>;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
const Breadcrumbs = ({ id, className, links }: Props)
|
|
9
|
+
export const Breadcrumbs = ({ id, className, links }: Props) => {
|
|
10
10
|
const linksLength = links != null ? Object.keys(links).length : 0;
|
|
11
11
|
|
|
12
|
-
const classList = classNames(className, 'flex py-2'
|
|
12
|
+
const classList = classNames(className, 'flex py-2');
|
|
13
13
|
|
|
14
14
|
return (
|
|
15
15
|
<ul id={id} className={classList}>
|
|
16
16
|
{links?.map((link, i) => {
|
|
17
17
|
return (
|
|
18
|
-
<div key={`breadcrumb_${i + 1}`} className=
|
|
18
|
+
<div key={`breadcrumb_${i + 1}`} className="flex">
|
|
19
19
|
<li className="h-8">
|
|
20
20
|
{i + 1 >= linksLength ? (
|
|
21
|
-
<p className=
|
|
22
|
-
|
|
23
|
-
<p className=
|
|
24
|
-
<a className=
|
|
21
|
+
<p className="px-1 py-1">{link.name}</p>
|
|
22
|
+
) : (
|
|
23
|
+
<p className="px-1 py-1">
|
|
24
|
+
<a className="text-facebook hover:underline" href={link.href}>
|
|
25
25
|
{link.name}
|
|
26
26
|
</a>
|
|
27
27
|
</p>
|
|
28
|
-
|
|
28
|
+
)}
|
|
29
29
|
</li>
|
|
30
30
|
{i + 1 < linksLength && (
|
|
31
|
-
<li className=
|
|
32
|
-
<p className=
|
|
31
|
+
<li className="h-8">
|
|
32
|
+
<p className="py-1"> > </p>
|
|
33
33
|
</li>
|
|
34
34
|
)}
|
|
35
35
|
</div>
|
|
@@ -37,6 +37,4 @@ const Breadcrumbs = ({ id, className, links }: Props): JSX.Element => {
|
|
|
37
37
|
})}
|
|
38
38
|
</ul>
|
|
39
39
|
);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export default Breadcrumbs;
|
|
40
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import { Meta, type StoryObj } from '@storybook/react';
|
|
2
2
|
import { idAndClassName } from '@utils/controls';
|
|
3
3
|
|
|
4
|
-
import BreadcrumbsBordered from '.';
|
|
4
|
+
import { BreadcrumbsBordered } from '.';
|
|
5
5
|
|
|
6
6
|
const meta = {
|
|
7
7
|
title: 'Components/BreadcrumbsBordered',
|
|
@@ -16,8 +16,8 @@ const meta = {
|
|
|
16
16
|
category: '',
|
|
17
17
|
type: { summary: 'array' },
|
|
18
18
|
defaultValue: { summary: 'undefined' },
|
|
19
|
-
}
|
|
20
|
-
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
21
|
},
|
|
22
22
|
args: {
|
|
23
23
|
links: [
|
|
@@ -40,13 +40,13 @@ const meta = {
|
|
|
40
40
|
{
|
|
41
41
|
link: '/',
|
|
42
42
|
name: 'link 5',
|
|
43
|
-
}
|
|
44
|
-
]
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
45
|
},
|
|
46
|
-
}
|
|
46
|
+
}
|
|
47
47
|
|
|
48
48
|
export default meta;
|
|
49
49
|
|
|
50
|
-
type Story = StoryObj<typeof
|
|
50
|
+
type Story = StoryObj<typeof BreadcrumbsBordered>;
|
|
51
51
|
|
|
52
52
|
export const Default: Story = {};
|
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
1
|
import classNames from 'classnames';
|
|
5
2
|
import { BreadcrumbsItem } from 'src';
|
|
6
3
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export interface Props {
|
|
4
|
+
export interface BreadcrumbsBorderedProps {
|
|
10
5
|
id?: string;
|
|
11
6
|
className?: string;
|
|
12
7
|
links?: any[];
|
|
13
8
|
}
|
|
14
9
|
|
|
15
|
-
const BreadcrumbsBordered
|
|
10
|
+
export const BreadcrumbsBordered = ({
|
|
11
|
+
id,
|
|
12
|
+
className,
|
|
13
|
+
links,
|
|
14
|
+
}: BreadcrumbsBorderedProps) => {
|
|
16
15
|
const linksLength = links?.length !== undefined ? links.length : 0;
|
|
17
|
-
const classList = classNames(className, 'flex
|
|
16
|
+
const classList = classNames(className, 'flex');
|
|
18
17
|
|
|
19
18
|
return (
|
|
20
19
|
<ul id={id} className={classList}>
|
|
@@ -39,6 +38,4 @@ const BreadcrumbsBordered: React.FC<Props> = ({ id, className, links }) => {
|
|
|
39
38
|
})}
|
|
40
39
|
</ul>
|
|
41
40
|
);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export default BreadcrumbsBordered;
|
|
41
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import { Meta, type StoryObj } from '@storybook/react';
|
|
2
2
|
import { idAndClassName } from '@utils/controls';
|
|
3
3
|
|
|
4
|
-
import BreadcrumbsItem from '.';
|
|
4
|
+
import { BreadcrumbsItem } from '.';
|
|
5
5
|
|
|
6
6
|
const meta = {
|
|
7
7
|
title: 'Components/Breadcrumbs Item',
|
|
@@ -16,7 +16,7 @@ const meta = {
|
|
|
16
16
|
category: '',
|
|
17
17
|
type: { summary: 'string' },
|
|
18
18
|
defaultValue: { summary: 'undefined' },
|
|
19
|
-
}
|
|
19
|
+
}
|
|
20
20
|
},
|
|
21
21
|
type: {
|
|
22
22
|
description: 'Specifies the type of breadcrumbs to display ie link',
|
|
@@ -24,17 +24,17 @@ const meta = {
|
|
|
24
24
|
category: '',
|
|
25
25
|
type: { summary: 'string' },
|
|
26
26
|
defaultValue: { summary: 'undefined' },
|
|
27
|
-
}
|
|
28
|
-
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
29
|
},
|
|
30
30
|
args: {
|
|
31
31
|
name: 'Link 1',
|
|
32
32
|
href: '/',
|
|
33
33
|
firstItem: false,
|
|
34
|
-
}
|
|
35
|
-
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
36
|
export default meta;
|
|
37
37
|
|
|
38
|
-
type Story = StoryObj<typeof
|
|
38
|
+
type Story = StoryObj<typeof BreadcrumbsItem>;
|
|
39
39
|
|
|
40
40
|
export const Default: Story = {};
|