@customafk/lunas-ui 0.0.1-e → 0.0.2-a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Atoms/Accordion/index.d.ts +9 -0
- package/dist/Atoms/Accordion/index.js +288 -0
- package/dist/Atoms/AlertDialog/index.d.ts +23 -0
- package/dist/Atoms/AlertDialog/index.js +382 -0
- package/dist/Atoms/AspectRatio/index.d.ts +6 -0
- package/dist/Atoms/AspectRatio/index.js +6 -0
- package/dist/Atoms/Avatar/index.d.ts +10 -0
- package/dist/Atoms/Avatar/index.js +470 -0
- package/dist/Atoms/Badge/index.d.ts +10 -0
- package/dist/Atoms/Badge/index.js +263 -0
- package/dist/Atoms/Breadcrumb/index.d.ts +23 -0
- package/dist/Atoms/Breadcrumb/index.js +363 -0
- package/dist/Atoms/Button/index.d.ts +20 -0
- package/dist/Atoms/Button/index.js +314 -0
- package/dist/Atoms/Card/index.d.ts +17 -0
- package/dist/Atoms/Card/index.js +303 -0
- package/dist/Atoms/Carousel/index.d.ts +28 -0
- package/dist/Atoms/Carousel/index.js +499 -0
- package/dist/Atoms/Command/index.d.ts +85 -0
- package/dist/Atoms/Command/index.js +485 -0
- package/dist/Atoms/Dialog/index.d.ts +22 -0
- package/dist/Atoms/Dialog/index.js +365 -0
- package/dist/Atoms/DropdownMenu/index.d.ts +30 -0
- package/dist/Atoms/DropdownMenu/index.js +441 -0
- package/dist/Atoms/Form/index.d.ts +28 -0
- package/dist/Atoms/Form/index.js +360 -0
- package/dist/Atoms/Input/index.d.ts +12 -0
- package/dist/Atoms/Input/index.js +816 -0
- package/dist/Atoms/Label/index.d.ts +8 -0
- package/dist/Atoms/Label/index.js +259 -0
- package/dist/Atoms/Money/index.d.ts +9 -0
- package/dist/Atoms/Money/index.js +464 -0
- package/dist/Atoms/Navbar/index.d.ts +14 -0
- package/dist/Atoms/Navbar/index.js +324 -0
- package/dist/Atoms/NavigationMenu/index.d.ts +15 -0
- package/dist/Atoms/NavigationMenu/index.js +431 -0
- package/dist/Atoms/Progress/index.d.ts +6 -0
- package/dist/Atoms/Progress/index.js +269 -0
- package/dist/Atoms/QuantityBtn/index.d.ts +9 -0
- package/dist/Atoms/QuantityBtn/index.js +962 -0
- package/dist/Atoms/ScrollBar/index.d.ts +7 -0
- package/dist/Atoms/ScrollBar/index.js +284 -0
- package/dist/Atoms/Select/index.d.ts +15 -0
- package/dist/Atoms/Select/index.js +441 -0
- package/dist/Atoms/Separator/index.d.ts +6 -0
- package/dist/Atoms/Separator/index.js +268 -0
- package/dist/Atoms/Skeleton/index.d.ts +6 -0
- package/dist/Atoms/Skeleton/index.js +252 -0
- package/dist/Atoms/UserAvatar/index.d.ts +12 -0
- package/dist/Atoms/UserAvatar/index.js +467 -0
- package/dist/Authentication/SignIn/index.d.ts +22 -0
- package/dist/Authentication/SignIn/index.js +1400 -0
- package/dist/Authentication/SignUp/index.d.ts +38 -0
- package/dist/Authentication/SignUp/index.js +1603 -0
- package/dist/Authentication/ThankYou/index.d.ts +5 -0
- package/dist/Authentication/ThankYou/index.js +834 -0
- package/dist/Icons/index.d.ts +16 -4
- package/dist/Icons/index.js +366 -132
- package/dist/Layout/{index.d.ts → Flex/index.d.ts} +1 -100
- package/dist/Layout/{index.js → Flex/index.js} +274 -335
- package/dist/Molecules/{index.d.ts → AuthenForm/index.d.ts} +2 -27
- package/dist/Molecules/AuthenForm/index.js +1987 -0
- package/dist/Molecules/Search/index.d.ts +14 -0
- package/dist/Molecules/Search/index.js +982 -0
- package/dist/Molecules/UserDropdown/index.d.ts +6 -0
- package/dist/Molecules/UserDropdown/index.js +1080 -0
- package/dist/Organisms/Footer/index.d.ts +5 -0
- package/dist/Organisms/Footer/index.js +63 -0
- package/dist/Organisms/Header/index.d.ts +25 -0
- package/dist/Organisms/Header/index.js +2241 -0
- package/dist/hooks/index.d.ts +6 -6
- package/dist/hooks/index.js +17 -17
- package/dist/tailwindTheme.d.ts +84 -1
- package/dist/tailwindTheme.js +119 -44
- package/dist/{types-DdUenP1k.d.ts → types-BgHhiNa-.d.ts} +1 -1
- package/package.json +209 -21
- package/dist/Atoms/index.d.ts +0 -275
- package/dist/Atoms/index.js +0 -3975
- package/dist/Molecules/index.js +0 -4576
- package/dist/Organisms/index.d.ts +0 -25
- package/dist/Organisms/index.js +0 -4786
|
@@ -1,21 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { HTMLAttributes
|
|
3
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
import { a as TUserSettingSelect } from '../types-DdUenP1k.js';
|
|
2
|
+
import { HTMLAttributes } from 'react';
|
|
5
3
|
import { z } from 'zod';
|
|
6
4
|
|
|
7
|
-
interface IProps$1 {
|
|
8
|
-
readonly user: {
|
|
9
|
-
uuid: string;
|
|
10
|
-
username: string;
|
|
11
|
-
fullname: string;
|
|
12
|
-
email: string;
|
|
13
|
-
avatar: string;
|
|
14
|
-
};
|
|
15
|
-
readonly onSelected?: (value: TUserSettingSelect) => void;
|
|
16
|
-
}
|
|
17
|
-
declare const UserDropdown: React.MemoExoticComponent<({ onSelected, user }: IProps$1) => react_jsx_runtime.JSX.Element>;
|
|
18
|
-
|
|
19
5
|
declare const SignInModel: z.ZodObject<{
|
|
20
6
|
email: z.ZodString;
|
|
21
7
|
password: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -63,15 +49,4 @@ interface IAuthFormProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
63
49
|
}
|
|
64
50
|
declare const AuthForm: React.MemoExoticComponent<React.ForwardRefExoticComponent<IAuthFormProps & React.RefAttributes<HTMLDivElement>>>;
|
|
65
51
|
|
|
66
|
-
|
|
67
|
-
search?: string;
|
|
68
|
-
isLoading?: boolean;
|
|
69
|
-
items?: {
|
|
70
|
-
value: string;
|
|
71
|
-
component: ReactNode;
|
|
72
|
-
}[];
|
|
73
|
-
onSearch?: (value: string) => void;
|
|
74
|
-
}
|
|
75
|
-
declare const Search: FC<IProps>;
|
|
76
|
-
|
|
77
|
-
export { AuthForm, Search, UserDropdown };
|
|
52
|
+
export { AuthForm as default };
|