elcrm 0.8.23 → 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.
- package/dist/List/View.d.ts +1 -1
- package/dist/Pagination/Pagination.d.ts +1 -1
- package/dist/Scrolling/Scrolling.d.ts +12 -1
- package/dist/Search/Search.d.ts +6 -1
- package/dist/index.es.js +1278 -1267
- package/dist/index.umd.js +8 -8
- package/package.json +1 -1
package/dist/List/View.d.ts
CHANGED
|
@@ -1,2 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
2
|
+
interface Scrolling {
|
|
3
|
+
list: object;
|
|
4
|
+
load: any;
|
|
5
|
+
item: any;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Component scrolling
|
|
10
|
+
* @param {object} list
|
|
11
|
+
*/
|
|
12
|
+
export declare function Scrolling({ list, load, className, ...props }: Scrolling): JSX.Element;
|
|
13
|
+
export {};
|
package/dist/Search/Search.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
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 {};
|