@julseb-lib/react 0.0.49 → 0.0.51
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/.prettierrc +5 -0
- package/README.md +42 -11
- package/cypress/fixtures/example.json +5 -0
- package/cypress/index.d.ts +5 -0
- package/cypress/screenshots/ButtonGroup/__tests__/ButtonGroup.cy.tsx/ButtonGroup -- renders first button as ButtonIcon (failed).png +0 -0
- package/cypress/screenshots/Datepicker/__tests__/Datepicker.cy.tsx/Datepicker -- renders Datepicker component (failed).png +0 -0
- package/cypress/screenshots/Paginator/__tests__/Paginator.cy.tsx/Paginator -- renders text instead of an input (failed).png +0 -0
- package/cypress/screenshots/ProgressBar/__tests__/ProgressBar.cy.tsx/ProgressBar -- renders without animation (failed).png +0 -0
- package/cypress/support/commands.ts +52 -0
- package/cypress/support/component-index.html +12 -0
- package/cypress/support/component.tsx +79 -0
- package/cypress/tsconfig.json +9 -0
- package/cypress.config.ts +10 -0
- package/eslint.config.js +82 -0
- package/index.html +13 -0
- package/package.json +35 -69
- package/public/vite.svg +1 -0
- package/src/App.tsx +22 -0
- package/src/components/BaseCard.tsx +20 -0
- package/src/components/BasePage.tsx +26 -0
- package/src/components/ColorCard/ColorCard.tsx +41 -0
- package/src/components/ColorCard/index.ts +3 -0
- package/src/components/ColorCard/styles.tsx +28 -0
- package/src/components/ColorCard/types.ts +11 -0
- package/src/components/ComponentPreview.tsx +47 -0
- package/src/components/CoverLayout.tsx +99 -0
- package/src/components/DemoContainerStyles.tsx +19 -0
- package/src/components/GridItem.tsx +19 -0
- package/src/components/NavDemo/NavDemo.tsx +48 -0
- package/src/components/NavDemo/index.ts +3 -0
- package/src/components/NavDemo/styles.tsx +49 -0
- package/src/components/Page.tsx +23 -0
- package/src/components/ResetScroll.tsx +18 -0
- package/src/components/SbDemoLayout.tsx +30 -0
- package/src/components/StylesCard/StylesCard.tsx +50 -0
- package/src/components/StylesCard/index.ts +3 -0
- package/src/components/StylesCard/styles.tsx +54 -0
- package/src/components/StylesCard/types.ts +16 -0
- package/src/components/index.ts +12 -0
- package/src/components/layouts/MainDemo.tsx +16 -0
- package/src/components/layouts/WrapperDemo.tsx +14 -0
- package/src/data/components.tsx +242 -0
- package/src/data/docgen.json +2909 -0
- package/src/data/french-cities.ts +8683 -0
- package/src/data/index.ts +9 -0
- package/src/data/previews/layouts/Container.preview.tsx +23 -0
- package/src/data/previews/styles/Colors.preview.tsx +29 -0
- package/src/data/previews/styles/Overlays.preview.tsx +29 -0
- package/src/data/previews/styles/Radiuses.preview.tsx +29 -0
- package/src/data/previews/styles/Shadows.preview.tsx +29 -0
- package/src/data/previews/styles/Spacers.preview.tsx +29 -0
- package/src/data/previews/styles/ThemeProvider.preview.tsx +28 -0
- package/src/data/previews/utils/Helpers.preview.tsx +18 -0
- package/src/data/previews/utils/Hooks.preview.tsx +68 -0
- package/src/data/previews/utils/JsUtils.preview.tsx +67 -0
- package/src/data/previews/utils/Mixins.preview.tsx +18 -0
- package/src/data/previews/utils/OptionsMarkdown.tsx +108 -0
- package/src/data/previews/utils/RenderPreview.tsx +52 -0
- package/src/data/previews/utils/Variables.preview.tsx +51 -0
- package/src/data/previews/utils/hooks/index.ts +15 -0
- package/src/data/previews/utils/hooks/useClickOutside.preview.tsx +18 -0
- package/src/data/previews/utils/hooks/useCopyToClipboard.preview.tsx +17 -0
- package/src/data/previews/utils/hooks/useDebounce.preview.tsx +62 -0
- package/src/data/previews/utils/hooks/useExportData.preview.tsx +73 -0
- package/src/data/previews/utils/hooks/useFetch.preview.tsx +29 -0
- package/src/data/previews/utils/hooks/useForm.preview.tsx +39 -0
- package/src/data/previews/utils/hooks/useIsOverflow.preview.tsx +22 -0
- package/src/data/previews/utils/hooks/useKeyPress.preview.tsx +15 -0
- package/src/data/previews/utils/hooks/useMaxWidth.preview.tsx +7 -0
- package/src/data/previews/utils/hooks/useMergeRefs.preview.tsx +5 -0
- package/src/data/previews/utils/hooks/useMinWidth.preview.tsx +7 -0
- package/src/data/previews/utils/hooks/usePaginatedData.preview.tsx +12 -0
- package/src/data/previews/utils/hooks/usePagination.preview.tsx +12 -0
- package/src/data/previews/utils/hooks/useTouchScreen.preview.tsx +7 -0
- package/src/data/previews/utils/hooks/useTranslation.preview.tsx +44 -0
- package/src/data/site-data.ts +7 -0
- package/src/data/styles/all-colors.ts +908 -0
- package/src/data/styles/all-font-families.ts +16 -0
- package/src/data/styles/all-font-sizes.ts +82 -0
- package/src/data/styles/all-font-weights.ts +22 -0
- package/src/data/styles/all-layouts.ts +60 -0
- package/src/data/styles/all-line-heights.ts +16 -0
- package/src/data/styles/all-overlays.ts +43 -0
- package/src/data/styles/all-radiuses.ts +55 -0
- package/src/data/styles/all-shadows.ts +43 -0
- package/src/data/styles/all-spacers.ts +49 -0
- package/src/data/styles/all-transition.ts +22 -0
- package/src/data/styles/index.ts +13 -0
- package/src/data/styles.json +1538 -0
- package/src/data/types.ts +16 -0
- package/src/data/utils/all-helpers.ts +877 -0
- package/src/data/utils/all-js-utils.tsx +484 -0
- package/src/data/utils/all-mixins.ts +207 -0
- package/src/lib/components/Accordion/__preview__/Accordion.preview.tsx +61 -0
- package/src/lib/components/Accordion/__tests__/Accordion.cy.tsx +93 -0
- package/src/lib/components/Accordion/__tests__/data.ts +22 -0
- package/src/lib/components/Alert/__preview__/Alert.preview.tsx +52 -0
- package/src/lib/components/Alert/__tests__/Alert.cy.tsx +97 -0
- package/src/lib/components/Aside/__preview__/Aside.preview.tsx +27 -0
- package/src/lib/components/Autocomplete/__preview__/Autocomplete.preview.tsx +50 -0
- package/src/lib/components/Autocomplete/__tests__/Autocomplete.cy.tsx +38 -0
- package/src/lib/components/Autocomplete/__tests__/Preview.tsx +19 -0
- package/src/lib/components/Avatar/__preview__/Avatar.preview.tsx +82 -0
- package/src/lib/components/Avatar/__tests__/Avatar.cy.tsx +167 -0
- package/src/lib/components/BackToTop/__preview__/BackToTop.preview.tsx +33 -0
- package/src/lib/components/Badge/__preview__/Badge.preview.tsx +74 -0
- package/src/lib/components/Badge/__tests__/Badge.cy.tsx +130 -0
- package/src/lib/components/Breadcrumbs/__preview__/Breadcrumbs.preview.tsx +66 -0
- package/src/lib/components/Breadcrumbs/__tests__/Breadcrumbs.cy.tsx +70 -0
- package/src/lib/components/Breadcrumbs/__tests__/Preview.tsx +0 -0
- package/src/lib/components/Breadcrumbs/__tests__/data.ts +24 -0
- package/src/lib/components/Burger/__preview__/Burger.preview.tsx +60 -0
- package/src/lib/components/Burger/__tests__/Burger.cy.tsx +59 -0
- package/src/lib/components/Burger/__tests__/Preview.tsx +13 -0
- package/src/lib/components/Button/__preview__/Button.preview.tsx +183 -0
- package/src/lib/components/Button/__tests__/Button.cy.tsx +221 -0
- package/src/lib/components/ButtonGroup/__preview__/ButtonGroup.preview.tsx +129 -0
- package/src/lib/components/ButtonGroup/__tests__/ButtonGroup.cy.tsx +184 -0
- package/src/lib/components/ButtonGroup/__tests__/data.ts +33 -0
- package/src/lib/components/ButtonIcon/__preview__/ButtonIcon.preview.tsx +129 -0
- package/src/lib/components/ButtonIcon/__tests__/ButtonIcon.cy.tsx +180 -0
- package/src/lib/components/Card/__preview__/Card.preview.tsx +122 -0
- package/src/lib/components/Card/__tests__/Card.cy.tsx +49 -0
- package/src/lib/components/CodeContainer/CodeContainer.tsx +135 -0
- package/src/lib/components/CodeContainer/__preview__/CodeContainer.preview.tsx +29 -0
- package/src/lib/components/CodeContainer/styles.tsx +65 -0
- package/src/lib/components/Cover/__preview__/Cover.preview.tsx +45 -0
- package/src/lib/components/Cover/__tests__/Cover.cy.tsx +58 -0
- package/src/lib/components/Datepicker/__preview__/Datepicker.preview.tsx +107 -0
- package/src/lib/components/Datepicker/__tests__/Datepicker.cy.tsx +40 -0
- package/src/lib/components/Datepicker/__tests__/Preview.tsx +19 -0
- package/src/lib/components/DragList/__preview__/DragList.preview.tsx +57 -0
- package/src/lib/components/DragList/__tests__/DragList.cy.tsx +25 -0
- package/src/lib/components/DragList/__tests__/Preview.tsx +34 -0
- package/src/lib/components/Drawer/__preview__/Drawer.preview.tsx +67 -0
- package/src/lib/components/Drawer/__tests__/Drawer.cy.tsx +98 -0
- package/src/lib/components/Drawer/__tests__/Preview.tsx +43 -0
- package/src/lib/components/Dropdown/__preview__/Dropdown.preview.tsx +62 -0
- package/src/lib/components/Dropdown/__tests__/Dropdown.cy.tsx +73 -0
- package/src/lib/components/Dropdown/__tests__/Preview.tsx +103 -0
- package/src/lib/components/Fade/__preview__/Fade.preview.tsx +37 -0
- package/src/lib/components/Fieldset/__preview__/Fieldset.preview.tsx +41 -0
- package/src/lib/components/Fieldset/__preview__/Previews.tsx +72 -0
- package/src/lib/components/Flexbox/__preview__/Flexbox.preview.tsx +38 -0
- package/src/lib/components/Flexbox/__tests__/Flexbox.cy.tsx +23 -0
- package/src/lib/components/Footer/__preview__/Footer.preview.tsx +69 -0
- package/src/lib/components/Form/__preview__/Form.preview.tsx +76 -0
- package/src/lib/components/FullBleed/__preview__/FullBleed.preview.tsx +33 -0
- package/src/lib/components/FullBleed/__tests__/FullBleed.cy.tsx +27 -0
- package/src/lib/components/Grid/__preview__/Grid.preview.tsx +37 -0
- package/src/lib/components/Grid/__tests__/Grid.cy.tsx +39 -0
- package/src/lib/components/Header/__preview__/Header.preview.tsx +33 -0
- package/src/lib/components/Header/__tests__/Header.cy.tsx +95 -0
- package/src/lib/components/Helmet/__preview__/Helmet.preview.tsx +26 -0
- package/src/lib/components/Highlight/__preview__/Highlight.preview.tsx +40 -0
- package/src/lib/components/Highlight/__tests__/Highlight.cy.tsx +32 -0
- package/src/lib/components/Hr/__preview__/Hr.preview.tsx +32 -0
- package/src/lib/components/Hr/__tests__/Hr.cy.tsx +69 -0
- package/src/lib/components/Icon/__preview__/Icon.preview.tsx +55 -0
- package/src/lib/components/Icon/__tests__/Icon.cy.tsx +43 -0
- package/src/lib/components/IconMenu/__preview__/IconMenu.preview.tsx +59 -0
- package/src/lib/components/IconMenu/__tests__/IconMenu.cy.tsx +35 -0
- package/src/lib/components/Image/__preview__/Image.preview.tsx +88 -0
- package/src/lib/components/Image/__tests__/Image.cy.tsx +105 -0
- package/src/lib/components/Input/__preview__/Input.demo.tsx +73 -0
- package/src/lib/components/Input/__preview__/Input.preview.tsx +164 -0
- package/src/lib/components/Input/__tests__/Input.cy.tsx +145 -0
- package/src/lib/components/Input/__tests__/Preview.tsx +52 -0
- package/src/lib/components/InputCheck/__preview__/InputCheck.demo.tsx +422 -0
- package/src/lib/components/InputCheck/__preview__/InputCheck.preview.tsx +39 -0
- package/src/lib/components/InputCheck/__tests__/InputCheck.cy.tsx +100 -0
- package/src/lib/components/InputCounter/__preview__/InputCounter.preview.tsx +42 -0
- package/src/lib/components/InputCounter/__tests__/InputCounter.cy.tsx +99 -0
- package/src/lib/components/InputCounter/__tests__/Preview.tsx +58 -0
- package/src/lib/components/InputImage/__preview__/InputImage.demo.tsx +91 -0
- package/src/lib/components/InputImage/__preview__/InputImage.preview.tsx +33 -0
- package/src/lib/components/InputImage/__tests__/InputImage.cy.tsx +85 -0
- package/src/lib/components/InputPhone/__preview__/InputPhone.preview.tsx +76 -0
- package/src/lib/components/InputPhone/__tests__/InputPhone.cy.tsx +52 -0
- package/src/lib/components/InputPhone/__tests__/Preview.tsx +23 -0
- package/src/lib/components/InputPin/__preview__/InputPin.preview.tsx +87 -0
- package/src/lib/components/InputPin/__tests__/InputPin.cy.tsx +43 -0
- package/src/lib/components/InputPin/__tests__/Preview.tsx +28 -0
- package/src/lib/components/InputSlider/__preview__/InputSlider.preview.tsx +57 -0
- package/src/lib/components/InputSlider/__tests__/InputSlider.cy.tsx +56 -0
- package/src/lib/components/InputSlider/__tests__/Preview.tsx +20 -0
- package/src/lib/components/Key/__preview__/Key.preview.tsx +45 -0
- package/src/lib/components/Key/__tests__/Key.cy.tsx +80 -0
- package/src/lib/components/Link/__preview__/Link.preview.tsx +55 -0
- package/src/lib/components/Link/__tests__/Link.cy.tsx +16 -0
- package/src/lib/components/Linkify/__preview__/Linkify.preview.tsx +28 -0
- package/src/lib/components/Linkify/__tests__/Linkify.cy.tsx +28 -0
- package/src/lib/components/ListGroup/__preview__/ListGroup.preview.tsx +102 -0
- package/src/lib/components/ListGroup/__tests__/ListGroup.cy.tsx +85 -0
- package/src/lib/components/ListGroup/__tests__/data.ts +58 -0
- package/src/lib/components/Loader/__preview__/Loader.preview.tsx +39 -0
- package/src/lib/components/Loader/__tests__/Loader.cy.tsx +72 -0
- package/src/lib/components/Main/__preview__/Main.preview.tsx +33 -0
- package/src/lib/components/MarkdownContainer/__preview__/MarkdownContainer.preview.tsx +28 -0
- package/src/lib/components/MarkdownEditor/__preview__/MarkdownEditor.demo.tsx +11 -0
- package/src/lib/components/MarkdownEditor/__preview__/MarkdownEditor.preview.tsx +28 -0
- package/src/lib/components/MarkdownEditor/__tests__/MarkdownEditor.cy.tsx +50 -0
- package/src/lib/components/MarkdownEditor/__tests__/Preview.tsx +11 -0
- package/src/lib/components/Masonry/__preview__/Masonry.preview.tsx +48 -0
- package/src/lib/components/Masonry/__tests__/Masonry.cy.tsx +35 -0
- package/src/lib/components/Messaging/__preview__/Messaging.demo.tsx +39 -0
- package/src/lib/components/Messaging/__preview__/Messaging.preview.tsx +130 -0
- package/src/lib/components/Messaging/__tests__/Messaging.cy.tsx +31 -0
- package/src/lib/components/Messaging/__tests__/Preview.tsx +69 -0
- package/src/lib/components/Modal/__preview__/Modal.preview.tsx +37 -0
- package/src/lib/components/Modal/__preview__/Previews.tsx +65 -0
- package/src/lib/components/Modal/__tests__/Modal.cy.tsx +54 -0
- package/src/lib/components/Modal/__tests__/Preview.tsx +72 -0
- package/src/lib/components/PageLayout/__preview__/PageLayout.preview.tsx +34 -0
- package/src/lib/components/PageLoading/__preview__/PageLoading.preview.tsx +33 -0
- package/src/lib/components/PageLoading/__tests__/PageLoading.cy.tsx +21 -0
- package/src/lib/components/Pagination/__preview__/Pagination.preview.tsx +61 -0
- package/src/lib/components/Pagination/__tests__/Pagination.cy.tsx +51 -0
- package/src/lib/components/Pagination/__tests__/Preview.tsx +76 -0
- package/src/lib/components/Paginator/__preview__/Paginator.preview.tsx +60 -0
- package/src/lib/components/Paginator/__tests__/Paginator.cy.tsx +74 -0
- package/src/lib/components/Paginator/__tests__/Preview.tsx +107 -0
- package/src/lib/components/ProgressBar/__preview__/ProgressBar.preview.tsx +28 -0
- package/src/lib/components/ProgressBar/__tests__/ProgressBar.cy.tsx +63 -0
- package/src/lib/components/ProgressCircle/__preview__/ProgressCircle.preview.tsx +55 -0
- package/src/lib/components/ProgressCircle/__tests__/ProgressCircle.cy.tsx +81 -0
- package/src/lib/components/Rating/__preview__/Rating.preview.tsx +56 -0
- package/src/lib/components/Rating/__tests__/Preview.tsx +28 -0
- package/src/lib/components/Rating/__tests__/Rating.cy.tsx +55 -0
- package/src/lib/components/ResetScroll/__preview__/ResetScroll.preview.tsx +19 -0
- package/src/lib/components/Section/__preview__/Section.preview.tsx +34 -0
- package/src/lib/components/Section/__tests__/Section.cy.tsx +26 -0
- package/src/lib/components/Select/__preview__/Select.preview.tsx +40 -0
- package/src/lib/components/Select/__tests__/Preview.tsx +32 -0
- package/src/lib/components/Select/__tests__/Select.cy.tsx +47 -0
- package/src/lib/components/Skeleton/__preview__/Skeleton.preview.tsx +115 -0
- package/src/lib/components/Skeleton/__tests__/Skeleton.cy.tsx +118 -0
- package/src/lib/components/Slideshow/__preview__/Slideshow.preview.tsx +53 -0
- package/src/lib/components/Slideshow/__tests__/Slideshow.cy.tsx +81 -0
- package/src/lib/components/SrOnly/__preview__/SrOnly.preview.tsx +28 -0
- package/src/lib/components/SrOnly/__tests__/SrOnly.cy.tsx +17 -0
- package/src/lib/components/Stepper/__preview__/Stepper.preview.tsx +63 -0
- package/src/lib/components/Stepper/__tests__/Stepper.cy.tsx +96 -0
- package/src/lib/components/Stepper/__tests__/data.ts +29 -0
- package/src/lib/components/Sticky/__preview__/Sticky.preview.tsx +180 -0
- package/src/lib/components/Table/__preview__/Table.preview.tsx +112 -0
- package/src/lib/components/Table/__tests__/Table.cy.tsx +24 -0
- package/src/lib/components/Tabs/__preview__/Tabs.preview.tsx +64 -0
- package/src/lib/components/Tabs/__tests__/Tabs.cy.tsx +62 -0
- package/src/lib/components/Tabs/__tests__/data.tsx +24 -0
- package/src/lib/components/Tag/__preview__/Tag.preview.tsx +63 -0
- package/src/lib/components/Tag/__tests__/Tag.cy.tsx +155 -0
- package/src/lib/components/Text/__preview__/Text.tsx +35 -0
- package/src/lib/components/Text/__preview__/previews/Description.tsx +20 -0
- package/src/lib/components/Text/__preview__/previews/Ordered.tsx +15 -0
- package/src/lib/components/Text/__preview__/previews/Paragraphs.tsx +37 -0
- package/src/lib/components/Text/__preview__/previews/Quote.tsx +11 -0
- package/src/lib/components/Text/__preview__/previews/Small.tsx +11 -0
- package/src/lib/components/Text/__preview__/previews/TextDisplay.tsx +30 -0
- package/src/lib/components/Text/__preview__/previews/TextTitles.tsx +34 -0
- package/src/lib/components/Text/__preview__/previews/Unordered.tsx +15 -0
- package/src/lib/components/Text/__tests__/Text.cy.tsx +83 -0
- package/src/lib/components/Text/__tests__/utils.ts +7 -0
- package/src/lib/components/TextIcon/__preview__/TextIcon.preview.tsx +29 -0
- package/src/lib/components/TextIcon/__tests__/TextIcon.cy.tsx +131 -0
- package/src/lib/components/Timepicker/__preview__/Timepicker.demo.tsx +70 -0
- package/src/lib/components/Timepicker/__preview__/Timepicker.preview.tsx +60 -0
- package/src/lib/components/Timepicker/__tests__/Preview.tsx +68 -0
- package/src/lib/components/Timepicker/__tests__/Timepicker.cy.tsx +18 -0
- package/src/lib/components/Toast/__preview__/Toast.preview.tsx +32 -0
- package/src/lib/components/Toast/__preview__/Toaster.demo.tsx +79 -0
- package/src/lib/components/Toast/__tests__/Preview.tsx +78 -0
- package/src/lib/components/Toast/__tests__/Toast.cy.tsx +99 -0
- package/src/lib/components/Tooltip/__preview__/Tooltip.preview.tsx +59 -0
- package/src/lib/components/Tooltip/__tests__/Tooltip.cy.tsx +40 -0
- package/src/lib/components/Truncate/__preview__/Truncate.demo.tsx +45 -0
- package/src/lib/components/Truncate/__preview__/Truncate.preview.tsx +19 -0
- package/src/lib/components/Truncate/__tests__/Truncate.cy.tsx +71 -0
- package/src/lib/components/Truncate/__tests__/utils.ts +12 -0
- package/src/lib/components/Video/__preview__/Video.preview.tsx +45 -0
- package/src/lib/components/Video/__tests__/Video.cy.tsx +18 -0
- package/src/lib/components/Wrapper/__preview__/Wrapper.preview.tsx +25 -0
- package/src/lib/components/Youtube/__preview__/Youtube.preview.tsx +28 -0
- package/src/lib/components/Youtube/__tests__/Youtube.cy.tsx +26 -0
- package/src/main.tsx +13 -0
- package/src/pages/404.tsx +20 -0
- package/src/pages/Generate.tsx +505 -0
- package/src/pages/GenerateOLD.tsx +204 -0
- package/src/pages/Homepage.tsx +8 -0
- package/src/pages/components/ComponentPage.tsx +46 -0
- package/src/pages/demos/BackToTopDemo.tsx +176 -0
- package/src/pages/demos/DemoAsideBoth.tsx +37 -0
- package/src/pages/demos/DemoAsideDefault.tsx +25 -0
- package/src/pages/demos/DemoAsideSmall.tsx +29 -0
- package/src/pages/demos/DemoCoverBottom.tsx +27 -0
- package/src/pages/demos/DemoCoverBottomOverlay.tsx +27 -0
- package/src/pages/demos/DemoCoverCenter.tsx +27 -0
- package/src/pages/demos/DemoCoverCenterOverlay.tsx +28 -0
- package/src/pages/demos/DemoHeader.tsx +76 -0
- package/src/pages/demos/DemoMainDefault.tsx +16 -0
- package/src/pages/demos/DemoMainForm.tsx +20 -0
- package/src/pages/demos/DemoMainFull.tsx +126 -0
- package/src/pages/demos/DemoMainLarge.tsx +21 -0
- package/src/pages/demos/DemoMainNumber.tsx +21 -0
- package/src/pages/demos/DemoPageLoading.tsx +18 -0
- package/src/pages/demos/PageLayoutDemo.tsx +53 -0
- package/src/routes/index.tsx +91 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig-types.json +32 -0
- package/tsconfig.app.json +26 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +24 -0
- package/vite.config.ts +49 -0
- package/dist/index.cjs.js +0 -4142
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +0 -22196
- package/dist/index.umd.js +0 -4148
- package/dist/lib/components/CodeContainer/CodeContainer.tsx +0 -129
- package/dist/lib/components/CodeContainer/styles.tsx +0 -65
- package/dist/lib/index.css +0 -1422
- package/dist/styles-BCSPldCD.js +0 -16
- package/dist/styles-CtcGw3Gv.cjs +0 -7
- /package/{dist → src}/lib/Mixins.tsx +0 -0
- /package/{dist → src}/lib/Variables.ts +0 -0
- /package/{dist → src}/lib/components/Accordion/Accordion.tsx +0 -0
- /package/{dist → src}/lib/components/Accordion/AccordionButton.tsx +0 -0
- /package/{dist → src}/lib/components/Accordion/AccordionContent.tsx +0 -0
- /package/{dist → src}/lib/components/Accordion/AccordionItem.tsx +0 -0
- /package/{dist → src}/lib/components/Accordion/index.ts +0 -0
- /package/{dist → src}/lib/components/Accordion/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Accordion/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Accordion/types.ts +0 -0
- /package/{dist → src}/lib/components/Alert/Alert.tsx +0 -0
- /package/{dist → src}/lib/components/Alert/index.ts +0 -0
- /package/{dist → src}/lib/components/Alert/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Alert/types.ts +0 -0
- /package/{dist → src}/lib/components/Aside/Aside.tsx +0 -0
- /package/{dist → src}/lib/components/Aside/index.ts +0 -0
- /package/{dist → src}/lib/components/Aside/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Aside/types.ts +0 -0
- /package/{dist → src}/lib/components/Autocomplete/Autocomplete.tsx +0 -0
- /package/{dist → src}/lib/components/Autocomplete/index.ts +0 -0
- /package/{dist → src}/lib/components/Autocomplete/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Autocomplete/types.ts +0 -0
- /package/{dist → src}/lib/components/Avatar/Avatar.tsx +0 -0
- /package/{dist → src}/lib/components/Avatar/AvatarFunction.tsx +0 -0
- /package/{dist → src}/lib/components/Avatar/index.ts +0 -0
- /package/{dist → src}/lib/components/Avatar/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Avatar/types.ts +0 -0
- /package/{dist → src}/lib/components/BackToTop/BackToTop.tsx +0 -0
- /package/{dist → src}/lib/components/BackToTop/index.ts +0 -0
- /package/{dist → src}/lib/components/BackToTop/styles.tsx +0 -0
- /package/{dist → src}/lib/components/BackToTop/types.ts +0 -0
- /package/{dist → src}/lib/components/Badge/Badge.tsx +0 -0
- /package/{dist → src}/lib/components/Badge/index.ts +0 -0
- /package/{dist → src}/lib/components/Badge/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Badge/types.ts +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/BreadcrumbItem.tsx +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/Breadcrumbs.tsx +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/index.ts +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/types.ts +0 -0
- /package/{dist → src}/lib/components/Burger/Burger.tsx +0 -0
- /package/{dist → src}/lib/components/Burger/index.ts +0 -0
- /package/{dist → src}/lib/components/Burger/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Burger/types.ts +0 -0
- /package/{dist → src}/lib/components/Button/Button.tsx +0 -0
- /package/{dist → src}/lib/components/Button/index.ts +0 -0
- /package/{dist → src}/lib/components/Button/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Button/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Button/types.ts +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/ButtonGroup.tsx +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/ButtonGroupButton.tsx +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/ButtonGroupToggle.tsx +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/index.ts +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/styles.tsx +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/types.ts +0 -0
- /package/{dist → src}/lib/components/ButtonIcon/ButtonFunction.tsx +0 -0
- /package/{dist → src}/lib/components/ButtonIcon/ButtonIcon.tsx +0 -0
- /package/{dist → src}/lib/components/ButtonIcon/index.ts +0 -0
- /package/{dist → src}/lib/components/ButtonIcon/styles.tsx +0 -0
- /package/{dist → src}/lib/components/ButtonIcon/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/ButtonIcon/types.ts +0 -0
- /package/{dist → src}/lib/components/Card/Card.tsx +0 -0
- /package/{dist → src}/lib/components/Card/index.ts +0 -0
- /package/{dist → src}/lib/components/Card/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Card/types.ts +0 -0
- /package/{dist → src}/lib/components/CodeContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/CodeContainer/types.ts +0 -0
- /package/{dist → src}/lib/components/ComponentsMixins/ComponentsMixins.tsx +0 -0
- /package/{dist → src}/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +0 -0
- /package/{dist → src}/lib/components/ComponentsMixins/index.ts +0 -0
- /package/{dist → src}/lib/components/ComponentsMixins/types.ts +0 -0
- /package/{dist → src}/lib/components/Cover/Cover.tsx +0 -0
- /package/{dist → src}/lib/components/Cover/index.ts +0 -0
- /package/{dist → src}/lib/components/Cover/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Cover/types.ts +0 -0
- /package/{dist → src}/lib/components/Datepicker/Calendar.tsx +0 -0
- /package/{dist → src}/lib/components/Datepicker/Datepicker.tsx +0 -0
- /package/{dist → src}/lib/components/Datepicker/data.ts +0 -0
- /package/{dist → src}/lib/components/Datepicker/index.ts +0 -0
- /package/{dist → src}/lib/components/Datepicker/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Datepicker/types.ts +0 -0
- /package/{dist → src}/lib/components/DragList/DragList.tsx +0 -0
- /package/{dist → src}/lib/components/DragList/DragListItem.tsx +0 -0
- /package/{dist → src}/lib/components/DragList/index.ts +0 -0
- /package/{dist → src}/lib/components/DragList/styles.tsx +0 -0
- /package/{dist → src}/lib/components/DragList/types.ts +0 -0
- /package/{dist → src}/lib/components/Drawer/Drawer.tsx +0 -0
- /package/{dist → src}/lib/components/Drawer/index.ts +0 -0
- /package/{dist → src}/lib/components/Drawer/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Drawer/types.ts +0 -0
- /package/{dist → src}/lib/components/Dropdown/Dropdown.tsx +0 -0
- /package/{dist → src}/lib/components/Dropdown/DropdownContainer.tsx +0 -0
- /package/{dist → src}/lib/components/Dropdown/DropdownItem.tsx +0 -0
- /package/{dist → src}/lib/components/Dropdown/index.ts +0 -0
- /package/{dist → src}/lib/components/Dropdown/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Dropdown/types.ts +0 -0
- /package/{dist → src}/lib/components/Fade/Fade.tsx +0 -0
- /package/{dist → src}/lib/components/Fade/index.ts +0 -0
- /package/{dist → src}/lib/components/Fade/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Fade/types.ts +0 -0
- /package/{dist → src}/lib/components/Fallback/Fallback.tsx +0 -0
- /package/{dist → src}/lib/components/Fallback/index.ts +0 -0
- /package/{dist → src}/lib/components/Fieldset/Fieldset.tsx +0 -0
- /package/{dist → src}/lib/components/Fieldset/index.ts +0 -0
- /package/{dist → src}/lib/components/Fieldset/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Fieldset/types.ts +0 -0
- /package/{dist → src}/lib/components/Flexbox/Flexbox.tsx +0 -0
- /package/{dist → src}/lib/components/Flexbox/index.ts +0 -0
- /package/{dist → src}/lib/components/Flexbox/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Flexbox/types.ts +0 -0
- /package/{dist → src}/lib/components/Footer/Footer.tsx +0 -0
- /package/{dist → src}/lib/components/Footer/FooterLink.tsx +0 -0
- /package/{dist → src}/lib/components/Footer/FooterLogo.tsx +0 -0
- /package/{dist → src}/lib/components/Footer/index.ts +0 -0
- /package/{dist → src}/lib/components/Footer/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Footer/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Footer/types.ts +0 -0
- /package/{dist → src}/lib/components/Form/Form.tsx +0 -0
- /package/{dist → src}/lib/components/Form/index.ts +0 -0
- /package/{dist → src}/lib/components/Form/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Form/types.ts +0 -0
- /package/{dist → src}/lib/components/FullBleed/FullBleed.tsx +0 -0
- /package/{dist → src}/lib/components/FullBleed/index.ts +0 -0
- /package/{dist → src}/lib/components/FullBleed/styles.tsx +0 -0
- /package/{dist → src}/lib/components/FullBleed/types.ts +0 -0
- /package/{dist → src}/lib/components/Grid/Grid.tsx +0 -0
- /package/{dist → src}/lib/components/Grid/index.ts +0 -0
- /package/{dist → src}/lib/components/Grid/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Grid/types.ts +0 -0
- /package/{dist → src}/lib/components/Header/Header.tsx +0 -0
- /package/{dist → src}/lib/components/Header/HeaderBurger.tsx +0 -0
- /package/{dist → src}/lib/components/Header/HeaderLogo.tsx +0 -0
- /package/{dist → src}/lib/components/Header/HeaderNav.tsx +0 -0
- /package/{dist → src}/lib/components/Header/HeaderNavLink.tsx +0 -0
- /package/{dist → src}/lib/components/Header/HeaderSearch.tsx +0 -0
- /package/{dist → src}/lib/components/Header/index.ts +0 -0
- /package/{dist → src}/lib/components/Header/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Header/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Header/types.ts +0 -0
- /package/{dist → src}/lib/components/Helmet/Helmet.tsx +0 -0
- /package/{dist → src}/lib/components/Helmet/index.ts +0 -0
- /package/{dist → src}/lib/components/Helmet/types.ts +0 -0
- /package/{dist → src}/lib/components/Highlight/Highlight.tsx +0 -0
- /package/{dist → src}/lib/components/Highlight/index.ts +0 -0
- /package/{dist → src}/lib/components/Highlight/types.ts +0 -0
- /package/{dist → src}/lib/components/Hr/Hr.tsx +0 -0
- /package/{dist → src}/lib/components/Hr/index.ts +0 -0
- /package/{dist → src}/lib/components/Hr/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Hr/types.ts +0 -0
- /package/{dist → src}/lib/components/Icon/Icon.tsx +0 -0
- /package/{dist → src}/lib/components/Icon/index.ts +0 -0
- /package/{dist → src}/lib/components/Icon/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Icon/types.ts +0 -0
- /package/{dist → src}/lib/components/IconMenu/IconMenu.tsx +0 -0
- /package/{dist → src}/lib/components/IconMenu/IconMenuItem.tsx +0 -0
- /package/{dist → src}/lib/components/IconMenu/index.ts +0 -0
- /package/{dist → src}/lib/components/IconMenu/styles.tsx +0 -0
- /package/{dist → src}/lib/components/IconMenu/types.ts +0 -0
- /package/{dist → src}/lib/components/Image/Image.tsx +0 -0
- /package/{dist → src}/lib/components/Image/ImageFunction.tsx +0 -0
- /package/{dist → src}/lib/components/Image/index.ts +0 -0
- /package/{dist → src}/lib/components/Image/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Image/types.ts +0 -0
- /package/{dist → src}/lib/components/Input/Input.tsx +0 -0
- /package/{dist → src}/lib/components/Input/index.ts +0 -0
- /package/{dist → src}/lib/components/Input/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Input/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Input/templates/ColorInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/templates/DateInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/templates/FileInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/templates/PasswordInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/templates/SearchInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/templates/SelectInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/templates/TextInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/templates/TextareaInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/templates/TimeInput.tsx +0 -0
- /package/{dist → src}/lib/components/Input/types.ts +0 -0
- /package/{dist → src}/lib/components/InputCheck/InputCheck.tsx +0 -0
- /package/{dist → src}/lib/components/InputCheck/index.ts +0 -0
- /package/{dist → src}/lib/components/InputCheck/styles.tsx +0 -0
- /package/{dist → src}/lib/components/InputCheck/types.ts +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputAndListContainer.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputButton.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputContainer.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputIcon.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputLeftContainer.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputPrefix.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputRightContainer.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputSuffix.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputValidationHelper.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputValidationIcon.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/InputWrapper.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/ListInput.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/components/ListInputItem.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/index.ts +0 -0
- /package/{dist → src}/lib/components/InputComponents/styles.tsx +0 -0
- /package/{dist → src}/lib/components/InputComponents/types.ts +0 -0
- /package/{dist → src}/lib/components/InputContainer/HelperBottom.tsx +0 -0
- /package/{dist → src}/lib/components/InputContainer/InputContainer.tsx +0 -0
- /package/{dist → src}/lib/components/InputContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/InputContainer/styles.tsx +0 -0
- /package/{dist → src}/lib/components/InputContainer/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/InputContainer/types.ts +0 -0
- /package/{dist → src}/lib/components/InputCounter/InputCounter.tsx +0 -0
- /package/{dist → src}/lib/components/InputCounter/index.ts +0 -0
- /package/{dist → src}/lib/components/InputCounter/styles.tsx +0 -0
- /package/{dist → src}/lib/components/InputCounter/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/InputCounter/types.ts +0 -0
- /package/{dist → src}/lib/components/InputImage/EmptyContainer.tsx +0 -0
- /package/{dist → src}/lib/components/InputImage/HoverContainer.tsx +0 -0
- /package/{dist → src}/lib/components/InputImage/InputImage.tsx +0 -0
- /package/{dist → src}/lib/components/InputImage/index.ts +0 -0
- /package/{dist → src}/lib/components/InputImage/styles.tsx +0 -0
- /package/{dist → src}/lib/components/InputImage/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/InputImage/types.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/InputPhone.tsx +0 -0
- /package/{dist → src}/lib/components/InputPhone/index.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/styles.tsx +0 -0
- /package/{dist → src}/lib/components/InputPhone/types.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/countries.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ac.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ad.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ae.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/af.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ag.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ai.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/al.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/am.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ao.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/aq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ar.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/as.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/at.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/au.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/aw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ax.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/az.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ba.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/be.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/br.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/by.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ca.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cefta.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ch.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ci.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ck.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/co.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/de.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/do.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ea.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ec.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ee.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/er.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ct.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ga.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/et.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ga.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-eng.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-nir.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-sct.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-wls.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ge.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ht.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ic.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/id.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ie.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/il.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/im.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/in.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/io.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/iq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ir.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/is.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/it.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/je.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ke.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ki.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/km.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ky.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/la.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/li.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ls.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ly.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ma.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/md.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/me.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ml.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ms.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/my.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/na.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ne.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ng.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ni.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/no.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/np.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/om.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pe.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ph.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ps.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/py.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/qa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/re.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ro.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/rs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ru.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/rw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/se.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/si.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/so.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ss.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/st.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ta.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/td.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/th.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/to.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ua.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ug.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/um.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/un.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/us.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/uy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/uz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/va.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ve.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/wf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ws.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/xk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/xx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ye.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/yt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/za.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/zm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/zw.svg +0 -0
- /package/{dist → src}/lib/components/InputPin/InputPin.tsx +0 -0
- /package/{dist → src}/lib/components/InputPin/index.ts +0 -0
- /package/{dist → src}/lib/components/InputPin/styles.tsx +0 -0
- /package/{dist → src}/lib/components/InputPin/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/InputPin/types.ts +0 -0
- /package/{dist → src}/lib/components/InputSlider/InputSlider.tsx +0 -0
- /package/{dist → src}/lib/components/InputSlider/Slider.tsx +0 -0
- /package/{dist → src}/lib/components/InputSlider/index.ts +0 -0
- /package/{dist → src}/lib/components/InputSlider/styles.tsx +0 -0
- /package/{dist → src}/lib/components/InputSlider/types.ts +0 -0
- /package/{dist → src}/lib/components/Key/Key.tsx +0 -0
- /package/{dist → src}/lib/components/Key/index.ts +0 -0
- /package/{dist → src}/lib/components/Key/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Key/types.ts +0 -0
- /package/{dist → src}/lib/components/LibIcon/LibIcon.tsx +0 -0
- /package/{dist → src}/lib/components/LibIcon/index.ts +0 -0
- /package/{dist → src}/lib/components/LibIcon/types.ts +0 -0
- /package/{dist → src}/lib/components/Link/Link.tsx +0 -0
- /package/{dist → src}/lib/components/Link/index.ts +0 -0
- /package/{dist → src}/lib/components/Link/types.ts +0 -0
- /package/{dist → src}/lib/components/Linkify/Linkify.tsx +0 -0
- /package/{dist → src}/lib/components/Linkify/index.ts +0 -0
- /package/{dist → src}/lib/components/Linkify/types.ts +0 -0
- /package/{dist → src}/lib/components/ListGroup/ListGroup.tsx +0 -0
- /package/{dist → src}/lib/components/ListGroup/ListGroupItem.tsx +0 -0
- /package/{dist → src}/lib/components/ListGroup/ListGroupTitle.tsx +0 -0
- /package/{dist → src}/lib/components/ListGroup/index.ts +0 -0
- /package/{dist → src}/lib/components/ListGroup/styles.tsx +0 -0
- /package/{dist → src}/lib/components/ListGroup/types.ts +0 -0
- /package/{dist → src}/lib/components/Loader/Loader.tsx +0 -0
- /package/{dist → src}/lib/components/Loader/index.ts +0 -0
- /package/{dist → src}/lib/components/Loader/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Loader/templates/LoaderFour.tsx +0 -0
- /package/{dist → src}/lib/components/Loader/templates/LoaderOne.tsx +0 -0
- /package/{dist → src}/lib/components/Loader/templates/LoaderThree.tsx +0 -0
- /package/{dist → src}/lib/components/Loader/templates/LoaderTwo.tsx +0 -0
- /package/{dist → src}/lib/components/Loader/types.ts +0 -0
- /package/{dist → src}/lib/components/Main/Main.tsx +0 -0
- /package/{dist → src}/lib/components/Main/index.ts +0 -0
- /package/{dist → src}/lib/components/Main/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Main/types.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownContainer/MarkdownContainer.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownContainer/styles.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownContainer/types.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/MarkdownEditor.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/MdEditorInput.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/index.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/markdown-buttons.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/styles.tsx +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/types.ts +0 -0
- /package/{dist → src}/lib/components/Masonry/Masonry.tsx +0 -0
- /package/{dist → src}/lib/components/Masonry/index.ts +0 -0
- /package/{dist → src}/lib/components/Masonry/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Masonry/types.ts +0 -0
- /package/{dist → src}/lib/components/Masonry/utils.ts +0 -0
- /package/{dist → src}/lib/components/Messaging/Message.tsx +0 -0
- /package/{dist → src}/lib/components/Messaging/MessageForm.tsx +0 -0
- /package/{dist → src}/lib/components/Messaging/MessagesContainer.tsx +0 -0
- /package/{dist → src}/lib/components/Messaging/MessagesList.tsx +0 -0
- /package/{dist → src}/lib/components/Messaging/Messaging.tsx +0 -0
- /package/{dist → src}/lib/components/Messaging/index.ts +0 -0
- /package/{dist → src}/lib/components/Messaging/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Messaging/types.ts +0 -0
- /package/{dist → src}/lib/components/Modal/Modal.tsx +0 -0
- /package/{dist → src}/lib/components/Modal/index.ts +0 -0
- /package/{dist → src}/lib/components/Modal/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Modal/types.ts +0 -0
- /package/{dist → src}/lib/components/PageLayout/PageLayout.tsx +0 -0
- /package/{dist → src}/lib/components/PageLayout/index.ts +0 -0
- /package/{dist → src}/lib/components/PageLayout/types.ts +0 -0
- /package/{dist → src}/lib/components/PageLoading/PageLoading.tsx +0 -0
- /package/{dist → src}/lib/components/PageLoading/index.ts +0 -0
- /package/{dist → src}/lib/components/PageLoading/styles.tsx +0 -0
- /package/{dist → src}/lib/components/PageLoading/types.ts +0 -0
- /package/{dist → src}/lib/components/Pagination/Pagination.tsx +0 -0
- /package/{dist → src}/lib/components/Pagination/PaginationButton.tsx +0 -0
- /package/{dist → src}/lib/components/Pagination/index.ts +0 -0
- /package/{dist → src}/lib/components/Pagination/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Pagination/types.ts +0 -0
- /package/{dist → src}/lib/components/Paginator/Paginator.tsx +0 -0
- /package/{dist → src}/lib/components/Paginator/index.ts +0 -0
- /package/{dist → src}/lib/components/Paginator/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Paginator/types.ts +0 -0
- /package/{dist → src}/lib/components/ProgressBar/ProgressBar.tsx +0 -0
- /package/{dist → src}/lib/components/ProgressBar/index.ts +0 -0
- /package/{dist → src}/lib/components/ProgressBar/styles.tsx +0 -0
- /package/{dist → src}/lib/components/ProgressBar/types.ts +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/Circle.tsx +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/ProgressCircle.tsx +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/ProgressCircleFn.tsx +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/Value.tsx +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/clean-percentage.ts +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/index.ts +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/styles.tsx +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/types.ts +0 -0
- /package/{dist → src}/lib/components/Rating/Rating.tsx +0 -0
- /package/{dist → src}/lib/components/Rating/index.ts +0 -0
- /package/{dist → src}/lib/components/Rating/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Rating/types.ts +0 -0
- /package/{dist → src}/lib/components/ResetScroll/ResetScroll.tsx +0 -0
- /package/{dist → src}/lib/components/ResetScroll/index.ts +0 -0
- /package/{dist → src}/lib/components/Section/Section.tsx +0 -0
- /package/{dist → src}/lib/components/Section/index.ts +0 -0
- /package/{dist → src}/lib/components/Section/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Section/types.ts +0 -0
- /package/{dist → src}/lib/components/Select/Select.tsx +0 -0
- /package/{dist → src}/lib/components/Select/SelectButton.tsx +0 -0
- /package/{dist → src}/lib/components/Select/index.ts +0 -0
- /package/{dist → src}/lib/components/Select/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Select/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Select/types.ts +0 -0
- /package/{dist → src}/lib/components/Skeleton/Skeleton.tsx +0 -0
- /package/{dist → src}/lib/components/Skeleton/SkeletonCard.tsx +0 -0
- /package/{dist → src}/lib/components/Skeleton/SkeletonShine.tsx +0 -0
- /package/{dist → src}/lib/components/Skeleton/index.ts +0 -0
- /package/{dist → src}/lib/components/Skeleton/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Skeleton/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Skeleton/types.ts +0 -0
- /package/{dist → src}/lib/components/Slideshow/Slideshow.tsx +0 -0
- /package/{dist → src}/lib/components/Slideshow/SlideshowButton.tsx +0 -0
- /package/{dist → src}/lib/components/Slideshow/SlideshowPagination.tsx +0 -0
- /package/{dist → src}/lib/components/Slideshow/index.ts +0 -0
- /package/{dist → src}/lib/components/Slideshow/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Slideshow/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Slideshow/types.ts +0 -0
- /package/{dist → src}/lib/components/SrOnly/SrOnly.tsx +0 -0
- /package/{dist → src}/lib/components/SrOnly/index.ts +0 -0
- /package/{dist → src}/lib/components/SrOnly/styles.tsx +0 -0
- /package/{dist → src}/lib/components/SrOnly/types.ts +0 -0
- /package/{dist → src}/lib/components/Stepper/Step.tsx +0 -0
- /package/{dist → src}/lib/components/Stepper/Stepper.tsx +0 -0
- /package/{dist → src}/lib/components/Stepper/index.ts +0 -0
- /package/{dist → src}/lib/components/Stepper/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Stepper/types.ts +0 -0
- /package/{dist → src}/lib/components/Sticky/Sticky.tsx +0 -0
- /package/{dist → src}/lib/components/Sticky/index.ts +0 -0
- /package/{dist → src}/lib/components/Sticky/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Sticky/types.ts +0 -0
- /package/{dist → src}/lib/components/Table/TBody.tsx +0 -0
- /package/{dist → src}/lib/components/Table/THead.tsx +0 -0
- /package/{dist → src}/lib/components/Table/Table.tsx +0 -0
- /package/{dist → src}/lib/components/Table/Td.tsx +0 -0
- /package/{dist → src}/lib/components/Table/Tr.tsx +0 -0
- /package/{dist → src}/lib/components/Table/index.ts +0 -0
- /package/{dist → src}/lib/components/Table/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Table/types.ts +0 -0
- /package/{dist → src}/lib/components/Tabs/TabButton.tsx +0 -0
- /package/{dist → src}/lib/components/Tabs/TabItem.tsx +0 -0
- /package/{dist → src}/lib/components/Tabs/Tabs.tsx +0 -0
- /package/{dist → src}/lib/components/Tabs/TabsButtonsContainer.tsx +0 -0
- /package/{dist → src}/lib/components/Tabs/TabsContainer.tsx +0 -0
- /package/{dist → src}/lib/components/Tabs/index.ts +0 -0
- /package/{dist → src}/lib/components/Tabs/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Tabs/types.ts +0 -0
- /package/{dist → src}/lib/components/Tag/Tag.tsx +0 -0
- /package/{dist → src}/lib/components/Tag/index.ts +0 -0
- /package/{dist → src}/lib/components/Tag/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Tag/types.ts +0 -0
- /package/{dist → src}/lib/components/Text/Text.tsx +0 -0
- /package/{dist → src}/lib/components/Text/index.ts +0 -0
- /package/{dist → src}/lib/components/Text/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Text/subtypes.ts +0 -0
- /package/{dist → src}/lib/components/Text/templates/Blockquote.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/Dl.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/Em.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/H1.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/H2.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/H3.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/H4.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/H5.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/H6.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/Ol.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/P.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/Small.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/Strong.tsx +0 -0
- /package/{dist → src}/lib/components/Text/templates/Ul.tsx +0 -0
- /package/{dist → src}/lib/components/Text/types.ts +0 -0
- /package/{dist → src}/lib/components/TextIcon/TextIcon.tsx +0 -0
- /package/{dist → src}/lib/components/TextIcon/index.ts +0 -0
- /package/{dist → src}/lib/components/TextIcon/styles.tsx +0 -0
- /package/{dist → src}/lib/components/TextIcon/types.ts +0 -0
- /package/{dist → src}/lib/components/TextIcon/utils.ts +0 -0
- /package/{dist → src}/lib/components/Timepicker/Timepicker.tsx +0 -0
- /package/{dist → src}/lib/components/Timepicker/index.ts +0 -0
- /package/{dist → src}/lib/components/Timepicker/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Timepicker/types.ts +0 -0
- /package/{dist → src}/lib/components/Toast/Toast.tsx +0 -0
- /package/{dist → src}/lib/components/Toast/Toaster.tsx +0 -0
- /package/{dist → src}/lib/components/Toast/index.ts +0 -0
- /package/{dist → src}/lib/components/Toast/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Toast/types.ts +0 -0
- /package/{dist → src}/lib/components/Tooltip/Tooltip.tsx +0 -0
- /package/{dist → src}/lib/components/Tooltip/index.ts +0 -0
- /package/{dist → src}/lib/components/Tooltip/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Tooltip/types.ts +0 -0
- /package/{dist → src}/lib/components/Truncate/Truncate.tsx +0 -0
- /package/{dist → src}/lib/components/Truncate/index.ts +0 -0
- /package/{dist → src}/lib/components/Truncate/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Truncate/types.ts +0 -0
- /package/{dist → src}/lib/components/Video/Video.tsx +0 -0
- /package/{dist → src}/lib/components/Video/index.ts +0 -0
- /package/{dist → src}/lib/components/Video/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Video/types.ts +0 -0
- /package/{dist → src}/lib/components/Wrapper/Wrapper.tsx +0 -0
- /package/{dist → src}/lib/components/Wrapper/index.ts +0 -0
- /package/{dist → src}/lib/components/Wrapper/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Wrapper/types.ts +0 -0
- /package/{dist → src}/lib/components/Youtube/Youtube.tsx +0 -0
- /package/{dist → src}/lib/components/Youtube/index.ts +0 -0
- /package/{dist → src}/lib/components/Youtube/styles.tsx +0 -0
- /package/{dist → src}/lib/components/Youtube/types.ts +0 -0
- /package/{dist → src}/lib/context/Theme.context.tsx +0 -0
- /package/{dist → src}/lib/context/Toaster/Toaster.context.tsx +0 -0
- /package/{dist → src}/lib/context/Toaster/index.ts +0 -0
- /package/{dist → src}/lib/context/Toaster/toast.reducer.ts +0 -0
- /package/{dist → src}/lib/hooks/index.ts +0 -0
- /package/{dist → src}/lib/hooks/useClickOutside.tsx +0 -0
- /package/{dist → src}/lib/hooks/useCopyToClipboard.tsx +0 -0
- /package/{dist → src}/lib/hooks/useDebounce.tsx +0 -0
- /package/{dist → src}/lib/hooks/useExportData.tsx +0 -0
- /package/{dist → src}/lib/hooks/useFetch.tsx +0 -0
- /package/{dist → src}/lib/hooks/useForm.tsx +0 -0
- /package/{dist → src}/lib/hooks/useIsOverflow.ts +0 -0
- /package/{dist → src}/lib/hooks/useKeyPress.tsx +0 -0
- /package/{dist → src}/lib/hooks/useMaxWidth.tsx +0 -0
- /package/{dist → src}/lib/hooks/useMergeRefs.ts +0 -0
- /package/{dist → src}/lib/hooks/useMinWidth.tsx +0 -0
- /package/{dist → src}/lib/hooks/usePaginatedData.tsx +0 -0
- /package/{dist → src}/lib/hooks/usePagination.tsx +0 -0
- /package/{dist → src}/lib/hooks/useTouchScreen.tsx +0 -0
- /package/{dist → src}/lib/hooks/useTranslation.tsx +0 -0
- /package/{dist → src}/lib/icons/ArrowUp.tsx +0 -0
- /package/{dist → src}/lib/icons/Bold.tsx +0 -0
- /package/{dist → src}/lib/icons/Calendar.tsx +0 -0
- /package/{dist → src}/lib/icons/CaretDown.tsx +0 -0
- /package/{dist → src}/lib/icons/Check.tsx +0 -0
- /package/{dist → src}/lib/icons/CheckCircle.tsx +0 -0
- /package/{dist → src}/lib/icons/ChevronDown.tsx +0 -0
- /package/{dist → src}/lib/icons/ChevronLeft.tsx +0 -0
- /package/{dist → src}/lib/icons/ChevronRight.tsx +0 -0
- /package/{dist → src}/lib/icons/ChevronUp.tsx +0 -0
- /package/{dist → src}/lib/icons/Clipboard.tsx +0 -0
- /package/{dist → src}/lib/icons/Clock.tsx +0 -0
- /package/{dist → src}/lib/icons/Close.tsx +0 -0
- /package/{dist → src}/lib/icons/CloseCircle.tsx +0 -0
- /package/{dist → src}/lib/icons/Code.tsx +0 -0
- /package/{dist → src}/lib/icons/CodeBlock.tsx +0 -0
- /package/{dist → src}/lib/icons/Comment.tsx +0 -0
- /package/{dist → src}/lib/icons/Drag.tsx +0 -0
- /package/{dist → src}/lib/icons/Edit.tsx +0 -0
- /package/{dist → src}/lib/icons/EditorCode.tsx +0 -0
- /package/{dist → src}/lib/icons/EditorLive.tsx +0 -0
- /package/{dist → src}/lib/icons/EditorPreview.tsx +0 -0
- /package/{dist → src}/lib/icons/Hide.tsx +0 -0
- /package/{dist → src}/lib/icons/Image.tsx +0 -0
- /package/{dist → src}/lib/icons/Italic.tsx +0 -0
- /package/{dist → src}/lib/icons/Link.tsx +0 -0
- /package/{dist → src}/lib/icons/Minus.tsx +0 -0
- /package/{dist → src}/lib/icons/OrderedList.tsx +0 -0
- /package/{dist → src}/lib/icons/Plus.tsx +0 -0
- /package/{dist → src}/lib/icons/Quote.tsx +0 -0
- /package/{dist → src}/lib/icons/Search.tsx +0 -0
- /package/{dist → src}/lib/icons/Send.tsx +0 -0
- /package/{dist → src}/lib/icons/Separator.tsx +0 -0
- /package/{dist → src}/lib/icons/Show.tsx +0 -0
- /package/{dist → src}/lib/icons/Star.tsx +0 -0
- /package/{dist → src}/lib/icons/StarFull.tsx +0 -0
- /package/{dist → src}/lib/icons/Strikethrough.tsx +0 -0
- /package/{dist → src}/lib/icons/Underline.tsx +0 -0
- /package/{dist → src}/lib/icons/UnorderedList.tsx +0 -0
- /package/{dist → src}/lib/icons/index.ts +0 -0
- /package/{dist → src}/lib/icons/styles.tsx +0 -0
- /package/{dist → src}/lib/icons/types.ts +0 -0
- /package/{dist → src/lib}/index.css +0 -0
- /package/{dist → src}/lib/index.ts +0 -0
- /package/{dist → src}/lib/lib-utils/append-styles.ts +0 -0
- /package/{dist → src}/lib/lib-utils/colors-maps.ts +0 -0
- /package/{dist → src}/lib/lib-utils/get-highlighted-text.tsx +0 -0
- /package/{dist → src}/lib/lib-utils/get-icon-size-from-font.ts +0 -0
- /package/{dist → src}/lib/lib-utils/index.ts +0 -0
- /package/{dist → src}/lib/lib-utils/round-icon-size.ts +0 -0
- /package/{dist → src}/lib/lib-utils/transfom-search-keys.ts +0 -0
- /package/{dist → src}/lib/modules-declare.d.ts +0 -0
- /package/{dist → src}/lib/types/component-items.ts +0 -0
- /package/{dist → src}/lib/types/components-props.ts +0 -0
- /package/{dist → src}/lib/types/generate-int-range.ts +0 -0
- /package/{dist → src}/lib/types/global.ts +0 -0
- /package/{dist → src}/lib/types/index.ts +0 -0
- /package/{dist → src}/lib/types/require-at-least-one.ts +0 -0
- /package/{dist → src}/lib/types/theme.ts +0 -0
- /package/{dist → src}/lib/types/type-values.ts +0 -0
- /package/{dist → src}/lib/utils/StyleSheetManager.tsx +0 -0
- /package/{dist → src}/lib/utils/index.ts +0 -0
- /package/{dist → src}/lib/utils/lib-tokens.json +0 -0
- /package/{dist → src}/lib/utils/linkify-text.tsx +0 -0
- /package/{dist → src}/lib/utils/options-markdown.ts +0 -0
- /package/{dist → src}/lib/utils/set-default-theme.ts +0 -0
|
@@ -0,0 +1,2909 @@
|
|
|
1
|
+
{
|
|
2
|
+
"./src/lib/components/Accordion/AccordionButton.tsx": [
|
|
3
|
+
{
|
|
4
|
+
"description": "",
|
|
5
|
+
"methods": [],
|
|
6
|
+
"displayName": "AccordionButton",
|
|
7
|
+
"props": {
|
|
8
|
+
"isOpen": {
|
|
9
|
+
"required": true,
|
|
10
|
+
"tsType": { "name": "boolean" },
|
|
11
|
+
"description": ""
|
|
12
|
+
},
|
|
13
|
+
"setIsOpen": {
|
|
14
|
+
"required": true,
|
|
15
|
+
"tsType": {
|
|
16
|
+
"name": "Dispatch",
|
|
17
|
+
"elements": [
|
|
18
|
+
{
|
|
19
|
+
"name": "SetStateAction",
|
|
20
|
+
"elements": [{ "name": "boolean" }],
|
|
21
|
+
"raw": "SetStateAction<T>"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"raw": "Dispatch<SetStateAction<T>>"
|
|
25
|
+
},
|
|
26
|
+
"description": ""
|
|
27
|
+
},
|
|
28
|
+
"title": {
|
|
29
|
+
"required": true,
|
|
30
|
+
"tsType": { "name": "string" },
|
|
31
|
+
"description": ""
|
|
32
|
+
},
|
|
33
|
+
"variant": {
|
|
34
|
+
"defaultValue": { "value": "\"basic\"", "computed": false },
|
|
35
|
+
"required": false
|
|
36
|
+
},
|
|
37
|
+
"icon": {
|
|
38
|
+
"defaultValue": { "value": "\"plus\"", "computed": false },
|
|
39
|
+
"required": false
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"composes": ["Pick"]
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"./src/lib/components/Accordion/AccordionContent.tsx": [
|
|
46
|
+
{
|
|
47
|
+
"description": "",
|
|
48
|
+
"methods": [],
|
|
49
|
+
"displayName": "AccordionContent",
|
|
50
|
+
"props": {
|
|
51
|
+
"isOpen": {
|
|
52
|
+
"required": true,
|
|
53
|
+
"tsType": { "name": "boolean" },
|
|
54
|
+
"description": ""
|
|
55
|
+
},
|
|
56
|
+
"children": {
|
|
57
|
+
"required": false,
|
|
58
|
+
"tsType": {
|
|
59
|
+
"name": "union",
|
|
60
|
+
"raw": "ReactNode | Array<ReactNode>",
|
|
61
|
+
"elements": [
|
|
62
|
+
{ "name": "ReactNode" },
|
|
63
|
+
{
|
|
64
|
+
"name": "Array",
|
|
65
|
+
"elements": [{ "name": "ReactNode" }],
|
|
66
|
+
"raw": "Array<ReactNode>"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
"description": ""
|
|
71
|
+
},
|
|
72
|
+
"variant": {
|
|
73
|
+
"defaultValue": { "value": "\"basic\"", "computed": false },
|
|
74
|
+
"required": false
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"composes": ["Pick"]
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"./src/lib/components/Accordion/Accordion.tsx": [
|
|
81
|
+
{
|
|
82
|
+
"description": "@description Returns a Accordion component\n@link https://documentation-components-react.vercel.app/components/accordion\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop items: Array<LibAccordionItem> => only if children is not defined\n@prop children?: ReactChildren => only if items is not defined\n@prop variant?: \"basic\" | \"rounded\"\n@prop icon?: \"plus\" | \"chevron\" | JSX.Element\n\n@type LibAccordionItem\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop title: string\n@prop isOpen?: boolean\n@prop content?: ReactChildren",
|
|
83
|
+
"methods": [],
|
|
84
|
+
"displayName": "Accordion",
|
|
85
|
+
"props": {
|
|
86
|
+
"variant": {
|
|
87
|
+
"defaultValue": { "value": "\"basic\"", "computed": false },
|
|
88
|
+
"required": false
|
|
89
|
+
},
|
|
90
|
+
"icon": {
|
|
91
|
+
"defaultValue": { "value": "\"plus\"", "computed": false },
|
|
92
|
+
"required": false
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"./src/lib/components/Alert/Alert.tsx": [
|
|
98
|
+
{
|
|
99
|
+
"description": "@description Returns a Alert component\n@link https://documentation-components-react.vercel.app/components/alert\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop maxWidth?: number\n@prop textColor?: Any color from the library\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop alertColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"gray\" | \"black\" | \"white\"\n@prop backgroundColor?: Any color from the library => only if alertColor is not defined\n@prop border?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library (only if alertColor is not defined) }",
|
|
100
|
+
"methods": [],
|
|
101
|
+
"displayName": "Alert",
|
|
102
|
+
"props": {
|
|
103
|
+
"textColor": {
|
|
104
|
+
"defaultValue": { "value": "\"font\"", "computed": false },
|
|
105
|
+
"required": false
|
|
106
|
+
},
|
|
107
|
+
"padding": {
|
|
108
|
+
"defaultValue": { "value": "\"s\"", "computed": false },
|
|
109
|
+
"required": false
|
|
110
|
+
},
|
|
111
|
+
"borderRadius": {
|
|
112
|
+
"defaultValue": { "value": "\"m\"", "computed": false },
|
|
113
|
+
"required": false
|
|
114
|
+
},
|
|
115
|
+
"gap": {
|
|
116
|
+
"defaultValue": { "value": "\"xs\"", "computed": false },
|
|
117
|
+
"required": false
|
|
118
|
+
},
|
|
119
|
+
"alertColor": {
|
|
120
|
+
"defaultValue": {
|
|
121
|
+
"value": "\"primary\"",
|
|
122
|
+
"computed": false
|
|
123
|
+
},
|
|
124
|
+
"required": false
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"./src/lib/components/Aside/Aside.tsx": [
|
|
130
|
+
{
|
|
131
|
+
"description": "@description Returns an Aside component\n@link https://documentation-components-react.vercel.app/layouts/container\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop size?: \"default\" | \"small\" | number\n@prop minHeight?: string | number",
|
|
132
|
+
"methods": [],
|
|
133
|
+
"displayName": "Aside",
|
|
134
|
+
"props": {
|
|
135
|
+
"minHeight": {
|
|
136
|
+
"defaultValue": { "value": "\"100vh\"", "computed": false },
|
|
137
|
+
"required": false
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"./src/lib/components/Avatar/Avatar.tsx": [
|
|
143
|
+
{
|
|
144
|
+
"description": "@description Returns a Avatar component\n@link https://documentation-components-react.vercel.app/components/avatar\n@extends HTMLSpanElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLSpanElement>\n@prop size?: number\n@prop border?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop img: string | { src: string; alt: string } => only if letter and icon are not defined\n@prop letter?: string => only if img and icon are not defined\n@prop icon?: string | JSX.Element => only if img and letter are not defined\n@prop iconSize?: number => only if icon is defined\n@prop iconBaseUrl?: number => only if icon is defined\n@prop backgroundColor?: Any color from the library => only if icon or letter are defined\n@prop contentColor?: Any color from the library => only if icon or letter are defined\n@prop badge?: boolean | number | { content?: number; contentColor?: Any color from the library; backgroundColor?: Any color from the library; position?: LibAvatarBadgePosition; size?: number; padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }; outline?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library } }\n@prop containerStyle?: CSSProperties",
|
|
145
|
+
"methods": [],
|
|
146
|
+
"displayName": "Avatar",
|
|
147
|
+
"props": {
|
|
148
|
+
"size": {
|
|
149
|
+
"defaultValue": { "value": "32", "computed": false },
|
|
150
|
+
"required": false
|
|
151
|
+
},
|
|
152
|
+
"borderRadius": {
|
|
153
|
+
"defaultValue": {
|
|
154
|
+
"value": "\"circle\"",
|
|
155
|
+
"computed": false
|
|
156
|
+
},
|
|
157
|
+
"required": false
|
|
158
|
+
},
|
|
159
|
+
"iconSize": {
|
|
160
|
+
"defaultValue": {
|
|
161
|
+
"value": "roundIconSize(size)",
|
|
162
|
+
"computed": true
|
|
163
|
+
},
|
|
164
|
+
"required": false
|
|
165
|
+
},
|
|
166
|
+
"backgroundColor": {
|
|
167
|
+
"defaultValue": {
|
|
168
|
+
"value": "\"primary\"",
|
|
169
|
+
"computed": false
|
|
170
|
+
},
|
|
171
|
+
"required": false
|
|
172
|
+
},
|
|
173
|
+
"contentColor": {
|
|
174
|
+
"defaultValue": {
|
|
175
|
+
"value": "backgroundColor === \"white\"\n? \"primary\"\n: backgroundColor === \"black\"\n? \"white\"\n: \"background\"",
|
|
176
|
+
"computed": false
|
|
177
|
+
},
|
|
178
|
+
"required": false
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"./src/lib/components/Avatar/AvatarFunction.tsx": [
|
|
184
|
+
{
|
|
185
|
+
"description": "",
|
|
186
|
+
"methods": [],
|
|
187
|
+
"displayName": "AvatarFunction",
|
|
188
|
+
"props": {
|
|
189
|
+
"fontSize": {
|
|
190
|
+
"defaultValue": { "value": "\"body\"", "computed": false },
|
|
191
|
+
"required": false
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"./src/lib/components/Autocomplete/Autocomplete.tsx": [
|
|
197
|
+
{
|
|
198
|
+
"description": "@description Returns a Autocomplete component\n@link https://documentation-components-react.vercel.app/components/autocomplete\n@extends HTMLInputElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLInputElement>\n@prop value: string\n@prop setValue: Dispatch<SetStateAction<string>>\n@prop listResults: Array<string>\n@prop emptyText?: string\n@prop listDirection?: \"up\" | \"down\"\n@prop fuzzyOptions?: IFuseOptions<string> => imported from fuse.js\n@prop icons?: { left?: string | JSX.Element; clear?: string | JSX.Element }\n@prop iconSizes?: { left?: number; clear?: number }\n@prop id?: string\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop inputVariant?: \"rounded\" | \"pill\"\n@prop containerStyle?: CSSProperties\n@prop inputAndListContainerStyle?: CSSProperties",
|
|
199
|
+
"methods": [],
|
|
200
|
+
"displayName": "AutocompleteFn",
|
|
201
|
+
"props": {
|
|
202
|
+
"inputVariant": {
|
|
203
|
+
"defaultValue": {
|
|
204
|
+
"value": "\"rounded\"",
|
|
205
|
+
"computed": false
|
|
206
|
+
},
|
|
207
|
+
"required": false
|
|
208
|
+
},
|
|
209
|
+
"emptyText": {
|
|
210
|
+
"defaultValue": {
|
|
211
|
+
"value": "\"No result.\"",
|
|
212
|
+
"computed": false
|
|
213
|
+
},
|
|
214
|
+
"required": false
|
|
215
|
+
},
|
|
216
|
+
"fuzzyOptions": {
|
|
217
|
+
"defaultValue": { "value": "{}", "computed": false },
|
|
218
|
+
"required": false
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
],
|
|
223
|
+
"./src/lib/components/Accordion/AccordionItem.tsx": [
|
|
224
|
+
{
|
|
225
|
+
"description": "@description Returns an item for Accordion component\n@link https://documentation-components-react.vercel.app/components/accordion\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop title: string\n@prop icon?: \"plus\" | \"chevron\" | JSX.Element\n@prop variant?: \"basic\" | \"rounded\"\n@prop defaultOpen?: boolean",
|
|
226
|
+
"methods": [],
|
|
227
|
+
"displayName": "AccordionItem",
|
|
228
|
+
"props": {
|
|
229
|
+
"icon": {
|
|
230
|
+
"defaultValue": { "value": "\"plus\"", "computed": false },
|
|
231
|
+
"required": false
|
|
232
|
+
},
|
|
233
|
+
"defaultOpen": {
|
|
234
|
+
"defaultValue": { "value": "false", "computed": false },
|
|
235
|
+
"required": false
|
|
236
|
+
},
|
|
237
|
+
"variant": {
|
|
238
|
+
"defaultValue": { "value": "\"basic\"", "computed": false },
|
|
239
|
+
"required": false
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"./src/lib/components/BackToTop/BackToTop.tsx": [
|
|
245
|
+
{
|
|
246
|
+
"description": "@description Returns a BackToTop component\n@link https://documentation-components-react.vercel.app/components/back-to-top\n@extends Partial<ILibButtonIcon>\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLButtonElement>\n@prop position?: { left?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | \"unset\"; top?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | \"unset\"; right?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | \"unset\"; bottom?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | \"unset\"; zIndex?: number }",
|
|
247
|
+
"methods": [],
|
|
248
|
+
"displayName": "BackToTop",
|
|
249
|
+
"props": {
|
|
250
|
+
"icon": {
|
|
251
|
+
"defaultValue": {
|
|
252
|
+
"value": "<ArrowUp\n size={roundIconSize(48)}\n data-testid={testid && `${testid}.Button.Icon`}\n className={className && \"IconArrowUp\"}\n/>",
|
|
253
|
+
"computed": false
|
|
254
|
+
},
|
|
255
|
+
"required": false
|
|
256
|
+
},
|
|
257
|
+
"tooltip": {
|
|
258
|
+
"defaultValue": {
|
|
259
|
+
"value": "\"Back to top\"",
|
|
260
|
+
"computed": false
|
|
261
|
+
},
|
|
262
|
+
"required": false
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
],
|
|
267
|
+
"./src/lib/components/Breadcrumbs/BreadcrumbItem.tsx": [
|
|
268
|
+
{
|
|
269
|
+
"description": "",
|
|
270
|
+
"methods": [],
|
|
271
|
+
"displayName": "BreadcrumbItem",
|
|
272
|
+
"props": {
|
|
273
|
+
"item": {
|
|
274
|
+
"required": true,
|
|
275
|
+
"tsType": {
|
|
276
|
+
"name": "intersection",
|
|
277
|
+
"raw": "LibButtonLinkBlank &\nLibComponentItemBase<HTMLAnchorElement & HTMLSpanElement> & {\n text: string | JSX.Element\n}",
|
|
278
|
+
"elements": [
|
|
279
|
+
{
|
|
280
|
+
"name": "union",
|
|
281
|
+
"raw": "| (LibButtonLinkClick & { blank?: never })\n| (LibButtonLinkTo & { blank?: boolean })\n| (LibButtonLinkHref & { blank?: boolean })",
|
|
282
|
+
"elements": [
|
|
283
|
+
{ "name": "unknown" },
|
|
284
|
+
{ "name": "unknown" },
|
|
285
|
+
{ "name": "unknown" }
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "LibComponentItemBase",
|
|
290
|
+
"elements": [
|
|
291
|
+
{
|
|
292
|
+
"name": "intersection",
|
|
293
|
+
"raw": "HTMLAnchorElement & HTMLSpanElement",
|
|
294
|
+
"elements": [
|
|
295
|
+
{ "name": "HTMLAnchorElement" },
|
|
296
|
+
{ "name": "HTMLSpanElement" }
|
|
297
|
+
]
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
"raw": "LibComponentItemBase<HTMLAnchorElement & HTMLSpanElement>"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "signature",
|
|
304
|
+
"type": "object",
|
|
305
|
+
"raw": "{\n text: string | JSX.Element\n}",
|
|
306
|
+
"signature": {
|
|
307
|
+
"properties": [
|
|
308
|
+
{
|
|
309
|
+
"key": "text",
|
|
310
|
+
"value": {
|
|
311
|
+
"name": "union",
|
|
312
|
+
"raw": "string | JSX.Element",
|
|
313
|
+
"elements": [
|
|
314
|
+
{ "name": "string" },
|
|
315
|
+
{ "name": "JSX.Element" }
|
|
316
|
+
],
|
|
317
|
+
"required": true
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
]
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
"description": ""
|
|
326
|
+
},
|
|
327
|
+
"index": {
|
|
328
|
+
"required": true,
|
|
329
|
+
"tsType": { "name": "number" },
|
|
330
|
+
"description": ""
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
"composes": ["Pick"]
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"./src/lib/components/Badge/Badge.tsx": [
|
|
337
|
+
{
|
|
338
|
+
"description": "@description Returns a Badge component\n@link https://documentation-components-react.vercel.app/components/badge\n@extends HTMLSpanElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLSpanElement>\n@prop size?: number\n@prop backgroundColor?: Any color from the library\n@prop contentColor?: Any color from the library\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }\n@prop icon?: string | JSX.Element\n@prop iconSize?: number => only if icon is defined\n@prop iconBaseUrl?: string => only if icon is defined\n@prop number?: number => only if icon is not defined",
|
|
339
|
+
"methods": [],
|
|
340
|
+
"displayName": "Badge",
|
|
341
|
+
"props": {
|
|
342
|
+
"size": {
|
|
343
|
+
"defaultValue": { "value": "16", "computed": false },
|
|
344
|
+
"required": false
|
|
345
|
+
},
|
|
346
|
+
"iconSize": {
|
|
347
|
+
"defaultValue": {
|
|
348
|
+
"value": "roundIconSize(size)",
|
|
349
|
+
"computed": true
|
|
350
|
+
},
|
|
351
|
+
"required": false
|
|
352
|
+
},
|
|
353
|
+
"backgroundColor": {
|
|
354
|
+
"defaultValue": {
|
|
355
|
+
"value": "\"primary\"",
|
|
356
|
+
"computed": false
|
|
357
|
+
},
|
|
358
|
+
"required": false
|
|
359
|
+
},
|
|
360
|
+
"contentColor": {
|
|
361
|
+
"defaultValue": {
|
|
362
|
+
"value": "backgroundColor === \"white\"\n? \"primary\"\n: backgroundColor === \"black\"\n? \"white\"\n: \"background\"",
|
|
363
|
+
"computed": false
|
|
364
|
+
},
|
|
365
|
+
"required": false
|
|
366
|
+
},
|
|
367
|
+
"borderRadius": {
|
|
368
|
+
"defaultValue": { "value": "\"round\"", "computed": false },
|
|
369
|
+
"required": false
|
|
370
|
+
},
|
|
371
|
+
"padding": {
|
|
372
|
+
"defaultValue": {
|
|
373
|
+
"value": "{\n leftRight: \"xs\",\n}",
|
|
374
|
+
"computed": false
|
|
375
|
+
},
|
|
376
|
+
"required": false
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
],
|
|
381
|
+
"./src/lib/components/Burger/Burger.tsx": [
|
|
382
|
+
{
|
|
383
|
+
"description": "@description Returns a Burger component\n@link https://documentation-components-react.vercel.app/components/burger\n@extends HTMLButtonElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLButtonElement>\n@prop isOpen: boolean\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\" | \"currentColor\"\n@prop width?: number\n@prop height?: number\n@prop noHover?: boolean\n@prop borderWidth?: number",
|
|
384
|
+
"methods": [],
|
|
385
|
+
"displayName": "Burger",
|
|
386
|
+
"props": {
|
|
387
|
+
"color": {
|
|
388
|
+
"defaultValue": {
|
|
389
|
+
"value": "\"primary\"",
|
|
390
|
+
"computed": false
|
|
391
|
+
},
|
|
392
|
+
"required": false
|
|
393
|
+
},
|
|
394
|
+
"width": {
|
|
395
|
+
"defaultValue": { "value": "32", "computed": false },
|
|
396
|
+
"required": false
|
|
397
|
+
},
|
|
398
|
+
"height": {
|
|
399
|
+
"defaultValue": { "value": "24", "computed": false },
|
|
400
|
+
"required": false
|
|
401
|
+
},
|
|
402
|
+
"borderWidth": {
|
|
403
|
+
"defaultValue": { "value": "2", "computed": false },
|
|
404
|
+
"required": false
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
],
|
|
409
|
+
"./src/lib/components/Breadcrumbs/BreadcrumbsFn.tsx": [
|
|
410
|
+
{
|
|
411
|
+
"description": "",
|
|
412
|
+
"methods": [],
|
|
413
|
+
"displayName": "BreadcrumbsFn",
|
|
414
|
+
"props": {
|
|
415
|
+
"linksColor": {
|
|
416
|
+
"defaultValue": {
|
|
417
|
+
"value": "\"primary\"",
|
|
418
|
+
"computed": false
|
|
419
|
+
},
|
|
420
|
+
"required": false
|
|
421
|
+
},
|
|
422
|
+
"activeColor": {
|
|
423
|
+
"defaultValue": {
|
|
424
|
+
"value": "\"currentColor\"",
|
|
425
|
+
"computed": false
|
|
426
|
+
},
|
|
427
|
+
"required": false
|
|
428
|
+
},
|
|
429
|
+
"gap": {
|
|
430
|
+
"defaultValue": { "value": "\"xs\"", "computed": false },
|
|
431
|
+
"required": false
|
|
432
|
+
},
|
|
433
|
+
"separator": {
|
|
434
|
+
"defaultValue": { "value": "\"slash\"", "computed": false },
|
|
435
|
+
"required": false
|
|
436
|
+
},
|
|
437
|
+
"separatorColor": {
|
|
438
|
+
"defaultValue": {
|
|
439
|
+
"value": "\"currentColor\"",
|
|
440
|
+
"computed": false
|
|
441
|
+
},
|
|
442
|
+
"required": false
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
],
|
|
447
|
+
"./src/lib/components/Breadcrumbs/Breadcrumbs.tsx": [
|
|
448
|
+
{
|
|
449
|
+
"description": "@description Returns a Breadcrumbs component\n@link https://documentation-components-react.vercel.app/components/breadcrumbs\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType$\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop items: Array<LibBreadcrumbItem> => only if children is not defined\n@prop children?: Array<ReactNode> => only if items is not defined\n@prop linksColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop activeColor?: Any color from the library\n@prop separatorColor?: Any color from the library\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop separator?: \"slash\" | \"chevron\" | JSX.Element\n\n@type LibBreadcrumbItem\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLAnchorElement & HTMLSpanElement>\n@prop text: string",
|
|
450
|
+
"methods": [],
|
|
451
|
+
"displayName": "Breadcrumbs"
|
|
452
|
+
}
|
|
453
|
+
],
|
|
454
|
+
"./src/lib/components/ButtonGroup/ButtonGroupToggle.tsx": [
|
|
455
|
+
{ "description": "", "methods": [], "displayName": "ButtonGroupToggle" }
|
|
456
|
+
],
|
|
457
|
+
"./src/lib/components/ButtonGroup/ButtonGroup.tsx": [
|
|
458
|
+
{
|
|
459
|
+
"description": "@description Returns a ButtonGroup component\n@link https://documentation-components-react.vercel.app/components/button-group\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop buttons: Array<LibButtonGroupButtonItem> => only if toggles is not defined\n@prop name?: string => required when toggles is defined\n@prop toggles: Array<LibButtonGroupToggle> => only if buttons is not defined\n@prop toggleType?: \"single\" | \"multi\" => only if toogles is defined\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop variant?: \"plain\" | \"transparent\" | \"ghost\"\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop size?: \"default\" | \"small\"\n@prop iconBaseUrl?: string\n\n@type LibButtonGroupButtonItem\n@prop onClick?: void => only if `to` or `href` are not defined\n@prop disabled?: boolean => only if `onClick` is defined\n@prop to?: string => only if `onClick` and `href` are not defined\n@prop href?: string => only if `onClick` and `to` are not defined\n@prop blank?: boolean => only if `to` or `href` are defined\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLButtonElement>\n@prop text: string => only if `iconOnly` is not defined\n@prop iconLeft?: string | JSX.Element\n@prop iconRight?: string | JSX.Element\n@prop iconOnly: string | JSX.Element => only if `text` is not defined\n@prop iconSizes?: { left?: number; right?: number; only?: number }\n@prop \"aria-label\"?: string\n\n@type LibButtonGroupToggle\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLInputElement>\n@prop text: string => only if icon is not defined\n@prop icon: string | JSX.Element => only if text is not defined\n@prop iconSize?: number => only if text is not defined\n@prop label?: string => only if text is not defined\n@prop tooltip?: string => only if text is not defined\n@prop showTooltip?: boolean => only if text is not defined",
|
|
460
|
+
"methods": [],
|
|
461
|
+
"displayName": "ButtonGroup",
|
|
462
|
+
"props": {
|
|
463
|
+
"color": {
|
|
464
|
+
"defaultValue": {
|
|
465
|
+
"value": "\"primary\"",
|
|
466
|
+
"computed": false
|
|
467
|
+
},
|
|
468
|
+
"required": false
|
|
469
|
+
},
|
|
470
|
+
"variant": {
|
|
471
|
+
"defaultValue": { "value": "\"plain\"", "computed": false },
|
|
472
|
+
"required": false
|
|
473
|
+
},
|
|
474
|
+
"size": {
|
|
475
|
+
"defaultValue": {
|
|
476
|
+
"value": "\"default\"",
|
|
477
|
+
"computed": false
|
|
478
|
+
},
|
|
479
|
+
"required": false
|
|
480
|
+
},
|
|
481
|
+
"borderRadius": {
|
|
482
|
+
"defaultValue": {
|
|
483
|
+
"value": "size === \"small\" ? \"s\" : \"m\"",
|
|
484
|
+
"computed": false
|
|
485
|
+
},
|
|
486
|
+
"required": false
|
|
487
|
+
},
|
|
488
|
+
"toggleType": {
|
|
489
|
+
"defaultValue": {
|
|
490
|
+
"value": "\"single\"",
|
|
491
|
+
"computed": false
|
|
492
|
+
},
|
|
493
|
+
"required": false
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"./src/lib/components/Button/Button.tsx": [
|
|
499
|
+
{
|
|
500
|
+
"description": "@description Returns a Button component\n@link https://documentation-components-react.vercel.app/components/button\n@extends HTMLButtonElement & HTMLAnchorElement & LibButtonLinkBlank\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLButtonElement & HTMLAnchorElement>\n@prop onClick?: void => only if `to` or `href` are not defined\n@prop disabled?: boolean => only if `onClick` is defined\n@prop to?: string => only if `onClick` and `href` are not defined\n@prop href?: string => only if `onClick` and `to` are not defined\n@prop blank?: boolean => only if `to` or `href` are defined\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop shadow?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | { default: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\"; hover: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\"; active: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop size?: \"default\" | \"small\"\n@prop icons?: { left?: string | JSX.Element; right?: string | JSX.Element }\n@prop iconSizes?: { left?: number; right?: number }\n@prop iconBaseUrl?: string\n@prop isLoading?: boolean\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" => only if icons or isLoading are defined\n@prop variant?: \"plain\" | \"outline\" | \"ghost\" | \"transparent\"\n@prop noPadding?: boolean => only if variant is set to transparent\n@prop loaderVariant?: 1 | 2 | 3 | 4 => only if isLoading is defined",
|
|
501
|
+
"methods": [],
|
|
502
|
+
"displayName": "Button",
|
|
503
|
+
"props": {
|
|
504
|
+
"aria-label": {
|
|
505
|
+
"defaultValue": {
|
|
506
|
+
"value": "\"Button\"",
|
|
507
|
+
"computed": false
|
|
508
|
+
},
|
|
509
|
+
"required": false
|
|
510
|
+
},
|
|
511
|
+
"aria-disabled": {
|
|
512
|
+
"defaultValue": { "value": "disabled", "computed": false },
|
|
513
|
+
"required": false
|
|
514
|
+
},
|
|
515
|
+
"color": {
|
|
516
|
+
"defaultValue": {
|
|
517
|
+
"value": "\"primary\"",
|
|
518
|
+
"computed": false
|
|
519
|
+
},
|
|
520
|
+
"required": false
|
|
521
|
+
},
|
|
522
|
+
"size": {
|
|
523
|
+
"defaultValue": {
|
|
524
|
+
"value": "\"default\"",
|
|
525
|
+
"computed": false
|
|
526
|
+
},
|
|
527
|
+
"required": false
|
|
528
|
+
},
|
|
529
|
+
"borderRadius": {
|
|
530
|
+
"defaultValue": {
|
|
531
|
+
"value": "size === \"small\" ? \"s\" : \"m\"",
|
|
532
|
+
"computed": false
|
|
533
|
+
},
|
|
534
|
+
"required": false
|
|
535
|
+
},
|
|
536
|
+
"gap": {
|
|
537
|
+
"defaultValue": { "value": "\"xs\"", "computed": false },
|
|
538
|
+
"required": false
|
|
539
|
+
},
|
|
540
|
+
"variant": {
|
|
541
|
+
"defaultValue": { "value": "\"plain\"", "computed": false },
|
|
542
|
+
"required": false
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
],
|
|
547
|
+
"./src/lib/components/ButtonGroup/ButtonGroupButton.tsx": [
|
|
548
|
+
{ "description": "", "methods": [], "displayName": "ButtonGroupButton" }
|
|
549
|
+
],
|
|
550
|
+
"./src/lib/components/ButtonIcon/ButtonFunction.tsx": [
|
|
551
|
+
{
|
|
552
|
+
"description": "",
|
|
553
|
+
"methods": [],
|
|
554
|
+
"displayName": "ButtonIconFunction"
|
|
555
|
+
}
|
|
556
|
+
],
|
|
557
|
+
"./src/lib/components/ButtonIcon/ButtonIcon.tsx": [
|
|
558
|
+
{
|
|
559
|
+
"description": "@description Returns a ButtonIcon component\n@link https://documentation-components-react.vercel.app/components/button-icon\n@extends HTMLButtonElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLButtonElement & HTMLAnchorElement>\n@prop onClick?: void => only if `to` or `href` are not defined\n@prop disabled?: boolean => only if `onClick` is defined\n@prop to?: string => only if `onClick` and `href` are not defined\n@prop href?: string => only if `onClick` and `to` are not defined\n@prop blank?: boolean => only if `to` or `href` are defined\n@prop icon: string | JSX.Element\n@prop iconSize?: number\n@prop iconBaseUrl?: string\n@prop size?: number\n@prop shadow?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | { default: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\"; hover: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\"; active: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop variant?: \"plain\" | \"ghost\" | \"transparent\"\n@prop showBackgroundHover?: boolean => only if variant is set to transparent\n@prop isLoading?: boolean\n@prop loaderVariant?: 1 | 2 | 3 | 4 => only if isLoading is defined\n@prop loaderBorderWidth?: number => only if loaderVariant is set to 1 | 2 | 3\n@prop tooltip?: string\n@prop showTooltip?: boolean | { position?: \"top\" | \"bottom\" | \"left\" | \"right\"; offset?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; backgroundColor?: Any color from the library; textColor?: Any color from the library; hideArrow?: boolean } => only if tooltip is defined\n@prop containerStyle?: CSSProperties => only if tooltip is defined",
|
|
560
|
+
"methods": [],
|
|
561
|
+
"displayName": "ButtonIcon",
|
|
562
|
+
"props": {
|
|
563
|
+
"size": {
|
|
564
|
+
"defaultValue": { "value": "32", "computed": false },
|
|
565
|
+
"required": false
|
|
566
|
+
},
|
|
567
|
+
"iconSize": {
|
|
568
|
+
"defaultValue": {
|
|
569
|
+
"value": "roundIconSize(size)",
|
|
570
|
+
"computed": true
|
|
571
|
+
},
|
|
572
|
+
"required": false
|
|
573
|
+
},
|
|
574
|
+
"borderRadius": {
|
|
575
|
+
"defaultValue": {
|
|
576
|
+
"value": "\"circle\"",
|
|
577
|
+
"computed": false
|
|
578
|
+
},
|
|
579
|
+
"required": false
|
|
580
|
+
},
|
|
581
|
+
"aria-label": {
|
|
582
|
+
"defaultValue": {
|
|
583
|
+
"value": "capitalize(\n typeof icon === \"string\" ? icon : \"button icon\"\n)",
|
|
584
|
+
"computed": true
|
|
585
|
+
},
|
|
586
|
+
"required": false
|
|
587
|
+
},
|
|
588
|
+
"variant": {
|
|
589
|
+
"defaultValue": { "value": "\"plain\"", "computed": false },
|
|
590
|
+
"required": false
|
|
591
|
+
},
|
|
592
|
+
"loaderBorderWidth": {
|
|
593
|
+
"defaultValue": { "value": "2", "computed": false },
|
|
594
|
+
"required": false
|
|
595
|
+
},
|
|
596
|
+
"aria-disabled": {
|
|
597
|
+
"defaultValue": {
|
|
598
|
+
"value": "isLoading || disabled",
|
|
599
|
+
"computed": false
|
|
600
|
+
},
|
|
601
|
+
"required": false
|
|
602
|
+
},
|
|
603
|
+
"color": {
|
|
604
|
+
"defaultValue": {
|
|
605
|
+
"value": "\"primary\"",
|
|
606
|
+
"computed": false
|
|
607
|
+
},
|
|
608
|
+
"required": false
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
],
|
|
613
|
+
"./src/lib/components/Card/Card.tsx": [
|
|
614
|
+
{
|
|
615
|
+
"description": "@description Returns a Card component\n@link https://documentation-components-react.vercel.app/components/card\n@extends ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop onClick?: void => only if `to` or `href` are not defined\n@prop disabled?: boolean => only if `onClick` is defined\n@prop to?: string => only if `onClick` and `href` are not defined\n@prop href?: string => only if `onClick` and `to` are not defined\n@prop blank?: boolean => only if `to` or `href` are defined\n@prop inline?: boolean\n@prop flexDirection?: CssFlexDirection\n@prop flexWrap?: CssFlexWrap\n@prop justifyContent?: CssJustifyContent\n@prop alignItems?: CssAlignItems\n@prop justifyItems?: CssJustifyItems\n@prop alignContent?: CssAlignContent\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop rowGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }\n@prop border?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop cursor?: CssCursor\n@prop width?: string | number\n@prop height?: string | number\n@prop shadow?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | { default: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\"; hover: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\"; active: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" }\n@prop backgroundColor?: Any color from the library\n@prop textColor?: Any color from the library\n@prop backgroundImg?: { img: string; clip?: CssBackgroundClip; origin?: CssBackgroundOrigin; position?: CssBackgroundPosition; repeat?: CssBackgroundRepeat; size?: CssBackgroundSize }\n@prop textAlign?: CssTextAlign",
|
|
616
|
+
"methods": [],
|
|
617
|
+
"displayName": "Card",
|
|
618
|
+
"props": {
|
|
619
|
+
"width": {
|
|
620
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
621
|
+
"required": false
|
|
622
|
+
},
|
|
623
|
+
"backgroundColor": {
|
|
624
|
+
"defaultValue": {
|
|
625
|
+
"value": "\"background\"",
|
|
626
|
+
"computed": false
|
|
627
|
+
},
|
|
628
|
+
"required": false
|
|
629
|
+
},
|
|
630
|
+
"textColor": {
|
|
631
|
+
"defaultValue": { "value": "\"font\"", "computed": false },
|
|
632
|
+
"required": false
|
|
633
|
+
},
|
|
634
|
+
"textAlign": {
|
|
635
|
+
"defaultValue": { "value": "\"left\"", "computed": false },
|
|
636
|
+
"required": false
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
],
|
|
641
|
+
"./src/lib/components/CodeContainer/CodeContainer.tsx": [
|
|
642
|
+
{
|
|
643
|
+
"description": "@description Returns a CodeContainer component\n@link https://documentation-components-react.vercel.app/components/code-container\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop language?: string => language name\n@prop highlighterProps?: SyntaxHighlighterProps => imported from react-syntax-highlighter\n@prop color?: Any color from the library\n@prop highlighterStyle?: CSSProperties\n@prop hideCopyButton?: boolean\n@prop tooltipTexts?: { copy?: string; copied?: string } => only if hideCopyButton is not set to true\n@prop icons?: { copy?: string | JSX.Element; copied?: string | JSX.Element }\n@prop iconsSizes?: { copy?: number; copied?: number }\n@prop iconsBaseUrl?: string",
|
|
644
|
+
"methods": [],
|
|
645
|
+
"displayName": "CodeContainer",
|
|
646
|
+
"props": {
|
|
647
|
+
"highlighterStyle": {
|
|
648
|
+
"defaultValue": {
|
|
649
|
+
"value": "{\n \"hljs\": {\n \"display\": \"block\",\n \"overflowX\": \"auto\",\n \"padding\": \"0.5em\",\n \"color\": \"#abb2bf\",\n \"background\": \"#282c34\"\n },\n \"hljs-comment\": {\n \"color\": \"#5c6370\",\n \"fontStyle\": \"italic\"\n },\n \"hljs-quote\": {\n \"color\": \"#5c6370\",\n \"fontStyle\": \"italic\"\n },\n \"hljs-doctag\": {\n \"color\": \"#c678dd\"\n },\n \"hljs-keyword\": {\n \"color\": \"#c678dd\"\n },\n \"hljs-formula\": {\n \"color\": \"#c678dd\"\n },\n \"hljs-section\": {\n \"color\": \"#e06c75\"\n },\n \"hljs-name\": {\n \"color\": \"#e06c75\"\n },\n \"hljs-selector-tag\": {\n \"color\": \"#e06c75\"\n },\n \"hljs-deletion\": {\n \"color\": \"#e06c75\"\n },\n \"hljs-subst\": {\n \"color\": \"#e06c75\"\n },\n \"hljs-literal\": {\n \"color\": \"#56b6c2\"\n },\n \"hljs-string\": {\n \"color\": \"#98c379\"\n },\n \"hljs-regexp\": {\n \"color\": \"#98c379\"\n },\n \"hljs-addition\": {\n \"color\": \"#98c379\"\n },\n \"hljs-attribute\": {\n \"color\": \"#98c379\"\n },\n \"hljs-meta-string\": {\n \"color\": \"#98c379\"\n },\n \"hljs-built_in\": {\n \"color\": \"#e6c07b\"\n },\n \"hljs-class .hljs-title\": {\n \"color\": \"#e6c07b\"\n },\n \"hljs-attr\": {\n \"color\": \"#d19a66\"\n },\n \"hljs-variable\": {\n \"color\": \"#d19a66\"\n },\n \"hljs-template-variable\": {\n \"color\": \"#d19a66\"\n },\n \"hljs-type\": {\n \"color\": \"#d19a66\"\n },\n \"hljs-selector-class\": {\n \"color\": \"#d19a66\"\n },\n \"hljs-selector-attr\": {\n \"color\": \"#d19a66\"\n },\n \"hljs-selector-pseudo\": {\n \"color\": \"#d19a66\"\n },\n \"hljs-number\": {\n \"color\": \"#d19a66\"\n },\n \"hljs-symbol\": {\n \"color\": \"#61aeee\"\n },\n \"hljs-bullet\": {\n \"color\": \"#61aeee\"\n },\n \"hljs-link\": {\n \"color\": \"#61aeee\",\n \"textDecoration\": \"underline\"\n },\n \"hljs-meta\": {\n \"color\": \"#61aeee\"\n },\n \"hljs-selector-id\": {\n \"color\": \"#61aeee\"\n },\n \"hljs-title\": {\n \"color\": \"#61aeee\"\n },\n \"hljs-emphasis\": {\n \"fontStyle\": \"italic\"\n },\n \"hljs-strong\": {\n \"fontWeight\": \"bold\"\n }\n}",
|
|
650
|
+
"computed": false
|
|
651
|
+
},
|
|
652
|
+
"required": false
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
],
|
|
657
|
+
"./src/lib/components/Cover/Cover.tsx": [
|
|
658
|
+
{
|
|
659
|
+
"description": "@description Returns a Cover component\n@link https://documentation-components-react.vercel.app/components/cover\n@extends ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop img: string\n@prop alt?: string\n@prop overlay?: \"black-50\" | \"black-80\" | \"white-50\" | \"white-80\" | \"gradient-black\" | \"gradient-white\"\n@prop height?: number | string\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
660
|
+
"methods": [],
|
|
661
|
+
"displayName": "Cover",
|
|
662
|
+
"props": {
|
|
663
|
+
"height": {
|
|
664
|
+
"defaultValue": { "value": "\"100vh\"", "computed": false },
|
|
665
|
+
"required": false
|
|
666
|
+
},
|
|
667
|
+
"gap": {
|
|
668
|
+
"defaultValue": { "value": "\"s\"", "computed": false },
|
|
669
|
+
"required": false
|
|
670
|
+
},
|
|
671
|
+
"flexDirection": {
|
|
672
|
+
"defaultValue": {
|
|
673
|
+
"value": "\"column\"",
|
|
674
|
+
"computed": false
|
|
675
|
+
},
|
|
676
|
+
"required": false
|
|
677
|
+
},
|
|
678
|
+
"justifyContent": {
|
|
679
|
+
"defaultValue": {
|
|
680
|
+
"value": "\"center\"",
|
|
681
|
+
"computed": false
|
|
682
|
+
},
|
|
683
|
+
"required": false
|
|
684
|
+
},
|
|
685
|
+
"alignItems": {
|
|
686
|
+
"defaultValue": {
|
|
687
|
+
"value": "\"center\"",
|
|
688
|
+
"computed": false
|
|
689
|
+
},
|
|
690
|
+
"required": false
|
|
691
|
+
},
|
|
692
|
+
"padding": {
|
|
693
|
+
"defaultValue": { "value": "\"xxl\"", "computed": false },
|
|
694
|
+
"required": false
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
],
|
|
699
|
+
"./src/lib/components/Datepicker/Calendar.tsx": [
|
|
700
|
+
{
|
|
701
|
+
"description": "",
|
|
702
|
+
"methods": [],
|
|
703
|
+
"displayName": "Calendar",
|
|
704
|
+
"props": {
|
|
705
|
+
"isOpen": {
|
|
706
|
+
"required": true,
|
|
707
|
+
"tsType": { "name": "boolean" },
|
|
708
|
+
"description": ""
|
|
709
|
+
},
|
|
710
|
+
"setIsOpen": {
|
|
711
|
+
"required": true,
|
|
712
|
+
"tsType": {
|
|
713
|
+
"name": "Dispatch",
|
|
714
|
+
"elements": [
|
|
715
|
+
{
|
|
716
|
+
"name": "SetStateAction",
|
|
717
|
+
"elements": [{ "name": "boolean" }],
|
|
718
|
+
"raw": "SetStateAction<T>"
|
|
719
|
+
}
|
|
720
|
+
],
|
|
721
|
+
"raw": "Dispatch<SetStateAction<T>>"
|
|
722
|
+
},
|
|
723
|
+
"description": ""
|
|
724
|
+
},
|
|
725
|
+
"calendarDirection": {
|
|
726
|
+
"defaultValue": { "value": "\"down\"", "computed": false },
|
|
727
|
+
"required": false
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
],
|
|
732
|
+
"./src/lib/components/Datepicker/Datepicker.tsx": [
|
|
733
|
+
{
|
|
734
|
+
"description": "@description Returns a Datepicker component\n@link https://documentation-components-react.vercel.app/components/datepicker\n@extends HTMLInputElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLInputElement>\n@prop value: string\n@prop setValue: Dispatch<SetStateAction<string>>\n@prop minDate?: string\n@prop maxDate?: string\n@prop texts?: { weekDays?: { mon?: string; tue?: string; wed?: string; etc. }; months?: { jan?: string; feb?: string; mar?: string; etc. } }\n@prop icons?: { prev?: string | JSX.Element; next?: string | JSX.Element; calendar?: string | JSX.Element; left?: string | JSX.Element }\n@prop iconsSizes?: { prev?: number; next?: number; calendar?: number; left?: number }\n@prop iconsBaseUrl?: string\n@prop calendarDirection?: \"up\" | \"down\"\n@prop inputVariant?: \"rounded\" | \"pill\"\n@prop disabled?: boolean\n@prop tabIndex?: number\n@prop prefix?: string | JSX.Element\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop inputVariant?: \"rounded\" | \"pill\"\n@prop containerStyle?: CSSProperties\n@prop inputAndListContainerStyle?: CSSProperties\n@prop id?: string",
|
|
735
|
+
"methods": [],
|
|
736
|
+
"displayName": "Datepicker",
|
|
737
|
+
"props": {
|
|
738
|
+
"calendarDirection": {
|
|
739
|
+
"defaultValue": { "value": "\"down\"", "computed": false },
|
|
740
|
+
"required": false
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
],
|
|
745
|
+
"./src/lib/components/DragList/DragList.tsx": [
|
|
746
|
+
{
|
|
747
|
+
"description": "@description Returns a DragList component\n@link https://documentation-components-react.vercel.app/components/drag-list\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop items: Array<LibDragListItem> => only if children is not defined\n@prop setItems: Dispatch<SetStateAction<Array<LibDragListItem>>> => only if children is not defined\n@prop hideSeparator?: boolean => only if children is not defined\n@prop children?: ReactChildren => only if items is not defined\n@prop iconDrag?: string | JSX.Element\n@prop iconDragSize?: number\n@prop iconDragBaseUrl?: string\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop border?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library }\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n\n@type LibDragListItem\n@prop data-testid?: string\n@prop className?: string\n@prop id: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop title: string => only if element is not defined\n@prop body?: string => only if element is not defined\n@prop badge?: boolean | ListGroupItemBadgeExtended => only if element and date are not defined\n@prop date?: string | Date => only if element and badge are not defined\n@prop element?: JSX.ELement => only if title and other props are not defined",
|
|
748
|
+
"methods": [],
|
|
749
|
+
"displayName": "DragList",
|
|
750
|
+
"props": {
|
|
751
|
+
"gap": {
|
|
752
|
+
"defaultValue": { "value": "\"s\"", "computed": false },
|
|
753
|
+
"required": false
|
|
754
|
+
},
|
|
755
|
+
"border": {
|
|
756
|
+
"defaultValue": {
|
|
757
|
+
"value": "{ color: \"gray-200\" }",
|
|
758
|
+
"computed": false
|
|
759
|
+
},
|
|
760
|
+
"required": false
|
|
761
|
+
},
|
|
762
|
+
"padding": {
|
|
763
|
+
"defaultValue": { "value": "\"s\"", "computed": false },
|
|
764
|
+
"required": false
|
|
765
|
+
},
|
|
766
|
+
"borderRadius": {
|
|
767
|
+
"defaultValue": { "value": "\"m\"", "computed": false },
|
|
768
|
+
"required": false
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
],
|
|
773
|
+
"./src/lib/components/Dropdown/DropdownContainer.tsx": [
|
|
774
|
+
{
|
|
775
|
+
"description": "@description Returns a DropdownContainer component\n@link https://documentation-components-react.vercel.app/components/dropdown\n@extends ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop isOpen: boolean\n@prop inline?: boolean\n@prop flexDirection?: CssFlexDirection\n@prop flexWrap?: CssFlexWrap\n@prop justifyContent?: CssJustifyContent\n@prop alignItems?: CssAlignItems\n@prop justifyItems?: CssJustifyItems\n@prop alignContent?: CssAlignContent\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop rowGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
776
|
+
"methods": [],
|
|
777
|
+
"displayName": "DropdownContainer"
|
|
778
|
+
}
|
|
779
|
+
],
|
|
780
|
+
"./src/lib/components/Dropdown/DropdownItem.tsx": [
|
|
781
|
+
{
|
|
782
|
+
"description": "@description Returns a DropdownItem component\n@link https://documentation-components-react.vercel.app/components/dropdown\n@extends HTMLButtonElement & HTMLAnchorElement & LibButtonLinkBlankRequired\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLButtonElement & HTMLAnchorElement>\n@prop onClick: void => only if to or href are not defined\n@prop disabled?: boolean => only if onClick is defined\n@prop to: string => only if onClick and href are not defined\n@prop href: string => only if onClick and to are not defined\n@prop blank?: boolean => only if to or href are defined\n@prop accentColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop icon?: string | JSX.Element\n@prop iconSize?: number => only if icon is defined\n@prop iconBaseUrl?: string => only if icon is defined",
|
|
783
|
+
"methods": [],
|
|
784
|
+
"displayName": "DropdownItem",
|
|
785
|
+
"props": {
|
|
786
|
+
"accentColor": {
|
|
787
|
+
"defaultValue": {
|
|
788
|
+
"value": "\"primary\"",
|
|
789
|
+
"computed": false
|
|
790
|
+
},
|
|
791
|
+
"required": false
|
|
792
|
+
},
|
|
793
|
+
"iconSize": {
|
|
794
|
+
"defaultValue": { "value": "16", "computed": false },
|
|
795
|
+
"required": false
|
|
796
|
+
},
|
|
797
|
+
"gap": {
|
|
798
|
+
"defaultValue": { "value": "\"xxs\"", "computed": false },
|
|
799
|
+
"required": false
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
],
|
|
804
|
+
"./src/lib/components/Dropdown/Dropdown.tsx": [
|
|
805
|
+
{
|
|
806
|
+
"description": "@description Returns a Dropdown component\n@link https://documentation-components-react.vercel.app/components/dropdown\n@extends HTMLDivElement\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop data-testid?: string\n@prop isOpen: boolean\n@prop setIsOpen: Dispatch<SetStateAction<boolean>>\n@prop items: Array<LibDropdownItem> => only if children is not defined\n@prop children?: ReactChildren => only if items is not defined\n@prop accentColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop direction?: \"up\" | \"down\"\n@prop maxHeightOpen?: number\n@prop positionFromButton?: number\n@prop shadow?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | null",
|
|
807
|
+
"methods": [],
|
|
808
|
+
"displayName": "Dropdown",
|
|
809
|
+
"props": {
|
|
810
|
+
"accentColor": {
|
|
811
|
+
"defaultValue": {
|
|
812
|
+
"value": "\"primary\"",
|
|
813
|
+
"computed": false
|
|
814
|
+
},
|
|
815
|
+
"required": false
|
|
816
|
+
},
|
|
817
|
+
"direction": {
|
|
818
|
+
"defaultValue": { "value": "\"down\"", "computed": false },
|
|
819
|
+
"required": false
|
|
820
|
+
},
|
|
821
|
+
"maxHeightOpen": {
|
|
822
|
+
"defaultValue": {
|
|
823
|
+
"value": "items ? items.length * 40 : 300",
|
|
824
|
+
"computed": false
|
|
825
|
+
},
|
|
826
|
+
"required": false
|
|
827
|
+
},
|
|
828
|
+
"positionFromButton": {
|
|
829
|
+
"defaultValue": { "value": "34", "computed": false },
|
|
830
|
+
"required": false
|
|
831
|
+
},
|
|
832
|
+
"shadow": {
|
|
833
|
+
"defaultValue": { "value": "\"m\"", "computed": false },
|
|
834
|
+
"required": false
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
],
|
|
839
|
+
"./src/lib/components/Fade/Fade.tsx": [
|
|
840
|
+
{
|
|
841
|
+
"description": "@description Returns a Fade component\n@link https://documentation-components-react.vercel.app/components/fade\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>",
|
|
842
|
+
"methods": [],
|
|
843
|
+
"displayName": "Fade"
|
|
844
|
+
}
|
|
845
|
+
],
|
|
846
|
+
"./src/lib/components/DragList/DragListItem.tsx": [
|
|
847
|
+
{
|
|
848
|
+
"description": "@description Returns a DragList item component\n@link https://documentation-components-react.vercel.app/components/drag-list\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop handleDragStart: (e: DragEvent<HTMLDivElement>, i: number) => void\n@prop handleDragOver: (e: DragEvent<HTMLDivElement>, i: number) => void\n@prop index: number\n@prop item: LibDragListItem => only if children is not defined\n@prop children?: ReactChildren => only if item is not defined\n@prop iconDrag?: string | JSX.Element\n@prop iconDragSize?: number\n@prop iconDragBaseUrl?: string\n\n@type LibDragListItem\n@prop data-testid?: string\n@prop className?: string\n@prop id: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop title: string => only if element is not defined\n@prop body?: string => only if element is not defined\n@prop badge?: boolean | ListGroupItemBadgeExtended => only if element and date are not defined\n@prop date?: string | Date => only if element and badge are not defined\n@prop element?: JSX.ELement => only if title and other props are not defined",
|
|
849
|
+
"methods": [],
|
|
850
|
+
"displayName": "DragListItem",
|
|
851
|
+
"props": {
|
|
852
|
+
"iconDragSize": {
|
|
853
|
+
"defaultValue": { "value": "24", "computed": false },
|
|
854
|
+
"required": false
|
|
855
|
+
},
|
|
856
|
+
"iconDrag": {
|
|
857
|
+
"defaultValue": {
|
|
858
|
+
"value": "<Drag\n data-testid={testid && `${testid}.IconDrag`}\n className={className && \"IconDrag\"}\n size={iconDragSize}\n/>",
|
|
859
|
+
"computed": false
|
|
860
|
+
},
|
|
861
|
+
"required": false
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
"./src/lib/components/Drawer/Drawer.tsx": [
|
|
867
|
+
{
|
|
868
|
+
"description": "@description Returns a Drawer component\n@link https://documentation-components-react.vercel.app/components/drawer\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop isOpen: boolean\n@prop setIsOpen: Dispatch<SetStateAction<boolean>>\n@prop position?: \"left\" | \"right\"\n@prop enableScrollingOpen?: boolean\n@prop disableEsc?: boolean\n@prop backgroundColor?: Any color from the library\n@prop contentColor?: Any color from the library\n@prop linksColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop width?: string | number\n@prop zIndex?: number\n@prop overlayColor?: Any color or overlay from the library\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
869
|
+
"methods": [],
|
|
870
|
+
"displayName": "Drawer",
|
|
871
|
+
"props": {
|
|
872
|
+
"backgroundColor": {
|
|
873
|
+
"defaultValue": {
|
|
874
|
+
"value": "\"primary\"",
|
|
875
|
+
"computed": false
|
|
876
|
+
},
|
|
877
|
+
"required": false
|
|
878
|
+
},
|
|
879
|
+
"contentColor": {
|
|
880
|
+
"defaultValue": {
|
|
881
|
+
"value": "\"background\"",
|
|
882
|
+
"computed": false
|
|
883
|
+
},
|
|
884
|
+
"required": false
|
|
885
|
+
},
|
|
886
|
+
"linksColor": {
|
|
887
|
+
"defaultValue": {
|
|
888
|
+
"value": "\"background\"",
|
|
889
|
+
"computed": false
|
|
890
|
+
},
|
|
891
|
+
"required": false
|
|
892
|
+
},
|
|
893
|
+
"gap": {
|
|
894
|
+
"defaultValue": { "value": "\"s\"", "computed": false },
|
|
895
|
+
"required": false
|
|
896
|
+
},
|
|
897
|
+
"width": {
|
|
898
|
+
"defaultValue": { "value": "\"30vw\"", "computed": false },
|
|
899
|
+
"required": false
|
|
900
|
+
},
|
|
901
|
+
"zIndex": {
|
|
902
|
+
"defaultValue": { "value": "998", "computed": false },
|
|
903
|
+
"required": false
|
|
904
|
+
},
|
|
905
|
+
"overlayColor": {
|
|
906
|
+
"defaultValue": {
|
|
907
|
+
"value": "\"black-80\"",
|
|
908
|
+
"computed": false
|
|
909
|
+
},
|
|
910
|
+
"required": false
|
|
911
|
+
},
|
|
912
|
+
"position": {
|
|
913
|
+
"defaultValue": { "value": "\"right\"", "computed": false },
|
|
914
|
+
"required": false
|
|
915
|
+
},
|
|
916
|
+
"padding": {
|
|
917
|
+
"defaultValue": { "value": "\"l\"", "computed": false },
|
|
918
|
+
"required": false
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
],
|
|
923
|
+
"./src/lib/components/Footer/FooterLink.tsx": [
|
|
924
|
+
{ "description": "", "methods": [], "displayName": "FooterLink" }
|
|
925
|
+
],
|
|
926
|
+
"./src/lib/components/Footer/FooterLogo.tsx": [
|
|
927
|
+
{
|
|
928
|
+
"description": "",
|
|
929
|
+
"methods": [],
|
|
930
|
+
"displayName": "FooterLogo",
|
|
931
|
+
"composes": ["Pick"]
|
|
932
|
+
}
|
|
933
|
+
],
|
|
934
|
+
"./src/lib/components/Footer/Footer.tsx": [
|
|
935
|
+
{
|
|
936
|
+
"description": "@description Returns a Footer component\n@link https://documentation-components-react.vercel.app/components/footer\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop links: Array<LibFooterLink> => required if direction is set to horizontal, only if children is not defined\n@prop logo: string | { img: string => only if text is not defined; text: string => only if img is not defined; alt?: string => only if img is defined; width?: number => only if img is defined; height?: number => only if img is defined } => required if direction is set to horizontal\n@prop children?: ReactChildren\n@prop withSeparator?: boolean\n@prop linksSeparator?: \"dot\" | \"dash\"\n@prop direction?: \"horizontal\" | \"vertical\"\n\n@type LibFooterLink\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLAnchorElement & HTMLButtonElement>\n@prop text: string\n@prop onClick: void => only if to or href are not defined\n@prop disabled?: boolean => only if onClick is defined\n@prop to: string => only if onClick and href are not defined\n@prop href: string => only if onClick and to are not defined\n@prop blank?: boolean => only if to or href are defined",
|
|
937
|
+
"methods": [],
|
|
938
|
+
"displayName": "Footer",
|
|
939
|
+
"props": {
|
|
940
|
+
"direction": {
|
|
941
|
+
"defaultValue": {
|
|
942
|
+
"value": "\"horizontal\"",
|
|
943
|
+
"computed": false
|
|
944
|
+
},
|
|
945
|
+
"required": false
|
|
946
|
+
},
|
|
947
|
+
"linksSeparator": {
|
|
948
|
+
"defaultValue": { "value": "\"dot\"", "computed": false },
|
|
949
|
+
"required": false
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
],
|
|
954
|
+
"./src/lib/components/FullBleed/FullBleed.tsx": [
|
|
955
|
+
{
|
|
956
|
+
"description": "@description Returns a FullBleed component\n@link https://documentation-components-react.vercel.app/components/full-bleed\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop height?: number | string\n@prop aspectRatio?: string\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
957
|
+
"methods": [],
|
|
958
|
+
"displayName": "FullBleed"
|
|
959
|
+
}
|
|
960
|
+
],
|
|
961
|
+
"./src/lib/components/Fieldset/Fieldset.tsx": [
|
|
962
|
+
{
|
|
963
|
+
"description": "@description Returns a Fieldset component\n@link https://documentation-components-react.vercel.app/components/fieldset\n@extends HTMLFieldSetElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLFieldSetElement>\n@prop legend: string\n@prop flexDirection?: CssFlexDirection\n@prop flexWrap?: CssFlexWrap\n@prop justifyContent?: CssJustifyContent\n@prop alignItems?: CssAlignItems\n@prop justifyItems?: CssJustifyItems\n@prop alignContent?: CssAlignContent\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop rowGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }\n@prop border?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop containerStyle?: CSSProperties\n@prop validation?: { status: boolean | undefined; message?: string; iconNotPassed?: string | JSX.Element; iconNotPassedSize?: number; iconPassed?: string | JSX.Element; iconPassedSize?: number; iconBaseUrl?: string }",
|
|
964
|
+
"methods": [],
|
|
965
|
+
"displayName": "Fieldset",
|
|
966
|
+
"props": {
|
|
967
|
+
"flexDirection": {
|
|
968
|
+
"defaultValue": { "value": "\"row\"", "computed": false },
|
|
969
|
+
"required": false
|
|
970
|
+
},
|
|
971
|
+
"flexWrap": {
|
|
972
|
+
"defaultValue": { "value": "\"wrap\"", "computed": false },
|
|
973
|
+
"required": false
|
|
974
|
+
},
|
|
975
|
+
"justifyContent": {
|
|
976
|
+
"defaultValue": {
|
|
977
|
+
"value": "\"flex-start\"",
|
|
978
|
+
"computed": false
|
|
979
|
+
},
|
|
980
|
+
"required": false
|
|
981
|
+
},
|
|
982
|
+
"alignItems": {
|
|
983
|
+
"defaultValue": {
|
|
984
|
+
"value": "\"flex-start\"",
|
|
985
|
+
"computed": false
|
|
986
|
+
},
|
|
987
|
+
"required": false
|
|
988
|
+
},
|
|
989
|
+
"gap": {
|
|
990
|
+
"defaultValue": { "value": "\"m\"", "computed": false },
|
|
991
|
+
"required": false
|
|
992
|
+
},
|
|
993
|
+
"padding": {
|
|
994
|
+
"defaultValue": { "value": "\"s\"", "computed": false },
|
|
995
|
+
"required": false
|
|
996
|
+
},
|
|
997
|
+
"border": {
|
|
998
|
+
"defaultValue": {
|
|
999
|
+
"value": "{ color: \"gray-200\" }",
|
|
1000
|
+
"computed": false
|
|
1001
|
+
},
|
|
1002
|
+
"required": false
|
|
1003
|
+
},
|
|
1004
|
+
"borderRadius": {
|
|
1005
|
+
"defaultValue": { "value": "\"m\"", "computed": false },
|
|
1006
|
+
"required": false
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
],
|
|
1011
|
+
"./src/lib/components/Flexbox/Flexbox.tsx": [
|
|
1012
|
+
{
|
|
1013
|
+
"description": "@description Returns a Flexbox component\n@link https://documentation-components-react.vercel.app/layouts/flexbox\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop inline?: boolean\n@prop flexDirection?: CssFlexDirection\n@prop flexWrap?: CssFlexWrap\n@prop justifyContent?: CssJustifyContent\n@prop alignItems?: CssAlignItems\n@prop justifyItems?: CssJustifyItems\n@prop alignContent?: CssAlignContent\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop rowGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
1014
|
+
"methods": [],
|
|
1015
|
+
"displayName": "Flexbox"
|
|
1016
|
+
}
|
|
1017
|
+
],
|
|
1018
|
+
"./src/lib/components/Form/Form.tsx": [
|
|
1019
|
+
{
|
|
1020
|
+
"description": "@description Returns a Form component\n@link https://documentation-components-react.vercel.app/components/form\n@extends HTMLFormElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLFormElement>\n@prop buttonPrimary?: string | { text: string; iconLeft?: string | JSX.Element; iconRight?: string | JSX.Element; iconLeftSize?: number; iconRightSize?: number }\n@prop buttonSecondary?: { onClick?: void => only if to or href are not defined; disabled?: boolean => only if onClick is defined; to?: string => only if onClick and href are not defined; href?: string => only if onClick and to are not defined; text: string; iconLeft?: string | JSX.Element; iconRight?: string | JSX.Element; iconLeftSize?: number; iconRightSize?: number }\n@prop isLoading?: boolean\n@prop disabled?: boolean\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop maxWidth?: string | number",
|
|
1021
|
+
"methods": [],
|
|
1022
|
+
"displayName": "Form",
|
|
1023
|
+
"props": {
|
|
1024
|
+
"gap": {
|
|
1025
|
+
"defaultValue": { "value": "\"s\"", "computed": false },
|
|
1026
|
+
"required": false
|
|
1027
|
+
},
|
|
1028
|
+
"maxWidth": {
|
|
1029
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
1030
|
+
"required": false
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
],
|
|
1035
|
+
"./src/lib/components/Header/HeaderBurger.tsx": [
|
|
1036
|
+
{ "description": "", "methods": [], "displayName": "HeaderBurger" }
|
|
1037
|
+
],
|
|
1038
|
+
"./src/lib/components/Header/Header.tsx": [
|
|
1039
|
+
{
|
|
1040
|
+
"description": "@description Returns a Header component\n@link https://documentation-components-react.vercel.app/components/header\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop logo: LibHeaderLogo\n@prop links: Array<LibHeaderLink> => only if children is not defined\n@prop children?: ReactChildren => only if links is not defined\n@prop burgerPosition?: LibNavBurgerPosition\n@prop burgerColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\" { closed: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"; open: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\" }\n@prop navDesktopVariant?: LibNavBurgerPosition\n@prop navMobileVariant?: LibNavMobileVariant\n@prop enableScrollingOpen?: boolean\n@prop search?: { pathname: string; queries?: Array<Array<string>>; iconLeft?: string | JSX.Element; iconLeftSize?: number; iconClear?: string | JSX.Element; iconClearSize?: number; iconBaseUrl?: string; placeholder?: string; keyboardShortcut?: Array<string>; showKeys?: boolean; inputBackground?: \"light\" | \"dark\"; maxWidth?: string | number; inputVariant?: \"rounded\" | \"pill\" }\n@prop position?: LibHeaderPosition\n@prop hideOnScroll?: boolean | number => only if position is set to fixed\n@prop variant?: \"primary\" | \"white\" | \"transparent\"\n@prop backgroundColor?: Any color from the library => only if variant is set to primary\n@prop textColor?: Any color from the library => only if variant is set to primary\n@prop linkColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\"",
|
|
1041
|
+
"methods": [],
|
|
1042
|
+
"displayName": "Header",
|
|
1043
|
+
"props": {
|
|
1044
|
+
"variant": {
|
|
1045
|
+
"defaultValue": {
|
|
1046
|
+
"value": "\"primary\"",
|
|
1047
|
+
"computed": false
|
|
1048
|
+
},
|
|
1049
|
+
"required": false
|
|
1050
|
+
},
|
|
1051
|
+
"burgerPosition": {
|
|
1052
|
+
"defaultValue": { "value": "\"right\"", "computed": false },
|
|
1053
|
+
"required": false
|
|
1054
|
+
},
|
|
1055
|
+
"navDesktopVariant": {
|
|
1056
|
+
"defaultValue": { "value": "\"right\"", "computed": false },
|
|
1057
|
+
"required": false
|
|
1058
|
+
},
|
|
1059
|
+
"navMobileVariant": {
|
|
1060
|
+
"defaultValue": {
|
|
1061
|
+
"value": "\"drawer\"",
|
|
1062
|
+
"computed": false
|
|
1063
|
+
},
|
|
1064
|
+
"required": false
|
|
1065
|
+
},
|
|
1066
|
+
"position": {
|
|
1067
|
+
"defaultValue": {
|
|
1068
|
+
"value": "\"relative\"",
|
|
1069
|
+
"computed": false
|
|
1070
|
+
},
|
|
1071
|
+
"required": false
|
|
1072
|
+
},
|
|
1073
|
+
"backgroundColor": {
|
|
1074
|
+
"defaultValue": {
|
|
1075
|
+
"value": "\"primary\"",
|
|
1076
|
+
"computed": false
|
|
1077
|
+
},
|
|
1078
|
+
"required": false
|
|
1079
|
+
},
|
|
1080
|
+
"textColor": {
|
|
1081
|
+
"defaultValue": {
|
|
1082
|
+
"value": "\"background\"",
|
|
1083
|
+
"computed": false
|
|
1084
|
+
},
|
|
1085
|
+
"required": false
|
|
1086
|
+
},
|
|
1087
|
+
"linkColor": {
|
|
1088
|
+
"defaultValue": { "value": "\"white\"", "computed": false },
|
|
1089
|
+
"required": false
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
],
|
|
1094
|
+
"./src/lib/components/Grid/Grid.tsx": [
|
|
1095
|
+
{
|
|
1096
|
+
"description": "@description Returns a Grid component\n@link https://documentation-components-react.vercel.app/layouts/grid\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop inline?: boolean\n@prop col?: number | string\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop rowGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop justifyItems?: CssJustifyItems\n@prop alignItems?: CssAlignItems\n@prop justifyContent?: CssJustifyContent\n@prop alignContent?: CssAlignContent\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
1097
|
+
"methods": [],
|
|
1098
|
+
"displayName": "Grid"
|
|
1099
|
+
}
|
|
1100
|
+
],
|
|
1101
|
+
"./src/lib/components/Header/HeaderLogo.tsx": [
|
|
1102
|
+
{
|
|
1103
|
+
"description": "",
|
|
1104
|
+
"methods": [],
|
|
1105
|
+
"displayName": "HeaderLogo",
|
|
1106
|
+
"props": {
|
|
1107
|
+
"isOpen": {
|
|
1108
|
+
"required": true,
|
|
1109
|
+
"tsType": { "name": "boolean" },
|
|
1110
|
+
"description": ""
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
"composes": ["Pick"]
|
|
1114
|
+
}
|
|
1115
|
+
],
|
|
1116
|
+
"./src/lib/components/Header/HeaderNavLink.tsx": [
|
|
1117
|
+
{
|
|
1118
|
+
"description": "",
|
|
1119
|
+
"methods": [],
|
|
1120
|
+
"displayName": "HeaderNavLink",
|
|
1121
|
+
"props": {
|
|
1122
|
+
"data-testid": {
|
|
1123
|
+
"required": true,
|
|
1124
|
+
"tsType": {
|
|
1125
|
+
"name": "union",
|
|
1126
|
+
"raw": "string | undefined",
|
|
1127
|
+
"elements": [
|
|
1128
|
+
{ "name": "string" },
|
|
1129
|
+
{ "name": "undefined" }
|
|
1130
|
+
]
|
|
1131
|
+
},
|
|
1132
|
+
"description": ""
|
|
1133
|
+
},
|
|
1134
|
+
"className": {
|
|
1135
|
+
"required": true,
|
|
1136
|
+
"tsType": {
|
|
1137
|
+
"name": "union",
|
|
1138
|
+
"raw": "string | undefined",
|
|
1139
|
+
"elements": [
|
|
1140
|
+
{ "name": "string" },
|
|
1141
|
+
{ "name": "undefined" }
|
|
1142
|
+
]
|
|
1143
|
+
},
|
|
1144
|
+
"description": ""
|
|
1145
|
+
},
|
|
1146
|
+
"link": {
|
|
1147
|
+
"required": true,
|
|
1148
|
+
"tsType": {
|
|
1149
|
+
"name": "union",
|
|
1150
|
+
"raw": "LibHeaderLink | JSX.Element | FC",
|
|
1151
|
+
"elements": [
|
|
1152
|
+
{
|
|
1153
|
+
"name": "intersection",
|
|
1154
|
+
"raw": "LibButtonLinkBlankRequired &\nLibComponentItemBase<HTMLAnchorElement & HTMLButtonElement> & {\n text: string\n end?: boolean\n}",
|
|
1155
|
+
"elements": [
|
|
1156
|
+
{
|
|
1157
|
+
"name": "intersection",
|
|
1158
|
+
"raw": "Pick<\n T,\n Exclude<keyof T, Keys>\n> &\n {\n [K in Keys]-?: Required<Pick<T, K>> & Partial<Pick<T, Exclude<Keys, K>>>\n }[Keys]",
|
|
1159
|
+
"elements": [
|
|
1160
|
+
{
|
|
1161
|
+
"name": "Pick",
|
|
1162
|
+
"elements": [
|
|
1163
|
+
{
|
|
1164
|
+
"name": "union",
|
|
1165
|
+
"raw": "| (LibButtonLinkClick & { blank?: never })\n| (LibButtonLinkTo & { blank?: boolean })\n| (LibButtonLinkHref & { blank?: boolean })",
|
|
1166
|
+
"elements": [
|
|
1167
|
+
{
|
|
1168
|
+
"name": "unknown"
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"name": "unknown"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"name": "unknown"
|
|
1175
|
+
}
|
|
1176
|
+
]
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"name": "Exclude",
|
|
1180
|
+
"elements": [
|
|
1181
|
+
{
|
|
1182
|
+
"name": "union",
|
|
1183
|
+
"raw": "| (LibButtonLinkClick & { blank?: never })\n| (LibButtonLinkTo & { blank?: boolean })\n| (LibButtonLinkHref & { blank?: boolean })",
|
|
1184
|
+
"elements": [
|
|
1185
|
+
{
|
|
1186
|
+
"name": "unknown"
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"name": "unknown"
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"name": "unknown"
|
|
1193
|
+
}
|
|
1194
|
+
]
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"name": "union",
|
|
1198
|
+
"raw": "\"to\" | \"href\" | \"onClick\"",
|
|
1199
|
+
"elements": [
|
|
1200
|
+
{
|
|
1201
|
+
"name": "literal",
|
|
1202
|
+
"value": "\"to\""
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"name": "literal",
|
|
1206
|
+
"value": "\"href\""
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"name": "literal",
|
|
1210
|
+
"value": "\"onClick\""
|
|
1211
|
+
}
|
|
1212
|
+
]
|
|
1213
|
+
}
|
|
1214
|
+
],
|
|
1215
|
+
"raw": "Exclude<keyof T, Keys>"
|
|
1216
|
+
}
|
|
1217
|
+
],
|
|
1218
|
+
"raw": "Pick<\n T,\n Exclude<keyof T, Keys>\n>"
|
|
1219
|
+
},
|
|
1220
|
+
{ "name": "unknown" }
|
|
1221
|
+
]
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"name": "LibComponentItemBase",
|
|
1225
|
+
"elements": [
|
|
1226
|
+
{
|
|
1227
|
+
"name": "intersection",
|
|
1228
|
+
"raw": "HTMLAnchorElement & HTMLButtonElement",
|
|
1229
|
+
"elements": [
|
|
1230
|
+
{
|
|
1231
|
+
"name": "HTMLAnchorElement"
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"name": "HTMLButtonElement"
|
|
1235
|
+
}
|
|
1236
|
+
]
|
|
1237
|
+
}
|
|
1238
|
+
],
|
|
1239
|
+
"raw": "LibComponentItemBase<HTMLAnchorElement & HTMLButtonElement>"
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
"name": "signature",
|
|
1243
|
+
"type": "object",
|
|
1244
|
+
"raw": "{\n text: string\n end?: boolean\n}",
|
|
1245
|
+
"signature": {
|
|
1246
|
+
"properties": [
|
|
1247
|
+
{
|
|
1248
|
+
"key": "text",
|
|
1249
|
+
"value": {
|
|
1250
|
+
"name": "string",
|
|
1251
|
+
"required": true
|
|
1252
|
+
}
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"key": "end",
|
|
1256
|
+
"value": {
|
|
1257
|
+
"name": "boolean",
|
|
1258
|
+
"required": false
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
]
|
|
1262
|
+
}
|
|
1263
|
+
}
|
|
1264
|
+
]
|
|
1265
|
+
},
|
|
1266
|
+
{ "name": "JSX.Element" },
|
|
1267
|
+
{ "name": "FC" }
|
|
1268
|
+
]
|
|
1269
|
+
},
|
|
1270
|
+
"description": ""
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
],
|
|
1275
|
+
"./src/lib/components/Header/HeaderNav.tsx": [
|
|
1276
|
+
{
|
|
1277
|
+
"description": "",
|
|
1278
|
+
"methods": [],
|
|
1279
|
+
"displayName": "HeaderNav",
|
|
1280
|
+
"props": {
|
|
1281
|
+
"burgerRef": {
|
|
1282
|
+
"required": true,
|
|
1283
|
+
"tsType": {
|
|
1284
|
+
"name": "RefObject",
|
|
1285
|
+
"elements": [{ "name": "HTMLButtonElement" }],
|
|
1286
|
+
"raw": "RefObject<HTMLButtonElement>"
|
|
1287
|
+
},
|
|
1288
|
+
"description": ""
|
|
1289
|
+
},
|
|
1290
|
+
"isOpen": {
|
|
1291
|
+
"required": true,
|
|
1292
|
+
"tsType": { "name": "boolean" },
|
|
1293
|
+
"description": ""
|
|
1294
|
+
},
|
|
1295
|
+
"headerHeight": {
|
|
1296
|
+
"required": true,
|
|
1297
|
+
"tsType": { "name": "number" },
|
|
1298
|
+
"description": ""
|
|
1299
|
+
},
|
|
1300
|
+
"handleClose": {
|
|
1301
|
+
"required": true,
|
|
1302
|
+
"tsType": {
|
|
1303
|
+
"name": "signature",
|
|
1304
|
+
"type": "function",
|
|
1305
|
+
"raw": "() => void",
|
|
1306
|
+
"signature": {
|
|
1307
|
+
"arguments": [],
|
|
1308
|
+
"return": { "name": "void" }
|
|
1309
|
+
}
|
|
1310
|
+
},
|
|
1311
|
+
"description": ""
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
"composes": ["Pick"]
|
|
1315
|
+
}
|
|
1316
|
+
],
|
|
1317
|
+
"./src/lib/components/Header/HeaderSearch.tsx": [
|
|
1318
|
+
{
|
|
1319
|
+
"description": "",
|
|
1320
|
+
"methods": [],
|
|
1321
|
+
"displayName": "HeaderSearch",
|
|
1322
|
+
"props": {
|
|
1323
|
+
"handleClose": {
|
|
1324
|
+
"required": true,
|
|
1325
|
+
"tsType": {
|
|
1326
|
+
"name": "signature",
|
|
1327
|
+
"type": "function",
|
|
1328
|
+
"raw": "() => void",
|
|
1329
|
+
"signature": {
|
|
1330
|
+
"arguments": [],
|
|
1331
|
+
"return": { "name": "void" }
|
|
1332
|
+
}
|
|
1333
|
+
},
|
|
1334
|
+
"description": ""
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1337
|
+
"composes": ["Pick"]
|
|
1338
|
+
}
|
|
1339
|
+
],
|
|
1340
|
+
"./src/lib/components/Highlight/Highlight.tsx": [
|
|
1341
|
+
{
|
|
1342
|
+
"description": "@description Highlight selected text\n@link https://documentation-components-react.vercel.app/components/highlight\n@extends ILibText\n@prop ref?: ForwardedRef<HTMLHeadingElement & HTMLParagraphElement & HTMLQuoteElement & HTMLUListElement & HTMLOListElement & HTMLDListElement>\n@prop highlightedText: string\n@prop highlightStyle?: CSSProperties\n@prop color?: Any color from the library\n@prop linkColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop textAlign?: CssTextAlign\n@prop tag?: \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"strong\" | \"em\" | \"small\" | \"blockquote\" | \"ul\" | \"ol\" | \"dl\"\n@prop display?: boolean => only if tag is set to h1 to h5",
|
|
1343
|
+
"methods": [],
|
|
1344
|
+
"displayName": "Highlight",
|
|
1345
|
+
"props": {
|
|
1346
|
+
"children": {
|
|
1347
|
+
"defaultValue": { "value": "\"\"", "computed": false },
|
|
1348
|
+
"required": false
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
],
|
|
1353
|
+
"./src/lib/components/Hr/Hr.tsx": [
|
|
1354
|
+
{
|
|
1355
|
+
"description": "@description Returns a Hr component\n@link https://documentation-components-react.vercel.app/components/hr\n@extends HTMLHRElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLHRElement>\n@prop height?: number\n@prop maxWidth?: string | number\n@prop color?: Any color from the library\n@prop margin?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | \"auto\" | \"0 auto\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }\n@prop isRounded?: boolean",
|
|
1356
|
+
"methods": [],
|
|
1357
|
+
"displayName": "Hr",
|
|
1358
|
+
"props": {
|
|
1359
|
+
"height": {
|
|
1360
|
+
"defaultValue": { "value": "1", "computed": false },
|
|
1361
|
+
"required": false
|
|
1362
|
+
},
|
|
1363
|
+
"maxWidth": {
|
|
1364
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
1365
|
+
"required": false
|
|
1366
|
+
},
|
|
1367
|
+
"color": {
|
|
1368
|
+
"defaultValue": {
|
|
1369
|
+
"value": "\"gray-200\"",
|
|
1370
|
+
"computed": false
|
|
1371
|
+
},
|
|
1372
|
+
"required": false
|
|
1373
|
+
},
|
|
1374
|
+
"margin": {
|
|
1375
|
+
"defaultValue": {
|
|
1376
|
+
"value": "\"0 auto\"",
|
|
1377
|
+
"computed": false
|
|
1378
|
+
},
|
|
1379
|
+
"required": false
|
|
1380
|
+
}
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
],
|
|
1384
|
+
"./src/lib/components/Icon/Icon.tsx": [
|
|
1385
|
+
{
|
|
1386
|
+
"description": "@description Returns an Icon component\n@link https://documentation-components-react.vercel.app/components/icon\n@extends Props from react-inlinesvg\n@tutorial To use this component, add the SVG file for the icon you want to render in `/public/icons` folder\n@prop data-testid?: string\n@prop ref?: ForwardedRef<SVGElement>\n@prop src: string\n@prop size?: number\n@prop color?: Any color from the library\n@prop baseUrl?: string",
|
|
1387
|
+
"methods": [],
|
|
1388
|
+
"displayName": "Icon",
|
|
1389
|
+
"props": {
|
|
1390
|
+
"size": {
|
|
1391
|
+
"defaultValue": { "value": "32", "computed": false },
|
|
1392
|
+
"required": false
|
|
1393
|
+
},
|
|
1394
|
+
"color": {
|
|
1395
|
+
"defaultValue": {
|
|
1396
|
+
"value": "\"currentColor\"",
|
|
1397
|
+
"computed": false
|
|
1398
|
+
},
|
|
1399
|
+
"required": false
|
|
1400
|
+
},
|
|
1401
|
+
"baseURL": {
|
|
1402
|
+
"defaultValue": {
|
|
1403
|
+
"value": "\"/icons\"",
|
|
1404
|
+
"computed": false
|
|
1405
|
+
},
|
|
1406
|
+
"required": false
|
|
1407
|
+
}
|
|
1408
|
+
}
|
|
1409
|
+
}
|
|
1410
|
+
],
|
|
1411
|
+
"./src/lib/components/Helmet/Helmet.tsx": [
|
|
1412
|
+
{
|
|
1413
|
+
"description": "@description Returns a Helmet component\n@link https://documentation-components-react.vercel.app/components/helmet\n@extends HelmetProps => imported from react-helmet-async\n@prop title: string\n@prop favicon?: string\n@prop description?: string\n@prop keywords?: string | Array<string>\n@prop author?: string\n@prop type?: string\n@prop cover?: string\n@prop siteName?: string\n@prop language?: string\n@prop children?: ReactChildren",
|
|
1414
|
+
"methods": [],
|
|
1415
|
+
"displayName": "Helmet",
|
|
1416
|
+
"props": {
|
|
1417
|
+
"title": {
|
|
1418
|
+
"required": true,
|
|
1419
|
+
"tsType": { "name": "string" },
|
|
1420
|
+
"description": ""
|
|
1421
|
+
},
|
|
1422
|
+
"favicon": {
|
|
1423
|
+
"required": false,
|
|
1424
|
+
"tsType": { "name": "string" },
|
|
1425
|
+
"description": ""
|
|
1426
|
+
},
|
|
1427
|
+
"description": {
|
|
1428
|
+
"required": false,
|
|
1429
|
+
"tsType": { "name": "string" },
|
|
1430
|
+
"description": ""
|
|
1431
|
+
},
|
|
1432
|
+
"keywords": {
|
|
1433
|
+
"required": false,
|
|
1434
|
+
"tsType": {
|
|
1435
|
+
"name": "union",
|
|
1436
|
+
"raw": "string | Array<string>",
|
|
1437
|
+
"elements": [
|
|
1438
|
+
{ "name": "string" },
|
|
1439
|
+
{
|
|
1440
|
+
"name": "Array",
|
|
1441
|
+
"elements": [{ "name": "string" }],
|
|
1442
|
+
"raw": "Array<string>"
|
|
1443
|
+
}
|
|
1444
|
+
]
|
|
1445
|
+
},
|
|
1446
|
+
"description": ""
|
|
1447
|
+
},
|
|
1448
|
+
"author": {
|
|
1449
|
+
"required": false,
|
|
1450
|
+
"tsType": { "name": "string" },
|
|
1451
|
+
"description": ""
|
|
1452
|
+
},
|
|
1453
|
+
"type": {
|
|
1454
|
+
"required": false,
|
|
1455
|
+
"tsType": { "name": "string" },
|
|
1456
|
+
"description": ""
|
|
1457
|
+
},
|
|
1458
|
+
"cover": {
|
|
1459
|
+
"required": false,
|
|
1460
|
+
"tsType": { "name": "string" },
|
|
1461
|
+
"description": ""
|
|
1462
|
+
},
|
|
1463
|
+
"siteName": {
|
|
1464
|
+
"required": false,
|
|
1465
|
+
"tsType": { "name": "string" },
|
|
1466
|
+
"description": ""
|
|
1467
|
+
},
|
|
1468
|
+
"language": {
|
|
1469
|
+
"required": false,
|
|
1470
|
+
"tsType": { "name": "string" },
|
|
1471
|
+
"description": "",
|
|
1472
|
+
"defaultValue": { "value": "\"en\"", "computed": false }
|
|
1473
|
+
},
|
|
1474
|
+
"children": {
|
|
1475
|
+
"required": false,
|
|
1476
|
+
"tsType": {
|
|
1477
|
+
"name": "union",
|
|
1478
|
+
"raw": "ReactNode | Array<ReactNode>",
|
|
1479
|
+
"elements": [
|
|
1480
|
+
{ "name": "ReactNode" },
|
|
1481
|
+
{
|
|
1482
|
+
"name": "Array",
|
|
1483
|
+
"elements": [{ "name": "ReactNode" }],
|
|
1484
|
+
"raw": "Array<ReactNode>"
|
|
1485
|
+
}
|
|
1486
|
+
]
|
|
1487
|
+
},
|
|
1488
|
+
"description": ""
|
|
1489
|
+
}
|
|
1490
|
+
},
|
|
1491
|
+
"composes": ["HelmetProps"]
|
|
1492
|
+
}
|
|
1493
|
+
],
|
|
1494
|
+
"./src/lib/components/IconMenu/IconMenu.tsx": [
|
|
1495
|
+
{
|
|
1496
|
+
"description": "@description Returns a IconMenu component\n@link https://documentation-components-react.vercel.app/components/icon-menu\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop items: Array<LibIconMenuItem> => only if children is not defined\n@prop children?: ReactChildren => only if items is not defined\n@prop direction?: \"left\" | \"up\" | \"right\" | \"down\"\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop position?: \"relative\" | \"absolute\" | \"fixed\"\n@prop hideTooltips?: boolean\n@prop buttonsVariant?: \"plain\" | \"transparent\" | \"ghost\"\n@prop iconBaseUrl?: string\n@prop icon?: \"plus\" | \"burger\" | { open: string | JSX.Element; close: string | JSX.Element; openSize?: number; closeSize?: number }\n\n@type LibIconMenuItem\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLButtonElement & HTMLAnchorElement>\n@prop label: string\n@prop icon: string | JSX.Element\n@prop iconSize?: number\n@prop onClick: void => only if to or href are not defined\n@prop disabled?: boolean => only if onClick is defined\n@prop to: string => only if onClick and href are not defined\n@prop href: string => only if onClick and to are not defined\n@prop blank?: boolean => only if to or href are defined",
|
|
1497
|
+
"methods": [],
|
|
1498
|
+
"displayName": "IconMenu",
|
|
1499
|
+
"props": {
|
|
1500
|
+
"icon": {
|
|
1501
|
+
"defaultValue": { "value": "\"plus\"", "computed": false },
|
|
1502
|
+
"required": false
|
|
1503
|
+
},
|
|
1504
|
+
"direction": {
|
|
1505
|
+
"defaultValue": { "value": "\"right\"", "computed": false },
|
|
1506
|
+
"required": false
|
|
1507
|
+
},
|
|
1508
|
+
"color": {
|
|
1509
|
+
"defaultValue": {
|
|
1510
|
+
"value": "\"primary\"",
|
|
1511
|
+
"computed": false
|
|
1512
|
+
},
|
|
1513
|
+
"required": false
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1516
|
+
}
|
|
1517
|
+
],
|
|
1518
|
+
"./src/lib/components/Image/Image.tsx": [
|
|
1519
|
+
{
|
|
1520
|
+
"description": "@description Returns an Image component\n@link https://documentation-components-react.vercel.app/components/image\n@extends HTMLImageElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLImageElement>\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop fit?: CssObjectFit\n@prop aspectRatio?: string\n@prop fallback?: JSX.Element\n@prop caption?: string | { text: string; textColor?: Any color from the library; background?: Any color or overlay from the library, except \"gradient-black\" | \"gradient-white\"; as?: ElementType }\n@prop containerStyle?: CSSProperties => only if caption is defined\n@prop containerAs?: ElementType => only if caption is defined",
|
|
1521
|
+
"methods": [],
|
|
1522
|
+
"displayName": "Image",
|
|
1523
|
+
"props": {
|
|
1524
|
+
"width": {
|
|
1525
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
1526
|
+
"required": false
|
|
1527
|
+
},
|
|
1528
|
+
"height": {
|
|
1529
|
+
"defaultValue": { "value": "\"auto\"", "computed": false },
|
|
1530
|
+
"required": false
|
|
1531
|
+
},
|
|
1532
|
+
"fallback": {
|
|
1533
|
+
"defaultValue": {
|
|
1534
|
+
"value": "<Fallback\n $aspectRatio={aspectRatio}\n $width={width}\n $height={height}\n $borderRadius={borderRadius}\n/>",
|
|
1535
|
+
"computed": false
|
|
1536
|
+
},
|
|
1537
|
+
"required": false
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
],
|
|
1542
|
+
"./src/lib/components/Image/ImageFunction.tsx": [
|
|
1543
|
+
{
|
|
1544
|
+
"description": "",
|
|
1545
|
+
"methods": [],
|
|
1546
|
+
"displayName": "ImageFunction",
|
|
1547
|
+
"props": {
|
|
1548
|
+
"width": {
|
|
1549
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
1550
|
+
"required": false
|
|
1551
|
+
},
|
|
1552
|
+
"height": {
|
|
1553
|
+
"defaultValue": { "value": "\"auto\"", "computed": false },
|
|
1554
|
+
"required": false
|
|
1555
|
+
},
|
|
1556
|
+
"loading": {
|
|
1557
|
+
"defaultValue": { "value": "\"lazy\"", "computed": false },
|
|
1558
|
+
"required": false
|
|
1559
|
+
}
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
],
|
|
1563
|
+
"./src/lib/components/IconMenu/IconMenuItem.tsx": [
|
|
1564
|
+
{
|
|
1565
|
+
"description": "@description Returns a IconMenuItem component\n@link https://documentation-components-react.vercel.app/components/icon-menu\n@extends HTMLButtonElement & HTMLAnchorElement & ILibButtonIcon\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLButtonElement & HTMLAnchorElement>\n@prop label: string\n@prop indexPosition: number\n@prop isOpen: boolean\n@prop icon: string | JSX.Element\n@prop iconSize?: number\n@prop direction?: \"left\" | \"up\" | \"right\" | \"down\"\n@prop variant?: \"plain\" | \"transparent\" | \"ghost\"\n@prop iconBaseUrl?: string\n@prop onClick?: void => only if `to` or `href` are not defined\n@prop disabled?: boolean => only if `onClick` is defined\n@prop to?: string => only if `onClick` and `href` are not defined\n@prop href?: string => only if `onClick` and `to` are not defined\n@prop blank?: boolean => only if `to` or `href` are defined\n@prop icon: string | JSX.Element\n@prop iconSize?: number\n@prop iconBaseUrl?: string\n@prop size?: number\n@prop shadow?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | { default: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\"; hover: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\"; active: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop variant?: \"plain\" | \"ghost\" | \"transparent\"\n@prop showBackgroundHover?: boolean => only if variant is set to transparent\n@prop isLoading?: boolean\n@prop loaderVariant?: 1 | 2 | 3 | 4 => only if isLoading is defined\n@prop loaderBorderWidth?: number => only if loaderVariant is set to 1 | 2 | 3\n@prop tooltip?: string\n@prop showTooltip?: boolean | { position?: \"top\" | \"bottom\" | \"left\" | \"right\"; offset?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; backgroundColor?: Any color from the library; textColor?: Any color from the library; hideArrow?: boolean } => only if tooltip is defined\n@prop containerStyle?: CSSProperties => only if tooltip is defined",
|
|
1566
|
+
"methods": [],
|
|
1567
|
+
"displayName": "IconMenuItem",
|
|
1568
|
+
"props": {
|
|
1569
|
+
"variant": {
|
|
1570
|
+
"defaultValue": { "value": "\"ghost\"", "computed": false },
|
|
1571
|
+
"required": false
|
|
1572
|
+
}
|
|
1573
|
+
}
|
|
1574
|
+
}
|
|
1575
|
+
],
|
|
1576
|
+
"./src/lib/components/InputCheck/InputCheck.tsx": [
|
|
1577
|
+
{
|
|
1578
|
+
"description": "@description Returns a InputCheck component\n@link https://documentation-components-react.vercel.app/components/input-check\n@extends HTMLInputElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLInputElement>\n@prop id: string\n@prop label: ReactChildren\n@prop validation?: boolean | undefined\n@prop variant?: \"tile\" | \"toggle\" | \"selector\"\n@prop containerStyle?: CSSProperties\n@prop type?: \"checkbox\" | \"radio\"\n@prop iconCheck?: string | JSX.Element => only if type is set to checkbox\n@prop iconCheckSize?: number => only if type is set to checkbox\n@prop iconBaseUrl?: string => only if type is set to checkbox",
|
|
1579
|
+
"methods": [],
|
|
1580
|
+
"displayName": "InputCheck",
|
|
1581
|
+
"props": {
|
|
1582
|
+
"type": {
|
|
1583
|
+
"defaultValue": {
|
|
1584
|
+
"value": "\"checkbox\"",
|
|
1585
|
+
"computed": false
|
|
1586
|
+
},
|
|
1587
|
+
"required": false
|
|
1588
|
+
},
|
|
1589
|
+
"iconCheckSize": {
|
|
1590
|
+
"defaultValue": { "value": "14", "computed": false },
|
|
1591
|
+
"required": false
|
|
1592
|
+
},
|
|
1593
|
+
"iconCheck": {
|
|
1594
|
+
"defaultValue": {
|
|
1595
|
+
"value": "<Check\n size={iconCheckSize}\n data-testid={\n testid && `${testid}.CheckContainer.Checkbox.Icon`\n }\n className={className && \"Icon\"}\n/>",
|
|
1596
|
+
"computed": false
|
|
1597
|
+
},
|
|
1598
|
+
"required": false
|
|
1599
|
+
}
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
],
|
|
1603
|
+
"./src/lib/components/InputContainer/HelperBottom.tsx": [
|
|
1604
|
+
{ "description": "", "methods": [], "displayName": "HelperBottom" }
|
|
1605
|
+
],
|
|
1606
|
+
"./src/lib/components/InputContainer/InputContainer.tsx": [
|
|
1607
|
+
{
|
|
1608
|
+
"description": "@description Returns a InputContainer component\n@link https://documentation-components-react.vercel.app/components/input-container\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop value?: any\n@prop counter?: boolean\n@prop maxLength?: number\n@prop hasListOpen?: boolean\n@prop style?: CSSProperties\n@prop iconBaseUrl?: string\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }",
|
|
1609
|
+
"methods": [],
|
|
1610
|
+
"displayName": "InputContainer"
|
|
1611
|
+
}
|
|
1612
|
+
],
|
|
1613
|
+
"./src/lib/components/InputCounter/InputCounter.tsx": [
|
|
1614
|
+
{
|
|
1615
|
+
"description": "",
|
|
1616
|
+
"methods": [],
|
|
1617
|
+
"displayName": "InputCounter",
|
|
1618
|
+
"props": {
|
|
1619
|
+
"inputVariant": {
|
|
1620
|
+
"defaultValue": {
|
|
1621
|
+
"value": "\"rounded\"",
|
|
1622
|
+
"computed": false
|
|
1623
|
+
},
|
|
1624
|
+
"required": false
|
|
1625
|
+
},
|
|
1626
|
+
"value": {
|
|
1627
|
+
"defaultValue": { "value": "0", "computed": false },
|
|
1628
|
+
"required": false
|
|
1629
|
+
},
|
|
1630
|
+
"step": {
|
|
1631
|
+
"defaultValue": { "value": "1", "computed": false },
|
|
1632
|
+
"required": false
|
|
1633
|
+
},
|
|
1634
|
+
"iconSizes": {
|
|
1635
|
+
"defaultValue": {
|
|
1636
|
+
"value": "{\n plus: roundIconSize(BUTTON_SIZE),\n minus: roundIconSize(BUTTON_SIZE),\n}",
|
|
1637
|
+
"computed": false
|
|
1638
|
+
},
|
|
1639
|
+
"required": false
|
|
1640
|
+
},
|
|
1641
|
+
"labelButtons": {
|
|
1642
|
+
"defaultValue": {
|
|
1643
|
+
"value": "{\n plus: \"Plus\",\n minus: \"Minus\",\n}",
|
|
1644
|
+
"computed": false
|
|
1645
|
+
},
|
|
1646
|
+
"required": false
|
|
1647
|
+
}
|
|
1648
|
+
}
|
|
1649
|
+
}
|
|
1650
|
+
],
|
|
1651
|
+
"./src/lib/components/InputImage/EmptyContainer.tsx": [
|
|
1652
|
+
{
|
|
1653
|
+
"description": "",
|
|
1654
|
+
"methods": [],
|
|
1655
|
+
"displayName": "EmptyContainer",
|
|
1656
|
+
"composes": ["Pick"]
|
|
1657
|
+
}
|
|
1658
|
+
],
|
|
1659
|
+
"./src/lib/components/InputImage/InputImage.tsx": [
|
|
1660
|
+
{
|
|
1661
|
+
"description": "@description Returns a InputImage component\n@link https://documentation-components-react.vercel.app/components/input-image\n@extends HTMLInputElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLInputElement>\n@prop id: string\n@prop value: string\n@prop width?: string | number\n@prop height?: string | number\n@prop size?: string | number\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop icons?: { empty?: string | JSX.Element; hover?: string | JSX.Element }\n@prop iconSizes?: { empty?: number; hover?: number }\n@prop iconBaseUrl?: string\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop containerStyle?: CSSProperties",
|
|
1662
|
+
"methods": [],
|
|
1663
|
+
"displayName": "InputImage",
|
|
1664
|
+
"props": {
|
|
1665
|
+
"width": {
|
|
1666
|
+
"defaultValue": { "value": "64", "computed": false },
|
|
1667
|
+
"required": false
|
|
1668
|
+
},
|
|
1669
|
+
"height": {
|
|
1670
|
+
"defaultValue": { "value": "64", "computed": false },
|
|
1671
|
+
"required": false
|
|
1672
|
+
},
|
|
1673
|
+
"borderRadius": {
|
|
1674
|
+
"defaultValue": { "value": "\"m\"", "computed": false },
|
|
1675
|
+
"required": false
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1679
|
+
],
|
|
1680
|
+
"./src/lib/components/InputImage/HoverContainer.tsx": [
|
|
1681
|
+
{
|
|
1682
|
+
"description": "",
|
|
1683
|
+
"methods": [],
|
|
1684
|
+
"displayName": "HoverContainer",
|
|
1685
|
+
"props": {
|
|
1686
|
+
"isVisible": {
|
|
1687
|
+
"required": true,
|
|
1688
|
+
"tsType": { "name": "boolean" },
|
|
1689
|
+
"description": ""
|
|
1690
|
+
},
|
|
1691
|
+
"disabled": {
|
|
1692
|
+
"defaultValue": { "value": "false", "computed": false },
|
|
1693
|
+
"required": false
|
|
1694
|
+
}
|
|
1695
|
+
},
|
|
1696
|
+
"composes": ["Pick"]
|
|
1697
|
+
}
|
|
1698
|
+
],
|
|
1699
|
+
"./src/lib/components/InputPhone/InputPhone.tsx": [
|
|
1700
|
+
{
|
|
1701
|
+
"description": "@description Returns a InputPhone component\n@link https://documentation-components-react.vercel.app/components/input-phone\n@extends HTMLInputElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLInputElement>\n@prop selectedCountry: name: string; dial_code: string; code: CountryCode; flag: string | undefined\n@prop setSelectedCountry: Dispatch<SetStateAction<{ name: string; dial_code: string; code: CountryCode; flag: string | undefined } | undefined>>\n@prop defaultCountry?: Any Alpha-2 Code from https://www.iban.com/country-codes\n@prop icons?: { search?: string | JSX.Element; caret?: string | JSX.Element }\n@prop iconSizes?: { search?: number; caret?: number }\n@prop searchPlaceholder?: string\n@prop listDirection?: \"up\" | \"down\"\n@prop countryButtonAriaLabel?: string\n@prop textNoResult?: string\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop id?: string\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop inputVariant?: \"rounded\" | \"pill\"\n@prop containerStyle?: CSSProperties",
|
|
1702
|
+
"methods": [],
|
|
1703
|
+
"displayName": "InputPhone",
|
|
1704
|
+
"props": {
|
|
1705
|
+
"inputVariant": {
|
|
1706
|
+
"defaultValue": {
|
|
1707
|
+
"value": "\"rounded\"",
|
|
1708
|
+
"computed": false
|
|
1709
|
+
},
|
|
1710
|
+
"required": false
|
|
1711
|
+
},
|
|
1712
|
+
"defaultCountry": {
|
|
1713
|
+
"defaultValue": { "value": "\"de\"", "computed": false },
|
|
1714
|
+
"required": false
|
|
1715
|
+
},
|
|
1716
|
+
"searchPlaceholder": {
|
|
1717
|
+
"defaultValue": {
|
|
1718
|
+
"value": "\"Search country or code\"",
|
|
1719
|
+
"computed": false
|
|
1720
|
+
},
|
|
1721
|
+
"required": false
|
|
1722
|
+
},
|
|
1723
|
+
"countryButtonAriaLabel": {
|
|
1724
|
+
"defaultValue": {
|
|
1725
|
+
"value": "\"Select country\"",
|
|
1726
|
+
"computed": false
|
|
1727
|
+
},
|
|
1728
|
+
"required": false
|
|
1729
|
+
},
|
|
1730
|
+
"textNoResult": {
|
|
1731
|
+
"defaultValue": {
|
|
1732
|
+
"value": "\"Your search did not return any result.\"",
|
|
1733
|
+
"computed": false
|
|
1734
|
+
},
|
|
1735
|
+
"required": false
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
}
|
|
1739
|
+
],
|
|
1740
|
+
"./src/lib/components/InputPin/InputPin.tsx": [
|
|
1741
|
+
{
|
|
1742
|
+
"description": "@description Returns a InputPin component\n@link https://documentation-components-react.vercel.app/components/input-pin\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop values: { [n: number]: number | \"\" | undefined }\n@prop setValues: Dispatch<SetStateAction<{ [n: number]: number | \"\" | undefined }>>\n@prop placeholders?: Array<string>\n@prop container?: { justifyContent?: CssJustifyContent; columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" }\n@prop inputSize?: number\n@prop inputFontSize?: \"display-h1\" | \"display-h2\" | \"display-h3\" | \"display-h4\" | \"display-h5\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"body\" | \"small\"\n@prop hideValues?: boolean\n@prop disabled?: boolean\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop containerStyle?: CSSProperties",
|
|
1743
|
+
"methods": [],
|
|
1744
|
+
"displayName": "InputPin",
|
|
1745
|
+
"props": {
|
|
1746
|
+
"inputSize": {
|
|
1747
|
+
"defaultValue": { "value": "48", "computed": false },
|
|
1748
|
+
"required": false
|
|
1749
|
+
},
|
|
1750
|
+
"inputFontSize": {
|
|
1751
|
+
"defaultValue": { "value": "\"body\"", "computed": false },
|
|
1752
|
+
"required": false
|
|
1753
|
+
}
|
|
1754
|
+
}
|
|
1755
|
+
}
|
|
1756
|
+
],
|
|
1757
|
+
"./src/lib/components/InputSlider/Slider.tsx": [
|
|
1758
|
+
{
|
|
1759
|
+
"description": "",
|
|
1760
|
+
"methods": [],
|
|
1761
|
+
"displayName": "Slider",
|
|
1762
|
+
"props": {
|
|
1763
|
+
"min": {
|
|
1764
|
+
"defaultValue": { "value": "0", "computed": false },
|
|
1765
|
+
"required": false
|
|
1766
|
+
},
|
|
1767
|
+
"max": {
|
|
1768
|
+
"defaultValue": { "value": "100", "computed": false },
|
|
1769
|
+
"required": false
|
|
1770
|
+
}
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
],
|
|
1774
|
+
"./src/lib/components/InputSlider/InputSlider.tsx": [
|
|
1775
|
+
{
|
|
1776
|
+
"description": "@description Returns a InputSlider component\n@link https://documentation-components-react.vercel.app/components/input-slider\n@extends HTMLInputElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLInputElement>\n@prop showMinMax?: boolean\n@prop showValue?: \"hover\" | \"always\" | \"never\"\n@prop min?: number\n@prop max?: number\n@prop value?: number\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop containerStyle?: CSSProperties",
|
|
1777
|
+
"methods": [],
|
|
1778
|
+
"displayName": "InputSlider",
|
|
1779
|
+
"props": {
|
|
1780
|
+
"value": {
|
|
1781
|
+
"defaultValue": { "value": "50", "computed": false },
|
|
1782
|
+
"required": false
|
|
1783
|
+
},
|
|
1784
|
+
"min": {
|
|
1785
|
+
"defaultValue": { "value": "0", "computed": false },
|
|
1786
|
+
"required": false
|
|
1787
|
+
},
|
|
1788
|
+
"max": {
|
|
1789
|
+
"defaultValue": { "value": "100", "computed": false },
|
|
1790
|
+
"required": false
|
|
1791
|
+
},
|
|
1792
|
+
"showValue": {
|
|
1793
|
+
"defaultValue": {
|
|
1794
|
+
"value": "value ? \"hover\" : \"never\"",
|
|
1795
|
+
"computed": false
|
|
1796
|
+
},
|
|
1797
|
+
"required": false
|
|
1798
|
+
}
|
|
1799
|
+
}
|
|
1800
|
+
}
|
|
1801
|
+
],
|
|
1802
|
+
"./src/lib/components/Key/Key.tsx": [
|
|
1803
|
+
{
|
|
1804
|
+
"description": "@description Returns a Key component\n@link https://documentation-components-react.vercel.app/components/key\n@extends HTMLSpanElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLSpanElement>\n@prop keys: Array<string>\n@prop size?: \"large\" | \"small\"\n@prop accentColor?: Exclude<\"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"gray\">\n@prop withSeparator?: boolean",
|
|
1805
|
+
"methods": [],
|
|
1806
|
+
"displayName": "Key",
|
|
1807
|
+
"props": {
|
|
1808
|
+
"size": {
|
|
1809
|
+
"defaultValue": { "value": "\"small\"", "computed": false },
|
|
1810
|
+
"required": false
|
|
1811
|
+
},
|
|
1812
|
+
"accentColor": {
|
|
1813
|
+
"defaultValue": {
|
|
1814
|
+
"value": "\"primary\"",
|
|
1815
|
+
"computed": false
|
|
1816
|
+
},
|
|
1817
|
+
"required": false
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
}
|
|
1821
|
+
],
|
|
1822
|
+
"./src/lib/components/Linkify/Linkify.tsx": [
|
|
1823
|
+
{
|
|
1824
|
+
"description": "@description Transform `http://<url>` to `<a href=\"http://<url>\">http://<url></a>`\n@link https://documentation-components-react.vercel.app/components/linkify\n@extends ILibText\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLHeadingElement & HTMLParagraphElement & HTMLQuoteElement & HTMLUListElement & HTMLOListElement & HTMLDListElement>\n@prop blank?: boolean",
|
|
1825
|
+
"methods": [],
|
|
1826
|
+
"displayName": "Linkify"
|
|
1827
|
+
}
|
|
1828
|
+
],
|
|
1829
|
+
"./src/lib/components/LibIcon/LibIcon.tsx": [
|
|
1830
|
+
{
|
|
1831
|
+
"description": "@description Icon used to build components from library, use Icon component to build your app.\n@access Only for building library, do not export\n@prop icon: string | JSX.Element\n@prop baseUrl: string | undefined\n@prop size?: number\n@prop color?: Any color from the library\n@prop className?: string",
|
|
1832
|
+
"methods": [],
|
|
1833
|
+
"displayName": "LibIcon",
|
|
1834
|
+
"props": {
|
|
1835
|
+
"icon": {
|
|
1836
|
+
"required": true,
|
|
1837
|
+
"tsType": {
|
|
1838
|
+
"name": "union",
|
|
1839
|
+
"raw": "string | JSX.Element",
|
|
1840
|
+
"elements": [
|
|
1841
|
+
{ "name": "string" },
|
|
1842
|
+
{ "name": "JSX.Element" }
|
|
1843
|
+
]
|
|
1844
|
+
},
|
|
1845
|
+
"description": ""
|
|
1846
|
+
},
|
|
1847
|
+
"baseUrl": {
|
|
1848
|
+
"required": true,
|
|
1849
|
+
"tsType": {
|
|
1850
|
+
"name": "union",
|
|
1851
|
+
"raw": "string | undefined",
|
|
1852
|
+
"elements": [
|
|
1853
|
+
{ "name": "string" },
|
|
1854
|
+
{ "name": "undefined" }
|
|
1855
|
+
]
|
|
1856
|
+
},
|
|
1857
|
+
"description": ""
|
|
1858
|
+
}
|
|
1859
|
+
},
|
|
1860
|
+
"composes": ["Omit"]
|
|
1861
|
+
}
|
|
1862
|
+
],
|
|
1863
|
+
"./src/lib/components/ListGroup/ListGroup.tsx": [
|
|
1864
|
+
{
|
|
1865
|
+
"description": "@description Returns a ListGroup component\n@link https://documentation-components-react.vercel.app/components/list-group\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop items: Array<LibListGroupItem> => only if children is not defined\n@prop children?: ReactChildren => only if items is not defined\n@prop title?: string | { text: string; backgroundColor?: Any color from the library; contentColor?: Any color from the library; isFixed?: boolean; id?: string; className?: string; ref?: ForwardedRef<HTMLDivElement>; shadowOnScroll?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" }\n@prop noSeparator?: boolean\n@prop showNumbers?: boolean\n@prop maxHeight?: number | string\n\n@type LibListGroupItem\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLLIElement>\n@prop text: string\n@prop subtext?: string\n@prop badge?: boolean | { icon?: string | JSX.Element => only if `number` is not defined; number?: number => only if `icon` is not defined; backgroundColor?: LibAllColors; contentColor?: LibAllColors } => only if `date` is not defined\n@prop date?: string | Date => only if `badge` is not defined\n@prop onClick?: void => only if to or href are not defined\n@prop disabled?: boolean => only if onClick is defined\n@prop to?: string => only if onClick and href are not defined\n@prop href?: string => only if onClick and to are not defined\n@prop blank?: boolean => only if to or href are defined",
|
|
1866
|
+
"methods": [],
|
|
1867
|
+
"displayName": "ListGroup"
|
|
1868
|
+
}
|
|
1869
|
+
],
|
|
1870
|
+
"./src/lib/components/ListGroup/ListGroupItem.tsx": [
|
|
1871
|
+
{
|
|
1872
|
+
"description": "@description Returns a ListGroupItem component\n@link https://documentation-components-react.vercel.app/components/list-group\n@extends HTMLDivElement & LibButtonLinkBlank\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop text: string\n@prop body?: string\n@prop isInArray?: boolean\n@prop noSeparator?: boolean\n@prop number?: number\n@prop badge?: boolean | { icon?: string | JSX.Element => only if `number` is not defined; number?: number => only if `icon` is not defined; backgroundColor?: Any color from the library; contentColor?: Any color from the library } => only if `date` is not defined\n@prop date?: string | Date => only if badge is not defined\n@prop onClick?: void => only if to or href are not defined\n@prop disabled?: boolean => only if onClick is defined\n@prop to?: string => only if onClick and href are not defined\n@prop href?: string => only if onClick and to are not defined\n@prop blank?: boolean => only if to or href are defined",
|
|
1873
|
+
"methods": [],
|
|
1874
|
+
"displayName": "ListGroupItem"
|
|
1875
|
+
}
|
|
1876
|
+
],
|
|
1877
|
+
"./src/lib/components/Loader/Loader.tsx": [
|
|
1878
|
+
{
|
|
1879
|
+
"description": "@description Returns a Loader component\n@link https://documentation-components-react.vercel.app/components/loader\n@extends HTMLSpanElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLSpanElement>\n@prop variant?: 1 | 2 | 3 | 4\n@prop borderWidth?: number => only if variant is set to 1 | 2 | 3\n@prop size?: number\n@prop color?: Any color from the library",
|
|
1880
|
+
"methods": [],
|
|
1881
|
+
"displayName": "Loader",
|
|
1882
|
+
"props": {
|
|
1883
|
+
"size": {
|
|
1884
|
+
"defaultValue": { "value": "48", "computed": false },
|
|
1885
|
+
"required": false
|
|
1886
|
+
},
|
|
1887
|
+
"color": {
|
|
1888
|
+
"defaultValue": {
|
|
1889
|
+
"value": "\"primary\"",
|
|
1890
|
+
"computed": false
|
|
1891
|
+
},
|
|
1892
|
+
"required": false
|
|
1893
|
+
}
|
|
1894
|
+
}
|
|
1895
|
+
}
|
|
1896
|
+
],
|
|
1897
|
+
"./src/lib/components/ListGroup/ListGroupTitle.tsx": [
|
|
1898
|
+
{
|
|
1899
|
+
"description": "",
|
|
1900
|
+
"methods": [],
|
|
1901
|
+
"displayName": "ListGroupTitle",
|
|
1902
|
+
"props": {
|
|
1903
|
+
"backgroundColor": {
|
|
1904
|
+
"defaultValue": {
|
|
1905
|
+
"value": "\"primary\"",
|
|
1906
|
+
"computed": false
|
|
1907
|
+
},
|
|
1908
|
+
"required": false
|
|
1909
|
+
},
|
|
1910
|
+
"contentColor": {
|
|
1911
|
+
"defaultValue": {
|
|
1912
|
+
"value": "\"background\"",
|
|
1913
|
+
"computed": false
|
|
1914
|
+
},
|
|
1915
|
+
"required": false
|
|
1916
|
+
}
|
|
1917
|
+
}
|
|
1918
|
+
}
|
|
1919
|
+
],
|
|
1920
|
+
"./src/lib/components/Main/Main.tsx": [
|
|
1921
|
+
{
|
|
1922
|
+
"description": "@description Returns a Main component\n@link https://documentation-components-react.vercel.app/layouts/container\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop minHeight?: string | number\n@prop size?: \"default\" | \"large\" | \"form\" | \"full\" | number\n@prop contentSize?: \"default\" | \"large\" | \"form\" | number => only if size is set to full",
|
|
1923
|
+
"methods": [],
|
|
1924
|
+
"displayName": "Main",
|
|
1925
|
+
"props": {
|
|
1926
|
+
"minHeight": {
|
|
1927
|
+
"defaultValue": { "value": "\"100vh\"", "computed": false },
|
|
1928
|
+
"required": false
|
|
1929
|
+
}
|
|
1930
|
+
}
|
|
1931
|
+
}
|
|
1932
|
+
],
|
|
1933
|
+
"./src/lib/components/MarkdownContainer/MarkdownContainer.tsx": [
|
|
1934
|
+
{
|
|
1935
|
+
"description": "@description Returns a MarkdownContainer component\n@link https://documentation-components-react.vercel.app/components/markdown-container\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop options?: MarkdownToJSX.Options => imported from package markdown-to-jsx",
|
|
1936
|
+
"methods": [],
|
|
1937
|
+
"displayName": "MarkdownContainer",
|
|
1938
|
+
"props": {
|
|
1939
|
+
"options": {
|
|
1940
|
+
"defaultValue": {
|
|
1941
|
+
"value": "{\n forceBlock: true,\n wrapper: \"div\",\n overrides: {\n h1: {\n component: Text,\n props: {\n tag: \"h1\",\n },\n },\n\n h2: {\n component: Text,\n props: {\n tag: \"h2\",\n },\n },\n\n h3: {\n component: Text,\n props: {\n tag: \"h3\",\n },\n },\n\n h4: {\n component: Text,\n props: {\n tag: \"h4\",\n },\n },\n\n h5: {\n component: Text,\n props: {\n tag: \"h5\",\n },\n },\n\n h6: {\n component: Text,\n props: {\n tag: \"h6\",\n },\n },\n\n p: {\n component: Text,\n props: {\n tag: \"p\",\n },\n },\n\n strong: {\n component: Text,\n props: {\n tag: \"strong\",\n },\n },\n\n em: {\n component: Text,\n props: {\n tag: \"em\",\n },\n },\n\n ul: {\n component: Text,\n props: {\n tag: \"ul\",\n },\n },\n\n ol: {\n component: Text,\n props: {\n tag: \"ol\",\n },\n },\n\n dl: {\n component: Text,\n props: {\n tag: \"dl\",\n },\n },\n\n small: {\n component: Text,\n props: {\n tag: \"small\",\n },\n },\n\n blockquote: {\n component: Text,\n props: {\n tag: \"blockquote\",\n },\n },\n\n table: {\n component: Table,\n },\n },\n}",
|
|
1942
|
+
"computed": false
|
|
1943
|
+
},
|
|
1944
|
+
"required": false
|
|
1945
|
+
}
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1948
|
+
],
|
|
1949
|
+
"./src/lib/components/MarkdownEditor/MarkdownEditor.tsx": [
|
|
1950
|
+
{
|
|
1951
|
+
"description": "@description Returns a MarkdownEditor component\n@link https://documentation-components-react.vercel.app/components/markdown-editor\n@extends HTMLTextAreaElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLTextAreaElement>\n@prop value: string\n@prop setValue: Dispatch<SetStateAction<string>>\n@prop defaultEditor?: \"editorCode\" | \"editorLive\" | \"editorPreview\"\n@prop textButtonTitles?: string\n@prop showButtons?: LibMarkdownEditorOptions\n@prop icons?: { bold?: string | JSX.Element; italic?: string | JSX.Element; strikethrough?: string | JSX.Element; ul?: string | JSX.Element; ol?: string | JSX.Element; link?: string | JSX.Element; quote?: string | JSX.Element; hr?: string | JSX.Element; code?: string | JSX.Element; codeBlock?: string | JSX.Element; comment?: string | JSX.Element; image?: string | JSX.Element; editorCode?: string | JSX.Element; editorLive?: string | JSX.Element; editorPreview?: string | JSX.Element }\n@prop iconsSizes?: { bold?: number; italic?: number; strikethrough?: number; ul?: number; ol?: number; link?: number; quote?: number; hr?: number; code?: number; codeBlock?: number; comment?: number; image?: number; editorCode?: number; editorLive?: number; editorPreview?: number }\n@prop id?: string\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop containerStyle?: CSSProperties",
|
|
1952
|
+
"methods": [],
|
|
1953
|
+
"displayName": "MarkdownEditor",
|
|
1954
|
+
"props": {
|
|
1955
|
+
"showButtons": {
|
|
1956
|
+
"defaultValue": {
|
|
1957
|
+
"value": "{\n bold: true,\n italic: true,\n strikethrough: true,\n ul: true,\n ol: true,\n link: true,\n quote: true,\n hr: true,\n code: true,\n codeBlock: true,\n comment: true,\n image: true,\n editorCode: true,\n editorLive: true,\n editorPreview: true,\n titles: true,\n}",
|
|
1958
|
+
"computed": false
|
|
1959
|
+
},
|
|
1960
|
+
"required": false
|
|
1961
|
+
},
|
|
1962
|
+
"defaultEditor": {
|
|
1963
|
+
"defaultValue": {
|
|
1964
|
+
"value": "\"editorLive\"",
|
|
1965
|
+
"computed": false
|
|
1966
|
+
},
|
|
1967
|
+
"required": false
|
|
1968
|
+
},
|
|
1969
|
+
"textButtonTitles": {
|
|
1970
|
+
"defaultValue": {
|
|
1971
|
+
"value": "\"Titles\"",
|
|
1972
|
+
"computed": false
|
|
1973
|
+
},
|
|
1974
|
+
"required": false
|
|
1975
|
+
}
|
|
1976
|
+
}
|
|
1977
|
+
}
|
|
1978
|
+
],
|
|
1979
|
+
"./src/lib/components/MarkdownEditor/MdEditorInput.tsx": [
|
|
1980
|
+
{ "description": "", "methods": [], "displayName": "MdEditorInput" }
|
|
1981
|
+
],
|
|
1982
|
+
"./src/lib/components/Masonry/Masonry.tsx": [
|
|
1983
|
+
{
|
|
1984
|
+
"description": "@description Returns a Masonry component\n@link https://documentation-components-react.vercel.app/components/masonry\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop children?: Array<ReactNode>\n@prop col?: number\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"",
|
|
1985
|
+
"methods": [],
|
|
1986
|
+
"displayName": "Masonry",
|
|
1987
|
+
"props": {
|
|
1988
|
+
"children": {
|
|
1989
|
+
"defaultValue": { "value": "[]", "computed": false },
|
|
1990
|
+
"required": false
|
|
1991
|
+
},
|
|
1992
|
+
"col": {
|
|
1993
|
+
"defaultValue": { "value": "4", "computed": false },
|
|
1994
|
+
"required": false
|
|
1995
|
+
},
|
|
1996
|
+
"gap": {
|
|
1997
|
+
"defaultValue": { "value": "\"l\"", "computed": false },
|
|
1998
|
+
"required": false
|
|
1999
|
+
}
|
|
2000
|
+
}
|
|
2001
|
+
}
|
|
2002
|
+
],
|
|
2003
|
+
"./src/lib/components/Messaging/Message.tsx": [
|
|
2004
|
+
{
|
|
2005
|
+
"description": "@description Returns a Message component\n@link https://documentation-components-react.vercel.app/components/messaging\n@extends HTMLDivElement & ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop type: \"sent\" | \"received\"\n@prop text: string => only if children is not defined\n@prop children?: ReactChildren => only if text is not defined\n@prop id?: string\n@prop date?: Date | string\n@prop textToday?: string => only if date is defined\n@prop textYesterday?: string => only if date is defined\n@prop dateFormat?: \"short\" | \"long\" => only if date is defined\n@prop time?: string\n@prop inline?: boolean\n@prop flexDirection?: CssFlexDirection\n@prop flexWrap?: CssFlexWrap\n@prop justifyContent?: CssJustifyContent\n@prop alignItems?: CssAlignItems\n@prop justifyItems?: CssJustifyItems\n@prop alignContent?: CssAlignContent\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop rowGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
2006
|
+
"methods": [],
|
|
2007
|
+
"displayName": "Message",
|
|
2008
|
+
"props": {
|
|
2009
|
+
"textToday": {
|
|
2010
|
+
"defaultValue": { "value": "\"Today\"", "computed": false },
|
|
2011
|
+
"required": false
|
|
2012
|
+
},
|
|
2013
|
+
"textYesterday": {
|
|
2014
|
+
"defaultValue": {
|
|
2015
|
+
"value": "\"Yesterday\"",
|
|
2016
|
+
"computed": false
|
|
2017
|
+
},
|
|
2018
|
+
"required": false
|
|
2019
|
+
},
|
|
2020
|
+
"textDateTime": {
|
|
2021
|
+
"defaultValue": { "value": "\"at\"", "computed": false },
|
|
2022
|
+
"required": false
|
|
2023
|
+
},
|
|
2024
|
+
"dateFormat": {
|
|
2025
|
+
"defaultValue": { "value": "\"short\"", "computed": false },
|
|
2026
|
+
"required": false
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
2030
|
+
],
|
|
2031
|
+
"./src/lib/components/Messaging/MessagesContainer.tsx": [
|
|
2032
|
+
{
|
|
2033
|
+
"description": "@description Returns a MessagesContainer component\n@link https://documentation-components-react.vercel.app/components/messaging\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>",
|
|
2034
|
+
"methods": [],
|
|
2035
|
+
"displayName": "MessagesContainer"
|
|
2036
|
+
}
|
|
2037
|
+
],
|
|
2038
|
+
"./src/lib/components/Messaging/MessageForm.tsx": [
|
|
2039
|
+
{
|
|
2040
|
+
"description": "@description Returns a MessageForm component\n@link https://documentation-components-react.vercel.app/components/messaging\n@extends HTMLFormElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLFormElement>\n@prop inputHeight: number\n@prop setInputHeight: Dispatch<SetStateAction<number>>\n@prop handleSubmit: () => void\n@prop input: { message: string; setMessage: Dispatch<SetStateAction<string>>; placeholder?: string; autoFocus?: boolean }\n@prop button?: { icon?: string | JSX.Element => only if text is not defined; text?: string => only if icon is not defined }\n@prop iconBaseUrl?: string",
|
|
2041
|
+
"methods": [],
|
|
2042
|
+
"displayName": "MessageForm"
|
|
2043
|
+
}
|
|
2044
|
+
],
|
|
2045
|
+
"./src/lib/components/Messaging/MessagesList.tsx": [
|
|
2046
|
+
{
|
|
2047
|
+
"description": "@description Returns a MessagesList component\n@link https://documentation-components-react.vercel.app/components/messaging\n@extends HTMLDivElement & ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop children?: Array<ReactNode>\n@prop emptyText?: string\n@prop hideScrollButton?: boolean\n@prop scrollButton?: { icon?: string | JSX.Element; iconSize?: number; positionFromBottom?: number; iconBaseUrl?: string } => only if hideScrollButton is false or undefined",
|
|
2048
|
+
"methods": [],
|
|
2049
|
+
"displayName": "MessagesList",
|
|
2050
|
+
"props": {
|
|
2051
|
+
"emptyText": {
|
|
2052
|
+
"defaultValue": {
|
|
2053
|
+
"value": "\"No message yet.\"",
|
|
2054
|
+
"computed": false
|
|
2055
|
+
},
|
|
2056
|
+
"required": false
|
|
2057
|
+
}
|
|
2058
|
+
}
|
|
2059
|
+
}
|
|
2060
|
+
],
|
|
2061
|
+
"./src/lib/components/Messaging/Messaging.tsx": [
|
|
2062
|
+
{
|
|
2063
|
+
"description": "@description Returns a Messaging component\n@link https://documentation-components-react.vercel.app/components/messaging\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop items: Array<LibMessage>\n@prop textDateTime?: string\n@prop emptyText?: string\n@prop iconScroll?: string | JSX.Element\n@prop iconScrollSize?: number\n\n@type LibMessage\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop type: \"sent\" | \"received\"\n@prop text: string\n@prop date?: Date | string\n@prop time?: string",
|
|
2064
|
+
"methods": [],
|
|
2065
|
+
"displayName": "Messaging"
|
|
2066
|
+
}
|
|
2067
|
+
],
|
|
2068
|
+
"./src/lib/components/Modal/Modal.tsx": [
|
|
2069
|
+
{
|
|
2070
|
+
"description": "@description Returns a Modal component\n@link https://documentation-components-react.vercel.app/components/modal\n@extends ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop isOpen: boolean\n@prop setIsOpen: Dispatch<SetStateAction<boolean>>\n@prop disableEsc?: boolean\n@prop contentWidth?: string | number\n@prop contentId?: string\n@prop hideCloseButton?: boolean\n@prop buttonClose?: { icon?: string | JSX.Element; color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"; size?: number; variant?: \"plain\" | \"ghost\" | \"transparent\"; label?: string } => only if hideCloseButton is not set to true\n@prop flexDirection?: CssFlexDirection\n@prop flexWrap?: CssFlexWrap\n@prop justifyContent?: CssJustifyContent\n@prop alignItems?: CssAlignItems\n@prop justifyItems?: CssJustifyItems\n@prop alignContent?: CssAlignContent\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop rowGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
2071
|
+
"methods": [],
|
|
2072
|
+
"displayName": "Modal"
|
|
2073
|
+
}
|
|
2074
|
+
],
|
|
2075
|
+
"./src/lib/components/Pagination/PaginationButton.tsx": [
|
|
2076
|
+
{
|
|
2077
|
+
"description": "@description Returns a PaginationButton component\n@link https://documentation-components-react.vercel.app/components/pagination\n@extends HTMLButtonElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLButtonElement>\n@prop isActive: boolean => only if readOnly is not defined\n@prop readOnly: boolean => only if isActive is not defined\n@prop accentColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"",
|
|
2078
|
+
"methods": [],
|
|
2079
|
+
"displayName": "PaginationButton"
|
|
2080
|
+
}
|
|
2081
|
+
],
|
|
2082
|
+
"./src/lib/components/PageLayout/PageLayout.tsx": [
|
|
2083
|
+
{
|
|
2084
|
+
"description": "@description Returns a PageLayout component\n@link https://documentation-components-react.vercel.app/components/page-layout\n@prop data-testid?: string\n@prop isLoading?: boolean\n@prop titleLoading?: string\n@prop pageLoading?: ILibPageLoading => imported from PageLoading component\n@prop helmet?: ILibHelmet => imported from Helmet component\n@prop header?: ILibHeader & { nav?: JSX.Element } => imported from Header component\n@prop footer?: ILibFooter => imported from Footer component\n@prop wrapper?: ILibWrapper => imported from Wrapper component, only if noWrapper is not set to true\n@prop noWrapper?: false\n@prop template?: \"single\" | \"multi\"\n@prop main?: ILibMain => imported from Main component, only if template is set to single\n@prop mainMinHeight?: string | number => only if template is set to single",
|
|
2085
|
+
"methods": [],
|
|
2086
|
+
"displayName": "PageLayout",
|
|
2087
|
+
"props": {
|
|
2088
|
+
"template": {
|
|
2089
|
+
"defaultValue": {
|
|
2090
|
+
"value": "\"single\"",
|
|
2091
|
+
"computed": false
|
|
2092
|
+
},
|
|
2093
|
+
"required": false
|
|
2094
|
+
},
|
|
2095
|
+
"mainMinHeight": {
|
|
2096
|
+
"defaultValue": { "value": "\"85vh\"", "computed": false },
|
|
2097
|
+
"required": false
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
}
|
|
2101
|
+
],
|
|
2102
|
+
"./src/lib/components/Pagination/Pagination.tsx": [
|
|
2103
|
+
{
|
|
2104
|
+
"description": "@description Returns a Pagination component\n@link https://documentation-components-react.vercel.app/components/pagination\n@extends ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop totalPages: number => only if children is not defined\n@prop pageLimit?: number => only if children is not defined\n@prop icons?: { previous?: string | JSX.Element; next?: string | JSX.Element } => only if children is not defined\n@prop iconSizes?: { previous?: number; next?: number } => only if children is not defined\n@prop iconBaseUrl?: string => only if children is not defined\n@prop children?: ReactChildren => only if totalPages is not defined\n@prop accentColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop queries?: Array<Array<string>>\n@prop inline?: boolean\n@prop flexDirection?: CssFlexDirection\n@prop flexWrap?: CssFlexWrap\n@prop justifyContent?: CssJustifyContent\n@prop alignItems?: CssAlignItems\n@prop justifyItems?: CssJustifyItems\n@prop alignContent?: CssAlignContent\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop columnGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop rowGap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }",
|
|
2105
|
+
"methods": [],
|
|
2106
|
+
"displayName": "Pagination",
|
|
2107
|
+
"props": {
|
|
2108
|
+
"accentColor": {
|
|
2109
|
+
"defaultValue": {
|
|
2110
|
+
"value": "\"primary\"",
|
|
2111
|
+
"computed": false
|
|
2112
|
+
},
|
|
2113
|
+
"required": false
|
|
2114
|
+
},
|
|
2115
|
+
"pageLimit": {
|
|
2116
|
+
"defaultValue": { "value": "5", "computed": false },
|
|
2117
|
+
"required": false
|
|
2118
|
+
},
|
|
2119
|
+
"justifyContent": {
|
|
2120
|
+
"defaultValue": {
|
|
2121
|
+
"value": "\"center\"",
|
|
2122
|
+
"computed": false
|
|
2123
|
+
},
|
|
2124
|
+
"required": false
|
|
2125
|
+
}
|
|
2126
|
+
}
|
|
2127
|
+
}
|
|
2128
|
+
],
|
|
2129
|
+
"./src/lib/components/PageLoading/PageLoading.tsx": [
|
|
2130
|
+
{
|
|
2131
|
+
"description": "@description Returns a PageLoading component\n@link https://documentation-components-react.vercel.app/components/page-loading\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop backgroundColor?: Any color from the library\n@prop loaderColor?: Any color from the library\n@prop loaderVariant?: 1 | 2 | 3 | 4\n@prop stopScrolling?: boolean",
|
|
2132
|
+
"methods": [],
|
|
2133
|
+
"displayName": "PageLoading",
|
|
2134
|
+
"props": {
|
|
2135
|
+
"backgroundColor": {
|
|
2136
|
+
"defaultValue": {
|
|
2137
|
+
"value": "\"primary\"",
|
|
2138
|
+
"computed": false
|
|
2139
|
+
},
|
|
2140
|
+
"required": false
|
|
2141
|
+
},
|
|
2142
|
+
"loaderColor": {
|
|
2143
|
+
"defaultValue": { "value": "\"white\"", "computed": false },
|
|
2144
|
+
"required": false
|
|
2145
|
+
},
|
|
2146
|
+
"loaderVariant": {
|
|
2147
|
+
"defaultValue": { "value": "1", "computed": false },
|
|
2148
|
+
"required": false
|
|
2149
|
+
}
|
|
2150
|
+
}
|
|
2151
|
+
}
|
|
2152
|
+
],
|
|
2153
|
+
"./src/lib/components/ProgressBar/ProgressBar.tsx": [
|
|
2154
|
+
{
|
|
2155
|
+
"description": "@description Returns a ProgressBar component\n@link https://documentation-components-react.vercel.app/components/progress-bar\n@extends HTMLMeterElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLMeterElement>\n@prop value: number\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop noAnimation?: boolean",
|
|
2156
|
+
"methods": [],
|
|
2157
|
+
"displayName": "ProgressBar",
|
|
2158
|
+
"props": {
|
|
2159
|
+
"color": {
|
|
2160
|
+
"defaultValue": {
|
|
2161
|
+
"value": "\"primary\"",
|
|
2162
|
+
"computed": false
|
|
2163
|
+
},
|
|
2164
|
+
"required": false
|
|
2165
|
+
},
|
|
2166
|
+
"min": {
|
|
2167
|
+
"defaultValue": { "value": "0", "computed": false },
|
|
2168
|
+
"required": false
|
|
2169
|
+
},
|
|
2170
|
+
"max": {
|
|
2171
|
+
"defaultValue": { "value": "100", "computed": false },
|
|
2172
|
+
"required": false
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
}
|
|
2176
|
+
],
|
|
2177
|
+
"./src/lib/components/Paginator/Paginator.tsx": [
|
|
2178
|
+
{
|
|
2179
|
+
"description": "@description Returns a Paginator component\n@link https://documentation-components-react.vercel.app/components/paginator\n@extends ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop totalPages: number\n@prop accentColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop inputNotEditable?: boolean\n@prop texts?: { page?: string; of?: string }\n@prop icons?: { prev?: string | JSX.Element; next?: string | JSX.Element }\n@prop iconSizes?: { prev?: number; next?: number }\n@prop iconsBaseUrl?: string\n@prop labels?: { prev?: string; next?: string; show?: boolean }\n@prop queries?: Array<Array<string>>",
|
|
2180
|
+
"methods": [],
|
|
2181
|
+
"displayName": "Paginator",
|
|
2182
|
+
"props": {
|
|
2183
|
+
"texts": {
|
|
2184
|
+
"defaultValue": {
|
|
2185
|
+
"value": "{ page: \"Page\", of: \"of\" }",
|
|
2186
|
+
"computed": false
|
|
2187
|
+
},
|
|
2188
|
+
"required": false
|
|
2189
|
+
},
|
|
2190
|
+
"iconSizes": {
|
|
2191
|
+
"defaultValue": {
|
|
2192
|
+
"value": "{\n prev: roundIconSize(DEFAULT_ICON_SIZE),\n next: roundIconSize(DEFAULT_ICON_SIZE),\n}",
|
|
2193
|
+
"computed": false
|
|
2194
|
+
},
|
|
2195
|
+
"required": false
|
|
2196
|
+
},
|
|
2197
|
+
"labels": {
|
|
2198
|
+
"defaultValue": {
|
|
2199
|
+
"value": "{ prev: \"Previous\", next: \"Next\" }",
|
|
2200
|
+
"computed": false
|
|
2201
|
+
},
|
|
2202
|
+
"required": false
|
|
2203
|
+
},
|
|
2204
|
+
"gap": {
|
|
2205
|
+
"defaultValue": { "value": "\"xs\"", "computed": false },
|
|
2206
|
+
"required": false
|
|
2207
|
+
},
|
|
2208
|
+
"alignItems": {
|
|
2209
|
+
"defaultValue": {
|
|
2210
|
+
"value": "\"center\"",
|
|
2211
|
+
"computed": false
|
|
2212
|
+
},
|
|
2213
|
+
"required": false
|
|
2214
|
+
},
|
|
2215
|
+
"accentColor": {
|
|
2216
|
+
"defaultValue": {
|
|
2217
|
+
"value": "\"primary\"",
|
|
2218
|
+
"computed": false
|
|
2219
|
+
},
|
|
2220
|
+
"required": false
|
|
2221
|
+
}
|
|
2222
|
+
}
|
|
2223
|
+
}
|
|
2224
|
+
],
|
|
2225
|
+
"./src/lib/components/ProgressCircle/ProgressCircle.tsx": [
|
|
2226
|
+
{
|
|
2227
|
+
"description": "@description Returns a ProgressCircle component\n@link https://documentation-components-react.vercel.app/components/progress-circle\n@extends SVGElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<SVGElement>\n@prop value: number\n@prop noAnimation?: boolean\n@prop color?: Any color from the library\n@prop containerStyle?: CSSProperties\n@prop showValue?: boolean => only if icon is not defined\n@prop icon?: string | JSX.Element => only if showValue is not set to true\n@prop iconSize?: number => only if icon is defined\n@prop iconBaseUrl?: string => only if icon is defined",
|
|
2228
|
+
"methods": [],
|
|
2229
|
+
"displayName": "ProgressCircle",
|
|
2230
|
+
"props": {
|
|
2231
|
+
"color": {
|
|
2232
|
+
"defaultValue": {
|
|
2233
|
+
"value": "\"primary\"",
|
|
2234
|
+
"computed": false
|
|
2235
|
+
},
|
|
2236
|
+
"required": false
|
|
2237
|
+
}
|
|
2238
|
+
}
|
|
2239
|
+
}
|
|
2240
|
+
],
|
|
2241
|
+
"./src/lib/components/ProgressCircle/Circle.tsx": [
|
|
2242
|
+
{
|
|
2243
|
+
"description": "",
|
|
2244
|
+
"methods": [],
|
|
2245
|
+
"displayName": "Circle",
|
|
2246
|
+
"props": {
|
|
2247
|
+
"color": {
|
|
2248
|
+
"defaultValue": {
|
|
2249
|
+
"value": "\"primary\"",
|
|
2250
|
+
"computed": false
|
|
2251
|
+
},
|
|
2252
|
+
"required": false
|
|
2253
|
+
}
|
|
2254
|
+
}
|
|
2255
|
+
}
|
|
2256
|
+
],
|
|
2257
|
+
"./src/lib/components/ProgressCircle/Value.tsx": [
|
|
2258
|
+
{
|
|
2259
|
+
"description": "",
|
|
2260
|
+
"methods": [],
|
|
2261
|
+
"displayName": "Value",
|
|
2262
|
+
"composes": ["Pick"]
|
|
2263
|
+
}
|
|
2264
|
+
],
|
|
2265
|
+
"./src/lib/components/ProgressCircle/ProgressCircleFn.tsx": [
|
|
2266
|
+
{
|
|
2267
|
+
"description": "",
|
|
2268
|
+
"methods": [],
|
|
2269
|
+
"displayName": "ProgressCircleFn",
|
|
2270
|
+
"props": {
|
|
2271
|
+
"color": {
|
|
2272
|
+
"defaultValue": {
|
|
2273
|
+
"value": "\"primary\"",
|
|
2274
|
+
"computed": false
|
|
2275
|
+
},
|
|
2276
|
+
"required": false
|
|
2277
|
+
}
|
|
2278
|
+
}
|
|
2279
|
+
}
|
|
2280
|
+
],
|
|
2281
|
+
"./src/lib/components/Input/Input.tsx": [
|
|
2282
|
+
{
|
|
2283
|
+
"description": "@description Returns a Input component\n@link https://documentation-components-react.vercel.app/components/input\n@extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement\n@constant => for all inputs\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>\n@prop type?: \"color\" | \"date\" | \"datetime-local\" | \"month\" | \"week\" | \"file\" | \"password\" | \"search\" | \"select\" | \"textarea\" | \"email\" | \"number\" | \"tel\" | \"text\" | \"url\" | \"time\"\n@prop id?: string\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop inputVariant?: \"rounded\" | \"pill\"\n@prop containerStyle?: CSSProperties\n\n@type for type date | datetime-local | month | week | password | search | email | number | tel | text | url | time\n@prop icon?: string | JSX.Element\n@prop iconSize?: number\n@prop prefix?: string | JSX.Element\n\n@type for type date | datetime-local | month | week\n@prop iconCalendar?: string | JSX.Element\n@prop iconCalendarSize?: number\n\n@type for type password\n@prop hideButton?: boolean\n@prop button?: { iconShow: string | JSX.Element; iconShowSize?: number; iconHide: string | JSX.Element; iconHideSize?: number; textShow?: string; textHide?: string }\n\n@type for type search\n@prop clearSearch?: MouseEventHandler<HTMLButtonElement>\n@prop iconClear?: string | JSX.Element\n@prop iconClearSize?: number\n@prop focusKeys?: Array<string>\n@prop showKeys?: boolean => only if focusKeys is defined\n\n@type for type select\n@prop iconSelect?: string | JSX.Element\n@prop iconSelectSize?: number\n@prop children?: ReactChildren\n\n@type for type time\n@prop iconClock?: string | JSX.Element\n@prop iconClockSize?: number\n\n@type for type email | number | tel | text | url\n@prop suffix?: string | JSX.Element",
|
|
2284
|
+
"methods": [],
|
|
2285
|
+
"displayName": "Input",
|
|
2286
|
+
"props": {
|
|
2287
|
+
"type": {
|
|
2288
|
+
"defaultValue": { "value": "\"text\"", "computed": false },
|
|
2289
|
+
"required": false
|
|
2290
|
+
},
|
|
2291
|
+
"inputVariant": {
|
|
2292
|
+
"defaultValue": {
|
|
2293
|
+
"value": "\"rounded\"",
|
|
2294
|
+
"computed": false
|
|
2295
|
+
},
|
|
2296
|
+
"required": false
|
|
2297
|
+
}
|
|
2298
|
+
}
|
|
2299
|
+
}
|
|
2300
|
+
],
|
|
2301
|
+
"./src/lib/components/Rating/Rating.tsx": [
|
|
2302
|
+
{
|
|
2303
|
+
"description": "@description Returns a Rating component\n@link https://documentation-components-react.vercel.app/components/rating\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop rating: number\n@prop setRating: Dispatch<SetStateAction<number>> => only if readOnly is not defined\n@prop readOnly: boolean => only if setRating is not defined\n@prop icons?: { default?: string | JSX.Element; checked?: string | JSX.Element }\n@prop iconSizes?: { default?: number; checked?: number }\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop containerStyle?: CSSProperties",
|
|
2304
|
+
"methods": [],
|
|
2305
|
+
"displayName": "Rating"
|
|
2306
|
+
}
|
|
2307
|
+
],
|
|
2308
|
+
"./src/lib/components/Select/SelectButton.tsx": [
|
|
2309
|
+
{ "description": "", "methods": [], "displayName": "SelectButton" }
|
|
2310
|
+
],
|
|
2311
|
+
"./src/lib/components/Select/Select.tsx": [
|
|
2312
|
+
{
|
|
2313
|
+
"description": "@description Returns a Select component\n@link https://documentation-components-react.vercel.app/components/select\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop value: string\n@prop setValue: Dispatch<SetStateAction< string>>\n@prop options?: Array<string>\n@prop disabled?: boolean\n@prop listDirection?: \"up\" | \"down\"\n@prop tabIndex?: number\n@prop prefix?: string | JSX.Element\n@prop icons?: { left?: string | JSX.Element; caret?: string | JSX.Element }\n@prop iconSizes?: { left?: number; caret?: number }\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop inputVariant?: \"rounded\" | \"pill\"\n@prop containerStyle?: CSSProperties",
|
|
2314
|
+
"methods": [],
|
|
2315
|
+
"displayName": "Select",
|
|
2316
|
+
"props": {
|
|
2317
|
+
"inputVariant": {
|
|
2318
|
+
"defaultValue": {
|
|
2319
|
+
"value": "\"rounded\"",
|
|
2320
|
+
"computed": false
|
|
2321
|
+
},
|
|
2322
|
+
"required": false
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2325
|
+
}
|
|
2326
|
+
],
|
|
2327
|
+
"./src/lib/components/Skeleton/Skeleton.tsx": [
|
|
2328
|
+
{
|
|
2329
|
+
"description": "@description Returns a Skeleton component\n@link https://documentation-components-react.vercel.app/components/skeleton\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop width?: string | number\n@prop maxWidth?: string | number\n@prop height?: string | number\n@prop backgroundColor?: Any color from the library\n@prop aspectRatio?: string\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop flex?: string | number\n@prop flexGrow?: string | number\n@prop animation?: \"pulse\" | \"shine\"",
|
|
2330
|
+
"methods": [],
|
|
2331
|
+
"displayName": "Skeleton",
|
|
2332
|
+
"props": {
|
|
2333
|
+
"width": {
|
|
2334
|
+
"defaultValue": { "value": "100", "computed": false },
|
|
2335
|
+
"required": false
|
|
2336
|
+
},
|
|
2337
|
+
"maxWidth": {
|
|
2338
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
2339
|
+
"required": false
|
|
2340
|
+
},
|
|
2341
|
+
"height": {
|
|
2342
|
+
"defaultValue": { "value": "100", "computed": false },
|
|
2343
|
+
"required": false
|
|
2344
|
+
},
|
|
2345
|
+
"backgroundColor": {
|
|
2346
|
+
"defaultValue": {
|
|
2347
|
+
"value": "\"gray-100\"",
|
|
2348
|
+
"computed": false
|
|
2349
|
+
},
|
|
2350
|
+
"required": false
|
|
2351
|
+
}
|
|
2352
|
+
}
|
|
2353
|
+
}
|
|
2354
|
+
],
|
|
2355
|
+
"./src/lib/components/Skeleton/SkeletonShine.tsx": [
|
|
2356
|
+
{
|
|
2357
|
+
"description": "@description Returns a Shine component. Add it inside a component with `position: relative`\n@link https://documentation-components-react.vercel.app/components/skeleton\n@extends HTMLSpanElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>",
|
|
2358
|
+
"methods": [],
|
|
2359
|
+
"displayName": "SkeletonShine"
|
|
2360
|
+
}
|
|
2361
|
+
],
|
|
2362
|
+
"./src/lib/components/Slideshow/Slideshow.tsx": [
|
|
2363
|
+
{
|
|
2364
|
+
"description": "@description Returns a Slideshow component\n@link https://documentation-components-react.vercel.app/components/slideshow\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop images?: Array<string> => only if children is not defined\n@prop children?: Array<ReactNode> => only if images is not defined\n@prop height?: string | number\n@prop imgFit?: CssObjectFit\n@prop controls?: boolean | Controls\n@prop options?: Options\n@prop pagination?: boolean | PaginationWithThumbnails | PaginationWithOther\n\n@type Controls\n@prop data-testid?: string\n@prop className?: string\n@prop size?: LibSlideshowButtonSize\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop hideOnTouch?: boolean\n@prop icons?: { prev?: string | JSX.Element; next?: string | JSX.Element }\n@prop iconsSizes?: { prev?: number; next?: number }\n@prop iconBaseUrl?: string\n@prop labelPrev?: string\n@prop labelNext?: string\n\n@type Options\n@prop autoPlay?: number\n@prop speed?: number\n\n@type PaginationWithThumbnails\n@prop type?: \"thumbnails\"\n@prop position?: \"inside\" | \"outside\"\n@prop hideOnTouch?: boolean\n\n@type PaginationWithOther\n@prop type?: \"dots\" | \"dots-outline\" | \"bars\"\n@prop position?: \"inside\" | \"outside\"\n@prop hideOnTouch?: boolean\n@prop color?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"",
|
|
2365
|
+
"methods": [],
|
|
2366
|
+
"displayName": "Slideshow",
|
|
2367
|
+
"props": {
|
|
2368
|
+
"height": {
|
|
2369
|
+
"defaultValue": { "value": "\"30vw\"", "computed": false },
|
|
2370
|
+
"required": false
|
|
2371
|
+
},
|
|
2372
|
+
"imgFit": {
|
|
2373
|
+
"defaultValue": { "value": "\"cover\"", "computed": false },
|
|
2374
|
+
"required": false
|
|
2375
|
+
}
|
|
2376
|
+
}
|
|
2377
|
+
}
|
|
2378
|
+
],
|
|
2379
|
+
"./src/lib/components/Skeleton/SkeletonCard.tsx": [
|
|
2380
|
+
{
|
|
2381
|
+
"description": "@description Returns a SkeletonCard component\n@link https://documentation-components-react.vercel.app/components/skeleton\n@extends ILibFlexbox\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop width?: string | number\n@prop maxWidth?: string | number\n@prop height?: string | number\n@prop backgroundColor?: Any color from the library\n@prop aspectRatio?: string\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop flex?: string | number\n@prop flexGrow?: string | number\n@prop border?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library }\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }\n@prop isShiny?: boolean",
|
|
2382
|
+
"methods": [],
|
|
2383
|
+
"displayName": "SkeletonCard",
|
|
2384
|
+
"props": {
|
|
2385
|
+
"maxWidth": {
|
|
2386
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
2387
|
+
"required": false
|
|
2388
|
+
}
|
|
2389
|
+
}
|
|
2390
|
+
}
|
|
2391
|
+
],
|
|
2392
|
+
"./src/lib/components/Slideshow/SlideshowButton.tsx": [
|
|
2393
|
+
{
|
|
2394
|
+
"description": "",
|
|
2395
|
+
"methods": [],
|
|
2396
|
+
"displayName": "SlideshowButton",
|
|
2397
|
+
"props": {
|
|
2398
|
+
"position": {
|
|
2399
|
+
"required": true,
|
|
2400
|
+
"tsType": { "name": "unknown" },
|
|
2401
|
+
"description": ""
|
|
2402
|
+
},
|
|
2403
|
+
"onClick": {
|
|
2404
|
+
"required": true,
|
|
2405
|
+
"tsType": {
|
|
2406
|
+
"name": "signature",
|
|
2407
|
+
"type": "function",
|
|
2408
|
+
"raw": "() => void",
|
|
2409
|
+
"signature": {
|
|
2410
|
+
"arguments": [],
|
|
2411
|
+
"return": { "name": "void" }
|
|
2412
|
+
}
|
|
2413
|
+
},
|
|
2414
|
+
"description": ""
|
|
2415
|
+
}
|
|
2416
|
+
},
|
|
2417
|
+
"composes": ["Pick"]
|
|
2418
|
+
}
|
|
2419
|
+
],
|
|
2420
|
+
"./src/lib/components/Slideshow/SlideshowPagination.tsx": [
|
|
2421
|
+
{
|
|
2422
|
+
"description": "",
|
|
2423
|
+
"methods": [],
|
|
2424
|
+
"displayName": "SlideshowPagination",
|
|
2425
|
+
"props": {
|
|
2426
|
+
"setActive": {
|
|
2427
|
+
"required": true,
|
|
2428
|
+
"tsType": {
|
|
2429
|
+
"name": "Dispatch",
|
|
2430
|
+
"elements": [
|
|
2431
|
+
{
|
|
2432
|
+
"name": "SetStateAction",
|
|
2433
|
+
"elements": [{ "name": "number" }],
|
|
2434
|
+
"raw": "SetStateAction<T>"
|
|
2435
|
+
}
|
|
2436
|
+
],
|
|
2437
|
+
"raw": "Dispatch<SetStateAction<T>>"
|
|
2438
|
+
},
|
|
2439
|
+
"description": ""
|
|
2440
|
+
},
|
|
2441
|
+
"contentLength": {
|
|
2442
|
+
"required": true,
|
|
2443
|
+
"tsType": { "name": "number" },
|
|
2444
|
+
"description": ""
|
|
2445
|
+
},
|
|
2446
|
+
"activeSlide": {
|
|
2447
|
+
"required": true,
|
|
2448
|
+
"tsType": { "name": "number" },
|
|
2449
|
+
"description": ""
|
|
2450
|
+
}
|
|
2451
|
+
},
|
|
2452
|
+
"composes": ["Pick"]
|
|
2453
|
+
}
|
|
2454
|
+
],
|
|
2455
|
+
"./src/lib/components/Section/Section.tsx": [
|
|
2456
|
+
{
|
|
2457
|
+
"description": "@description Returns a Section component\n@link https://documentation-components-react.vercel.app/layouts/section\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"",
|
|
2458
|
+
"methods": [],
|
|
2459
|
+
"displayName": "Section",
|
|
2460
|
+
"props": {
|
|
2461
|
+
"gap": {
|
|
2462
|
+
"defaultValue": { "value": "\"m\"", "computed": false },
|
|
2463
|
+
"required": false
|
|
2464
|
+
}
|
|
2465
|
+
}
|
|
2466
|
+
}
|
|
2467
|
+
],
|
|
2468
|
+
"./src/lib/components/SrOnly/SrOnly.tsx": [
|
|
2469
|
+
{
|
|
2470
|
+
"description": "@description Returns a component only for ScreenReaders\n@link https://documentation-components-react.vercel.app/components/sr-only\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>",
|
|
2471
|
+
"methods": [],
|
|
2472
|
+
"displayName": "SrOnly"
|
|
2473
|
+
}
|
|
2474
|
+
],
|
|
2475
|
+
"./src/lib/components/Stepper/Stepper.tsx": [
|
|
2476
|
+
{
|
|
2477
|
+
"description": "@description Returns a Stepper component\n@link https://documentation-components-react.vercel.app/components/stepper\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop steps: Array<LibStep> => only if children is not defined\n@prop children?: ReactChildren => only if steps is not defined\n@prop direction?: \"column\" | \"row\"\n@prop activeStep?: number\n@prop iconActive?: string | JSX.Element\n@prop iconActiveSize?: number\n@prop iconBaseUrl?: string\n@prop accentColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n\n@type LibStep\n@extends LibButtonLinkBlank\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop text: string\n@prop onClick?: void => only if to or href are not defined\n@prop disabled?: boolean => only if onClick is defined\n@prop to?: string => only if onClick and href are not defined\n@prop href?: string => only if onClick and to are not defined\n@prop blank?: boolean => only if to or href are defined",
|
|
2478
|
+
"methods": [],
|
|
2479
|
+
"displayName": "Stepper",
|
|
2480
|
+
"props": {
|
|
2481
|
+
"activeStep": {
|
|
2482
|
+
"defaultValue": { "value": "0", "computed": false },
|
|
2483
|
+
"required": false
|
|
2484
|
+
},
|
|
2485
|
+
"direction": {
|
|
2486
|
+
"defaultValue": { "value": "\"row\"", "computed": false },
|
|
2487
|
+
"required": false
|
|
2488
|
+
},
|
|
2489
|
+
"accentColor": {
|
|
2490
|
+
"defaultValue": {
|
|
2491
|
+
"value": "\"primary\"",
|
|
2492
|
+
"computed": false
|
|
2493
|
+
},
|
|
2494
|
+
"required": false
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
}
|
|
2498
|
+
],
|
|
2499
|
+
"./src/lib/components/Sticky/Sticky.tsx": [
|
|
2500
|
+
{
|
|
2501
|
+
"description": "@description Returns a Sticky component\n@link https://documentation-components-react.vercel.app/components/sticky\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop top?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"",
|
|
2502
|
+
"methods": [],
|
|
2503
|
+
"displayName": "Sticky",
|
|
2504
|
+
"props": {
|
|
2505
|
+
"top": {
|
|
2506
|
+
"defaultValue": { "value": "\"s\"", "computed": false },
|
|
2507
|
+
"required": false
|
|
2508
|
+
}
|
|
2509
|
+
}
|
|
2510
|
+
}
|
|
2511
|
+
],
|
|
2512
|
+
"./src/lib/components/Stepper/Step.tsx": [
|
|
2513
|
+
{
|
|
2514
|
+
"description": "@description Returns a Step component\n@link https://documentation-components-react.vercel.app/components/stepper\n@extends HTMLSpanElement & LibButtonLinkBlank\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLSpanElement>\n@prop direction?: \"column\" | \"row\"\n@prop accentColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop isActive?: boolean\n@prop isDone?: boolean\n@prop iconActive?: string | JSX.Element\n@prop iconActiveSize?: number\n@prop number?: number\n@prop iconBaseUrl?: string\n@prop onClick?: void => only if to or href are not defined\n@prop disabled?: boolean => only if onClick is defined\n@prop to?: string => only if onClick and href are not defined\n@prop href?: string => only if onClick and to are not defined\n@prop blank?: boolean => only if to or href are defined",
|
|
2515
|
+
"methods": [],
|
|
2516
|
+
"displayName": "Step",
|
|
2517
|
+
"props": {
|
|
2518
|
+
"direction": {
|
|
2519
|
+
"defaultValue": { "value": "\"row\"", "computed": false },
|
|
2520
|
+
"required": false
|
|
2521
|
+
},
|
|
2522
|
+
"accentColor": {
|
|
2523
|
+
"defaultValue": {
|
|
2524
|
+
"value": "\"primary\"",
|
|
2525
|
+
"computed": false
|
|
2526
|
+
},
|
|
2527
|
+
"required": false
|
|
2528
|
+
},
|
|
2529
|
+
"iconActiveSize": {
|
|
2530
|
+
"defaultValue": { "value": "16", "computed": false },
|
|
2531
|
+
"required": false
|
|
2532
|
+
},
|
|
2533
|
+
"iconActive": {
|
|
2534
|
+
"defaultValue": {
|
|
2535
|
+
"value": "<CheckCircle\n data-testid={testid && `${testid}.NumberContainer.Icon`}\n className={className && \"Icon\"}\n size={iconActiveSize}\n/>",
|
|
2536
|
+
"computed": false
|
|
2537
|
+
},
|
|
2538
|
+
"required": false
|
|
2539
|
+
}
|
|
2540
|
+
}
|
|
2541
|
+
}
|
|
2542
|
+
],
|
|
2543
|
+
"./src/lib/components/Table/TBody.tsx": [
|
|
2544
|
+
{
|
|
2545
|
+
"description": "@description Returns a TBody component\n@link https://documentation-components-react.vercel.app/components/table\n@extends HTMLTableSectionElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLTableSectionElement>",
|
|
2546
|
+
"methods": [],
|
|
2547
|
+
"displayName": "TBody"
|
|
2548
|
+
}
|
|
2549
|
+
],
|
|
2550
|
+
"./src/lib/components/Table/THead.tsx": [
|
|
2551
|
+
{
|
|
2552
|
+
"description": "@description Returns a THead component\n@link https://documentation-components-react.vercel.app/components/table\n@extends HTMLTableSectionElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLTableSectionElement>",
|
|
2553
|
+
"methods": [],
|
|
2554
|
+
"displayName": "THead"
|
|
2555
|
+
}
|
|
2556
|
+
],
|
|
2557
|
+
"./src/lib/components/Table/Table.tsx": [
|
|
2558
|
+
{
|
|
2559
|
+
"description": "@description Returns a Table component\n@link https://documentation-components-react.vercel.app/components/table\n@extends HTMLTableElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLTableElement>\n@prop data: Array<Array<ReactChildren>> => only if children is not defined\n@prop children?: ReactChildren => only if data is not defined\n@prop headers?: Array<ReactChildren>\n@prop variant?: LibTableVariant\n@prop vAlign?: CssVerticalAlign\n@prop linkify?: boolean",
|
|
2560
|
+
"methods": [],
|
|
2561
|
+
"displayName": "Table",
|
|
2562
|
+
"props": {
|
|
2563
|
+
"variant": {
|
|
2564
|
+
"defaultValue": {
|
|
2565
|
+
"value": "\"bordered\"",
|
|
2566
|
+
"computed": false
|
|
2567
|
+
},
|
|
2568
|
+
"required": false
|
|
2569
|
+
},
|
|
2570
|
+
"vAlign": {
|
|
2571
|
+
"defaultValue": { "value": "\"top\"", "computed": false },
|
|
2572
|
+
"required": false
|
|
2573
|
+
}
|
|
2574
|
+
}
|
|
2575
|
+
}
|
|
2576
|
+
],
|
|
2577
|
+
"./src/lib/components/Table/Td.tsx": [
|
|
2578
|
+
{
|
|
2579
|
+
"description": "@description Returns a Td component\n@link https://documentation-components-react.vercel.app/components/table\n@extends HTMLTableCellElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLTableCellElement>\n@prop noPadding?: boolean",
|
|
2580
|
+
"methods": [],
|
|
2581
|
+
"displayName": "Td"
|
|
2582
|
+
}
|
|
2583
|
+
],
|
|
2584
|
+
"./src/lib/components/Tabs/Tabs.tsx": [
|
|
2585
|
+
{
|
|
2586
|
+
"description": "@description Returns a Tabs component\n@link https://documentation-components-react.vercel.app/components/tabs\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop tabsItems: Array<LibTabItem>\n@prop showInUrl?: boolean\n@prop queries?: Array<Array<string>> => only if showInUrl is set to true, working only with projects using react-router\n@prop justify?: \"start\" | \"stretch\"\n@prop active?: number\n@prop variant?: \"basic\" | \"rounded\"\n\n@type LibTabItem\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop title: string\n@prop content: ReactNode",
|
|
2587
|
+
"methods": [],
|
|
2588
|
+
"displayName": "Tabs",
|
|
2589
|
+
"props": {
|
|
2590
|
+
"justify": {
|
|
2591
|
+
"defaultValue": { "value": "\"start\"", "computed": false },
|
|
2592
|
+
"required": false
|
|
2593
|
+
},
|
|
2594
|
+
"active": {
|
|
2595
|
+
"defaultValue": { "value": "0", "computed": false },
|
|
2596
|
+
"required": false
|
|
2597
|
+
},
|
|
2598
|
+
"variant": {
|
|
2599
|
+
"defaultValue": { "value": "\"basic\"", "computed": false },
|
|
2600
|
+
"required": false
|
|
2601
|
+
}
|
|
2602
|
+
}
|
|
2603
|
+
}
|
|
2604
|
+
],
|
|
2605
|
+
"./src/lib/components/Table/Tr.tsx": [
|
|
2606
|
+
{
|
|
2607
|
+
"description": "@description Returns a Tr component\n@link https://documentation-components-react.vercel.app/components/table\n@extends HTMLTableRowElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLTableRowElement>",
|
|
2608
|
+
"methods": [],
|
|
2609
|
+
"displayName": "Tr"
|
|
2610
|
+
}
|
|
2611
|
+
],
|
|
2612
|
+
"./src/lib/components/Tabs/TabButton.tsx": [
|
|
2613
|
+
{
|
|
2614
|
+
"description": "@description Returns a TabButton component\n@link https://documentation-components-react.vercel.app/components/tabs\n@extends HTMLButtonElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLButtonElement>\n@prop isActive: boolean\n@prop onClick: () => void\n@prop justify?: \"start\" | \"stretch\"\n@prop variant?: \"basic\" | \"rounded\"",
|
|
2615
|
+
"methods": [],
|
|
2616
|
+
"displayName": "TabButton",
|
|
2617
|
+
"props": {
|
|
2618
|
+
"justify": {
|
|
2619
|
+
"defaultValue": { "value": "\"start\"", "computed": false },
|
|
2620
|
+
"required": false
|
|
2621
|
+
},
|
|
2622
|
+
"variant": {
|
|
2623
|
+
"defaultValue": { "value": "\"basic\"", "computed": false },
|
|
2624
|
+
"required": false
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
}
|
|
2628
|
+
],
|
|
2629
|
+
"./src/lib/components/Tabs/TabItem.tsx": [
|
|
2630
|
+
{
|
|
2631
|
+
"description": "@description Returns a TabItem component\n@link https://documentation-components-react.vercel.app/components/tabs\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop isActive: boolean",
|
|
2632
|
+
"methods": [],
|
|
2633
|
+
"displayName": "TabItem"
|
|
2634
|
+
}
|
|
2635
|
+
],
|
|
2636
|
+
"./src/lib/components/Tabs/TabsButtonsContainer.tsx": [
|
|
2637
|
+
{
|
|
2638
|
+
"description": "@description Returns a TabsButtonsContainer component\n@link https://documentation-components-react.vercel.app/components/tabs\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop justify?: \"start\" | \"stretch\"\n@prop variant?: \"basic\" | \"rounded\"",
|
|
2639
|
+
"methods": [],
|
|
2640
|
+
"displayName": "TabsButtonsContainer",
|
|
2641
|
+
"props": {
|
|
2642
|
+
"justify": {
|
|
2643
|
+
"defaultValue": { "value": "\"start\"", "computed": false },
|
|
2644
|
+
"required": false
|
|
2645
|
+
},
|
|
2646
|
+
"variant": {
|
|
2647
|
+
"defaultValue": { "value": "\"basic\"", "computed": false },
|
|
2648
|
+
"required": false
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
}
|
|
2652
|
+
],
|
|
2653
|
+
"./src/lib/components/Tabs/TabsContainer.tsx": [
|
|
2654
|
+
{
|
|
2655
|
+
"description": "@description Returns a TabsContainer component\n@link https://documentation-components-react.vercel.app/components/tabs\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>",
|
|
2656
|
+
"methods": [],
|
|
2657
|
+
"displayName": "TabsContainer"
|
|
2658
|
+
}
|
|
2659
|
+
],
|
|
2660
|
+
"./src/lib/components/Tag/Tag.tsx": [
|
|
2661
|
+
{
|
|
2662
|
+
"description": "@description Returns a Tag component\n@link https://documentation-components-react.vercel.app/components/tag\n@extends HTMLSpanElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLSpanElement>\n@prop backgroundColor?: Any color from the library\n@prop textColor?: Any color from the library\n@prop border?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library }\n@prop padding?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" | { left?: LibSpacers | \"auto\"; top?: LibSpacers | \"auto\"; right?: LibSpacers | \"auto\"; bottom?: LibSpacers | \"auto\"; leftRight?: LibSpacers | \"auto\"; topBottom?: LibSpacers | \"auto\" }\n@prop borderRadius?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"round\" | \"circle\" | number | { topLeft?: LibRadiuses; topRight?: LibRadiuses; bottomLeft?: LibRadiuses; bottomRight?: LibRadiuses }\n@prop fontSize?: \"display-h1\" | \"display-h2\" | \"display-h3\" | \"display-h4\" | \"display-h5\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"body\" | \"small\"\n@prop icons?: { left?: string | JSX.Element; right?: string | JSX.Element }\n@prop iconSizes?: { left?: number; right?: number } => only if icons is defined\n@prop iconBaseUrl?: string => only if icons is defined\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\" => only if icons is defined",
|
|
2663
|
+
"methods": [],
|
|
2664
|
+
"displayName": "Tag",
|
|
2665
|
+
"props": {
|
|
2666
|
+
"backgroundColor": {
|
|
2667
|
+
"defaultValue": {
|
|
2668
|
+
"value": "\"primary\"",
|
|
2669
|
+
"computed": false
|
|
2670
|
+
},
|
|
2671
|
+
"required": false
|
|
2672
|
+
},
|
|
2673
|
+
"textColor": {
|
|
2674
|
+
"defaultValue": {
|
|
2675
|
+
"value": "backgroundColor === \"white\"\n? \"primary\"\n: backgroundColor === \"black\"\n? \"white\"\n: \"background\"",
|
|
2676
|
+
"computed": false
|
|
2677
|
+
},
|
|
2678
|
+
"required": false
|
|
2679
|
+
},
|
|
2680
|
+
"padding": {
|
|
2681
|
+
"defaultValue": {
|
|
2682
|
+
"value": "{\n topBottom: \"xxs\",\n leftRight: \"s\",\n}",
|
|
2683
|
+
"computed": false
|
|
2684
|
+
},
|
|
2685
|
+
"required": false
|
|
2686
|
+
},
|
|
2687
|
+
"borderRadius": {
|
|
2688
|
+
"defaultValue": { "value": "\"round\"", "computed": false },
|
|
2689
|
+
"required": false
|
|
2690
|
+
},
|
|
2691
|
+
"fontSize": {
|
|
2692
|
+
"defaultValue": { "value": "\"small\"", "computed": false },
|
|
2693
|
+
"required": false
|
|
2694
|
+
},
|
|
2695
|
+
"iconSizes": {
|
|
2696
|
+
"defaultValue": {
|
|
2697
|
+
"value": "{\n left: getIconSizeFromFont(fontSize),\n right: getIconSizeFromFont(fontSize),\n}",
|
|
2698
|
+
"computed": false
|
|
2699
|
+
},
|
|
2700
|
+
"required": false
|
|
2701
|
+
},
|
|
2702
|
+
"gap": {
|
|
2703
|
+
"defaultValue": { "value": "\"xs\"", "computed": false },
|
|
2704
|
+
"required": false
|
|
2705
|
+
}
|
|
2706
|
+
}
|
|
2707
|
+
}
|
|
2708
|
+
],
|
|
2709
|
+
"./src/lib/components/Text/Text.tsx": [
|
|
2710
|
+
{
|
|
2711
|
+
"description": "@description Returns a Text component\n@link https://documentation-components-react.vercel.app/styles/text\n@extends HTMLHeadingElement & HTMLParagraphElement & HTMLQuoteElement & HTMLUListElement & HTMLOListElement & HTMLDListElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLHeadingElement & HTMLParagraphElement & HTMLQuoteElement & HTMLUListElement & HTMLOListElement & HTMLDListElement>\n@prop color?: Any color from the library\n@prop linkColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop textAlign?: CssTextAlign\n@prop tag?: \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"strong\" | \"em\" | \"small\" | \"blockquote\" | \"ul\" | \"ol\" | \"dl\"\n@prop display?: boolean => only if tag is set to h1 to h5",
|
|
2712
|
+
"methods": [],
|
|
2713
|
+
"displayName": "Text",
|
|
2714
|
+
"props": {
|
|
2715
|
+
"tag": {
|
|
2716
|
+
"defaultValue": { "value": "\"p\"", "computed": false },
|
|
2717
|
+
"required": false
|
|
2718
|
+
}
|
|
2719
|
+
}
|
|
2720
|
+
}
|
|
2721
|
+
],
|
|
2722
|
+
"./src/lib/components/TextIcon/TextIcon.tsx": [
|
|
2723
|
+
{
|
|
2724
|
+
"description": "@description Returns a Text with Icon component\n@link https://documentation-components-react.vercel.app/components/text-icon\n@extends ILibText\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLHeadingElement & HTMLParagraphElement & HTMLQuoteElement & HTMLUListElement & HTMLOListElement & HTMLDListElement>\n@prop icon: string | JSX.Element\n@prop iconColor?: Any color from the library\n@prop iconSize?: number\n@prop textAs?: ElementType\n@prop tag?: \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"small\" | \"blockquote\"\n@prop iconBaseUrl?: string\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop containerStyle?: CSSProperties\n@prop color?: Any color from the library\n@prop linkColor?: \"primary\" | \"secondary\" | \"success\" | \"danger\" | \"warning\" | \"white\" | \"gray\" | \"font\" | \"background\"\n@prop textAlign?: CssTextAlign\n@prop display?: boolean => only if tag is set to h1 to h5",
|
|
2725
|
+
"methods": [],
|
|
2726
|
+
"displayName": "TextIcon",
|
|
2727
|
+
"props": {
|
|
2728
|
+
"tag": {
|
|
2729
|
+
"defaultValue": { "value": "\"p\"", "computed": false },
|
|
2730
|
+
"required": false
|
|
2731
|
+
}
|
|
2732
|
+
}
|
|
2733
|
+
}
|
|
2734
|
+
],
|
|
2735
|
+
"./src/lib/components/Toast/Toast.tsx": [
|
|
2736
|
+
{
|
|
2737
|
+
"description": "@description Returns a Toast component\n@link https://documentation-components-react.vercel.app/components/toast\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop title: string\n@prop toasterPosition?: \"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\"\n@prop toastStyle?: { maxWidth?: string | number; border?: { style?: CssBorderStyle; width?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"; color?: Any color from the library }; backgroundColor?: Any color from the library; textColor?: Any color from the library; shadow?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" }\n@prop hideCloseButton?: boolean\n@prop status?: \"success\" | \"error\" | \"warning\" | \"info\" | \"loading\"\n@prop options?: LibToastOptions\n\n@type LibToastOptions\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop body?: string | ReactChildren\n@prop duration?: number\n@prop icons?: { left?: string | JSX.Element; close?: string | JSX.Element }\n@prop iconSizes?: { left?: number close?: number }\n@prop iconLeftColor?: Any color from the library\n@prop labelClose?: string\n@prop withTimer?: boolean\n@prop timerBackgroundColor?: Any color from the library",
|
|
2738
|
+
"methods": [],
|
|
2739
|
+
"displayName": "Toast",
|
|
2740
|
+
"props": {
|
|
2741
|
+
"id": {
|
|
2742
|
+
"defaultValue": { "value": "uuid()", "computed": true },
|
|
2743
|
+
"required": false
|
|
2744
|
+
},
|
|
2745
|
+
"role": {
|
|
2746
|
+
"defaultValue": { "value": "\"alert\"", "computed": false },
|
|
2747
|
+
"required": false
|
|
2748
|
+
}
|
|
2749
|
+
}
|
|
2750
|
+
}
|
|
2751
|
+
],
|
|
2752
|
+
"./src/lib/components/Toast/Toaster.tsx": [
|
|
2753
|
+
{
|
|
2754
|
+
"description": "@description Returns a Toaster component\n@link https://documentation-components-react.vercel.app/components/toast\n@prop data-testid?: string\n@prop as?: ElementType\n@prop toasts: Array<LibToast>\n@prop isOpen: boolean\n@prop position?: \"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\"\n@prop toastsOptions?: { duration?: number; labelClose?: string; withTimer?: boolean; icons?: { left?: string | JSX.Element; close?: string | JSX.Element }; iconSizes?: { left?: number; close?: number }; iconLeftColor?: Any color from the library; iconsBaseUrl?: string }\n\n@type LibToast\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop title: string\n@prop id?: string\n@prop status?: \"success\" | \"error\" | \"warning\" | \"info\" | \"loading\"\n@prop options?: LibToastOptions\n\n@type LibToastOptions\n@prop data-testid?: string\n@prop className?: string\n@prop id?: string\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop body?: string | ReactChildren\n@prop duration?: number\n@prop icons?: { left?: string | JSX.Element; close?: string | JSX.Element }\n@prop iconSizes?: { left?: number close?: number }\n@prop iconLeftColor?: Any color from the library\n@prop labelClose?: string\n@prop withTimer?: boolean\n@prop timerBackgroundColor?: Any color from the library",
|
|
2755
|
+
"methods": [],
|
|
2756
|
+
"displayName": "Toaster",
|
|
2757
|
+
"props": {
|
|
2758
|
+
"position": {
|
|
2759
|
+
"defaultValue": {
|
|
2760
|
+
"value": "\"bottom-right\"",
|
|
2761
|
+
"computed": false
|
|
2762
|
+
},
|
|
2763
|
+
"required": false
|
|
2764
|
+
}
|
|
2765
|
+
}
|
|
2766
|
+
}
|
|
2767
|
+
],
|
|
2768
|
+
"./src/lib/components/Timepicker/Timepicker.tsx": [
|
|
2769
|
+
{
|
|
2770
|
+
"description": "@description Returns a Timepicker component\n@link https://documentation-components-react.vercel.app/components/timepicker\n@extends HTMLInputElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLInputElement>\n@prop value: LibTimepickerHours | LibTimepickerHalfTimes | LibTimepickerQuarterTimes | LibTimepickerMinutes\n@prop setValue: Dispatch<SetStateAction< LibTimepickerHours | LibTimepickerHalfTimes | LibTimepickerQuarterTimes | LibTimepickerMinutes>>\n@prop iconClock?: string | JSX.Element\n@prop iconClockSize?: number\n@prop listDirection?: \"up\" | \"down\"\n@prop prefix?: string | JSX.Element\n@prop step?: LibTimepickerSteps\n@prop minTime?: LibTimepickerHours | LibTimepickerHalfTimes | LibTimepickerQuarterTimes | LibTimepickerMinutes\n@prop maxTime?: LibTimepickerHours | LibTimepickerHalfTimes | LibTimepickerQuarterTimes | LibTimepickerMinutes\n@prop data-testid?: string\n@prop id?: string\n@prop label?: string\n@prop labelComment?: string\n@prop helper?: string\n@prop helperBottom?: string | { text: string => only if element is not defined; element: ReactChildren => only if text is not defined; textColor?: Any color from the library; fontStyle?: CssFontStyle; icon?: string | JSX.Element; iconColor?: Any color from the library; iconSize?: number }\n@prop validation?: { status: LibValidationStatus; message?: string; iconNotPassed?: LibIcon; iconNotPassedSize?: number; iconPassed?: LibIcon; iconPassedSize?: number; iconBaseUrl?: string }\n@prop iconBaseUrl?: string\n@prop inputBackground?: \"light\" | \"dark\"\n@prop inputVariant?: \"rounded\" | \"pill\"\n@prop containerStyle?: CSSProperties\n@prop icon?: string | JSX.Element\n@prop iconSize?: number\n@prop prefix?: string | JSX.Element",
|
|
2771
|
+
"methods": [],
|
|
2772
|
+
"displayName": "Timepicker",
|
|
2773
|
+
"props": {
|
|
2774
|
+
"iconClockSize": {
|
|
2775
|
+
"defaultValue": { "value": "16", "computed": false },
|
|
2776
|
+
"required": false
|
|
2777
|
+
},
|
|
2778
|
+
"iconClock": {
|
|
2779
|
+
"defaultValue": {
|
|
2780
|
+
"value": "<Clock\n data-testid={testid && `${testid}.RightContainer.IconClock`}\n className={className && \"IconClock\"}\n size={iconClockSize}\n/>",
|
|
2781
|
+
"computed": false
|
|
2782
|
+
},
|
|
2783
|
+
"required": false
|
|
2784
|
+
},
|
|
2785
|
+
"step": {
|
|
2786
|
+
"defaultValue": { "value": "\"1h\"", "computed": false },
|
|
2787
|
+
"required": false
|
|
2788
|
+
}
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2791
|
+
],
|
|
2792
|
+
"./src/lib/components/Truncate/Truncate.tsx": [
|
|
2793
|
+
{
|
|
2794
|
+
"description": "@description Returns a Truncate component\n@link https://documentation-components-react.vercel.app/components/truncate\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"",
|
|
2795
|
+
"methods": [],
|
|
2796
|
+
"displayName": "Truncate",
|
|
2797
|
+
"props": {
|
|
2798
|
+
"gap": {
|
|
2799
|
+
"defaultValue": { "value": "\"xs\"", "computed": false },
|
|
2800
|
+
"required": false
|
|
2801
|
+
}
|
|
2802
|
+
}
|
|
2803
|
+
}
|
|
2804
|
+
],
|
|
2805
|
+
"./src/lib/components/Video/Video.tsx": [
|
|
2806
|
+
{
|
|
2807
|
+
"description": "@description Returns an HTML Video component\n@link https://documentation-components-react.vercel.app/components/video\n@extends HTMLVideoElement\n@prop data-testid?: string\n@prop ref?: ForwardedRef<HTMLVideoElement>\n@prop fit?: CssObjectFit\n@prop aspectRatio?: string\n@prop emptyText?: string\n@prop type?: \"video/x-flv\" | \"video/mp4\" | \"application/x-mpegURL\" | \"video/MP2T\" | \"video/3gpp\" | \"video/quicktime\" | \"video/x-msvideo\" | \"video/x-ms-wmv\"",
|
|
2808
|
+
"methods": [],
|
|
2809
|
+
"displayName": "Video",
|
|
2810
|
+
"props": {
|
|
2811
|
+
"type": {
|
|
2812
|
+
"defaultValue": {
|
|
2813
|
+
"value": "\"video/mp4\"",
|
|
2814
|
+
"computed": false
|
|
2815
|
+
},
|
|
2816
|
+
"required": false
|
|
2817
|
+
},
|
|
2818
|
+
"width": {
|
|
2819
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
2820
|
+
"required": false
|
|
2821
|
+
},
|
|
2822
|
+
"height": {
|
|
2823
|
+
"defaultValue": { "value": "\"auto\"", "computed": false },
|
|
2824
|
+
"required": false
|
|
2825
|
+
},
|
|
2826
|
+
"emptyText": {
|
|
2827
|
+
"defaultValue": {
|
|
2828
|
+
"value": "\"Your browser doesn't support the video tag.\"",
|
|
2829
|
+
"computed": false
|
|
2830
|
+
},
|
|
2831
|
+
"required": false
|
|
2832
|
+
}
|
|
2833
|
+
}
|
|
2834
|
+
}
|
|
2835
|
+
],
|
|
2836
|
+
"./src/lib/components/Tooltip/Tooltip.tsx": [
|
|
2837
|
+
{
|
|
2838
|
+
"description": "@description Returns a Tooltip component\n@link https://documentation-components-react.vercel.app/components/tooltip\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop tooltip: string | JSX.Element\n@prop position?: \"top\" | \"bottom\" | \"left\" | \"right\"\n@prop hideArrow?: boolean\n@prop trigger?: \"hover\" | \"click\"\n@prop backgroundColor?: Any color or overlay from the library\n@prop textColor?: Any color from the library\n@prop offset?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop tooltipStyles?: CSSProperties",
|
|
2839
|
+
"methods": [],
|
|
2840
|
+
"displayName": "Tooltip",
|
|
2841
|
+
"props": {
|
|
2842
|
+
"position": {
|
|
2843
|
+
"defaultValue": { "value": "\"top\"", "computed": false },
|
|
2844
|
+
"required": false
|
|
2845
|
+
},
|
|
2846
|
+
"backgroundColor": {
|
|
2847
|
+
"defaultValue": {
|
|
2848
|
+
"value": "\"black-80\"",
|
|
2849
|
+
"computed": false
|
|
2850
|
+
},
|
|
2851
|
+
"required": false
|
|
2852
|
+
},
|
|
2853
|
+
"textColor": {
|
|
2854
|
+
"defaultValue": { "value": "\"white\"", "computed": false },
|
|
2855
|
+
"required": false
|
|
2856
|
+
},
|
|
2857
|
+
"offset": {
|
|
2858
|
+
"defaultValue": { "value": "\"xs\"", "computed": false },
|
|
2859
|
+
"required": false
|
|
2860
|
+
}
|
|
2861
|
+
}
|
|
2862
|
+
}
|
|
2863
|
+
],
|
|
2864
|
+
"./src/lib/components/Wrapper/Wrapper.tsx": [
|
|
2865
|
+
{
|
|
2866
|
+
"description": "@description Returns a Wrapper component\n@link https://documentation-components-react.vercel.app/layouts/container\n@extends HTMLDivElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLDivElement>\n@prop gap?: \"xxl\" | \"xl\" | \"l\" | \"m\" | \"s\" | \"xs\" | \"xxs\" | number | \"0px\"\n@prop backgroundColor?: Any color from the library\n@prop minHeight?: string | number",
|
|
2867
|
+
"methods": [],
|
|
2868
|
+
"displayName": "Wrapper",
|
|
2869
|
+
"props": {
|
|
2870
|
+
"gap": {
|
|
2871
|
+
"defaultValue": { "value": "\"l\"", "computed": false },
|
|
2872
|
+
"required": false
|
|
2873
|
+
},
|
|
2874
|
+
"backgroundColor": {
|
|
2875
|
+
"defaultValue": {
|
|
2876
|
+
"value": "\"transparent\"",
|
|
2877
|
+
"computed": false
|
|
2878
|
+
},
|
|
2879
|
+
"required": false
|
|
2880
|
+
}
|
|
2881
|
+
}
|
|
2882
|
+
}
|
|
2883
|
+
],
|
|
2884
|
+
"./src/lib/components/Youtube/Youtube.tsx": [
|
|
2885
|
+
{
|
|
2886
|
+
"description": "@description Returns a Youtube component\n@link https://documentation-components-react.vercel.app/components/youtube\n@extends HTMLIframeElement\n@prop data-testid?: string\n@prop as?: ElementType\n@prop ref?: ForwardedRef<HTMLIframeElement>\n@prop aspectRatio?: string",
|
|
2887
|
+
"methods": [],
|
|
2888
|
+
"displayName": "Youtube",
|
|
2889
|
+
"props": {
|
|
2890
|
+
"src": {
|
|
2891
|
+
"defaultValue": { "value": "\"\"", "computed": false },
|
|
2892
|
+
"required": false
|
|
2893
|
+
},
|
|
2894
|
+
"width": {
|
|
2895
|
+
"defaultValue": { "value": "\"100%\"", "computed": false },
|
|
2896
|
+
"required": false
|
|
2897
|
+
},
|
|
2898
|
+
"height": {
|
|
2899
|
+
"defaultValue": { "value": "\"auto\"", "computed": false },
|
|
2900
|
+
"required": false
|
|
2901
|
+
},
|
|
2902
|
+
"aspectRatio": {
|
|
2903
|
+
"defaultValue": { "value": "\"16/9\"", "computed": false },
|
|
2904
|
+
"required": false
|
|
2905
|
+
}
|
|
2906
|
+
}
|
|
2907
|
+
}
|
|
2908
|
+
]
|
|
2909
|
+
}
|