beca-ui 2.0.2 → 2.0.3-beta.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.
@@ -7,6 +7,7 @@ export interface SideBarMenuProps {
7
7
  pathname: string;
8
8
  isMobile: boolean;
9
9
  homePageUrl: string;
10
+ showLargeMenu?: boolean;
10
11
  }
11
12
  export interface SideBarMenu2Props extends SideBarMenuProps {
12
13
  collapsed: boolean;
@@ -1,4 +1,5 @@
1
1
  declare const _default: {
2
+ search: string;
2
3
  support: string;
3
4
  hi: string;
4
5
  language: string;
@@ -11,5 +12,7 @@ declare const _default: {
11
12
  justify: string;
12
13
  customTheme: string;
13
14
  font: string;
15
+ enterLink: string;
16
+ enterImageLink: string;
14
17
  };
15
18
  export default _default;
@@ -1,4 +1,5 @@
1
1
  declare const _default: {
2
+ search: string;
2
3
  support: string;
3
4
  hi: string;
4
5
  language: string;
@@ -11,5 +12,7 @@ declare const _default: {
11
12
  justify: string;
12
13
  customTheme: string;
13
14
  font: string;
15
+ enterLink: string;
16
+ enterImageLink: string;
14
17
  };
15
18
  export default _default;
@@ -0,0 +1 @@
1
+ export declare function useDebouncedValue<T = any>(inputValue: T | (() => T), delay?: number): T;
@@ -1,6 +1,7 @@
1
1
  type LANGUAGE = "vi" | "en";
2
2
  export declare function useLocale(): LANGUAGE | undefined;
3
3
  export declare function useTranslation(): {
4
+ search: string;
4
5
  support: string;
5
6
  hi: string;
6
7
  language: string;
@@ -13,5 +14,7 @@ export declare function useTranslation(): {
13
14
  justify: string;
14
15
  customTheme: string;
15
16
  font: string;
17
+ enterLink: string;
18
+ enterImageLink: string;
16
19
  };
17
20
  export {};
@@ -1,2 +1,3 @@
1
+ export * from "./GlobalHooks";
1
2
  export * from "./LocaleHook";
2
3
  export * from "./DeviceHook";