elcrm 0.9.92 → 0.9.94
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/Bookmarks/Bookmarks.d.ts +1 -1
- package/dist/Form/Files.d.ts +1 -1
- package/dist/Form/Group.d.ts +1 -1
- package/dist/Form/Image.d.ts +1 -1
- package/dist/Form/Input.d.ts +1 -1
- package/dist/Form/Money.d.ts +1 -1
- package/dist/Form/Notes.d.ts +1 -1
- package/dist/Form/Password.d.ts +1 -1
- package/dist/Form/Select.d.ts +1 -1
- package/dist/Form/Textarea.d.ts +1 -1
- package/dist/Form/Time.d.ts +1 -1
- package/dist/Format/Date.d.ts +1 -1
- package/dist/Icon/Default.d.ts +1 -1
- package/dist/Icon/Sprite.d.ts +1 -1
- package/dist/index.es.js +318 -315
- package/dist/index.umd.js +8 -8
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const Init: () =>
|
|
1
|
+
export declare const Init: () => import("react/jsx-runtime").JSX.Element | "";
|
|
2
2
|
export declare const Icon: ({ id, type, name }: any) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export declare const Item: ({ data }: any) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare const Active: (a: any) => void;
|
package/dist/Form/Files.d.ts
CHANGED
|
@@ -16,5 +16,5 @@ interface Input {
|
|
|
16
16
|
view?: string;
|
|
17
17
|
className?: string;
|
|
18
18
|
}
|
|
19
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input):
|
|
19
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
20
20
|
export {};
|
package/dist/Form/Group.d.ts
CHANGED
|
@@ -17,5 +17,5 @@ interface Input {
|
|
|
17
17
|
className?: string;
|
|
18
18
|
max?: number;
|
|
19
19
|
}
|
|
20
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, max, onSave, className, separator, }: Input):
|
|
20
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, max, onSave, className, separator, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
21
21
|
export {};
|
package/dist/Form/Image.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ interface Input {
|
|
|
18
18
|
className?: string;
|
|
19
19
|
type?: "png" | "jpeg" | "webp";
|
|
20
20
|
}
|
|
21
|
-
export default function ({ value, onValue, name, placeholder, title, link, error, hide, edit, active, after, show, type, view, onBlur, onSave, className, }: Input):
|
|
21
|
+
export default function ({ value, onValue, name, placeholder, title, link, error, hide, edit, active, after, show, type, view, onBlur, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
22
22
|
export {};
|
package/dist/Form/Input.d.ts
CHANGED
|
@@ -21,5 +21,5 @@ interface Input {
|
|
|
21
21
|
maxLength?: number;
|
|
22
22
|
isReload?: boolean;
|
|
23
23
|
}
|
|
24
|
-
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, before, show, maxLength, view, onBlur, onSave, className, isCopy, isReload, }: Input):
|
|
24
|
+
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, before, show, maxLength, view, onBlur, onSave, className, isCopy, isReload, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
25
25
|
export {};
|
package/dist/Form/Money.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ interface Input {
|
|
|
18
18
|
className?: string;
|
|
19
19
|
course?: number;
|
|
20
20
|
}
|
|
21
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, course, view, onBlur, type, onSave, className, }: Input):
|
|
21
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, course, view, onBlur, type, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
22
22
|
export {};
|
package/dist/Form/Notes.d.ts
CHANGED
|
@@ -42,5 +42,5 @@ type Input = {
|
|
|
42
42
|
* @param {boolean} [props.isCopy] - разрешить копирование
|
|
43
43
|
* @return {ReactElement} - поле ввода
|
|
44
44
|
*/
|
|
45
|
-
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, maxLength, view, onBlur, onSave, className, isCopy, }: Input):
|
|
45
|
+
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, maxLength, view, onBlur, onSave, className, isCopy, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
46
46
|
export {};
|
package/dist/Form/Password.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ interface Data {
|
|
|
18
18
|
isShow?: boolean;
|
|
19
19
|
eyes?: any;
|
|
20
20
|
}
|
|
21
|
-
export default function ({ value, onValue, onSave, name, placeholder, className, title, error, edit, active, reload, native, isShow, eyes, after, }: Data):
|
|
21
|
+
export default function ({ value, onValue, onSave, name, placeholder, className, title, error, edit, active, reload, native, isShow, eyes, after, }: Data): import("react/jsx-runtime").JSX.Element | "";
|
|
22
22
|
export {};
|
package/dist/Form/Select.d.ts
CHANGED
|
@@ -16,4 +16,4 @@ export type TSelect = {
|
|
|
16
16
|
options?: any;
|
|
17
17
|
order?: any;
|
|
18
18
|
};
|
|
19
|
-
export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, name, after, view, order, isReload, }: TSelect):
|
|
19
|
+
export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, name, after, view, order, isReload, }: TSelect): import("react/jsx-runtime").JSX.Element | "";
|
package/dist/Form/Textarea.d.ts
CHANGED
|
@@ -16,5 +16,5 @@ interface Input {
|
|
|
16
16
|
view?: string;
|
|
17
17
|
className?: string;
|
|
18
18
|
}
|
|
19
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input):
|
|
19
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
20
20
|
export {};
|
package/dist/Form/Time.d.ts
CHANGED
|
@@ -16,5 +16,5 @@ interface Input {
|
|
|
16
16
|
view?: string;
|
|
17
17
|
className?: string;
|
|
18
18
|
}
|
|
19
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input):
|
|
19
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
20
20
|
export {};
|
package/dist/Format/Date.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function (x: any, y?: any):
|
|
1
|
+
export default function (x: any, y?: any): string;
|
package/dist/Icon/Default.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function ({ name, hover, onClick }: any):
|
|
1
|
+
export default function ({ name, hover, onClick }: any): import("react/jsx-runtime").JSX.Element | "";
|
package/dist/Icon/Sprite.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare function Sprite(a: any): void;
|
|
2
2
|
export declare function Symbol({ color, size, name }: any): import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export declare function Init():
|
|
3
|
+
export declare function Init(): import("react/jsx-runtime").JSX.Element | "";
|