elcrm 0.6.8 → 0.7.0
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/Form/Modal.d.ts +4 -2
- package/dist/Form/Set.d.ts +2 -1
- package/dist/Modal/Modal.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +316 -308
- package/dist/index.umd.js +8 -8
- package/package.json +1 -1
package/dist/Form/Modal.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
interface Input {
|
|
2
2
|
value?: string;
|
|
3
3
|
onValue?: Function;
|
|
4
|
-
name
|
|
4
|
+
name: string;
|
|
5
5
|
placeholder?: string;
|
|
6
6
|
title?: string;
|
|
7
7
|
error?: string;
|
|
@@ -12,6 +12,8 @@ interface Input {
|
|
|
12
12
|
after?: string;
|
|
13
13
|
view?: string;
|
|
14
14
|
className?: string;
|
|
15
|
+
module: string;
|
|
16
|
+
options?: any;
|
|
15
17
|
}
|
|
16
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, show, active, after, view, }: Input): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, show, active, after, view, module, options, }: Input): import("react/jsx-runtime").JSX.Element;
|
|
17
19
|
export {};
|
package/dist/Form/Set.d.ts
CHANGED
|
@@ -12,9 +12,10 @@ type Data = {
|
|
|
12
12
|
active?: boolean;
|
|
13
13
|
after?: string;
|
|
14
14
|
view?: string;
|
|
15
|
+
module?: string;
|
|
15
16
|
options: Array<any>;
|
|
16
17
|
className?: string;
|
|
17
18
|
item?: string;
|
|
18
19
|
};
|
|
19
|
-
export default function ({ set, value, onValue, name, placeholder, title, error, hide, edit, show, active, after, view, item, className, }: Data): import("react/jsx-runtime").JSX.Element | undefined;
|
|
20
|
+
export default function ({ set, value, onValue, name, placeholder, title, error, hide, edit, show, active, after, view, module, item, className, }: Data): import("react/jsx-runtime").JSX.Element | undefined;
|
|
20
21
|
export {};
|
package/dist/Modal/Modal.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export declare function Icon({ type, name, params }: Params): import("react/jsx-
|
|
|
42
42
|
* Введите текст уведомления
|
|
43
43
|
* @param {string} type - name modules.
|
|
44
44
|
* @param {string} name - name modal.
|
|
45
|
-
* @param {any} params -
|
|
45
|
+
* @param {any} params - params.
|
|
46
46
|
*/
|
|
47
47
|
export declare function Open(type: string, name: string, params: any): void;
|
|
48
48
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { default as Router } from './Router';
|
|
|
16
16
|
export { default as Triage } from './Triage';
|
|
17
17
|
export { default as Format } from './Format';
|
|
18
18
|
export { default as Event } from './Event';
|
|
19
|
+
export { default as Events } from './Event';
|
|
19
20
|
export { default as Badge } from './Badge';
|
|
20
21
|
export { default as Socket } from './Socket';
|
|
21
22
|
export { default as DataBase } from './DataBase';
|