@onepercentio/one-ui 0.1.2
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/WebpackConfigs/__snapshots__/email-templates.test.js.snap +9 -0
- package/WebpackConfigs/email-templates.js +251 -0
- package/WebpackConfigs/email-templates.test.js +53 -0
- package/WebpackConfigs/loaders/css-var-removal.js +44 -0
- package/WebpackConfigs/loaders/css-var-removal.test.ts +17 -0
- package/WebpackConfigs/loaders/static-loader.js +26 -0
- package/WebpackConfigs/loaders/svg-to-png.js +170 -0
- package/WebpackConfigs/scripts/css-inliner.ts +24 -0
- package/dist/__test__/utils.d.ts +1 -0
- package/dist/__test__/utils.js +14 -0
- package/dist/__test__/utils.js.map +1 -0
- package/dist/assets/img/svg/checkbox.svg +3 -0
- package/dist/assets/styles/index.scss +2 -0
- package/dist/assets/styles/mixins.scss +12 -0
- package/dist/assets/styles/variables.scss +49 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.d.ts +9 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.js +86 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.js.map +1 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.module.scss +137 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.stories.d.ts +19 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.stories.js +90 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.stories.js.map +1 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.test.d.ts +1 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.test.js +15 -0
- package/dist/components/AdaptiveDialog/AdaptiveDialog.test.js.map +1 -0
- package/dist/components/AdaptiveDialog/index.d.ts +1 -0
- package/dist/components/AdaptiveDialog/index.js +9 -0
- package/dist/components/AdaptiveDialog/index.js.map +1 -0
- package/dist/components/AdaptiveSidebar/AdaptiveSidebar.d.ts +7 -0
- package/dist/components/AdaptiveSidebar/AdaptiveSidebar.js +59 -0
- package/dist/components/AdaptiveSidebar/AdaptiveSidebar.js.map +1 -0
- package/dist/components/AdaptiveSidebar/AdaptiveSidebar.module.scss +48 -0
- package/dist/components/AdaptiveSidebar/AdaptiveSidebar.stories.d.ts +15 -0
- package/dist/components/AdaptiveSidebar/AdaptiveSidebar.stories.js +21 -0
- package/dist/components/AdaptiveSidebar/AdaptiveSidebar.stories.js.map +1 -0
- package/dist/components/AdaptiveSidebar/index.d.ts +1 -0
- package/dist/components/AdaptiveSidebar/index.js +9 -0
- package/dist/components/AdaptiveSidebar/index.js.map +1 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.d.ts +12 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.js +162 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.js.map +1 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.module.scss +61 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.stories.d.ts +16 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.stories.js +82 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.stories.js.map +1 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.test.d.ts +1 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.test.js +20 -0
- package/dist/components/AnchoredTooltip/AnchoredTooltip.test.js.map +1 -0
- package/dist/components/AnchoredTooltip/index.d.ts +1 -0
- package/dist/components/AnchoredTooltip/index.js +9 -0
- package/dist/components/AnchoredTooltip/index.js.map +1 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.d.ts +10 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.js +25 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.js.map +1 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.stories.d.ts +18 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.stories.js +34 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.stories.js.map +1 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.test.d.ts +1 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.test.js +19 -0
- package/dist/components/AsyncWrapper/AsyncWrapper.test.js.map +1 -0
- package/dist/components/AsyncWrapper/index.d.ts +1 -0
- package/dist/components/AsyncWrapper/index.js +9 -0
- package/dist/components/AsyncWrapper/index.js.map +1 -0
- package/dist/components/Avatar/Avatar.d.ts +8 -0
- package/dist/components/Avatar/Avatar.js +41 -0
- package/dist/components/Avatar/Avatar.js.map +1 -0
- package/dist/components/Avatar/Avatar.module.scss +19 -0
- package/dist/components/Avatar/Avatar.stories.d.ts +14 -0
- package/dist/components/Avatar/Avatar.stories.js +19 -0
- package/dist/components/Avatar/Avatar.stories.js.map +1 -0
- package/dist/components/Avatar/Avatar.test.d.ts +1 -0
- package/dist/components/Avatar/Avatar.test.js +36 -0
- package/dist/components/Avatar/Avatar.test.js.map +1 -0
- package/dist/components/Avatar/index.d.ts +1 -0
- package/dist/components/Avatar/index.js +9 -0
- package/dist/components/Avatar/index.js.map +1 -0
- package/dist/components/Button/Button.d.ts +7 -0
- package/dist/components/Button/Button.js +27 -0
- package/dist/components/Button/Button.js.map +1 -0
- package/dist/components/Button/Button.module.scss +42 -0
- package/dist/components/Button/Button.stories.d.ts +9 -0
- package/dist/components/Button/Button.stories.js +34 -0
- package/dist/components/Button/Button.stories.js.map +1 -0
- package/dist/components/Button/Button.test.d.ts +1 -0
- package/dist/components/Button/Button.test.js +15 -0
- package/dist/components/Button/Button.test.js.map +1 -0
- package/dist/components/Button/index.d.ts +1 -0
- package/dist/components/Button/index.js +9 -0
- package/dist/components/Button/index.js.map +1 -0
- package/dist/components/Card/Card.d.ts +7 -0
- package/dist/components/Card/Card.js +15 -0
- package/dist/components/Card/Card.js.map +1 -0
- package/dist/components/Card/Card.module.scss +12 -0
- package/dist/components/Card/Card.stories.d.ts +15 -0
- package/dist/components/Card/Card.stories.js +16 -0
- package/dist/components/Card/Card.stories.js.map +1 -0
- package/dist/components/Card/index.d.ts +1 -0
- package/dist/components/Card/index.js +9 -0
- package/dist/components/Card/index.js.map +1 -0
- package/dist/components/CheckBox/CheckBox.d.ts +11 -0
- package/dist/components/CheckBox/CheckBox.js +32 -0
- package/dist/components/CheckBox/CheckBox.js.map +1 -0
- package/dist/components/CheckBox/CheckBox.module.scss +25 -0
- package/dist/components/CheckBox/CheckBox.stories.d.ts +20 -0
- package/dist/components/CheckBox/CheckBox.stories.js +30 -0
- package/dist/components/CheckBox/CheckBox.stories.js.map +1 -0
- package/dist/components/CheckBox/index.d.ts +1 -0
- package/dist/components/CheckBox/index.js +9 -0
- package/dist/components/CheckBox/index.js.map +1 -0
- package/dist/components/Collapsable/Collapsable.d.ts +33 -0
- package/dist/components/Collapsable/Collapsable.js +120 -0
- package/dist/components/Collapsable/Collapsable.js.map +1 -0
- package/dist/components/Collapsable/Collapsable.module.scss +33 -0
- package/dist/components/Collapsable/Collapsable.stories.d.ts +39 -0
- package/dist/components/Collapsable/Collapsable.stories.js +28 -0
- package/dist/components/Collapsable/Collapsable.stories.js.map +1 -0
- package/dist/components/Collapsable/index.d.ts +1 -0
- package/dist/components/Collapsable/index.js +9 -0
- package/dist/components/Collapsable/index.js.map +1 -0
- package/dist/components/Countdown/Countdown.d.ts +13 -0
- package/dist/components/Countdown/Countdown.js +76 -0
- package/dist/components/Countdown/Countdown.js.map +1 -0
- package/dist/components/Countdown/Countdown.stories.d.ts +14 -0
- package/dist/components/Countdown/Countdown.stories.js +32 -0
- package/dist/components/Countdown/Countdown.stories.js.map +1 -0
- package/dist/components/Countdown/index.d.ts +1 -0
- package/dist/components/Countdown/index.js +9 -0
- package/dist/components/Countdown/index.js.map +1 -0
- package/dist/components/Divider/Divider.d.ts +6 -0
- package/dist/components/Divider/Divider.js +16 -0
- package/dist/components/Divider/Divider.js.map +1 -0
- package/dist/components/Divider/Divider.module.scss +7 -0
- package/dist/components/Divider/Divider.stories.d.ts +7 -0
- package/dist/components/Divider/Divider.stories.js +15 -0
- package/dist/components/Divider/Divider.stories.js.map +1 -0
- package/dist/components/Divider/index.d.ts +1 -0
- package/dist/components/Divider/index.js +9 -0
- package/dist/components/Divider/index.js.map +1 -0
- package/dist/components/EmailInput/EmailInput.d.ts +20 -0
- package/dist/components/EmailInput/EmailInput.js +46 -0
- package/dist/components/EmailInput/EmailInput.js.map +1 -0
- package/dist/components/EmailInput/EmailInput.module.scss +0 -0
- package/dist/components/EmailInput/EmailInput.stories.d.ts +24 -0
- package/dist/components/EmailInput/EmailInput.stories.js +15 -0
- package/dist/components/EmailInput/EmailInput.stories.js.map +1 -0
- package/dist/components/EmailInput/EmailInput.test.d.ts +1 -0
- package/dist/components/EmailInput/EmailInput.test.js +73 -0
- package/dist/components/EmailInput/EmailInput.test.js.map +1 -0
- package/dist/components/EmailInput/index.d.ts +1 -0
- package/dist/components/EmailInput/index.js +9 -0
- package/dist/components/EmailInput/index.js.map +1 -0
- package/dist/components/FadeIn/FadeIn.d.ts +10 -0
- package/dist/components/FadeIn/FadeIn.js +60 -0
- package/dist/components/FadeIn/FadeIn.js.map +1 -0
- package/dist/components/FadeIn/FadeIn.module.scss +18 -0
- package/dist/components/FadeIn/FadeIn.stories.d.ts +24 -0
- package/dist/components/FadeIn/FadeIn.stories.js +16 -0
- package/dist/components/FadeIn/FadeIn.stories.js.map +1 -0
- package/dist/components/FadeIn/FadeIn.test.d.ts +1 -0
- package/dist/components/FadeIn/FadeIn.test.js +22 -0
- package/dist/components/FadeIn/FadeIn.test.js.map +1 -0
- package/dist/components/FadeIn/index.d.ts +1 -0
- package/dist/components/FadeIn/index.js +9 -0
- package/dist/components/FadeIn/index.js.map +1 -0
- package/dist/components/FileInput/FileInput.d.ts +13 -0
- package/dist/components/FileInput/FileInput.js +71 -0
- package/dist/components/FileInput/FileInput.js.map +1 -0
- package/dist/components/FileInput/FileInput.module.scss +27 -0
- package/dist/components/FileInput/FileInput.stories.d.ts +19 -0
- package/dist/components/FileInput/FileInput.stories.js +55 -0
- package/dist/components/FileInput/FileInput.stories.js.map +1 -0
- package/dist/components/FileInput/index.d.ts +1 -0
- package/dist/components/FileInput/index.js +9 -0
- package/dist/components/FileInput/index.js.map +1 -0
- package/dist/components/FlowController/FlowController.d.ts +23 -0
- package/dist/components/FlowController/FlowController.js +34 -0
- package/dist/components/FlowController/FlowController.js.map +1 -0
- package/dist/components/FlowController/FlowController.module.scss +47 -0
- package/dist/components/FlowController/FlowController.stories.d.ts +43 -0
- package/dist/components/FlowController/FlowController.stories.js +97 -0
- package/dist/components/FlowController/FlowController.stories.js.map +1 -0
- package/dist/components/FlowController/FlowController.test.d.ts +1 -0
- package/dist/components/FlowController/FlowController.test.js +166 -0
- package/dist/components/FlowController/FlowController.test.js.map +1 -0
- package/dist/components/FlowController/index.d.ts +1 -0
- package/dist/components/FlowController/index.js +9 -0
- package/dist/components/FlowController/index.js.map +1 -0
- package/dist/components/Freeze/Freeze.d.ts +5 -0
- package/dist/components/Freeze/Freeze.js +13 -0
- package/dist/components/Freeze/Freeze.js.map +1 -0
- package/dist/components/Freeze/Freeze.stories.d.ts +7 -0
- package/dist/components/Freeze/Freeze.stories.js +52 -0
- package/dist/components/Freeze/Freeze.stories.js.map +1 -0
- package/dist/components/Freeze/Freeze.test.d.ts +1 -0
- package/dist/components/Freeze/Freeze.test.js +15 -0
- package/dist/components/Freeze/Freeze.test.js.map +1 -0
- package/dist/components/Freeze/index.d.ts +1 -0
- package/dist/components/Freeze/index.js +9 -0
- package/dist/components/Freeze/index.js.map +1 -0
- package/dist/components/HSForms/HSForms.d.ts +5 -0
- package/dist/components/HSForms/HSForms.js +47 -0
- package/dist/components/HSForms/HSForms.js.map +1 -0
- package/dist/components/HSForms/index.d.ts +1 -0
- package/dist/components/HSForms/index.js +9 -0
- package/dist/components/HSForms/index.js.map +1 -0
- package/dist/components/Header/Header.d.ts +24 -0
- package/dist/components/Header/Header.js +71 -0
- package/dist/components/Header/Header.js.map +1 -0
- package/dist/components/Header/Header.module.scss +109 -0
- package/dist/components/Header/Header.stories.d.ts +27 -0
- package/dist/components/Header/Header.stories.js +41 -0
- package/dist/components/Header/Header.stories.js.map +1 -0
- package/dist/components/Header/Header.test.d.ts +1 -0
- package/dist/components/Header/Header.test.js +96 -0
- package/dist/components/Header/Header.test.js.map +1 -0
- package/dist/components/Header/index.d.ts +1 -0
- package/dist/components/Header/index.js +9 -0
- package/dist/components/Header/index.js.map +1 -0
- package/dist/components/HeaderCloseBtn/HeaderCloseBtn.d.ts +8 -0
- package/dist/components/HeaderCloseBtn/HeaderCloseBtn.js +17 -0
- package/dist/components/HeaderCloseBtn/HeaderCloseBtn.js.map +1 -0
- package/dist/components/HeaderCloseBtn/HeaderCloseBtn.module.scss +44 -0
- package/dist/components/HeaderCloseBtn/HeaderCloseBtn.stories.d.ts +14 -0
- package/dist/components/HeaderCloseBtn/HeaderCloseBtn.stories.js +16 -0
- package/dist/components/HeaderCloseBtn/HeaderCloseBtn.stories.js.map +1 -0
- package/dist/components/HeaderCloseBtn/index.d.ts +1 -0
- package/dist/components/HeaderCloseBtn/index.js +9 -0
- package/dist/components/HeaderCloseBtn/index.js.map +1 -0
- package/dist/components/InfinityScroll/InfinityScroll.d.ts +11 -0
- package/dist/components/InfinityScroll/InfinityScroll.js +108 -0
- package/dist/components/InfinityScroll/InfinityScroll.js.map +1 -0
- package/dist/components/InfinityScroll/InfinityScroll.module.scss +30 -0
- package/dist/components/InfinityScroll/InfinityScroll.stories.d.ts +23 -0
- package/dist/components/InfinityScroll/InfinityScroll.stories.js +50 -0
- package/dist/components/InfinityScroll/InfinityScroll.stories.js.map +1 -0
- package/dist/components/InfinityScroll/InfinityScroll.test.d.ts +1 -0
- package/dist/components/InfinityScroll/InfinityScroll.test.js +185 -0
- package/dist/components/InfinityScroll/InfinityScroll.test.js.map +1 -0
- package/dist/components/InfinityScroll/index.d.ts +1 -0
- package/dist/components/InfinityScroll/index.js +9 -0
- package/dist/components/InfinityScroll/index.js.map +1 -0
- package/dist/components/Input/Input.d.ts +26 -0
- package/dist/components/Input/Input.js +82 -0
- package/dist/components/Input/Input.js.map +1 -0
- package/dist/components/Input/Input.module.scss +68 -0
- package/dist/components/Input/Input.stories.d.ts +20 -0
- package/dist/components/Input/Input.stories.js +21 -0
- package/dist/components/Input/Input.stories.js.map +1 -0
- package/dist/components/Input/Input.test.d.ts +1 -0
- package/dist/components/Input/Input.test.js +54 -0
- package/dist/components/Input/Input.test.js.map +1 -0
- package/dist/components/Input/index.d.ts +1 -0
- package/dist/components/Input/index.js +9 -0
- package/dist/components/Input/index.js.map +1 -0
- package/dist/components/Loader/Loader.d.ts +6 -0
- package/dist/components/Loader/Loader.js +18 -0
- package/dist/components/Loader/Loader.js.map +1 -0
- package/dist/components/Loader/Loader.module.scss +40 -0
- package/dist/components/Loader/Loader.stories.d.ts +12 -0
- package/dist/components/Loader/Loader.stories.js +16 -0
- package/dist/components/Loader/Loader.stories.js.map +1 -0
- package/dist/components/Loader/index.d.ts +1 -0
- package/dist/components/Loader/index.js +9 -0
- package/dist/components/Loader/index.js.map +1 -0
- package/dist/components/LoaderDotsIndicator/LoaderDotsIndicator.d.ts +6 -0
- package/dist/components/LoaderDotsIndicator/LoaderDotsIndicator.js +38 -0
- package/dist/components/LoaderDotsIndicator/LoaderDotsIndicator.js.map +1 -0
- package/dist/components/LoaderDotsIndicator/index.d.ts +1 -0
- package/dist/components/LoaderDotsIndicator/index.js +9 -0
- package/dist/components/LoaderDotsIndicator/index.js.map +1 -0
- package/dist/components/MainGrid/MainGrid.d.ts +9 -0
- package/dist/components/MainGrid/MainGrid.js +52 -0
- package/dist/components/MainGrid/MainGrid.js.map +1 -0
- package/dist/components/MainGrid/MainGrid.module.scss +28 -0
- package/dist/components/MainGrid/MainGrid.stories.d.ts +13 -0
- package/dist/components/MainGrid/MainGrid.stories.js +66 -0
- package/dist/components/MainGrid/MainGrid.stories.js.map +1 -0
- package/dist/components/MainGrid/MainGrid.test.d.ts +1 -0
- package/dist/components/MainGrid/MainGrid.test.js +18 -0
- package/dist/components/MainGrid/MainGrid.test.js.map +1 -0
- package/dist/components/MainGrid/index.d.ts +1 -0
- package/dist/components/MainGrid/index.js +9 -0
- package/dist/components/MainGrid/index.js.map +1 -0
- package/dist/components/MutableHamburgerButton/MutableHamburgerButton.d.ts +7 -0
- package/dist/components/MutableHamburgerButton/MutableHamburgerButton.js +18 -0
- package/dist/components/MutableHamburgerButton/MutableHamburgerButton.js.map +1 -0
- package/dist/components/MutableHamburgerButton/MutableHamburgerButton.module.scss +82 -0
- package/dist/components/MutableHamburgerButton/MutableHamburgerButton.stories.d.ts +13 -0
- package/dist/components/MutableHamburgerButton/MutableHamburgerButton.stories.js +16 -0
- package/dist/components/MutableHamburgerButton/MutableHamburgerButton.stories.js.map +1 -0
- package/dist/components/MutableHamburgerButton/index.d.ts +1 -0
- package/dist/components/MutableHamburgerButton/index.js +9 -0
- package/dist/components/MutableHamburgerButton/index.js.map +1 -0
- package/dist/components/Notification/Notification.d.ts +7 -0
- package/dist/components/Notification/Notification.js +16 -0
- package/dist/components/Notification/Notification.js.map +1 -0
- package/dist/components/Notification/Notification.module.scss +25 -0
- package/dist/components/Notification/Notification.stories.d.ts +15 -0
- package/dist/components/Notification/Notification.stories.js +19 -0
- package/dist/components/Notification/Notification.stories.js.map +1 -0
- package/dist/components/Notification/index.d.ts +1 -0
- package/dist/components/Notification/index.js +9 -0
- package/dist/components/Notification/index.js.map +1 -0
- package/dist/components/Parallax/Parallax.d.ts +15 -0
- package/dist/components/Parallax/Parallax.js +171 -0
- package/dist/components/Parallax/Parallax.js.map +1 -0
- package/dist/components/Parallax/Parallax.module.scss +28 -0
- package/dist/components/Parallax/Parallax.stories.d.ts +32 -0
- package/dist/components/Parallax/Parallax.stories.js +23 -0
- package/dist/components/Parallax/Parallax.stories.js.map +1 -0
- package/dist/components/Parallax/Parallax.test.d.ts +1 -0
- package/dist/components/Parallax/Parallax.test.js +22 -0
- package/dist/components/Parallax/Parallax.test.js.map +1 -0
- package/dist/components/Parallax/index.d.ts +1 -0
- package/dist/components/Parallax/index.js +9 -0
- package/dist/components/Parallax/index.js.map +1 -0
- package/dist/components/Parallax/math/helpers.d.ts +58 -0
- package/dist/components/Parallax/math/helpers.js +230 -0
- package/dist/components/Parallax/math/helpers.js.map +1 -0
- package/dist/components/PasswordInput/PasswordInput.d.ts +38 -0
- package/dist/components/PasswordInput/PasswordInput.js +102 -0
- package/dist/components/PasswordInput/PasswordInput.js.map +1 -0
- package/dist/components/PasswordInput/PasswordInput.module.scss +11 -0
- package/dist/components/PasswordInput/PasswordInput.test.d.ts +1 -0
- package/dist/components/PasswordInput/PasswordInput.test.js +153 -0
- package/dist/components/PasswordInput/PasswordInput.test.js.map +1 -0
- package/dist/components/PasswordInput/index.d.ts +1 -0
- package/dist/components/PasswordInput/index.js +9 -0
- package/dist/components/PasswordInput/index.js.map +1 -0
- package/dist/components/PixelatedScan/PixelatedScan.d.ts +8 -0
- package/dist/components/PixelatedScan/PixelatedScan.js +101 -0
- package/dist/components/PixelatedScan/PixelatedScan.js.map +1 -0
- package/dist/components/PixelatedScan/PixelatedScan.module.scss +86 -0
- package/dist/components/PixelatedScan/PixelatedScan.stories.d.ts +15 -0
- package/dist/components/PixelatedScan/PixelatedScan.stories.js +40 -0
- package/dist/components/PixelatedScan/PixelatedScan.stories.js.map +1 -0
- package/dist/components/PixelatedScan/index.d.ts +1 -0
- package/dist/components/PixelatedScan/index.js +9 -0
- package/dist/components/PixelatedScan/index.js.map +1 -0
- package/dist/components/ProgressTexts/ProgressTexts.d.ts +22 -0
- package/dist/components/ProgressTexts/ProgressTexts.js +38 -0
- package/dist/components/ProgressTexts/ProgressTexts.js.map +1 -0
- package/dist/components/ProgressTexts/ProgressTexts.module.scss +37 -0
- package/dist/components/ProgressTexts/ProgressTexts.stories.d.ts +24 -0
- package/dist/components/ProgressTexts/ProgressTexts.stories.js +86 -0
- package/dist/components/ProgressTexts/ProgressTexts.stories.js.map +1 -0
- package/dist/components/ProgressTexts/ProgressTexts.test.d.ts +1 -0
- package/dist/components/ProgressTexts/ProgressTexts.test.js +52 -0
- package/dist/components/ProgressTexts/ProgressTexts.test.js.map +1 -0
- package/dist/components/ProgressTexts/index.d.ts +1 -0
- package/dist/components/ProgressTexts/index.js +9 -0
- package/dist/components/ProgressTexts/index.js.map +1 -0
- package/dist/components/Select/Select.d.ts +22 -0
- package/dist/components/Select/Select.js +72 -0
- package/dist/components/Select/Select.js.map +1 -0
- package/dist/components/Select/Select.module.scss +47 -0
- package/dist/components/Select/Select.stories.d.ts +48 -0
- package/dist/components/Select/Select.stories.js +34 -0
- package/dist/components/Select/Select.stories.js.map +1 -0
- package/dist/components/Select/Select.test.d.ts +1 -0
- package/dist/components/Select/Select.test.js +12 -0
- package/dist/components/Select/Select.test.js.map +1 -0
- package/dist/components/Select/index.d.ts +1 -0
- package/dist/components/Select/index.js +9 -0
- package/dist/components/Select/index.js.map +1 -0
- package/dist/components/Spacing/Spacing.d.ts +6 -0
- package/dist/components/Spacing/Spacing.js +15 -0
- package/dist/components/Spacing/Spacing.js.map +1 -0
- package/dist/components/Spacing/Spacing.module.scss +13 -0
- package/dist/components/Spacing/Spacing.stories.d.ts +7 -0
- package/dist/components/Spacing/Spacing.stories.js +35 -0
- package/dist/components/Spacing/Spacing.stories.js.map +1 -0
- package/dist/components/Spacing/index.d.ts +1 -0
- package/dist/components/Spacing/index.js +9 -0
- package/dist/components/Spacing/index.js.map +1 -0
- package/dist/components/Table/Table.d.ts +19 -0
- package/dist/components/Table/Table.js +84 -0
- package/dist/components/Table/Table.js.map +1 -0
- package/dist/components/Table/Table.module.scss +76 -0
- package/dist/components/Table/Table.stories.d.ts +15 -0
- package/dist/components/Table/Table.stories.js +84 -0
- package/dist/components/Table/Table.stories.js.map +1 -0
- package/dist/components/Table/Table.test.d.ts +1 -0
- package/dist/components/Table/Table.test.js +35 -0
- package/dist/components/Table/Table.test.js.map +1 -0
- package/dist/components/Table/index.d.ts +1 -0
- package/dist/components/Table/index.js +9 -0
- package/dist/components/Table/index.js.map +1 -0
- package/dist/components/Tabs/Tabs.d.ts +11 -0
- package/dist/components/Tabs/Tabs.js +45 -0
- package/dist/components/Tabs/Tabs.js.map +1 -0
- package/dist/components/Tabs/Tabs.module.scss +22 -0
- package/dist/components/Tabs/Tabs.test.d.ts +1 -0
- package/dist/components/Tabs/Tabs.test.js +39 -0
- package/dist/components/Tabs/Tabs.test.js.map +1 -0
- package/dist/components/Tabs/index.d.ts +1 -0
- package/dist/components/Tabs/index.js +9 -0
- package/dist/components/Tabs/index.js.map +1 -0
- package/dist/components/Text/Text.d.ts +8 -0
- package/dist/components/Text/Text.js +27 -0
- package/dist/components/Text/Text.js.map +1 -0
- package/dist/components/Text/Text.module.scss +77 -0
- package/dist/components/Text/Text.stories.d.ts +7 -0
- package/dist/components/Text/Text.stories.js +20 -0
- package/dist/components/Text/Text.stories.js.map +1 -0
- package/dist/components/Text/Text.test.d.ts +1 -0
- package/dist/components/Text/Text.test.js +12 -0
- package/dist/components/Text/Text.test.js.map +1 -0
- package/dist/components/Text/index.d.ts +1 -0
- package/dist/components/Text/index.js +9 -0
- package/dist/components/Text/index.js.map +1 -0
- package/dist/components/Transition/Transition.d.ts +47 -0
- package/dist/components/Transition/Transition.js +223 -0
- package/dist/components/Transition/Transition.js.map +1 -0
- package/dist/components/Transition/Transition.module.scss +135 -0
- package/dist/components/Transition/Transition.stories.d.ts +10 -0
- package/dist/components/Transition/Transition.stories.js +29 -0
- package/dist/components/Transition/Transition.stories.js.map +1 -0
- package/dist/components/Transition/Transition.test.d.ts +1 -0
- package/dist/components/Transition/Transition.test.js +55 -0
- package/dist/components/Transition/Transition.test.js.map +1 -0
- package/dist/components/Transition/index.d.ts +1 -0
- package/dist/components/Transition/index.js +10 -0
- package/dist/components/Transition/index.js.map +1 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.d.ts +11 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.js +95 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.js.map +1 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.stories.d.ts +28 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.stories.js +180 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.stories.js.map +1 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.stories.module.scss +62 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.test.d.ts +1 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.test.js +131 -0
- package/dist/components/UncontrolledTransition/UncontrolledTransition.test.js.map +1 -0
- package/dist/components/UncontrolledTransition/index.d.ts +1 -0
- package/dist/components/UncontrolledTransition/index.js +9 -0
- package/dist/components/UncontrolledTransition/index.js.map +1 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.d.ts +35 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.js +86 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.js.map +1 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.stories.d.ts +47 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.stories.js +56 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.stories.js.map +1 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.test.d.ts +1 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.test.js +133 -0
- package/dist/components/WalletConnectionWrapper/WalletConnectionWrapper.test.js.map +1 -0
- package/dist/components/WalletConnectionWrapper/index.d.ts +1 -0
- package/dist/components/WalletConnectionWrapper/index.js +9 -0
- package/dist/components/WalletConnectionWrapper/index.js.map +1 -0
- package/dist/context/OneUIProvider.d.ts +54 -0
- package/dist/context/OneUIProvider.js +60 -0
- package/dist/context/OneUIProvider.js.map +1 -0
- package/dist/context/OneUIProvider.test.d.ts +1 -0
- package/dist/context/OneUIProvider.test.js +46 -0
- package/dist/context/OneUIProvider.test.js.map +1 -0
- package/dist/context/__mocks__/OneUIProvider.d.ts +45 -0
- package/dist/context/__mocks__/OneUIProvider.js +13 -0
- package/dist/context/__mocks__/OneUIProvider.js.map +1 -0
- package/dist/hooks/useAsyncControl.d.ts +9 -0
- package/dist/hooks/useAsyncControl.js +40 -0
- package/dist/hooks/useAsyncControl.js.map +1 -0
- package/dist/hooks/usePagination.d.ts +19 -0
- package/dist/hooks/usePagination.js +65 -0
- package/dist/hooks/usePagination.js.map +1 -0
- package/dist/hooks/usePooledOperation.d.ts +15 -0
- package/dist/hooks/usePooledOperation.js +64 -0
- package/dist/hooks/usePooledOperation.js.map +1 -0
- package/dist/hooks/usePooling.d.ts +16 -0
- package/dist/hooks/usePooling.js +47 -0
- package/dist/hooks/usePooling.js.map +1 -0
- package/dist/hooks/usePooling.test.d.ts +1 -0
- package/dist/hooks/usePooling.test.js +104 -0
- package/dist/hooks/usePooling.test.js.map +1 -0
- package/dist/hooks/useShortIntl.d.ts +14 -0
- package/dist/hooks/useShortIntl.js +35 -0
- package/dist/hooks/useShortIntl.js.map +1 -0
- package/dist/models/GenericContract.d.ts +66 -0
- package/dist/models/GenericContract.js +14 -0
- package/dist/models/GenericContract.js.map +1 -0
- package/dist/storybookUtils/index.d.ts +5 -0
- package/dist/storybookUtils/index.js +27 -0
- package/dist/storybookUtils/index.js.map +1 -0
- package/package.json +85 -0
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.flattenMatrix = exports.invertMatrix = exports.multiplyMatrixes = exports.generateMatrixFromOperations = exports.IDENTITY_MATRIX = void 0;
|
|
4
|
+
function IDENTITY_MATRIX() {
|
|
5
|
+
return [
|
|
6
|
+
[1, 0, 0, 0],
|
|
7
|
+
[0, 1, 0, 0],
|
|
8
|
+
[0, 0, 1, 0],
|
|
9
|
+
[0, 0, 0, 1],
|
|
10
|
+
];
|
|
11
|
+
}
|
|
12
|
+
exports.IDENTITY_MATRIX = IDENTITY_MATRIX;
|
|
13
|
+
function generateMatrixFromOperations(...operations) {
|
|
14
|
+
let resultingMatrix = undefined;
|
|
15
|
+
for (let operation of operations) {
|
|
16
|
+
const matrix = operation.type === "matrix" ? operation.matrix : IDENTITY_MATRIX();
|
|
17
|
+
switch (operation.type) {
|
|
18
|
+
case "perspective":
|
|
19
|
+
const f = Math.tan(Math.PI * 0.5 - 0.5 * operation.fieldOfViewInRadians);
|
|
20
|
+
const rangeInv = 1.0 / (operation.near - operation.far);
|
|
21
|
+
matrix[0][0] = f / operation.aspect;
|
|
22
|
+
matrix[1][1] = f;
|
|
23
|
+
matrix[2][2] = (operation.near + operation.far) * rangeInv;
|
|
24
|
+
matrix[2][3] = -1;
|
|
25
|
+
matrix[3][2] = operation.near * operation.far * rangeInv * 2;
|
|
26
|
+
matrix[3][3] = 0;
|
|
27
|
+
break;
|
|
28
|
+
case "translate":
|
|
29
|
+
matrix[3][0] = operation.x;
|
|
30
|
+
matrix[3][1] = operation.y;
|
|
31
|
+
matrix[3][2] = operation.z;
|
|
32
|
+
break;
|
|
33
|
+
case "rotateX":
|
|
34
|
+
case "rotateY":
|
|
35
|
+
case "rotateZ":
|
|
36
|
+
const angleToRadians = (operation.angle * Math.PI) / 180;
|
|
37
|
+
const sinAngle = Math.sin(angleToRadians);
|
|
38
|
+
const cosAngle = Math.cos(angleToRadians);
|
|
39
|
+
switch (operation.type) {
|
|
40
|
+
case "rotateZ":
|
|
41
|
+
matrix[0][0] = cosAngle;
|
|
42
|
+
matrix[1][1] = cosAngle;
|
|
43
|
+
matrix[1][0] = -sinAngle;
|
|
44
|
+
matrix[0][1] = sinAngle;
|
|
45
|
+
break;
|
|
46
|
+
case "rotateY":
|
|
47
|
+
matrix[0][0] = cosAngle;
|
|
48
|
+
matrix[2][2] = cosAngle;
|
|
49
|
+
matrix[0][2] = -sinAngle;
|
|
50
|
+
matrix[2][0] = sinAngle;
|
|
51
|
+
break;
|
|
52
|
+
case "rotateX":
|
|
53
|
+
matrix[1][1] = cosAngle;
|
|
54
|
+
matrix[2][2] = cosAngle;
|
|
55
|
+
matrix[2][1] = -sinAngle;
|
|
56
|
+
matrix[1][2] = sinAngle;
|
|
57
|
+
break;
|
|
58
|
+
}
|
|
59
|
+
break;
|
|
60
|
+
case "scale":
|
|
61
|
+
matrix[0][0] = operation.factorX;
|
|
62
|
+
matrix[1][1] = operation.factorY;
|
|
63
|
+
matrix[2][2] = operation.factorZ;
|
|
64
|
+
break;
|
|
65
|
+
}
|
|
66
|
+
if (resultingMatrix) {
|
|
67
|
+
resultingMatrix = multiplyMatrixes(resultingMatrix, matrix);
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
resultingMatrix = matrix;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return resultingMatrix || IDENTITY_MATRIX();
|
|
74
|
+
}
|
|
75
|
+
exports.generateMatrixFromOperations = generateMatrixFromOperations;
|
|
76
|
+
function multiplyMatrixes(matrix1, matrix2) {
|
|
77
|
+
const resultingMatrix = [];
|
|
78
|
+
if (process.env.NODE_ENV === "development" &&
|
|
79
|
+
matrix2.length !== matrix1[0].length) {
|
|
80
|
+
throw new Error(`For the multiplication of matrixes to work you need to provide the matrix1 containing the amount of columns as the same amount of rows from matrix 2.
|
|
81
|
+
You provided ${matrix1[0].length} columns and ${matrix2.length} rows`);
|
|
82
|
+
}
|
|
83
|
+
for (let i0 in matrix1) {
|
|
84
|
+
for (let i in matrix2[0]) {
|
|
85
|
+
let dimensionResult = 0;
|
|
86
|
+
for (let i2 in matrix1[0]) {
|
|
87
|
+
dimensionResult += matrix1[i0][i2] * matrix2[i2][i];
|
|
88
|
+
}
|
|
89
|
+
if (!resultingMatrix[i0])
|
|
90
|
+
resultingMatrix[i0] = [];
|
|
91
|
+
resultingMatrix[i0][i] = dimensionResult;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
return resultingMatrix;
|
|
95
|
+
}
|
|
96
|
+
exports.multiplyMatrixes = multiplyMatrixes;
|
|
97
|
+
function invertMatrix(matrix) {
|
|
98
|
+
const m = flattenMatrix(matrix);
|
|
99
|
+
let det = 0;
|
|
100
|
+
const inv = [];
|
|
101
|
+
inv[0] =
|
|
102
|
+
m[5] * m[10] * m[15] -
|
|
103
|
+
m[5] * m[11] * m[14] -
|
|
104
|
+
m[9] * m[6] * m[15] +
|
|
105
|
+
m[9] * m[7] * m[14] +
|
|
106
|
+
m[13] * m[6] * m[11] -
|
|
107
|
+
m[13] * m[7] * m[10];
|
|
108
|
+
inv[4] =
|
|
109
|
+
-m[4] * m[10] * m[15] +
|
|
110
|
+
m[4] * m[11] * m[14] +
|
|
111
|
+
m[8] * m[6] * m[15] -
|
|
112
|
+
m[8] * m[7] * m[14] -
|
|
113
|
+
m[12] * m[6] * m[11] +
|
|
114
|
+
m[12] * m[7] * m[10];
|
|
115
|
+
inv[8] =
|
|
116
|
+
m[4] * m[9] * m[15] -
|
|
117
|
+
m[4] * m[11] * m[13] -
|
|
118
|
+
m[8] * m[5] * m[15] +
|
|
119
|
+
m[8] * m[7] * m[13] +
|
|
120
|
+
m[12] * m[5] * m[11] -
|
|
121
|
+
m[12] * m[7] * m[9];
|
|
122
|
+
inv[12] =
|
|
123
|
+
-m[4] * m[9] * m[14] +
|
|
124
|
+
m[4] * m[10] * m[13] +
|
|
125
|
+
m[8] * m[5] * m[14] -
|
|
126
|
+
m[8] * m[6] * m[13] -
|
|
127
|
+
m[12] * m[5] * m[10] +
|
|
128
|
+
m[12] * m[6] * m[9];
|
|
129
|
+
inv[1] =
|
|
130
|
+
-m[1] * m[10] * m[15] +
|
|
131
|
+
m[1] * m[11] * m[14] +
|
|
132
|
+
m[9] * m[2] * m[15] -
|
|
133
|
+
m[9] * m[3] * m[14] -
|
|
134
|
+
m[13] * m[2] * m[11] +
|
|
135
|
+
m[13] * m[3] * m[10];
|
|
136
|
+
inv[5] =
|
|
137
|
+
m[0] * m[10] * m[15] -
|
|
138
|
+
m[0] * m[11] * m[14] -
|
|
139
|
+
m[8] * m[2] * m[15] +
|
|
140
|
+
m[8] * m[3] * m[14] +
|
|
141
|
+
m[12] * m[2] * m[11] -
|
|
142
|
+
m[12] * m[3] * m[10];
|
|
143
|
+
inv[9] =
|
|
144
|
+
-m[0] * m[9] * m[15] +
|
|
145
|
+
m[0] * m[11] * m[13] +
|
|
146
|
+
m[8] * m[1] * m[15] -
|
|
147
|
+
m[8] * m[3] * m[13] -
|
|
148
|
+
m[12] * m[1] * m[11] +
|
|
149
|
+
m[12] * m[3] * m[9];
|
|
150
|
+
inv[13] =
|
|
151
|
+
m[0] * m[9] * m[14] -
|
|
152
|
+
m[0] * m[10] * m[13] -
|
|
153
|
+
m[8] * m[1] * m[14] +
|
|
154
|
+
m[8] * m[2] * m[13] +
|
|
155
|
+
m[12] * m[1] * m[10] -
|
|
156
|
+
m[12] * m[2] * m[9];
|
|
157
|
+
inv[2] =
|
|
158
|
+
m[1] * m[6] * m[15] -
|
|
159
|
+
m[1] * m[7] * m[14] -
|
|
160
|
+
m[5] * m[2] * m[15] +
|
|
161
|
+
m[5] * m[3] * m[14] +
|
|
162
|
+
m[13] * m[2] * m[7] -
|
|
163
|
+
m[13] * m[3] * m[6];
|
|
164
|
+
inv[6] =
|
|
165
|
+
-m[0] * m[6] * m[15] +
|
|
166
|
+
m[0] * m[7] * m[14] +
|
|
167
|
+
m[4] * m[2] * m[15] -
|
|
168
|
+
m[4] * m[3] * m[14] -
|
|
169
|
+
m[12] * m[2] * m[7] +
|
|
170
|
+
m[12] * m[3] * m[6];
|
|
171
|
+
inv[10] =
|
|
172
|
+
m[0] * m[5] * m[15] -
|
|
173
|
+
m[0] * m[7] * m[13] -
|
|
174
|
+
m[4] * m[1] * m[15] +
|
|
175
|
+
m[4] * m[3] * m[13] +
|
|
176
|
+
m[12] * m[1] * m[7] -
|
|
177
|
+
m[12] * m[3] * m[5];
|
|
178
|
+
inv[14] =
|
|
179
|
+
-m[0] * m[5] * m[14] +
|
|
180
|
+
m[0] * m[6] * m[13] +
|
|
181
|
+
m[4] * m[1] * m[14] -
|
|
182
|
+
m[4] * m[2] * m[13] -
|
|
183
|
+
m[12] * m[1] * m[6] +
|
|
184
|
+
m[12] * m[2] * m[5];
|
|
185
|
+
inv[3] =
|
|
186
|
+
-m[1] * m[6] * m[11] +
|
|
187
|
+
m[1] * m[7] * m[10] +
|
|
188
|
+
m[5] * m[2] * m[11] -
|
|
189
|
+
m[5] * m[3] * m[10] -
|
|
190
|
+
m[9] * m[2] * m[7] +
|
|
191
|
+
m[9] * m[3] * m[6];
|
|
192
|
+
inv[7] =
|
|
193
|
+
m[0] * m[6] * m[11] -
|
|
194
|
+
m[0] * m[7] * m[10] -
|
|
195
|
+
m[4] * m[2] * m[11] +
|
|
196
|
+
m[4] * m[3] * m[10] +
|
|
197
|
+
m[8] * m[2] * m[7] -
|
|
198
|
+
m[8] * m[3] * m[6];
|
|
199
|
+
inv[11] =
|
|
200
|
+
-m[0] * m[5] * m[11] +
|
|
201
|
+
m[0] * m[7] * m[9] +
|
|
202
|
+
m[4] * m[1] * m[11] -
|
|
203
|
+
m[4] * m[3] * m[9] -
|
|
204
|
+
m[8] * m[1] * m[7] +
|
|
205
|
+
m[8] * m[3] * m[5];
|
|
206
|
+
inv[15] =
|
|
207
|
+
m[0] * m[5] * m[10] -
|
|
208
|
+
m[0] * m[6] * m[9] -
|
|
209
|
+
m[4] * m[1] * m[10] +
|
|
210
|
+
m[4] * m[2] * m[9] +
|
|
211
|
+
m[8] * m[1] * m[6] -
|
|
212
|
+
m[8] * m[2] * m[5];
|
|
213
|
+
det = m[0] * inv[0] + m[1] * inv[4] + m[2] * inv[8] + m[3] * inv[12];
|
|
214
|
+
if (det === 0)
|
|
215
|
+
throw new Error("Determinator is equal to 0. This matrix cannot be inverted");
|
|
216
|
+
det = 1.0 / det;
|
|
217
|
+
return inv.reduce((r, val, i) => {
|
|
218
|
+
const row = Math.floor(i / 4);
|
|
219
|
+
if (!r[row])
|
|
220
|
+
r[row] = [];
|
|
221
|
+
r[row][i % 4] = val * det;
|
|
222
|
+
return r;
|
|
223
|
+
}, []);
|
|
224
|
+
}
|
|
225
|
+
exports.invertMatrix = invertMatrix;
|
|
226
|
+
function flattenMatrix(matrix) {
|
|
227
|
+
return matrix.reduce((f, dimension) => [...f, ...dimension], []);
|
|
228
|
+
}
|
|
229
|
+
exports.flattenMatrix = flattenMatrix;
|
|
230
|
+
//# sourceMappingURL=helpers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../../../src/components/Parallax/math/helpers.ts"],"names":[],"mappings":"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CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAEtB,GAAG,CAAC,EAAE,CAAC;QACL,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAEtB,GAAG,CAAC,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACrB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;IAEvB,GAAG,CAAC,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;IAEvB,GAAG,CAAC,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAEtB,GAAG,CAAC,EAAE,CAAC;QACL,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAEtB,GAAG,CAAC,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAEtB,GAAG,CAAC,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAEtB,GAAG,CAAC,EAAE,CAAC;QACL,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAEtB,GAAG,CAAC,EAAE,CAAC;QACL,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACpB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YACnB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,C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"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare type AVAILABLE_PASSWORD_VALIDATION_RULES = "size" | "duplication";
|
|
3
|
+
declare const _default: React.ForwardRefExoticComponent<(({
|
|
4
|
+
value: string;
|
|
5
|
+
error?: string | undefined;
|
|
6
|
+
} & ({
|
|
7
|
+
mode: "input";
|
|
8
|
+
onChange: (password: string) => void;
|
|
9
|
+
} | {
|
|
10
|
+
mode: "creation";
|
|
11
|
+
onChange: (password: string, isValid: boolean) => void;
|
|
12
|
+
messages: {
|
|
13
|
+
invalidRules: {
|
|
14
|
+
size: string;
|
|
15
|
+
duplication: string;
|
|
16
|
+
};
|
|
17
|
+
rulesTitle: string;
|
|
18
|
+
};
|
|
19
|
+
} | {
|
|
20
|
+
mode: "comparision";
|
|
21
|
+
otherPassword: string;
|
|
22
|
+
onChange: (password: string, isEqual: boolean) => void;
|
|
23
|
+
messages: {
|
|
24
|
+
passwordsAreDifferent: string;
|
|
25
|
+
};
|
|
26
|
+
})) & Omit<{
|
|
27
|
+
error?: string | undefined;
|
|
28
|
+
hideError?: "onfocus" | undefined;
|
|
29
|
+
placeholder?: string | undefined;
|
|
30
|
+
disclaimer?: string | undefined;
|
|
31
|
+
icon?: ({
|
|
32
|
+
onClick?: (() => void) | undefined;
|
|
33
|
+
} & React.ClassAttributes<any> & React.ImgHTMLAttributes<HTMLImageElement>) | undefined;
|
|
34
|
+
Icon?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
|
|
35
|
+
} & Omit<React.HTMLProps<HTMLInputElement>, "ref"> & React.RefAttributes<any>, "ref" | "value" | "onChange">) & React.RefAttributes<{
|
|
36
|
+
validatePassword: (pass: string) => boolean;
|
|
37
|
+
}>>;
|
|
38
|
+
export default _default;
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
const react_1 = __importStar(require("react"));
|
|
26
|
+
const OneUIProvider_1 = require("../../context/OneUIProvider");
|
|
27
|
+
const Input_1 = __importDefault(require("../Input"));
|
|
28
|
+
const Text_1 = __importDefault(require("../Text"));
|
|
29
|
+
const PasswordInput_module_scss_1 = __importDefault(require("./PasswordInput.module.scss"));
|
|
30
|
+
const BASE_VALIDATION = [
|
|
31
|
+
{ code: "size", validate: (pass) => pass.length >= 8 },
|
|
32
|
+
];
|
|
33
|
+
const RULES = [
|
|
34
|
+
{
|
|
35
|
+
code: "duplication",
|
|
36
|
+
validate: (pass) => {
|
|
37
|
+
for (let i = 0; i < pass.length; i++) {
|
|
38
|
+
const charCode = pass.charCodeAt(i);
|
|
39
|
+
const [firstNext, secondNext] = [
|
|
40
|
+
pass.charCodeAt(i + 1) || 0,
|
|
41
|
+
pass.charCodeAt(i + 2) || 0,
|
|
42
|
+
];
|
|
43
|
+
if (firstNext - charCode === 1 && secondNext - firstNext === 1) {
|
|
44
|
+
return false;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return true;
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
...BASE_VALIDATION,
|
|
51
|
+
];
|
|
52
|
+
/**
|
|
53
|
+
* A Input based wrapper to handle inputing of password
|
|
54
|
+
**/
|
|
55
|
+
function PasswordInput(props, ref) {
|
|
56
|
+
const [isPasswordVisibile, setIPV] = (0, react_1.useState)(false);
|
|
57
|
+
const { passwordHidden, passwordVisible, } = (0, OneUIProvider_1.useOneUIContext)().component.passwordInput.iconSrc;
|
|
58
|
+
function _validatePassword(password) {
|
|
59
|
+
switch (props.mode) {
|
|
60
|
+
case "creation":
|
|
61
|
+
return RULES.reduce((isValid, R) => isValid && R.validate(password), true);
|
|
62
|
+
case "comparision":
|
|
63
|
+
return password === props.otherPassword;
|
|
64
|
+
case "input":
|
|
65
|
+
return BASE_VALIDATION.reduce((isValid, R) => isValid && R.validate(password), true);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
(0, react_1.useImperativeHandle)(ref, () => ({
|
|
69
|
+
validatePassword: (pass) => _validatePassword(pass),
|
|
70
|
+
}));
|
|
71
|
+
function _onChange(e) {
|
|
72
|
+
const password = e.target.value;
|
|
73
|
+
switch (props.mode) {
|
|
74
|
+
case "comparision":
|
|
75
|
+
case "creation":
|
|
76
|
+
props.onChange(password, _validatePassword(password));
|
|
77
|
+
break;
|
|
78
|
+
case "input":
|
|
79
|
+
props.onChange(password);
|
|
80
|
+
break;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
return (react_1.default.createElement("div", { className: `${PasswordInput_module_scss_1.default.inputContainer} ${PasswordInput_module_scss_1.default[props.mode]}` },
|
|
84
|
+
react_1.default.createElement(Input_1.default, { value: props.value, onChange: _onChange, type: !isPasswordVisibile ? "password" : "", icon: {
|
|
85
|
+
src: isPasswordVisibile ? passwordHidden : passwordVisible,
|
|
86
|
+
onMouseLeave: () => setIPV(false),
|
|
87
|
+
onMouseDown: () => setIPV(true),
|
|
88
|
+
onMouseUp: () => setIPV(false),
|
|
89
|
+
onTouchMove: () => setIPV(false),
|
|
90
|
+
onTouchStart: () => setIPV(true),
|
|
91
|
+
onTouchEnd: () => setIPV(false),
|
|
92
|
+
}, error: props.mode === "comparision" && !_validatePassword(props.value)
|
|
93
|
+
? props.messages.passwordsAreDifferent
|
|
94
|
+
: props.error, disabled: props.disabled, placeholder: props.placeholder }),
|
|
95
|
+
props.mode === "creation" && (react_1.default.createElement("div", { className: PasswordInput_module_scss_1.default.rules, "data-testid": "password-rules" },
|
|
96
|
+
react_1.default.createElement(Text_1.default, { type: "caption" }, props.messages.rulesTitle),
|
|
97
|
+
RULES.map((R) => (react_1.default.createElement(Text_1.default, { key: R.code, type: R.validate(props.value) ? "caption" : "error" },
|
|
98
|
+
"- ",
|
|
99
|
+
props.messages.invalidRules[R.code])))))));
|
|
100
|
+
}
|
|
101
|
+
exports.default = (0, react_1.forwardRef)(PasswordInput);
|
|
102
|
+
//# sourceMappingURL=PasswordInput.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PasswordInput.js","sourceRoot":"","sources":["../../../src/components/PasswordInput/PasswordInput.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
22
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
23
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
24
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
25
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
26
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
27
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
const react_1 = __importStar(require("react"));
|
|
35
|
+
const react_2 = require("@testing-library/react");
|
|
36
|
+
const PasswordInput_1 = __importDefault(require("./PasswordInput"));
|
|
37
|
+
const user_event_1 = __importDefault(require("@testing-library/user-event"));
|
|
38
|
+
const Text_module_scss_1 = __importDefault(require("../Text/Text.module.scss"));
|
|
39
|
+
const passwordInputRulesDescription = {
|
|
40
|
+
duplication: "MOCK_passwordInputRulesDescription_duplication",
|
|
41
|
+
size: "MOCK_passwordInputRulesDescription_size",
|
|
42
|
+
};
|
|
43
|
+
jest.unmock("../../../ux/components/elements/icon/icon");
|
|
44
|
+
const MOCKED_CREATION_MESSAGES = {
|
|
45
|
+
invalidRules: { duplication: "d", size: "s" },
|
|
46
|
+
rulesTitle: "t",
|
|
47
|
+
};
|
|
48
|
+
function Wrapper(props) {
|
|
49
|
+
const [s, ss] = (0, react_1.useState)(props.value);
|
|
50
|
+
return (react_1.default.createElement(PasswordInput_1.default, Object.assign({}, props, { value: s, onChange: (...args) => {
|
|
51
|
+
ss(args[0]);
|
|
52
|
+
props.onChange(...args);
|
|
53
|
+
} })));
|
|
54
|
+
}
|
|
55
|
+
function renderScreen(props) {
|
|
56
|
+
return (0, react_2.render)(react_1.default.createElement(Wrapper, Object.assign({}, props)));
|
|
57
|
+
}
|
|
58
|
+
it("Should at least render :)", () => {
|
|
59
|
+
renderScreen({ value: "", mode: "input", onChange: jest.fn() });
|
|
60
|
+
});
|
|
61
|
+
it.each([
|
|
62
|
+
["creation", true],
|
|
63
|
+
["input", false],
|
|
64
|
+
])("Should have a validation mode, where it should display all the validations that are being made over the informed password %s", (mode, shouldShow) => {
|
|
65
|
+
const changeCb = jest.fn();
|
|
66
|
+
const w = renderScreen(mode === "creation"
|
|
67
|
+
? {
|
|
68
|
+
mode: mode,
|
|
69
|
+
value: "",
|
|
70
|
+
onChange: changeCb,
|
|
71
|
+
messages: MOCKED_CREATION_MESSAGES,
|
|
72
|
+
}
|
|
73
|
+
: { mode: mode, value: "", onChange: changeCb });
|
|
74
|
+
if (shouldShow)
|
|
75
|
+
expect(w.getByTestId("password-rules"));
|
|
76
|
+
else
|
|
77
|
+
expect(w.queryByTestId("password-rules")).toBeNull();
|
|
78
|
+
});
|
|
79
|
+
it("Should reject small passwords < 8", () => __awaiter(void 0, void 0, void 0, function* () {
|
|
80
|
+
const changeCb = jest.fn();
|
|
81
|
+
const w = renderScreen({
|
|
82
|
+
mode: "creation",
|
|
83
|
+
value: "",
|
|
84
|
+
onChange: changeCb,
|
|
85
|
+
messages: MOCKED_CREATION_MESSAGES,
|
|
86
|
+
});
|
|
87
|
+
yield user_event_1.default.type(w.container.querySelector("input"), "Short", {
|
|
88
|
+
delay: 50,
|
|
89
|
+
});
|
|
90
|
+
expect(changeCb).toHaveBeenLastCalledWith("Short", false);
|
|
91
|
+
expect(w.getByText(`- ${passwordInputRulesDescription.size}`).className).toContain(Text_module_scss_1.default.error);
|
|
92
|
+
}));
|
|
93
|
+
it.each([
|
|
94
|
+
["abc123senha", false],
|
|
95
|
+
["teste123", false],
|
|
96
|
+
["mnolol1997", false],
|
|
97
|
+
["UMASENHASECRETA", true],
|
|
98
|
+
["1928371281923", true],
|
|
99
|
+
["Netspaces", true],
|
|
100
|
+
])("when %s should reject = %s sequencial numbers or letters ", (pass, isValid) => __awaiter(void 0, void 0, void 0, function* () {
|
|
101
|
+
const changeCb = jest.fn();
|
|
102
|
+
const w = renderScreen({
|
|
103
|
+
mode: "creation",
|
|
104
|
+
value: "",
|
|
105
|
+
onChange: changeCb,
|
|
106
|
+
messages: MOCKED_CREATION_MESSAGES,
|
|
107
|
+
});
|
|
108
|
+
yield user_event_1.default.type(w.container.querySelector("input"), pass, {
|
|
109
|
+
delay: 50,
|
|
110
|
+
});
|
|
111
|
+
expect(changeCb).toHaveBeenLastCalledWith(pass, isValid);
|
|
112
|
+
const expectation = expect(w.getByText(`- ${passwordInputRulesDescription.duplication}`).className);
|
|
113
|
+
if (isValid)
|
|
114
|
+
expectation.not.toContain(Text_module_scss_1.default.error);
|
|
115
|
+
else
|
|
116
|
+
expectation.toContain(Text_module_scss_1.default.error);
|
|
117
|
+
}));
|
|
118
|
+
function createMouseEvent(type) {
|
|
119
|
+
const e = new MouseEvent(type);
|
|
120
|
+
e.initEvent(type, true, true);
|
|
121
|
+
return e;
|
|
122
|
+
}
|
|
123
|
+
it("Should be able to show password temporarly when mouseenter and hiding onmouseexit", () => __awaiter(void 0, void 0, void 0, function* () {
|
|
124
|
+
const w = renderScreen({ mode: "input", value: "", onChange: jest.fn() });
|
|
125
|
+
const icon = w.container.querySelector("i");
|
|
126
|
+
const input = w.container.querySelector("input");
|
|
127
|
+
expect(input.getAttribute("type")).toEqual("password");
|
|
128
|
+
icon.dispatchEvent(createMouseEvent("mousedown"));
|
|
129
|
+
yield (0, react_2.waitFor)(() => expect(input.getAttribute("type")).toEqual(""));
|
|
130
|
+
icon.dispatchEvent(createMouseEvent("mouseup"));
|
|
131
|
+
yield (0, react_2.waitFor)(() => expect(input.getAttribute("type")).toEqual("password"));
|
|
132
|
+
}));
|
|
133
|
+
it("Should be able to validate against a previous password", () => __awaiter(void 0, void 0, void 0, function* () {
|
|
134
|
+
const changeCb = jest.fn();
|
|
135
|
+
const w = renderScreen({
|
|
136
|
+
mode: "comparision",
|
|
137
|
+
value: "",
|
|
138
|
+
otherPassword: "Senhaigual",
|
|
139
|
+
onChange: changeCb,
|
|
140
|
+
messages: {
|
|
141
|
+
passwordsAreDifferent: "d",
|
|
142
|
+
},
|
|
143
|
+
});
|
|
144
|
+
yield user_event_1.default.type(w.container.querySelector("input"), "Senhaigua", {
|
|
145
|
+
delay: 50,
|
|
146
|
+
});
|
|
147
|
+
expect(changeCb).toHaveBeenLastCalledWith("Senhaigua", false);
|
|
148
|
+
yield user_event_1.default.type(w.container.querySelector("input"), "l", {
|
|
149
|
+
delay: 50,
|
|
150
|
+
});
|
|
151
|
+
expect(changeCb).toHaveBeenLastCalledWith("Senhaigual", true);
|
|
152
|
+
}));
|
|
153
|
+
//# sourceMappingURL=PasswordInput.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PasswordInput.test.js","sourceRoot":"","sources":["../../../src/components/PasswordInput/PasswordInput.test.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './PasswordInput';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var PasswordInput_1 = require("./PasswordInput");
|
|
8
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(PasswordInput_1).default; } });
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/PasswordInput/index.tsx"],"names":[],"mappings":";;;;;;AAAA,iDAA0C;AAAjC,yHAAA,OAAO,OAAA"}
|