elcrm 0.8.96 → 0.8.98
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/Animation/Counter.d.ts +7 -0
- package/dist/Animation/index.d.ts +4 -0
- package/dist/Button/Button.d.ts +1 -1
- package/dist/Form/Input.d.ts +2 -1
- package/dist/Test/Test.d.ts +10 -0
- package/dist/Type/index.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +2156 -2106
- package/dist/index.umd.js +11 -11
- package/package.json +1 -1
package/dist/Button/Button.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ interface Button {
|
|
|
6
6
|
className?: string;
|
|
7
7
|
size?: "m" | "s" | "l";
|
|
8
8
|
mode?: "primary" | "secondary" | "tertiary" | "outline" | "link";
|
|
9
|
-
view?: "confirm" | "cancel" | "disabled";
|
|
9
|
+
view?: "confirm" | "cancel" | "disabled" | "none";
|
|
10
10
|
}
|
|
11
11
|
export default function ({ onClick, onSend, size, view, mode, className, label, onRef, }: Button): import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export {};
|
package/dist/Form/Input.d.ts
CHANGED
|
@@ -14,7 +14,8 @@ interface Input {
|
|
|
14
14
|
after?: string;
|
|
15
15
|
show?: Boolean;
|
|
16
16
|
view?: string;
|
|
17
|
+
id?: string;
|
|
17
18
|
className?: string;
|
|
18
19
|
}
|
|
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
|
+
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onBlur, onSave, className, }: Input): "" | import("react/jsx-runtime").JSX.Element;
|
|
20
21
|
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type TPageSections = {
|
|
2
|
+
title?: string;
|
|
3
|
+
children?: any;
|
|
4
|
+
button?: any;
|
|
5
|
+
page: string;
|
|
6
|
+
tabs?: any;
|
|
7
|
+
modules: string;
|
|
8
|
+
};
|
|
9
|
+
declare const PageSection: ({ title, children, button, page, tabs, modules, }: TPageSections) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default PageSection;
|
package/dist/Type/index.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as Api } from './Api';
|
|
2
|
+
export { default as Animation } from './Animation';
|
|
2
3
|
export { default as Init } from './Init/Init';
|
|
3
4
|
export { default as Browser } from './Browser/Browser';
|
|
4
5
|
export { default as Button } from './Button/Button';
|
|
@@ -35,6 +36,7 @@ export { default as Pagination } from './Pagination';
|
|
|
35
36
|
export { default as List } from './List';
|
|
36
37
|
export { default as Company } from './Company';
|
|
37
38
|
export { default as WebRTC } from './WebRTC/WebRTC';
|
|
39
|
+
export { default as Test } from './Test/Test';
|
|
38
40
|
export { default as Phone } from './Phone';
|
|
39
41
|
export { default as Switch } from './Switch';
|
|
40
42
|
export * from './Type';
|