elcrm 0.8.24 → 0.8.25

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 {};