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,669 @@
|
|
|
1
|
+
{
|
|
2
|
+
"isNeedAndroidTypographyFixer": true,
|
|
3
|
+
"shapes": {
|
|
4
|
+
"radiuses": {
|
|
5
|
+
"soft": {
|
|
6
|
+
"form": 8,
|
|
7
|
+
"surface": 12,
|
|
8
|
+
"actions": 8,
|
|
9
|
+
"chip": 8,
|
|
10
|
+
"full": 9999,
|
|
11
|
+
"xs": 4,
|
|
12
|
+
"none": 0,
|
|
13
|
+
"sm": 8,
|
|
14
|
+
"md": 12,
|
|
15
|
+
"lg": 16,
|
|
16
|
+
"xl": 28
|
|
17
|
+
},
|
|
18
|
+
"sharp": {
|
|
19
|
+
"form": 4,
|
|
20
|
+
"surface": 8,
|
|
21
|
+
"actions": 4,
|
|
22
|
+
"chip": 4,
|
|
23
|
+
"full": 9999,
|
|
24
|
+
"xs": 2,
|
|
25
|
+
"none": 0,
|
|
26
|
+
"sm": 4,
|
|
27
|
+
"md": 8,
|
|
28
|
+
"lg": 12,
|
|
29
|
+
"xl": 16
|
|
30
|
+
},
|
|
31
|
+
"rounded": {
|
|
32
|
+
"form": 12,
|
|
33
|
+
"surface": 28,
|
|
34
|
+
"actions": 9999,
|
|
35
|
+
"chip": 9999,
|
|
36
|
+
"full": 9999,
|
|
37
|
+
"xs": 8,
|
|
38
|
+
"none": 0,
|
|
39
|
+
"sm": 12,
|
|
40
|
+
"md": 16,
|
|
41
|
+
"lg": 28,
|
|
42
|
+
"xl": 28
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"inlineSpaces": {
|
|
46
|
+
"subTitle": 4,
|
|
47
|
+
"required": 4
|
|
48
|
+
},
|
|
49
|
+
"borders": {
|
|
50
|
+
"subtract": 3,
|
|
51
|
+
"line": 2
|
|
52
|
+
},
|
|
53
|
+
"spaces": {
|
|
54
|
+
"spacious": {
|
|
55
|
+
"spacingXs": 4,
|
|
56
|
+
"spacingSm": 8,
|
|
57
|
+
"spacingMd": 16,
|
|
58
|
+
"spacingLg": 24,
|
|
59
|
+
"spacingXl": 32
|
|
60
|
+
},
|
|
61
|
+
"compact": {
|
|
62
|
+
"spacingXs": 2,
|
|
63
|
+
"spacingSm": 4,
|
|
64
|
+
"spacingMd": 12,
|
|
65
|
+
"spacingLg": 16,
|
|
66
|
+
"spacingXl": 24
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"typography": {
|
|
71
|
+
"spacious": {
|
|
72
|
+
"displayLargeSize": {
|
|
73
|
+
"fontFamily": "Geist",
|
|
74
|
+
"fontWeight": "300",
|
|
75
|
+
"fontSize": 57,
|
|
76
|
+
"lineHeight": 64,
|
|
77
|
+
"letterSpacing": -0.25
|
|
78
|
+
},
|
|
79
|
+
"displayMediumSize": {
|
|
80
|
+
"fontFamily": "Geist",
|
|
81
|
+
"fontWeight": "300",
|
|
82
|
+
"fontSize": 45,
|
|
83
|
+
"lineHeight": 52,
|
|
84
|
+
"letterSpacing": 0
|
|
85
|
+
},
|
|
86
|
+
"displaySmallSize": {
|
|
87
|
+
"fontFamily": "Geist",
|
|
88
|
+
"fontWeight": "300",
|
|
89
|
+
"fontSize": 36,
|
|
90
|
+
"lineHeight": 44,
|
|
91
|
+
"letterSpacing": 0
|
|
92
|
+
},
|
|
93
|
+
"headlineLargeSize": {
|
|
94
|
+
"fontFamily": "Geist",
|
|
95
|
+
"fontWeight": "500",
|
|
96
|
+
"fontSize": 32,
|
|
97
|
+
"lineHeight": 40,
|
|
98
|
+
"letterSpacing": 0
|
|
99
|
+
},
|
|
100
|
+
"headlineMediumSize": {
|
|
101
|
+
"fontFamily": "Geist",
|
|
102
|
+
"fontWeight": "500",
|
|
103
|
+
"fontSize": 28,
|
|
104
|
+
"lineHeight": 36,
|
|
105
|
+
"letterSpacing": 0
|
|
106
|
+
},
|
|
107
|
+
"headlineSmallSize": {
|
|
108
|
+
"fontFamily": "Geist",
|
|
109
|
+
"fontWeight": "500",
|
|
110
|
+
"fontSize": 24,
|
|
111
|
+
"lineHeight": 32,
|
|
112
|
+
"letterSpacing": 0
|
|
113
|
+
},
|
|
114
|
+
"titleLargeSize": {
|
|
115
|
+
"fontFamily": "Geist",
|
|
116
|
+
"fontWeight": "500",
|
|
117
|
+
"fontSize": 22,
|
|
118
|
+
"lineHeight": 28,
|
|
119
|
+
"letterSpacing": 0
|
|
120
|
+
},
|
|
121
|
+
"titleMediumSize": {
|
|
122
|
+
"fontFamily": "Geist",
|
|
123
|
+
"fontWeight": "500",
|
|
124
|
+
"fontSize": 16,
|
|
125
|
+
"lineHeight": 24,
|
|
126
|
+
"letterSpacing": 0.15
|
|
127
|
+
},
|
|
128
|
+
"titleSmallSize": {
|
|
129
|
+
"fontFamily": "Geist",
|
|
130
|
+
"fontWeight": "500",
|
|
131
|
+
"fontSize": 14,
|
|
132
|
+
"lineHeight": 20,
|
|
133
|
+
"letterSpacing": 0.1
|
|
134
|
+
},
|
|
135
|
+
"bodyLargeSize": {
|
|
136
|
+
"fontFamily": "Geist",
|
|
137
|
+
"fontWeight": "400",
|
|
138
|
+
"fontSize": 16,
|
|
139
|
+
"lineHeight": 24,
|
|
140
|
+
"letterSpacing": 0.5
|
|
141
|
+
},
|
|
142
|
+
"bodyMediumSize": {
|
|
143
|
+
"fontFamily": "Geist",
|
|
144
|
+
"fontWeight": "400",
|
|
145
|
+
"fontSize": 14,
|
|
146
|
+
"lineHeight": 20,
|
|
147
|
+
"letterSpacing": 0.25
|
|
148
|
+
},
|
|
149
|
+
"bodySmallSize": {
|
|
150
|
+
"fontFamily": "Geist",
|
|
151
|
+
"fontWeight": "400",
|
|
152
|
+
"fontSize": 12,
|
|
153
|
+
"lineHeight": 16,
|
|
154
|
+
"letterSpacing": 0.4
|
|
155
|
+
},
|
|
156
|
+
"labelLargeSize": {
|
|
157
|
+
"fontFamily": "Geist",
|
|
158
|
+
"fontWeight": "400",
|
|
159
|
+
"fontSize": 14,
|
|
160
|
+
"lineHeight": 20,
|
|
161
|
+
"letterSpacing": 0.1
|
|
162
|
+
},
|
|
163
|
+
"labelMediumSize": {
|
|
164
|
+
"fontFamily": "Geist",
|
|
165
|
+
"fontWeight": "400",
|
|
166
|
+
"fontSize": 12,
|
|
167
|
+
"lineHeight": 16,
|
|
168
|
+
"letterSpacing": 0.5
|
|
169
|
+
},
|
|
170
|
+
"labelSmallSize": {
|
|
171
|
+
"fontFamily": "Geist",
|
|
172
|
+
"fontWeight": "400",
|
|
173
|
+
"fontSize": 11,
|
|
174
|
+
"lineHeight": 16,
|
|
175
|
+
"letterSpacing": 0.5
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"compact": {
|
|
179
|
+
"displayLargeSize": {
|
|
180
|
+
"fontFamily": "Geist",
|
|
181
|
+
"fontWeight": "300",
|
|
182
|
+
"fontSize": 45,
|
|
183
|
+
"lineHeight": 52,
|
|
184
|
+
"letterSpacing": 0
|
|
185
|
+
},
|
|
186
|
+
"displayMediumSize": {
|
|
187
|
+
"fontFamily": "Geist",
|
|
188
|
+
"fontWeight": "300",
|
|
189
|
+
"fontSize": 36,
|
|
190
|
+
"lineHeight": 44,
|
|
191
|
+
"letterSpacing": 0
|
|
192
|
+
},
|
|
193
|
+
"displaySmallSize": {
|
|
194
|
+
"fontFamily": "Geist",
|
|
195
|
+
"fontWeight": "300",
|
|
196
|
+
"fontSize": 32,
|
|
197
|
+
"lineHeight": 40,
|
|
198
|
+
"letterSpacing": 0
|
|
199
|
+
},
|
|
200
|
+
"headlineLargeSize": {
|
|
201
|
+
"fontFamily": "Geist",
|
|
202
|
+
"fontWeight": "500",
|
|
203
|
+
"fontSize": 28,
|
|
204
|
+
"lineHeight": 36,
|
|
205
|
+
"letterSpacing": 0
|
|
206
|
+
},
|
|
207
|
+
"headlineMediumSize": {
|
|
208
|
+
"fontFamily": "Geist",
|
|
209
|
+
"fontWeight": "500",
|
|
210
|
+
"fontSize": 24,
|
|
211
|
+
"lineHeight": 32,
|
|
212
|
+
"letterSpacing": 0
|
|
213
|
+
},
|
|
214
|
+
"headlineSmallSize": {
|
|
215
|
+
"fontFamily": "Geist",
|
|
216
|
+
"fontWeight": "500",
|
|
217
|
+
"fontSize": 22,
|
|
218
|
+
"lineHeight": 28,
|
|
219
|
+
"letterSpacing": 0
|
|
220
|
+
},
|
|
221
|
+
"titleLargeSize": {
|
|
222
|
+
"fontFamily": "Geist",
|
|
223
|
+
"fontWeight": "500",
|
|
224
|
+
"fontSize": 16,
|
|
225
|
+
"lineHeight": 24,
|
|
226
|
+
"letterSpacing": 0.15
|
|
227
|
+
},
|
|
228
|
+
"titleMediumSize": {
|
|
229
|
+
"fontFamily": "Geist",
|
|
230
|
+
"fontWeight": "500",
|
|
231
|
+
"fontSize": 14,
|
|
232
|
+
"lineHeight": 20,
|
|
233
|
+
"letterSpacing": 0.1
|
|
234
|
+
},
|
|
235
|
+
"titleSmallSize": {
|
|
236
|
+
"fontFamily": "Geist",
|
|
237
|
+
"fontWeight": "500",
|
|
238
|
+
"fontSize": 12,
|
|
239
|
+
"lineHeight": 16,
|
|
240
|
+
"letterSpacing": 0.4
|
|
241
|
+
},
|
|
242
|
+
"bodyLargeSize": {
|
|
243
|
+
"fontFamily": "Geist",
|
|
244
|
+
"fontWeight": "400",
|
|
245
|
+
"fontSize": 14,
|
|
246
|
+
"lineHeight": 20,
|
|
247
|
+
"letterSpacing": 0.25
|
|
248
|
+
},
|
|
249
|
+
"bodyMediumSize": {
|
|
250
|
+
"fontFamily": "Geist",
|
|
251
|
+
"fontWeight": "400",
|
|
252
|
+
"fontSize": 12,
|
|
253
|
+
"lineHeight": 16,
|
|
254
|
+
"letterSpacing": 0.4
|
|
255
|
+
},
|
|
256
|
+
"bodySmallSize": {
|
|
257
|
+
"fontFamily": "Geist",
|
|
258
|
+
"fontWeight": "400",
|
|
259
|
+
"fontSize": 11,
|
|
260
|
+
"lineHeight": 16,
|
|
261
|
+
"letterSpacing": 0.5
|
|
262
|
+
},
|
|
263
|
+
"labelLargeSize": {
|
|
264
|
+
"fontFamily": "Geist",
|
|
265
|
+
"fontWeight": "400",
|
|
266
|
+
"fontSize": 12,
|
|
267
|
+
"lineHeight": 16,
|
|
268
|
+
"letterSpacing": 0.5
|
|
269
|
+
},
|
|
270
|
+
"labelMediumSize": {
|
|
271
|
+
"fontFamily": "Geist",
|
|
272
|
+
"fontWeight": "400",
|
|
273
|
+
"fontSize": 11,
|
|
274
|
+
"lineHeight": 16,
|
|
275
|
+
"letterSpacing": 0.5
|
|
276
|
+
},
|
|
277
|
+
"labelSmallSize": {
|
|
278
|
+
"fontFamily": "Geist",
|
|
279
|
+
"fontWeight": "400",
|
|
280
|
+
"fontSize": 11,
|
|
281
|
+
"lineHeight": 16,
|
|
282
|
+
"letterSpacing": 0.5
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"palettes": [
|
|
287
|
+
{
|
|
288
|
+
"name": "nibgat",
|
|
289
|
+
"themes": {
|
|
290
|
+
"dark": {
|
|
291
|
+
"system": {
|
|
292
|
+
"default": {
|
|
293
|
+
"primary": "rgba(64,220,195,1)",
|
|
294
|
+
"secondary": "rgba(187,204,196,1)",
|
|
295
|
+
"tertiary": "rgba(171,203,228,1)",
|
|
296
|
+
"error": "rgba(255,187,177,1)",
|
|
297
|
+
"success": "rgba(179,250,188,1)",
|
|
298
|
+
"warning": "rgba(255,223,102,1)",
|
|
299
|
+
"info": "rgba(167,230,255,1)",
|
|
300
|
+
"background": "rgba(25,28,27,1)",
|
|
301
|
+
"surface": "rgba(25,28,27,1)"
|
|
302
|
+
},
|
|
303
|
+
"on": {
|
|
304
|
+
"primary": "rgba(0,63,54,1)",
|
|
305
|
+
"secondary": "rgba(28,53,47,1)",
|
|
306
|
+
"tertiary": "rgba(18,52,72,1)",
|
|
307
|
+
"error": "rgba(105,0,5,1)",
|
|
308
|
+
"success": "rgba(22,66,33,1)",
|
|
309
|
+
"warning": "rgba(97,54,0,1)",
|
|
310
|
+
"info": "rgba(0,62,90,1)",
|
|
311
|
+
"background": "rgba(224,226,225,1)",
|
|
312
|
+
"surface": "rgba(224,226,225,1)"
|
|
313
|
+
},
|
|
314
|
+
"container": {
|
|
315
|
+
"primary": "rgba(0,85,69,1)",
|
|
316
|
+
"secondary": "rgba(51,74,68,1)",
|
|
317
|
+
"tertiary": "rgba(43,74,95,1)",
|
|
318
|
+
"error": "rgba(147,0,8,1)",
|
|
319
|
+
"success": "rgba(50,97,58,1)",
|
|
320
|
+
"warning": "rgba(136,81,0,1)",
|
|
321
|
+
"info": "rgba(0,93,128,1)"
|
|
322
|
+
},
|
|
323
|
+
"onContainer": {
|
|
324
|
+
"primary": "rgba(101,250,222,1)",
|
|
325
|
+
"secondary": "rgba(206,232,224,1)",
|
|
326
|
+
"tertiary": "rgba(201,236,254,1)",
|
|
327
|
+
"error": "rgba(255,187,177,1)",
|
|
328
|
+
"success": "rgba(206,255,214,1)",
|
|
329
|
+
"warning": "rgba(255,241,200,1)",
|
|
330
|
+
"info": "rgba(217,241,255,1)"
|
|
331
|
+
},
|
|
332
|
+
"variant": {
|
|
333
|
+
"surface": "rgba(41,50,48,1)"
|
|
334
|
+
},
|
|
335
|
+
"onVariant": {
|
|
336
|
+
"surface": "rgba(191,201,199,1)"
|
|
337
|
+
},
|
|
338
|
+
"outline": "rgba(137,147,145,1)",
|
|
339
|
+
"shadow": "rgba(0,0,0,1)",
|
|
340
|
+
"scrim": "rgba(0,0,0,0.5)",
|
|
341
|
+
"onMid": {
|
|
342
|
+
"surface": "rgba(255,255,255,0.64)"
|
|
343
|
+
},
|
|
344
|
+
"onLow": {
|
|
345
|
+
"surface": "rgba(255,255,255,0.32)"
|
|
346
|
+
},
|
|
347
|
+
"state": {
|
|
348
|
+
"overlay": {
|
|
349
|
+
"hover": {
|
|
350
|
+
"default": "rgba(255,255,255,0.32)",
|
|
351
|
+
"primary": "rgba(64,220,195,0.08)",
|
|
352
|
+
"error": "rgba(255,187,177,0.24)",
|
|
353
|
+
"warning": "rgba(255,223,102,0.24)",
|
|
354
|
+
"success": "rgba(179,250,188,0.24)",
|
|
355
|
+
"neutral": "rgba(196,199,198,0.24)",
|
|
356
|
+
"info": "rgba(167,230,255,0.24)"
|
|
357
|
+
},
|
|
358
|
+
"focus": {
|
|
359
|
+
"default": "rgba(255,255,255,0.64)",
|
|
360
|
+
"primary": "rgba(0,107,92,0.32)",
|
|
361
|
+
"error": "rgba(255,187,177,0.32)",
|
|
362
|
+
"warning": "rgba(255,223,102,0.32)",
|
|
363
|
+
"success": "rgba(179,250,188,0.32)",
|
|
364
|
+
"neutral": "rgba(196,199,198,0.32)",
|
|
365
|
+
"info": "rgba(167,230,255,0.32)"
|
|
366
|
+
},
|
|
367
|
+
"pressed": {
|
|
368
|
+
"default": "rgba(255,255,255,0.32)",
|
|
369
|
+
"primary": "rgba(0,107,92,0.32)",
|
|
370
|
+
"error": "rgba(255,187,177,0.32)",
|
|
371
|
+
"warning": "rgba(255,223,102,0.32)",
|
|
372
|
+
"success": "rgba(179,250,188,0.32)",
|
|
373
|
+
"neutral": "rgba(196,199,198,0.32)",
|
|
374
|
+
"info": "rgba(167,230,255,0.32)"
|
|
375
|
+
},
|
|
376
|
+
"disabled": {
|
|
377
|
+
"primary": "rgba(0,107,92,0.24)",
|
|
378
|
+
"error": "rgba(255,187,177,0.24)",
|
|
379
|
+
"warning": "rgba(255,223,102,0.24)",
|
|
380
|
+
"success": "rgba(179,250,188,0.24)",
|
|
381
|
+
"neutral": "rgba(196,199,198,0.08)",
|
|
382
|
+
"info": "rgba(167,230,255,0.24)"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"border": {
|
|
386
|
+
"disabled": {
|
|
387
|
+
"primary": "rgba(0,107,92,0.64)",
|
|
388
|
+
"error": "rgba(255,187,177,0.32)",
|
|
389
|
+
"warning": "rgba(255,223,102,0.32)",
|
|
390
|
+
"success": "rgba(179,250,188,0.32)",
|
|
391
|
+
"neutral": "rgba(196,199,198,0.32)",
|
|
392
|
+
"info": "rgba(167,230,255,0.32)"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"content": {
|
|
396
|
+
"disabled": {
|
|
397
|
+
"primary": "rgba(0,107,92,0.64)",
|
|
398
|
+
"error": "rgba(255,187,177,0.32)",
|
|
399
|
+
"warning": "rgba(255,223,102,0.32)",
|
|
400
|
+
"success": "rgba(179,250,188,0.32)",
|
|
401
|
+
"neutral": "rgba(196,199,198,0.32)",
|
|
402
|
+
"info": "rgba(167,230,255,0.32)"
|
|
403
|
+
},
|
|
404
|
+
"mid": {
|
|
405
|
+
"error": "rgba(255,255,255,1)"
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"disabled": {
|
|
410
|
+
"content": "rgba(255,255,255,0.24)"
|
|
411
|
+
},
|
|
412
|
+
"low": {
|
|
413
|
+
"error": "rgba(255,187,177,0.32)",
|
|
414
|
+
"warning": "rgba(255,223,102,0.32)",
|
|
415
|
+
"success": "rgba(179,250,188,0.32)",
|
|
416
|
+
"info": "rgba(167,230,255,0.32)"
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"content": {
|
|
420
|
+
"text": {
|
|
421
|
+
"high": "rgba(224,226,225,1)",
|
|
422
|
+
"mid": "rgba(255,255,255,0.64)",
|
|
423
|
+
"low": "rgba(255,255,255,0.32)",
|
|
424
|
+
"disabled": "rgba(255,255,255,0.24)",
|
|
425
|
+
"emphasized": "rgba(64,220,195,1)",
|
|
426
|
+
"link": "rgba(64,220,195,1)",
|
|
427
|
+
"onPrimary": "rgba(0,63,54,1)",
|
|
428
|
+
"danger": "rgba(255,187,177,1)",
|
|
429
|
+
"success": "rgba(179,250,188,1)",
|
|
430
|
+
"warning": "rgba(255,223,102,1)",
|
|
431
|
+
"info": "rgba(167,230,255,1)",
|
|
432
|
+
"disabledWhite": "rgba(255,255,255,0.32)",
|
|
433
|
+
"dangerLow": "rgba(255,187,177,0.32)",
|
|
434
|
+
"warningLow": "rgba(255,223,102,0.32)",
|
|
435
|
+
"successLow": "rgba(179,250,188,0.32)",
|
|
436
|
+
"infoLow": "rgba(167,230,255,0.32)"
|
|
437
|
+
},
|
|
438
|
+
"icon": {
|
|
439
|
+
"default": "rgba(191,201,199,1)",
|
|
440
|
+
"emphasized": "rgba(64,220,195,1)",
|
|
441
|
+
"disabled": "rgba(255,255,255,0.24)",
|
|
442
|
+
"onPrimary": "rgba(0,63,54,1)",
|
|
443
|
+
"danger": "rgba(255,187,177,1)",
|
|
444
|
+
"success": "rgba(179,250,188,1)",
|
|
445
|
+
"warning": "rgba(255,223,102,1)",
|
|
446
|
+
"info": "rgba(167,230,255,1)",
|
|
447
|
+
"low": "rgba(255,255,255,0.32)",
|
|
448
|
+
"mid": "rgba(255,255,255,0.64)",
|
|
449
|
+
"high": "rgba(224,226,225,1)",
|
|
450
|
+
"disabledWhite": "rgba(255,255,255,0.32)"
|
|
451
|
+
},
|
|
452
|
+
"container": {
|
|
453
|
+
"default": "rgba(25,28,27,1)",
|
|
454
|
+
"subtle": "rgba(41,50,48,1)",
|
|
455
|
+
"emphasized": "rgba(0,85,69,1)",
|
|
456
|
+
"selected": "rgba(0,85,69,1)",
|
|
457
|
+
"mid": "rgba(37, 35, 34, 1)",
|
|
458
|
+
"inverse": "rgba(0,63,54,1)",
|
|
459
|
+
"overlay": "rgba(0,0,0,0.5)",
|
|
460
|
+
"danger": "rgba(147,0,8,1)",
|
|
461
|
+
"success": "rgba(50,97,58,1)",
|
|
462
|
+
"warning": "rgba(136,81,0,1)",
|
|
463
|
+
"info": "rgba(0,93,128,1)",
|
|
464
|
+
"primary": "rgba(64,220,195,1)"
|
|
465
|
+
},
|
|
466
|
+
"border": {
|
|
467
|
+
"default": "rgba(137,147,145,1)",
|
|
468
|
+
"subtle": "rgba(41,50,48,1)",
|
|
469
|
+
"emphasized": "rgba(64,220,195,1)",
|
|
470
|
+
"danger": "rgba(255,187,177,1)",
|
|
471
|
+
"success": "rgba(179,250,188,1)",
|
|
472
|
+
"disabled": "rgba(255,255,255,0.24)",
|
|
473
|
+
"warning": "rgba(255,223,102,1)",
|
|
474
|
+
"info": "rgba(167,230,255,1)"
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
"light": {
|
|
479
|
+
"system": {
|
|
480
|
+
"default": {
|
|
481
|
+
"primary": "rgba(0,107,92,1)",
|
|
482
|
+
"secondary": "rgba(74,101,95,1)",
|
|
483
|
+
"tertiary": "rgba(67,101,127,1)",
|
|
484
|
+
"error": "rgba(186,16,16,1)",
|
|
485
|
+
"success": "rgba(74,128,82,1)",
|
|
486
|
+
"warning": "rgba(176,108,0,1)",
|
|
487
|
+
"info": "rgba(37,123,167,1)",
|
|
488
|
+
"background": "rgba(250,252,251,1)",
|
|
489
|
+
"surface": "rgba(250,252,251,1)"
|
|
490
|
+
},
|
|
491
|
+
"on": {
|
|
492
|
+
"primary": "rgba(182,254,238,1)",
|
|
493
|
+
"secondary": "rgba(255,255,255,1)",
|
|
494
|
+
"tertiary": "rgba(255,255,255,1)",
|
|
495
|
+
"error": "rgba(255,255,255,1)",
|
|
496
|
+
"success": "rgba(255,255,255,1)",
|
|
497
|
+
"warning": "rgba(255,255,255,1)",
|
|
498
|
+
"info": "rgba(255,255,255,1)",
|
|
499
|
+
"background": "rgba(25,28,27,1)",
|
|
500
|
+
"surface": "rgba(25,28,27,1)"
|
|
501
|
+
},
|
|
502
|
+
"container": {
|
|
503
|
+
"primary": "rgba(101,250,222,1)",
|
|
504
|
+
"secondary": "rgba(206,232,224,1)",
|
|
505
|
+
"tertiary": "rgba(201,236,254,1)",
|
|
506
|
+
"error": "rgba(255,218,214,1)",
|
|
507
|
+
"success": "rgba(206,255,214,1)",
|
|
508
|
+
"warning": "rgba(255,241,200,1)",
|
|
509
|
+
"info": "rgba(217,241,255,1)"
|
|
510
|
+
},
|
|
511
|
+
"onContainer": {
|
|
512
|
+
"primary": "rgba(0,32,27,1)",
|
|
513
|
+
"secondary": "rgba(6,33,27,1)",
|
|
514
|
+
"tertiary": "rgba(0,30,47,1)",
|
|
515
|
+
"error": "rgba(65,0,2,1)",
|
|
516
|
+
"success": "rgba(2,34,10,1)",
|
|
517
|
+
"warning": "rgba(60,28,0,1)",
|
|
518
|
+
"info": "rgba(0,31,54,1)"
|
|
519
|
+
},
|
|
520
|
+
"variant": {
|
|
521
|
+
"surface": "rgba(233,240,238,1)"
|
|
522
|
+
},
|
|
523
|
+
"onVariant": {
|
|
524
|
+
"surface": "rgba(63,73,71,1)"
|
|
525
|
+
},
|
|
526
|
+
"outline": "rgba(111,121,119,1)",
|
|
527
|
+
"shadow": "rgba(0,0,0,1)",
|
|
528
|
+
"scrim": "rgba(0,0,0,0.5)",
|
|
529
|
+
"onMid": {
|
|
530
|
+
"surface": "rgba(0,0,0,0.64)"
|
|
531
|
+
},
|
|
532
|
+
"onLow": {
|
|
533
|
+
"surface": "rgba(0,0,0,0.32)"
|
|
534
|
+
},
|
|
535
|
+
"state": {
|
|
536
|
+
"overlay": {
|
|
537
|
+
"hover": {
|
|
538
|
+
"default": "rgba(0,0,0,0.32)",
|
|
539
|
+
"primary": "rgba(64,220,195,0.24)",
|
|
540
|
+
"error": "rgba(186,16,16,0.24)",
|
|
541
|
+
"warning": "rgba(176,108,0,0.24)",
|
|
542
|
+
"success": "rgba(74,128,82,0.24)",
|
|
543
|
+
"neutral": "rgba(91,95,94,0.24)",
|
|
544
|
+
"info": "rgba(37,123,167,0.24)"
|
|
545
|
+
},
|
|
546
|
+
"focus": {
|
|
547
|
+
"default": "rgba(0,0,0,0.64)",
|
|
548
|
+
"primary": "rgba(0,107,92,0.32)",
|
|
549
|
+
"error": "rgba(186,16,16,0.32)",
|
|
550
|
+
"warning": "rgba(176,108,0,0.32)",
|
|
551
|
+
"success": "rgba(74,128,82,0.32)",
|
|
552
|
+
"neutral": "rgba(91,95,94,0.32)",
|
|
553
|
+
"info": "rgba(37,123,167,0.32)"
|
|
554
|
+
},
|
|
555
|
+
"pressed": {
|
|
556
|
+
"default": "rgba(0,0,0,0.32)",
|
|
557
|
+
"primary": "rgba(0,107,92,0.32)",
|
|
558
|
+
"error": "rgba(186,16,16,0.32)",
|
|
559
|
+
"warning": "rgba(176,108,0,0.32)",
|
|
560
|
+
"success": "rgba(74,128,82,0.32)",
|
|
561
|
+
"neutral": "rgba(91,95,94,0.32)",
|
|
562
|
+
"info": "rgba(37,123,167,0.32)"
|
|
563
|
+
},
|
|
564
|
+
"disabled": {
|
|
565
|
+
"primary": "rgba(0,107,92,0.24)",
|
|
566
|
+
"error": "rgba(186,16,16,0.24)",
|
|
567
|
+
"warning": "rgba(176,108,0,0.24)",
|
|
568
|
+
"success": "rgba(74,128,82,0.24)",
|
|
569
|
+
"neutral": "rgba(91,95,94,0.08)",
|
|
570
|
+
"info": "rgba(37,123,167,0.24)"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"border": {
|
|
574
|
+
"disabled": {
|
|
575
|
+
"primary": "rgba(0,107,92,0.32)",
|
|
576
|
+
"error": "rgba(186,16,16,0.32)",
|
|
577
|
+
"warning": "rgba(176,108,0,0.32)",
|
|
578
|
+
"success": "rgba(74,128,82,0.32)",
|
|
579
|
+
"neutral": "rgba(91,95,94,0.32)",
|
|
580
|
+
"info": "rgba(37,123,167,0.32)"
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
"content": {
|
|
584
|
+
"disabled": {
|
|
585
|
+
"primary": "rgba(101,250,222,0.32)",
|
|
586
|
+
"error": "rgba(186,16,16,0.32)",
|
|
587
|
+
"warning": "rgba(176,108,0,0.32)",
|
|
588
|
+
"success": "rgba(74,128,82,0.32)",
|
|
589
|
+
"neutral": "rgba(91,95,94,0.32)",
|
|
590
|
+
"info": "rgba(37,123,167,0.32)"
|
|
591
|
+
},
|
|
592
|
+
"mid": {
|
|
593
|
+
"error": "rgba(255,255,255,1)"
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
"disabled": {
|
|
598
|
+
"content": "rgba(0,0,0,0.24)"
|
|
599
|
+
},
|
|
600
|
+
"low": {
|
|
601
|
+
"error": "rgba(186,16,16,0.32)",
|
|
602
|
+
"warning": "rgba(176,108,0,0.32)",
|
|
603
|
+
"success": "rgba(74,128,82,0.32)",
|
|
604
|
+
"info": "rgba(37,123,167,0.32)"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"content": {
|
|
608
|
+
"text": {
|
|
609
|
+
"high": "rgba(25,28,27,1)",
|
|
610
|
+
"mid": "rgba(0,0,0,0.64)",
|
|
611
|
+
"low": "rgba(0,0,0,0.32)",
|
|
612
|
+
"disabled": "rgba(0,0,0,0.24)",
|
|
613
|
+
"emphasized": "rgba(0,107,92,1)",
|
|
614
|
+
"link": "rgba(0,107,92,1)",
|
|
615
|
+
"onPrimary": "rgba(182,254,238,1)",
|
|
616
|
+
"danger": "rgba(186,16,16,1)",
|
|
617
|
+
"success": "rgba(74,128,82,1)",
|
|
618
|
+
"warning": "rgba(176,108,0,1)",
|
|
619
|
+
"info": "rgba(37,123,167,1)",
|
|
620
|
+
"disabledWhite": "rgba(255,255,255,0.32)",
|
|
621
|
+
"dangerLow": "rgba(186,16,16,0.32)",
|
|
622
|
+
"warningLow": "rgba(176,108,0,0.32)",
|
|
623
|
+
"successLow": "rgba(74,128,82,0.32)",
|
|
624
|
+
"infoLow": "rgba(37,123,167,0.32)"
|
|
625
|
+
},
|
|
626
|
+
"icon": {
|
|
627
|
+
"default": "rgba(63,73,71,1)",
|
|
628
|
+
"emphasized": "rgba(0,107,92,1)",
|
|
629
|
+
"disabled": "rgba(0,0,0,0.24)",
|
|
630
|
+
"onPrimary": "rgba(182,254,238,1)",
|
|
631
|
+
"danger": "rgba(186,16,16,1)",
|
|
632
|
+
"success": "rgba(74,128,82,1)",
|
|
633
|
+
"warning": "rgba(176,108,0,1)",
|
|
634
|
+
"info": "rgba(37,123,167,1)",
|
|
635
|
+
"low": "rgba(0,0,0,0.32)",
|
|
636
|
+
"mid": "rgba(0,0,0,0.64)",
|
|
637
|
+
"high": "rgba(25,28,27,1)",
|
|
638
|
+
"disabledWhite": "rgba(255,255,255,0.32)"
|
|
639
|
+
},
|
|
640
|
+
"container": {
|
|
641
|
+
"default": "rgba(250,252,251,1)",
|
|
642
|
+
"subtle": "rgba(233,240,238,1)",
|
|
643
|
+
"emphasized": "rgba(101,250,222,1)",
|
|
644
|
+
"selected": "rgba(101,250,222,1)",
|
|
645
|
+
"inverse": "rgba(182,254,238,1)",
|
|
646
|
+
"overlay": "rgba(0,0,0,0.5)",
|
|
647
|
+
"mid": "rgba(239, 240, 239, 1)",
|
|
648
|
+
"danger": "rgba(255,218,214,1)",
|
|
649
|
+
"success": "rgba(206,255,214,1)",
|
|
650
|
+
"warning": "rgba(255,241,200,1)",
|
|
651
|
+
"info": "rgba(217,241,255,1)",
|
|
652
|
+
"primary": "rgba(0,107,92,1)"
|
|
653
|
+
},
|
|
654
|
+
"border": {
|
|
655
|
+
"default": "rgba(111,121,119,1)",
|
|
656
|
+
"subtle": "rgba(233,240,238,1)",
|
|
657
|
+
"emphasized": "rgba(0,107,92,1)",
|
|
658
|
+
"danger": "rgba(186,16,16,1)",
|
|
659
|
+
"success": "rgba(74,128,82,1)",
|
|
660
|
+
"disabled": "rgba(0,0,0,0.24)",
|
|
661
|
+
"warning": "rgba(176,108,0,1)",
|
|
662
|
+
"info": "rgba(37,123,167,1)"
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
]
|
|
669
|
+
}
|
package/lib/package.json
ADDED