ncore-ui-kit 1.0.0-pre-alpha.0
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/LICENSE +20 -0
- package/README.md +2 -0
- package/lib/module/assets/fonts/Geist-Black.ttf +0 -0
- package/lib/module/assets/fonts/Geist-Bold.ttf +0 -0
- package/lib/module/assets/fonts/Geist-ExtraBold.ttf +0 -0
- package/lib/module/assets/fonts/Geist-ExtraLight.ttf +0 -0
- package/lib/module/assets/fonts/Geist-Light.ttf +0 -0
- package/lib/module/assets/fonts/Geist-Medium.ttf +0 -0
- package/lib/module/assets/fonts/Geist-Regular.ttf +0 -0
- package/lib/module/assets/fonts/Geist-SemiBold.ttf +0 -0
- package/lib/module/assets/fonts/Geist-Thin.ttf +0 -0
- package/lib/module/assets/svg/badgeAlertIcon/index.js +33 -0
- package/lib/module/assets/svg/badgeAlertIcon/index.js.map +1 -0
- package/lib/module/assets/svg/badgeDangerIcon/index.js +32 -0
- package/lib/module/assets/svg/badgeDangerIcon/index.js.map +1 -0
- package/lib/module/assets/svg/badgeInfoIcon/index.js +32 -0
- package/lib/module/assets/svg/badgeInfoIcon/index.js.map +1 -0
- package/lib/module/assets/svg/badgeQuestionMarkIcon/index.js +40 -0
- package/lib/module/assets/svg/badgeQuestionMarkIcon/index.js.map +1 -0
- package/lib/module/assets/svg/badgeRightIcon/index.js +32 -0
- package/lib/module/assets/svg/badgeRightIcon/index.js.map +1 -0
- package/lib/module/assets/svg/badgeSuccessIcon/index.js +40 -0
- package/lib/module/assets/svg/badgeSuccessIcon/index.js.map +1 -0
- package/lib/module/assets/svg/chevronRightIcon/index.js +32 -0
- package/lib/module/assets/svg/chevronRightIcon/index.js.map +1 -0
- package/lib/module/assets/svg/cleanIcon/index.js +32 -0
- package/lib/module/assets/svg/cleanIcon/index.js.map +1 -0
- package/lib/module/assets/svg/eyeClosedIcon/index.js +40 -0
- package/lib/module/assets/svg/eyeClosedIcon/index.js.map +1 -0
- package/lib/module/assets/svg/eyeOpenedIcon/index.js +40 -0
- package/lib/module/assets/svg/eyeOpenedIcon/index.js.map +1 -0
- package/lib/module/assets/svg/index.js +13 -0
- package/lib/module/assets/svg/index.js.map +1 -0
- package/lib/module/assets/svg/loadingIcon/index.js +65 -0
- package/lib/module/assets/svg/loadingIcon/index.js.map +1 -0
- package/lib/module/components/bottomSheet/index.js +915 -0
- package/lib/module/components/bottomSheet/index.js.map +1 -0
- package/lib/module/components/bottomSheet/stylesheet.js +26 -0
- package/lib/module/components/bottomSheet/stylesheet.js.map +1 -0
- package/lib/module/components/bottomSheet/type.js +4 -0
- package/lib/module/components/bottomSheet/type.js.map +1 -0
- package/lib/module/components/button/index.js +143 -0
- package/lib/module/components/button/index.js.map +1 -0
- package/lib/module/components/button/stylesheet.js +231 -0
- package/lib/module/components/button/stylesheet.js.map +1 -0
- package/lib/module/components/button/type.js +4 -0
- package/lib/module/components/button/type.js.map +1 -0
- package/lib/module/components/checkBox/index.js +186 -0
- package/lib/module/components/checkBox/index.js.map +1 -0
- package/lib/module/components/checkBox/stylesheet.js +182 -0
- package/lib/module/components/checkBox/stylesheet.js.map +1 -0
- package/lib/module/components/checkBox/type.js +4 -0
- package/lib/module/components/checkBox/type.js.map +1 -0
- package/lib/module/components/chip/index.js +131 -0
- package/lib/module/components/chip/index.js.map +1 -0
- package/lib/module/components/chip/stylesheet.js +134 -0
- package/lib/module/components/chip/stylesheet.js.map +1 -0
- package/lib/module/components/chip/type.js +4 -0
- package/lib/module/components/chip/type.js.map +1 -0
- package/lib/module/components/dateSelector/index.js +293 -0
- package/lib/module/components/dateSelector/index.js.map +1 -0
- package/lib/module/components/dateSelector/stylesheet.js +82 -0
- package/lib/module/components/dateSelector/stylesheet.js.map +1 -0
- package/lib/module/components/dateSelector/type.js +7 -0
- package/lib/module/components/dateSelector/type.js.map +1 -0
- package/lib/module/components/dateSelector/util.js +17 -0
- package/lib/module/components/dateSelector/util.js.map +1 -0
- package/lib/module/components/dateTimePicker/index.js +704 -0
- package/lib/module/components/dateTimePicker/index.js.map +1 -0
- package/lib/module/components/dateTimePicker/stylesheet.js +213 -0
- package/lib/module/components/dateTimePicker/stylesheet.js.map +1 -0
- package/lib/module/components/dateTimePicker/type.js +5 -0
- package/lib/module/components/dateTimePicker/type.js.map +1 -0
- package/lib/module/components/dateTimeSheet/index.js +313 -0
- package/lib/module/components/dateTimeSheet/index.js.map +1 -0
- package/lib/module/components/dateTimeSheet/stylesheet.js +88 -0
- package/lib/module/components/dateTimeSheet/stylesheet.js.map +1 -0
- package/lib/module/components/dateTimeSheet/type.js +5 -0
- package/lib/module/components/dateTimeSheet/type.js.map +1 -0
- package/lib/module/components/dialog/index.js +228 -0
- package/lib/module/components/dialog/index.js.map +1 -0
- package/lib/module/components/dialog/stylesheet.js +99 -0
- package/lib/module/components/dialog/stylesheet.js.map +1 -0
- package/lib/module/components/dialog/type.js +5 -0
- package/lib/module/components/dialog/type.js.map +1 -0
- package/lib/module/components/index.js +32 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/components/loading/index.js +22 -0
- package/lib/module/components/loading/index.js.map +1 -0
- package/lib/module/components/loading/stylesheet.js +10 -0
- package/lib/module/components/loading/stylesheet.js.map +1 -0
- package/lib/module/components/loading/type.js +4 -0
- package/lib/module/components/loading/type.js.map +1 -0
- package/lib/module/components/markdownViewer/constant.js +18 -0
- package/lib/module/components/markdownViewer/constant.js.map +1 -0
- package/lib/module/components/markdownViewer/index.js +368 -0
- package/lib/module/components/markdownViewer/index.js.map +1 -0
- package/lib/module/components/markdownViewer/stylesheet.js +66 -0
- package/lib/module/components/markdownViewer/stylesheet.js.map +1 -0
- package/lib/module/components/markdownViewer/type.js +5 -0
- package/lib/module/components/markdownViewer/type.js.map +1 -0
- package/lib/module/components/markdownViewer/util.js +344 -0
- package/lib/module/components/markdownViewer/util.js.map +1 -0
- package/lib/module/components/modal/index.js +170 -0
- package/lib/module/components/modal/index.js.map +1 -0
- package/lib/module/components/modal/stylesheet.js +36 -0
- package/lib/module/components/modal/stylesheet.js.map +1 -0
- package/lib/module/components/modal/type.js +5 -0
- package/lib/module/components/modal/type.js.map +1 -0
- package/lib/module/components/monthSelector/index.js +284 -0
- package/lib/module/components/monthSelector/index.js.map +1 -0
- package/lib/module/components/monthSelector/stylesheet.js +80 -0
- package/lib/module/components/monthSelector/stylesheet.js.map +1 -0
- package/lib/module/components/monthSelector/type.js +7 -0
- package/lib/module/components/monthSelector/type.js.map +1 -0
- package/lib/module/components/monthSelector/util.js +17 -0
- package/lib/module/components/monthSelector/util.js.map +1 -0
- package/lib/module/components/notificationIndicator/index.js +121 -0
- package/lib/module/components/notificationIndicator/index.js.map +1 -0
- package/lib/module/components/notificationIndicator/stylesheet.js +119 -0
- package/lib/module/components/notificationIndicator/stylesheet.js.map +1 -0
- package/lib/module/components/notificationIndicator/type.js +4 -0
- package/lib/module/components/notificationIndicator/type.js.map +1 -0
- package/lib/module/components/numericInput/index.js +409 -0
- package/lib/module/components/numericInput/index.js.map +1 -0
- package/lib/module/components/numericInput/stylesheet.js +245 -0
- package/lib/module/components/numericInput/stylesheet.js.map +1 -0
- package/lib/module/components/numericInput/type.js +5 -0
- package/lib/module/components/numericInput/type.js.map +1 -0
- package/lib/module/components/pageContainer/index.js +81 -0
- package/lib/module/components/pageContainer/index.js.map +1 -0
- package/lib/module/components/pageContainer/stylesheet.js +13 -0
- package/lib/module/components/pageContainer/stylesheet.js.map +1 -0
- package/lib/module/components/pageContainer/type.js +4 -0
- package/lib/module/components/pageContainer/type.js.map +1 -0
- package/lib/module/components/radioButton/index.js +179 -0
- package/lib/module/components/radioButton/index.js.map +1 -0
- package/lib/module/components/radioButton/stylesheet.js +192 -0
- package/lib/module/components/radioButton/stylesheet.js.map +1 -0
- package/lib/module/components/radioButton/type.js +4 -0
- package/lib/module/components/radioButton/type.js.map +1 -0
- package/lib/module/components/rowCard/index.js +153 -0
- package/lib/module/components/rowCard/index.js.map +1 -0
- package/lib/module/components/rowCard/stylesheet.js +78 -0
- package/lib/module/components/rowCard/stylesheet.js.map +1 -0
- package/lib/module/components/rowCard/type.js +4 -0
- package/lib/module/components/rowCard/type.js.map +1 -0
- package/lib/module/components/selectBox/index.js +612 -0
- package/lib/module/components/selectBox/index.js.map +1 -0
- package/lib/module/components/selectBox/stylesheet.js +216 -0
- package/lib/module/components/selectBox/stylesheet.js.map +1 -0
- package/lib/module/components/selectBox/type.js +5 -0
- package/lib/module/components/selectBox/type.js.map +1 -0
- package/lib/module/components/selectSheet/index.js +285 -0
- package/lib/module/components/selectSheet/index.js.map +1 -0
- package/lib/module/components/selectSheet/stylesheet.js +90 -0
- package/lib/module/components/selectSheet/stylesheet.js.map +1 -0
- package/lib/module/components/selectSheet/type.js +5 -0
- package/lib/module/components/selectSheet/type.js.map +1 -0
- package/lib/module/components/snackBar/index.js +314 -0
- package/lib/module/components/snackBar/index.js.map +1 -0
- package/lib/module/components/snackBar/stylesheet.js +131 -0
- package/lib/module/components/snackBar/stylesheet.js.map +1 -0
- package/lib/module/components/snackBar/type.js +5 -0
- package/lib/module/components/snackBar/type.js.map +1 -0
- package/lib/module/components/stateCard/index.js +101 -0
- package/lib/module/components/stateCard/index.js.map +1 -0
- package/lib/module/components/stateCard/stylesheet.js +96 -0
- package/lib/module/components/stateCard/stylesheet.js.map +1 -0
- package/lib/module/components/stateCard/type.js +4 -0
- package/lib/module/components/stateCard/type.js.map +1 -0
- package/lib/module/components/sticker/index.js +85 -0
- package/lib/module/components/sticker/index.js.map +1 -0
- package/lib/module/components/sticker/stylesheet.js +95 -0
- package/lib/module/components/sticker/stylesheet.js.map +1 -0
- package/lib/module/components/sticker/type.js +4 -0
- package/lib/module/components/sticker/type.js.map +1 -0
- package/lib/module/components/switch/index.js +192 -0
- package/lib/module/components/switch/index.js.map +1 -0
- package/lib/module/components/switch/stylesheet.js +174 -0
- package/lib/module/components/switch/stylesheet.js.map +1 -0
- package/lib/module/components/switch/type.js +4 -0
- package/lib/module/components/switch/type.js.map +1 -0
- package/lib/module/components/text/index.js +29 -0
- package/lib/module/components/text/index.js.map +1 -0
- package/lib/module/components/text/type.js +4 -0
- package/lib/module/components/text/type.js.map +1 -0
- package/lib/module/components/textAreaInput/index.js +367 -0
- package/lib/module/components/textAreaInput/index.js.map +1 -0
- package/lib/module/components/textAreaInput/stylesheet.js +256 -0
- package/lib/module/components/textAreaInput/stylesheet.js.map +1 -0
- package/lib/module/components/textAreaInput/type.js +5 -0
- package/lib/module/components/textAreaInput/type.js.map +1 -0
- package/lib/module/components/textInput/index.js +362 -0
- package/lib/module/components/textInput/index.js.map +1 -0
- package/lib/module/components/textInput/stylesheet.js +245 -0
- package/lib/module/components/textInput/stylesheet.js.map +1 -0
- package/lib/module/components/textInput/type.js +5 -0
- package/lib/module/components/textInput/type.js.map +1 -0
- package/lib/module/components/timeSelector/components/timeInput/index.js +135 -0
- package/lib/module/components/timeSelector/components/timeInput/index.js.map +1 -0
- package/lib/module/components/timeSelector/components/timeInput/stylesheet.js +27 -0
- package/lib/module/components/timeSelector/components/timeInput/stylesheet.js.map +1 -0
- package/lib/module/components/timeSelector/components/timeInput/type.js +5 -0
- package/lib/module/components/timeSelector/components/timeInput/type.js.map +1 -0
- package/lib/module/components/timeSelector/index.js +329 -0
- package/lib/module/components/timeSelector/index.js.map +1 -0
- package/lib/module/components/timeSelector/stylesheet.js +44 -0
- package/lib/module/components/timeSelector/stylesheet.js.map +1 -0
- package/lib/module/components/timeSelector/type.js +5 -0
- package/lib/module/components/timeSelector/type.js.map +1 -0
- package/lib/module/components/toast/index.js +199 -0
- package/lib/module/components/toast/index.js.map +1 -0
- package/lib/module/components/toast/stylesheet.js +124 -0
- package/lib/module/components/toast/stylesheet.js.map +1 -0
- package/lib/module/components/toast/type.js +5 -0
- package/lib/module/components/toast/type.js.map +1 -0
- package/lib/module/components/yearSelector/index.js +278 -0
- package/lib/module/components/yearSelector/index.js.map +1 -0
- package/lib/module/components/yearSelector/stylesheet.js +80 -0
- package/lib/module/components/yearSelector/stylesheet.js.map +1 -0
- package/lib/module/components/yearSelector/type.js +7 -0
- package/lib/module/components/yearSelector/type.js.map +1 -0
- package/lib/module/components/yearSelector/util.js +17 -0
- package/lib/module/components/yearSelector/util.js.map +1 -0
- package/lib/module/context/bottomSheet.js +86 -0
- package/lib/module/context/bottomSheet.js.map +1 -0
- package/lib/module/context/dialog.js +85 -0
- package/lib/module/context/dialog.js.map +1 -0
- package/lib/module/context/index.js +92 -0
- package/lib/module/context/index.js.map +1 -0
- package/lib/module/context/localize.js +143 -0
- package/lib/module/context/localize.js.map +1 -0
- package/lib/module/context/modal.js +82 -0
- package/lib/module/context/modal.js.map +1 -0
- package/lib/module/context/snackBar.js +79 -0
- package/lib/module/context/snackBar.js.map +1 -0
- package/lib/module/context/theme.js +142 -0
- package/lib/module/context/theme.js.map +1 -0
- package/lib/module/context/toast.js +79 -0
- package/lib/module/context/toast.js.map +1 -0
- package/lib/module/core/hooks.js +19 -0
- package/lib/module/core/hooks.js.map +1 -0
- package/lib/module/core/index.js +91 -0
- package/lib/module/core/index.js.map +1 -0
- package/lib/module/helpers/index.js +7 -0
- package/lib/module/helpers/index.js.map +1 -0
- package/lib/module/helpers/locale/index.js +23 -0
- package/lib/module/helpers/locale/index.js.map +1 -0
- package/lib/module/helpers/portalize/Consumer.js +33 -0
- package/lib/module/helpers/portalize/Consumer.js.map +1 -0
- package/lib/module/helpers/portalize/Host.js +73 -0
- package/lib/module/helpers/portalize/Host.js.map +1 -0
- package/lib/module/helpers/portalize/Manager.js +36 -0
- package/lib/module/helpers/portalize/Manager.js.map +1 -0
- package/lib/module/helpers/portalize/Portal.js +18 -0
- package/lib/module/helpers/portalize/Portal.js.map +1 -0
- package/lib/module/helpers/portalize/context/index.js +33 -0
- package/lib/module/helpers/portalize/context/index.js.map +1 -0
- package/lib/module/helpers/portalize/hooks/useKey.js +34 -0
- package/lib/module/helpers/portalize/hooks/useKey.js.map +1 -0
- package/lib/module/helpers/portalize/index.js +7 -0
- package/lib/module/helpers/portalize/index.js.map +1 -0
- package/lib/module/helpers/theme/palette.js +61 -0
- package/lib/module/helpers/theme/palette.js.map +1 -0
- package/lib/module/helpers/theme/shapes.js +79 -0
- package/lib/module/helpers/theme/shapes.js.map +1 -0
- package/lib/module/helpers/theme/typography.js +33 -0
- package/lib/module/helpers/theme/typography.js.map +1 -0
- package/lib/module/index.js +10 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +4 -0
- package/lib/module/types/bottomSheet.js +4 -0
- package/lib/module/types/bottomSheet.js.map +1 -0
- package/lib/module/types/dialog.js +4 -0
- package/lib/module/types/dialog.js.map +1 -0
- package/lib/module/types/icon.js +4 -0
- package/lib/module/types/icon.js.map +1 -0
- package/lib/module/types/index.js +7 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/module/types/locale.js +4 -0
- package/lib/module/types/locale.js.map +1 -0
- package/lib/module/types/modal.js +4 -0
- package/lib/module/types/modal.js.map +1 -0
- package/lib/module/types/portalize.js +2 -0
- package/lib/module/types/portalize.js.map +1 -0
- package/lib/module/types/snackBar.js +4 -0
- package/lib/module/types/snackBar.js.map +1 -0
- package/lib/module/types/theme.js +2 -0
- package/lib/module/types/theme.js.map +1 -0
- package/lib/module/types/toast.js +4 -0
- package/lib/module/types/toast.js.map +1 -0
- package/lib/module/utils/index.js +54 -0
- package/lib/module/utils/index.js.map +1 -0
- package/lib/module/variants/locales/default.json +208 -0
- package/lib/module/variants/themes/default.json +669 -0
- package/lib/package.json +4 -0
- package/lib/src/assets/svg/badgeAlertIcon/index.js +11 -0
- package/lib/src/assets/svg/badgeDangerIcon/index.js +10 -0
- package/lib/src/assets/svg/badgeInfoIcon/index.js +10 -0
- package/lib/src/assets/svg/badgeQuestionMarkIcon/index.js +11 -0
- package/lib/src/assets/svg/badgeRightIcon/index.js +10 -0
- package/lib/src/assets/svg/badgeSuccessIcon/index.js +11 -0
- package/lib/src/assets/svg/chevronRightIcon/index.js +10 -0
- package/lib/src/assets/svg/cleanIcon/index.js +10 -0
- package/lib/src/assets/svg/eyeClosedIcon/index.js +11 -0
- package/lib/src/assets/svg/eyeOpenedIcon/index.js +11 -0
- package/lib/src/assets/svg/index.js +10 -0
- package/lib/src/assets/svg/loadingIcon/index.js +41 -0
- package/lib/src/components/bottomSheet/index.js +897 -0
- package/lib/src/components/bottomSheet/stylesheet.js +23 -0
- package/lib/src/components/bottomSheet/type.js +1 -0
- package/lib/src/components/button/index.js +107 -0
- package/lib/src/components/button/stylesheet.js +209 -0
- package/lib/src/components/button/type.js +2 -0
- package/lib/src/components/checkBox/index.js +133 -0
- package/lib/src/components/checkBox/stylesheet.js +166 -0
- package/lib/src/components/checkBox/type.js +1 -0
- package/lib/src/components/chip/index.js +84 -0
- package/lib/src/components/chip/stylesheet.js +117 -0
- package/lib/src/components/chip/type.js +1 -0
- package/lib/src/components/dateSelector/index.js +251 -0
- package/lib/src/components/dateSelector/stylesheet.js +74 -0
- package/lib/src/components/dateSelector/type.js +4 -0
- package/lib/src/components/dateSelector/util.js +12 -0
- package/lib/src/components/dateTimePicker/index.js +591 -0
- package/lib/src/components/dateTimePicker/stylesheet.js +198 -0
- package/lib/src/components/dateTimePicker/type.js +3 -0
- package/lib/src/components/dateTimeSheet/index.js +154 -0
- package/lib/src/components/dateTimeSheet/stylesheet.js +81 -0
- package/lib/src/components/dateTimeSheet/type.js +2 -0
- package/lib/src/components/dialog/index.js +166 -0
- package/lib/src/components/dialog/stylesheet.js +90 -0
- package/lib/src/components/dialog/type.js +3 -0
- package/lib/src/components/index.js +29 -0
- package/lib/src/components/loading/index.js +11 -0
- package/lib/src/components/loading/stylesheet.js +7 -0
- package/lib/src/components/loading/type.js +2 -0
- package/lib/src/components/markdownViewer/constant.js +15 -0
- package/lib/src/components/markdownViewer/index.js +237 -0
- package/lib/src/components/markdownViewer/stylesheet.js +59 -0
- package/lib/src/components/markdownViewer/type.js +2 -0
- package/lib/src/components/markdownViewer/util.js +316 -0
- package/lib/src/components/modal/index.js +140 -0
- package/lib/src/components/modal/stylesheet.js +33 -0
- package/lib/src/components/modal/type.js +3 -0
- package/lib/src/components/monthSelector/index.js +271 -0
- package/lib/src/components/monthSelector/stylesheet.js +72 -0
- package/lib/src/components/monthSelector/type.js +4 -0
- package/lib/src/components/monthSelector/util.js +12 -0
- package/lib/src/components/notificationIndicator/index.js +91 -0
- package/lib/src/components/notificationIndicator/stylesheet.js +105 -0
- package/lib/src/components/notificationIndicator/type.js +1 -0
- package/lib/src/components/numericInput/index.js +319 -0
- package/lib/src/components/numericInput/stylesheet.js +230 -0
- package/lib/src/components/numericInput/type.js +3 -0
- package/lib/src/components/pageContainer/index.js +62 -0
- package/lib/src/components/pageContainer/stylesheet.js +10 -0
- package/lib/src/components/pageContainer/type.js +1 -0
- package/lib/src/components/radioButton/index.js +135 -0
- package/lib/src/components/radioButton/stylesheet.js +175 -0
- package/lib/src/components/radioButton/type.js +1 -0
- package/lib/src/components/rowCard/index.js +99 -0
- package/lib/src/components/rowCard/stylesheet.js +71 -0
- package/lib/src/components/rowCard/type.js +1 -0
- package/lib/src/components/selectBox/index.js +501 -0
- package/lib/src/components/selectBox/stylesheet.js +201 -0
- package/lib/src/components/selectBox/type.js +3 -0
- package/lib/src/components/selectSheet/index.js +179 -0
- package/lib/src/components/selectSheet/stylesheet.js +83 -0
- package/lib/src/components/selectSheet/type.js +2 -0
- package/lib/src/components/snackBar/index.js +249 -0
- package/lib/src/components/snackBar/stylesheet.js +118 -0
- package/lib/src/components/snackBar/type.js +3 -0
- package/lib/src/components/stateCard/index.js +69 -0
- package/lib/src/components/stateCard/stylesheet.js +90 -0
- package/lib/src/components/stateCard/type.js +1 -0
- package/lib/src/components/sticker/index.js +54 -0
- package/lib/src/components/sticker/stylesheet.js +83 -0
- package/lib/src/components/sticker/type.js +1 -0
- package/lib/src/components/switch/index.js +149 -0
- package/lib/src/components/switch/stylesheet.js +158 -0
- package/lib/src/components/switch/type.js +1 -0
- package/lib/src/components/text/index.js +15 -0
- package/lib/src/components/text/type.js +2 -0
- package/lib/src/components/textAreaInput/index.js +279 -0
- package/lib/src/components/textAreaInput/stylesheet.js +240 -0
- package/lib/src/components/textAreaInput/type.js +3 -0
- package/lib/src/components/textInput/index.js +273 -0
- package/lib/src/components/textInput/stylesheet.js +230 -0
- package/lib/src/components/textInput/type.js +3 -0
- package/lib/src/components/timeSelector/components/timeInput/index.js +112 -0
- package/lib/src/components/timeSelector/components/timeInput/stylesheet.js +21 -0
- package/lib/src/components/timeSelector/components/timeInput/type.js +2 -0
- package/lib/src/components/timeSelector/index.js +141 -0
- package/lib/src/components/timeSelector/stylesheet.js +37 -0
- package/lib/src/components/timeSelector/type.js +2 -0
- package/lib/src/components/toast/index.js +143 -0
- package/lib/src/components/toast/stylesheet.js +112 -0
- package/lib/src/components/toast/type.js +3 -0
- package/lib/src/components/yearSelector/index.js +269 -0
- package/lib/src/components/yearSelector/stylesheet.js +72 -0
- package/lib/src/components/yearSelector/type.js +4 -0
- package/lib/src/components/yearSelector/util.js +12 -0
- package/lib/src/context/bottomSheet.js +72 -0
- package/lib/src/context/dialog.js +72 -0
- package/lib/src/context/index.js +60 -0
- package/lib/src/context/localize.js +135 -0
- package/lib/src/context/modal.js +70 -0
- package/lib/src/context/snackBar.js +67 -0
- package/lib/src/context/theme.js +127 -0
- package/lib/src/context/toast.js +67 -0
- package/lib/src/core/hooks.js +16 -0
- package/lib/src/core/index.js +85 -0
- package/lib/src/helpers/index.js +4 -0
- package/lib/src/helpers/locale/index.js +20 -0
- package/lib/src/helpers/portalize/Consumer.js +31 -0
- package/lib/src/helpers/portalize/Host.js +55 -0
- package/lib/src/helpers/portalize/Manager.js +25 -0
- package/lib/src/helpers/portalize/Portal.js +7 -0
- package/lib/src/helpers/portalize/context/index.js +33 -0
- package/lib/src/helpers/portalize/hooks/useKey.js +33 -0
- package/lib/src/helpers/portalize/index.js +4 -0
- package/lib/src/helpers/theme/palette.js +63 -0
- package/lib/src/helpers/theme/shapes.js +75 -0
- package/lib/src/helpers/theme/typography.js +28 -0
- package/lib/src/index.js +7 -0
- package/lib/src/types/bottomSheet.js +1 -0
- package/lib/src/types/dialog.js +1 -0
- package/lib/src/types/icon.js +2 -0
- package/lib/src/types/index.js +11 -0
- package/lib/src/types/locale.js +1 -0
- package/lib/src/types/modal.js +1 -0
- package/lib/src/types/portalize.js +1 -0
- package/lib/src/types/snackBar.js +1 -0
- package/lib/src/types/theme.js +1 -0
- package/lib/src/types/toast.js +1 -0
- package/lib/src/utils/index.js +55 -0
- package/lib/src/variants/locales/default.json +208 -0
- package/lib/src/variants/themes/default.json +669 -0
- package/lib/tsconfig.build.tsbuildinfo +1 -0
- package/lib/typescript/package.json +4 -0
- package/lib/typescript/src/assets/svg/badgeAlertIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/badgeAlertIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/badgeDangerIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/badgeDangerIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/badgeInfoIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/badgeInfoIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/badgeQuestionMarkIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/badgeQuestionMarkIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/badgeRightIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/badgeRightIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/badgeSuccessIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/badgeSuccessIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/chevronRightIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/chevronRightIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/cleanIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/cleanIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/eyeClosedIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/eyeClosedIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/eyeOpenedIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/eyeOpenedIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/index.d.ts +11 -0
- package/lib/typescript/src/assets/svg/index.d.ts.map +1 -0
- package/lib/typescript/src/assets/svg/loadingIcon/index.d.ts +4 -0
- package/lib/typescript/src/assets/svg/loadingIcon/index.d.ts.map +1 -0
- package/lib/typescript/src/components/bottomSheet/index.d.ts +5 -0
- package/lib/typescript/src/components/bottomSheet/index.d.ts.map +1 -0
- package/lib/typescript/src/components/bottomSheet/stylesheet.d.ts +22 -0
- package/lib/typescript/src/components/bottomSheet/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/bottomSheet/type.d.ts +59 -0
- package/lib/typescript/src/components/bottomSheet/type.d.ts.map +1 -0
- package/lib/typescript/src/components/button/index.d.ts +10 -0
- package/lib/typescript/src/components/button/index.d.ts.map +1 -0
- package/lib/typescript/src/components/button/stylesheet.d.ts +51 -0
- package/lib/typescript/src/components/button/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/button/type.d.ts +84 -0
- package/lib/typescript/src/components/button/type.d.ts.map +1 -0
- package/lib/typescript/src/components/checkBox/index.d.ts +5 -0
- package/lib/typescript/src/components/checkBox/index.d.ts.map +1 -0
- package/lib/typescript/src/components/checkBox/stylesheet.d.ts +63 -0
- package/lib/typescript/src/components/checkBox/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/checkBox/type.d.ts +57 -0
- package/lib/typescript/src/components/checkBox/type.d.ts.map +1 -0
- package/lib/typescript/src/components/chip/index.d.ts +5 -0
- package/lib/typescript/src/components/chip/index.d.ts.map +1 -0
- package/lib/typescript/src/components/chip/stylesheet.d.ts +48 -0
- package/lib/typescript/src/components/chip/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/chip/type.d.ts +53 -0
- package/lib/typescript/src/components/chip/type.d.ts.map +1 -0
- package/lib/typescript/src/components/dateSelector/index.d.ts +5 -0
- package/lib/typescript/src/components/dateSelector/index.d.ts.map +1 -0
- package/lib/typescript/src/components/dateSelector/stylesheet.d.ts +49 -0
- package/lib/typescript/src/components/dateSelector/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/dateSelector/type.d.ts +46 -0
- package/lib/typescript/src/components/dateSelector/type.d.ts.map +1 -0
- package/lib/typescript/src/components/dateSelector/util.d.ts +3 -0
- package/lib/typescript/src/components/dateSelector/util.d.ts.map +1 -0
- package/lib/typescript/src/components/dateTimePicker/index.d.ts +5 -0
- package/lib/typescript/src/components/dateTimePicker/index.d.ts.map +1 -0
- package/lib/typescript/src/components/dateTimePicker/stylesheet.d.ts +85 -0
- package/lib/typescript/src/components/dateTimePicker/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/dateTimePicker/type.d.ts +173 -0
- package/lib/typescript/src/components/dateTimePicker/type.d.ts.map +1 -0
- package/lib/typescript/src/components/dateTimeSheet/index.d.ts +4 -0
- package/lib/typescript/src/components/dateTimeSheet/index.d.ts.map +1 -0
- package/lib/typescript/src/components/dateTimeSheet/stylesheet.d.ts +54 -0
- package/lib/typescript/src/components/dateTimeSheet/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/dateTimeSheet/type.d.ts +67 -0
- package/lib/typescript/src/components/dateTimeSheet/type.d.ts.map +1 -0
- package/lib/typescript/src/components/dialog/index.d.ts +5 -0
- package/lib/typescript/src/components/dialog/index.d.ts.map +1 -0
- package/lib/typescript/src/components/dialog/stylesheet.d.ts +48 -0
- package/lib/typescript/src/components/dialog/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/dialog/type.d.ts +62 -0
- package/lib/typescript/src/components/dialog/type.d.ts.map +1 -0
- package/lib/typescript/src/components/index.d.ts +38 -0
- package/lib/typescript/src/components/index.d.ts.map +1 -0
- package/lib/typescript/src/components/loading/index.d.ts +5 -0
- package/lib/typescript/src/components/loading/index.d.ts.map +1 -0
- package/lib/typescript/src/components/loading/stylesheet.d.ts +7 -0
- package/lib/typescript/src/components/loading/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/loading/type.d.ts +12 -0
- package/lib/typescript/src/components/loading/type.d.ts.map +1 -0
- package/lib/typescript/src/components/markdownViewer/constant.d.ts +3 -0
- package/lib/typescript/src/components/markdownViewer/constant.d.ts.map +1 -0
- package/lib/typescript/src/components/markdownViewer/index.d.ts +5 -0
- package/lib/typescript/src/components/markdownViewer/index.d.ts.map +1 -0
- package/lib/typescript/src/components/markdownViewer/stylesheet.d.ts +57 -0
- package/lib/typescript/src/components/markdownViewer/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/markdownViewer/type.d.ts +57 -0
- package/lib/typescript/src/components/markdownViewer/type.d.ts.map +1 -0
- package/lib/typescript/src/components/markdownViewer/util.d.ts +53 -0
- package/lib/typescript/src/components/markdownViewer/util.d.ts.map +1 -0
- package/lib/typescript/src/components/modal/index.d.ts +5 -0
- package/lib/typescript/src/components/modal/index.d.ts.map +1 -0
- package/lib/typescript/src/components/modal/stylesheet.d.ts +33 -0
- package/lib/typescript/src/components/modal/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/modal/type.d.ts +45 -0
- package/lib/typescript/src/components/modal/type.d.ts.map +1 -0
- package/lib/typescript/src/components/monthSelector/index.d.ts +5 -0
- package/lib/typescript/src/components/monthSelector/index.d.ts.map +1 -0
- package/lib/typescript/src/components/monthSelector/stylesheet.d.ts +49 -0
- package/lib/typescript/src/components/monthSelector/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/monthSelector/type.d.ts +46 -0
- package/lib/typescript/src/components/monthSelector/type.d.ts.map +1 -0
- package/lib/typescript/src/components/monthSelector/util.d.ts +3 -0
- package/lib/typescript/src/components/monthSelector/util.d.ts.map +1 -0
- package/lib/typescript/src/components/notificationIndicator/index.d.ts +5 -0
- package/lib/typescript/src/components/notificationIndicator/index.d.ts.map +1 -0
- package/lib/typescript/src/components/notificationIndicator/stylesheet.d.ts +46 -0
- package/lib/typescript/src/components/notificationIndicator/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/notificationIndicator/type.d.ts +52 -0
- package/lib/typescript/src/components/notificationIndicator/type.d.ts.map +1 -0
- package/lib/typescript/src/components/numericInput/index.d.ts +5 -0
- package/lib/typescript/src/components/numericInput/index.d.ts.map +1 -0
- package/lib/typescript/src/components/numericInput/stylesheet.d.ts +103 -0
- package/lib/typescript/src/components/numericInput/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/numericInput/type.d.ts +87 -0
- package/lib/typescript/src/components/numericInput/type.d.ts.map +1 -0
- package/lib/typescript/src/components/pageContainer/index.d.ts +5 -0
- package/lib/typescript/src/components/pageContainer/index.d.ts.map +1 -0
- package/lib/typescript/src/components/pageContainer/stylesheet.d.ts +10 -0
- package/lib/typescript/src/components/pageContainer/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/pageContainer/type.d.ts +22 -0
- package/lib/typescript/src/components/pageContainer/type.d.ts.map +1 -0
- package/lib/typescript/src/components/radioButton/index.d.ts +5 -0
- package/lib/typescript/src/components/radioButton/index.d.ts.map +1 -0
- package/lib/typescript/src/components/radioButton/stylesheet.d.ts +67 -0
- package/lib/typescript/src/components/radioButton/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/radioButton/type.d.ts +58 -0
- package/lib/typescript/src/components/radioButton/type.d.ts.map +1 -0
- package/lib/typescript/src/components/rowCard/index.d.ts +5 -0
- package/lib/typescript/src/components/rowCard/index.d.ts.map +1 -0
- package/lib/typescript/src/components/rowCard/stylesheet.d.ts +45 -0
- package/lib/typescript/src/components/rowCard/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/rowCard/type.d.ts +49 -0
- package/lib/typescript/src/components/rowCard/type.d.ts.map +1 -0
- package/lib/typescript/src/components/selectBox/index.d.ts +4 -0
- package/lib/typescript/src/components/selectBox/index.d.ts.map +1 -0
- package/lib/typescript/src/components/selectBox/stylesheet.d.ts +86 -0
- package/lib/typescript/src/components/selectBox/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/selectBox/type.d.ts +151 -0
- package/lib/typescript/src/components/selectBox/type.d.ts.map +1 -0
- package/lib/typescript/src/components/selectSheet/index.d.ts +4 -0
- package/lib/typescript/src/components/selectSheet/index.d.ts.map +1 -0
- package/lib/typescript/src/components/selectSheet/stylesheet.d.ts +54 -0
- package/lib/typescript/src/components/selectSheet/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/selectSheet/type.d.ts +80 -0
- package/lib/typescript/src/components/selectSheet/type.d.ts.map +1 -0
- package/lib/typescript/src/components/snackBar/index.d.ts +5 -0
- package/lib/typescript/src/components/snackBar/index.d.ts.map +1 -0
- package/lib/typescript/src/components/snackBar/stylesheet.d.ts +50 -0
- package/lib/typescript/src/components/snackBar/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/snackBar/type.d.ts +70 -0
- package/lib/typescript/src/components/snackBar/type.d.ts.map +1 -0
- package/lib/typescript/src/components/stateCard/index.d.ts +5 -0
- package/lib/typescript/src/components/stateCard/index.d.ts.map +1 -0
- package/lib/typescript/src/components/stateCard/stylesheet.d.ts +43 -0
- package/lib/typescript/src/components/stateCard/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/stateCard/type.d.ts +35 -0
- package/lib/typescript/src/components/stateCard/type.d.ts.map +1 -0
- package/lib/typescript/src/components/sticker/index.d.ts +5 -0
- package/lib/typescript/src/components/sticker/index.d.ts.map +1 -0
- package/lib/typescript/src/components/sticker/stylesheet.d.ts +34 -0
- package/lib/typescript/src/components/sticker/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/sticker/type.d.ts +45 -0
- package/lib/typescript/src/components/sticker/type.d.ts.map +1 -0
- package/lib/typescript/src/components/switch/index.d.ts +5 -0
- package/lib/typescript/src/components/switch/index.d.ts.map +1 -0
- package/lib/typescript/src/components/switch/stylesheet.d.ts +64 -0
- package/lib/typescript/src/components/switch/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/switch/type.d.ts +56 -0
- package/lib/typescript/src/components/switch/type.d.ts.map +1 -0
- package/lib/typescript/src/components/text/index.d.ts +5 -0
- package/lib/typescript/src/components/text/index.d.ts.map +1 -0
- package/lib/typescript/src/components/text/type.d.ts +17 -0
- package/lib/typescript/src/components/text/type.d.ts.map +1 -0
- package/lib/typescript/src/components/textAreaInput/index.d.ts +5 -0
- package/lib/typescript/src/components/textAreaInput/index.d.ts.map +1 -0
- package/lib/typescript/src/components/textAreaInput/stylesheet.d.ts +113 -0
- package/lib/typescript/src/components/textAreaInput/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/textAreaInput/type.d.ts +86 -0
- package/lib/typescript/src/components/textAreaInput/type.d.ts.map +1 -0
- package/lib/typescript/src/components/textInput/index.d.ts +5 -0
- package/lib/typescript/src/components/textInput/index.d.ts.map +1 -0
- package/lib/typescript/src/components/textInput/stylesheet.d.ts +104 -0
- package/lib/typescript/src/components/textInput/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/textInput/type.d.ts +86 -0
- package/lib/typescript/src/components/textInput/type.d.ts.map +1 -0
- package/lib/typescript/src/components/timeSelector/components/timeInput/index.d.ts +5 -0
- package/lib/typescript/src/components/timeSelector/components/timeInput/index.d.ts.map +1 -0
- package/lib/typescript/src/components/timeSelector/components/timeInput/stylesheet.d.ts +17 -0
- package/lib/typescript/src/components/timeSelector/components/timeInput/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/timeSelector/components/timeInput/type.d.ts +32 -0
- package/lib/typescript/src/components/timeSelector/components/timeInput/type.d.ts.map +1 -0
- package/lib/typescript/src/components/timeSelector/index.d.ts +4 -0
- package/lib/typescript/src/components/timeSelector/index.d.ts.map +1 -0
- package/lib/typescript/src/components/timeSelector/stylesheet.d.ts +27 -0
- package/lib/typescript/src/components/timeSelector/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/timeSelector/type.d.ts +36 -0
- package/lib/typescript/src/components/timeSelector/type.d.ts.map +1 -0
- package/lib/typescript/src/components/toast/index.d.ts +5 -0
- package/lib/typescript/src/components/toast/index.d.ts.map +1 -0
- package/lib/typescript/src/components/toast/stylesheet.d.ts +49 -0
- package/lib/typescript/src/components/toast/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/toast/type.d.ts +64 -0
- package/lib/typescript/src/components/toast/type.d.ts.map +1 -0
- package/lib/typescript/src/components/yearSelector/index.d.ts +5 -0
- package/lib/typescript/src/components/yearSelector/index.d.ts.map +1 -0
- package/lib/typescript/src/components/yearSelector/stylesheet.d.ts +49 -0
- package/lib/typescript/src/components/yearSelector/stylesheet.d.ts.map +1 -0
- package/lib/typescript/src/components/yearSelector/type.d.ts +43 -0
- package/lib/typescript/src/components/yearSelector/type.d.ts.map +1 -0
- package/lib/typescript/src/components/yearSelector/util.d.ts +3 -0
- package/lib/typescript/src/components/yearSelector/util.d.ts.map +1 -0
- package/lib/typescript/src/context/bottomSheet.d.ts +18 -0
- package/lib/typescript/src/context/bottomSheet.d.ts.map +1 -0
- package/lib/typescript/src/context/dialog.d.ts +18 -0
- package/lib/typescript/src/context/dialog.d.ts.map +1 -0
- package/lib/typescript/src/context/index.d.ts +24 -0
- package/lib/typescript/src/context/index.d.ts.map +1 -0
- package/lib/typescript/src/context/localize.d.ts +24 -0
- package/lib/typescript/src/context/localize.d.ts.map +1 -0
- package/lib/typescript/src/context/modal.d.ts +18 -0
- package/lib/typescript/src/context/modal.d.ts.map +1 -0
- package/lib/typescript/src/context/snackBar.d.ts +18 -0
- package/lib/typescript/src/context/snackBar.d.ts.map +1 -0
- package/lib/typescript/src/context/theme.d.ts +32 -0
- package/lib/typescript/src/context/theme.d.ts.map +1 -0
- package/lib/typescript/src/context/toast.d.ts +18 -0
- package/lib/typescript/src/context/toast.d.ts.map +1 -0
- package/lib/typescript/src/core/hooks.d.ts +18 -0
- package/lib/typescript/src/core/hooks.d.ts.map +1 -0
- package/lib/typescript/src/core/index.d.ts +13 -0
- package/lib/typescript/src/core/index.d.ts.map +1 -0
- package/lib/typescript/src/helpers/index.d.ts +5 -0
- package/lib/typescript/src/helpers/index.d.ts.map +1 -0
- package/lib/typescript/src/helpers/locale/index.d.ts +8 -0
- package/lib/typescript/src/helpers/locale/index.d.ts.map +1 -0
- package/lib/typescript/src/helpers/portalize/Consumer.d.ts +10 -0
- package/lib/typescript/src/helpers/portalize/Consumer.d.ts.map +1 -0
- package/lib/typescript/src/helpers/portalize/Host.d.ts +17 -0
- package/lib/typescript/src/helpers/portalize/Host.d.ts.map +1 -0
- package/lib/typescript/src/helpers/portalize/Manager.d.ts +10 -0
- package/lib/typescript/src/helpers/portalize/Manager.d.ts.map +1 -0
- package/lib/typescript/src/helpers/portalize/Portal.d.ts +8 -0
- package/lib/typescript/src/helpers/portalize/Portal.d.ts.map +1 -0
- package/lib/typescript/src/helpers/portalize/context/index.d.ts +14 -0
- package/lib/typescript/src/helpers/portalize/context/index.d.ts.map +1 -0
- package/lib/typescript/src/helpers/portalize/hooks/useKey.d.ts +7 -0
- package/lib/typescript/src/helpers/portalize/hooks/useKey.d.ts.map +1 -0
- package/lib/typescript/src/helpers/portalize/index.d.ts +5 -0
- package/lib/typescript/src/helpers/portalize/index.d.ts.map +1 -0
- package/lib/typescript/src/helpers/theme/palette.d.ts +3 -0
- package/lib/typescript/src/helpers/theme/palette.d.ts.map +1 -0
- package/lib/typescript/src/helpers/theme/shapes.d.ts +33 -0
- package/lib/typescript/src/helpers/theme/shapes.d.ts.map +1 -0
- package/lib/typescript/src/helpers/theme/typography.d.ts +22 -0
- package/lib/typescript/src/helpers/theme/typography.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +10 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/types/bottomSheet.d.ts +20 -0
- package/lib/typescript/src/types/bottomSheet.d.ts.map +1 -0
- package/lib/typescript/src/types/dialog.d.ts +20 -0
- package/lib/typescript/src/types/dialog.d.ts.map +1 -0
- package/lib/typescript/src/types/icon.d.ts +14 -0
- package/lib/typescript/src/types/icon.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts +134 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/lib/typescript/src/types/locale.d.ts +17 -0
- package/lib/typescript/src/types/locale.d.ts.map +1 -0
- package/lib/typescript/src/types/modal.d.ts +20 -0
- package/lib/typescript/src/types/modal.d.ts.map +1 -0
- package/lib/typescript/src/types/portalize.d.ts +4 -0
- package/lib/typescript/src/types/portalize.d.ts.map +1 -0
- package/lib/typescript/src/types/snackBar.d.ts +19 -0
- package/lib/typescript/src/types/snackBar.d.ts.map +1 -0
- package/lib/typescript/src/types/theme.d.ts +25 -0
- package/lib/typescript/src/types/theme.d.ts.map +1 -0
- package/lib/typescript/src/types/toast.d.ts +19 -0
- package/lib/typescript/src/types/toast.d.ts.map +1 -0
- package/lib/typescript/src/utils/index.d.ts +5 -0
- package/lib/typescript/src/utils/index.d.ts.map +1 -0
- package/lib/typescript/src/variants/locales/default.json +208 -0
- package/lib/typescript/src/variants/themes/default.json +669 -0
- package/package.json +213 -0
- package/react-native.config.js +5 -0
- package/src/assets/fonts/Geist-Black.ttf +0 -0
- package/src/assets/fonts/Geist-Bold.ttf +0 -0
- package/src/assets/fonts/Geist-ExtraBold.ttf +0 -0
- package/src/assets/fonts/Geist-ExtraLight.ttf +0 -0
- package/src/assets/fonts/Geist-Light.ttf +0 -0
- package/src/assets/fonts/Geist-Medium.ttf +0 -0
- package/src/assets/fonts/Geist-Regular.ttf +0 -0
- package/src/assets/fonts/Geist-SemiBold.ttf +0 -0
- package/src/assets/fonts/Geist-Thin.ttf +0 -0
- package/src/assets/svg/badgeAlertIcon/index.tsx +42 -0
- package/src/assets/svg/badgeDangerIcon/index.tsx +40 -0
- package/src/assets/svg/badgeInfoIcon/index.tsx +40 -0
- package/src/assets/svg/badgeQuestionMarkIcon/index.tsx +50 -0
- package/src/assets/svg/badgeRightIcon/index.tsx +40 -0
- package/src/assets/svg/badgeSuccessIcon/index.tsx +50 -0
- package/src/assets/svg/chevronRightIcon/index.tsx +40 -0
- package/src/assets/svg/cleanIcon/index.tsx +40 -0
- package/src/assets/svg/eyeClosedIcon/index.tsx +50 -0
- package/src/assets/svg/eyeOpenedIcon/index.tsx +50 -0
- package/src/assets/svg/index.ts +39 -0
- package/src/assets/svg/loadingIcon/index.tsx +95 -0
- package/src/components/bottomSheet/index.tsx +1218 -0
- package/src/components/bottomSheet/stylesheet.ts +28 -0
- package/src/components/bottomSheet/type.ts +68 -0
- package/src/components/button/index.tsx +191 -0
- package/src/components/button/stylesheet.ts +294 -0
- package/src/components/button/type.ts +108 -0
- package/src/components/checkBox/index.tsx +274 -0
- package/src/components/checkBox/stylesheet.ts +223 -0
- package/src/components/checkBox/type.ts +69 -0
- package/src/components/chip/index.tsx +183 -0
- package/src/components/chip/stylesheet.ts +172 -0
- package/src/components/chip/type.ts +68 -0
- package/src/components/dateSelector/index.tsx +434 -0
- package/src/components/dateSelector/stylesheet.ts +92 -0
- package/src/components/dateSelector/type.ts +59 -0
- package/src/components/dateSelector/util.ts +20 -0
- package/src/components/dateTimePicker/index.tsx +977 -0
- package/src/components/dateTimePicker/stylesheet.ts +252 -0
- package/src/components/dateTimePicker/type.ts +214 -0
- package/src/components/dateTimeSheet/index.tsx +418 -0
- package/src/components/dateTimeSheet/stylesheet.ts +99 -0
- package/src/components/dateTimeSheet/type.ts +98 -0
- package/src/components/dialog/index.tsx +336 -0
- package/src/components/dialog/stylesheet.ts +129 -0
- package/src/components/dialog/type.ts +79 -0
- package/src/components/index.ts +163 -0
- package/src/components/loading/index.tsx +26 -0
- package/src/components/loading/stylesheet.ts +10 -0
- package/src/components/loading/type.ts +18 -0
- package/src/components/markdownViewer/constant.ts +19 -0
- package/src/components/markdownViewer/index.tsx +503 -0
- package/src/components/markdownViewer/stylesheet.ts +72 -0
- package/src/components/markdownViewer/type.ts +87 -0
- package/src/components/markdownViewer/util.ts +453 -0
- package/src/components/modal/index.tsx +234 -0
- package/src/components/modal/stylesheet.ts +36 -0
- package/src/components/modal/type.ts +58 -0
- package/src/components/monthSelector/index.tsx +447 -0
- package/src/components/monthSelector/stylesheet.ts +89 -0
- package/src/components/monthSelector/type.ts +59 -0
- package/src/components/monthSelector/util.ts +20 -0
- package/src/components/notificationIndicator/index.tsx +172 -0
- package/src/components/notificationIndicator/stylesheet.ts +154 -0
- package/src/components/notificationIndicator/type.ts +65 -0
- package/src/components/numericInput/index.tsx +617 -0
- package/src/components/numericInput/stylesheet.ts +278 -0
- package/src/components/numericInput/type.ts +109 -0
- package/src/components/pageContainer/index.tsx +119 -0
- package/src/components/pageContainer/stylesheet.ts +13 -0
- package/src/components/pageContainer/type.ts +30 -0
- package/src/components/radioButton/index.tsx +269 -0
- package/src/components/radioButton/stylesheet.ts +233 -0
- package/src/components/radioButton/type.ts +70 -0
- package/src/components/rowCard/index.tsx +231 -0
- package/src/components/rowCard/stylesheet.ts +95 -0
- package/src/components/rowCard/type.ts +59 -0
- package/src/components/selectBox/index.tsx +867 -0
- package/src/components/selectBox/stylesheet.ts +250 -0
- package/src/components/selectBox/type.ts +193 -0
- package/src/components/selectSheet/index.tsx +372 -0
- package/src/components/selectSheet/stylesheet.ts +102 -0
- package/src/components/selectSheet/type.ts +103 -0
- package/src/components/snackBar/index.tsx +430 -0
- package/src/components/snackBar/stylesheet.ts +164 -0
- package/src/components/snackBar/type.ts +85 -0
- package/src/components/stateCard/index.tsx +152 -0
- package/src/components/stateCard/stylesheet.ts +121 -0
- package/src/components/stateCard/type.ts +47 -0
- package/src/components/sticker/index.tsx +123 -0
- package/src/components/sticker/stylesheet.ts +124 -0
- package/src/components/sticker/type.ts +60 -0
- package/src/components/switch/index.tsx +284 -0
- package/src/components/switch/stylesheet.ts +214 -0
- package/src/components/switch/type.ts +68 -0
- package/src/components/text/index.tsx +42 -0
- package/src/components/text/type.ts +25 -0
- package/src/components/textAreaInput/index.tsx +551 -0
- package/src/components/textAreaInput/stylesheet.ts +294 -0
- package/src/components/textAreaInput/type.ts +104 -0
- package/src/components/textInput/index.tsx +555 -0
- package/src/components/textInput/stylesheet.ts +279 -0
- package/src/components/textInput/type.ts +105 -0
- package/src/components/timeSelector/components/timeInput/index.tsx +172 -0
- package/src/components/timeSelector/components/timeInput/stylesheet.ts +38 -0
- package/src/components/timeSelector/components/timeInput/type.ts +47 -0
- package/src/components/timeSelector/index.tsx +433 -0
- package/src/components/timeSelector/stylesheet.ts +59 -0
- package/src/components/timeSelector/type.ts +48 -0
- package/src/components/toast/index.tsx +272 -0
- package/src/components/toast/stylesheet.ts +156 -0
- package/src/components/toast/type.ts +79 -0
- package/src/components/yearSelector/index.tsx +444 -0
- package/src/components/yearSelector/stylesheet.ts +89 -0
- package/src/components/yearSelector/type.ts +55 -0
- package/src/components/yearSelector/util.ts +20 -0
- package/src/context/bottomSheet.tsx +121 -0
- package/src/context/dialog.tsx +120 -0
- package/src/context/index.tsx +110 -0
- package/src/context/localize.tsx +202 -0
- package/src/context/modal.tsx +116 -0
- package/src/context/snackBar.tsx +114 -0
- package/src/context/theme.tsx +217 -0
- package/src/context/toast.tsx +114 -0
- package/src/core/hooks.ts +33 -0
- package/src/core/index.tsx +126 -0
- package/src/helpers/index.ts +20 -0
- package/src/helpers/locale/index.ts +28 -0
- package/src/helpers/portalize/Consumer.tsx +53 -0
- package/src/helpers/portalize/Host.tsx +122 -0
- package/src/helpers/portalize/Manager.tsx +75 -0
- package/src/helpers/portalize/Portal.tsx +30 -0
- package/src/helpers/portalize/context/index.ts +49 -0
- package/src/helpers/portalize/hooks/useKey.ts +49 -0
- package/src/helpers/portalize/index.tsx +15 -0
- package/src/helpers/theme/palette.ts +90 -0
- package/src/helpers/theme/shapes.ts +106 -0
- package/src/helpers/theme/typography.ts +46 -0
- package/src/index.tsx +117 -0
- package/src/types/bottomSheet.ts +23 -0
- package/src/types/dialog.ts +23 -0
- package/src/types/icon.ts +20 -0
- package/src/types/index.ts +217 -0
- package/src/types/locale.ts +30 -0
- package/src/types/modal.ts +25 -0
- package/src/types/portalize.ts +3 -0
- package/src/types/snackBar.ts +24 -0
- package/src/types/theme.ts +30 -0
- package/src/types/toast.ts +24 -0
- package/src/utils/index.ts +65 -0
- package/src/variants/locales/default.json +208 -0
- package/src/variants/themes/default.json +669 -0
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useEffect, useRef } from "react";
|
|
4
|
+
import { TouchableWithoutFeedback, Animated, Easing, View } from "react-native";
|
|
5
|
+
import stylesheet, { getToastType, useStyles } from "./stylesheet.js";
|
|
6
|
+
import { NCoreUIKitTheme } from "../../core/hooks.js";
|
|
7
|
+
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|
8
|
+
import { X as XIcon } from "lucide-react-native";
|
|
9
|
+
import { Portal } from "../../helpers/portalize/index.js";
|
|
10
|
+
import Button from "../button/index.js";
|
|
11
|
+
import Text from "../text/index.js";
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
const Toast = ({
|
|
14
|
+
isCloseOnPressActionButton = true,
|
|
15
|
+
closeAnimationDelay = 350,
|
|
16
|
+
openAnimationDelay = 200,
|
|
17
|
+
contentContainerStyle,
|
|
18
|
+
autoCloseDelay = 3000,
|
|
19
|
+
isCloseOnPress = true,
|
|
20
|
+
icon: CustomIcon,
|
|
21
|
+
type = "neutral",
|
|
22
|
+
isShowAction,
|
|
23
|
+
customTheme,
|
|
24
|
+
onClosed,
|
|
25
|
+
subTitle,
|
|
26
|
+
children,
|
|
27
|
+
action,
|
|
28
|
+
style,
|
|
29
|
+
title,
|
|
30
|
+
id
|
|
31
|
+
}) => {
|
|
32
|
+
const {
|
|
33
|
+
radiuses,
|
|
34
|
+
colors,
|
|
35
|
+
spaces
|
|
36
|
+
} = NCoreUIKitTheme.useContext(customTheme);
|
|
37
|
+
const {
|
|
38
|
+
bottom
|
|
39
|
+
} = useSafeAreaInsets();
|
|
40
|
+
const TRANSFORM_DISTANCE = 75;
|
|
41
|
+
const transformAnim = useRef(new Animated.Value(TRANSFORM_DISTANCE)).current;
|
|
42
|
+
const opacityAnim = useRef(new Animated.Value(0)).current;
|
|
43
|
+
const currentType = getToastType({
|
|
44
|
+
type
|
|
45
|
+
});
|
|
46
|
+
const {
|
|
47
|
+
contentContainer: contentContainerDynamicStyle,
|
|
48
|
+
containerObject: containerObjectDynamicStyle,
|
|
49
|
+
iconContainer: iconContainerDynamicStyle,
|
|
50
|
+
container: containerDynamicStyle,
|
|
51
|
+
subTitle: subTitleDynamicStyle,
|
|
52
|
+
action: actionDynamicStyle,
|
|
53
|
+
title: titleDynamicStyle
|
|
54
|
+
} = useStyles({
|
|
55
|
+
safeAreaBottom: bottom,
|
|
56
|
+
currentType,
|
|
57
|
+
radiuses,
|
|
58
|
+
subTitle,
|
|
59
|
+
spaces,
|
|
60
|
+
colors,
|
|
61
|
+
type
|
|
62
|
+
});
|
|
63
|
+
useEffect(() => {
|
|
64
|
+
Animated.parallel([Animated.timing(opacityAnim, {
|
|
65
|
+
duration: openAnimationDelay,
|
|
66
|
+
useNativeDriver: true,
|
|
67
|
+
easing: Easing.linear,
|
|
68
|
+
toValue: 1
|
|
69
|
+
}), Animated.timing(transformAnim, {
|
|
70
|
+
duration: openAnimationDelay,
|
|
71
|
+
useNativeDriver: true,
|
|
72
|
+
easing: Easing.linear,
|
|
73
|
+
toValue: 0
|
|
74
|
+
})]).start();
|
|
75
|
+
setTimeout(() => {
|
|
76
|
+
closeAnimation();
|
|
77
|
+
}, autoCloseDelay);
|
|
78
|
+
}, []);
|
|
79
|
+
const closeAnimation = _onClosed => {
|
|
80
|
+
Animated.parallel([Animated.timing(transformAnim, {
|
|
81
|
+
duration: closeAnimationDelay,
|
|
82
|
+
toValue: TRANSFORM_DISTANCE,
|
|
83
|
+
useNativeDriver: true,
|
|
84
|
+
easing: Easing.linear
|
|
85
|
+
}), Animated.timing(opacityAnim, {
|
|
86
|
+
duration: closeAnimationDelay,
|
|
87
|
+
useNativeDriver: true,
|
|
88
|
+
easing: Easing.linear,
|
|
89
|
+
toValue: 0
|
|
90
|
+
})]).start(({
|
|
91
|
+
finished
|
|
92
|
+
}) => {
|
|
93
|
+
if (finished) {
|
|
94
|
+
if (onClosed) onClosed({
|
|
95
|
+
id
|
|
96
|
+
});
|
|
97
|
+
if (_onClosed) _onClosed({
|
|
98
|
+
id
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
};
|
|
103
|
+
const renderIcon = () => {
|
|
104
|
+
if (!CustomIcon) {
|
|
105
|
+
return null;
|
|
106
|
+
}
|
|
107
|
+
return /*#__PURE__*/_jsx(View, {
|
|
108
|
+
style: [stylesheet.iconContainer, iconContainerDynamicStyle],
|
|
109
|
+
children: /*#__PURE__*/_jsx(CustomIcon, {
|
|
110
|
+
color: currentType.iconColor,
|
|
111
|
+
size: 18
|
|
112
|
+
})
|
|
113
|
+
});
|
|
114
|
+
};
|
|
115
|
+
const renderContent = () => {
|
|
116
|
+
return /*#__PURE__*/_jsxs(View, {
|
|
117
|
+
style: [contentContainerStyle, stylesheet.contentContainer, contentContainerDynamicStyle],
|
|
118
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
119
|
+
color: currentType.titleColor,
|
|
120
|
+
numberOfLines: 3,
|
|
121
|
+
style: {
|
|
122
|
+
...stylesheet.title,
|
|
123
|
+
...titleDynamicStyle
|
|
124
|
+
},
|
|
125
|
+
children: title
|
|
126
|
+
}), subTitle ? /*#__PURE__*/_jsx(Text, {
|
|
127
|
+
color: currentType.subTitleColor,
|
|
128
|
+
variant: "labelSmallSize",
|
|
129
|
+
numberOfLines: 2,
|
|
130
|
+
style: {
|
|
131
|
+
...stylesheet.subTitle,
|
|
132
|
+
...subTitleDynamicStyle
|
|
133
|
+
},
|
|
134
|
+
children: subTitle
|
|
135
|
+
}) : null]
|
|
136
|
+
});
|
|
137
|
+
};
|
|
138
|
+
const renderAction = () => {
|
|
139
|
+
if (!isShowAction) {
|
|
140
|
+
return null;
|
|
141
|
+
}
|
|
142
|
+
return /*#__PURE__*/_jsx(Button, {
|
|
143
|
+
title: action && action.title ? action.title : undefined,
|
|
144
|
+
isCustomPadding: true,
|
|
145
|
+
spreadBehaviour: "free",
|
|
146
|
+
onPress: () => {
|
|
147
|
+
if (isCloseOnPressActionButton) closeAnimation();
|
|
148
|
+
if (action && action.onPress) action.onPress({
|
|
149
|
+
closeAnimation: ({
|
|
150
|
+
onClosed: _onClosed
|
|
151
|
+
}) => closeAnimation(_onClosed)
|
|
152
|
+
});
|
|
153
|
+
},
|
|
154
|
+
icon: () => {
|
|
155
|
+
if (action?.title) {
|
|
156
|
+
return null;
|
|
157
|
+
}
|
|
158
|
+
return /*#__PURE__*/_jsx(XIcon, {
|
|
159
|
+
color: colors.content.text[currentType.actionColor],
|
|
160
|
+
size: 18
|
|
161
|
+
});
|
|
162
|
+
},
|
|
163
|
+
style: {
|
|
164
|
+
...action?.style,
|
|
165
|
+
...actionDynamicStyle
|
|
166
|
+
},
|
|
167
|
+
variant: "ghost",
|
|
168
|
+
size: "small",
|
|
169
|
+
type: type
|
|
170
|
+
});
|
|
171
|
+
};
|
|
172
|
+
const renderContainer = () => {
|
|
173
|
+
return /*#__PURE__*/_jsxs(View, {
|
|
174
|
+
style: [stylesheet.containerObject, containerObjectDynamicStyle],
|
|
175
|
+
children: [renderIcon(), renderContent(), renderAction()]
|
|
176
|
+
});
|
|
177
|
+
};
|
|
178
|
+
return /*#__PURE__*/_jsx(Portal, {
|
|
179
|
+
name: "toast-system",
|
|
180
|
+
children: /*#__PURE__*/_jsx(Animated.View, {
|
|
181
|
+
style: [style, stylesheet.container, containerDynamicStyle, {
|
|
182
|
+
opacity: opacityAnim,
|
|
183
|
+
transform: [{
|
|
184
|
+
translateY: transformAnim
|
|
185
|
+
}]
|
|
186
|
+
}],
|
|
187
|
+
children: /*#__PURE__*/_jsx(TouchableWithoutFeedback, {
|
|
188
|
+
onPress: () => {
|
|
189
|
+
if (isCloseOnPress) {
|
|
190
|
+
closeAnimation();
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
children: children ? children : renderContainer()
|
|
194
|
+
})
|
|
195
|
+
})
|
|
196
|
+
});
|
|
197
|
+
};
|
|
198
|
+
export default Toast;
|
|
199
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["useEffect","useRef","TouchableWithoutFeedback","Animated","Easing","View","stylesheet","getToastType","useStyles","NCoreUIKitTheme","useSafeAreaInsets","X","XIcon","Portal","Button","Text","jsx","_jsx","jsxs","_jsxs","Toast","isCloseOnPressActionButton","closeAnimationDelay","openAnimationDelay","contentContainerStyle","autoCloseDelay","isCloseOnPress","icon","CustomIcon","type","isShowAction","customTheme","onClosed","subTitle","children","action","style","title","id","radiuses","colors","spaces","useContext","bottom","TRANSFORM_DISTANCE","transformAnim","Value","current","opacityAnim","currentType","contentContainer","contentContainerDynamicStyle","containerObject","containerObjectDynamicStyle","iconContainer","iconContainerDynamicStyle","container","containerDynamicStyle","subTitleDynamicStyle","actionDynamicStyle","titleDynamicStyle","safeAreaBottom","parallel","timing","duration","useNativeDriver","easing","linear","toValue","start","setTimeout","closeAnimation","_onClosed","finished","renderIcon","color","iconColor","size","renderContent","titleColor","numberOfLines","subTitleColor","variant","renderAction","undefined","isCustomPadding","spreadBehaviour","onPress","content","text","actionColor","renderContainer","name","opacity","transform","translateY"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/toast/index.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { StyleSheet } from "react-native";
|
|
4
|
+
import { windowWidth } from "../../utils/index.js";
|
|
5
|
+
export const TOAST_TYPE_STYLES = {
|
|
6
|
+
primary: {
|
|
7
|
+
actionColor: "onPrimary",
|
|
8
|
+
iconColor: "emphasized",
|
|
9
|
+
containerColor: "mid",
|
|
10
|
+
subTitleColor: "low",
|
|
11
|
+
titleColor: "mid"
|
|
12
|
+
},
|
|
13
|
+
danger: {
|
|
14
|
+
subTitleColor: "dangerLow",
|
|
15
|
+
containerColor: "danger",
|
|
16
|
+
actionColor: "danger",
|
|
17
|
+
titleColor: "danger",
|
|
18
|
+
iconColor: "danger"
|
|
19
|
+
},
|
|
20
|
+
success: {
|
|
21
|
+
subTitleColor: "successLow",
|
|
22
|
+
containerColor: "success",
|
|
23
|
+
actionColor: "success",
|
|
24
|
+
titleColor: "success",
|
|
25
|
+
iconColor: "success"
|
|
26
|
+
},
|
|
27
|
+
warning: {
|
|
28
|
+
subTitleColor: "warningLow",
|
|
29
|
+
containerColor: "warning",
|
|
30
|
+
actionColor: "warning",
|
|
31
|
+
titleColor: "warning",
|
|
32
|
+
iconColor: "warning"
|
|
33
|
+
},
|
|
34
|
+
info: {
|
|
35
|
+
subTitleColor: "infoLow",
|
|
36
|
+
containerColor: "info",
|
|
37
|
+
actionColor: "info",
|
|
38
|
+
titleColor: "info",
|
|
39
|
+
iconColor: "info"
|
|
40
|
+
},
|
|
41
|
+
neutral: {
|
|
42
|
+
containerColor: "mid",
|
|
43
|
+
subTitleColor: "low",
|
|
44
|
+
actionColor: "mid",
|
|
45
|
+
titleColor: "mid",
|
|
46
|
+
iconColor: "mid"
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
export const getToastType = ({
|
|
50
|
+
type
|
|
51
|
+
}) => {
|
|
52
|
+
const currentType = TOAST_TYPE_STYLES[type];
|
|
53
|
+
return currentType;
|
|
54
|
+
};
|
|
55
|
+
const stylesheet = StyleSheet.create({
|
|
56
|
+
container: {
|
|
57
|
+
position: "absolute",
|
|
58
|
+
alignSelf: "center",
|
|
59
|
+
zIndex: 99998
|
|
60
|
+
},
|
|
61
|
+
containerObject: {
|
|
62
|
+
flexDirection: "row",
|
|
63
|
+
alignItems: "center"
|
|
64
|
+
},
|
|
65
|
+
contentContainer: {
|
|
66
|
+
justifyContent: "center",
|
|
67
|
+
alignItems: "flex-start",
|
|
68
|
+
flexDirection: "column",
|
|
69
|
+
flexShrink: 1
|
|
70
|
+
},
|
|
71
|
+
iconContainer: {
|
|
72
|
+
justifyContent: "center",
|
|
73
|
+
alignItems: "center"
|
|
74
|
+
},
|
|
75
|
+
title: {
|
|
76
|
+
textAlign: "left"
|
|
77
|
+
},
|
|
78
|
+
subTitle: {
|
|
79
|
+
textAlign: "left"
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
export const useStyles = ({
|
|
83
|
+
safeAreaBottom,
|
|
84
|
+
currentType,
|
|
85
|
+
radiuses,
|
|
86
|
+
subTitle,
|
|
87
|
+
colors,
|
|
88
|
+
spaces
|
|
89
|
+
}) => {
|
|
90
|
+
const styles = {
|
|
91
|
+
container: {
|
|
92
|
+
backgroundColor: colors.content.container[currentType.containerColor],
|
|
93
|
+
maxWidth: windowWidth - spaces.spacingMd * 2,
|
|
94
|
+
bottom: safeAreaBottom + 100,
|
|
95
|
+
borderRadius: radiuses.full
|
|
96
|
+
},
|
|
97
|
+
containerObject: {
|
|
98
|
+
paddingHorizontal: spaces.spacingLg,
|
|
99
|
+
paddingVertical: spaces.spacingMd
|
|
100
|
+
},
|
|
101
|
+
contentContainer: {},
|
|
102
|
+
title: {},
|
|
103
|
+
subTitle: {
|
|
104
|
+
marginTop: spaces.spacingXs
|
|
105
|
+
},
|
|
106
|
+
iconContainer: {
|
|
107
|
+
paddingRight: spaces.spacingSm,
|
|
108
|
+
marginRight: spaces.spacingSm
|
|
109
|
+
},
|
|
110
|
+
action: {
|
|
111
|
+
paddingBottom: spaces.spacingSm,
|
|
112
|
+
paddingRight: spaces.spacingSm,
|
|
113
|
+
paddingLeft: spaces.spacingMd,
|
|
114
|
+
paddingTop: spaces.spacingSm,
|
|
115
|
+
marginLeft: spaces.spacingMd
|
|
116
|
+
}
|
|
117
|
+
};
|
|
118
|
+
if (subTitle) {
|
|
119
|
+
styles.container.borderRadius = radiuses.lg;
|
|
120
|
+
}
|
|
121
|
+
return styles;
|
|
122
|
+
};
|
|
123
|
+
export default stylesheet;
|
|
124
|
+
//# sourceMappingURL=stylesheet.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["StyleSheet","windowWidth","TOAST_TYPE_STYLES","primary","actionColor","iconColor","containerColor","subTitleColor","titleColor","danger","success","warning","info","neutral","getToastType","type","currentType","stylesheet","create","container","position","alignSelf","zIndex","containerObject","flexDirection","alignItems","contentContainer","justifyContent","flexShrink","iconContainer","title","textAlign","subTitle","useStyles","safeAreaBottom","radiuses","colors","spaces","styles","backgroundColor","content","maxWidth","spacingMd","bottom","borderRadius","full","paddingHorizontal","spacingLg","paddingVertical","marginTop","spacingXs","paddingRight","spacingSm","marginRight","action","paddingBottom","paddingLeft","paddingTop","marginLeft","lg"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/toast/stylesheet.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/toast/type.ts"],"mappings":";;AA0EC;AAAC","ignoreList":[]}
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useImperativeHandle, useLayoutEffect, forwardRef, useEffect, useState, useRef } from "react";
|
|
4
|
+
import { TouchableOpacity, View } from "react-native";
|
|
5
|
+
import stylesheet, { useStyles } from "./stylesheet.js";
|
|
6
|
+
import { dateSelect } from "./util.js";
|
|
7
|
+
import { NCoreUIKitLocalize, NCoreUIKitTheme, NCoreUIKitToast } from "../../core/hooks.js";
|
|
8
|
+
import { webStyle } from "../../types/index.js";
|
|
9
|
+
import { ChevronRight as ChevronRightIcon, ChevronLeft as ChevronLeftIcon } from "lucide-react-native";
|
|
10
|
+
import moment from "moment";
|
|
11
|
+
import Text from "../text/index.js";
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
const YEAR_LINES = [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9, 10, 11]];
|
|
14
|
+
const YearSelector = ({
|
|
15
|
+
multipleSelectMinimumRequiredDayCount,
|
|
16
|
+
isShowTodayIndicator = true,
|
|
17
|
+
viewDate: viewDateProp,
|
|
18
|
+
multipleSelectDayLimit,
|
|
19
|
+
setIsSheetContentReady,
|
|
20
|
+
selectMultipleObject,
|
|
21
|
+
selectObject,
|
|
22
|
+
dateRange,
|
|
23
|
+
maxDate,
|
|
24
|
+
minDate,
|
|
25
|
+
variant,
|
|
26
|
+
date
|
|
27
|
+
}, ref) => {
|
|
28
|
+
const {
|
|
29
|
+
radiuses,
|
|
30
|
+
borders,
|
|
31
|
+
spaces,
|
|
32
|
+
colors
|
|
33
|
+
} = NCoreUIKitTheme.useContext();
|
|
34
|
+
const {
|
|
35
|
+
localize
|
|
36
|
+
} = NCoreUIKitLocalize.useContext();
|
|
37
|
+
const selectDate = dateSelect({
|
|
38
|
+
dateRange,
|
|
39
|
+
variant,
|
|
40
|
+
date
|
|
41
|
+
});
|
|
42
|
+
const [viewDate, setViewDate] = useState(viewDateProp ? viewDateProp : selectDate);
|
|
43
|
+
const [years, setYears] = useState([]);
|
|
44
|
+
const allSelectedYears = useRef([]);
|
|
45
|
+
const {
|
|
46
|
+
nextPrevToolChevronButton: nextPrevToolChevronButtonDynamicStyle,
|
|
47
|
+
nextPrevToolContainer: nextPrevToolContainerDynamicStyle,
|
|
48
|
+
todayIndicator: todayIndicatorDynamicStyle,
|
|
49
|
+
day: dayDynamicStyle
|
|
50
|
+
} = useStyles({
|
|
51
|
+
radiuses,
|
|
52
|
+
borders,
|
|
53
|
+
colors,
|
|
54
|
+
spaces
|
|
55
|
+
});
|
|
56
|
+
useEffect(() => {
|
|
57
|
+
const allYears = getViewYears({
|
|
58
|
+
tDate: viewDate
|
|
59
|
+
});
|
|
60
|
+
setYears(allYears);
|
|
61
|
+
}, [dateRange, viewDate, date]);
|
|
62
|
+
useLayoutEffect(() => {
|
|
63
|
+
if (years && years.length) setIsSheetContentReady(true);
|
|
64
|
+
}, [years]);
|
|
65
|
+
useEffect(() => {
|
|
66
|
+
if (viewDateProp) {
|
|
67
|
+
setViewDate(viewDateProp);
|
|
68
|
+
}
|
|
69
|
+
}, [viewDateProp]);
|
|
70
|
+
useImperativeHandle(ref, () => ({
|
|
71
|
+
changeCurrentView: date => {
|
|
72
|
+
setViewDate(date);
|
|
73
|
+
}
|
|
74
|
+
}), []);
|
|
75
|
+
const getViewYears = ({
|
|
76
|
+
tDate
|
|
77
|
+
}) => {
|
|
78
|
+
allSelectedYears.current = [];
|
|
79
|
+
const targetDate = moment(new Date(tDate));
|
|
80
|
+
const startOfCalendar = targetDate.clone().subtract(5, "years").startOf("year");
|
|
81
|
+
const totalYears = 12;
|
|
82
|
+
const allYears = Array.from({
|
|
83
|
+
length: totalYears
|
|
84
|
+
}).map((_, index) => {
|
|
85
|
+
const currentYear = startOfCalendar.clone().add(index, "years");
|
|
86
|
+
let isSelected = false;
|
|
87
|
+
if (variant === "single" && date) {
|
|
88
|
+
allSelectedYears.current = [date];
|
|
89
|
+
if (moment(currentYear).isSame(date, "year")) isSelected = true;
|
|
90
|
+
} else if (variant === "range" && dateRange && dateRange.start) {
|
|
91
|
+
if (dateRange.end) {
|
|
92
|
+
allSelectedYears.current = Array.from({
|
|
93
|
+
length: moment(dateRange.end).diff(dateRange.start, "years") + 1
|
|
94
|
+
}, (_, i) => moment(dateRange.start).clone().add(i, "years").toDate());
|
|
95
|
+
if (moment(currentYear).isBetween(dateRange.start, dateRange.end, "year", "[]")) isSelected = true;
|
|
96
|
+
} else if (moment(currentYear).isSame(dateRange.start, "year")) {
|
|
97
|
+
allSelectedYears.current = [dateRange.start];
|
|
98
|
+
isSelected = true;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
let isDisabled = false;
|
|
102
|
+
if (minDate && moment(currentYear).isBefore(moment(minDate).startOf("year"))) {
|
|
103
|
+
isDisabled = true;
|
|
104
|
+
}
|
|
105
|
+
if (maxDate && moment(currentYear).isAfter(moment(maxDate).endOf("year"))) {
|
|
106
|
+
isDisabled = true;
|
|
107
|
+
}
|
|
108
|
+
const currentYearNumber = currentYear.year();
|
|
109
|
+
return {
|
|
110
|
+
originalIndex: allSelectedYears.current.findIndex(day => moment(currentYear).isSame(day, "year")),
|
|
111
|
+
isToday: currentYear.isSame(moment(), "year"),
|
|
112
|
+
title: String(currentYearNumber),
|
|
113
|
+
yearNumber: currentYearNumber,
|
|
114
|
+
year: currentYearNumber,
|
|
115
|
+
date: currentYear,
|
|
116
|
+
isDisabled,
|
|
117
|
+
isSelected
|
|
118
|
+
};
|
|
119
|
+
});
|
|
120
|
+
return allYears;
|
|
121
|
+
};
|
|
122
|
+
const renderDay = ({
|
|
123
|
+
yearIndex,
|
|
124
|
+
yearItem
|
|
125
|
+
}) => {
|
|
126
|
+
const isLastItemSelected = yearItem.isSelected && yearItem.originalIndex === allSelectedYears.current.length - 1;
|
|
127
|
+
const isFirstItemSelected = yearItem.isSelected && yearItem.originalIndex === 0;
|
|
128
|
+
const selectionStyle = [isFirstItemSelected && allSelectedYears.current.length > 1 ? {
|
|
129
|
+
borderBottomRightRadius: 0,
|
|
130
|
+
borderTopRightRadius: 0
|
|
131
|
+
} : null, isLastItemSelected && allSelectedYears.current.length > 1 ? {
|
|
132
|
+
borderBottomLeftRadius: 0,
|
|
133
|
+
borderTopLeftRadius: 0
|
|
134
|
+
} : null];
|
|
135
|
+
let dayTitleColor = "mid";
|
|
136
|
+
if (yearItem.isSelected && !isLastItemSelected && !isFirstItemSelected) {
|
|
137
|
+
dayTitleColor = "emphasized";
|
|
138
|
+
selectionStyle.push({
|
|
139
|
+
borderBottomRightRadius: 0,
|
|
140
|
+
borderBottomLeftRadius: 0,
|
|
141
|
+
borderTopRightRadius: 0,
|
|
142
|
+
borderTopLeftRadius: 0
|
|
143
|
+
});
|
|
144
|
+
} else if (yearItem.isSelected) {
|
|
145
|
+
dayTitleColor = "onPrimary";
|
|
146
|
+
}
|
|
147
|
+
if (yearItem.isDisabled) {
|
|
148
|
+
dayTitleColor = "disabled";
|
|
149
|
+
}
|
|
150
|
+
return /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
151
|
+
disabled: yearItem.isDisabled,
|
|
152
|
+
onPress: () => {
|
|
153
|
+
if (variant === "single") {
|
|
154
|
+
const newDate = date;
|
|
155
|
+
newDate.setFullYear(yearItem.date.toDate().getFullYear());
|
|
156
|
+
selectObject(newDate);
|
|
157
|
+
} else if (variant === "range") {
|
|
158
|
+
if (!dateRange || !dateRange.start) {
|
|
159
|
+
selectMultipleObject({
|
|
160
|
+
start: new Date(yearItem.date.toDate().setHours(0, 0, 0)),
|
|
161
|
+
end: undefined
|
|
162
|
+
});
|
|
163
|
+
return;
|
|
164
|
+
}
|
|
165
|
+
if (dateRange && moment(dateRange.start).isSame(yearItem.date, "year")) {
|
|
166
|
+
selectMultipleObject({
|
|
167
|
+
start: undefined,
|
|
168
|
+
end: undefined
|
|
169
|
+
});
|
|
170
|
+
return;
|
|
171
|
+
}
|
|
172
|
+
if (dateRange && !dateRange.end) {
|
|
173
|
+
if (multipleSelectDayLimit && moment(yearItem.date).diff(dateRange.start, "days") >= multipleSelectDayLimit) {
|
|
174
|
+
NCoreUIKitToast.open({
|
|
175
|
+
title: localize("maximum-selection-number-of-days-limit-exceeds")
|
|
176
|
+
});
|
|
177
|
+
return;
|
|
178
|
+
}
|
|
179
|
+
if (multipleSelectMinimumRequiredDayCount && moment(yearItem.date).diff(dateRange.start, "days") + 1 < multipleSelectMinimumRequiredDayCount) {
|
|
180
|
+
NCoreUIKitToast.open({
|
|
181
|
+
title: localize("minimum-selection-number-of-days-required-not-provided")
|
|
182
|
+
});
|
|
183
|
+
return;
|
|
184
|
+
}
|
|
185
|
+
if (moment(yearItem.date).isBefore(dateRange.start)) {
|
|
186
|
+
selectMultipleObject({
|
|
187
|
+
start: new Date(yearItem.date.toDate().setHours(0, 0, 0)),
|
|
188
|
+
end: undefined
|
|
189
|
+
});
|
|
190
|
+
} else {
|
|
191
|
+
selectMultipleObject({
|
|
192
|
+
end: new Date(yearItem.date.toDate().setHours(23, 59, 59)),
|
|
193
|
+
start: dateRange?.start
|
|
194
|
+
});
|
|
195
|
+
}
|
|
196
|
+
return;
|
|
197
|
+
}
|
|
198
|
+
selectMultipleObject({
|
|
199
|
+
start: yearItem.date.toDate(),
|
|
200
|
+
end: undefined
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
style: [stylesheet.day, dayDynamicStyle, yearItem.isSelected ? {
|
|
205
|
+
backgroundColor: colors.content.container.primary,
|
|
206
|
+
borderColor: colors.content.container.primary
|
|
207
|
+
} : null, yearItem.isSelected && !isLastItemSelected && !isFirstItemSelected ? {
|
|
208
|
+
backgroundColor: colors.content.container.emphasized,
|
|
209
|
+
borderColor: colors.content.container.emphasized
|
|
210
|
+
} : null, yearItem.isSelected && yearItem.isDisabled ? {
|
|
211
|
+
opacity: 0.33
|
|
212
|
+
} : null, ...selectionStyle],
|
|
213
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
214
|
+
variant: "labelLargeSize",
|
|
215
|
+
color: dayTitleColor,
|
|
216
|
+
children: yearItem.title
|
|
217
|
+
}), isShowTodayIndicator && yearItem.isToday ? /*#__PURE__*/_jsx(View, {
|
|
218
|
+
style: [stylesheet.todayIndicator, selectionStyle, todayIndicatorDynamicStyle, yearItem.isSelected ? {
|
|
219
|
+
borderColor: colors.content.border.subtle
|
|
220
|
+
} : null]
|
|
221
|
+
}) : null]
|
|
222
|
+
}, `year-${yearIndex}`);
|
|
223
|
+
};
|
|
224
|
+
const renderNextPrevTool = () => {
|
|
225
|
+
return /*#__PURE__*/_jsxs(View, {
|
|
226
|
+
style: [stylesheet.nextPrevToolContainer, nextPrevToolContainerDynamicStyle],
|
|
227
|
+
children: [/*#__PURE__*/_jsx(TouchableOpacity, {
|
|
228
|
+
onPress: () => {
|
|
229
|
+
const prevViewDate = moment(viewDate).clone().subtract(12, "years");
|
|
230
|
+
setViewDate(prevViewDate.toDate());
|
|
231
|
+
},
|
|
232
|
+
style: [nextPrevToolChevronButtonDynamicStyle],
|
|
233
|
+
children: /*#__PURE__*/_jsx(ChevronLeftIcon, {
|
|
234
|
+
color: colors.content.icon.default,
|
|
235
|
+
size: 26
|
|
236
|
+
})
|
|
237
|
+
}), /*#__PURE__*/_jsx(Text, {
|
|
238
|
+
variant: "labelLargeSize",
|
|
239
|
+
color: "high",
|
|
240
|
+
children: years && years.length ? `${moment(years[0]?.date.toDate()).format("YYYY")} - ${moment(years[years.length - 1]?.date.toDate()).format("YYYY")}` : null
|
|
241
|
+
}), /*#__PURE__*/_jsx(TouchableOpacity, {
|
|
242
|
+
onPress: () => {
|
|
243
|
+
const nextViewDate = moment(viewDate).clone().add(12, "years");
|
|
244
|
+
setViewDate(nextViewDate.toDate());
|
|
245
|
+
},
|
|
246
|
+
style: [nextPrevToolChevronButtonDynamicStyle],
|
|
247
|
+
children: /*#__PURE__*/_jsx(ChevronRightIcon, {
|
|
248
|
+
color: colors.content.icon.default,
|
|
249
|
+
size: 26
|
|
250
|
+
})
|
|
251
|
+
})]
|
|
252
|
+
});
|
|
253
|
+
};
|
|
254
|
+
return /*#__PURE__*/_jsxs(View, {
|
|
255
|
+
style: [stylesheet.container],
|
|
256
|
+
children: [/*#__PURE__*/_jsx(View, {
|
|
257
|
+
children: renderNextPrevTool()
|
|
258
|
+
}), /*#__PURE__*/_jsx(View, {
|
|
259
|
+
style: [stylesheet.contentContainer],
|
|
260
|
+
children: years && years.length ? YEAR_LINES.map((yItem, yIndex) => {
|
|
261
|
+
const currentYears = yItem.map(yI => years[yI]);
|
|
262
|
+
return /*#__PURE__*/_jsx(View, {
|
|
263
|
+
style: [stylesheet.rowContainer, webStyle({
|
|
264
|
+
width: "100%"
|
|
265
|
+
})],
|
|
266
|
+
children: currentYears.map((yearItem, yearIndex) => {
|
|
267
|
+
return renderDay({
|
|
268
|
+
yearItem: yearItem,
|
|
269
|
+
yearIndex
|
|
270
|
+
});
|
|
271
|
+
})
|
|
272
|
+
}, `year-row-${yIndex}`);
|
|
273
|
+
}) : null
|
|
274
|
+
})]
|
|
275
|
+
});
|
|
276
|
+
};
|
|
277
|
+
export default /*#__PURE__*/forwardRef(YearSelector);
|
|
278
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["useImperativeHandle","useLayoutEffect","forwardRef","useEffect","useState","useRef","TouchableOpacity","View","stylesheet","useStyles","dateSelect","NCoreUIKitLocalize","NCoreUIKitTheme","NCoreUIKitToast","webStyle","ChevronRight","ChevronRightIcon","ChevronLeft","ChevronLeftIcon","moment","Text","jsx","_jsx","jsxs","_jsxs","YEAR_LINES","YearSelector","multipleSelectMinimumRequiredDayCount","isShowTodayIndicator","viewDate","viewDateProp","multipleSelectDayLimit","setIsSheetContentReady","selectMultipleObject","selectObject","dateRange","maxDate","minDate","variant","date","ref","radiuses","borders","spaces","colors","useContext","localize","selectDate","setViewDate","years","setYears","allSelectedYears","nextPrevToolChevronButton","nextPrevToolChevronButtonDynamicStyle","nextPrevToolContainer","nextPrevToolContainerDynamicStyle","todayIndicator","todayIndicatorDynamicStyle","day","dayDynamicStyle","allYears","getViewYears","tDate","length","changeCurrentView","current","targetDate","Date","startOfCalendar","clone","subtract","startOf","totalYears","Array","from","map","_","index","currentYear","add","isSelected","isSame","start","end","diff","i","toDate","isBetween","isDisabled","isBefore","isAfter","endOf","currentYearNumber","year","originalIndex","findIndex","isToday","title","String","yearNumber","renderDay","yearIndex","yearItem","isLastItemSelected","isFirstItemSelected","selectionStyle","borderBottomRightRadius","borderTopRightRadius","borderBottomLeftRadius","borderTopLeftRadius","dayTitleColor","push","disabled","onPress","newDate","setFullYear","getFullYear","setHours","undefined","open","style","backgroundColor","content","container","primary","borderColor","emphasized","opacity","children","color","border","subtle","renderNextPrevTool","prevViewDate","icon","default","size","format","nextViewDate","contentContainer","yItem","yIndex","currentYears","yI","rowContainer","width"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/yearSelector/index.tsx"],"mappings":"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","ignoreList":[]}
|