@ya-accelerators/nextjs-framework 0.0.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/@types/general.d.ts +1 -0
- package/@types/image.d.ts +8 -0
- package/@types/next-auth.d.ts +18 -0
- package/dist/env.client.d.ts +3 -0
- package/dist/env.client.js +9 -0
- package/dist/env.client.js.map +1 -0
- package/dist/env.d.ts +6 -0
- package/dist/env.js +18 -0
- package/dist/env.js.map +1 -0
- package/dist/hooks/date/index.d.ts +11 -0
- package/dist/hooks/date/index.js +14 -0
- package/dist/hooks/date/index.js.map +1 -0
- package/dist/hooks/dispatch/index.d.ts +9 -0
- package/dist/hooks/dispatch/index.jsx +25 -0
- package/dist/hooks/dispatch/index.jsx.map +1 -0
- package/dist/hooks/index.d.ts +6 -0
- package/dist/hooks/index.js +7 -0
- package/dist/hooks/index.js.map +1 -0
- package/dist/hooks/loading/index.d.ts +10 -0
- package/dist/hooks/loading/index.jsx +22 -0
- package/dist/hooks/loading/index.jsx.map +1 -0
- package/dist/hooks/localStorage/index.d.ts +1 -0
- package/dist/hooks/localStorage/index.js +53 -0
- package/dist/hooks/localStorage/index.js.map +1 -0
- package/dist/hooks/modal/index.d.ts +26 -0
- package/dist/hooks/modal/index.jsx +63 -0
- package/dist/hooks/modal/index.jsx.map +1 -0
- package/dist/hooks/toast/index.d.ts +15 -0
- package/dist/hooks/toast/index.jsx +39 -0
- package/dist/hooks/toast/index.jsx.map +1 -0
- package/dist/i18n/index.d.ts +3 -0
- package/dist/i18n/index.js +40 -0
- package/dist/i18n/index.js.map +1 -0
- package/dist/i18n/strings/en-US.json +18 -0
- package/dist/i18n/strings/ja-JP.json +37 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/cookie/index.d.ts +9 -0
- package/dist/lib/cookie/index.js +66 -0
- package/dist/lib/cookie/index.js.map +1 -0
- package/dist/lib/index.d.ts +10 -0
- package/dist/lib/index.js +11 -0
- package/dist/lib/index.js.map +1 -0
- package/dist/lib/next-auth/index.d.ts +2 -0
- package/dist/lib/next-auth/index.js +62 -0
- package/dist/lib/next-auth/index.js.map +1 -0
- package/dist/lib/s3/index.d.ts +2 -0
- package/dist/lib/s3/index.js +17 -0
- package/dist/lib/s3/index.js.map +1 -0
- package/dist/lib/trpc/index.d.ts +8 -0
- package/dist/lib/trpc/index.js +32 -0
- package/dist/lib/trpc/index.js.map +1 -0
- package/dist/styles/globals.css +26 -0
- package/dist/styles/tailwind.config.d.ts +577 -0
- package/dist/styles/tailwind.config.js +671 -0
- package/dist/styles/tailwind.config.js.map +1 -0
- package/dist/styles/tailwind.config.ts +672 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/ui/component/button/base.d.ts +27 -0
- package/dist/ui/component/button/base.jsx +54 -0
- package/dist/ui/component/button/base.jsx.map +1 -0
- package/dist/ui/component/button/colored/index.d.ts +11 -0
- package/dist/ui/component/button/colored/index.jsx +7 -0
- package/dist/ui/component/button/colored/index.jsx.map +1 -0
- package/dist/ui/component/button/image/index.d.ts +4 -0
- package/dist/ui/component/button/image/index.jsx +5 -0
- package/dist/ui/component/button/image/index.jsx.map +1 -0
- package/dist/ui/component/button/index.d.ts +18 -0
- package/dist/ui/component/button/index.jsx +25 -0
- package/dist/ui/component/button/index.jsx.map +1 -0
- package/dist/ui/component/button/text/index.d.ts +11 -0
- package/dist/ui/component/button/text/index.jsx +8 -0
- package/dist/ui/component/button/text/index.jsx.map +1 -0
- package/dist/ui/component/card/index.d.ts +12 -0
- package/dist/ui/component/card/index.jsx +20 -0
- package/dist/ui/component/card/index.jsx.map +1 -0
- package/dist/ui/component/icon/index.d.ts +7 -0
- package/dist/ui/component/icon/index.jsx +3 -0
- package/dist/ui/component/icon/index.jsx.map +1 -0
- package/dist/ui/component/index.d.ts +95 -0
- package/dist/ui/component/index.js +15 -0
- package/dist/ui/component/index.js.map +1 -0
- package/dist/ui/component/loading/index.d.ts +5 -0
- package/dist/ui/component/loading/index.jsx +27 -0
- package/dist/ui/component/loading/index.jsx.map +1 -0
- package/dist/ui/component/ssr/index.d.ts +5 -0
- package/dist/ui/component/ssr/index.jsx +11 -0
- package/dist/ui/component/ssr/index.jsx.map +1 -0
- package/dist/ui/component/typography/H1/index.d.ts +7 -0
- package/dist/ui/component/typography/H1/index.jsx +13 -0
- package/dist/ui/component/typography/H1/index.jsx.map +1 -0
- package/dist/ui/component/typography/H2/index.d.ts +7 -0
- package/dist/ui/component/typography/H2/index.jsx +13 -0
- package/dist/ui/component/typography/H2/index.jsx.map +1 -0
- package/dist/ui/component/typography/H3/index.d.ts +7 -0
- package/dist/ui/component/typography/H3/index.jsx +13 -0
- package/dist/ui/component/typography/H3/index.jsx.map +1 -0
- package/dist/ui/component/typography/H4/index.d.ts +7 -0
- package/dist/ui/component/typography/H4/index.jsx +13 -0
- package/dist/ui/component/typography/H4/index.jsx.map +1 -0
- package/dist/ui/component/typography/H5/index.d.ts +7 -0
- package/dist/ui/component/typography/H5/index.jsx +13 -0
- package/dist/ui/component/typography/H5/index.jsx.map +1 -0
- package/dist/ui/component/typography/H6/index.d.ts +7 -0
- package/dist/ui/component/typography/H6/index.jsx +13 -0
- package/dist/ui/component/typography/H6/index.jsx.map +1 -0
- package/dist/ui/component/typography/Label/index.d.ts +7 -0
- package/dist/ui/component/typography/Label/index.jsx +13 -0
- package/dist/ui/component/typography/Label/index.jsx.map +1 -0
- package/dist/ui/component/typography/LinkText/index.d.ts +8 -0
- package/dist/ui/component/typography/LinkText/index.jsx +14 -0
- package/dist/ui/component/typography/LinkText/index.jsx.map +1 -0
- package/dist/ui/component/typography/P/index.d.ts +7 -0
- package/dist/ui/component/typography/P/index.jsx +13 -0
- package/dist/ui/component/typography/P/index.jsx.map +1 -0
- package/dist/ui/component/typography/Pre/index.d.ts +7 -0
- package/dist/ui/component/typography/Pre/index.jsx +13 -0
- package/dist/ui/component/typography/Pre/index.jsx.map +1 -0
- package/dist/ui/component/typography/index.d.ts +54 -0
- package/dist/ui/component/typography/index.jsx +23 -0
- package/dist/ui/component/typography/index.jsx.map +1 -0
- package/dist/ui/composite/button/index.d.ts +8 -0
- package/dist/ui/composite/button/index.jsx +45 -0
- package/dist/ui/composite/button/index.jsx.map +1 -0
- package/dist/ui/composite/dropdown/index.d.ts +12 -0
- package/dist/ui/composite/dropdown/index.jsx +102 -0
- package/dist/ui/composite/dropdown/index.jsx.map +1 -0
- package/dist/ui/composite/index.d.ts +342 -0
- package/dist/ui/composite/index.js +13 -0
- package/dist/ui/composite/index.js.map +1 -0
- package/dist/ui/composite/input/address/index.d.ts +33 -0
- package/dist/ui/composite/input/address/index.jsx +132 -0
- package/dist/ui/composite/input/address/index.jsx.map +1 -0
- package/dist/ui/composite/input/address/map.d.ts +64 -0
- package/dist/ui/composite/input/address/map.jsx +111 -0
- package/dist/ui/composite/input/address/map.jsx.map +1 -0
- package/dist/ui/composite/input/address/utils.d.ts +23 -0
- package/dist/ui/composite/input/address/utils.js +63 -0
- package/dist/ui/composite/input/address/utils.js.map +1 -0
- package/dist/ui/composite/input/checkbox/index.d.ts +22 -0
- package/dist/ui/composite/input/checkbox/index.jsx +38 -0
- package/dist/ui/composite/input/checkbox/index.jsx.map +1 -0
- package/dist/ui/composite/input/datePicker/index.d.ts +19 -0
- package/dist/ui/composite/input/datePicker/index.jsx +100 -0
- package/dist/ui/composite/input/datePicker/index.jsx.map +1 -0
- package/dist/ui/composite/input/dateRange/index.d.ts +14 -0
- package/dist/ui/composite/input/dateRange/index.jsx +46 -0
- package/dist/ui/composite/input/dateRange/index.jsx.map +1 -0
- package/dist/ui/composite/input/dateTimePicker/index.d.ts +15 -0
- package/dist/ui/composite/input/dateTimePicker/index.jsx +74 -0
- package/dist/ui/composite/input/dateTimePicker/index.jsx.map +1 -0
- package/dist/ui/composite/input/dateTimeRange/index.d.ts +14 -0
- package/dist/ui/composite/input/dateTimeRange/index.jsx +88 -0
- package/dist/ui/composite/input/dateTimeRange/index.jsx.map +1 -0
- package/dist/ui/composite/input/index.d.ts +216 -0
- package/dist/ui/composite/input/index.js +35 -0
- package/dist/ui/composite/input/index.js.map +1 -0
- package/dist/ui/composite/input/list/index.d.ts +20 -0
- package/dist/ui/composite/input/list/index.jsx +30 -0
- package/dist/ui/composite/input/list/index.jsx.map +1 -0
- package/dist/ui/composite/input/radio/index.d.ts +14 -0
- package/dist/ui/composite/input/radio/index.jsx +34 -0
- package/dist/ui/composite/input/radio/index.jsx.map +1 -0
- package/dist/ui/composite/input/search/index.d.ts +5 -0
- package/dist/ui/composite/input/search/index.jsx +38 -0
- package/dist/ui/composite/input/search/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/ClearIndicator/index.d.ts +4 -0
- package/dist/ui/composite/input/select/ClearIndicator/index.jsx +8 -0
- package/dist/ui/composite/input/select/ClearIndicator/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/Control/index.d.ts +4 -0
- package/dist/ui/composite/input/select/Control/index.jsx +23 -0
- package/dist/ui/composite/input/select/Control/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/DropdownIndicator/index.d.ts +4 -0
- package/dist/ui/composite/input/select/DropdownIndicator/index.jsx +8 -0
- package/dist/ui/composite/input/select/DropdownIndicator/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/GroupHeading/index.d.ts +4 -0
- package/dist/ui/composite/input/select/GroupHeading/index.jsx +9 -0
- package/dist/ui/composite/input/select/GroupHeading/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/Input/index.d.ts +4 -0
- package/dist/ui/composite/input/select/Input/index.jsx +7 -0
- package/dist/ui/composite/input/select/Input/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/Menu/index.d.ts +4 -0
- package/dist/ui/composite/input/select/Menu/index.jsx +19 -0
- package/dist/ui/composite/input/select/Menu/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/MultiValue/index.d.ts +4 -0
- package/dist/ui/composite/input/select/MultiValue/index.jsx +15 -0
- package/dist/ui/composite/input/select/MultiValue/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/Option/index.d.ts +4 -0
- package/dist/ui/composite/input/select/Option/index.jsx +79 -0
- package/dist/ui/composite/input/select/Option/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/Placeholder/index.d.ts +4 -0
- package/dist/ui/composite/input/select/Placeholder/index.jsx +7 -0
- package/dist/ui/composite/input/select/Placeholder/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/SelectContainer/index.d.ts +4 -0
- package/dist/ui/composite/input/select/SelectContainer/index.jsx +40 -0
- package/dist/ui/composite/input/select/SelectContainer/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/SingleValue/index.d.ts +4 -0
- package/dist/ui/composite/input/select/SingleValue/index.jsx +17 -0
- package/dist/ui/composite/input/select/SingleValue/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/index.d.ts +37 -0
- package/dist/ui/composite/input/select/index.jsx +242 -0
- package/dist/ui/composite/input/select/index.jsx.map +1 -0
- package/dist/ui/composite/input/select/types.d.ts +16 -0
- package/dist/ui/composite/input/select/types.js +6 -0
- package/dist/ui/composite/input/select/types.js.map +1 -0
- package/dist/ui/composite/input/text/index.d.ts +15 -0
- package/dist/ui/composite/input/text/index.jsx +40 -0
- package/dist/ui/composite/input/text/index.jsx.map +1 -0
- package/dist/ui/composite/input/textarea/index.d.ts +11 -0
- package/dist/ui/composite/input/textarea/index.jsx +62 -0
- package/dist/ui/composite/input/textarea/index.jsx.map +1 -0
- package/dist/ui/composite/input/timePicker/index.d.ts +13 -0
- package/dist/ui/composite/input/timePicker/index.jsx +36 -0
- package/dist/ui/composite/input/timePicker/index.jsx.map +1 -0
- package/dist/ui/composite/input/timeRange/index.d.ts +16 -0
- package/dist/ui/composite/input/timeRange/index.jsx +54 -0
- package/dist/ui/composite/input/timeRange/index.jsx.map +1 -0
- package/dist/ui/composite/input/weekDaysSelector/index.d.ts +11 -0
- package/dist/ui/composite/input/weekDaysSelector/index.jsx +39 -0
- package/dist/ui/composite/input/weekDaysSelector/index.jsx.map +1 -0
- package/dist/ui/composite/input/weekdayPicker/index.d.ts +13 -0
- package/dist/ui/composite/input/weekdayPicker/index.jsx +49 -0
- package/dist/ui/composite/input/weekdayPicker/index.jsx.map +1 -0
- package/dist/ui/composite/label/index.d.ts +11 -0
- package/dist/ui/composite/label/index.jsx +18 -0
- package/dist/ui/composite/label/index.jsx.map +1 -0
- package/dist/ui/composite/pageTitle/index.d.ts +18 -0
- package/dist/ui/composite/pageTitle/index.jsx +62 -0
- package/dist/ui/composite/pageTitle/index.jsx.map +1 -0
- package/dist/ui/functional/index.d.ts +10 -0
- package/dist/ui/functional/index.js +9 -0
- package/dist/ui/functional/index.js.map +1 -0
- package/dist/ui/functional/notFound/index.d.ts +1 -0
- package/dist/ui/functional/notFound/index.jsx +13 -0
- package/dist/ui/functional/notFound/index.jsx.map +1 -0
- package/dist/ui/functional/signInForm/index.d.ts +4 -0
- package/dist/ui/functional/signInForm/index.jsx +45 -0
- package/dist/ui/functional/signInForm/index.jsx.map +1 -0
- package/dist/ui/functional/signOutForm/index.d.ts +3 -0
- package/dist/ui/functional/signOutForm/index.jsx +29 -0
- package/dist/ui/functional/signOutForm/index.jsx.map +1 -0
- package/dist/ui/index.d.ts +6 -0
- package/dist/ui/index.js +7 -0
- package/dist/ui/index.js.map +1 -0
- package/dist/ui/layout/app/component.d.ts +59 -0
- package/dist/ui/layout/app/component.jsx +224 -0
- package/dist/ui/layout/app/component.jsx.map +1 -0
- package/dist/ui/layout/app/content/index.d.ts +9 -0
- package/dist/ui/layout/app/content/index.jsx +18 -0
- package/dist/ui/layout/app/content/index.jsx.map +1 -0
- package/dist/ui/layout/app/index.d.ts +18 -0
- package/dist/ui/layout/app/index.jsx +40 -0
- package/dist/ui/layout/app/index.jsx.map +1 -0
- package/dist/ui/layout/form/index.d.ts +68 -0
- package/dist/ui/layout/form/index.jsx +558 -0
- package/dist/ui/layout/form/index.jsx.map +1 -0
- package/dist/ui/layout/index.d.ts +356 -0
- package/dist/ui/layout/index.js +19 -0
- package/dist/ui/layout/index.js.map +1 -0
- package/dist/ui/layout/modal/index.d.ts +7 -0
- package/dist/ui/layout/modal/index.jsx +11 -0
- package/dist/ui/layout/modal/index.jsx.map +1 -0
- package/dist/ui/layout/object/index.d.ts +30 -0
- package/dist/ui/layout/object/index.jsx +145 -0
- package/dist/ui/layout/object/index.jsx.map +1 -0
- package/dist/ui/layout/root/index.d.ts +10 -0
- package/dist/ui/layout/root/index.jsx +31 -0
- package/dist/ui/layout/root/index.jsx.map +1 -0
- package/dist/ui/layout/root/provider/index.d.ts +7 -0
- package/dist/ui/layout/root/provider/index.jsx +26 -0
- package/dist/ui/layout/root/provider/index.jsx.map +1 -0
- package/dist/ui/layout/tab/component.d.ts +4 -0
- package/dist/ui/layout/tab/component.jsx +16 -0
- package/dist/ui/layout/tab/component.jsx.map +1 -0
- package/dist/ui/layout/tab/content/index.d.ts +8 -0
- package/dist/ui/layout/tab/content/index.jsx +8 -0
- package/dist/ui/layout/tab/content/index.jsx.map +1 -0
- package/dist/ui/layout/tab/index.d.ts +11 -0
- package/dist/ui/layout/tab/index.jsx +25 -0
- package/dist/ui/layout/tab/index.jsx.map +1 -0
- package/dist/ui/layout/table/index.d.ts +33 -0
- package/dist/ui/layout/table/index.jsx +283 -0
- package/dist/ui/layout/table/index.jsx.map +1 -0
- package/dist/ui/layout/toast/index.d.ts +7 -0
- package/dist/ui/layout/toast/index.jsx +18 -0
- package/dist/ui/layout/toast/index.jsx.map +1 -0
- package/dist/ui/theme/border/index.d.ts +28 -0
- package/dist/ui/theme/border/index.js +67 -0
- package/dist/ui/theme/border/index.js.map +1 -0
- package/dist/ui/theme/color/index.d.ts +32 -0
- package/dist/ui/theme/color/index.js +106 -0
- package/dist/ui/theme/color/index.js.map +1 -0
- package/dist/ui/theme/index.d.ts +4 -0
- package/dist/ui/theme/index.js +5 -0
- package/dist/ui/theme/index.js.map +1 -0
- package/dist/ui/theme/rounded/index.d.ts +9 -0
- package/dist/ui/theme/rounded/index.js +14 -0
- package/dist/ui/theme/rounded/index.js.map +1 -0
- package/dist/ui/theme/size/index.d.ts +15 -0
- package/dist/ui/theme/size/index.js +55 -0
- package/dist/ui/theme/size/index.js.map +1 -0
- package/dist/ui/types/index.d.ts +113 -0
- package/dist/ui/types/index.js +33 -0
- package/dist/ui/types/index.js.map +1 -0
- package/dist/util/client.d.ts +2 -0
- package/dist/util/client.js +4 -0
- package/dist/util/client.js.map +1 -0
- package/dist/util/date/impl.d.ts +7 -0
- package/dist/util/date/impl.js +22 -0
- package/dist/util/date/impl.js.map +1 -0
- package/dist/util/date/index.d.ts +17 -0
- package/dist/util/date/index.js +16 -0
- package/dist/util/date/index.js.map +1 -0
- package/dist/util/index.d.ts +17 -0
- package/dist/util/index.js +143 -0
- package/dist/util/index.js.map +1 -0
- package/package.json +62 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/ui/theme/border/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;CACJ,CAAA;AAGV,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,KAAK,EAAE,KAAK;CACJ,CAAA;AAQV,MAAM,CAAC,MAAM,aAAa,GAAG,CAC3B,YAAqB,KAAK,EAC1B,OAA2G,SAAS,EACpH,QAA0B,gBAAgB,CAAC,OAAO,EAClD,QAAqB,WAAW,CAAC,IAAI,EACrC,EAAE,CACF,CAAC;IACC,KAAK;IACL,SAAS;IACT,KAAK;IACL,IAAI;CACL,CAAgB,CAAA;AACnB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,KAAmB,EAAE,EAAE;IACjE,IAAI,CAAC,KAAK,EAAE,CAAC;QACX,OAAO,EAAE,CAAA;IACX,CAAC;IACD,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,KAAK,CAAA;IAC/C,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;QACvB,OAAO;YACL,SAAS;YACT,KAAK,KAAK,MAAM,IAAI,qBAAqB;YACzC,KAAK,KAAK,SAAS,IAAI,yBAAyB;YAChD,KAAK,KAAK,SAAS,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,8BAA8B,CAAC,CAAC,CAAC,4BAA4B,CAAC;YAClG,KAAK,KAAK,WAAW,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,gCAAgC,CAAC,CAAC,CAAC,8BAA8B,CAAC;YACxG,KAAK,KAAK,QAAQ,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,6BAA6B,CAAC,CAAC,CAAC,2BAA2B,CAAC;YAC/F,KAAK,KAAK,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,4BAA4B,CAAC,CAAC,CAAC,0BAA0B,CAAC;YAC5F,KAAK,KAAK,SAAS,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,8BAA8B,CAAC,CAAC,CAAC,4BAA4B,CAAC;YAClG,KAAK,KAAK,SAAS,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,8BAA8B,CAAC,CAAC,CAAC,4BAA4B,CAAC;YAClG,KAAK,KAAK,MAAM,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,2BAA2B,CAAC,CAAC,CAAC,yBAAyB,CAAC;YACzF,KAAK,KAAK,MAAM,IAAI,4BAA4B;YAChD,KAAK,KAAK,MAAM,IAAI,qCAAqC;YACzD,KAAK,KAAK,IAAI,IAAI,qCAAqC;YACvD,KAAK,KAAK,IAAI,IAAI,qCAAqC;YACvD,KAAK,KAAK,KAAK,IAAI,qCAAqC;SACzD,CAAA;IACH,CAAC;IACD,OAAO;QACL,IAAI;QACJ,KAAK,KAAK,MAAM,IAAI,GAAG,IAAI,cAAc;QACzC,KAAK,KAAK,SAAS,IAAI,GAAG,IAAI,kBAAkB;QAChD,KAAK,KAAK,SAAS,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,uBAAuB,CAAC,CAAC,CAAC,GAAG,IAAI,qBAAqB,CAAC;QAClG,KAAK,KAAK,WAAW,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,yBAAyB,CAAC,CAAC,CAAC,GAAG,IAAI,uBAAuB,CAAC;QACxG,KAAK,KAAK,QAAQ,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,sBAAsB,CAAC,CAAC,CAAC,GAAG,IAAI,oBAAoB,CAAC;QAC/F,KAAK,KAAK,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,qBAAqB,CAAC,CAAC,CAAC,GAAG,IAAI,mBAAmB,CAAC;QAC5F,KAAK,KAAK,SAAS,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,uBAAuB,CAAC,CAAC,CAAC,GAAG,IAAI,qBAAqB,CAAC;QAClG,KAAK,KAAK,SAAS,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,uBAAuB,CAAC,CAAC,CAAC,GAAG,IAAI,qBAAqB,CAAC;QAClG,KAAK,KAAK,MAAM,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,oBAAoB,CAAC,CAAC,CAAC,GAAG,IAAI,kBAAkB,CAAC;QACzF,KAAK,KAAK,MAAM,IAAI,GAAG,IAAI,IAAI;QAC/B,KAAK,KAAK,MAAM,IAAI,GAAG,IAAI,QAAQ;QACnC,KAAK,KAAK,IAAI,IAAI,GAAG,IAAI,QAAQ;QACjC,KAAK,KAAK,IAAI,IAAI,GAAG,IAAI,QAAQ;QACjC,KAAK,KAAK,KAAK,IAAI,GAAG,IAAI,QAAQ;KACnC,CAAA;AACH,CAAC,CAAA"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare const ColorTypes: {
|
|
2
|
+
readonly primary: "primary";
|
|
3
|
+
readonly secondary: "secondary";
|
|
4
|
+
readonly accent: "accent";
|
|
5
|
+
readonly error: "error";
|
|
6
|
+
readonly warning: "warning";
|
|
7
|
+
readonly success: "success";
|
|
8
|
+
readonly info: "info";
|
|
9
|
+
};
|
|
10
|
+
export type ColorTypes = (typeof ColorTypes)[keyof typeof ColorTypes];
|
|
11
|
+
export declare const getColorTypeClassName: (type: ColorTypes, container: boolean) => "bg-primary-container-bg text-primary-container-on" | "bg-primary-default-bg text-primary-default-on" | "bg-secondary-container-bg text-secondary-container-on" | "bg-secondary-default-bg text-secondary-default-on" | "bg-accent-container-bg text-accent-container-on" | "bg-accent-default-bg text-accent-default-on" | "bg-error-container-bg text-error-container-on" | "bg-error-default-bg text-error-default-on" | "bg-warning-container-bg text-warning-container-on" | "bg-warning-default-bg text-warning-default-on" | "bg-success-container-bg text-success-container-on" | "bg-success-default-bg text-success-default-on" | "bg-info-container-bg text-info-container-on" | "bg-info-default-bg text-info-default-on";
|
|
12
|
+
export declare const TextColorTypes: {
|
|
13
|
+
readonly main: "main";
|
|
14
|
+
readonly sub: "sub";
|
|
15
|
+
readonly disabled: "disabled";
|
|
16
|
+
readonly primary: "primary";
|
|
17
|
+
readonly secondary: "secondary";
|
|
18
|
+
readonly accent: "accent";
|
|
19
|
+
readonly error: "error";
|
|
20
|
+
readonly warning: "warning";
|
|
21
|
+
readonly success: "success";
|
|
22
|
+
readonly info: "info";
|
|
23
|
+
};
|
|
24
|
+
export type TextColorTypes = (typeof TextColorTypes)[keyof typeof TextColorTypes];
|
|
25
|
+
export declare const getTextColorTypeClassName: (type: TextColorTypes, container: boolean) => string;
|
|
26
|
+
export declare const BackgroundColorTypes: {
|
|
27
|
+
readonly default: "default";
|
|
28
|
+
readonly container: "container";
|
|
29
|
+
readonly overlay: "overlay";
|
|
30
|
+
};
|
|
31
|
+
export type BackgroundColorTypes = (typeof BackgroundColorTypes)[keyof typeof BackgroundColorTypes];
|
|
32
|
+
export declare const getBackgroundColorTypeClassName: (type: BackgroundColorTypes) => "bg-bg-default" | "bg-bg-container" | "bg-bg-overlay";
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import classNames from 'classnames';
|
|
2
|
+
export const ColorTypes = {
|
|
3
|
+
primary: 'primary',
|
|
4
|
+
secondary: 'secondary',
|
|
5
|
+
accent: 'accent',
|
|
6
|
+
error: 'error',
|
|
7
|
+
warning: 'warning',
|
|
8
|
+
success: 'success',
|
|
9
|
+
info: 'info',
|
|
10
|
+
};
|
|
11
|
+
export const getColorTypeClassName = (type, container) => {
|
|
12
|
+
switch (type) {
|
|
13
|
+
case 'primary':
|
|
14
|
+
return container === true
|
|
15
|
+
? 'bg-primary-container-bg text-primary-container-on'
|
|
16
|
+
: 'bg-primary-default-bg text-primary-default-on';
|
|
17
|
+
case 'secondary':
|
|
18
|
+
return container === true
|
|
19
|
+
? 'bg-secondary-container-bg text-secondary-container-on'
|
|
20
|
+
: 'bg-secondary-default-bg text-secondary-default-on';
|
|
21
|
+
case 'accent':
|
|
22
|
+
return container === true
|
|
23
|
+
? 'bg-accent-container-bg text-accent-container-on'
|
|
24
|
+
: 'bg-accent-default-bg text-accent-default-on';
|
|
25
|
+
case 'error':
|
|
26
|
+
return container === true
|
|
27
|
+
? 'bg-error-container-bg text-error-container-on'
|
|
28
|
+
: 'bg-error-default-bg text-error-default-on';
|
|
29
|
+
case 'warning':
|
|
30
|
+
return container === true
|
|
31
|
+
? 'bg-warning-container-bg text-warning-container-on'
|
|
32
|
+
: 'bg-warning-default-bg text-warning-default-on';
|
|
33
|
+
case 'success':
|
|
34
|
+
return container === true
|
|
35
|
+
? 'bg-success-container-bg text-success-container-on'
|
|
36
|
+
: 'bg-success-default-bg text-success-default-on';
|
|
37
|
+
case 'info':
|
|
38
|
+
return container === true
|
|
39
|
+
? 'bg-info-container-bg text-info-container-on'
|
|
40
|
+
: 'bg-info-default-bg text-info-default-on';
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
export const TextColorTypes = {
|
|
44
|
+
main: 'main',
|
|
45
|
+
sub: 'sub',
|
|
46
|
+
disabled: 'disabled',
|
|
47
|
+
primary: 'primary',
|
|
48
|
+
secondary: 'secondary',
|
|
49
|
+
accent: 'accent',
|
|
50
|
+
error: 'error',
|
|
51
|
+
warning: 'warning',
|
|
52
|
+
success: 'success',
|
|
53
|
+
info: 'info',
|
|
54
|
+
};
|
|
55
|
+
export const getTextColorTypeClassName = (type, container) => {
|
|
56
|
+
let textClass = '';
|
|
57
|
+
switch (type) {
|
|
58
|
+
case 'main':
|
|
59
|
+
textClass = container ? 'text-mainText-container' : 'text-mainText-default';
|
|
60
|
+
break;
|
|
61
|
+
case 'sub':
|
|
62
|
+
textClass = container ? 'text-subText-container' : 'text-subText-default';
|
|
63
|
+
break;
|
|
64
|
+
case 'disabled':
|
|
65
|
+
textClass = container ? 'text-disabledText-container' : 'text-disabledText-default';
|
|
66
|
+
break;
|
|
67
|
+
case 'primary':
|
|
68
|
+
textClass = container ? 'text-primary-container-on' : 'text-primary-default-bg';
|
|
69
|
+
break;
|
|
70
|
+
case 'secondary':
|
|
71
|
+
textClass = container ? 'text-secondary-container-on' : 'text-secondary-default-bg';
|
|
72
|
+
break;
|
|
73
|
+
case 'accent':
|
|
74
|
+
textClass = container ? 'text-accent-container-on' : 'text-accent-default-bg';
|
|
75
|
+
break;
|
|
76
|
+
case 'error':
|
|
77
|
+
textClass = container ? 'text-error-container-on' : 'text-error-default-bg';
|
|
78
|
+
break;
|
|
79
|
+
case 'warning':
|
|
80
|
+
textClass = container ? 'text-warning-container-on' : 'text-warning-default-bg';
|
|
81
|
+
break;
|
|
82
|
+
case 'success':
|
|
83
|
+
textClass = container ? 'text-success-container-on' : 'text-success-default-bg';
|
|
84
|
+
break;
|
|
85
|
+
case 'info':
|
|
86
|
+
textClass = container ? 'text-info-container-on' : 'text-info-default-bg';
|
|
87
|
+
break;
|
|
88
|
+
}
|
|
89
|
+
return classNames([getBackgroundColorTypeClassName(container ? 'container' : 'default'), textClass]);
|
|
90
|
+
};
|
|
91
|
+
export const BackgroundColorTypes = {
|
|
92
|
+
default: 'default',
|
|
93
|
+
container: 'container',
|
|
94
|
+
overlay: 'overlay',
|
|
95
|
+
};
|
|
96
|
+
export const getBackgroundColorTypeClassName = (type) => {
|
|
97
|
+
switch (type) {
|
|
98
|
+
case 'default':
|
|
99
|
+
return 'bg-bg-default';
|
|
100
|
+
case 'container':
|
|
101
|
+
return 'bg-bg-container';
|
|
102
|
+
case 'overlay':
|
|
103
|
+
return 'bg-bg-overlay';
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/ui/theme/color/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/theme/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const Rounded: {
|
|
2
|
+
readonly none: "none";
|
|
3
|
+
readonly s: "s";
|
|
4
|
+
readonly m: "m";
|
|
5
|
+
readonly l: "l";
|
|
6
|
+
readonly half: "half";
|
|
7
|
+
};
|
|
8
|
+
export type Rounded = (typeof Rounded)[keyof typeof Rounded];
|
|
9
|
+
export declare const getRoundedClassName: (rounded?: Rounded) => (string | false)[];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export const Rounded = {
|
|
2
|
+
none: 'none',
|
|
3
|
+
s: 's',
|
|
4
|
+
m: 'm',
|
|
5
|
+
l: 'l',
|
|
6
|
+
half: 'half',
|
|
7
|
+
};
|
|
8
|
+
export const getRoundedClassName = (rounded) => [
|
|
9
|
+
rounded === Rounded.s && 'rounded-small',
|
|
10
|
+
rounded === Rounded.m && 'rounded-medium',
|
|
11
|
+
rounded === Rounded.l && 'rounded-large',
|
|
12
|
+
rounded === Rounded.half && 'rounded-[50%]',
|
|
13
|
+
];
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/ui/theme/rounded/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,IAAI,EAAE,MAAM;IACZ,CAAC,EAAE,GAAG;IACN,CAAC,EAAE,GAAG;IACN,CAAC,EAAE,GAAG;IACN,IAAI,EAAE,MAAM;CACJ,CAAA;AAEV,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,OAAiB,EAAE,EAAE,CAAC;IACxD,OAAO,KAAK,OAAO,CAAC,CAAC,IAAI,eAAe;IACxC,OAAO,KAAK,OAAO,CAAC,CAAC,IAAI,gBAAgB;IACzC,OAAO,KAAK,OAAO,CAAC,CAAC,IAAI,eAAe;IACxC,OAAO,KAAK,OAAO,CAAC,IAAI,IAAI,eAAe;CAC5C,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const ControlSize: {
|
|
2
|
+
readonly sm: "sm";
|
|
3
|
+
readonly md: "md";
|
|
4
|
+
readonly base: "base";
|
|
5
|
+
readonly lg: "lg";
|
|
6
|
+
readonly xl: "xl";
|
|
7
|
+
readonly '2xl': "2xl";
|
|
8
|
+
readonly '3xl': "3xl";
|
|
9
|
+
};
|
|
10
|
+
export type ControlSize = (typeof ControlSize)[keyof typeof ControlSize];
|
|
11
|
+
export declare const getControlSizeClassName: (size?: ControlSize) => (string | false)[];
|
|
12
|
+
export declare const getControlWidthClassName: (size?: ControlSize) => (string | false)[];
|
|
13
|
+
export declare const getControlHeightClassName: (size?: ControlSize) => (string | false)[];
|
|
14
|
+
export declare const getControlTextSizeClassName: (size?: ControlSize) => (string | false)[];
|
|
15
|
+
export declare const getControlPaddingClassName: (size?: ControlSize) => (string | false)[];
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export const ControlSize = {
|
|
2
|
+
sm: 'sm',
|
|
3
|
+
md: 'md',
|
|
4
|
+
base: 'base',
|
|
5
|
+
lg: 'lg',
|
|
6
|
+
xl: 'xl',
|
|
7
|
+
'2xl': '2xl',
|
|
8
|
+
'3xl': '3xl',
|
|
9
|
+
};
|
|
10
|
+
export const getControlSizeClassName = (size) => [
|
|
11
|
+
size === 'sm' && 'size-control-sm',
|
|
12
|
+
size === 'md' && 'size-control-md',
|
|
13
|
+
size === 'base' && 'size-control-base',
|
|
14
|
+
size === 'lg' && 'size-control-lg',
|
|
15
|
+
size === 'xl' && 'size-control-xl',
|
|
16
|
+
size === '2xl' && 'size-control-2xl',
|
|
17
|
+
size === '3xl' && 'size-control-3xl',
|
|
18
|
+
];
|
|
19
|
+
export const getControlWidthClassName = (size) => [
|
|
20
|
+
size === 'sm' && 'w-control-sm',
|
|
21
|
+
size === 'md' && 'w-control-md',
|
|
22
|
+
size === 'base' && 'w-control-base',
|
|
23
|
+
size === 'lg' && 'w-control-lg',
|
|
24
|
+
size === 'xl' && 'w-control-xl',
|
|
25
|
+
size === '2xl' && 'w-control-2xl',
|
|
26
|
+
size === '3xl' && 'w-control-3xl',
|
|
27
|
+
];
|
|
28
|
+
export const getControlHeightClassName = (size) => [
|
|
29
|
+
size === 'sm' && 'h-control-sm',
|
|
30
|
+
size === 'md' && 'h-control-md',
|
|
31
|
+
size === 'base' && 'h-control-base',
|
|
32
|
+
size === 'lg' && 'h-control-lg',
|
|
33
|
+
size === 'xl' && 'h-control-xl',
|
|
34
|
+
size === '2xl' && 'h-control-2xl',
|
|
35
|
+
size === '3xl' && 'h-control-3xl',
|
|
36
|
+
];
|
|
37
|
+
export const getControlTextSizeClassName = (size) => [
|
|
38
|
+
size === 'sm' && 'text-xs',
|
|
39
|
+
size === 'md' && 'text-sm',
|
|
40
|
+
size === 'base' && 'text-base',
|
|
41
|
+
size === 'lg' && 'text-lg',
|
|
42
|
+
size === 'xl' && 'text-xl',
|
|
43
|
+
size === '2xl' && 'text-2xl',
|
|
44
|
+
size === '3xl' && 'text-3xl',
|
|
45
|
+
];
|
|
46
|
+
export const getControlPaddingClassName = (size) => [
|
|
47
|
+
size === 'sm' && 'p-control-padding-sm',
|
|
48
|
+
size === 'md' && 'p-control-padding-md',
|
|
49
|
+
size === 'base' && 'p-control-padding-base',
|
|
50
|
+
size === 'lg' && 'p-control-padding-lg',
|
|
51
|
+
size === 'xl' && 'p-control-padding-xl',
|
|
52
|
+
size === '2xl' && 'p-control-padding-2xl',
|
|
53
|
+
size === '3xl' && 'p-control-padding-3xl',
|
|
54
|
+
];
|
|
55
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/ui/theme/size/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE,KAAK;CACJ,CAAA;AAEV,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,IAAkB,EAAE,EAAE,CAAC;IAC7D,IAAI,KAAK,IAAI,IAAI,iBAAiB;IAClC,IAAI,KAAK,IAAI,IAAI,iBAAiB;IAClC,IAAI,KAAK,MAAM,IAAI,mBAAmB;IACtC,IAAI,KAAK,IAAI,IAAI,iBAAiB;IAClC,IAAI,KAAK,IAAI,IAAI,iBAAiB;IAClC,IAAI,KAAK,KAAK,IAAI,kBAAkB;IACpC,IAAI,KAAK,KAAK,IAAI,kBAAkB;CACrC,CAAA;AACD,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,IAAkB,EAAE,EAAE,CAAC;IAC9D,IAAI,KAAK,IAAI,IAAI,cAAc;IAC/B,IAAI,KAAK,IAAI,IAAI,cAAc;IAC/B,IAAI,KAAK,MAAM,IAAI,gBAAgB;IACnC,IAAI,KAAK,IAAI,IAAI,cAAc;IAC/B,IAAI,KAAK,IAAI,IAAI,cAAc;IAC/B,IAAI,KAAK,KAAK,IAAI,eAAe;IACjC,IAAI,KAAK,KAAK,IAAI,eAAe;CAClC,CAAA;AACD,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,IAAkB,EAAE,EAAE,CAAC;IAC/D,IAAI,KAAK,IAAI,IAAI,cAAc;IAC/B,IAAI,KAAK,IAAI,IAAI,cAAc;IAC/B,IAAI,KAAK,MAAM,IAAI,gBAAgB;IACnC,IAAI,KAAK,IAAI,IAAI,cAAc;IAC/B,IAAI,KAAK,IAAI,IAAI,cAAc;IAC/B,IAAI,KAAK,KAAK,IAAI,eAAe;IACjC,IAAI,KAAK,KAAK,IAAI,eAAe;CAClC,CAAA;AACD,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,IAAkB,EAAE,EAAE,CAAC;IACjE,IAAI,KAAK,IAAI,IAAI,SAAS;IAC1B,IAAI,KAAK,IAAI,IAAI,SAAS;IAC1B,IAAI,KAAK,MAAM,IAAI,WAAW;IAC9B,IAAI,KAAK,IAAI,IAAI,SAAS;IAC1B,IAAI,KAAK,IAAI,IAAI,SAAS;IAC1B,IAAI,KAAK,KAAK,IAAI,UAAU;IAC5B,IAAI,KAAK,KAAK,IAAI,UAAU;CAC7B,CAAA;AACD,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,IAAkB,EAAE,EAAE,CAAC;IAChE,IAAI,KAAK,IAAI,IAAI,sBAAsB;IACvC,IAAI,KAAK,IAAI,IAAI,sBAAsB;IACvC,IAAI,KAAK,MAAM,IAAI,wBAAwB;IAC3C,IAAI,KAAK,IAAI,IAAI,sBAAsB;IACvC,IAAI,KAAK,IAAI,IAAI,sBAAsB;IACvC,IAAI,KAAK,KAAK,IAAI,uBAAuB;IACzC,IAAI,KAAK,KAAK,IAAI,uBAAuB;CAC1C,CAAA"}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import type SvgIcon from '@mui/material/SvgIcon';
|
|
2
|
+
import type { ComponentProps, ComponentType, ReactNode, SVGProps } from 'react';
|
|
3
|
+
import type { Address } from '../composite/input/address';
|
|
4
|
+
import type { Checkbox } from '../composite/input/checkbox';
|
|
5
|
+
import type { DatePicker } from '../composite/input/datePicker';
|
|
6
|
+
import type { DateRange } from '../composite/input/dateRange';
|
|
7
|
+
import type { DateTimePicker } from '../composite/input/dateTimePicker';
|
|
8
|
+
import type { DateTimeRange } from '../composite/input/dateTimeRange';
|
|
9
|
+
import type { List } from '../composite/input/list';
|
|
10
|
+
import type { Radio } from '../composite/input/radio';
|
|
11
|
+
import type { Select } from '../composite/input/select';
|
|
12
|
+
import type { Text } from '../composite/input/text';
|
|
13
|
+
import type { TextArea } from '../composite/input/textarea';
|
|
14
|
+
import type { TimePicker } from '../composite/input/timePicker';
|
|
15
|
+
import type { TimeRange } from '../composite/input/timeRange';
|
|
16
|
+
import type { WeekdayPicker } from '../composite/input/weekdayPicker';
|
|
17
|
+
import type { WeekDaysSelector } from '../composite/input/weekDaysSelector';
|
|
18
|
+
export type FormElement = {
|
|
19
|
+
type: 'element';
|
|
20
|
+
name: string;
|
|
21
|
+
value?: string;
|
|
22
|
+
label?: string;
|
|
23
|
+
required?: boolean;
|
|
24
|
+
keepLabelSpace?: boolean;
|
|
25
|
+
description?: string;
|
|
26
|
+
element: ReactNode;
|
|
27
|
+
};
|
|
28
|
+
export type FormInputHidden = {
|
|
29
|
+
type: 'hidden';
|
|
30
|
+
name: string;
|
|
31
|
+
value?: string;
|
|
32
|
+
required?: boolean;
|
|
33
|
+
};
|
|
34
|
+
interface FormInput {
|
|
35
|
+
name: string;
|
|
36
|
+
label?: string;
|
|
37
|
+
required?: boolean;
|
|
38
|
+
keepLabelSpace?: boolean;
|
|
39
|
+
description?: string;
|
|
40
|
+
}
|
|
41
|
+
export type FormInputText = FormInput & {
|
|
42
|
+
type: 'text' | 'email' | 'password' | 'url' | 'number' | 'tel';
|
|
43
|
+
props?: Omit<ComponentProps<typeof Text>, 'name' | 'required' | 'rounded' | 'focused'>;
|
|
44
|
+
};
|
|
45
|
+
export type FormInputTextArea = FormInput & {
|
|
46
|
+
type: 'textarea';
|
|
47
|
+
props?: Omit<ComponentProps<typeof TextArea>, 'name' | 'required' | 'rounded' | 'focused'>;
|
|
48
|
+
};
|
|
49
|
+
export type FormInputSelect = FormInput & {
|
|
50
|
+
type: 'select';
|
|
51
|
+
props: Omit<ComponentProps<typeof Select>, 'name' | 'required' | 'rounded'>;
|
|
52
|
+
};
|
|
53
|
+
export type FormInputCheckbox = FormInput & {
|
|
54
|
+
type: 'checkbox';
|
|
55
|
+
props: Omit<ComponentProps<typeof Checkbox>, 'name'>;
|
|
56
|
+
};
|
|
57
|
+
export type FormInputRadio = FormInput & {
|
|
58
|
+
type: 'radio';
|
|
59
|
+
props: Omit<ComponentProps<typeof Radio>, 'name'>;
|
|
60
|
+
};
|
|
61
|
+
export type FormInputWeekday = FormInput & {
|
|
62
|
+
type: 'weekday';
|
|
63
|
+
props?: Omit<ComponentProps<typeof WeekdayPicker>, 'name'>;
|
|
64
|
+
};
|
|
65
|
+
export type FormInputWeekdays = FormInput & {
|
|
66
|
+
type: 'weekdays';
|
|
67
|
+
props?: Omit<ComponentProps<typeof WeekDaysSelector>, 'name'>;
|
|
68
|
+
};
|
|
69
|
+
export type FormInputDate = FormInput & {
|
|
70
|
+
type: 'date';
|
|
71
|
+
props?: Omit<ComponentProps<typeof DatePicker>, 'name'>;
|
|
72
|
+
};
|
|
73
|
+
export type FormInputDateRange = FormInput & {
|
|
74
|
+
type: 'dateRange';
|
|
75
|
+
props?: Omit<ComponentProps<typeof DateRange>, 'name'>;
|
|
76
|
+
};
|
|
77
|
+
export type FormInputTime = FormInput & {
|
|
78
|
+
type: 'time';
|
|
79
|
+
props?: Omit<ComponentProps<typeof TimePicker>, 'name'>;
|
|
80
|
+
};
|
|
81
|
+
export type FormInputTimeRange = FormInput & {
|
|
82
|
+
type: 'timeRange';
|
|
83
|
+
props?: Omit<ComponentProps<typeof TimeRange>, 'name'>;
|
|
84
|
+
};
|
|
85
|
+
export type FormInputDateTime = FormInput & {
|
|
86
|
+
type: 'dateTime';
|
|
87
|
+
props?: Omit<ComponentProps<typeof DateTimePicker>, 'name'>;
|
|
88
|
+
};
|
|
89
|
+
export type FormInputDateTimeRange = FormInput & {
|
|
90
|
+
type: 'dateTimeRange';
|
|
91
|
+
props?: Omit<ComponentProps<typeof DateTimeRange>, 'name'>;
|
|
92
|
+
};
|
|
93
|
+
export type FormInputList = FormInput & {
|
|
94
|
+
type: 'list';
|
|
95
|
+
props: Omit<ComponentProps<typeof List>, 'name' | 'isFirstItem' | 'rounded'>;
|
|
96
|
+
};
|
|
97
|
+
export type FormInputAddress = FormInput & {
|
|
98
|
+
type: 'address';
|
|
99
|
+
props?: Omit<ComponentProps<typeof Address>, 'name' | 'required' | 'rounded'>;
|
|
100
|
+
};
|
|
101
|
+
export type FormItem = FormElement | FormInputHidden | FormInputText | FormInputTextArea | FormInputSelect | FormInputCheckbox | FormInputRadio | FormInputWeekday | FormInputWeekdays | FormInputDate | FormInputDateRange | FormInputTime | FormInputTimeRange | FormInputDateTime | FormInputDateTimeRange | FormInputList | FormInputAddress;
|
|
102
|
+
export declare const parseTableParams: (searchParams: Promise<{
|
|
103
|
+
page?: string;
|
|
104
|
+
sort?: string;
|
|
105
|
+
}>) => Promise<{
|
|
106
|
+
page: string | undefined;
|
|
107
|
+
orderBy?: undefined;
|
|
108
|
+
} | {
|
|
109
|
+
page: string | undefined;
|
|
110
|
+
orderBy: Record<string, "desc" | "asc">[];
|
|
111
|
+
}>;
|
|
112
|
+
export type IconType = typeof SvgIcon | ComponentType<SVGProps<SVGSVGElement>> | ReactNode;
|
|
113
|
+
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// ----------- table
|
|
2
|
+
export const parseTableParams = async (searchParams) => {
|
|
3
|
+
const { page, sort } = await searchParams;
|
|
4
|
+
if (!sort) {
|
|
5
|
+
return {
|
|
6
|
+
page,
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
try {
|
|
10
|
+
const params = [];
|
|
11
|
+
const parts = sort.split(',');
|
|
12
|
+
for (const part of parts) {
|
|
13
|
+
const [key, direction] = part.split(':');
|
|
14
|
+
if (key && (direction === 'asc' || direction === 'desc')) {
|
|
15
|
+
params.push({ [key]: direction });
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
return params.length > 0
|
|
19
|
+
? {
|
|
20
|
+
page,
|
|
21
|
+
orderBy: params,
|
|
22
|
+
}
|
|
23
|
+
: {
|
|
24
|
+
page,
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
catch {
|
|
28
|
+
return {
|
|
29
|
+
page,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/types/index.ts"],"names":[],"mappings":"AA8HA,oBAAoB;AACpB,MAAM,CAAC,MAAM,gBAAgB,GAAG,KAAK,EAAE,YAAuD,EAAE,EAAE;IAChG,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,YAAY,CAAA;IACzC,IAAI,CAAC,IAAI,EAAE,CAAC;QACV,OAAO;YACL,IAAI;SACL,CAAA;IACH,CAAC;IACD,IAAI,CAAC;QACH,MAAM,MAAM,GAAqC,EAAE,CAAA;QACnD,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;QAC7B,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;YACzB,MAAM,CAAC,GAAG,EAAE,SAAS,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;YACxC,IAAI,GAAG,IAAI,CAAC,SAAS,KAAK,KAAK,IAAI,SAAS,KAAK,MAAM,CAAC,EAAE,CAAC;gBACzD,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,SAAS,EAAE,CAAC,CAAA;YACnC,CAAC;QACH,CAAC;QACD,OAAO,MAAM,CAAC,MAAM,GAAG,CAAC;YACtB,CAAC,CAAC;gBACE,IAAI;gBACJ,OAAO,EAAE,MAAM;aAChB;YACH,CAAC,CAAC;gBACE,IAAI;aACL,CAAA;IACP,CAAC;IAAC,MAAM,CAAC;QACP,OAAO;YACL,IAAI;SACL,CAAA;IACH,CAAC;AACH,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../src/util/client.ts"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,OAAO,MAAM,cAAc,CAAA;AAGlC,MAAM,CAAC,MAAM,SAAS,GAAG,CAAmB,SAA2B,EAAE,EAAE,CACzE,OAAO,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const createDateFormat: (t: (key: string) => string) => {
|
|
2
|
+
dataFormat: string;
|
|
3
|
+
toLocalISOString: (date: Date) => string;
|
|
4
|
+
toString: (date: Date, options?: Intl.DateTimeFormatOptions) => string;
|
|
5
|
+
toDateString: (date?: Date | null, fallBack?: string) => string;
|
|
6
|
+
toDateTimeString: (date?: Date | null, fallBack?: string) => string;
|
|
7
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export const createDateFormat = (t) => ({
|
|
2
|
+
dataFormat: t('dateFormat'),
|
|
3
|
+
toLocalISOString: (date) => {
|
|
4
|
+
const tzOffset = date.getTimezoneOffset() * 60000;
|
|
5
|
+
const localISOTime = new Date(date.getTime() - tzOffset).toISOString();
|
|
6
|
+
return localISOTime;
|
|
7
|
+
},
|
|
8
|
+
toString: (date, options) => date.toLocaleString(t('locale'), options),
|
|
9
|
+
toDateString: (date, fallBack = '-') => date?.toLocaleString(t('locale'), {
|
|
10
|
+
year: 'numeric',
|
|
11
|
+
month: '2-digit',
|
|
12
|
+
day: '2-digit',
|
|
13
|
+
}) ?? fallBack,
|
|
14
|
+
toDateTimeString: (date, fallBack = '-') => date?.toLocaleString(t('locale'), {
|
|
15
|
+
year: 'numeric',
|
|
16
|
+
month: '2-digit',
|
|
17
|
+
day: '2-digit',
|
|
18
|
+
hour: '2-digit',
|
|
19
|
+
minute: '2-digit',
|
|
20
|
+
}) ?? fallBack,
|
|
21
|
+
});
|
|
22
|
+
//# sourceMappingURL=impl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"impl.js","sourceRoot":"","sources":["../../../../src/util/date/impl.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAA0B,EAAE,EAAE,CAAC,CAAC;IAC/D,UAAU,EAAE,CAAC,CAAC,YAAY,CAAC;IAC3B,gBAAgB,EAAE,CAAC,IAAU,EAAU,EAAE;QACvC,MAAM,QAAQ,GAAG,IAAI,CAAC,iBAAiB,EAAE,GAAG,KAAK,CAAA;QACjD,MAAM,YAAY,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,QAAQ,CAAC,CAAC,WAAW,EAAE,CAAA;QACtE,OAAO,YAAY,CAAA;IACrB,CAAC;IACD,QAAQ,EAAE,CAAC,IAAU,EAAE,OAAoC,EAAU,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACjH,YAAY,EAAE,CAAC,IAAkB,EAAE,WAAmB,GAAG,EAAE,EAAE,CAC3D,IAAI,EAAE,cAAc,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE;QAChC,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,SAAS;QAChB,GAAG,EAAE,SAAS;KACf,CAAC,IAAI,QAAQ;IAChB,gBAAgB,EAAE,CAAC,IAAkB,EAAE,WAAmB,GAAG,EAAE,EAAE,CAC/D,IAAI,EAAE,cAAc,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE;QAChC,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,SAAS;QAChB,GAAG,EAAE,SAAS;QACd,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,SAAS;KAClB,CAAC,IAAI,QAAQ;CACjB,CAAC,CAAA"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const Weekday: {
|
|
2
|
+
readonly Monday: "mon";
|
|
3
|
+
readonly Tuesday: "tue";
|
|
4
|
+
readonly Wednesday: "wed";
|
|
5
|
+
readonly Thursday: "thu";
|
|
6
|
+
readonly Friday: "fri";
|
|
7
|
+
readonly Saturday: "sat";
|
|
8
|
+
readonly Sunday: "sun";
|
|
9
|
+
};
|
|
10
|
+
export type Weekday = (typeof Weekday)[keyof typeof Weekday];
|
|
11
|
+
export declare const dateFormat: () => Promise<{
|
|
12
|
+
dataFormat: string;
|
|
13
|
+
toLocalISOString: (date: Date) => string;
|
|
14
|
+
toString: (date: Date, options?: Intl.DateTimeFormatOptions) => string;
|
|
15
|
+
toDateString: (date?: Date | null, fallBack?: string) => string;
|
|
16
|
+
toDateTimeString: (date?: Date | null, fallBack?: string) => string;
|
|
17
|
+
}>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getTranslations } from 'next-intl/server';
|
|
2
|
+
import { createDateFormat } from './impl';
|
|
3
|
+
export const Weekday = {
|
|
4
|
+
Monday: 'mon',
|
|
5
|
+
Tuesday: 'tue',
|
|
6
|
+
Wednesday: 'wed',
|
|
7
|
+
Thursday: 'thu',
|
|
8
|
+
Friday: 'fri',
|
|
9
|
+
Saturday: 'sat',
|
|
10
|
+
Sunday: 'sun',
|
|
11
|
+
};
|
|
12
|
+
export const dateFormat = async () => {
|
|
13
|
+
const t = await getTranslations();
|
|
14
|
+
return createDateFormat(t);
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/util/date/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAElD,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAA;AAEzC,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,KAAK;IAChB,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,KAAK;IACf,MAAM,EAAE,KAAK;CACL,CAAA;AAGV,MAAM,CAAC,MAAM,UAAU,GAAG,KAAK,IAAI,EAAE;IACnC,MAAM,CAAC,GAAG,MAAM,eAAe,EAAE,CAAA;IACjC,OAAO,gBAAgB,CAAC,CAAC,CAAC,CAAA;AAC5B,CAAC,CAAA"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { z } from 'zod';
|
|
2
|
+
export * from './date';
|
|
3
|
+
export declare const Util: {
|
|
4
|
+
withNoSSR: <P extends object>(Component: import("react").ComponentType<P>) => import("react").ComponentType<P>;
|
|
5
|
+
isArray: <T>(maybeArray: T | readonly T[]) => maybeArray is T[];
|
|
6
|
+
isObject: (arg: unknown) => boolean;
|
|
7
|
+
isString: (arg: unknown) => arg is string;
|
|
8
|
+
normalize: (value: string) => string;
|
|
9
|
+
sanitize: <T>(input: T, options?: {
|
|
10
|
+
keywords?: readonly string[];
|
|
11
|
+
maxStringLength?: number;
|
|
12
|
+
}) => T;
|
|
13
|
+
createEnvProxy: {
|
|
14
|
+
<TSchema extends z.ZodType, TParseEnv extends () => unknown>(isServer: boolean, schema: TSchema, parseEnv: TParseEnv): Simplify<z.infer<TSchema>>;
|
|
15
|
+
<TSchema extends z.ZodType, TParseEnv extends () => unknown, TExtend extends (env: z.infer<TSchema>) => object, TOmitKeys extends keyof z.infer<TSchema>>(isServer: boolean, schema: TSchema, parseEnv: TParseEnv, omitKeys: readonly TOmitKeys[], extend: TExtend): Simplify<Omit<z.infer<TSchema>, TOmitKeys> & ReturnType<TExtend>>;
|
|
16
|
+
};
|
|
17
|
+
};
|