intelicoreact 1.5.33 → 1.5.35
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/Atomic/FormElements/ActionAlert/ActionAlert.interface.js +4 -0
- package/dist/Atomic/FormElements/ActionAlert/ActionAlert.js +93 -44
- package/dist/Atomic/FormElements/ActionAlert/ActionAlert.scss +23 -13
- package/dist/Atomic/FormElements/ActionAlert/ActionAlert.stories.js +89 -0
- package/dist/Atomic/FormElements/ActionAlert/ActionAlert.test.js +130 -0
- package/dist/Atomic/FormElements/ActionAlert/index.js +17 -0
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.interface.js +4 -0
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.js +43 -38
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.scss +20 -10
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.stories.js +81 -0
- package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.test.js +104 -0
- package/dist/Atomic/FormElements/AdvancedStatus/index.js +17 -0
- package/dist/Atomic/FormElements/Calendar/Calendar.js +243 -164
- package/dist/Atomic/FormElements/Calendar/Calendar.props.js +4 -0
- package/dist/Atomic/FormElements/Calendar/Calendar.scss +1 -0
- package/dist/Atomic/FormElements/Calendar/Calendar.stories.js +108 -0
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.interface.js +4 -0
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.js +60 -51
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.scss +25 -15
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.stories.js +100 -0
- package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.test.js +143 -0
- package/dist/Atomic/FormElements/CheckboxInput/index.js +17 -0
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.interface.js +4 -0
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.js +46 -41
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.scss +5 -2
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.stories.js +94 -0
- package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.test.js +177 -0
- package/dist/Atomic/FormElements/CheckboxesLine/index.js +17 -0
- package/dist/Atomic/FormElements/Datepicker/Datepicker.js +410 -308
- package/dist/Atomic/FormElements/Datepicker/Datepicker.stories.js +51 -0
- package/dist/Atomic/FormElements/Datepicker/components/Calendar.js +169 -109
- package/dist/Atomic/FormElements/Dropdown/Dropdown.js +680 -571
- package/dist/Atomic/FormElements/Dropdown/Dropdown.scss +61 -59
- package/dist/Atomic/FormElements/Dropdown/Dropdown.stories.js +596 -0
- package/dist/Atomic/FormElements/Dropdown/components/DropdownLoader.js +28 -15
- package/dist/Atomic/FormElements/DropdownLiveSearch/DropdownLiveSearch.js +498 -397
- package/dist/Atomic/FormElements/DropdownLiveSearch/DropdownLiveSearch.scss +36 -32
- package/dist/Atomic/FormElements/DropdownLiveSearch/DropdownLiveSearch.stories.js +272 -0
- package/dist/Atomic/FormElements/FileLoader/FileLoader.js +103 -70
- package/dist/Atomic/FormElements/FileLoader/FileLoader.scss +0 -2
- package/dist/Atomic/FormElements/FileLoader/FileLoader.stories.js +182 -0
- package/dist/Atomic/FormElements/FileLoader/partial/LoadZone.js +138 -91
- package/dist/Atomic/FormElements/FileLoader/partial/LoadedContent.js +109 -55
- package/dist/Atomic/FormElements/FileLoaderDescription/FileLoaderDescription.js +254 -193
- package/dist/Atomic/FormElements/FileLoaderDescription/FileLoaderDescription.scss +19 -16
- package/dist/Atomic/FormElements/FileLoaderDescription/FileLoaderDescription.stories.js +327 -0
- package/dist/Atomic/FormElements/FileLoaderLocal/FileLoaderLocal.js +156 -143
- package/dist/Atomic/FormElements/FileLoaderLocal/FileLoaderLocal.scss +8 -4
- package/dist/Atomic/FormElements/FileLoaderLocal/FileLoaderLocal.stories.js +186 -0
- package/dist/Atomic/FormElements/FileLoaderLocalGroup/FileLoaderLocalGroup.js +222 -159
- package/dist/Atomic/FormElements/FileLoaderLocalGroup/FileLoaderLocalGroup.stories.js +84 -0
- package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN.js +158 -117
- package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN.stories.js +107 -0
- package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN_old.js +151 -98
- package/dist/Atomic/FormElements/Input/Input.js +340 -337
- package/dist/Atomic/FormElements/Input/Input.scss +1 -1
- package/dist/Atomic/FormElements/Input/Input.stories.js +251 -0
- package/dist/Atomic/FormElements/InputCalendar/InputCalendar.js +156 -112
- package/dist/Atomic/FormElements/InputCalendar/InputCalendar.stories.js +115 -0
- package/dist/Atomic/FormElements/InputColor/InputColor.js +57 -58
- package/dist/Atomic/FormElements/InputColor/InputColor.stories.js +119 -0
- package/dist/Atomic/FormElements/InputCurrency/InputCurrency.interface.js +4 -0
- package/dist/Atomic/FormElements/InputCurrency/InputCurrency.js +189 -125
- package/dist/Atomic/FormElements/InputCurrency/InputCurrency.stories.js +178 -0
- package/dist/Atomic/FormElements/InputCurrency/InputCurrency.test.js +129 -0
- package/dist/Atomic/FormElements/InputCurrency/index.js +16 -0
- package/dist/Atomic/FormElements/InputDateRange/InputDateRange.js +294 -233
- package/dist/Atomic/FormElements/InputDateRange/InputDateRange.scss +1 -2
- package/dist/Atomic/FormElements/InputDateRange/InputDateRange.stories.js +123 -0
- package/dist/Atomic/FormElements/InputDateRange/components/DateInput.js +55 -56
- package/dist/Atomic/FormElements/InputDateRange/components/Datepicker.js +645 -545
- package/dist/Atomic/FormElements/InputDateRange/components/OpenedPart.js +220 -193
- package/dist/Atomic/FormElements/InputDateRange/components/SelectItem.js +33 -31
- package/dist/Atomic/FormElements/InputDateRange/dependencies.js +247 -172
- package/dist/Atomic/FormElements/InputLink/InputLink.js +118 -73
- package/dist/Atomic/FormElements/InputLink/InputLink.stories.js +140 -0
- package/dist/Atomic/FormElements/InputMask/InputCarretPosition.js +47 -38
- package/dist/Atomic/FormElements/InputMask/InputMask.js +947 -1061
- package/dist/Atomic/FormElements/InputMask/InputMask.stories.js +303 -0
- package/dist/Atomic/FormElements/InputMask/config.js +16 -15
- package/dist/Atomic/FormElements/InputMask/functions.js +77 -52
- package/dist/Atomic/FormElements/InputMask2/InputMask2.js +573 -600
- package/dist/Atomic/FormElements/InputMask2/InputMask2.stories.js +314 -0
- package/dist/Atomic/FormElements/InputMask2/config.js +16 -15
- package/dist/Atomic/FormElements/InputMask2/functions.js +77 -52
- package/dist/Atomic/FormElements/InputMask3/InputMask3.js +655 -691
- package/dist/Atomic/FormElements/InputMask3/InputMask3.stories.js +335 -0
- package/dist/Atomic/FormElements/InputMask3/config.js +16 -15
- package/dist/Atomic/FormElements/InputMask3/functions.js +77 -52
- package/dist/Atomic/FormElements/InputWithAction/InputWithAction.js +127 -88
- package/dist/Atomic/FormElements/InputWithAction/InputWithAction.scss +1 -1
- package/dist/Atomic/FormElements/InputWithAction/InputWithAction.stories.js +276 -0
- package/dist/Atomic/FormElements/InputsRow/InputsRow.js +182 -111
- package/dist/Atomic/FormElements/InputsRow/InputsRow.stories.js +56 -0
- package/dist/Atomic/FormElements/Label/Label.interface.js +4 -0
- package/dist/Atomic/FormElements/Label/Label.js +82 -55
- package/dist/Atomic/FormElements/Label/Label.scss +18 -8
- package/dist/Atomic/FormElements/Label/Label.stories.js +47 -0
- package/dist/Atomic/FormElements/Label/Label.test.js +167 -0
- package/dist/Atomic/FormElements/Label/index.js +17 -0
- package/dist/Atomic/FormElements/MobileCalendar/MobileCalendar.js +437 -388
- package/dist/Atomic/FormElements/MobileCalendar/MobileCalendar.scss +3 -3
- package/dist/Atomic/FormElements/MobileCalendar/MobileCalendar.stories.js +172 -0
- package/dist/Atomic/FormElements/MultiSelect/MultiSelect.js +88 -50
- package/dist/Atomic/FormElements/MultiSelect/MultiSelect.stories.js +121 -0
- package/dist/Atomic/FormElements/NumericInput/NumericInput.js +314 -270
- package/dist/Atomic/FormElements/NumericInput/NumericInput.scss +1 -1
- package/dist/Atomic/FormElements/NumericInput/NumericInput.stories.js +184 -0
- package/dist/Atomic/FormElements/RadioGroup/RadioGroup.js +93 -51
- package/dist/Atomic/FormElements/RadioGroup/RadioGroup.stories.js +79 -0
- package/dist/Atomic/FormElements/RadioGroupWithInput/RadioGroupWithInput.js +69 -55
- package/dist/Atomic/FormElements/RadioGroupWithInput/RadioGroupWithInput.stories.js +151 -0
- package/dist/Atomic/FormElements/RadioInput/RadioInput.js +51 -45
- package/dist/Atomic/FormElements/RadioInput/RadioInput.scss +4 -4
- package/dist/Atomic/FormElements/RadioInput/RadioInput.stories.js +67 -0
- package/dist/Atomic/FormElements/RadioRowSwitcher/RadioRowSwitcher.js +53 -40
- package/dist/Atomic/FormElements/RadioRowSwitcher/RadioRowSwitcher.stories.js +116 -0
- package/dist/Atomic/FormElements/RangeCalendar/RangeCalendar.js +169 -120
- package/dist/Atomic/FormElements/RangeCalendar/RangeCalendar.stories.js +107 -0
- package/dist/Atomic/FormElements/RangeInputs/RangeInputs.js +195 -144
- package/dist/Atomic/FormElements/RangeInputs/RangeInputs.stories.js +92 -0
- package/dist/Atomic/FormElements/RangeList/RangeList.js +199 -141
- package/dist/Atomic/FormElements/RangeList/RangeList.scss +2 -2
- package/dist/Atomic/FormElements/RangeList/RangeList.stories.js +169 -0
- package/dist/Atomic/FormElements/RangeList/partial/AnyOuterClass.scss +1 -4
- package/dist/Atomic/FormElements/RangeList/partial/RangeListRow.js +57 -44
- package/dist/Atomic/FormElements/RangeSlider/RangeSlider.js +463 -381
- package/dist/Atomic/FormElements/RangeSlider/RangeSlider.scss +1 -1
- package/dist/Atomic/FormElements/RangeSlider/RangeSlider.stories.js +401 -0
- package/dist/Atomic/FormElements/RangeSlider2/RangeSlider2.js +760 -770
- package/dist/Atomic/FormElements/RangeSlider2/RangeSlider2.scss +9 -9
- package/dist/Atomic/FormElements/RangeSlider2/RangeSlider2.stories.js +314 -0
- package/dist/Atomic/FormElements/SwitchableRow/SwitchableRow.js +36 -31
- package/dist/Atomic/FormElements/SwitchableRow/SwitchableRow.scss +0 -2
- package/dist/Atomic/FormElements/SwitchableRow/SwitchableRow.stories.js +137 -0
- package/dist/Atomic/FormElements/SwitchableRow/partial/AnyOuterClass.scss +1 -1
- package/dist/Atomic/FormElements/Switcher/Switcher.js +52 -44
- package/dist/Atomic/FormElements/Switcher/Switcher.scss +3 -3
- package/dist/Atomic/FormElements/Switcher/Switcher.stories.js +91 -0
- package/dist/Atomic/FormElements/SwitcherCheckbox/SwitcherCheckbox.js +43 -44
- package/dist/Atomic/FormElements/SwitcherCheckbox/SwitcherCheckbox.scss +0 -2
- package/dist/Atomic/FormElements/SwitcherCheckbox/SwitcherCheckbox.stories.js +104 -0
- package/dist/Atomic/FormElements/SwitcherHide/SwitcherHide.js +37 -36
- package/dist/Atomic/FormElements/SwitcherHide/SwitcherHide.scss +0 -2
- package/dist/Atomic/FormElements/SwitcherHide/SwitcherHide.stories.js +96 -0
- package/dist/Atomic/FormElements/SwitcherRadio/SwitcherRadio.js +93 -57
- package/dist/Atomic/FormElements/SwitcherRadio/SwitcherRadio.scss +0 -2
- package/dist/Atomic/FormElements/SwitcherRadio/SwitcherRadio.stories.js +140 -0
- package/dist/Atomic/FormElements/SwitcherRange/SwitcherRange.js +86 -53
- package/dist/Atomic/FormElements/SwitcherRange/SwitcherRange.scss +0 -2
- package/dist/Atomic/FormElements/SwitcherRange/SwitcherRange.stories.js +112 -0
- package/dist/Atomic/FormElements/SwitcherRangeList/SwitcherRangeList.js +46 -54
- package/dist/Atomic/FormElements/SwitcherRangeList/SwitcherRangeList.stories.js +145 -0
- package/dist/Atomic/FormElements/SwitcherRangeList/partial/AnyOuterClass.scss +1 -1
- package/dist/Atomic/FormElements/SwitcherTagsDropdown/SwitcherTagsDropdown.js +172 -109
- package/dist/Atomic/FormElements/SwitcherTagsDropdown/SwitcherTagsDropdown.scss +4 -6
- package/dist/Atomic/FormElements/SwitcherTagsDropdown/SwitcherTagsDropdown.stories.js +158 -0
- package/dist/Atomic/FormElements/SwitcherTagsDropdown/partial/States.js +209 -154
- package/dist/Atomic/FormElements/SwitcherTextarea/SwitcherTextarea.js +59 -56
- package/dist/Atomic/FormElements/SwitcherTextarea/SwitcherTextarea.scss +2 -2
- package/dist/Atomic/FormElements/SwitcherTextarea/SwitcherTextarea.stories.js +101 -0
- package/dist/Atomic/FormElements/TagListToDropdown/TagListToDropdown.js +140 -113
- package/dist/Atomic/FormElements/TagListToDropdown/TagListToDropdown.stories.js +131 -0
- package/dist/Atomic/FormElements/TagsDropdown/TagsDropdown.js +1035 -962
- package/dist/Atomic/FormElements/TagsDropdown/TagsDropdown.scss +155 -119
- package/dist/Atomic/FormElements/TagsDropdown/TagsDropdown.stories.js +357 -0
- package/dist/Atomic/FormElements/Text/Text.js +88 -97
- package/dist/Atomic/FormElements/Text/Text.stories.js +80 -0
- package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.js +44 -35
- package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.scss +8 -8
- package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.stories.js +106 -0
- package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.test.js +93 -0
- package/dist/Atomic/FormElements/Textarea/Textarea.js +102 -64
- package/dist/Atomic/FormElements/Textarea/Textarea.scss +4 -8
- package/dist/Atomic/FormElements/Textarea/Textarea.stories.js +103 -0
- package/dist/Atomic/FormElements/TieredCheckboxes/TieredCheckboxes.js +172 -136
- package/dist/Atomic/FormElements/TieredCheckboxes/TieredCheckboxes.stories.js +174 -0
- package/dist/Atomic/FormElements/TieredCheckboxes/partial/AccordionWithCheckbox.js +48 -50
- package/dist/Atomic/FormElements/TimeRange/TimeRange.interface.js +4 -0
- package/dist/Atomic/FormElements/TimeRange/TimeRange.js +114 -63
- package/dist/Atomic/FormElements/TimeRange/TimeRange.scss +9 -3
- package/dist/Atomic/FormElements/TimeRange/TimeRange.stories.js +40 -0
- package/dist/Atomic/FormElements/TimeRange/TimeRange.test.js +163 -0
- package/dist/Atomic/FormElements/TimeRange/index.js +17 -0
- package/dist/Atomic/FormElements/UserContacts/UserContact.test.js +381 -0
- package/dist/Atomic/FormElements/UserContacts/UserContacts.interface.js +4 -0
- package/dist/Atomic/FormElements/UserContacts/UserContacts.js +179 -123
- package/dist/Atomic/FormElements/UserContacts/UserContacts.scss +10 -5
- package/dist/Atomic/FormElements/UserContacts/UserContacts.stories.js +74 -0
- package/dist/Atomic/FormElements/UserContacts/index.js +17 -0
- package/dist/Atomic/FormElements/UserContacts/partial/AnyOuterClass.scss +1 -1
- package/dist/Atomic/FormElements/VariantsListRadio/VariantsListRadio.js +101 -65
- package/dist/Atomic/FormElements/VariantsListRadio/VariantsListRadio.scss +4 -12
- package/dist/Atomic/FormElements/VariantsListRadio/VariantsListRadio.stories.js +193 -0
- package/dist/Atomic/FormElements/VariantsListRadio/partials/VariantsListRadioItem.js +80 -71
- package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.js +79 -64
- package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.scss +1 -3
- package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.stories.js +147 -0
- package/dist/Atomic/FormElements/WidgetPseudoTable/partial/AnyOuterClass.scss +1 -1
- package/dist/Atomic/FormElements/WidgetPseudoTable/partial/constructor.js +42 -34
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.js +102 -83
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.scss +1 -3
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.stories.js +151 -0
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/partial/AnyOuterClass.scss +1 -1
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/partial/constructor.js +42 -35
- package/dist/Atomic/Layout/Header/Header.js +148 -80
- package/dist/Atomic/Layout/Header/Header.scss +1 -1
- package/dist/Atomic/Layout/Header/Header.stories.js +71 -0
- package/dist/Atomic/Layout/MainMenu/MainMenu.js +213 -133
- package/dist/Atomic/Layout/MainMenu/MainMenu.scss +9 -9
- package/dist/Atomic/Layout/MainMenu/MainMenu.stories.js +115 -0
- package/dist/Atomic/Layout/Spinner/Spinner.interface.js +4 -0
- package/dist/Atomic/Layout/Spinner/Spinner.js +39 -22
- package/dist/Atomic/Layout/Spinner/Spinner.scss +32 -16
- package/dist/Atomic/Layout/Spinner/Spinner.stories.js +46 -0
- package/dist/Atomic/Layout/Spinner/Spinner.test.js +54 -0
- package/dist/Atomic/Layout/Spinner/index.js +17 -0
- package/dist/Atomic/UI/Accordion/Accordion.interface.js +4 -0
- package/dist/Atomic/UI/Accordion/Accordion.js +102 -52
- package/dist/Atomic/UI/Accordion/Accordion.scss +25 -14
- package/dist/Atomic/UI/Accordion/Accordion.stories.js +168 -0
- package/dist/Atomic/UI/Accordion/Accordion.test.js +54 -0
- package/dist/Atomic/UI/Accordion/AccordionItem.js +170 -104
- package/dist/Atomic/UI/Accordion/AccordionItem.test.js +50 -0
- package/dist/Atomic/UI/Accordion/index.js +17 -0
- package/dist/Atomic/UI/AccordionTable/AccordionTable.js +251 -173
- package/dist/Atomic/UI/AccordionTable/AccordionTable.stories.js +268 -0
- package/dist/Atomic/UI/AccordionText/AccordionText.js +105 -54
- package/dist/Atomic/UI/AccordionText/AccordionText.scss +22 -9
- package/dist/Atomic/UI/AccordionText/AccordionText.stories.js +125 -0
- package/dist/Atomic/UI/AdvancedTag/AdvTag.js +207 -136
- package/dist/Atomic/UI/AdvancedTag/AdvancedTags.js +100 -46
- package/dist/Atomic/UI/AdvancedTag/AdvancedTags.scss +2 -2
- package/dist/Atomic/UI/AdvancedTag/AdvancedTags.stories.js +115 -0
- package/dist/Atomic/UI/Alert/Alert.js +116 -63
- package/dist/Atomic/UI/Alert/Alert.scss +2 -2
- package/dist/Atomic/UI/Alert/Alert.stories.js +81 -0
- package/dist/Atomic/UI/Arrow/Arrow.js +163 -110
- package/dist/Atomic/UI/Arrow/Arrow.stories.js +62 -0
- package/dist/Atomic/UI/Box/Box.js +37 -37
- package/dist/Atomic/UI/Box/Box.scss +11 -11
- package/dist/Atomic/UI/Box/Box.stories.js +114 -0
- package/dist/Atomic/UI/Button/Button.js +43 -42
- package/dist/Atomic/UI/Button/Button.stories.js +105 -0
- package/dist/Atomic/UI/Button/Button.test.js +147 -0
- package/dist/Atomic/UI/ButtonsBar/ButtonsBar.js +61 -67
- package/dist/Atomic/UI/ButtonsBar/ButtonsBar.stories.js +129 -0
- package/dist/Atomic/UI/Chart/Chart.js +170 -98
- package/dist/Atomic/UI/Chart/Chart.stories.js +93 -0
- package/dist/Atomic/UI/Chart/partial/Chart.constants.js +142 -74
- package/dist/Atomic/UI/Chart/partial/ChartTypeSwitcherIcon/ChartTypeSwitcherIcon.js +91 -77
- package/dist/Atomic/UI/Chart/partial/datasetSetters.js +120 -120
- package/dist/Atomic/UI/Chart/partial/optionsConstructor.js +311 -293
- package/dist/Atomic/UI/Chart/partial/optionsSetters.js +54 -42
- package/dist/Atomic/UI/Chart/partial/utils.js +55 -35
- package/dist/Atomic/UI/CircleProgressBar/CircleProgressBar.js +145 -88
- package/dist/Atomic/UI/CircleProgressBar/CircleProgressBar.stories.js +85 -0
- package/dist/Atomic/UI/DateTime/DateTime.js +89 -37
- package/dist/Atomic/UI/DateTime/DateTime.scss +2 -2
- package/dist/Atomic/UI/DateTime/DateTime.stories.js +50 -0
- package/dist/Atomic/UI/DateTime/partial/AnyOuterClass.scss +1 -1
- package/dist/Atomic/UI/DebugContainer/DebugContainer.js +93 -33
- package/dist/Atomic/UI/DebugContainer/useDebugContainer.js +66 -18
- package/dist/Atomic/UI/DoubleString/DoubleString.js +134 -78
- package/dist/Atomic/UI/DoubleString/DoubleString.scss +6 -4
- package/dist/Atomic/UI/DoubleString/DoubleString.stories.js +79 -0
- package/dist/Atomic/UI/DoubleString/partial/AnyOuterClass.scss +1 -1
- package/dist/Atomic/UI/DynamicIcon/DynamicIcon.interface.js +4 -0
- package/dist/Atomic/UI/DynamicIcon/DynamicIcon.js +65 -22
- package/dist/Atomic/UI/DynamicIcon/DynamicIcon.stories.js +98 -0
- package/dist/Atomic/UI/DynamicIcon/DynamicIcon.test.js +51 -0
- package/dist/Atomic/UI/DynamicIcon/index.js +17 -0
- package/dist/Atomic/UI/ExampleChartIntegration/ExampleChartIntegration.js +250 -172
- package/dist/Atomic/UI/ExampleChartIntegration/ExampleChartIntegration.stories.js +98 -0
- package/dist/Atomic/UI/ExampleChartIntegration/partial/AnyOuterClass.scss +1 -1
- package/dist/Atomic/UI/ExampleChartIntegration/partial/utils.js +109 -84
- package/dist/Atomic/UI/Hint/Hint.js +243 -204
- package/dist/Atomic/UI/Hint/Hint.scss +5 -3
- package/dist/Atomic/UI/Hint/Hint.stories.js +101 -0
- package/dist/Atomic/UI/Hint/index.js +16 -0
- package/dist/Atomic/UI/Hint/partials/_utils.js +54 -44
- package/dist/Atomic/UI/Modal/Modal.interface.js +4 -0
- package/dist/Atomic/UI/Modal/Modal.js +171 -172
- package/dist/Atomic/UI/Modal/Modal.scss +91 -69
- package/dist/Atomic/UI/Modal/Modal.stories.js +370 -0
- package/dist/Atomic/UI/Modal/ModalHOC.js +92 -38
- package/dist/Atomic/UI/Modal/ModalHOC.stories.js +191 -0
- package/dist/Atomic/UI/Modal/ModalHOC.test.js +187 -0
- package/dist/Atomic/UI/Modal/ModalMobile.scss +24 -14
- package/dist/Atomic/UI/Modal/index.js +26 -0
- package/dist/Atomic/UI/Modal/partials/ModalFooter.js +68 -18
- package/dist/Atomic/UI/Modal/partials/ModalFooter.test.js +118 -0
- package/dist/Atomic/UI/Modal/partials/ModalTitle.js +107 -38
- package/dist/Atomic/UI/Modal/partials/ModalTitle.test.js +126 -0
- package/dist/Atomic/UI/Modal/partials/useMobileModal.js +128 -163
- package/dist/Atomic/UI/Modal/partials/useMobileModal.test.js +133 -0
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.interface.js +4 -0
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.js +117 -64
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.scss +163 -25
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.stories.js +513 -0
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.test.js +84 -0
- package/dist/Atomic/UI/MonoAccordion/index.js +17 -0
- package/dist/Atomic/UI/NavLine/NavLine.interface.js +4 -0
- package/dist/Atomic/UI/NavLine/NavLine.js +306 -279
- package/dist/Atomic/UI/NavLine/NavLine.scss +195 -155
- package/dist/Atomic/UI/NavLine/NavLine.stories.js +434 -0
- package/dist/Atomic/UI/NavLine/NavLine.test.js +311 -0
- package/dist/Atomic/UI/NavLine/index.js +17 -0
- package/dist/Atomic/UI/PageTitle/PageTitle.interface.js +4 -0
- package/dist/Atomic/UI/PageTitle/PageTitle.js +73 -52
- package/dist/Atomic/UI/PageTitle/PageTitle.scss +52 -14
- package/dist/Atomic/UI/PageTitle/PageTitle.stories.js +62 -0
- package/dist/Atomic/UI/PageTitle/PageTitle.test.js +181 -0
- package/dist/Atomic/UI/PageTitle/index.js +17 -0
- package/dist/Atomic/UI/PieChart/PieChar.interface.js +4 -0
- package/dist/Atomic/UI/PieChart/PieChart.js +105 -42
- package/dist/Atomic/UI/PieChart/PieChart.scss +86 -11
- package/dist/Atomic/UI/PieChart/PieChart.stories.js +82 -0
- package/dist/Atomic/UI/PieChart/PieChart.test.js +142 -0
- package/dist/Atomic/UI/PieChart/index.js +26 -0
- package/dist/Atomic/UI/Price/Price.interface.js +4 -0
- package/dist/Atomic/UI/Price/Price.js +27 -20
- package/dist/Atomic/UI/Price/Price.stories.js +52 -0
- package/dist/Atomic/UI/Price/Price.test.js +83 -0
- package/dist/Atomic/UI/Price/index.js +17 -0
- package/dist/Atomic/UI/PriceRange/PriceRange.interface.js +4 -0
- package/dist/Atomic/UI/PriceRange/PriceRange.js +40 -18
- package/dist/Atomic/UI/PriceRange/PriceRange.stories.js +51 -0
- package/dist/Atomic/UI/PriceRange/PriceRange.test.js +72 -0
- package/dist/Atomic/UI/PriceRange/index.js +17 -0
- package/dist/Atomic/UI/ProgressLine/ProgressLine.interface.js +4 -0
- package/dist/Atomic/UI/ProgressLine/ProgressLine.js +92 -73
- package/dist/Atomic/UI/ProgressLine/ProgressLine.scss +85 -71
- package/dist/Atomic/UI/ProgressLine/ProgressLine.stories.js +163 -0
- package/dist/Atomic/UI/ProgressLine/ProgressLine.test.js +60 -0
- package/dist/Atomic/UI/ProgressLine/index.js +17 -0
- package/dist/Atomic/UI/Status/Status.interface.js +4 -0
- package/dist/Atomic/UI/Status/Status.js +62 -51
- package/dist/Atomic/UI/Status/Status.scss +48 -29
- package/dist/Atomic/UI/Status/Status.stories.js +79 -0
- package/dist/Atomic/UI/Status/Status.test.js +103 -0
- package/dist/Atomic/UI/Status/index.js +17 -0
- package/dist/Atomic/UI/Table/Partials/TdCell.js +126 -88
- package/dist/Atomic/UI/Table/Partials/TdHeader.js +58 -39
- package/dist/Atomic/UI/Table/Partials/TdRow.js +124 -73
- package/dist/Atomic/UI/Table/Partials/TdTitle.js +113 -45
- package/dist/Atomic/UI/Table/Table.js +61 -43
- package/dist/Atomic/UI/Table/Table.scss +0 -3
- package/dist/Atomic/UI/Table/Table.stories.js +250 -0
- package/dist/Atomic/UI/Table/TdTypes/TdActions.js +108 -64
- package/dist/Atomic/UI/Table/TdTypes/TdPriority.js +44 -31
- package/dist/Atomic/UI/Table/TdTypes/TdRange.js +24 -10
- package/dist/Atomic/UI/Table/TdTypes/TdWeight.js +59 -48
- package/dist/Atomic/UI/Tag/Tag.interface.js +4 -0
- package/dist/Atomic/UI/Tag/Tag.js +157 -115
- package/dist/Atomic/UI/Tag/Tag.scss +102 -48
- package/dist/Atomic/UI/Tag/Tag.stories.js +108 -0
- package/dist/Atomic/UI/Tag/Tag.test.js +75 -0
- package/dist/Atomic/UI/Tag/index.js +17 -0
- package/dist/Atomic/UI/TagList/TagList.js +223 -184
- package/dist/Atomic/UI/TagList/TagList.scss +13 -9
- package/dist/Atomic/UI/TagList/TagList.stories.js +169 -0
- package/dist/Atomic/UI/UserBox/UserBox.interface.js +4 -0
- package/dist/Atomic/UI/UserBox/UserBox.js +80 -56
- package/dist/Atomic/UI/UserBox/UserBox.scss +45 -21
- package/dist/Atomic/UI/UserBox/UserBox.stories.js +57 -0
- package/dist/Atomic/UI/UserBox/UserBox.test.js +136 -0
- package/dist/Atomic/UI/UserBox/index.js +17 -0
- package/dist/Atomic/UI/WizardStepper/WizardStepper.stories.js +70 -0
- package/dist/Atomic/UI/WizardStepper/constructor.js +127 -89
- package/dist/Atomic/UI/WizardStepper/index.js +14 -6
- package/dist/Atomic/UI/WizardStepper/ui/StateIcon/StateIcon.js +53 -51
- package/dist/Atomic/UI/WizardStepper/ui/StateIcon/StateIcon.scss +11 -7
- package/dist/Atomic/UI/WizardStepper/ui/StateIcon/index.js +9 -5
- package/dist/Atomic/UI/WizardStepper/ui/StepRow/StepRow.js +84 -70
- package/dist/Atomic/UI/WizardStepper/ui/StepRow/StepRow.scss +13 -7
- package/dist/Atomic/UI/WizardStepper/ui/StepRow/index.js +14 -6
- package/dist/Atomic/UI/WizardStepper/ui/StepWrapper/StepWrapper.js +50 -45
- package/dist/Atomic/UI/WizardStepper/ui/StepWrapper/StepWrapper.scss +24 -18
- package/dist/Atomic/UI/WizardStepper/ui/StepWrapper/index.js +14 -6
- package/dist/Atomic/UI/WizardStepper/ui/icons.js +138 -106
- package/dist/Atomic/UI/WizardStepper/ui/index.js +14 -6
- package/dist/Classes/AbortableFetch.js +394 -375
- package/dist/Classes/AnimatedHandler.js +31 -44
- package/dist/Classes/RESTAPI/index.js +131 -174
- package/dist/Classes/RESTAPI/partials/AbortableFetch.js +399 -382
- package/dist/Classes/RESTAPI/partials/ApiBase.js +30 -30
- package/dist/Classes/RESTAPI/partials/ApiRequestCreators.js +107 -94
- package/dist/Classes/RESTAPI/partials/ApiUtils.js +144 -166
- package/dist/Classes/RESTAPI/partials/CredentialsProcessing.js +180 -205
- package/dist/Classes/RESTAPI/partials/Utils.js +80 -83
- package/dist/Classes/RESTAPI/partials/_outerDependencies.js +16 -8
- package/dist/Classes/RESTAPI/partials/_utils.js +139 -134
- package/dist/Constants/index.constants.js +102 -22
- package/dist/Functions/Portal.js +67 -25
- package/dist/Functions/animatingFunctions/getAnimatedHandler.js +1 -1
- package/dist/Functions/customEventListener.js +48 -50
- package/dist/Functions/dateTime.js +130 -177
- package/dist/Functions/fieldValueFormatters.js +274 -350
- package/dist/Functions/hooks/useFormFieldsChangesManager.js +125 -100
- package/dist/Functions/locale/createTranslator.js +29 -29
- package/dist/Functions/operations.js +129 -102
- package/dist/Functions/presets/inputMaskPresets.js +88 -99
- package/dist/Functions/presets/inputPresets.js +41 -35
- package/dist/Functions/presets/mobileKeyboardTypesPresets.js +30 -49
- package/dist/Functions/schemas.js +78 -20
- package/dist/Functions/useBodyScrollLock.js +21 -15
- package/dist/Functions/useClickOutside.js +21 -16
- package/dist/Functions/useDebounce.js +62 -21
- package/dist/Functions/useFieldFocus.js +83 -84
- package/dist/Functions/useFormTools/form-drivers/ArrayWithObjects.js +39 -47
- package/dist/Functions/useFormTools/form-drivers/ObjectWithIterableObjects.js +132 -137
- package/dist/Functions/useFormTools/form-drivers/ObjectWithNamedKeyObjects.js +63 -74
- package/dist/Functions/useFormTools/functions/General.js +117 -129
- package/dist/Functions/useFormTools/functions/RenderFields.js +75 -85
- package/dist/Functions/useFormTools/functions/usePrevious.js +16 -10
- package/dist/Functions/useFormTools/index.js +647 -720
- package/dist/Functions/useInputHighlightError.js +104 -53
- package/dist/Functions/useIsMobile/index.js +17 -0
- package/dist/Functions/useIsMobile/useIsMobile.js +33 -0
- package/dist/Functions/useIsMobile/useIsMobile.test.js +104 -0
- package/dist/Functions/useKeyPress/useHandleKeyPress.js +40 -33
- package/dist/Functions/useKeyPress/useHandleKeyPress.test.js +96 -0
- package/dist/Functions/useKeyPress/useKeyPress.js +48 -39
- package/dist/Functions/useKeyPress/useKeyPress.test.js +87 -0
- package/dist/Functions/useLocalStorage.js +38 -31
- package/dist/Functions/useLocationParams.js +31 -25
- package/dist/Functions/useMediaQuery.js +14 -10
- package/dist/Functions/useMetaInfo.js +45 -35
- package/dist/Functions/useMouseUpOutside.js +21 -15
- package/dist/Functions/useOnlineStatus.js +25 -21
- package/dist/Functions/usePasswordChecker.js +183 -111
- package/dist/Functions/usePrevious.js +16 -10
- package/dist/Functions/useResize.js +32 -30
- package/dist/Functions/useScrollTo.js +26 -17
- package/dist/Functions/useToggle.js +20 -16
- package/dist/Functions/utils.js +493 -472
- package/dist/Molecular/CustomIcons/components/AffiliateNetworks.js +75 -28
- package/dist/Molecular/CustomIcons/components/AlertCircle.js +77 -28
- package/dist/Molecular/CustomIcons/components/AppStore.js +84 -32
- package/dist/Molecular/CustomIcons/components/Arrow.js +93 -38
- package/dist/Molecular/CustomIcons/components/ArrowDown.js +63 -20
- package/dist/Molecular/CustomIcons/components/ArrowLeft.js +71 -23
- package/dist/Molecular/CustomIcons/components/ArrowRight.js +71 -23
- package/dist/Molecular/CustomIcons/components/ArrowUp.js +63 -20
- package/dist/Molecular/CustomIcons/components/Bell.js +61 -18
- package/dist/Molecular/CustomIcons/components/Button.js +61 -18
- package/dist/Molecular/CustomIcons/components/Campaigns.js +62 -19
- package/dist/Molecular/CustomIcons/components/Check.js +62 -19
- package/dist/Molecular/CustomIcons/components/Check2.js +61 -18
- package/dist/Molecular/CustomIcons/components/ChevronDown.js +61 -18
- package/dist/Molecular/CustomIcons/components/ChevronDownDisabled.js +61 -18
- package/dist/Molecular/CustomIcons/components/ChevronLeft.js +61 -18
- package/dist/Molecular/CustomIcons/components/ChevronRight.js +61 -18
- package/dist/Molecular/CustomIcons/components/ChevronUp.js +61 -18
- package/dist/Molecular/CustomIcons/components/ChevronUpDown.js +81 -33
- package/dist/Molecular/CustomIcons/components/Close.js +64 -20
- package/dist/Molecular/CustomIcons/components/ColumnsOrder.js +95 -45
- package/dist/Molecular/CustomIcons/components/Delete.js +62 -19
- package/dist/Molecular/CustomIcons/components/Edit.js +61 -18
- package/dist/Molecular/CustomIcons/components/Email.js +87 -36
- package/dist/Molecular/CustomIcons/components/FinturfLogo.js +82 -26
- package/dist/Molecular/CustomIcons/components/FinturfLogo2.js +83 -34
- package/dist/Molecular/CustomIcons/components/Flows.js +61 -18
- package/dist/Molecular/CustomIcons/components/Gift.js +71 -23
- package/dist/Molecular/CustomIcons/components/GoogleAuth.js +84 -32
- package/dist/Molecular/CustomIcons/components/GooglePlay.js +84 -32
- package/dist/Molecular/CustomIcons/components/HelpCircle.js +67 -21
- package/dist/Molecular/CustomIcons/components/HelpCircle2.js +68 -22
- package/dist/Molecular/CustomIcons/components/HelpCircleFilled.js +67 -21
- package/dist/Molecular/CustomIcons/components/Home.js +67 -21
- package/dist/Molecular/CustomIcons/components/Home2.js +70 -24
- package/dist/Molecular/CustomIcons/components/Key.js +69 -26
- package/dist/Molecular/CustomIcons/components/Landers.js +68 -22
- package/dist/Molecular/CustomIcons/components/Lock.js +61 -18
- package/dist/Molecular/CustomIcons/components/Mail.js +75 -26
- package/dist/Molecular/CustomIcons/components/Mastercard.js +128 -68
- package/dist/Molecular/CustomIcons/components/Minus.js +79 -31
- package/dist/Molecular/CustomIcons/components/Offers.js +62 -19
- package/dist/Molecular/CustomIcons/components/Pause.js +79 -31
- package/dist/Molecular/CustomIcons/components/PayPal.js +96 -45
- package/dist/Molecular/CustomIcons/components/PayPalLightLarge.js +81 -32
- package/dist/Molecular/CustomIcons/components/Phone.js +81 -33
- package/dist/Molecular/CustomIcons/components/Play.js +79 -31
- package/dist/Molecular/CustomIcons/components/Plus.js +79 -31
- package/dist/Molecular/CustomIcons/components/Profile.js +69 -23
- package/dist/Molecular/CustomIcons/components/QRCode.js +85 -33
- package/dist/Molecular/CustomIcons/components/Rectangle.js +61 -18
- package/dist/Molecular/CustomIcons/components/Revert.js +67 -21
- package/dist/Molecular/CustomIcons/components/Star.js +60 -17
- package/dist/Molecular/CustomIcons/components/Star2.js +62 -19
- package/dist/Molecular/CustomIcons/components/TrafficSources.js +68 -21
- package/dist/Molecular/CustomIcons/components/Trash.js +61 -18
- package/dist/Molecular/CustomIcons/components/TrashRed.js +61 -18
- package/dist/Molecular/CustomIcons/components/Triggers.js +61 -18
- package/dist/Molecular/CustomIcons/components/User.js +71 -23
- package/dist/Molecular/CustomIcons/components/Visa.js +88 -34
- package/dist/Molecular/CustomIcons/components/X.js +61 -18
- package/dist/Molecular/CustomIcons/index.js +76 -674
- package/dist/Molecular/FormElement/FormElement.js +44 -41
- package/dist/Molecular/FormElement/FormElement.stories.js +92 -0
- package/dist/Molecular/FormWithDependOn/FormWithDependOn.js +179 -161
- package/dist/Molecular/FormWithDependOn/FormWithDependOn.stories.js +301 -0
- package/dist/Molecular/FormWithDependOn/partials/_utils.js +49 -60
- package/dist/Molecular/InputAddress/InputAddress.js +496 -439
- package/dist/Molecular/InputAddress/InputAddress.scss +14 -16
- package/dist/Molecular/InputAddress/InputAddress.stories.js +541 -0
- package/dist/Molecular/InputPassword/InputPassword.js +99 -48
- package/dist/Molecular/InputPassword/InputPassword.stories.js +86 -0
- package/dist/index.js +11 -8
- package/dist/scss/_fonts.scss +48 -60
- package/dist/scss/_mixins.scss +2 -2
- package/dist/scss/_vars.scss +4 -5
- package/dist/scss/main.scss +5 -4
- package/dist/types/base.interface.js +4 -0
- package/dist/types/base.types.js +4 -0
- package/package.json +17 -21
- package/dist/Atomic/UI/Hint/partial/_utils.js +0 -52
- package/dist/Atomic/UI/NavLine/Tabs.js +0 -115
- package/dist/Functions/useIsMobile.js +0 -26
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.MASK_PRESETS = void 0;
|
|
7
1
|
/**
|
|
8
2
|
* @param type: 'inputMask',
|
|
9
3
|
* @param maskPattern: 'DD.DD.DDDD',
|
|
@@ -14,19 +8,27 @@ exports.MASK_PRESETS = void 0;
|
|
|
14
8
|
* @param showErrors: false,
|
|
15
9
|
* @param autocomplete: 'bday',
|
|
16
10
|
* @param focusSelector: 'input',
|
|
17
|
-
*/
|
|
11
|
+
*/ "use strict";
|
|
12
|
+
Object.defineProperty(exports, "__esModule", {
|
|
13
|
+
value: true
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "MASK_PRESETS", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function() {
|
|
18
|
+
return MASK_PRESETS;
|
|
19
|
+
}
|
|
20
|
+
});
|
|
18
21
|
const DATE_PRESET = {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
type: "inputMask",
|
|
23
|
+
maskPattern: "DD.DD.DDDD",
|
|
24
|
+
maskPatternPlaceholder: "MM.DD.YYYY",
|
|
25
|
+
usePatternPlaceholder: true,
|
|
26
|
+
isNumericMobileKeyboard: true,
|
|
27
|
+
blinkErrors: true,
|
|
28
|
+
showErrors: false,
|
|
29
|
+
autocomplete: "bday",
|
|
30
|
+
focusSelector: "input"
|
|
28
31
|
};
|
|
29
|
-
|
|
30
32
|
/**
|
|
31
33
|
* @param type: 'inputMask',
|
|
32
34
|
* @param maskPattern: 'DDDDD',
|
|
@@ -37,19 +39,17 @@ const DATE_PRESET = {
|
|
|
37
39
|
* @param focusSelector: 'input',
|
|
38
40
|
* @param autocomplete: 'postal-code',
|
|
39
41
|
* @param rules: 'fieldZip'
|
|
40
|
-
*/
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
rules: "fieldZip"
|
|
42
|
+
*/ const ZIP_PRESET = {
|
|
43
|
+
type: "inputMask",
|
|
44
|
+
focusSelector: "input",
|
|
45
|
+
maskPattern: "DDDDD",
|
|
46
|
+
maskPlaceholder: "X",
|
|
47
|
+
isNumericMobileKeyboard: true,
|
|
48
|
+
blinkErrors: true,
|
|
49
|
+
showErrors: false,
|
|
50
|
+
autocomplete: "postal-code",
|
|
51
|
+
rules: "fieldZip"
|
|
51
52
|
};
|
|
52
|
-
|
|
53
53
|
/**
|
|
54
54
|
* @param type: 'inputMask',
|
|
55
55
|
* @param maskPattern: 'DDDDDDDDD',
|
|
@@ -58,17 +58,15 @@ const ZIP_PRESET = {
|
|
|
58
58
|
* @param blinkErrors: true,
|
|
59
59
|
* @param showErrors: false,
|
|
60
60
|
* @param focusSelector: 'input',
|
|
61
|
-
*/
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
showErrors: false
|
|
61
|
+
*/ const SSN_PRESET = {
|
|
62
|
+
type: "inputMask",
|
|
63
|
+
maskPattern: "DDDDDDDDD",
|
|
64
|
+
maskPlaceholder: "X",
|
|
65
|
+
focusSelector: "input",
|
|
66
|
+
isNumericMobileKeyboard: true,
|
|
67
|
+
blinkErrors: true,
|
|
68
|
+
showErrors: false
|
|
70
69
|
};
|
|
71
|
-
|
|
72
70
|
/**
|
|
73
71
|
* @param type: 'inputMask',
|
|
74
72
|
* @param maskPattern: 'DDD-DDD-DDDD',
|
|
@@ -78,19 +76,17 @@ const SSN_PRESET = {
|
|
|
78
76
|
* @param showErrors: false,
|
|
79
77
|
* @param focusSelector: 'input',
|
|
80
78
|
* @param autocomplete: 'tel-national',
|
|
81
|
-
*/
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
autocomplete: "tel-national"
|
|
79
|
+
*/ const MOBILE_PHONE_PRESET = {
|
|
80
|
+
type: "inputMask",
|
|
81
|
+
// maskPattern: 'DDD-DDD-DDDD',
|
|
82
|
+
maskPattern: "(DDD) DDD-DDDD",
|
|
83
|
+
maskPlaceholder: "X",
|
|
84
|
+
focusSelector: "input",
|
|
85
|
+
isNumericMobileKeyboard: true,
|
|
86
|
+
blinkErrors: true,
|
|
87
|
+
showErrors: false,
|
|
88
|
+
autocomplete: "tel-national"
|
|
92
89
|
};
|
|
93
|
-
|
|
94
90
|
/**
|
|
95
91
|
* @param type: 'inputMask3',
|
|
96
92
|
* @param maskPattern: 'DDDD',
|
|
@@ -98,17 +94,15 @@ const MOBILE_PHONE_PRESET = {
|
|
|
98
94
|
* @param isNumericMobileKeyboard: true,
|
|
99
95
|
* @param blinkErrors: true,
|
|
100
96
|
* @param showErrors: false,
|
|
101
|
-
*/
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
showErrors: false
|
|
97
|
+
*/ const SHORT_SSN_PRESET = {
|
|
98
|
+
type: "inputMask3",
|
|
99
|
+
maskPattern: "DDDD",
|
|
100
|
+
maskPlaceholder: "X",
|
|
101
|
+
focusSelector: "input",
|
|
102
|
+
isNumericMobileKeyboard: true,
|
|
103
|
+
blinkErrors: true,
|
|
104
|
+
showErrors: false
|
|
110
105
|
};
|
|
111
|
-
|
|
112
106
|
/**
|
|
113
107
|
* @param type: 'inputMask',
|
|
114
108
|
* @param maskPattern: 'DDDDDDDDD',
|
|
@@ -116,16 +110,14 @@ const SHORT_SSN_PRESET = {
|
|
|
116
110
|
* @param isNumericMobileKeyboard: true,
|
|
117
111
|
* @param blinkErrors: true,
|
|
118
112
|
* @param showErrors: false,
|
|
119
|
-
*/
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
showErrors: false
|
|
113
|
+
*/ const ABA_PRESET = {
|
|
114
|
+
type: "inputMask",
|
|
115
|
+
maskPattern: "DDDDDDDDD",
|
|
116
|
+
maskPlaceholder: "X",
|
|
117
|
+
isNumericMobileKeyboard: true,
|
|
118
|
+
blinkErrors: true,
|
|
119
|
+
showErrors: false
|
|
127
120
|
};
|
|
128
|
-
|
|
129
121
|
/**
|
|
130
122
|
* @param type: 'inputMask',
|
|
131
123
|
* @param maskPattern: 'MM/YY',
|
|
@@ -135,18 +127,16 @@ const ABA_PRESET = {
|
|
|
135
127
|
* @param blinkErrors: true,
|
|
136
128
|
* @param showErrors: false,
|
|
137
129
|
* @param focusSelector: 'input',
|
|
138
|
-
*/
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
focusSelector: "input"
|
|
130
|
+
*/ const CC_EXPIRATION_DATE = {
|
|
131
|
+
type: "inputMask",
|
|
132
|
+
maskPattern: "MM/YY",
|
|
133
|
+
maskPatternPlaceholder: "MM/YY",
|
|
134
|
+
usePatternPlaceholder: true,
|
|
135
|
+
isNumericMobileKeyboard: true,
|
|
136
|
+
blinkErrors: true,
|
|
137
|
+
showErrors: false,
|
|
138
|
+
focusSelector: "input"
|
|
148
139
|
};
|
|
149
|
-
|
|
150
140
|
/**
|
|
151
141
|
* @param type: 'inputMask',
|
|
152
142
|
* @param maskPattern: 'DDDDDDDDDD',
|
|
@@ -154,22 +144,21 @@ const CC_EXPIRATION_DATE = {
|
|
|
154
144
|
* @param isNumericMobileKeyboard: true,
|
|
155
145
|
* @param blinkErrors: true,
|
|
156
146
|
* @param showErrors: false,
|
|
157
|
-
*/
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
147
|
+
*/ const BANK_ACCOUNT = {
|
|
148
|
+
type: "inputMask",
|
|
149
|
+
maskPattern: "DDDDDDDDDD",
|
|
150
|
+
maskPlaceholder: "X",
|
|
151
|
+
isNumericMobileKeyboard: true,
|
|
152
|
+
blinkErrors: true,
|
|
153
|
+
showErrors: false
|
|
154
|
+
};
|
|
155
|
+
const MASK_PRESETS = {
|
|
156
|
+
BANK_ACCOUNT,
|
|
157
|
+
CC_EXPIRATION_DATE,
|
|
158
|
+
DATE_PRESET,
|
|
159
|
+
ZIP_PRESET,
|
|
160
|
+
SSN_PRESET,
|
|
161
|
+
MOBILE_PHONE_PRESET,
|
|
162
|
+
SHORT_SSN_PRESET,
|
|
163
|
+
ABA_PRESET
|
|
165
164
|
};
|
|
166
|
-
const MASK_PRESETS = exports.MASK_PRESETS = {
|
|
167
|
-
BANK_ACCOUNT,
|
|
168
|
-
CC_EXPIRATION_DATE,
|
|
169
|
-
DATE_PRESET,
|
|
170
|
-
ZIP_PRESET,
|
|
171
|
-
SSN_PRESET,
|
|
172
|
-
MOBILE_PHONE_PRESET,
|
|
173
|
-
SHORT_SSN_PRESET,
|
|
174
|
-
ABA_PRESET
|
|
175
|
-
};
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
5
4
|
});
|
|
6
|
-
exports
|
|
7
|
-
|
|
5
|
+
Object.defineProperty(exports, "INPUT_PRESETS", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return INPUT_PRESETS;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _fieldValueFormatters = require("../fieldValueFormatters");
|
|
8
12
|
const NAME_SYMBOLS_EXCLUDER = {
|
|
9
|
-
|
|
13
|
+
/**
|
|
10
14
|
* @name fieldChangesMiddleware
|
|
11
15
|
* @description Обрабатывает входящую строку, удаляет все символы, которые не являются
|
|
12
16
|
* алфавитными, дефисами, апострофами или пробелами. Не дает ввести дубли символов дефиса или апострофа.
|
|
@@ -14,41 +18,43 @@ const NAME_SYMBOLS_EXCLUDER = {
|
|
|
14
18
|
*
|
|
15
19
|
* @param {string} value - Входная строка для обработки.
|
|
16
20
|
* @returns {string} - Обработанная строка.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
21
|
+
*/ fieldChangesMiddleware: (value)=>{
|
|
22
|
+
// remove invalid characters
|
|
23
|
+
const invalidCharacters = new RegExp(/[^a-zA-Z-\s']/g);
|
|
24
|
+
// handle any two '-' or ''' should not be side by side
|
|
25
|
+
const sideBySideHyphenOrApostrophe = new RegExp(/['-]{2,}/g);
|
|
26
|
+
// replace sequence of spaces with single space
|
|
27
|
+
const multipleSpaces = new RegExp(/\s{2,}/g);
|
|
28
|
+
// remove '-' or ''' if they are followed by a space
|
|
29
|
+
const beforeSpace = new RegExp(/['-](?=\s)/g);
|
|
30
|
+
const sanitizedValue = (0, _fieldValueFormatters.getSafelyValue)(value).replace(invalidCharacters, "").replace(sideBySideHyphenOrApostrophe, "").replace(multipleSpaces, " ").replace(beforeSpace, "");
|
|
31
|
+
return sanitizedValue;
|
|
32
|
+
},
|
|
33
|
+
blurTrim: {
|
|
34
|
+
trimStart: true,
|
|
35
|
+
trimEnd: true,
|
|
36
|
+
characters: [
|
|
37
|
+
"-",
|
|
38
|
+
"'",
|
|
39
|
+
" "
|
|
40
|
+
]
|
|
41
|
+
}
|
|
35
42
|
};
|
|
36
43
|
const ONLY_STRING_AND_DASH = {
|
|
37
|
-
|
|
44
|
+
/**
|
|
38
45
|
* @name fieldChangesMiddleware
|
|
39
46
|
* @description Обрабатывает входную строку, удаляет все неалфавитные символы, заменяет двойные дефисы на одинарные
|
|
40
47
|
* и удаляет все дефисы в начале или конце строки.
|
|
41
48
|
* @param {string} value - входная строка для обработки
|
|
42
49
|
* @returns {string} обработанная строка
|
|
43
|
-
*/
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
+
*/ fieldChangesMiddleware: (value)=>{
|
|
51
|
+
const nonAlphabeticAndNotSingleDash = new RegExp(/[^a-zA-Z-]|--/gi);
|
|
52
|
+
const consecutiveDashes = new RegExp(/-+/g);
|
|
53
|
+
const sanitizedInput = (0, _fieldValueFormatters.getSafelyValue)(value);
|
|
54
|
+
return sanitizedInput.replace(nonAlphabeticAndNotSingleDash, "").replace(consecutiveDashes, "-");
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
const INPUT_PRESETS = {
|
|
58
|
+
NAME_SYMBOLS_EXCLUDER,
|
|
59
|
+
ONLY_STRING_AND_DASH
|
|
50
60
|
};
|
|
51
|
-
const INPUT_PRESETS = exports.INPUT_PRESETS = {
|
|
52
|
-
NAME_SYMBOLS_EXCLUDER,
|
|
53
|
-
ONLY_STRING_AND_DASH
|
|
54
|
-
};
|
|
@@ -1,55 +1,36 @@
|
|
|
1
|
+
//? Удобно использовать для расширения объекта атрибутов
|
|
1
2
|
"use strict";
|
|
2
|
-
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
4
|
+
value: true
|
|
5
5
|
});
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
{
|
|
22
|
-
key: 'someField',
|
|
23
|
-
...
|
|
24
|
-
attributesOfNativeInput: {
|
|
25
|
-
'data-testId': `someFieldTestId-${someId}`,
|
|
26
|
-
...ALL_KEYBOARD_TYPES.numeric
|
|
27
|
-
}
|
|
6
|
+
function _export(target, all) {
|
|
7
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: all[name]
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
_export(exports, {
|
|
13
|
+
ALL_KEYBOARD_TYPES: function() {
|
|
14
|
+
return ALL_KEYBOARD_TYPES;
|
|
15
|
+
},
|
|
16
|
+
EMAIL_KEYBOARD: function() {
|
|
17
|
+
return EMAIL_KEYBOARD;
|
|
18
|
+
},
|
|
19
|
+
NUMERIC_KEYBOARD: function() {
|
|
20
|
+
return NUMERIC_KEYBOARD;
|
|
28
21
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
//? Например:
|
|
37
|
-
/*
|
|
38
|
-
const constructor = [
|
|
39
|
-
...
|
|
40
|
-
{
|
|
41
|
-
key: 'someField',
|
|
42
|
-
...NUMERIC_KEYBOARD
|
|
43
|
-
...
|
|
22
|
+
});
|
|
23
|
+
const ALL_KEYBOARD_TYPES = {
|
|
24
|
+
numeric: {
|
|
25
|
+
inputMode: "decimal"
|
|
26
|
+
},
|
|
27
|
+
email: {
|
|
28
|
+
inputMode: "email"
|
|
44
29
|
}
|
|
45
|
-
...
|
|
46
|
-
];
|
|
47
|
-
|
|
48
|
-
*/
|
|
49
|
-
|
|
50
|
-
const NUMERIC_KEYBOARD = exports.NUMERIC_KEYBOARD = {
|
|
51
|
-
attributesOfNativeInput: ALL_KEYBOARD_TYPES.numeric
|
|
52
30
|
};
|
|
53
|
-
const
|
|
54
|
-
|
|
55
|
-
};
|
|
31
|
+
const NUMERIC_KEYBOARD = {
|
|
32
|
+
attributesOfNativeInput: ALL_KEYBOARD_TYPES.numeric
|
|
33
|
+
};
|
|
34
|
+
const EMAIL_KEYBOARD = {
|
|
35
|
+
attributesOfNativeInput: ALL_KEYBOARD_TYPES.email
|
|
36
|
+
};
|
|
@@ -1,25 +1,83 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
5
4
|
});
|
|
6
|
-
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
forgotSchema: function() {
|
|
13
|
+
return forgotSchema;
|
|
14
|
+
},
|
|
15
|
+
loginSchema: function() {
|
|
16
|
+
return loginSchema;
|
|
17
|
+
},
|
|
18
|
+
registerSchema: function() {
|
|
19
|
+
return registerSchema;
|
|
20
|
+
}
|
|
12
21
|
});
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
22
|
+
const _yup = /*#__PURE__*/ _interop_require_wildcard(require("yup"));
|
|
23
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
24
|
+
if (typeof WeakMap !== "function") return null;
|
|
25
|
+
var cacheBabelInterop = new WeakMap();
|
|
26
|
+
var cacheNodeInterop = new WeakMap();
|
|
27
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
28
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
29
|
+
})(nodeInterop);
|
|
30
|
+
}
|
|
31
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
32
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
33
|
+
return obj;
|
|
34
|
+
}
|
|
35
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
36
|
+
return {
|
|
37
|
+
default: obj
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
41
|
+
if (cache && cache.has(obj)) {
|
|
42
|
+
return cache.get(obj);
|
|
43
|
+
}
|
|
44
|
+
var newObj = {
|
|
45
|
+
__proto__: null
|
|
46
|
+
};
|
|
47
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
48
|
+
for(var key in obj){
|
|
49
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
50
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
51
|
+
if (desc && (desc.get || desc.set)) {
|
|
52
|
+
Object.defineProperty(newObj, key, desc);
|
|
53
|
+
} else {
|
|
54
|
+
newObj[key] = obj[key];
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
newObj.default = obj;
|
|
59
|
+
if (cache) {
|
|
60
|
+
cache.set(obj, newObj);
|
|
61
|
+
}
|
|
62
|
+
return newObj;
|
|
63
|
+
}
|
|
64
|
+
const forgotSchema = _yup.object().shape({
|
|
65
|
+
email: _yup.string().email("Invalid email").required("E-mail is required")
|
|
66
|
+
});
|
|
67
|
+
const loginSchema = _yup.object().shape({
|
|
68
|
+
email: _yup.string().email("Invalid email").required("E-mail is required"),
|
|
69
|
+
password: _yup.string().required("No password provided").min(8, "Password is too short - should be 8 chars minimum").matches(/[a-zA-Z]/, "Password can only contain Latin letters"),
|
|
70
|
+
remember: _yup.bool()
|
|
71
|
+
});
|
|
72
|
+
const registerSchema = _yup.object().shape({
|
|
73
|
+
name: _yup.string().required("Name is required"),
|
|
74
|
+
email: _yup.string().email("Invalid email").required("E-mail is required"),
|
|
75
|
+
password: _yup.string().required("No password provided").min(8, "Password is too short - should be 8 chars minimum").matches(/[a-zA-Z]/, "Password can only contain Latin letters"),
|
|
76
|
+
confirmPassword: _yup.string().required("Confirm password").oneOf([
|
|
77
|
+
_yup.ref("password")
|
|
78
|
+
], "Passwords must match"),
|
|
79
|
+
promo: _yup.string(),
|
|
80
|
+
recaptcha: _yup.bool().oneOf([
|
|
81
|
+
true
|
|
82
|
+
], "Field must be checked")
|
|
17
83
|
});
|
|
18
|
-
const registerSchema = exports.registerSchema = yup.object().shape({
|
|
19
|
-
name: yup.string().required("Name is required"),
|
|
20
|
-
email: yup.string().email("Invalid email").required("E-mail is required"),
|
|
21
|
-
password: yup.string().required("No password provided").min(8, "Password is too short - should be 8 chars minimum").matches(/[a-zA-Z]/, "Password can only contain Latin letters"),
|
|
22
|
-
confirmPassword: yup.string().required("Confirm password").oneOf([yup.ref("password")], "Passwords must match"),
|
|
23
|
-
promo: yup.string(),
|
|
24
|
-
recaptcha: yup.bool().oneOf([true], "Field must be checked")
|
|
25
|
-
});
|
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
5
4
|
});
|
|
6
|
-
exports
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
if (isScrollBodyLocked) {
|
|
11
|
-
document.body.style.overflow = "hidden";
|
|
12
|
-
} else {
|
|
13
|
-
document.body.style.overflow = "auto";
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
14
9
|
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
10
|
+
});
|
|
11
|
+
const _react = require("react");
|
|
12
|
+
const useBodyScrollLock = (isScrollBodyLocked)=>{
|
|
13
|
+
(0, _react.useEffect)(()=>{
|
|
14
|
+
if (isScrollBodyLocked) {
|
|
15
|
+
document.body.style.overflow = "hidden";
|
|
16
|
+
} else {
|
|
17
|
+
document.body.style.overflow = "auto";
|
|
18
|
+
}
|
|
19
|
+
return ()=>{
|
|
20
|
+
document.body.style.overflow = "auto";
|
|
21
|
+
};
|
|
22
|
+
}, [
|
|
23
|
+
isScrollBodyLocked
|
|
24
|
+
]);
|
|
19
25
|
};
|
|
20
|
-
|
|
26
|
+
const _default = useBodyScrollLock;
|
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
5
4
|
});
|
|
6
|
-
exports
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
if (ref.current && !ref.current.contains(event.target)) {
|
|
11
|
-
setOut(open);
|
|
5
|
+
Object.defineProperty(exports, "useClickOutside", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return useClickOutside;
|
|
12
9
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
10
|
+
});
|
|
11
|
+
const _react = require("react");
|
|
12
|
+
const useClickOutside = (ref, setOut, open)=>{
|
|
13
|
+
function handleClickOutside(event) {
|
|
14
|
+
if (ref.current && !ref.current.contains(event.target)) {
|
|
15
|
+
setOut(open);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
(0, _react.useEffect)(()=>{
|
|
19
|
+
document.addEventListener("mousedown", handleClickOutside);
|
|
20
|
+
return ()=>{
|
|
21
|
+
document.removeEventListener("mousedown", handleClickOutside);
|
|
22
|
+
};
|
|
23
|
+
}, [
|
|
24
|
+
ref
|
|
25
|
+
]);
|
|
20
26
|
};
|
|
21
|
-
exports.useClickOutside = useClickOutside;
|