@elcrm/form 0.0.37 → 0.0.38
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/index.css +1 -1
- package/dist/index.es.js +796 -783
- package/dist/index.umd.js +37 -37
- package/dist/src/lib/Files.d.ts +1 -1
- package/dist/src/lib/Group.d.ts +1 -1
- package/dist/src/lib/Image.d.ts +1 -1
- package/dist/src/lib/Input.d.ts +1 -1
- package/dist/src/lib/Money.d.ts +1 -1
- package/dist/src/lib/Password.d.ts +1 -1
- package/dist/src/lib/Select.d.ts +1 -1
- package/dist/src/lib/Textarea.d.ts +1 -1
- package/package.json +1 -1
- package/dist/src/lib/_Button.d.ts +0 -8
- package/dist/src/lib/_Set.d.ts +0 -0
- package/dist/src/lib/_Textarea.d.ts +0 -20
package/dist/src/lib/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, onSave, className, }: Input):
|
|
19
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
20
20
|
export {};
|
package/dist/src/lib/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/src/lib/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, onSave, className, }: Input):
|
|
21
|
+
export default function ({ value, onValue, name, placeholder, title, link, error, hide, edit, active, after, show, type, view, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
22
22
|
export {};
|
package/dist/src/lib/Input.d.ts
CHANGED
|
@@ -20,5 +20,5 @@ interface Input {
|
|
|
20
20
|
maxLength?: number;
|
|
21
21
|
isReload?: boolean;
|
|
22
22
|
}
|
|
23
|
-
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, before, show, maxLength, onSave, className, isCopy, isReload, }: Input):
|
|
23
|
+
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, before, show, maxLength, onSave, className, isCopy, isReload, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
24
24
|
export {};
|
package/dist/src/lib/Money.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ interface Input {
|
|
|
18
18
|
course?: number;
|
|
19
19
|
isClear?: boolean;
|
|
20
20
|
}
|
|
21
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, course, view, type, onSave, className, isClear, }: Input):
|
|
21
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, course, view, type, onSave, className, isClear, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
22
22
|
export {};
|
|
@@ -19,5 +19,5 @@ interface Data {
|
|
|
19
19
|
maxLength?: number;
|
|
20
20
|
eyes?: any;
|
|
21
21
|
}
|
|
22
|
-
export default function ({ value, onValue, onSave, name, placeholder, className, title, error, edit, active, reload, native, isShow, maxLength, eyes, after, }: Data):
|
|
22
|
+
export default function ({ value, onValue, onSave, name, placeholder, className, title, error, edit, active, reload, native, isShow, maxLength, eyes, after, }: Data): import("react/jsx-runtime").JSX.Element | "";
|
|
23
23
|
export {};
|
package/dist/src/lib/Select.d.ts
CHANGED
|
@@ -20,4 +20,4 @@ export type TSelect = {
|
|
|
20
20
|
}>;
|
|
21
21
|
order?: any;
|
|
22
22
|
};
|
|
23
|
-
export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, isIcon, name, after, view, order, isReload, }: TSelect):
|
|
23
|
+
export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, isIcon, name, after, view, order, isReload, }: TSelect): import("react/jsx-runtime").JSX.Element | "";
|
|
@@ -40,5 +40,5 @@ type Input = {
|
|
|
40
40
|
* @param {boolean} [props.isCopy] - разрешить копирование
|
|
41
41
|
* @return {ReactElement} - поле ввода
|
|
42
42
|
*/
|
|
43
|
-
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, maxLength, view, onSave, className, isCopy, }: Input):
|
|
43
|
+
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, maxLength, view, onSave, className, isCopy, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
44
44
|
export {};
|
package/package.json
CHANGED
package/dist/src/lib/_Set.d.ts
DELETED
|
File without changes
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
interface Input {
|
|
2
|
-
value?: string;
|
|
3
|
-
onValue?: Function;
|
|
4
|
-
onSave?: Function;
|
|
5
|
-
name?: string;
|
|
6
|
-
placeholder?: string;
|
|
7
|
-
title?: string;
|
|
8
|
-
label?: string;
|
|
9
|
-
error?: string;
|
|
10
|
-
hide?: boolean;
|
|
11
|
-
edit?: boolean;
|
|
12
|
-
active?: Boolean;
|
|
13
|
-
after?: string;
|
|
14
|
-
show?: Boolean;
|
|
15
|
-
view?: string;
|
|
16
|
-
className?: string;
|
|
17
|
-
maxLength?: number;
|
|
18
|
-
}
|
|
19
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, maxLength, onSave, className, }: Input): "" | import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
export {};
|