@customafk/lunas-ui 0.0.1-e → 0.0.1

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.
@@ -1,25 +0,0 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as React from 'react';
3
- import { HTMLAttributes, ReactNode } from 'react';
4
- import { T as TUser, a as TUserSettingSelect } from '../types-DdUenP1k.js';
5
-
6
- declare const Footer: () => react_jsx_runtime.JSX.Element;
7
-
8
- type THeaderNav = 'CATEGORY' | 'SERIES' | 'GUIDE' | 'NEWS' | null;
9
- interface IHeaderProps extends HTMLAttributes<HTMLHeadElement> {
10
- user?: TUser;
11
- search?: string;
12
- isLoading?: boolean;
13
- items?: {
14
- value: string;
15
- component: ReactNode;
16
- }[];
17
- onSignIn?: () => void;
18
- onSignUp?: () => void;
19
- onSearch?: (value: string) => void;
20
- onNavSelected?: (nav: THeaderNav) => void;
21
- onSettingSelected?: (value: TUserSettingSelect) => void;
22
- }
23
- declare const Header: React.MemoExoticComponent<React.ForwardRefExoticComponent<IHeaderProps & React.RefAttributes<HTMLHeadElement>>>;
24
-
25
- export { Footer, Header };