elcrm 0.8.24 → 0.8.26

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.
@@ -6,7 +6,7 @@ interface Scrolling {
6
6
  className?: string;
7
7
  }
8
8
  /**
9
- * Введите текст уведомления
9
+ * Component scrolling
10
10
  * @param {object} list
11
11
  */
12
12
  export declare function Scrolling({ list, load, className, ...props }: Scrolling): JSX.Element;
@@ -1,4 +1,9 @@
1
- export declare function Field(): import("react/jsx-runtime").JSX.Element;
1
+ type Field = {
2
+ className?: string;
3
+ placeholder?: string;
4
+ };
5
+ export declare function Field({ className, placeholder }: Field): import("react/jsx-runtime").JSX.Element;
2
6
  export declare function Run(data: any, text: any, base: any): any;
3
7
  export declare function Get(listener: any): void;
4
8
  export declare function useValue(listener: any): void;
9
+ export {};
@@ -20,7 +20,7 @@ export declare function setModule(module: string, reload?: boolean): void;
20
20
  export declare function getModule(): any;
21
21
  export declare function isModule(module: string): boolean;
22
22
  export declare function useTabs(tab?: any): any[] | undefined;
23
- export declare function setTabs(tabs: string, reload: string): void;
23
+ export declare function setTabs(tabs: string, reload?: boolean): void;
24
24
  export declare function getTabs(): any;
25
25
  export declare function isTabs(tab: string): boolean;
26
26
  export declare function useId(fn?: (id: number) => void): any[];