intelicoreact 1.6.2 → 1.6.3
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/ArrayElement.d.ts +13 -0
- package/dist/AsyncReturnType.d.ts +17 -0
- package/dist/Atomic/FormElements/ActionAlert/ActionAlert.interface.js +4 -1
- package/dist/Atomic/FormElements/ActionAlert/ActionAlert.js +69 -14
- package/dist/Atomic/FormElements/ActionAlert/ActionAlert.stories.js +30 -7
- package/dist/Atomic/FormElements/ActionAlert/ActionAlert.test.js +43 -34
- package/dist/Atomic/FormElements/ActionAlert/index.js +17 -2
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.interface.js +4 -1
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.js +26 -11
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.stories.js +35 -12
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.test.js +29 -20
- package/dist/Atomic/FormElements/AdvancedStatus/index.js +17 -2
- package/dist/Atomic/FormElements/Calendar/Calendar.js +109 -53
- package/dist/Atomic/FormElements/Calendar/Calendar.props.js +4 -1
- package/dist/Atomic/FormElements/Calendar/Calendar.stories.js +74 -10
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.interface.js +4 -1
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.js +27 -12
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.stories.js +39 -16
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.test.js +46 -37
- package/dist/Atomic/FormElements/CheckboxInput/index.js +17 -2
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.interface.js +4 -1
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.js +24 -9
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.stories.js +33 -10
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.test.js +34 -25
- package/dist/Atomic/FormElements/CheckboxesLine/index.js +17 -2
- package/dist/Atomic/FormElements/Datepicker/Datepicker.js +160 -104
- package/dist/Atomic/FormElements/Datepicker/Datepicker.stories.js +31 -8
- package/dist/Atomic/FormElements/Datepicker/components/Calendar.js +89 -33
- package/dist/Atomic/FormElements/Dropdown/Dropdown.js +154 -98
- package/dist/Atomic/FormElements/Dropdown/Dropdown.stories.js +82 -18
- package/dist/Atomic/FormElements/Dropdown/components/DropdownLoader.js +25 -10
- package/dist/Atomic/FormElements/DropdownLiveSearch/DropdownLiveSearch.js +138 -82
- package/dist/Atomic/FormElements/DropdownLiveSearch/DropdownLiveSearch.stories.js +79 -15
- package/dist/Atomic/FormElements/FileLoader/FileLoader.js +69 -13
- package/dist/Atomic/FormElements/FileLoader/FileLoader.stories.js +86 -22
- package/dist/Atomic/FormElements/FileLoader/partial/LoadZone.js +69 -13
- package/dist/Atomic/FormElements/FileLoader/partial/LoadedContent.js +71 -15
- package/dist/Atomic/FormElements/FileLoaderDescription/FileLoaderDescription.js +91 -35
- package/dist/Atomic/FormElements/FileLoaderDescription/FileLoaderDescription.stories.js +82 -18
- package/dist/Atomic/FormElements/FileLoaderLocal/FileLoaderLocal.js +40 -25
- package/dist/Atomic/FormElements/FileLoaderLocal/FileLoaderLocal.stories.js +79 -15
- package/dist/Atomic/FormElements/FileLoaderLocalGroup/FileLoaderLocalGroup.js +78 -22
- package/dist/Atomic/FormElements/FileLoaderLocalGroup/FileLoaderLocalGroup.stories.js +33 -10
- package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN.js +73 -17
- package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN.stories.js +73 -9
- package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN_old.js +75 -19
- package/dist/Atomic/FormElements/Input/Input.js +100 -45
- package/dist/Atomic/FormElements/Input/Input.stories.js +73 -9
- package/dist/Atomic/FormElements/InputCalendar/InputCalendar.js +85 -29
- package/dist/Atomic/FormElements/InputCalendar/InputCalendar.stories.js +78 -14
- package/dist/Atomic/FormElements/InputColor/InputColor.js +30 -15
- package/dist/Atomic/FormElements/InputColor/InputColor.stories.js +73 -9
- package/dist/Atomic/FormElements/InputCurrency/InputCurrency.interface.js +4 -1
- package/dist/Atomic/FormElements/InputCurrency/InputCurrency.js +73 -17
- package/dist/Atomic/FormElements/InputCurrency/InputCurrency.stories.js +52 -14
- package/dist/Atomic/FormElements/InputCurrency/InputCurrency.test.js +45 -36
- package/dist/Atomic/FormElements/InputCurrency/index.js +16 -1
- package/dist/Atomic/FormElements/InputDateRange/InputDateRange.js +128 -72
- package/dist/Atomic/FormElements/InputDateRange/InputDateRange.stories.js +75 -11
- package/dist/Atomic/FormElements/InputDateRange/components/DateInput.js +30 -15
- package/dist/Atomic/FormElements/InputDateRange/components/Datepicker.js +182 -126
- package/dist/Atomic/FormElements/InputDateRange/components/OpenedPart.js +98 -42
- package/dist/Atomic/FormElements/InputDateRange/components/SelectItem.js +24 -9
- package/dist/Atomic/FormElements/InputDateRange/dependencies.js +144 -53
- package/dist/Atomic/FormElements/InputLink/InputLink.js +76 -20
- package/dist/Atomic/FormElements/InputLink/InputLink.stories.js +73 -9
- package/dist/Atomic/FormElements/InputMask/InputCarretPosition.js +20 -2
- package/dist/Atomic/FormElements/InputMask/InputMask.js +158 -103
- package/dist/Atomic/FormElements/InputMask/InputMask.stories.js +81 -17
- package/dist/Atomic/FormElements/InputMask/config.js +1 -0
- package/dist/Atomic/FormElements/InputMask/functions.js +59 -14
- package/dist/Atomic/FormElements/InputMask2/InputMask2.js +129 -73
- package/dist/Atomic/FormElements/InputMask2/InputMask2.stories.js +77 -13
- package/dist/Atomic/FormElements/InputMask2/config.js +1 -0
- package/dist/Atomic/FormElements/InputMask2/functions.js +59 -14
- package/dist/Atomic/FormElements/InputMask3/InputMask3.js +133 -77
- package/dist/Atomic/FormElements/InputMask3/InputMask3.stories.js +79 -15
- package/dist/Atomic/FormElements/InputMask3/config.js +1 -0
- package/dist/Atomic/FormElements/InputMask3/functions.js +59 -14
- package/dist/Atomic/FormElements/InputWithAction/InputWithAction.js +79 -23
- package/dist/Atomic/FormElements/InputWithAction/InputWithAction.stories.js +72 -8
- package/dist/Atomic/FormElements/InputsRow/InputsRow.js +81 -25
- package/dist/Atomic/FormElements/InputsRow/InputsRow.stories.js +31 -8
- package/dist/Atomic/FormElements/Label/Label.interface.js +4 -1
- package/dist/Atomic/FormElements/Label/Label.js +31 -16
- package/dist/Atomic/FormElements/Label/Label.stories.js +30 -7
- package/dist/Atomic/FormElements/Label/Label.test.js +46 -37
- package/dist/Atomic/FormElements/Label/index.js +17 -2
- package/dist/Atomic/FormElements/MobileCalendar/MobileCalendar.js +124 -68
- package/dist/Atomic/FormElements/MobileCalendar/MobileCalendar.stories.js +74 -10
- package/dist/Atomic/FormElements/MultiSelect/MultiSelect.js +67 -11
- package/dist/Atomic/FormElements/MultiSelect/MultiSelect.stories.js +73 -9
- package/dist/Atomic/FormElements/NumericInput/NumericInput.js +105 -49
- package/dist/Atomic/FormElements/NumericInput/NumericInput.stories.js +75 -11
- package/dist/Atomic/FormElements/RadioGroup/RadioGroup.js +67 -11
- package/dist/Atomic/FormElements/RadioGroup/RadioGroup.stories.js +31 -8
- package/dist/Atomic/FormElements/RadioGroupWithInput/RadioGroupWithInput.js +33 -18
- package/dist/Atomic/FormElements/RadioGroupWithInput/RadioGroupWithInput.stories.js +73 -9
- package/dist/Atomic/FormElements/RadioInput/RadioInput.js +27 -12
- package/dist/Atomic/FormElements/RadioInput/RadioInput.stories.js +31 -8
- package/dist/Atomic/FormElements/RadioRowSwitcher/RadioRowSwitcher.js +25 -10
- package/dist/Atomic/FormElements/RadioRowSwitcher/RadioRowSwitcher.stories.js +73 -9
- package/dist/Atomic/FormElements/RangeCalendar/RangeCalendar.js +92 -36
- package/dist/Atomic/FormElements/RangeCalendar/RangeCalendar.stories.js +85 -21
- package/dist/Atomic/FormElements/RangeInputs/RangeInputs.js +81 -25
- package/dist/Atomic/FormElements/RangeInputs/RangeInputs.stories.js +74 -10
- package/dist/Atomic/FormElements/RangeList/RangeList.js +89 -34
- package/dist/Atomic/FormElements/RangeList/RangeList.stories.js +81 -14
- package/dist/Atomic/FormElements/RangeList/partial/RangeListRow.js +37 -14
- package/dist/Atomic/FormElements/RangeSlider/RangeSlider.js +120 -64
- package/dist/Atomic/FormElements/RangeSlider/RangeSlider.stories.js +102 -38
- package/dist/Atomic/FormElements/RangeSlider2/RangeSlider2.js +137 -81
- package/dist/Atomic/FormElements/RangeSlider2/RangeSlider2.stories.js +82 -18
- package/dist/Atomic/FormElements/SwitchableRow/SwitchableRow.js +26 -11
- package/dist/Atomic/FormElements/SwitchableRow/SwitchableRow.stories.js +85 -21
- package/dist/Atomic/FormElements/Switcher/Switcher.js +31 -16
- package/dist/Atomic/FormElements/Switcher/Switcher.stories.js +74 -10
- package/dist/Atomic/FormElements/SwitcherCheckbox/SwitcherCheckbox.js +26 -11
- package/dist/Atomic/FormElements/SwitcherCheckbox/SwitcherCheckbox.stories.js +75 -11
- package/dist/Atomic/FormElements/SwitcherHide/SwitcherHide.js +24 -9
- package/dist/Atomic/FormElements/SwitcherHide/SwitcherHide.stories.js +75 -11
- package/dist/Atomic/FormElements/SwitcherRadio/SwitcherRadio.js +68 -13
- package/dist/Atomic/FormElements/SwitcherRadio/SwitcherRadio.stories.js +74 -10
- package/dist/Atomic/FormElements/SwitcherRange/SwitcherRange.js +64 -8
- package/dist/Atomic/FormElements/SwitcherRange/SwitcherRange.stories.js +75 -11
- package/dist/Atomic/FormElements/SwitcherRangeList/SwitcherRangeList.js +26 -11
- package/dist/Atomic/FormElements/SwitcherRangeList/SwitcherRangeList.stories.js +76 -12
- package/dist/Atomic/FormElements/SwitcherTagsDropdown/SwitcherTagsDropdown.js +81 -25
- package/dist/Atomic/FormElements/SwitcherTagsDropdown/SwitcherTagsDropdown.stories.js +78 -14
- package/dist/Atomic/FormElements/SwitcherTagsDropdown/partial/States.js +11 -1
- package/dist/Atomic/FormElements/SwitcherTextarea/SwitcherTextarea.js +30 -15
- package/dist/Atomic/FormElements/SwitcherTextarea/SwitcherTextarea.stories.js +76 -12
- package/dist/Atomic/FormElements/TagListToDropdown/TagListToDropdown.js +70 -14
- package/dist/Atomic/FormElements/TagListToDropdown/TagListToDropdown.stories.js +73 -9
- package/dist/Atomic/FormElements/TagsDropdown/TagsDropdown.js +208 -152
- package/dist/Atomic/FormElements/TagsDropdown/TagsDropdown.stories.js +80 -16
- package/dist/Atomic/FormElements/Text/Text.js +25 -10
- package/dist/Atomic/FormElements/Text/Text.stories.js +30 -7
- package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.js +27 -12
- package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.stories.js +74 -10
- package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.test.js +26 -17
- package/dist/Atomic/FormElements/Textarea/Textarea.js +69 -13
- package/dist/Atomic/FormElements/Textarea/Textarea.stories.js +75 -11
- package/dist/Atomic/FormElements/TieredCheckboxes/TieredCheckboxes.js +77 -22
- package/dist/Atomic/FormElements/TieredCheckboxes/TieredCheckboxes.stories.js +76 -12
- package/dist/Atomic/FormElements/TieredCheckboxes/partial/AccordionWithCheckbox.js +27 -12
- package/dist/Atomic/FormElements/TimeRange/TimeRange.interface.js +4 -1
- package/dist/Atomic/FormElements/TimeRange/TimeRange.js +79 -23
- package/dist/Atomic/FormElements/TimeRange/TimeRange.stories.js +30 -7
- package/dist/Atomic/FormElements/TimeRange/TimeRange.test.js +59 -50
- package/dist/Atomic/FormElements/TimeRange/index.js +17 -2
- package/dist/Atomic/FormElements/UserContacts/UserContact.test.js +77 -68
- package/dist/Atomic/FormElements/UserContacts/UserContacts.interface.js +4 -1
- package/dist/Atomic/FormElements/UserContacts/UserContacts.js +79 -23
- package/dist/Atomic/FormElements/UserContacts/UserContacts.stories.js +31 -8
- package/dist/Atomic/FormElements/UserContacts/index.js +17 -2
- package/dist/Atomic/FormElements/VariantsListRadio/VariantsListRadio.js +71 -15
- package/dist/Atomic/FormElements/VariantsListRadio/VariantsListRadio.stories.js +78 -14
- package/dist/Atomic/FormElements/VariantsListRadio/partials/VariantsListRadioItem.js +39 -24
- package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.js +45 -30
- package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.stories.js +81 -17
- package/dist/Atomic/FormElements/WidgetPseudoTable/partial/constructor.js +11 -1
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.js +45 -30
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.stories.js +82 -18
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/partial/constructor.js +11 -1
- package/dist/Atomic/Layout/Header/Header.js +83 -27
- package/dist/Atomic/Layout/Header/Header.stories.js +31 -8
- package/dist/Atomic/Layout/MainMenu/MainMenu.js +107 -51
- package/dist/Atomic/Layout/MainMenu/MainMenu.stories.js +31 -8
- package/dist/Atomic/Layout/Spinner/Spinner.interface.js +4 -1
- package/dist/Atomic/Layout/Spinner/Spinner.js +28 -13
- package/dist/Atomic/Layout/Spinner/Spinner.stories.js +30 -7
- package/dist/Atomic/Layout/Spinner/Spinner.test.js +22 -13
- package/dist/Atomic/Layout/Spinner/index.js +17 -2
- package/dist/Atomic/UI/Accordion/Accordion.interface.js +4 -1
- package/dist/Atomic/UI/Accordion/Accordion.js +77 -21
- package/dist/Atomic/UI/Accordion/Accordion.stories.js +36 -10
- package/dist/Atomic/UI/Accordion/Accordion.test.js +18 -9
- package/dist/Atomic/UI/Accordion/AccordionItem.js +84 -28
- package/dist/Atomic/UI/Accordion/AccordionItem.test.js +18 -9
- package/dist/Atomic/UI/Accordion/index.js +17 -2
- package/dist/Atomic/UI/AccordionTable/AccordionTable.js +99 -43
- package/dist/Atomic/UI/AccordionTable/AccordionTable.stories.js +80 -16
- package/dist/Atomic/UI/AccordionText/AccordionText.js +73 -18
- package/dist/Atomic/UI/AccordionText/AccordionText.stories.js +59 -36
- package/dist/Atomic/UI/AdvancedTag/AdvTag.js +94 -38
- package/dist/Atomic/UI/AdvancedTag/AdvancedTags.js +70 -14
- package/dist/Atomic/UI/AdvancedTag/AdvancedTags.stories.js +31 -8
- package/dist/Atomic/UI/Alert/Alert.js +78 -22
- package/dist/Atomic/UI/Alert/Alert.stories.js +38 -12
- package/dist/Atomic/UI/Arrow/Arrow.js +78 -22
- package/dist/Atomic/UI/Arrow/Arrow.stories.js +31 -8
- package/dist/Atomic/UI/Box/Box.js +22 -8
- package/dist/Atomic/UI/Box/Box.stories.js +41 -18
- package/dist/Atomic/UI/Button/Button.js +24 -9
- package/dist/Atomic/UI/Button/Button.stories.js +32 -9
- package/dist/Atomic/UI/Button/Button.test.js +51 -42
- package/dist/Atomic/UI/ButtonsBar/ButtonsBar.js +30 -15
- package/dist/Atomic/UI/ButtonsBar/ButtonsBar.stories.js +35 -13
- package/dist/Atomic/UI/Chart/Chart.js +105 -49
- package/dist/Atomic/UI/Chart/Chart.stories.js +31 -8
- package/dist/Atomic/UI/Chart/partial/Chart.constants.js +44 -8
- package/dist/Atomic/UI/Chart/partial/ChartTypeSwitcherIcon/ChartTypeSwitcherIcon.js +30 -15
- package/dist/Atomic/UI/Chart/partial/datasetSetters.js +34 -9
- package/dist/Atomic/UI/Chart/partial/optionsConstructor.js +41 -16
- package/dist/Atomic/UI/Chart/partial/optionsSetters.js +24 -3
- package/dist/Atomic/UI/Chart/partial/utils.js +45 -13
- package/dist/Atomic/UI/CircleProgressBar/CircleProgressBar.js +76 -20
- package/dist/Atomic/UI/CircleProgressBar/CircleProgressBar.stories.js +32 -9
- package/dist/Atomic/UI/DateTime/DateTime.js +70 -14
- package/dist/Atomic/UI/DateTime/DateTime.stories.js +32 -9
- package/dist/Atomic/UI/DebugContainer/DebugContainer.js +65 -14
- package/dist/Atomic/UI/DebugContainer/useDebugContainer.js +62 -6
- package/dist/Atomic/UI/DoubleString/DoubleString.js +85 -29
- package/dist/Atomic/UI/DoubleString/DoubleString.stories.js +39 -13
- package/dist/Atomic/UI/DynamicIcon/DynamicIcon.interface.js +4 -1
- package/dist/Atomic/UI/DynamicIcon/DynamicIcon.js +58 -7
- package/dist/Atomic/UI/DynamicIcon/DynamicIcon.stories.js +72 -8
- package/dist/Atomic/UI/DynamicIcon/DynamicIcon.test.js +24 -15
- package/dist/Atomic/UI/DynamicIcon/index.js +17 -2
- package/dist/Atomic/UI/ExampleChartIntegration/ExampleChartIntegration.js +101 -46
- package/dist/Atomic/UI/ExampleChartIntegration/ExampleChartIntegration.stories.js +72 -8
- package/dist/Atomic/UI/ExampleChartIntegration/partial/utils.js +41 -12
- package/dist/Atomic/UI/Hint/Hint.interface.js +4 -1
- package/dist/Atomic/UI/Hint/Hint.js +93 -37
- package/dist/Atomic/UI/Hint/Hint.stories.js +38 -15
- package/dist/Atomic/UI/Hint/Hint.test.js +13 -4
- package/dist/Atomic/UI/Hint/index.js +17 -2
- package/dist/Atomic/UI/Hint/partials/_utils.js +36 -11
- package/dist/Atomic/UI/Modal/Modal.interface.js +4 -1
- package/dist/Atomic/UI/Modal/Modal.js +61 -35
- package/dist/Atomic/UI/Modal/Modal.stories.js +85 -38
- package/dist/Atomic/UI/Modal/ModalHOC.js +68 -12
- package/dist/Atomic/UI/Modal/ModalHOC.stories.js +59 -27
- package/dist/Atomic/UI/Modal/ModalHOC.test.js +47 -38
- package/dist/Atomic/UI/Modal/index.js +26 -4
- package/dist/Atomic/UI/Modal/partials/ModalFooter.js +63 -7
- package/dist/Atomic/UI/Modal/partials/ModalFooter.test.js +40 -31
- package/dist/Atomic/UI/Modal/partials/ModalTitle.js +71 -15
- package/dist/Atomic/UI/Modal/partials/ModalTitle.test.js +39 -30
- package/dist/Atomic/UI/Modal/partials/useMobileModal.js +34 -19
- package/dist/Atomic/UI/Modal/partials/useMobileModal.test.js +28 -19
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion._test.js +34 -25
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.interface.js +4 -1
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.js +73 -17
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.stories.js +184 -101
- package/dist/Atomic/UI/MonoAccordion/index.js +17 -2
- package/dist/Atomic/UI/NavLine/NavLine.interface.js +4 -1
- package/dist/Atomic/UI/NavLine/NavLine.js +102 -46
- package/dist/Atomic/UI/NavLine/NavLine.stories.js +116 -32
- package/dist/Atomic/UI/NavLine/NavLine.test.js +53 -44
- package/dist/Atomic/UI/NavLine/index.js +17 -2
- package/dist/Atomic/UI/PageTitle/PageTitle.interface.js +4 -1
- package/dist/Atomic/UI/PageTitle/PageTitle.js +34 -19
- package/dist/Atomic/UI/PageTitle/PageTitle.stories.js +33 -10
- package/dist/Atomic/UI/PageTitle/PageTitle.test.js +51 -42
- package/dist/Atomic/UI/PageTitle/index.js +17 -2
- package/dist/Atomic/UI/PieChart/PieChart.js +35 -66
- package/dist/Atomic/UI/PieChart/PieChart.scss +11 -87
- package/dist/Atomic/UI/PieChart/PieChart.stories.js +81 -56
- package/dist/Atomic/UI/Price/Price.interface.js +4 -1
- package/dist/Atomic/UI/Price/Price.js +24 -9
- package/dist/Atomic/UI/Price/Price.stories.js +30 -7
- package/dist/Atomic/UI/Price/Price.test.js +21 -12
- package/dist/Atomic/UI/Price/index.js +17 -2
- package/dist/Atomic/UI/PriceRange/PriceRange.interface.js +4 -1
- package/dist/Atomic/UI/PriceRange/PriceRange.js +26 -11
- package/dist/Atomic/UI/PriceRange/PriceRange.stories.js +30 -7
- package/dist/Atomic/UI/PriceRange/PriceRange.test.js +18 -9
- package/dist/Atomic/UI/PriceRange/index.js +17 -2
- package/dist/Atomic/UI/ProgressLine/ProgressLine.interface.js +4 -1
- package/dist/Atomic/UI/ProgressLine/ProgressLine.js +32 -17
- package/dist/Atomic/UI/ProgressLine/ProgressLine.stories.js +30 -7
- package/dist/Atomic/UI/ProgressLine/ProgressLine.test.js +18 -9
- package/dist/Atomic/UI/ProgressLine/index.js +17 -2
- package/dist/Atomic/UI/Status/Status.interface.js +4 -1
- package/dist/Atomic/UI/Status/Status.js +31 -16
- package/dist/Atomic/UI/Status/Status.stories.js +34 -8
- package/dist/Atomic/UI/Status/Status.test.js +32 -23
- package/dist/Atomic/UI/Status/index.js +17 -2
- package/dist/Atomic/UI/Table/Partials/TdCell.js +79 -23
- package/dist/Atomic/UI/Table/Partials/TdHeader.js +32 -17
- package/dist/Atomic/UI/Table/Partials/TdRow.js +81 -25
- package/dist/Atomic/UI/Table/Partials/TdTitle.js +75 -19
- package/dist/Atomic/UI/Table/Table.js +32 -17
- package/dist/Atomic/UI/Table/Table.stories.js +73 -9
- package/dist/Atomic/UI/Table/TdTypes/TdActions.js +74 -18
- package/dist/Atomic/UI/Table/TdTypes/TdPriority.js +28 -13
- package/dist/Atomic/UI/Table/TdTypes/TdRange.js +16 -6
- package/dist/Atomic/UI/Table/TdTypes/TdWeight.js +32 -17
- package/dist/Atomic/UI/Tag/Tag.interface.js +4 -1
- package/dist/Atomic/UI/Tag/Tag.js +80 -24
- package/dist/Atomic/UI/Tag/Tag.stories.js +38 -15
- package/dist/Atomic/UI/Tag/Tag.test.js +30 -21
- package/dist/Atomic/UI/Tag/index.js +17 -2
- package/dist/Atomic/UI/TagList/TagList.js +84 -28
- package/dist/Atomic/UI/TagList/TagList.stories.js +80 -16
- package/dist/Atomic/UI/UserBox/UserBox.interface.js +4 -1
- package/dist/Atomic/UI/UserBox/UserBox.js +37 -22
- package/dist/Atomic/UI/UserBox/UserBox.stories.js +30 -7
- package/dist/Atomic/UI/UserBox/UserBox.test.js +74 -24
- package/dist/Atomic/UI/UserBox/index.js +17 -2
- package/dist/Atomic/UI/WizardStepper/WizardStepper.stories.js +34 -11
- package/dist/Atomic/UI/WizardStepper/constructor.js +34 -11
- package/dist/Atomic/UI/WizardStepper/index.js +17 -2
- package/dist/Atomic/UI/WizardStepper/ui/StateIcon/StateIcon.js +31 -16
- package/dist/Atomic/UI/WizardStepper/ui/StateIcon/index.js +12 -2
- package/dist/Atomic/UI/WizardStepper/ui/StepRow/StepRow.js +39 -25
- package/dist/Atomic/UI/WizardStepper/ui/StepRow/index.js +17 -2
- package/dist/Atomic/UI/WizardStepper/ui/StepWrapper/StepWrapper.js +34 -19
- package/dist/Atomic/UI/WizardStepper/ui/StepWrapper/index.js +17 -2
- package/dist/Atomic/UI/WizardStepper/ui/icons.js +39 -24
- package/dist/Atomic/UI/WizardStepper/ui/index.js +17 -2
- package/dist/Classes/AbortableFetch.js +12 -2
- package/dist/Classes/AnimatedHandler.js +11 -1
- package/dist/Classes/RESTAPI/index.js +24 -9
- package/dist/Classes/RESTAPI/partials/AbortableFetch.js +12 -2
- package/dist/Classes/RESTAPI/partials/ApiBase.js +18 -3
- package/dist/Classes/RESTAPI/partials/ApiRequestCreators.js +25 -10
- package/dist/Classes/RESTAPI/partials/ApiUtils.js +22 -7
- package/dist/Classes/RESTAPI/partials/CredentialsProcessing.js +20 -5
- package/dist/Classes/RESTAPI/partials/Utils.js +14 -4
- package/dist/Classes/RESTAPI/partials/_outerDependencies.js +18 -3
- package/dist/Classes/RESTAPI/partials/_utils.js +43 -10
- package/dist/Constants/index.constants.js +40 -7
- package/dist/DeepPartial.d.ts +40 -0
- package/dist/DeepReadonly.d.ts +38 -0
- package/dist/DeepRequired.d.ts +50 -0
- package/dist/Flatten.d.ts +34 -0
- package/dist/FunctionType.d.ts +37 -0
- package/dist/Functions/Portal.js +62 -6
- package/dist/Functions/customEventListener.js +1 -0
- package/dist/Functions/dateTime.js +31 -21
- package/dist/Functions/fieldValueFormatters.js +79 -61
- package/dist/Functions/guards/assertions.js +19 -4
- package/dist/Functions/guards/safeValue.js +21 -6
- package/dist/Functions/guards/typeGuards.js +12 -2
- package/dist/Functions/hooks/useFormFieldsChangesManager.js +55 -4
- package/dist/Functions/locale/createTranslator.js +13 -3
- package/dist/Functions/operations.js +11 -1
- package/dist/Functions/presets/inputMaskPresets.js +12 -2
- package/dist/Functions/presets/inputPresets.js +14 -4
- package/dist/Functions/presets/mobileKeyboardTypesPresets.js +24 -32
- package/dist/Functions/schemas.js +77 -15
- package/dist/Functions/useBodyScrollLock.js +13 -3
- package/dist/Functions/useClickOutside.js +13 -3
- package/dist/Functions/useDebounce.js +55 -4
- package/dist/Functions/useFieldFocus.js +17 -7
- package/dist/Functions/useFormTools/form-drivers/ArrayWithObjects.js +18 -3
- package/dist/Functions/useFormTools/form-drivers/ObjectWithIterableObjects.js +11 -1
- package/dist/Functions/useFormTools/form-drivers/ObjectWithNamedKeyObjects.js +18 -3
- package/dist/Functions/useFormTools/functions/General.js +11 -1
- package/dist/Functions/useFormTools/functions/RenderFields.js +16 -6
- package/dist/Functions/useFormTools/functions/usePrevious.js +14 -4
- package/dist/Functions/useFormTools/index.js +50 -35
- package/dist/Functions/useInputHighlightError.js +68 -9
- package/dist/Functions/useIsMobile/index.js +17 -2
- package/dist/Functions/useIsMobile/useIsMobile.js +14 -4
- package/dist/Functions/useIsMobile/useIsMobile.test.js +18 -9
- package/dist/Functions/useKeyPress/useHandleKeyPress.js +21 -6
- package/dist/Functions/useKeyPress/useHandleKeyPress.test.js +20 -11
- package/dist/Functions/useKeyPress/useKeyPress.js +16 -6
- package/dist/Functions/useKeyPress/useKeyPress.test.js +25 -16
- package/dist/Functions/useLocalStorage.js +13 -3
- package/dist/Functions/useLocationParams.js +14 -4
- package/dist/Functions/useMediaQuery.js +13 -3
- package/dist/Functions/useMetaInfo.js +27 -9
- package/dist/Functions/useMouseUpOutside.js +13 -3
- package/dist/Functions/useOnlineStatus.js +14 -4
- package/dist/Functions/usePasswordChecker.js +69 -13
- package/dist/Functions/usePrevious.js +14 -4
- package/dist/Functions/useResize.js +15 -5
- package/dist/Functions/useScrollTo.js +15 -5
- package/dist/Functions/useToggle.js +16 -6
- package/dist/Functions/utils.js +173 -67
- package/dist/If.d.ts +34 -0
- package/dist/KeysType.d.ts +10 -0
- package/dist/Molecular/CustomIcons/components/AffiliateNetworks.js +57 -6
- package/dist/Molecular/CustomIcons/components/AlertCircle.js +57 -6
- package/dist/Molecular/CustomIcons/components/AppStore.js +59 -8
- package/dist/Molecular/CustomIcons/components/Arrow.js +62 -11
- package/dist/Molecular/CustomIcons/components/ArrowDown.js +55 -4
- package/dist/Molecular/CustomIcons/components/ArrowLeft.js +56 -5
- package/dist/Molecular/CustomIcons/components/ArrowRight.js +56 -5
- package/dist/Molecular/CustomIcons/components/ArrowUp.js +55 -4
- package/dist/Molecular/CustomIcons/components/Bell.js +55 -4
- package/dist/Molecular/CustomIcons/components/Button.js +55 -4
- package/dist/Molecular/CustomIcons/components/Campaigns.js +55 -4
- package/dist/Molecular/CustomIcons/components/Check.js +55 -4
- package/dist/Molecular/CustomIcons/components/Check2.js +55 -4
- package/dist/Molecular/CustomIcons/components/ChevronDown.js +55 -4
- package/dist/Molecular/CustomIcons/components/ChevronDownDisabled.js +55 -4
- package/dist/Molecular/CustomIcons/components/ChevronLeft.js +55 -4
- package/dist/Molecular/CustomIcons/components/ChevronRight.js +55 -4
- package/dist/Molecular/CustomIcons/components/ChevronUp.js +55 -4
- package/dist/Molecular/CustomIcons/components/ChevronUpDown.js +58 -7
- package/dist/Molecular/CustomIcons/components/Close.js +56 -5
- package/dist/Molecular/CustomIcons/components/ColumnsOrder.js +60 -9
- package/dist/Molecular/CustomIcons/components/Delete.js +55 -4
- package/dist/Molecular/CustomIcons/components/Edit.js +55 -4
- package/dist/Molecular/CustomIcons/components/Email.js +59 -8
- package/dist/Molecular/CustomIcons/components/FinturfLogo.js +60 -9
- package/dist/Molecular/CustomIcons/components/FinturfLogo2.js +59 -8
- package/dist/Molecular/CustomIcons/components/Flows.js +55 -4
- package/dist/Molecular/CustomIcons/components/Gift.js +56 -5
- package/dist/Molecular/CustomIcons/components/GoogleAuth.js +59 -8
- package/dist/Molecular/CustomIcons/components/GooglePlay.js +59 -8
- package/dist/Molecular/CustomIcons/components/HelpCircle.js +56 -5
- package/dist/Molecular/CustomIcons/components/HelpCircle2.js +56 -5
- package/dist/Molecular/CustomIcons/components/HelpCircleFilled.js +56 -5
- package/dist/Molecular/CustomIcons/components/Home.js +56 -5
- package/dist/Molecular/CustomIcons/components/Home2.js +56 -5
- package/dist/Molecular/CustomIcons/components/Key.js +55 -4
- package/dist/Molecular/CustomIcons/components/Landers.js +56 -5
- package/dist/Molecular/CustomIcons/components/Lock.js +55 -4
- package/dist/Molecular/CustomIcons/components/Mail.js +57 -6
- package/dist/Molecular/CustomIcons/components/Mastercard.js +67 -16
- package/dist/Molecular/CustomIcons/components/Minus.js +58 -7
- package/dist/Molecular/CustomIcons/components/Offers.js +55 -4
- package/dist/Molecular/CustomIcons/components/Pause.js +58 -7
- package/dist/Molecular/CustomIcons/components/PayPal.js +61 -10
- package/dist/Molecular/CustomIcons/components/PayPalLightLarge.js +59 -8
- package/dist/Molecular/CustomIcons/components/Phone.js +58 -7
- package/dist/Molecular/CustomIcons/components/Play.js +58 -7
- package/dist/Molecular/CustomIcons/components/Plus.js +58 -7
- package/dist/Molecular/CustomIcons/components/Profile.js +56 -5
- package/dist/Molecular/CustomIcons/components/QRCode.js +59 -8
- package/dist/Molecular/CustomIcons/components/Rectangle.js +55 -4
- package/dist/Molecular/CustomIcons/components/Revert.js +56 -5
- package/dist/Molecular/CustomIcons/components/Star.js +55 -4
- package/dist/Molecular/CustomIcons/components/Star2.js +55 -4
- package/dist/Molecular/CustomIcons/components/TrafficSources.js +57 -6
- package/dist/Molecular/CustomIcons/components/Trash.js +55 -4
- package/dist/Molecular/CustomIcons/components/TrashRed.js +55 -4
- package/dist/Molecular/CustomIcons/components/Triggers.js +55 -4
- package/dist/Molecular/CustomIcons/components/User.js +56 -5
- package/dist/Molecular/CustomIcons/components/Visa.js +61 -10
- package/dist/Molecular/CustomIcons/components/X.js +55 -4
- package/dist/Molecular/CustomIcons/index.js +78 -61
- package/dist/Molecular/FormElement/FormElement.js +28 -13
- package/dist/Molecular/FormElement/FormElement.stories.js +33 -10
- package/dist/Molecular/FormWithDependOn/FormWithDependOn.js +74 -19
- package/dist/Molecular/FormWithDependOn/FormWithDependOn.stories.js +81 -17
- package/dist/Molecular/FormWithDependOn/partials/_utils.js +13 -3
- package/dist/Molecular/InputAddress/InputAddress.js +139 -83
- package/dist/Molecular/InputAddress/InputAddress.stories.js +78 -14
- package/dist/Molecular/InputPassword/InputPassword.js +73 -17
- package/dist/Molecular/InputPassword/InputPassword.stories.js +72 -8
- package/dist/NonNullableType.d.ts +13 -0
- package/dist/ObjectType.d.ts +9 -0
- package/dist/OnlyObjectKeys.d.ts +65 -0
- package/dist/PrettyPrint.d.ts +29 -0
- package/dist/RequiredFields.d.ts +21 -0
- package/dist/TupleType.d.ts +10 -0
- package/dist/ValuesType.d.ts +10 -0
- package/dist/lib/src/Atomic/UI/PieChart/PieChart.d.ts +7 -3
- package/dist/lib/src/Atomic/UI/PieChart/PieChart.stories.d.ts +15 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/base.interface.js +4 -1
- package/dist/types/base.types.js +4 -1
- package/package.json +16 -3
- package/dist/Atomic/UI/PieChart/PieChar.interface.js +0 -1
- package/dist/Atomic/UI/PieChart/PieChart.test.js +0 -133
- package/dist/Atomic/UI/PieChart/index.js +0 -5
- package/dist/lib/src/Atomic/UI/PieChart/PieChar.interface.d.ts +0 -36
- package/dist/lib/src/Atomic/UI/PieChart/PieChart.test.d.ts +0 -1
- package/dist/lib/src/Atomic/UI/PieChart/index.d.ts +0 -13
|
@@ -1,40 +1,91 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "Mastercard", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return Mastercard;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
13
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
14
|
+
if (typeof WeakMap !== "function") return null;
|
|
15
|
+
var cacheBabelInterop = new WeakMap();
|
|
16
|
+
var cacheNodeInterop = new WeakMap();
|
|
17
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
18
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
19
|
+
})(nodeInterop);
|
|
20
|
+
}
|
|
21
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
22
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
25
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
26
|
+
return {
|
|
27
|
+
default: obj
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
31
|
+
if (cache && cache.has(obj)) {
|
|
32
|
+
return cache.get(obj);
|
|
33
|
+
}
|
|
34
|
+
var newObj = {
|
|
35
|
+
__proto__: null
|
|
36
|
+
};
|
|
37
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
38
|
+
for(var key in obj){
|
|
39
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
40
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
41
|
+
if (desc && (desc.get || desc.set)) {
|
|
42
|
+
Object.defineProperty(newObj, key, desc);
|
|
43
|
+
} else {
|
|
44
|
+
newObj[key] = obj[key];
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
newObj.default = obj;
|
|
49
|
+
if (cache) {
|
|
50
|
+
cache.set(obj, newObj);
|
|
51
|
+
}
|
|
52
|
+
return newObj;
|
|
53
|
+
}
|
|
54
|
+
const Mastercard = (props)=>/*#__PURE__*/ (0, _jsxruntime.jsxs)("svg", {
|
|
4
55
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
56
|
width: 38,
|
|
6
57
|
height: 24,
|
|
7
58
|
fill: "none",
|
|
8
59
|
...props,
|
|
9
60
|
children: [
|
|
10
|
-
/*#__PURE__*/
|
|
61
|
+
/*#__PURE__*/ (0, _jsxruntime.jsxs)("g", {
|
|
11
62
|
clipPath: "url(#a)",
|
|
12
63
|
children: [
|
|
13
|
-
/*#__PURE__*/
|
|
64
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
14
65
|
fill: "#fff",
|
|
15
66
|
fillRule: "evenodd",
|
|
16
67
|
d: "M0 1.784C0 .799.799 0 1.784 0H36.27c.985 0 1.784.799 1.784 1.784v21.405c0 .985-.799 1.784-1.784 1.784H1.784A1.784 1.784 0 0 1 0 23.189V1.784Z",
|
|
17
68
|
clipRule: "evenodd"
|
|
18
69
|
}),
|
|
19
|
-
/*#__PURE__*/
|
|
70
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
20
71
|
fill: "#D8232A",
|
|
21
72
|
fillRule: "evenodd",
|
|
22
73
|
d: "M14.865 19.027a6.54 6.54 0 1 0 0-13.081 6.54 6.54 0 0 0 0 13.081Z",
|
|
23
74
|
clipRule: "evenodd"
|
|
24
75
|
}),
|
|
25
|
-
/*#__PURE__*/
|
|
76
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
26
77
|
fill: "#ED9F2D",
|
|
27
78
|
fillRule: "evenodd",
|
|
28
79
|
d: "M19.026 17.532a6.54 6.54 0 1 0 0-10.091 6.527 6.527 0 0 1 2.379 5.045 6.527 6.527 0 0 1-2.379 5.046Z",
|
|
29
80
|
clipRule: "evenodd"
|
|
30
81
|
}),
|
|
31
|
-
/*#__PURE__*/
|
|
82
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
32
83
|
fill: "#D8232A",
|
|
33
84
|
fillRule: "evenodd",
|
|
34
85
|
d: "M19.027 7.44a6.527 6.527 0 0 0-2.379 5.046c0 2.031.926 3.846 2.379 5.046a6.527 6.527 0 0 0 2.378-5.046 6.527 6.527 0 0 0-2.378-5.045Z",
|
|
35
86
|
clipRule: "evenodd"
|
|
36
87
|
}),
|
|
37
|
-
/*#__PURE__*/
|
|
88
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("mask", {
|
|
38
89
|
id: "b",
|
|
39
90
|
width: 6,
|
|
40
91
|
height: 11,
|
|
@@ -42,23 +93,23 @@ export const Mastercard = (props)=>/*#__PURE__*/ _jsxs("svg", {
|
|
|
42
93
|
y: 7,
|
|
43
94
|
"mask-type": "alpha",
|
|
44
95
|
maskUnits: "userSpaceOnUse",
|
|
45
|
-
children: /*#__PURE__*/
|
|
96
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
46
97
|
fill: "#fff",
|
|
47
98
|
fillRule: "evenodd",
|
|
48
99
|
d: "M19.027 7.44a6.527 6.527 0 0 0-2.379 5.046c0 2.031.926 3.846 2.379 5.046a6.527 6.527 0 0 0 2.378-5.046 6.527 6.527 0 0 0-2.378-5.045Z",
|
|
49
100
|
clipRule: "evenodd"
|
|
50
101
|
})
|
|
51
102
|
}),
|
|
52
|
-
/*#__PURE__*/
|
|
103
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("g", {
|
|
53
104
|
mask: "url(#b)",
|
|
54
|
-
children: /*#__PURE__*/
|
|
105
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
55
106
|
fill: "#ED9F2D",
|
|
56
107
|
fillRule: "evenodd",
|
|
57
108
|
d: "M16.054 7.73H22v.594h-5.946V7.73Zm0 1.189H22v.595h-5.946v-.595ZM22 10.109h-5.946v.594H22v-.595Zm-5.946 1.188H22v.595h-5.946v-.595ZM22 12.487h-5.946v.594H22v-.595Zm-5.946 1.189H22v.594h-5.946v-.594ZM22 14.865h-5.946v.594H22v-.594Zm-5.946 1.189H22v.595h-5.946v-.595ZM22 17.244h-5.946v.594H22v-.595Z",
|
|
58
109
|
clipRule: "evenodd"
|
|
59
110
|
})
|
|
60
111
|
}),
|
|
61
|
-
/*#__PURE__*/
|
|
112
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
62
113
|
fill: "#E5E5E5",
|
|
63
114
|
fillOpacity: 0.01,
|
|
64
115
|
fillRule: "evenodd",
|
|
@@ -67,10 +118,10 @@ export const Mastercard = (props)=>/*#__PURE__*/ _jsxs("svg", {
|
|
|
67
118
|
})
|
|
68
119
|
]
|
|
69
120
|
}),
|
|
70
|
-
/*#__PURE__*/
|
|
71
|
-
children: /*#__PURE__*/
|
|
121
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("defs", {
|
|
122
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("clipPath", {
|
|
72
123
|
id: "a",
|
|
73
|
-
children: /*#__PURE__*/
|
|
124
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
74
125
|
fill: "#fff",
|
|
75
126
|
d: "M0 0h38v24H0z"
|
|
76
127
|
})
|
|
@@ -1,13 +1,64 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "Minus", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return Minus;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
13
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
14
|
+
if (typeof WeakMap !== "function") return null;
|
|
15
|
+
var cacheBabelInterop = new WeakMap();
|
|
16
|
+
var cacheNodeInterop = new WeakMap();
|
|
17
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
18
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
19
|
+
})(nodeInterop);
|
|
20
|
+
}
|
|
21
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
22
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
25
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
26
|
+
return {
|
|
27
|
+
default: obj
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
31
|
+
if (cache && cache.has(obj)) {
|
|
32
|
+
return cache.get(obj);
|
|
33
|
+
}
|
|
34
|
+
var newObj = {
|
|
35
|
+
__proto__: null
|
|
36
|
+
};
|
|
37
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
38
|
+
for(var key in obj){
|
|
39
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
40
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
41
|
+
if (desc && (desc.get || desc.set)) {
|
|
42
|
+
Object.defineProperty(newObj, key, desc);
|
|
43
|
+
} else {
|
|
44
|
+
newObj[key] = obj[key];
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
newObj.default = obj;
|
|
49
|
+
if (cache) {
|
|
50
|
+
cache.set(obj, newObj);
|
|
51
|
+
}
|
|
52
|
+
return newObj;
|
|
53
|
+
}
|
|
54
|
+
const Minus = (props)=>/*#__PURE__*/ (0, _jsxruntime.jsxs)("svg", {
|
|
4
55
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
56
|
width: 16,
|
|
6
57
|
height: 16,
|
|
7
58
|
fill: "none",
|
|
8
59
|
...props,
|
|
9
60
|
children: [
|
|
10
|
-
/*#__PURE__*/
|
|
61
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("mask", {
|
|
11
62
|
id: "a",
|
|
12
63
|
width: 16,
|
|
13
64
|
height: 16,
|
|
@@ -15,14 +66,14 @@ export const Minus = (props)=>/*#__PURE__*/ _jsxs("svg", {
|
|
|
15
66
|
y: 0,
|
|
16
67
|
"mask-type": "alpha",
|
|
17
68
|
maskUnits: "userSpaceOnUse",
|
|
18
|
-
children: /*#__PURE__*/
|
|
69
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
19
70
|
stroke: "#000",
|
|
20
71
|
d: "M3.333 8h9.334"
|
|
21
72
|
})
|
|
22
73
|
}),
|
|
23
|
-
/*#__PURE__*/
|
|
74
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("g", {
|
|
24
75
|
mask: "url(#a)",
|
|
25
|
-
children: /*#__PURE__*/
|
|
76
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
26
77
|
fill: "#1E1E2D",
|
|
27
78
|
d: "M0 0h16v16H0z"
|
|
28
79
|
})
|
|
@@ -1,11 +1,62 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "Offers", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return Offers;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
13
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
14
|
+
if (typeof WeakMap !== "function") return null;
|
|
15
|
+
var cacheBabelInterop = new WeakMap();
|
|
16
|
+
var cacheNodeInterop = new WeakMap();
|
|
17
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
18
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
19
|
+
})(nodeInterop);
|
|
20
|
+
}
|
|
21
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
22
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
25
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
26
|
+
return {
|
|
27
|
+
default: obj
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
31
|
+
if (cache && cache.has(obj)) {
|
|
32
|
+
return cache.get(obj);
|
|
33
|
+
}
|
|
34
|
+
var newObj = {
|
|
35
|
+
__proto__: null
|
|
36
|
+
};
|
|
37
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
38
|
+
for(var key in obj){
|
|
39
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
40
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
41
|
+
if (desc && (desc.get || desc.set)) {
|
|
42
|
+
Object.defineProperty(newObj, key, desc);
|
|
43
|
+
} else {
|
|
44
|
+
newObj[key] = obj[key];
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
newObj.default = obj;
|
|
49
|
+
if (cache) {
|
|
50
|
+
cache.set(obj, newObj);
|
|
51
|
+
}
|
|
52
|
+
return newObj;
|
|
53
|
+
}
|
|
54
|
+
const Offers = (props)=>/*#__PURE__*/ (0, _jsxruntime.jsx)("svg", {
|
|
4
55
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
56
|
xmlSpace: "preserve",
|
|
6
57
|
viewBox: "0 0 16 16",
|
|
7
58
|
...props,
|
|
8
|
-
children: /*#__PURE__*/
|
|
59
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
9
60
|
fill: "none",
|
|
10
61
|
stroke: "#9AA0B9",
|
|
11
62
|
strokeMiterlimit: 10,
|
|
@@ -1,13 +1,64 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "Pause", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return Pause;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
13
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
14
|
+
if (typeof WeakMap !== "function") return null;
|
|
15
|
+
var cacheBabelInterop = new WeakMap();
|
|
16
|
+
var cacheNodeInterop = new WeakMap();
|
|
17
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
18
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
19
|
+
})(nodeInterop);
|
|
20
|
+
}
|
|
21
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
22
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
25
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
26
|
+
return {
|
|
27
|
+
default: obj
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
31
|
+
if (cache && cache.has(obj)) {
|
|
32
|
+
return cache.get(obj);
|
|
33
|
+
}
|
|
34
|
+
var newObj = {
|
|
35
|
+
__proto__: null
|
|
36
|
+
};
|
|
37
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
38
|
+
for(var key in obj){
|
|
39
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
40
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
41
|
+
if (desc && (desc.get || desc.set)) {
|
|
42
|
+
Object.defineProperty(newObj, key, desc);
|
|
43
|
+
} else {
|
|
44
|
+
newObj[key] = obj[key];
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
newObj.default = obj;
|
|
49
|
+
if (cache) {
|
|
50
|
+
cache.set(obj, newObj);
|
|
51
|
+
}
|
|
52
|
+
return newObj;
|
|
53
|
+
}
|
|
54
|
+
const Pause = (props)=>/*#__PURE__*/ (0, _jsxruntime.jsxs)("svg", {
|
|
4
55
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
56
|
width: 16,
|
|
6
57
|
height: 16,
|
|
7
58
|
fill: "none",
|
|
8
59
|
...props,
|
|
9
60
|
children: [
|
|
10
|
-
/*#__PURE__*/
|
|
61
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("mask", {
|
|
11
62
|
id: "a",
|
|
12
63
|
width: 16,
|
|
13
64
|
height: 16,
|
|
@@ -15,14 +66,14 @@ export const Pause = (props)=>/*#__PURE__*/ _jsxs("svg", {
|
|
|
15
66
|
y: 0,
|
|
16
67
|
"mask-type": "alpha",
|
|
17
68
|
maskUnits: "userSpaceOnUse",
|
|
18
|
-
children: /*#__PURE__*/
|
|
69
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
19
70
|
stroke: "#000",
|
|
20
71
|
d: "M6.667 2.667H4v10.666h2.667V2.667ZM12 2.667H9.333v10.666H12V2.667Z"
|
|
21
72
|
})
|
|
22
73
|
}),
|
|
23
|
-
/*#__PURE__*/
|
|
74
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("g", {
|
|
24
75
|
mask: "url(#a)",
|
|
25
|
-
children: /*#__PURE__*/
|
|
76
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
26
77
|
fill: "#F06D8D",
|
|
27
78
|
d: "M0 0h16v16H0z"
|
|
28
79
|
})
|
|
@@ -1,13 +1,64 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "PayPal", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return PayPal;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
13
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
14
|
+
if (typeof WeakMap !== "function") return null;
|
|
15
|
+
var cacheBabelInterop = new WeakMap();
|
|
16
|
+
var cacheNodeInterop = new WeakMap();
|
|
17
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
18
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
19
|
+
})(nodeInterop);
|
|
20
|
+
}
|
|
21
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
22
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
25
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
26
|
+
return {
|
|
27
|
+
default: obj
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
31
|
+
if (cache && cache.has(obj)) {
|
|
32
|
+
return cache.get(obj);
|
|
33
|
+
}
|
|
34
|
+
var newObj = {
|
|
35
|
+
__proto__: null
|
|
36
|
+
};
|
|
37
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
38
|
+
for(var key in obj){
|
|
39
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
40
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
41
|
+
if (desc && (desc.get || desc.set)) {
|
|
42
|
+
Object.defineProperty(newObj, key, desc);
|
|
43
|
+
} else {
|
|
44
|
+
newObj[key] = obj[key];
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
newObj.default = obj;
|
|
49
|
+
if (cache) {
|
|
50
|
+
cache.set(obj, newObj);
|
|
51
|
+
}
|
|
52
|
+
return newObj;
|
|
53
|
+
}
|
|
54
|
+
const PayPal = (props)=>/*#__PURE__*/ (0, _jsxruntime.jsxs)("svg", {
|
|
4
55
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
56
|
width: 201,
|
|
6
57
|
height: 42,
|
|
7
58
|
fill: "none",
|
|
8
59
|
...props,
|
|
9
60
|
children: [
|
|
10
|
-
/*#__PURE__*/
|
|
61
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("rect", {
|
|
11
62
|
width: 200,
|
|
12
63
|
height: 41,
|
|
13
64
|
x: 0.5,
|
|
@@ -16,7 +67,7 @@ export const PayPal = (props)=>/*#__PURE__*/ _jsxs("svg", {
|
|
|
16
67
|
stroke: "#6B81DD",
|
|
17
68
|
rx: 3.5
|
|
18
69
|
}),
|
|
19
|
-
/*#__PURE__*/
|
|
70
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("rect", {
|
|
20
71
|
width: 61,
|
|
21
72
|
height: 40,
|
|
22
73
|
x: 1,
|
|
@@ -24,23 +75,23 @@ export const PayPal = (props)=>/*#__PURE__*/ _jsxs("svg", {
|
|
|
24
75
|
fill: "#fff",
|
|
25
76
|
rx: 4
|
|
26
77
|
}),
|
|
27
|
-
/*#__PURE__*/
|
|
78
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
28
79
|
fill: "#253D80",
|
|
29
80
|
d: "m26.85 32.65.444-2.75H21.626l3.253-20.325a.261.261 0 0 1 .09-.163.308.308 0 0 1 .177-.062h7.892c2.63 0 4.435.537 5.388 1.6.422.446.716.994.852 1.588a5.437 5.437 0 0 1 0 2.187v.625l.445.25c.338.166.644.39.902.662.388.462.64 1.02.724 1.613.096.775.061 1.56-.101 2.325a8.016 8.016 0 0 1-.979 2.637 5.41 5.41 0 0 1-1.538 1.663 6.485 6.485 0 0 1-2.071.913c-.83.206-1.685.306-2.542.3h-.622c-.437 0-.86.15-1.195.424-.337.28-.559.671-.623 1.1v.25l-.775 4.85v.188c.01.033.01.067 0 .1h-.076l-3.978.025Z"
|
|
30
81
|
}),
|
|
31
|
-
/*#__PURE__*/
|
|
82
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
32
83
|
fill: "#189BD7",
|
|
33
84
|
d: "m40.141 14.85-.076.463c-1.042 5.25-4.613 7.074-9.163 7.074H28.59c-.556 0-1.03.397-1.118.938l-1.182 7.4-.343 2.1a.58.58 0 0 0 .136.468c.112.13.276.205.449.207h4.117c.488 0 .904-.35.979-.825v-.2l.775-4.838v-.262a.973.973 0 0 1 .966-.825h.673c3.978 0 7.104-1.588 8.007-6.25a5.23 5.23 0 0 0-.814-4.663 4.098 4.098 0 0 0-1.093-.787Z"
|
|
34
85
|
}),
|
|
35
|
-
/*#__PURE__*/
|
|
86
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
36
87
|
fill: "#242E65",
|
|
37
88
|
d: "m39.049 14.425-.483-.125-.534-.1A13.012 13.012 0 0 0 36 14.063h-6.202a.952.952 0 0 0-.966.813l-1.27 8.211v.238c.087-.54.561-.938 1.118-.938h2.313c4.55 0 8.12-1.825 9.162-7.075l.077-.462a5.762 5.762 0 0 0-.852-.35l-.33-.075Z"
|
|
38
89
|
}),
|
|
39
|
-
/*#__PURE__*/
|
|
90
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
40
91
|
fill: "#253D80",
|
|
41
92
|
d: "M28.831 14.875a.952.952 0 0 1 .966-.813H36c.68-.007 1.36.039 2.033.138l.534.1.483.125.241.075c.293.094.578.21.852.35a4.938 4.938 0 0 0-1.017-4.463C37.855 9.063 35.77 8.5 33.05 8.5h-7.904c-.557 0-1.03.397-1.118.938L20.736 29.95c-.03.193.028.39.157.539.13.148.318.235.517.236h4.88l1.27-7.638 1.271-8.212Z"
|
|
42
93
|
}),
|
|
43
|
-
/*#__PURE__*/
|
|
94
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
44
95
|
fill: "#6B81DD",
|
|
45
96
|
d: "M66.871 22.067c-.114.978-.476 1.733-1.085 2.267-.606.529-1.412.793-2.419.793-1.092 0-1.968-.392-2.628-1.174-.656-.783-.984-1.83-.984-3.142v-.89c0-.858.153-1.613.457-2.265.31-.652.745-1.151 1.308-1.498.563-.352 1.214-.527 1.955-.527.982 0 1.769.275 2.361.825.593.546.938 1.303 1.035 2.273h-1.225c-.106-.737-.336-1.27-.692-1.6-.351-.33-.844-.495-1.479-.495-.779 0-1.39.288-1.834.863-.44.576-.66 1.394-.66 2.457v.895c0 1.003.209 1.8.628 2.393.419.592 1.005.888 1.758.888.677 0 1.196-.152 1.555-.457.364-.309.606-.844.724-1.606h1.225Zm2.66-3.104c.52-.639 1.197-.958 2.031-.958 1.451 0 2.184.819 2.196 2.456V25h-1.174v-4.545c-.004-.495-.118-.861-.343-1.098-.22-.237-.565-.355-1.034-.355-.381 0-.716.101-1.003.304-.288.203-.512.47-.673.8V25h-1.175v-9.75h1.175v3.713Zm8.836 6.164c-.931 0-1.689-.305-2.273-.914-.584-.614-.876-1.433-.876-2.457v-.215c0-.682.13-1.289.388-1.822a3.048 3.048 0 0 1 1.091-1.257c.47-.305.978-.457 1.524-.457.893 0 1.587.294 2.082.882.495.588.742 1.43.742 2.527v.488h-4.652c.016.677.213 1.225.59 1.644.38.415.863.623 1.447.623.415 0 .766-.085 1.054-.254.288-.17.54-.394.755-.673l.718.558c-.576.885-1.44 1.327-2.59 1.327Zm-.146-6.157c-.474 0-.872.173-1.194.52-.321.343-.52.825-.596 1.448h3.44v-.09c-.034-.596-.195-1.057-.482-1.383-.288-.33-.677-.495-1.168-.495Zm6.944 5.199c.419 0 .785-.128 1.098-.381a1.34 1.34 0 0 0 .52-.953h1.111a2.129 2.129 0 0 1-.406 1.124 2.67 2.67 0 0 1-1.003.85 2.866 2.866 0 0 1-1.32.318c-.935 0-1.68-.311-2.234-.933-.55-.627-.825-1.481-.825-2.565v-.196c0-.669.122-1.264.368-1.784.245-.52.596-.925 1.053-1.213.462-.287 1.005-.431 1.632-.431.77 0 1.409.23 1.917.692.512.461.785 1.06.819 1.796h-1.111c-.034-.444-.203-.808-.508-1.092-.3-.287-.673-.431-1.117-.431-.597 0-1.06.216-1.39.647-.326.428-.49 1.048-.49 1.86v.222c0 .792.164 1.4.49 1.828.325.428.79.642 1.396.642Zm5.967-2.35-.737.769V25h-1.174v-9.75h1.174v5.897l.629-.755 2.14-2.26h1.427L91.92 21 94.902 25h-1.377l-2.393-3.18Zm4.36-.317c0-.672.132-1.278.394-1.815a2.988 2.988 0 0 1 1.105-1.244 3.023 3.023 0 0 1 1.618-.438c.936 0 1.691.324 2.266.971.58.648.87 1.509.87 2.584v.082c0 .669-.129 1.27-.387 1.803-.254.529-.62.941-1.098 1.238-.474.296-1.02.444-1.638.444-.93 0-1.686-.324-2.266-.971-.576-.648-.863-1.505-.863-2.571v-.083Zm1.181.14c0 .762.176 1.373.527 1.835.356.46.83.692 1.422.692.597 0 1.07-.233 1.422-.699.351-.47.527-1.125.527-1.968 0-.753-.18-1.362-.54-1.828a1.693 1.693 0 0 0-1.422-.704c-.58 0-1.047.23-1.402.692-.356.46-.534 1.121-.534 1.98Zm10.785 2.679c-.457.537-1.128.806-2.012.806-.732 0-1.291-.212-1.676-.635-.381-.427-.573-1.058-.578-1.891v-4.47h1.175v4.438c0 1.04.423 1.561 1.269 1.561.897 0 1.494-.334 1.79-1.003v-4.995h1.175V25h-1.118l-.025-.68Zm4.526-7.852v1.663h1.282v.908h-1.282v4.259c0 .275.057.482.171.622.115.135.309.203.584.203.136 0 .322-.025.559-.076V25c-.309.085-.61.127-.902.127-.524 0-.92-.159-1.187-.476-.266-.317-.399-.768-.399-1.352v-4.26h-1.251v-.907h1.251v-1.663h1.174Zm11.965 6.912 1.321-5.25h1.174l-2 6.869h-.952l-1.669-5.205L120.198 25h-.952l-1.994-6.868h1.168l1.352 5.141 1.6-5.141h.946l1.631 5.25Zm4.97 1.619h-1.174v-6.868h1.174V25Zm-1.269-8.69a.71.71 0 0 1 .171-.482c.119-.131.292-.197.521-.197.228 0 .402.066.52.197a.692.692 0 0 1 .178.482c0 .19-.059.35-.178.476-.118.127-.292.19-.52.19-.229 0-.402-.063-.521-.19a.686.686 0 0 1-.171-.476Zm4.748.159v1.663h1.282v.908h-1.282v4.259c0 .275.057.482.171.622.115.135.309.203.584.203.136 0 .322-.025.559-.076V25a3.404 3.404 0 0 1-.901.127c-.525 0-.921-.159-1.187-.476-.267-.317-.4-.768-.4-1.352v-4.26h-1.251v-.907h1.251v-1.663h1.174Zm3.834 2.494c.52-.639 1.198-.958 2.031-.958 1.452 0 2.184.819 2.196 2.456V25h-1.174v-4.545c-.004-.495-.118-.861-.343-1.098-.22-.237-.565-.355-1.034-.355-.381 0-.715.101-1.003.304-.288.203-.512.47-.673.8V25h-1.174v-9.75h1.174v3.713Zm10.613 2.419V25h-1.219v-9.242h3.409c1.012 0 1.803.258 2.374.774.576.517.863 1.2.863 2.05 0 .898-.281 1.59-.844 2.076-.558.483-1.36.724-2.406.724h-2.177Zm0-.997h2.19c.652 0 1.151-.152 1.498-.457.347-.309.521-.753.521-1.333 0-.55-.174-.99-.521-1.32-.347-.33-.823-.502-1.428-.514h-2.26v3.624ZM157.808 25c-.068-.135-.123-.377-.165-.724-.546.567-1.198.851-1.955.851-.678 0-1.234-.19-1.67-.571a1.87 1.87 0 0 1-.647-1.46c0-.715.27-1.27.812-1.663.546-.398 1.312-.597 2.298-.597h1.143v-.54c0-.41-.123-.736-.369-.977-.245-.246-.607-.368-1.085-.368-.419 0-.77.105-1.054.317-.283.212-.425.468-.425.768h-1.181c0-.343.121-.673.362-.99.246-.322.576-.576.99-.762.419-.186.878-.28 1.378-.28.791 0 1.411.2 1.86.598.448.393.681.937.698 1.63v3.162c0 .63.08 1.132.241 1.504V25h-1.231Zm-1.949-.895c.368 0 .717-.095 1.047-.286.33-.19.569-.438.718-.742v-1.41h-.921c-1.439 0-2.158.421-2.158 1.264 0 .368.123.656.368.863.246.207.561.311.946.311Zm6.925-.825 1.6-5.148h1.257l-2.762 7.928c-.427 1.143-1.106 1.714-2.037 1.714l-.222-.02-.438-.082v-.952l.317.026c.398 0 .707-.08.927-.242.224-.16.408-.455.552-.882l.26-.698-2.45-6.792h1.282l1.714 5.148Zm5.313-1.898V25h-1.219v-9.242h3.409c1.012 0 1.803.258 2.374.774.576.517.863 1.2.863 2.05 0 .898-.281 1.59-.844 2.076-.558.483-1.36.724-2.406.724h-2.177Zm0-.997h2.19c.652 0 1.151-.152 1.498-.457.347-.309.521-.753.521-1.333 0-.55-.174-.99-.521-1.32-.347-.33-.823-.502-1.428-.514h-2.26v3.624ZM179.06 25c-.068-.135-.123-.377-.165-.724-.546.567-1.198.851-1.956.851-.677 0-1.233-.19-1.669-.571a1.87 1.87 0 0 1-.647-1.46c0-.715.27-1.27.812-1.663.546-.398 1.312-.597 2.298-.597h1.142v-.54c0-.41-.122-.736-.368-.977-.245-.246-.607-.368-1.085-.368-.419 0-.77.105-1.054.317-.283.212-.425.468-.425.768h-1.181c0-.343.121-.673.362-.99a2.51 2.51 0 0 1 .99-.762c.419-.186.878-.28 1.378-.28.791 0 1.411.2 1.86.598.448.393.681.937.698 1.63v3.162c0 .63.08 1.132.241 1.504V25h-1.231Zm-1.949-.895c.368 0 .717-.095 1.047-.286.33-.19.569-.438.717-.742v-1.41h-.92c-1.439 0-2.158.421-2.158 1.264 0 .368.123.656.368.863.245.207.561.311.946.311Zm6.056.895h-1.175v-9.75h1.175V25Z"
|
|
46
97
|
})
|
|
@@ -1,31 +1,82 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "PayPalLightLarge", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return PayPalLightLarge;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
12
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
13
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
14
|
+
if (typeof WeakMap !== "function") return null;
|
|
15
|
+
var cacheBabelInterop = new WeakMap();
|
|
16
|
+
var cacheNodeInterop = new WeakMap();
|
|
17
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
18
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
19
|
+
})(nodeInterop);
|
|
20
|
+
}
|
|
21
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
22
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
25
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
26
|
+
return {
|
|
27
|
+
default: obj
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
31
|
+
if (cache && cache.has(obj)) {
|
|
32
|
+
return cache.get(obj);
|
|
33
|
+
}
|
|
34
|
+
var newObj = {
|
|
35
|
+
__proto__: null
|
|
36
|
+
};
|
|
37
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
38
|
+
for(var key in obj){
|
|
39
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
40
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
41
|
+
if (desc && (desc.get || desc.set)) {
|
|
42
|
+
Object.defineProperty(newObj, key, desc);
|
|
43
|
+
} else {
|
|
44
|
+
newObj[key] = obj[key];
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
newObj.default = obj;
|
|
49
|
+
if (cache) {
|
|
50
|
+
cache.set(obj, newObj);
|
|
51
|
+
}
|
|
52
|
+
return newObj;
|
|
53
|
+
}
|
|
54
|
+
const PayPalLightLarge = (props)=>/*#__PURE__*/ (0, _jsxruntime.jsxs)("svg", {
|
|
4
55
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
56
|
width: 61,
|
|
6
57
|
height: 40,
|
|
7
58
|
fill: "none",
|
|
8
59
|
...props,
|
|
9
60
|
children: [
|
|
10
|
-
/*#__PURE__*/
|
|
61
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("rect", {
|
|
11
62
|
width: 61,
|
|
12
63
|
height: 40,
|
|
13
64
|
fill: "#fff",
|
|
14
65
|
rx: 4
|
|
15
66
|
}),
|
|
16
|
-
/*#__PURE__*/
|
|
67
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
17
68
|
fill: "#253D80",
|
|
18
69
|
d: "m25.85 31.65.444-2.75H20.626l3.253-20.325a.261.261 0 0 1 .09-.163.308.308 0 0 1 .177-.062h7.892c2.63 0 4.435.537 5.388 1.6.422.446.716.994.852 1.588a5.437 5.437 0 0 1 0 2.187v.625l.445.25c.338.166.644.39.902.662.388.462.64 1.02.724 1.613.096.775.061 1.56-.101 2.325a8.016 8.016 0 0 1-.979 2.637 5.41 5.41 0 0 1-1.538 1.663 6.485 6.485 0 0 1-2.071.913c-.83.206-1.685.306-2.542.3h-.622c-.437 0-.86.15-1.195.424-.337.28-.559.671-.623 1.1v.25l-.775 4.85v.188c.01.033.01.067 0 .1h-.076l-3.978.025Z"
|
|
19
70
|
}),
|
|
20
|
-
/*#__PURE__*/
|
|
71
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
21
72
|
fill: "#189BD7",
|
|
22
73
|
d: "m39.141 13.85-.076.463c-1.042 5.25-4.613 7.074-9.163 7.074H27.59c-.556 0-1.03.397-1.118.938l-1.182 7.4-.343 2.1a.58.58 0 0 0 .136.469c.112.129.276.204.449.206h4.117c.488 0 .904-.35.979-.825v-.2l.775-4.838v-.262a.973.973 0 0 1 .966-.825h.673c3.978 0 7.104-1.588 8.007-6.25a5.23 5.23 0 0 0-.814-4.663 4.098 4.098 0 0 0-1.093-.787Z"
|
|
23
74
|
}),
|
|
24
|
-
/*#__PURE__*/
|
|
75
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
25
76
|
fill: "#242E65",
|
|
26
77
|
d: "m38.049 13.425-.483-.125-.534-.1A13.012 13.012 0 0 0 35 13.063h-6.202a.952.952 0 0 0-.966.813l-1.27 8.211v.238c.087-.54.561-.938 1.118-.938h2.313c4.55 0 8.12-1.825 9.162-7.075l.077-.462a5.762 5.762 0 0 0-.852-.35l-.33-.075Z"
|
|
27
78
|
}),
|
|
28
|
-
/*#__PURE__*/
|
|
79
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)("path", {
|
|
29
80
|
fill: "#253D80",
|
|
30
81
|
d: "M27.831 13.875a.952.952 0 0 1 .966-.813H35c.68-.007 1.36.039 2.033.138l.534.1.483.125.241.075c.293.094.578.21.852.35a4.938 4.938 0 0 0-1.017-4.463C36.855 8.063 34.77 7.5 32.05 7.5h-7.904c-.557 0-1.03.397-1.118.938L19.736 28.95c-.03.193.028.39.157.539.13.148.318.235.517.236h4.88l1.27-7.638 1.271-8.212Z"
|
|
31
82
|
})
|