@customafk/lunas-ui 0.0.1-d → 0.0.1-e
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/index.d.ts
CHANGED
|
@@ -122,7 +122,7 @@ declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<
|
|
|
122
122
|
ref?: React.Ref<HTMLInputElement>;
|
|
123
123
|
} & {
|
|
124
124
|
asChild?: boolean;
|
|
125
|
-
}, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "
|
|
125
|
+
}, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "type" | "onChange" | "value"> & {
|
|
126
126
|
value?: string;
|
|
127
127
|
onValueChange?: (search: string) => void;
|
|
128
128
|
} & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
package/dist/Icons/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { HTMLAttributes, FC, ReactNode } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
import {
|
|
4
|
+
import { a as TUserSettingSelect } from '../types-DdUenP1k.js';
|
|
5
5
|
import { z } from 'zod';
|
|
6
6
|
|
|
7
7
|
interface IProps$1 {
|
|
@@ -33,23 +33,23 @@ declare const SignUpModel: z.ZodEffects<z.ZodObject<{
|
|
|
33
33
|
confirmPassword: z.ZodString;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
35
35
|
email: string;
|
|
36
|
-
fullname: string;
|
|
37
36
|
password: string;
|
|
37
|
+
fullname: string;
|
|
38
38
|
confirmPassword: string;
|
|
39
39
|
}, {
|
|
40
40
|
email: string;
|
|
41
|
-
fullname: string;
|
|
42
41
|
password: string;
|
|
42
|
+
fullname: string;
|
|
43
43
|
confirmPassword: string;
|
|
44
44
|
}>, {
|
|
45
45
|
email: string;
|
|
46
|
-
fullname: string;
|
|
47
46
|
password: string;
|
|
47
|
+
fullname: string;
|
|
48
48
|
confirmPassword: string;
|
|
49
49
|
}, {
|
|
50
50
|
email: string;
|
|
51
|
-
fullname: string;
|
|
52
51
|
password: string;
|
|
52
|
+
fullname: string;
|
|
53
53
|
confirmPassword: string;
|
|
54
54
|
}>;
|
|
55
55
|
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { HTMLAttributes, ReactNode } from 'react';
|
|
4
|
-
import {
|
|
4
|
+
import { T as TUser, a as TUserSettingSelect } from '../types-DdUenP1k.js';
|
|
5
|
+
|
|
6
|
+
declare const Footer: () => react_jsx_runtime.JSX.Element;
|
|
5
7
|
|
|
6
8
|
type THeaderNav = 'CATEGORY' | 'SERIES' | 'GUIDE' | 'NEWS' | null;
|
|
7
9
|
interface IHeaderProps extends HTMLAttributes<HTMLHeadElement> {
|
|
@@ -20,6 +22,4 @@ interface IHeaderProps extends HTMLAttributes<HTMLHeadElement> {
|
|
|
20
22
|
}
|
|
21
23
|
declare const Header: React.MemoExoticComponent<React.ForwardRefExoticComponent<IHeaderProps & React.RefAttributes<HTMLHeadElement>>>;
|
|
22
24
|
|
|
23
|
-
declare const Footer: () => react_jsx_runtime.JSX.Element;
|
|
24
|
-
|
|
25
25
|
export { Footer, Header };
|