@axa-fr/canopee-react 1.0.0-alpha.1089
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/dist/client.d.ts +60 -0
- package/dist/client.js +59 -0
- package/dist/distributeur/Accordion/Accordion.d.ts +14 -0
- package/dist/distributeur/Accordion/Accordion.js +18 -0
- package/dist/distributeur/Accordion/AccordionContext.d.ts +1 -0
- package/dist/distributeur/Accordion/AccordionContext.js +2 -0
- package/dist/distributeur/Accordion/Body.d.ts +6 -0
- package/dist/distributeur/Accordion/Body.js +5 -0
- package/dist/distributeur/Accordion/CollapseCard.d.ts +15 -0
- package/dist/distributeur/Accordion/CollapseCard.js +11 -0
- package/dist/distributeur/Accordion/Header.d.ts +17 -0
- package/dist/distributeur/Accordion/Header.js +20 -0
- package/dist/distributeur/Accordion/index.d.ts +3 -0
- package/dist/distributeur/Accordion/index.js +2 -0
- package/dist/distributeur/Action/Action.d.ts +5 -0
- package/dist/distributeur/Action/Action.js +9 -0
- package/dist/distributeur/Button/Button.d.ts +11 -0
- package/dist/distributeur/Button/Button.js +7 -0
- package/dist/distributeur/Card/Card.d.ts +14 -0
- package/dist/distributeur/Card/Card.js +6 -0
- package/dist/distributeur/CardData/CardData.d.ts +15 -0
- package/dist/distributeur/CardData/CardData.js +6 -0
- package/dist/distributeur/CardData/CardDataHeader.d.ts +14 -0
- package/dist/distributeur/CardData/CardDataHeader.js +9 -0
- package/dist/distributeur/Divider/Divider.d.ts +7 -0
- package/dist/distributeur/Divider/Divider.js +10 -0
- package/dist/distributeur/Form/Checkbox/Checkbox.d.ts +23 -0
- package/dist/distributeur/Form/Checkbox/Checkbox.js +30 -0
- package/dist/distributeur/Form/Checkbox/CheckboxInput.d.ts +6 -0
- package/dist/distributeur/Form/Checkbox/CheckboxInput.js +13 -0
- package/dist/distributeur/Form/Checkbox/CheckboxItem.d.ts +10 -0
- package/dist/distributeur/Form/Checkbox/CheckboxItem.js +15 -0
- package/dist/distributeur/Form/Checkbox/CheckboxModes.d.ts +7 -0
- package/dist/distributeur/Form/Checkbox/CheckboxModes.js +8 -0
- package/dist/distributeur/Form/Checkbox/index.d.ts +4 -0
- package/dist/distributeur/Form/Checkbox/index.js +4 -0
- package/dist/distributeur/Form/Choice/Choice.d.ts +14 -0
- package/dist/distributeur/Form/Choice/Choice.js +18 -0
- package/dist/distributeur/Form/Choice/ChoiceInput.d.ts +6 -0
- package/dist/distributeur/Form/Choice/ChoiceInput.js +13 -0
- package/dist/distributeur/Form/Choice/index.d.ts +2 -0
- package/dist/distributeur/Form/Choice/index.js +2 -0
- package/dist/distributeur/Form/Date/Date.d.ts +9 -0
- package/dist/distributeur/Form/Date/Date.js +11 -0
- package/dist/distributeur/Form/Date/DateInput.d.ts +8 -0
- package/dist/distributeur/Form/Date/DateInput.js +9 -0
- package/dist/distributeur/Form/Date/index.d.ts +2 -0
- package/dist/distributeur/Form/Date/index.js +2 -0
- package/dist/distributeur/Form/Experimental/index.d.ts +0 -0
- package/dist/distributeur/Form/Experimental/index.js +1 -0
- package/dist/distributeur/Form/File/File.d.ts +25 -0
- package/dist/distributeur/Form/File/File.js +60 -0
- package/dist/distributeur/Form/File/FileErrors.d.ts +6 -0
- package/dist/distributeur/Form/File/FileErrors.js +5 -0
- package/dist/distributeur/Form/File/FileInput.d.ts +13 -0
- package/dist/distributeur/Form/File/FileInput.js +21 -0
- package/dist/distributeur/Form/File/FileLine.d.ts +9 -0
- package/dist/distributeur/Form/File/FileLine.js +7 -0
- package/dist/distributeur/Form/File/FileTable.d.ts +14 -0
- package/dist/distributeur/Form/File/FileTable.js +9 -0
- package/dist/distributeur/Form/File/constants.d.ts +1 -0
- package/dist/distributeur/Form/File/constants.js +1 -0
- package/dist/distributeur/Form/File/index.d.ts +6 -0
- package/dist/distributeur/Form/File/index.js +5 -0
- package/dist/distributeur/Form/MultiSelect/FormatOptionLabel.d.ts +4 -0
- package/dist/distributeur/Form/MultiSelect/FormatOptionLabel.js +12 -0
- package/dist/distributeur/Form/MultiSelect/MultiSelect.d.ts +23 -0
- package/dist/distributeur/Form/MultiSelect/MultiSelect.js +74 -0
- package/dist/distributeur/Form/MultiSelect/MultiSelectInput.d.ts +7 -0
- package/dist/distributeur/Form/MultiSelect/MultiSelectInput.js +10 -0
- package/dist/distributeur/Form/MultiSelect/NoOptionsMessage.d.ts +3 -0
- package/dist/distributeur/Form/MultiSelect/NoOptionsMessage.js +1 -0
- package/dist/distributeur/Form/MultiSelect/ValueContainer.d.ts +4 -0
- package/dist/distributeur/Form/MultiSelect/ValueContainer.js +20 -0
- package/dist/distributeur/Form/MultiSelect/index.d.ts +2 -0
- package/dist/distributeur/Form/MultiSelect/index.js +2 -0
- package/dist/distributeur/Form/MultiSelect/useMultiSelectStyle.d.ts +5 -0
- package/dist/distributeur/Form/MultiSelect/useMultiSelectStyle.js +81 -0
- package/dist/distributeur/Form/NestedQuestion/NestedQuestion.d.ts +5 -0
- package/dist/distributeur/Form/NestedQuestion/NestedQuestion.js +7 -0
- package/dist/distributeur/Form/Number/Number.d.ts +7 -0
- package/dist/distributeur/Form/Number/Number.js +12 -0
- package/dist/distributeur/Form/Number/NumberInput.d.ts +6 -0
- package/dist/distributeur/Form/Number/NumberInput.js +6 -0
- package/dist/distributeur/Form/Number/index.d.ts +2 -0
- package/dist/distributeur/Form/Number/index.js +2 -0
- package/dist/distributeur/Form/Pass/Pass.d.ts +9 -0
- package/dist/distributeur/Form/Pass/Pass.js +10 -0
- package/dist/distributeur/Form/Pass/PassInput.d.ts +10 -0
- package/dist/distributeur/Form/Pass/PassInput.js +31 -0
- package/dist/distributeur/Form/Pass/index.d.ts +2 -0
- package/dist/distributeur/Form/Pass/index.js +2 -0
- package/dist/distributeur/Form/Radio/Radio.d.ts +25 -0
- package/dist/distributeur/Form/Radio/Radio.js +37 -0
- package/dist/distributeur/Form/Radio/RadioCardGroup.d.ts +9 -0
- package/dist/distributeur/Form/Radio/RadioCardGroup.js +25 -0
- package/dist/distributeur/Form/Radio/RadioInput.d.ts +6 -0
- package/dist/distributeur/Form/Radio/RadioInput.js +11 -0
- package/dist/distributeur/Form/Radio/RadioItem.d.ts +10 -0
- package/dist/distributeur/Form/Radio/RadioItem.js +12 -0
- package/dist/distributeur/Form/Radio/index.d.ts +3 -0
- package/dist/distributeur/Form/Radio/index.js +3 -0
- package/dist/distributeur/Form/Select/Select.d.ts +342 -0
- package/dist/distributeur/Form/Select/Select.js +13 -0
- package/dist/distributeur/Form/Select/SelectBase.d.ts +24 -0
- package/dist/distributeur/Form/Select/SelectBase.js +14 -0
- package/dist/distributeur/Form/Select/SelectDefault.d.ts +9 -0
- package/dist/distributeur/Form/Select/SelectDefault.js +17 -0
- package/dist/distributeur/Form/Select/SelectDefaultWithOptions.d.ts +23 -0
- package/dist/distributeur/Form/Select/SelectDefaultWithOptions.js +39 -0
- package/dist/distributeur/Form/Select/SelectInput.d.ts +378 -0
- package/dist/distributeur/Form/Select/SelectInput.js +9 -0
- package/dist/distributeur/Form/Select/index.d.ts +3 -0
- package/dist/distributeur/Form/Select/index.js +3 -0
- package/dist/distributeur/Form/Slider/Slider.d.ts +27 -0
- package/dist/distributeur/Form/Slider/Slider.js +36 -0
- package/dist/distributeur/Form/Slider/SliderInput.d.ts +9 -0
- package/dist/distributeur/Form/Slider/SliderInput.js +10 -0
- package/dist/distributeur/Form/Slider/index.d.ts +3 -0
- package/dist/distributeur/Form/Slider/index.js +3 -0
- package/dist/distributeur/Form/Text/Text.d.ts +7 -0
- package/dist/distributeur/Form/Text/Text.js +10 -0
- package/dist/distributeur/Form/Text/TextInput.d.ts +6 -0
- package/dist/distributeur/Form/Text/TextInput.js +9 -0
- package/dist/distributeur/Form/Text/index.d.ts +2 -0
- package/dist/distributeur/Form/Text/index.js +2 -0
- package/dist/distributeur/Form/Textarea/Textarea.d.ts +5 -0
- package/dist/distributeur/Form/Textarea/Textarea.js +12 -0
- package/dist/distributeur/Form/Textarea/TextareaInput.d.ts +7 -0
- package/dist/distributeur/Form/Textarea/TextareaInput.js +10 -0
- package/dist/distributeur/Form/Textarea/index.d.ts +2 -0
- package/dist/distributeur/Form/Textarea/index.js +2 -0
- package/dist/distributeur/Form/core/Deprecated/Field.d.ts +21 -0
- package/dist/distributeur/Form/core/Deprecated/Field.js +19 -0
- package/dist/distributeur/Form/core/Deprecated/FieldForm.d.ts +103 -0
- package/dist/distributeur/Form/core/Deprecated/FieldForm.js +162 -0
- package/dist/distributeur/Form/core/Deprecated/FieldInput.d.ts +16 -0
- package/dist/distributeur/Form/core/Deprecated/FieldInput.js +14 -0
- package/dist/distributeur/Form/core/Field.d.ts +80 -0
- package/dist/distributeur/Form/core/Field.js +42 -0
- package/dist/distributeur/Form/core/FieldError.d.ts +8 -0
- package/dist/distributeur/Form/core/FieldError.js +8 -0
- package/dist/distributeur/Form/core/FormClassManager.d.ts +7 -0
- package/dist/distributeur/Form/core/FormClassManager.js +36 -0
- package/dist/distributeur/Form/core/HelpMessage.d.ts +8 -0
- package/dist/distributeur/Form/core/HelpMessage.js +2 -0
- package/dist/distributeur/Form/core/InputList.d.ts +8 -0
- package/dist/distributeur/Form/core/InputList.js +4 -0
- package/dist/distributeur/Form/core/MessageTypes.d.ts +5 -0
- package/dist/distributeur/Form/core/MessageTypes.js +6 -0
- package/dist/distributeur/Form/core/getFirstId.d.ts +2 -0
- package/dist/distributeur/Form/core/getFirstId.js +1 -0
- package/dist/distributeur/Form/core/getOptionClassName.d.ts +1 -0
- package/dist/distributeur/Form/core/getOptionClassName.js +10 -0
- package/dist/distributeur/Form/core/index.d.ts +34 -0
- package/dist/distributeur/Form/core/index.js +13 -0
- package/dist/distributeur/Form/core/useAriaInvalid.d.ts +2 -0
- package/dist/distributeur/Form/core/useAriaInvalid.js +2 -0
- package/dist/distributeur/Form/core/useInputClassModifier.d.ts +4 -0
- package/dist/distributeur/Form/core/useInputClassModifier.js +13 -0
- package/dist/distributeur/Form/core/useOptionsWithId.d.ts +2 -0
- package/dist/distributeur/Form/core/useOptionsWithId.js +13 -0
- package/dist/distributeur/HelpButton/index.d.ts +8 -0
- package/dist/distributeur/HelpButton/index.js +8 -0
- package/dist/distributeur/Layout/Footer/Footer.d.ts +14 -0
- package/dist/distributeur/Layout/Footer/Footer.js +8 -0
- package/dist/distributeur/Layout/Footer/index.d.ts +1 -0
- package/dist/distributeur/Layout/Footer/index.js +1 -0
- package/dist/distributeur/Layout/Header/AnchorNavBar/AnchorNavBar.d.ts +39 -0
- package/dist/distributeur/Layout/Header/AnchorNavBar/AnchorNavBar.js +21 -0
- package/dist/distributeur/Layout/Header/Header.d.ts +9 -0
- package/dist/distributeur/Layout/Header/Header.js +10 -0
- package/dist/distributeur/Layout/Header/HeaderTitle/HeaderTitle.d.ts +17 -0
- package/dist/distributeur/Layout/Header/HeaderTitle/HeaderTitle.helpers.d.ts +1 -0
- package/dist/distributeur/Layout/Header/HeaderTitle/HeaderTitle.helpers.js +6 -0
- package/dist/distributeur/Layout/Header/HeaderTitle/HeaderTitle.js +17 -0
- package/dist/distributeur/Layout/Header/Infos/Infos.d.ts +14 -0
- package/dist/distributeur/Layout/Header/Infos/Infos.js +16 -0
- package/dist/distributeur/Layout/Header/MenuTitleWrapper/MenuTitleWrapper.d.ts +11 -0
- package/dist/distributeur/Layout/Header/MenuTitleWrapper/MenuTitleWrapper.js +14 -0
- package/dist/distributeur/Layout/Header/Name/Name.d.ts +16 -0
- package/dist/distributeur/Layout/Header/Name/Name.js +10 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBar.d.ts +12 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBar.helpers.d.ts +1 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBar.helpers.js +12 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBar.js +35 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarBase.d.ts +20 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarBase.js +16 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/NavBarItem.d.ts +14 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/NavBarItem.js +54 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/NavBarItemBase.d.ts +10 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/NavBarItemBase.helpers.d.ts +1 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/NavBarItemBase.helpers.js +11 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/NavBarItemBase.js +19 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/NavBarItemLink.d.ts +8 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/NavBarItemLink.js +4 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/index.d.ts +3 -0
- package/dist/distributeur/Layout/Header/NavBar/NavBarItem/index.js +3 -0
- package/dist/distributeur/Layout/Header/NavBar/index.d.ts +5 -0
- package/dist/distributeur/Layout/Header/NavBar/index.js +5 -0
- package/dist/distributeur/Layout/Header/ToggleButton/ToggleButton.d.ts +7 -0
- package/dist/distributeur/Layout/Header/ToggleButton/ToggleButton.js +8 -0
- package/dist/distributeur/Layout/Header/User/InnerUser.d.ts +5 -0
- package/dist/distributeur/Layout/Header/User/InnerUser.js +3 -0
- package/dist/distributeur/Layout/Header/User/User.d.ts +60 -0
- package/dist/distributeur/Layout/Header/User/User.js +10 -0
- package/dist/distributeur/Layout/Header/index.d.ts +9 -0
- package/dist/distributeur/Layout/Header/index.js +8 -0
- package/dist/distributeur/Layout/MainContainer/MainContainer.d.ts +5 -0
- package/dist/distributeur/Layout/MainContainer/MainContainer.js +3 -0
- package/dist/distributeur/Link/CustomLink.d.ts +8 -0
- package/dist/distributeur/Link/CustomLink.js +6 -0
- package/dist/distributeur/Link/Link.d.ts +5 -0
- package/dist/distributeur/Link/Link.js +12 -0
- package/dist/distributeur/Link/LinkAnchor.d.ts +12 -0
- package/dist/distributeur/Link/LinkAnchor.js +12 -0
- package/dist/distributeur/Link/linkClassName.d.ts +1 -0
- package/dist/distributeur/Link/linkClassName.js +1 -0
- package/dist/distributeur/Loader/Loader.d.ts +12 -0
- package/dist/distributeur/Loader/Loader.js +26 -0
- package/dist/distributeur/Messages/Message.d.ts +47 -0
- package/dist/distributeur/Messages/Message.js +43 -0
- package/dist/distributeur/ModalAgent/BooleanModal.d.ts +40 -0
- package/dist/distributeur/ModalAgent/BooleanModal.js +13 -0
- package/dist/distributeur/ModalAgent/Modal.d.ts +25 -0
- package/dist/distributeur/ModalAgent/Modal.js +24 -0
- package/dist/distributeur/ModalAgent/components/Body.d.ts +5 -0
- package/dist/distributeur/ModalAgent/components/Body.js +7 -0
- package/dist/distributeur/ModalAgent/components/Footer.d.ts +5 -0
- package/dist/distributeur/ModalAgent/components/Footer.js +7 -0
- package/dist/distributeur/ModalAgent/components/Header.d.ts +30 -0
- package/dist/distributeur/ModalAgent/components/Header.js +8 -0
- package/dist/distributeur/ModalAgent/components/HeaderBase.d.ts +5 -0
- package/dist/distributeur/ModalAgent/components/HeaderBase.js +7 -0
- package/dist/distributeur/ModalAgent/index.d.ts +7 -0
- package/dist/distributeur/ModalAgent/index.js +7 -0
- package/dist/distributeur/Popover/AnimatedPopover.d.ts +14 -0
- package/dist/distributeur/Popover/AnimatedPopover.js +18 -0
- package/dist/distributeur/Popover/Popover.d.ts +13 -0
- package/dist/distributeur/Popover/Popover.js +8 -0
- package/dist/distributeur/Popover/Popover.types.d.ts +9 -0
- package/dist/distributeur/Popover/Popover.types.js +1 -0
- package/dist/distributeur/Popover/PopoverBase.d.ts +15 -0
- package/dist/distributeur/Popover/PopoverBase.js +8 -0
- package/dist/distributeur/Popover/PopoverClick.d.ts +2 -0
- package/dist/distributeur/Popover/PopoverClick.js +27 -0
- package/dist/distributeur/Popover/PopoverOver.d.ts +2 -0
- package/dist/distributeur/Popover/PopoverOver.js +13 -0
- package/dist/distributeur/Popover/index.d.ts +3 -0
- package/dist/distributeur/Popover/index.js +1 -0
- package/dist/distributeur/Restitution/ArticleRestitution.d.ts +6 -0
- package/dist/distributeur/Restitution/ArticleRestitution.js +6 -0
- package/dist/distributeur/Restitution/HeaderRestitution.d.ts +9 -0
- package/dist/distributeur/Restitution/HeaderRestitution.js +6 -0
- package/dist/distributeur/Restitution/Restitution.d.ts +6 -0
- package/dist/distributeur/Restitution/Restitution.js +6 -0
- package/dist/distributeur/Restitution/RestitutionList.d.ts +6 -0
- package/dist/distributeur/Restitution/RestitutionList.js +4 -0
- package/dist/distributeur/Restitution/SectionRestitution.d.ts +6 -0
- package/dist/distributeur/Restitution/SectionRestitution.js +6 -0
- package/dist/distributeur/Restitution/SectionRestitutionColumn.d.ts +7 -0
- package/dist/distributeur/Restitution/SectionRestitutionColumn.js +7 -0
- package/dist/distributeur/Restitution/SectionRestitutionRow.d.ts +8 -0
- package/dist/distributeur/Restitution/SectionRestitutionRow.js +8 -0
- package/dist/distributeur/Restitution/SectionRestitutionTitle.d.ts +6 -0
- package/dist/distributeur/Restitution/SectionRestitutionTitle.js +6 -0
- package/dist/distributeur/Restitution/index.d.ts +9 -0
- package/dist/distributeur/Restitution/index.js +9 -0
- package/dist/distributeur/Steps/Step.d.ts +8 -0
- package/dist/distributeur/Steps/Step.js +15 -0
- package/dist/distributeur/Steps/StepBase.d.ts +10 -0
- package/dist/distributeur/Steps/StepBase.js +9 -0
- package/dist/distributeur/Steps/StepCurrent.d.ts +5 -0
- package/dist/distributeur/Steps/StepCurrent.js +4 -0
- package/dist/distributeur/Steps/StepDisabled.d.ts +5 -0
- package/dist/distributeur/Steps/StepDisabled.js +4 -0
- package/dist/distributeur/Steps/StepLink.d.ts +10 -0
- package/dist/distributeur/Steps/StepLink.js +7 -0
- package/dist/distributeur/Steps/StepNoLink.d.ts +7 -0
- package/dist/distributeur/Steps/StepNoLink.js +4 -0
- package/dist/distributeur/Steps/Steps.d.ts +8 -0
- package/dist/distributeur/Steps/Steps.js +8 -0
- package/dist/distributeur/Steps/VerticalStep.d.ts +29 -0
- package/dist/distributeur/Steps/VerticalStep.js +22 -0
- package/dist/distributeur/Steps/index.d.ts +5 -0
- package/dist/distributeur/Steps/index.js +5 -0
- package/dist/distributeur/Steps/types.d.ts +8 -0
- package/dist/distributeur/Steps/types.js +1 -0
- package/dist/distributeur/Summary/index.d.ts +9 -0
- package/dist/distributeur/Summary/index.js +11 -0
- package/dist/distributeur/Svg/Svg.d.ts +7 -0
- package/dist/distributeur/Svg/Svg.js +50 -0
- package/dist/distributeur/Svg/index.d.ts +1 -0
- package/dist/distributeur/Svg/index.js +1 -0
- package/dist/distributeur/Svg/svgInjector.d.ts +12 -0
- package/dist/distributeur/Svg/svgInjector.js +28 -0
- package/dist/distributeur/Table/Pagination/Items.d.ts +30 -0
- package/dist/distributeur/Table/Pagination/Items.js +17 -0
- package/dist/distributeur/Table/Pagination/Li.d.ts +11 -0
- package/dist/distributeur/Table/Pagination/Li.js +14 -0
- package/dist/distributeur/Table/Pagination/LiPoint.d.ts +7 -0
- package/dist/distributeur/Table/Pagination/LiPoint.js +8 -0
- package/dist/distributeur/Table/Pagination/Pager.d.ts +41 -0
- package/dist/distributeur/Table/Pagination/Pager.js +16 -0
- package/dist/distributeur/Table/Pagination/PaginationButton.d.ts +13 -0
- package/dist/distributeur/Table/Pagination/PaginationButton.js +14 -0
- package/dist/distributeur/Table/Pagination/Paging.d.ts +15 -0
- package/dist/distributeur/Table/Pagination/Paging.js +21 -0
- package/dist/distributeur/Table/TBody.d.ts +6 -0
- package/dist/distributeur/Table/TBody.js +7 -0
- package/dist/distributeur/Table/THead.d.ts +6 -0
- package/dist/distributeur/Table/THead.js +7 -0
- package/dist/distributeur/Table/Table.d.ts +36 -0
- package/dist/distributeur/Table/Table.js +26 -0
- package/dist/distributeur/Table/Td.d.ts +6 -0
- package/dist/distributeur/Table/Td.js +7 -0
- package/dist/distributeur/Table/Th.d.ts +6 -0
- package/dist/distributeur/Table/Th.js +7 -0
- package/dist/distributeur/Table/Tr.d.ts +6 -0
- package/dist/distributeur/Table/Tr.js +7 -0
- package/dist/distributeur/Table/index.d.ts +9 -0
- package/dist/distributeur/Table/index.js +9 -0
- package/dist/distributeur/Tabs/Tabs.d.ts +8 -0
- package/dist/distributeur/Tabs/Tabs.js +6 -0
- package/dist/distributeur/Tabs/components/Pane.d.ts +8 -0
- package/dist/distributeur/Tabs/components/Pane.js +8 -0
- package/dist/distributeur/Tabs/components/Tab.d.ts +10 -0
- package/dist/distributeur/Tabs/components/Tab.js +4 -0
- package/dist/distributeur/Tabs/components/TabsCore.d.ts +10 -0
- package/dist/distributeur/Tabs/components/TabsCore.js +17 -0
- package/dist/distributeur/Tabs/components/TabsStateless.d.ts +13 -0
- package/dist/distributeur/Tabs/components/TabsStateless.js +11 -0
- package/dist/distributeur/Tabs/components/Title.d.ts +15 -0
- package/dist/distributeur/Tabs/components/Title.js +13 -0
- package/dist/distributeur/Tag/Tag.d.ts +32 -0
- package/dist/distributeur/Tag/Tag.js +32 -0
- package/dist/distributeur/Title/Title.d.ts +11 -0
- package/dist/distributeur/Title/Title.js +10 -0
- package/dist/distributeur/utilities/constants.d.ts +6 -0
- package/dist/distributeur/utilities/constants.js +7 -0
- package/dist/distributeur/utilities/helpers/date.d.ts +1 -0
- package/dist/distributeur/utilities/helpers/date.js +4 -0
- package/dist/distributeur/utilities/helpers/generateId.d.ts +1 -0
- package/dist/distributeur/utilities/helpers/generateId.js +10 -0
- package/dist/distributeur/utilities/helpers/getClassName.d.ts +20 -0
- package/dist/distributeur/utilities/helpers/getClassName.js +24 -0
- package/dist/distributeur/utilities/helpers/getComponentClassName.d.ts +20 -0
- package/dist/distributeur/utilities/helpers/getComponentClassName.js +54 -0
- package/dist/distributeur/utilities/hooks/useIsSmallScreen.d.ts +1 -0
- package/dist/distributeur/utilities/hooks/useIsSmallScreen.js +14 -0
- package/dist/distributeur/utilities.d.ts +3 -0
- package/dist/distributeur/utilities.js +3 -0
- package/dist/distributeur.d.ts +63 -0
- package/dist/distributeur.js +54 -0
- package/dist/prospect-client/Accordion/AccordionApollo.d.ts +4 -0
- package/dist/prospect-client/Accordion/AccordionApollo.js +8 -0
- package/dist/prospect-client/Accordion/AccordionCommon.d.ts +29 -0
- package/dist/prospect-client/Accordion/AccordionCommon.js +17 -0
- package/dist/prospect-client/Accordion/AccordionLF.d.ts +4 -0
- package/dist/prospect-client/Accordion/AccordionLF.js +8 -0
- package/dist/prospect-client/AccordionCore/AccordionCoreApollo.d.ts +3 -0
- package/dist/prospect-client/AccordionCore/AccordionCoreApollo.js +5 -0
- package/dist/prospect-client/AccordionCore/AccordionCoreCommon.d.ts +17 -0
- package/dist/prospect-client/AccordionCore/AccordionCoreCommon.js +22 -0
- package/dist/prospect-client/AccordionCore/AccordionCoreLF.d.ts +3 -0
- package/dist/prospect-client/AccordionCore/AccordionCoreLF.js +5 -0
- package/dist/prospect-client/BasePicture/BasePicture.d.ts +5 -0
- package/dist/prospect-client/BasePicture/BasePicture.js +4 -0
- package/dist/prospect-client/Button/ButtonApollo.d.ts +4 -0
- package/dist/prospect-client/Button/ButtonApollo.js +6 -0
- package/dist/prospect-client/Button/ButtonCommon.d.ts +23 -0
- package/dist/prospect-client/Button/ButtonCommon.js +13 -0
- package/dist/prospect-client/Button/ButtonLF.d.ts +4 -0
- package/dist/prospect-client/Button/ButtonLF.js +6 -0
- package/dist/prospect-client/CardMessage/CardMessageApollo.d.ts +2 -0
- package/dist/prospect-client/CardMessage/CardMessageApollo.js +2 -0
- package/dist/prospect-client/CardMessage/CardMessageCommon.d.ts +14 -0
- package/dist/prospect-client/CardMessage/CardMessageCommon.js +15 -0
- package/dist/prospect-client/CardMessage/CardMessageLF.d.ts +2 -0
- package/dist/prospect-client/CardMessage/CardMessageLF.js +2 -0
- package/dist/prospect-client/ClickIcon/ClickIconApollo.d.ts +2 -0
- package/dist/prospect-client/ClickIcon/ClickIconApollo.js +2 -0
- package/dist/prospect-client/ClickIcon/ClickIconCommon.d.ts +9 -0
- package/dist/prospect-client/ClickIcon/ClickIconCommon.js +3 -0
- package/dist/prospect-client/ClickIcon/ClickIconLF.d.ts +2 -0
- package/dist/prospect-client/ClickIcon/ClickIconLF.js +2 -0
- package/dist/prospect-client/ContentItemDuoAction/ContentItemDuoActionApollo.d.ts +4 -0
- package/dist/prospect-client/ContentItemDuoAction/ContentItemDuoActionApollo.js +6 -0
- package/dist/prospect-client/ContentItemDuoAction/ContentItemDuoActionCommon.d.ts +28 -0
- package/dist/prospect-client/ContentItemDuoAction/ContentItemDuoActionCommon.js +10 -0
- package/dist/prospect-client/ContentItemDuoAction/ContentItemDuoActionLF.d.ts +5 -0
- package/dist/prospect-client/ContentItemDuoAction/ContentItemDuoActionLF.js +7 -0
- package/dist/prospect-client/ContentItemMono/ContentItemMonoApollo.d.ts +3 -0
- package/dist/prospect-client/ContentItemMono/ContentItemMonoApollo.js +5 -0
- package/dist/prospect-client/ContentItemMono/ContentItemMonoCommon.d.ts +33 -0
- package/dist/prospect-client/ContentItemMono/ContentItemMonoCommon.js +28 -0
- package/dist/prospect-client/ContentItemMono/ContentItemMonoCore.d.ts +9 -0
- package/dist/prospect-client/ContentItemMono/ContentItemMonoCore.js +4 -0
- package/dist/prospect-client/ContentItemMono/ContentItemMonoLF.d.ts +3 -0
- package/dist/prospect-client/ContentItemMono/ContentItemMonoLF.js +5 -0
- package/dist/prospect-client/DataAgent/DataAgentApollo.d.ts +3 -0
- package/dist/prospect-client/DataAgent/DataAgentApollo.js +7 -0
- package/dist/prospect-client/DataAgent/DataAgentCommon.d.ts +21 -0
- package/dist/prospect-client/DataAgent/DataAgentCommon.js +17 -0
- package/dist/prospect-client/DataAgent/DataAgentLF.d.ts +3 -0
- package/dist/prospect-client/DataAgent/DataAgentLF.js +7 -0
- package/dist/prospect-client/Divider/DividerApollo.d.ts +2 -0
- package/dist/prospect-client/Divider/DividerApollo.js +2 -0
- package/dist/prospect-client/Divider/DividerCommon.d.ts +6 -0
- package/dist/prospect-client/Divider/DividerCommon.js +7 -0
- package/dist/prospect-client/Divider/DividerLF.d.ts +2 -0
- package/dist/prospect-client/Divider/DividerLF.js +2 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckbox/CardCheckboxApollo.d.ts +6 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckbox/CardCheckboxApollo.js +7 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckbox/CardCheckboxCommon.d.ts +35 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckbox/CardCheckboxCommon.js +31 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckbox/CardCheckboxLF.d.ts +6 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckbox/CardCheckboxLF.js +7 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckboxOption/CardCheckboxOptionApollo.d.ts +3 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckboxOption/CardCheckboxOptionApollo.js +6 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckboxOption/CardCheckboxOptionCommon.d.ts +16 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckboxOption/CardCheckboxOptionCommon.js +11 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckboxOption/CardCheckboxOptionLF.d.ts +3 -0
- package/dist/prospect-client/Form/Checkbox/CardCheckboxOption/CardCheckboxOptionLF.js +6 -0
- package/dist/prospect-client/Form/Checkbox/Checkbox/CheckboxApollo.d.ts +2 -0
- package/dist/prospect-client/Form/Checkbox/Checkbox/CheckboxApollo.js +2 -0
- package/dist/prospect-client/Form/Checkbox/Checkbox/CheckboxCommon.d.ts +8 -0
- package/dist/prospect-client/Form/Checkbox/Checkbox/CheckboxCommon.js +4 -0
- package/dist/prospect-client/Form/Checkbox/Checkbox/CheckboxLF.d.ts +2 -0
- package/dist/prospect-client/Form/Checkbox/Checkbox/CheckboxLF.js +2 -0
- package/dist/prospect-client/Form/Checkbox/CheckboxText/CheckboxTextApollo.d.ts +3 -0
- package/dist/prospect-client/Form/Checkbox/CheckboxText/CheckboxTextApollo.js +8 -0
- package/dist/prospect-client/Form/Checkbox/CheckboxText/CheckboxTextCommon.d.ts +16 -0
- package/dist/prospect-client/Form/Checkbox/CheckboxText/CheckboxTextCommon.js +11 -0
- package/dist/prospect-client/Form/Checkbox/CheckboxText/CheckboxTextLF.d.ts +3 -0
- package/dist/prospect-client/Form/Checkbox/CheckboxText/CheckboxTextLF.js +8 -0
- package/dist/prospect-client/Form/Dropdown/DropdownApollo.d.ts +3 -0
- package/dist/prospect-client/Form/Dropdown/DropdownApollo.js +6 -0
- package/dist/prospect-client/Form/Dropdown/DropdownCommon.d.ts +26 -0
- package/dist/prospect-client/Form/Dropdown/DropdownCommon.js +13 -0
- package/dist/prospect-client/Form/Dropdown/DropdownLF.d.ts +3 -0
- package/dist/prospect-client/Form/Dropdown/DropdownLF.js +6 -0
- package/dist/prospect-client/Form/FileUpload/FileUpload/FileUploadApollo.d.ts +3 -0
- package/dist/prospect-client/Form/FileUpload/FileUpload/FileUploadApollo.js +7 -0
- package/dist/prospect-client/Form/FileUpload/FileUpload/FileUploadCommon.d.ts +18 -0
- package/dist/prospect-client/Form/FileUpload/FileUpload/FileUploadCommon.js +11 -0
- package/dist/prospect-client/Form/FileUpload/FileUpload/FileUploadLF.d.ts +3 -0
- package/dist/prospect-client/Form/FileUpload/FileUpload/FileUploadLF.js +7 -0
- package/dist/prospect-client/Form/FileUpload/InputFile/InputFileApollo.d.ts +4 -0
- package/dist/prospect-client/Form/FileUpload/InputFile/InputFileApollo.js +11 -0
- package/dist/prospect-client/Form/FileUpload/InputFile/InputFileCommon.d.ts +60 -0
- package/dist/prospect-client/Form/FileUpload/InputFile/InputFileCommon.js +39 -0
- package/dist/prospect-client/Form/FileUpload/InputFile/InputFileLF.d.ts +4 -0
- package/dist/prospect-client/Form/FileUpload/InputFile/InputFileLF.js +9 -0
- package/dist/prospect-client/Form/FileUpload/ItemFile/ItemFileApollo.d.ts +3 -0
- package/dist/prospect-client/Form/FileUpload/ItemFile/ItemFileApollo.js +10 -0
- package/dist/prospect-client/Form/FileUpload/ItemFile/ItemFileCommon.d.ts +54 -0
- package/dist/prospect-client/Form/FileUpload/ItemFile/ItemFileCommon.js +26 -0
- package/dist/prospect-client/Form/FileUpload/ItemFile/ItemFileLF.d.ts +3 -0
- package/dist/prospect-client/Form/FileUpload/ItemFile/ItemFileLF.js +10 -0
- package/dist/prospect-client/Form/InputDate/InputDate.helper.d.ts +8 -0
- package/dist/prospect-client/Form/InputDate/InputDate.helper.js +23 -0
- package/dist/prospect-client/Form/InputDate/InputDateApollo.d.ts +3 -0
- package/dist/prospect-client/Form/InputDate/InputDateApollo.js +8 -0
- package/dist/prospect-client/Form/InputDate/InputDateAtom.d.ts +9 -0
- package/dist/prospect-client/Form/InputDate/InputDateAtom.js +6 -0
- package/dist/prospect-client/Form/InputDate/InputDateCommon.d.ts +27 -0
- package/dist/prospect-client/Form/InputDate/InputDateCommon.js +30 -0
- package/dist/prospect-client/Form/InputDate/InputDateLF.d.ts +3 -0
- package/dist/prospect-client/Form/InputDate/InputDateLF.js +8 -0
- package/dist/prospect-client/Form/InputDate/InputDateTextAtom.d.ts +9 -0
- package/dist/prospect-client/Form/InputDate/InputDateTextAtom.js +16 -0
- package/dist/prospect-client/Form/InputPhone/CountryCodeSelect.d.ts +12 -0
- package/dist/prospect-client/Form/InputPhone/CountryCodeSelect.js +33 -0
- package/dist/prospect-client/Form/InputPhone/InputPhone.types.d.ts +4 -0
- package/dist/prospect-client/Form/InputPhone/InputPhone.types.js +1 -0
- package/dist/prospect-client/Form/InputPhone/InputPhoneApollo.d.ts +3 -0
- package/dist/prospect-client/Form/InputPhone/InputPhoneApollo.js +8 -0
- package/dist/prospect-client/Form/InputPhone/InputPhoneCommon.d.ts +35 -0
- package/dist/prospect-client/Form/InputPhone/InputPhoneCommon.js +32 -0
- package/dist/prospect-client/Form/InputPhone/InputPhoneLF.d.ts +3 -0
- package/dist/prospect-client/Form/InputPhone/InputPhoneLF.js +8 -0
- package/dist/prospect-client/Form/InputPhone/maskFrenchPhoneNumber.d.ts +1 -0
- package/dist/prospect-client/Form/InputPhone/maskFrenchPhoneNumber.js +12 -0
- package/dist/prospect-client/Form/InputText/InputTextApollo.d.ts +3 -0
- package/dist/prospect-client/Form/InputText/InputTextApollo.js +9 -0
- package/dist/prospect-client/Form/InputText/InputTextCommon.d.ts +24 -0
- package/dist/prospect-client/Form/InputText/InputTextCommon.js +14 -0
- package/dist/prospect-client/Form/InputText/InputTextLF.d.ts +3 -0
- package/dist/prospect-client/Form/InputText/InputTextLF.js +9 -0
- package/dist/prospect-client/Form/InputTextAtom/InputTextAtomApollo.d.ts +2 -0
- package/dist/prospect-client/Form/InputTextAtom/InputTextAtomApollo.js +2 -0
- package/dist/prospect-client/Form/InputTextAtom/InputTextAtomCommon.d.ts +10 -0
- package/dist/prospect-client/Form/InputTextAtom/InputTextAtomCommon.js +11 -0
- package/dist/prospect-client/Form/InputTextAtom/InputTextAtomLF.d.ts +2 -0
- package/dist/prospect-client/Form/InputTextAtom/InputTextAtomLF.js +2 -0
- package/dist/prospect-client/Form/ItemLabel/ItemLabelApollo.d.ts +3 -0
- package/dist/prospect-client/Form/ItemLabel/ItemLabelApollo.js +5 -0
- package/dist/prospect-client/Form/ItemLabel/ItemLabelCommon.d.ts +103 -0
- package/dist/prospect-client/Form/ItemLabel/ItemLabelCommon.js +55 -0
- package/dist/prospect-client/Form/ItemLabel/ItemLabelLF.d.ts +3 -0
- package/dist/prospect-client/Form/ItemLabel/ItemLabelLF.js +5 -0
- package/dist/prospect-client/Form/ItemMessage/ItemMessageApollo.d.ts +2 -0
- package/dist/prospect-client/Form/ItemMessage/ItemMessageApollo.js +2 -0
- package/dist/prospect-client/Form/ItemMessage/ItemMessageCommon.d.ts +13 -0
- package/dist/prospect-client/Form/ItemMessage/ItemMessageCommon.js +23 -0
- package/dist/prospect-client/Form/ItemMessage/ItemMessageLF.d.ts +2 -0
- package/dist/prospect-client/Form/ItemMessage/ItemMessageLF.js +2 -0
- package/dist/prospect-client/Form/Radio/CardRadio/CardRadioApollo.d.ts +3 -0
- package/dist/prospect-client/Form/Radio/CardRadio/CardRadioApollo.js +6 -0
- package/dist/prospect-client/Form/Radio/CardRadio/CardRadioCommon.d.ts +39 -0
- package/dist/prospect-client/Form/Radio/CardRadio/CardRadioCommon.js +16 -0
- package/dist/prospect-client/Form/Radio/CardRadio/CardRadioLF.d.ts +3 -0
- package/dist/prospect-client/Form/Radio/CardRadio/CardRadioLF.js +6 -0
- package/dist/prospect-client/Form/Radio/CardRadioOption/CardRadioOptionApollo.d.ts +3 -0
- package/dist/prospect-client/Form/Radio/CardRadioOption/CardRadioOptionApollo.js +6 -0
- package/dist/prospect-client/Form/Radio/CardRadioOption/CardRadioOptionCommon.d.ts +50 -0
- package/dist/prospect-client/Form/Radio/CardRadioOption/CardRadioOptionCommon.js +12 -0
- package/dist/prospect-client/Form/Radio/CardRadioOption/CardRadioOptionLF.d.ts +3 -0
- package/dist/prospect-client/Form/Radio/CardRadioOption/CardRadioOptionLF.js +6 -0
- package/dist/prospect-client/Form/Radio/Radio/RadioApollo.d.ts +2 -0
- package/dist/prospect-client/Form/Radio/Radio/RadioApollo.js +2 -0
- package/dist/prospect-client/Form/Radio/Radio/RadioCommon.d.ts +5 -0
- package/dist/prospect-client/Form/Radio/Radio/RadioCommon.js +6 -0
- package/dist/prospect-client/Form/Radio/Radio/RadioLF.d.ts +2 -0
- package/dist/prospect-client/Form/Radio/Radio/RadioLF.js +2 -0
- package/dist/prospect-client/Form/TextArea/TextAreaApollo.d.ts +3 -0
- package/dist/prospect-client/Form/TextArea/TextAreaApollo.js +8 -0
- package/dist/prospect-client/Form/TextArea/TextAreaCommon.d.ts +17 -0
- package/dist/prospect-client/Form/TextArea/TextAreaCommon.js +14 -0
- package/dist/prospect-client/Form/TextArea/TextAreaLF.d.ts +3 -0
- package/dist/prospect-client/Form/TextArea/TextAreaLF.js +8 -0
- package/dist/prospect-client/Grid/DebugGridApollo.d.ts +2 -0
- package/dist/prospect-client/Grid/DebugGridApollo.js +4 -0
- package/dist/prospect-client/Grid/DebugGridCommon.d.ts +11 -0
- package/dist/prospect-client/Grid/DebugGridCommon.js +10 -0
- package/dist/prospect-client/Grid/DebugGridLF.d.ts +2 -0
- package/dist/prospect-client/Grid/DebugGridLF.js +4 -0
- package/dist/prospect-client/Heading/HeadingApollo.d.ts +4 -0
- package/dist/prospect-client/Heading/HeadingApollo.js +5 -0
- package/dist/prospect-client/Heading/HeadingCommon.d.ts +15 -0
- package/dist/prospect-client/Heading/HeadingCommon.js +8 -0
- package/dist/prospect-client/Heading/HeadingLF.d.ts +4 -0
- package/dist/prospect-client/Heading/HeadingLF.js +5 -0
- package/dist/prospect-client/Heading/HeadingWithSubheadings.d.ts +10 -0
- package/dist/prospect-client/Heading/HeadingWithSubheadings.js +2 -0
- package/dist/prospect-client/Heading/types.d.ts +6 -0
- package/dist/prospect-client/Heading/types.js +1 -0
- package/dist/prospect-client/Icon/IconApollo.d.ts +2 -0
- package/dist/prospect-client/Icon/IconApollo.js +2 -0
- package/dist/prospect-client/Icon/IconCommon.d.ts +21 -0
- package/dist/prospect-client/Icon/IconCommon.js +28 -0
- package/dist/prospect-client/Icon/IconLF.d.ts +2 -0
- package/dist/prospect-client/Icon/IconLF.js +2 -0
- package/dist/prospect-client/ItemTabBar/ItemTabBarApollo.d.ts +2 -0
- package/dist/prospect-client/ItemTabBar/ItemTabBarApollo.js +2 -0
- package/dist/prospect-client/ItemTabBar/ItemTabBarCommon.d.ts +6 -0
- package/dist/prospect-client/ItemTabBar/ItemTabBarCommon.js +8 -0
- package/dist/prospect-client/ItemTabBar/ItemTabBarLF.d.ts +2 -0
- package/dist/prospect-client/ItemTabBar/ItemTabBarLF.js +2 -0
- package/dist/prospect-client/Layout/Footer/DynamicIcons.d.ts +4 -0
- package/dist/prospect-client/Layout/Footer/DynamicIcons.js +20 -0
- package/dist/prospect-client/Layout/Footer/FooterApollo.d.ts +2 -0
- package/dist/prospect-client/Layout/Footer/FooterApollo.js +2 -0
- package/dist/prospect-client/Layout/Footer/FooterCommon.d.ts +10 -0
- package/dist/prospect-client/Layout/Footer/FooterCommon.js +14 -0
- package/dist/prospect-client/Layout/Footer/FooterLF.d.ts +2 -0
- package/dist/prospect-client/Layout/Footer/FooterLF.js +2 -0
- package/dist/prospect-client/Layout/Footer/MenuIcons.d.ts +9 -0
- package/dist/prospect-client/Layout/Footer/MenuIcons.js +8 -0
- package/dist/prospect-client/Layout/Footer/MenuLink.d.ts +11 -0
- package/dist/prospect-client/Layout/Footer/MenuLink.js +11 -0
- package/dist/prospect-client/Link/LinkApollo.d.ts +2 -0
- package/dist/prospect-client/Link/LinkApollo.js +2 -0
- package/dist/prospect-client/Link/LinkCommon.d.ts +17 -0
- package/dist/prospect-client/Link/LinkCommon.js +20 -0
- package/dist/prospect-client/Link/LinkLF.d.ts +2 -0
- package/dist/prospect-client/Link/LinkLF.js +2 -0
- package/dist/prospect-client/List/ClickItem/ClickItemApollo.d.ts +4 -0
- package/dist/prospect-client/List/ClickItem/ClickItemApollo.js +8 -0
- package/dist/prospect-client/List/ClickItem/ClickItemCommon.d.ts +15 -0
- package/dist/prospect-client/List/ClickItem/ClickItemCommon.js +31 -0
- package/dist/prospect-client/List/ClickItem/ClickItemLF.d.ts +4 -0
- package/dist/prospect-client/List/ClickItem/ClickItemLF.js +8 -0
- package/dist/prospect-client/List/ClickItem/ClickItemWrapper.d.ts +6 -0
- package/dist/prospect-client/List/ClickItem/ClickItemWrapper.js +7 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemContentApollo.d.ts +2 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemContentApollo.js +4 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemContentCommon.d.ts +14 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemContentCommon.js +4 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemContentLF.d.ts +2 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemContentLF.js +4 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemPrefixApollo.d.ts +2 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemPrefixApollo.js +4 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemPrefixCommon.d.ts +14 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemPrefixCommon.js +11 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemPrefixLF.d.ts +2 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemPrefixLF.js +4 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemSuffixApollo.d.ts +2 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemSuffixApollo.js +6 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemSuffixCommon.d.ts +14 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemSuffixCommon.js +14 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemSuffixLF.d.ts +2 -0
- package/dist/prospect-client/List/ClickItem/components/ClickItemSuffixLF.js +6 -0
- package/dist/prospect-client/List/ContentItemDuo/ContentItemDuoApollo.d.ts +3 -0
- package/dist/prospect-client/List/ContentItemDuo/ContentItemDuoApollo.js +5 -0
- package/dist/prospect-client/List/ContentItemDuo/ContentItemDuoCommon.d.ts +16 -0
- package/dist/prospect-client/List/ContentItemDuo/ContentItemDuoCommon.js +13 -0
- package/dist/prospect-client/List/ContentItemDuo/ContentItemDuoLF.d.ts +3 -0
- package/dist/prospect-client/List/ContentItemDuo/ContentItemDuoLF.js +5 -0
- package/dist/prospect-client/Message/Message.helpers.d.ts +5 -0
- package/dist/prospect-client/Message/Message.helpers.js +7 -0
- package/dist/prospect-client/Message/MessageApollo.d.ts +5 -0
- package/dist/prospect-client/Message/MessageApollo.js +6 -0
- package/dist/prospect-client/Message/MessageCommon.d.ts +25 -0
- package/dist/prospect-client/Message/MessageCommon.js +14 -0
- package/dist/prospect-client/Message/MessageLF.d.ts +5 -0
- package/dist/prospect-client/Message/MessageLF.js +6 -0
- package/dist/prospect-client/Message/constants.d.ts +3 -0
- package/dist/prospect-client/Message/constants.js +19 -0
- package/dist/prospect-client/Message/types.d.ts +1 -0
- package/dist/prospect-client/Message/types.js +1 -0
- package/dist/prospect-client/Modal/ModalApollo.d.ts +8 -0
- package/dist/prospect-client/Modal/ModalApollo.js +13 -0
- package/dist/prospect-client/Modal/ModalCommon.d.ts +10 -0
- package/dist/prospect-client/Modal/ModalCommon.js +8 -0
- package/dist/prospect-client/Modal/ModalLF.d.ts +8 -0
- package/dist/prospect-client/Modal/ModalLF.js +13 -0
- package/dist/prospect-client/Modal/components/ModalCore.d.ts +6 -0
- package/dist/prospect-client/Modal/components/ModalCore.js +7 -0
- package/dist/prospect-client/Modal/components/ModalCoreBody.d.ts +2 -0
- package/dist/prospect-client/Modal/components/ModalCoreBody.js +14 -0
- package/dist/prospect-client/Modal/components/ModalCoreFooterApollo.d.ts +2 -0
- package/dist/prospect-client/Modal/components/ModalCoreFooterApollo.js +4 -0
- package/dist/prospect-client/Modal/components/ModalCoreFooterCommon.d.ts +10 -0
- package/dist/prospect-client/Modal/components/ModalCoreFooterCommon.js +10 -0
- package/dist/prospect-client/Modal/components/ModalCoreFooterLF.d.ts +2 -0
- package/dist/prospect-client/Modal/components/ModalCoreFooterLF.js +4 -0
- package/dist/prospect-client/Modal/components/ModalCoreHeaderApollo.d.ts +2 -0
- package/dist/prospect-client/Modal/components/ModalCoreHeaderApollo.js +5 -0
- package/dist/prospect-client/Modal/components/ModalCoreHeaderCommon.d.ts +13 -0
- package/dist/prospect-client/Modal/components/ModalCoreHeaderCommon.js +4 -0
- package/dist/prospect-client/Modal/components/ModalCoreHeaderLF.d.ts +2 -0
- package/dist/prospect-client/Modal/components/ModalCoreHeaderLF.js +5 -0
- package/dist/prospect-client/Modal/types.d.ts +12 -0
- package/dist/prospect-client/Modal/types.js +1 -0
- package/dist/prospect-client/Pagination/ItemPagination/ItemPaginationApollo.d.ts +3 -0
- package/dist/prospect-client/Pagination/ItemPagination/ItemPaginationApollo.js +3 -0
- package/dist/prospect-client/Pagination/ItemPagination/ItemPaginationCommon.d.ts +10 -0
- package/dist/prospect-client/Pagination/ItemPagination/ItemPaginationCommon.js +11 -0
- package/dist/prospect-client/Pagination/ItemPagination/ItemPaginationLF.d.ts +3 -0
- package/dist/prospect-client/Pagination/ItemPagination/ItemPaginationLF.js +3 -0
- package/dist/prospect-client/Pagination/Pagination.helper.d.ts +9 -0
- package/dist/prospect-client/Pagination/Pagination.helper.js +34 -0
- package/dist/prospect-client/Pagination/PaginationApollo.d.ts +4 -0
- package/dist/prospect-client/Pagination/PaginationApollo.js +5 -0
- package/dist/prospect-client/Pagination/PaginationCommon.d.ts +14 -0
- package/dist/prospect-client/Pagination/PaginationCommon.js +20 -0
- package/dist/prospect-client/Pagination/PaginationLF.d.ts +4 -0
- package/dist/prospect-client/Pagination/PaginationLF.js +5 -0
- package/dist/prospect-client/ProgressBar/ProgressBarApollo.d.ts +2 -0
- package/dist/prospect-client/ProgressBar/ProgressBarApollo.js +2 -0
- package/dist/prospect-client/ProgressBar/ProgressBarCommon.d.ts +9 -0
- package/dist/prospect-client/ProgressBar/ProgressBarCommon.js +8 -0
- package/dist/prospect-client/ProgressBar/ProgressBarLF.d.ts +2 -0
- package/dist/prospect-client/ProgressBar/ProgressBarLF.js +2 -0
- package/dist/prospect-client/ProgressBarGroup/ProgressBarGroupApollo.d.ts +3 -0
- package/dist/prospect-client/ProgressBarGroup/ProgressBarGroupApollo.js +5 -0
- package/dist/prospect-client/ProgressBarGroup/ProgressBarGroupCommon.d.ts +18 -0
- package/dist/prospect-client/ProgressBarGroup/ProgressBarGroupCommon.js +9 -0
- package/dist/prospect-client/ProgressBarGroup/ProgressBarGroupLF.d.ts +3 -0
- package/dist/prospect-client/ProgressBarGroup/ProgressBarGroupLF.js +5 -0
- package/dist/prospect-client/ProgressBarGroup/useSequentialProgress.d.ts +20 -0
- package/dist/prospect-client/ProgressBarGroup/useSequentialProgress.js +80 -0
- package/dist/prospect-client/Spinner/SpinnerApollo.d.ts +2 -0
- package/dist/prospect-client/Spinner/SpinnerApollo.js +2 -0
- package/dist/prospect-client/Spinner/SpinnerCommon.d.ts +17 -0
- package/dist/prospect-client/Spinner/SpinnerCommon.js +19 -0
- package/dist/prospect-client/Spinner/SpinnerLF.d.ts +2 -0
- package/dist/prospect-client/Spinner/SpinnerLF.js +2 -0
- package/dist/prospect-client/Stepper/StepperApollo.d.ts +3 -0
- package/dist/prospect-client/Stepper/StepperApollo.js +5 -0
- package/dist/prospect-client/Stepper/StepperCommon.d.ts +18 -0
- package/dist/prospect-client/Stepper/StepperCommon.js +8 -0
- package/dist/prospect-client/Stepper/StepperLF.d.ts +3 -0
- package/dist/prospect-client/Stepper/StepperLF.js +5 -0
- package/dist/prospect-client/Svg/Svg.d.ts +11 -0
- package/dist/prospect-client/Svg/Svg.js +54 -0
- package/dist/prospect-client/Svg/svgInjector.d.ts +12 -0
- package/dist/prospect-client/Svg/svgInjector.js +31 -0
- package/dist/prospect-client/TabBar/TabBarApollo.d.ts +4 -0
- package/dist/prospect-client/TabBar/TabBarApollo.js +6 -0
- package/dist/prospect-client/TabBar/TabBarCommon.d.ts +19 -0
- package/dist/prospect-client/TabBar/TabBarCommon.js +48 -0
- package/dist/prospect-client/TabBar/TabBarLF.d.ts +4 -0
- package/dist/prospect-client/TabBar/TabBarLF.js +6 -0
- package/dist/prospect-client/Tag/TagApollo.d.ts +2 -0
- package/dist/prospect-client/Tag/TagApollo.js +2 -0
- package/dist/prospect-client/Tag/TagCommon.d.ts +13 -0
- package/dist/prospect-client/Tag/TagCommon.js +14 -0
- package/dist/prospect-client/Tag/TagLF.d.ts +2 -0
- package/dist/prospect-client/Tag/TagLF.js +2 -0
- package/dist/prospect-client/TimelineVertical/TimelineVerticalApollo.d.ts +4 -0
- package/dist/prospect-client/TimelineVertical/TimelineVerticalApollo.js +5 -0
- package/dist/prospect-client/TimelineVertical/TimelineVerticalCommon.d.ts +7 -0
- package/dist/prospect-client/TimelineVertical/TimelineVerticalCommon.js +3 -0
- package/dist/prospect-client/TimelineVertical/TimelineVerticalLF.d.ts +4 -0
- package/dist/prospect-client/TimelineVertical/TimelineVerticalLF.js +5 -0
- package/dist/prospect-client/TimelineVertical/types.d.ts +5 -0
- package/dist/prospect-client/TimelineVertical/types.js +1 -0
- package/dist/prospect-client/Toggle/ToggleApollo.d.ts +2 -0
- package/dist/prospect-client/Toggle/ToggleApollo.js +2 -0
- package/dist/prospect-client/Toggle/ToggleCommon.d.ts +3 -0
- package/dist/prospect-client/Toggle/ToggleCommon.js +9 -0
- package/dist/prospect-client/Toggle/ToggleLF.d.ts +2 -0
- package/dist/prospect-client/Toggle/ToggleLF.js +2 -0
- package/dist/prospect-client/utilities/constants.d.ts +6 -0
- package/dist/prospect-client/utilities/constants.js +6 -0
- package/dist/prospect-client/utilities/generateId.d.ts +1 -0
- package/dist/prospect-client/utilities/generateId.js +10 -0
- package/dist/prospect-client/utilities/getClassName.d.ts +20 -0
- package/dist/prospect-client/utilities/getClassName.js +24 -0
- package/dist/prospect-client/utilities/getComponentClassName.d.ts +4 -0
- package/dist/prospect-client/utilities/getComponentClassName.js +30 -0
- package/dist/prospect-client/utilities/hook/useHasScroll.d.ts +6 -0
- package/dist/prospect-client/utilities/hook/useHasScroll.js +30 -0
- package/dist/prospect-client/utilities/hook/useIsSmallScreen.d.ts +1 -0
- package/dist/prospect-client/utilities/hook/useIsSmallScreen.js +14 -0
- package/dist/prospect-client/utilities/types/PolymorphicComponent.d.ts +8 -0
- package/dist/prospect-client/utilities/types/PolymorphicComponent.js +1 -0
- package/dist/prospect.d.ts +56 -0
- package/dist/prospect.js +55 -0
- package/package.json +90 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef, useId, useState } from "react";
|
|
3
|
+
import { SelectBase } from "./SelectBase";
|
|
4
|
+
const SelectDefault = forwardRef(({ onChange, forceDisplayPlaceholder = false, value, defaultValue, required, placeholder = "- Select -", id, children, ...otherProps }, inputRef) => {
|
|
5
|
+
const [hasHandleChangeOnce, setHasHandleChangeOnce] = useState(false);
|
|
6
|
+
const generatedId = useId();
|
|
7
|
+
const inputId = id ?? generatedId;
|
|
8
|
+
const childrenWithDefault = (_jsxs(_Fragment, { children: [(!required || !(hasHandleChangeOnce || defaultValue || value)) && (_jsx("option", { value: "", children: placeholder })), children] }));
|
|
9
|
+
return (_jsx(SelectBase, { ...otherProps, id: inputId, value: value, defaultValue: defaultValue, required: required, onChange: (e) => {
|
|
10
|
+
if (onChange) {
|
|
11
|
+
onChange(e);
|
|
12
|
+
}
|
|
13
|
+
setHasHandleChangeOnce(!forceDisplayPlaceholder);
|
|
14
|
+
}, ref: inputRef, children: childrenWithDefault }));
|
|
15
|
+
});
|
|
16
|
+
SelectDefault.displayName = "SelectDefault";
|
|
17
|
+
export { SelectDefault };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ComponentPropsWithRef, OptionHTMLAttributes } from "react";
|
|
2
|
+
import { SelectBase } from "./SelectBase";
|
|
3
|
+
type Props = ComponentPropsWithRef<typeof SelectBase> & {
|
|
4
|
+
options: OptionHTMLAttributes<HTMLOptionElement>[];
|
|
5
|
+
forceDisplayPlaceholder?: boolean;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use `SelectDefault` instead
|
|
10
|
+
* Instead of
|
|
11
|
+
* ```jsx
|
|
12
|
+
* <SelectDefaultWithOptions options={[{ value: "1", label: "Option 1" }]} />
|
|
13
|
+
* ```
|
|
14
|
+
* you can now do something like :
|
|
15
|
+
* ```jsx
|
|
16
|
+
* <SelectDefault>
|
|
17
|
+
* <option value="1">Option 1</option>
|
|
18
|
+
* </SelectDefault>
|
|
19
|
+
* ```
|
|
20
|
+
* It allows you to use the `optgroup` tag for example.
|
|
21
|
+
*/
|
|
22
|
+
export declare const SelectDefaultWithOptions: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLSelectElement>>;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef, useId, useMemo, useState, } from "react";
|
|
3
|
+
import { SelectBase } from "./SelectBase";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Use `SelectDefault` instead
|
|
6
|
+
* Instead of
|
|
7
|
+
* ```jsx
|
|
8
|
+
* <SelectDefaultWithOptions options={[{ value: "1", label: "Option 1" }]} />
|
|
9
|
+
* ```
|
|
10
|
+
* you can now do something like :
|
|
11
|
+
* ```jsx
|
|
12
|
+
* <SelectDefault>
|
|
13
|
+
* <option value="1">Option 1</option>
|
|
14
|
+
* </SelectDefault>
|
|
15
|
+
* ```
|
|
16
|
+
* It allows you to use the `optgroup` tag for example.
|
|
17
|
+
*/
|
|
18
|
+
export const SelectDefaultWithOptions = forwardRef(({ onChange, forceDisplayPlaceholder = false, value, defaultValue, required, placeholder = "- Select -", options, id, ...otherProps }, inputRef) => {
|
|
19
|
+
const [hasHandleChangeOnce, setHasHandleChangeOnce] = useState(false);
|
|
20
|
+
const generatedId = useId();
|
|
21
|
+
const inputId = id ?? generatedId;
|
|
22
|
+
const newOptions = useMemo(() => (hasHandleChangeOnce || defaultValue || value) && required
|
|
23
|
+
? options
|
|
24
|
+
: [{ value: "", label: placeholder }, ...options], [
|
|
25
|
+
hasHandleChangeOnce,
|
|
26
|
+
options,
|
|
27
|
+
defaultValue,
|
|
28
|
+
value,
|
|
29
|
+
required,
|
|
30
|
+
placeholder,
|
|
31
|
+
]);
|
|
32
|
+
return (_jsx(SelectBase, { ...otherProps, id: inputId, value: value, defaultValue: defaultValue, options: newOptions, onChange: (e) => {
|
|
33
|
+
if (onChange) {
|
|
34
|
+
onChange(e);
|
|
35
|
+
}
|
|
36
|
+
setHasHandleChangeOnce(!forceDisplayPlaceholder);
|
|
37
|
+
}, ref: inputRef }));
|
|
38
|
+
});
|
|
39
|
+
SelectDefaultWithOptions.displayName = "SelectDefaultWithOptions";
|
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
import { OptionHTMLAttributes } from "react";
|
|
2
|
+
declare const SelectInput: import("react").ForwardRefExoticComponent<(Omit<Omit<{
|
|
3
|
+
label: import("react").ReactNode;
|
|
4
|
+
id?: string;
|
|
5
|
+
className?: string;
|
|
6
|
+
classModifier?: string;
|
|
7
|
+
classNameContainerLabel?: string;
|
|
8
|
+
classNameContainerInput?: string;
|
|
9
|
+
isVisible?: boolean;
|
|
10
|
+
roleContainer?: string;
|
|
11
|
+
ariaLabelContainer?: string;
|
|
12
|
+
isLabelContainerLinkedToInput?: boolean;
|
|
13
|
+
forceDisplayMessage?: boolean;
|
|
14
|
+
message?: string;
|
|
15
|
+
messageType?: import("../core").MessageTypes;
|
|
16
|
+
required?: boolean;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
helpMessage?: import("react").ReactNode;
|
|
19
|
+
labelPosition?: "top" | "center";
|
|
20
|
+
classNameSuffix?: string;
|
|
21
|
+
renderInput: (props: {
|
|
22
|
+
id: string;
|
|
23
|
+
classModifier: string;
|
|
24
|
+
errorId?: string;
|
|
25
|
+
ariaInvalid?: boolean;
|
|
26
|
+
} & Record<string, unknown>) => import("react").ReactNode;
|
|
27
|
+
appendChildren?: import("react").ReactNode;
|
|
28
|
+
}, "children" | "renderInput" | "classNameSuffix"> & {
|
|
29
|
+
children?: import("react").ReactNode;
|
|
30
|
+
} & Omit<Omit<{
|
|
31
|
+
className?: string | undefined | undefined;
|
|
32
|
+
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
33
|
+
color?: string | undefined | undefined;
|
|
34
|
+
id?: string | undefined | undefined;
|
|
35
|
+
lang?: string | undefined | undefined;
|
|
36
|
+
name?: string | undefined | undefined;
|
|
37
|
+
style?: import("react").CSSProperties | undefined;
|
|
38
|
+
role?: import("react").AriaRole | undefined;
|
|
39
|
+
tabIndex?: number | undefined | undefined;
|
|
40
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
41
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
42
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
43
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
44
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
45
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
46
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
47
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
48
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
49
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
50
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
51
|
+
"aria-controls"?: string | undefined | undefined;
|
|
52
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
53
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
54
|
+
"aria-description"?: string | undefined | undefined;
|
|
55
|
+
"aria-details"?: string | undefined | undefined;
|
|
56
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
57
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
58
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
59
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
60
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
61
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
62
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
63
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
64
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
65
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
66
|
+
"aria-label"?: string | undefined | undefined;
|
|
67
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
68
|
+
"aria-level"?: number | undefined | undefined;
|
|
69
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
70
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
71
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
72
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
74
|
+
"aria-owns"?: string | undefined | undefined;
|
|
75
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
76
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
77
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
78
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
79
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
80
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
81
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
82
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
83
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
84
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
85
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
86
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
87
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
88
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
89
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
90
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
91
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
92
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
93
|
+
children: import("react").ReactNode | undefined;
|
|
94
|
+
dangerouslySetInnerHTML?: {
|
|
95
|
+
__html: string | TrustedHTML;
|
|
96
|
+
} | undefined | undefined;
|
|
97
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLSelectElement> | undefined;
|
|
98
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLSelectElement> | undefined;
|
|
99
|
+
onCut?: import("react").ClipboardEventHandler<HTMLSelectElement> | undefined;
|
|
100
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLSelectElement> | undefined;
|
|
101
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLSelectElement> | undefined;
|
|
102
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLSelectElement> | undefined;
|
|
103
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLSelectElement> | undefined;
|
|
104
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLSelectElement> | undefined;
|
|
105
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLSelectElement> | undefined;
|
|
106
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLSelectElement> | undefined;
|
|
107
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLSelectElement> | undefined;
|
|
108
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLSelectElement> | undefined;
|
|
109
|
+
onFocus?: import("react").FocusEventHandler<HTMLSelectElement> | undefined;
|
|
110
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLSelectElement> | undefined;
|
|
111
|
+
onBlur?: import("react").FocusEventHandler<HTMLSelectElement> | undefined;
|
|
112
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLSelectElement> | undefined;
|
|
113
|
+
onChange?: import("react").ChangeEventHandler<HTMLSelectElement> | undefined;
|
|
114
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
115
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLSelectElement> | undefined;
|
|
116
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
117
|
+
onInput?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
118
|
+
onInputCapture?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
119
|
+
onReset?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
120
|
+
onResetCapture?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
121
|
+
onSubmit?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
122
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
123
|
+
onInvalid?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
124
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLSelectElement> | undefined;
|
|
125
|
+
onLoad?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
126
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
127
|
+
onError?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
128
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
129
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLSelectElement> | undefined;
|
|
130
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLSelectElement> | undefined;
|
|
131
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLSelectElement> | undefined;
|
|
132
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLSelectElement> | undefined;
|
|
133
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLSelectElement> | undefined;
|
|
134
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLSelectElement> | undefined;
|
|
135
|
+
onAbort?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
136
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
137
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
138
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
139
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
140
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
141
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
142
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
143
|
+
onEmptied?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
144
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
145
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
146
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
147
|
+
onEnded?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
148
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
149
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
150
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
151
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
152
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
153
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
154
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
155
|
+
onPause?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
156
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
157
|
+
onPlay?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
158
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
159
|
+
onPlaying?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
160
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
161
|
+
onProgress?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
162
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
163
|
+
onRateChange?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
164
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
165
|
+
onSeeked?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
166
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
167
|
+
onSeeking?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
168
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
169
|
+
onStalled?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
170
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
171
|
+
onSuspend?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
172
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
173
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
174
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
175
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
176
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
177
|
+
onWaiting?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
178
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
179
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
180
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
181
|
+
onClick?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
182
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
183
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
184
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
185
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
186
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
187
|
+
onDrag?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
188
|
+
onDragCapture?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
189
|
+
onDragEnd?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
190
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
191
|
+
onDragEnter?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
192
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
193
|
+
onDragExit?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
194
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
195
|
+
onDragLeave?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
196
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
197
|
+
onDragOver?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
198
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
199
|
+
onDragStart?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
200
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
201
|
+
onDrop?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
202
|
+
onDropCapture?: import("react").DragEventHandler<HTMLSelectElement> | undefined;
|
|
203
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
204
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
205
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
206
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
207
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
208
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
209
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
210
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
211
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
212
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
213
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
214
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLSelectElement> | undefined;
|
|
215
|
+
onSelect?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
216
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLSelectElement> | undefined;
|
|
217
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLSelectElement> | undefined;
|
|
218
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLSelectElement> | undefined;
|
|
219
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLSelectElement> | undefined;
|
|
220
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLSelectElement> | undefined;
|
|
221
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLSelectElement> | undefined;
|
|
222
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLSelectElement> | undefined;
|
|
223
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLSelectElement> | undefined;
|
|
224
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLSelectElement> | undefined;
|
|
225
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
226
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
227
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
228
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
229
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
230
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
231
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
232
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
233
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
234
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
235
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
236
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
237
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
238
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
239
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
240
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
241
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
242
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLSelectElement> | undefined;
|
|
243
|
+
onScroll?: import("react").UIEventHandler<HTMLSelectElement> | undefined;
|
|
244
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLSelectElement> | undefined;
|
|
245
|
+
onScrollEnd?: import("react").UIEventHandler<HTMLSelectElement> | undefined;
|
|
246
|
+
onScrollEndCapture?: import("react").UIEventHandler<HTMLSelectElement> | undefined;
|
|
247
|
+
onWheel?: import("react").WheelEventHandler<HTMLSelectElement> | undefined;
|
|
248
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLSelectElement> | undefined;
|
|
249
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLSelectElement> | undefined;
|
|
250
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLSelectElement> | undefined;
|
|
251
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLSelectElement> | undefined;
|
|
252
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLSelectElement> | undefined;
|
|
253
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLSelectElement> | undefined;
|
|
254
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLSelectElement> | undefined;
|
|
255
|
+
onToggle?: import("react").ToggleEventHandler<HTMLSelectElement> | undefined;
|
|
256
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLSelectElement> | undefined;
|
|
257
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLSelectElement> | undefined;
|
|
258
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLSelectElement> | undefined;
|
|
259
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLSelectElement> | undefined;
|
|
260
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLSelectElement> | undefined;
|
|
261
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLSelectElement> | undefined;
|
|
262
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLSelectElement> | undefined;
|
|
263
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLSelectElement> | undefined;
|
|
264
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLSelectElement> | undefined;
|
|
265
|
+
ref?: import("react").Ref<HTMLSelectElement> | undefined;
|
|
266
|
+
form?: string | undefined | undefined;
|
|
267
|
+
slot?: string | undefined | undefined;
|
|
268
|
+
title?: string | undefined | undefined;
|
|
269
|
+
dir?: string | undefined | undefined;
|
|
270
|
+
disabled?: boolean | undefined | undefined;
|
|
271
|
+
size?: number | undefined | undefined;
|
|
272
|
+
key?: import("react").Key | null | undefined;
|
|
273
|
+
defaultChecked?: boolean | undefined | undefined;
|
|
274
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
275
|
+
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
276
|
+
accessKey?: string | undefined | undefined;
|
|
277
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
278
|
+
autoFocus?: boolean | undefined | undefined;
|
|
279
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
280
|
+
contextMenu?: string | undefined | undefined;
|
|
281
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
282
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
283
|
+
hidden?: boolean | undefined | undefined;
|
|
284
|
+
nonce?: string | undefined | undefined;
|
|
285
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
286
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
287
|
+
radioGroup?: string | undefined | undefined;
|
|
288
|
+
about?: string | undefined | undefined;
|
|
289
|
+
content?: string | undefined | undefined;
|
|
290
|
+
datatype?: string | undefined | undefined;
|
|
291
|
+
inlist?: any;
|
|
292
|
+
prefix?: string | undefined | undefined;
|
|
293
|
+
property?: string | undefined | undefined;
|
|
294
|
+
rel?: string | undefined | undefined;
|
|
295
|
+
resource?: string | undefined | undefined;
|
|
296
|
+
rev?: string | undefined | undefined;
|
|
297
|
+
typeof?: string | undefined | undefined;
|
|
298
|
+
vocab?: string | undefined | undefined;
|
|
299
|
+
autoCorrect?: string | undefined | undefined;
|
|
300
|
+
autoSave?: string | undefined | undefined;
|
|
301
|
+
itemProp?: string | undefined | undefined;
|
|
302
|
+
itemScope?: boolean | undefined | undefined;
|
|
303
|
+
itemType?: string | undefined | undefined;
|
|
304
|
+
itemID?: string | undefined | undefined;
|
|
305
|
+
itemRef?: string | undefined | undefined;
|
|
306
|
+
results?: number | undefined | undefined;
|
|
307
|
+
security?: string | undefined | undefined;
|
|
308
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
309
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined | undefined;
|
|
310
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
311
|
+
popoverTarget?: string | undefined | undefined;
|
|
312
|
+
inert?: boolean | undefined | undefined;
|
|
313
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
314
|
+
is?: string | undefined | undefined;
|
|
315
|
+
exportparts?: string | undefined | undefined;
|
|
316
|
+
part?: string | undefined | undefined;
|
|
317
|
+
value?: string | number | readonly string[] | undefined;
|
|
318
|
+
autoComplete?: string | undefined | undefined;
|
|
319
|
+
multiple?: boolean | undefined | undefined;
|
|
320
|
+
placeholder?: string | undefined;
|
|
321
|
+
required?: boolean | undefined | undefined;
|
|
322
|
+
classModifier?: string | undefined;
|
|
323
|
+
forceDisplayPlaceholder?: boolean | undefined;
|
|
324
|
+
}, "ref"> & import("react").RefAttributes<HTMLSelectElement> & {
|
|
325
|
+
options?: OptionHTMLAttributes<HTMLOptionElement>[];
|
|
326
|
+
mode?: "default" | "base";
|
|
327
|
+
} & {
|
|
328
|
+
children?: import("react").ReactNode | undefined;
|
|
329
|
+
}, "ref"> & import("react").RefAttributes<HTMLSelectElement> & {
|
|
330
|
+
options: OptionHTMLAttributes<HTMLOptionElement>[];
|
|
331
|
+
} & {
|
|
332
|
+
children?: import("react").ReactNode | undefined;
|
|
333
|
+
}, "ref"> | Omit<Omit<{
|
|
334
|
+
label: import("react").ReactNode;
|
|
335
|
+
id?: string;
|
|
336
|
+
className?: string;
|
|
337
|
+
classModifier?: string;
|
|
338
|
+
classNameContainerLabel?: string;
|
|
339
|
+
classNameContainerInput?: string;
|
|
340
|
+
isVisible?: boolean;
|
|
341
|
+
roleContainer?: string;
|
|
342
|
+
ariaLabelContainer?: string;
|
|
343
|
+
isLabelContainerLinkedToInput?: boolean;
|
|
344
|
+
forceDisplayMessage?: boolean;
|
|
345
|
+
message?: string;
|
|
346
|
+
messageType?: import("../core").MessageTypes;
|
|
347
|
+
required?: boolean;
|
|
348
|
+
disabled?: boolean;
|
|
349
|
+
helpMessage?: import("react").ReactNode;
|
|
350
|
+
labelPosition?: "top" | "center";
|
|
351
|
+
classNameSuffix?: string;
|
|
352
|
+
renderInput: (props: {
|
|
353
|
+
id: string;
|
|
354
|
+
classModifier: string;
|
|
355
|
+
errorId?: string;
|
|
356
|
+
ariaInvalid?: boolean;
|
|
357
|
+
} & Record<string, unknown>) => import("react").ReactNode;
|
|
358
|
+
appendChildren?: import("react").ReactNode;
|
|
359
|
+
}, "children" | "renderInput" | "classNameSuffix"> & {
|
|
360
|
+
children?: import("react").ReactNode;
|
|
361
|
+
} & Omit<Omit<Omit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "ref"> & {
|
|
362
|
+
options?: OptionHTMLAttributes<HTMLOptionElement>[];
|
|
363
|
+
classModifier?: string;
|
|
364
|
+
} & import("react").RefAttributes<HTMLSelectElement> & {
|
|
365
|
+
options: OptionHTMLAttributes<HTMLOptionElement>[];
|
|
366
|
+
forceDisplayPlaceholder?: boolean;
|
|
367
|
+
placeholder?: string;
|
|
368
|
+
}, "ref"> & import("react").RefAttributes<HTMLSelectElement> & {
|
|
369
|
+
options?: OptionHTMLAttributes<HTMLOptionElement>[];
|
|
370
|
+
mode?: "default" | "base";
|
|
371
|
+
} & {
|
|
372
|
+
children?: import("react").ReactNode | undefined;
|
|
373
|
+
}, "ref"> & import("react").RefAttributes<HTMLSelectElement> & {
|
|
374
|
+
options: OptionHTMLAttributes<HTMLOptionElement>[];
|
|
375
|
+
} & {
|
|
376
|
+
children?: import("react").ReactNode | undefined;
|
|
377
|
+
}, "ref">) & import("react").RefAttributes<HTMLSelectElement>>;
|
|
378
|
+
export { SelectInput };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef, } from "react";
|
|
3
|
+
import { Field } from "../core";
|
|
4
|
+
import { Select } from "./Select";
|
|
5
|
+
const SelectInput = forwardRef(({ label, options, children, ...props }, inputRef) => {
|
|
6
|
+
return (_jsx(Field, { label: label, classNameSuffix: "select", ...props, renderInput: ({ classModifier, id, ariaInvalid, errorId, ...otherSelectProps }) => (_jsxs(_Fragment, { children: [_jsx(Select, { id: id, ref: inputRef, classModifier: classModifier, "aria-describedby": errorId, "aria-invalid": ariaInvalid, options: options, ...otherSelectProps }), children] })) }));
|
|
7
|
+
});
|
|
8
|
+
SelectInput.displayName = "SelectInput";
|
|
9
|
+
export { SelectInput };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import RcSlider from "rc-slider";
|
|
2
|
+
import { type ComponentProps, type ReactNode } from "react";
|
|
3
|
+
type RcSliderProps = ComponentProps<typeof RcSlider>;
|
|
4
|
+
type Props = Omit<RcSliderProps, "marks" | "onChange" | "onChangeComplete"> & {
|
|
5
|
+
classModifier?: string;
|
|
6
|
+
options: {
|
|
7
|
+
value: number;
|
|
8
|
+
label?: string | ReactNode;
|
|
9
|
+
}[];
|
|
10
|
+
id: string;
|
|
11
|
+
name: string;
|
|
12
|
+
onChange?: (selectedValue: {
|
|
13
|
+
id: string;
|
|
14
|
+
name: string;
|
|
15
|
+
value: number;
|
|
16
|
+
}) => void;
|
|
17
|
+
onChangeComplete?: (selectedValue: {
|
|
18
|
+
id: string;
|
|
19
|
+
name: string;
|
|
20
|
+
value: number;
|
|
21
|
+
}) => void;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @deprecated Slider is deprecated and will be removed in a future major release.
|
|
25
|
+
*/
|
|
26
|
+
declare const Slider: ({ options, value, defaultValue, className, classModifier, ...otherProps }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
export { Slider };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import RcSlider from "rc-slider";
|
|
3
|
+
import { useCallback, useMemo, } from "react";
|
|
4
|
+
import { getComponentClassName } from "../../utilities";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Slider is deprecated and will be removed in a future major release.
|
|
7
|
+
*/
|
|
8
|
+
const Slider = ({ options, value, defaultValue, className, classModifier, ...otherProps }) => {
|
|
9
|
+
const defaultValueIndex = useMemo(() => {
|
|
10
|
+
const newDefaultValueIndex = options.findIndex((opt) => opt.value === (defaultValue || value));
|
|
11
|
+
return newDefaultValueIndex !== -1 ? newDefaultValueIndex : undefined;
|
|
12
|
+
}, [defaultValue, options, value]);
|
|
13
|
+
const valueIndex = useMemo(() => {
|
|
14
|
+
const newValueIndex = options.findIndex((opt) => opt.value === value);
|
|
15
|
+
return newValueIndex !== -1 ? newValueIndex : undefined;
|
|
16
|
+
}, [value, options]);
|
|
17
|
+
const marks = useMemo(() => [...options]
|
|
18
|
+
.sort((optA, optB) => optA.value - optB.value)
|
|
19
|
+
.reduce((prevMarks, { value: optValue, label: optLabel }, index) => {
|
|
20
|
+
const newMarks = { ...prevMarks };
|
|
21
|
+
newMarks[index] = optLabel || optValue;
|
|
22
|
+
return newMarks;
|
|
23
|
+
}, {}), [options]);
|
|
24
|
+
const componentClassName = useMemo(() => getComponentClassName(className, classModifier, "af-slider"), [className, classModifier]);
|
|
25
|
+
const formatOnChange = useCallback((newValueIndex, onChange) => {
|
|
26
|
+
if (onChange && !Array.isArray(newValueIndex)) {
|
|
27
|
+
onChange({
|
|
28
|
+
id: otherProps.id,
|
|
29
|
+
name: otherProps.name,
|
|
30
|
+
value: options[newValueIndex].value,
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
}, [options, otherProps.id, otherProps.name]);
|
|
34
|
+
return (_jsx(RcSlider, { ...otherProps, min: 0, max: options.length - 1, onChange: (newValueIndex) => formatOnChange(newValueIndex, otherProps.onChange), onChangeComplete: (newValueIndex) => formatOnChange(newValueIndex, otherProps.onChangeComplete), marks: marks, step: null, className: componentClassName, defaultValue: defaultValueIndex, value: valueIndex, disabled: otherProps.disabled || classModifier?.includes("disabled"), "aria-required": classModifier?.includes("required") }));
|
|
35
|
+
};
|
|
36
|
+
export { Slider };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type ComponentProps } from "react";
|
|
2
|
+
import { ConsumerFieldProps } from "../core";
|
|
3
|
+
import { Slider } from "./Slider";
|
|
4
|
+
type Props = ConsumerFieldProps & ComponentProps<typeof Slider>;
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This component is deprecated and will be removed in a future major release.
|
|
7
|
+
*/
|
|
8
|
+
declare const SliderInput: ({ children, name, options, label, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export { SliderInput };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Field } from "../core";
|
|
3
|
+
import { Slider } from "./Slider";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated This component is deprecated and will be removed in a future major release.
|
|
6
|
+
*/
|
|
7
|
+
const SliderInput = ({ children, name, options, label, ...props }) => {
|
|
8
|
+
return (_jsx(Field, { label: label, ...props, renderInput: ({ id, classModifier, ...sliderProps }) => (_jsxs(_Fragment, { children: [_jsx(Slider, { id: id, classModifier: classModifier, name: name, options: options, ...sliderProps }), children] })) }));
|
|
9
|
+
};
|
|
10
|
+
export { SliderInput };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import "@axa-fr/canopee-css/distributeur/Form/Text/Text.css";
|
|
2
|
+
import { ComponentPropsWithRef } from "react";
|
|
3
|
+
type Props = ComponentPropsWithRef<"input"> & {
|
|
4
|
+
classModifier?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const Text: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
7
|
+
export { Text };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import "@axa-fr/canopee-css/distributeur/Form/Text/Text.css";
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import { getComponentClassName } from "../../utilities";
|
|
5
|
+
const Text = forwardRef(({ className, classModifier, required, ...otherProps }, inputRef) => {
|
|
6
|
+
const componentClassName = getComponentClassName(className, classModifier, "af-form__input-text");
|
|
7
|
+
return (_jsx("input", { className: componentClassName, type: "text", ref: inputRef, required: required || classModifier?.includes("required"), ...otherProps }));
|
|
8
|
+
});
|
|
9
|
+
Text.displayName = "Text";
|
|
10
|
+
export { Text };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ComponentProps } from "react";
|
|
2
|
+
import { ConsumerFieldProps } from "../core";
|
|
3
|
+
import { Text } from "./Text";
|
|
4
|
+
export type TextInputProps = ConsumerFieldProps & ComponentProps<typeof Text>;
|
|
5
|
+
declare const TextInput: import("react").ForwardRefExoticComponent<Omit<TextInputProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
|
+
export { TextInput };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { Field } from "../core";
|
|
4
|
+
import { Text } from "./Text";
|
|
5
|
+
const TextInput = forwardRef(({ children, ...props }, inputRef) => {
|
|
6
|
+
return (_jsx(Field, { ...props, renderInput: ({ id, classModifier, ariaInvalid, errorId, ...textProps }) => (_jsxs(_Fragment, { children: [_jsx(Text, { id: id, classModifier: classModifier, ref: inputRef, "aria-describedby": errorId, "aria-invalid": ariaInvalid, ...textProps }), children] })) }));
|
|
7
|
+
});
|
|
8
|
+
TextInput.displayName = "TextInput";
|
|
9
|
+
export { TextInput };
|