elcrm 0.8.925 → 0.9.2
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/Api/index.d.ts +2 -1
- package/dist/Button/Button.d.ts +1 -1
- package/dist/Form/Input.d.ts +2 -1
- package/dist/Format/ArrayGroup.d.ts +7 -0
- package/dist/Format/ArraySort.d.ts +8 -0
- package/dist/Format/ArraySortDate.d.ts +8 -0
- package/dist/Format/ArraySortFunction.d.ts +9 -0
- package/dist/Format/ArraySumma.d.ts +7 -0
- package/dist/Format/Translit.d.ts +1 -0
- package/dist/Format/index.d.ts +12 -0
- 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 +3299 -3109
- package/dist/index.umd.js +11 -11
- package/package.json +1 -1
package/dist/Api/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { audio, url, fetch, test, remoute, telegram, modules, use, token, formData } from './Api';
|
|
1
|
+
import { audio, image, url, fetch, test, remoute, telegram, modules, use, token, formData } from './Api';
|
|
2
2
|
|
|
3
3
|
declare const _default: {
|
|
4
4
|
audio: typeof audio;
|
|
5
|
+
image: typeof image;
|
|
5
6
|
fetch: typeof fetch;
|
|
6
7
|
modules: typeof modules;
|
|
7
8
|
remoute: typeof remoute;
|
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 @@
|
|
|
1
|
+
export default function (w: string): string;
|
package/dist/Format/index.d.ts
CHANGED
|
@@ -16,9 +16,21 @@ import { default as Week } from './Week';
|
|
|
16
16
|
import { default as ObjectByArray } from './ObjectByArray';
|
|
17
17
|
import { default as Age } from './Age';
|
|
18
18
|
import { default as isNumeric } from './isNumeric';
|
|
19
|
+
import { default as Translit } from './Translit';
|
|
20
|
+
import { default as ArraySort } from './ArraySort';
|
|
21
|
+
import { default as ArrayGroup } from './ArrayGroup';
|
|
22
|
+
import { default as ArraySortDate } from './ArraySortDate';
|
|
23
|
+
import { default as ArraySumma } from './ArraySumma';
|
|
24
|
+
import { default as ArraySortFunction } from './ArraySortFunction';
|
|
19
25
|
|
|
20
26
|
declare const _default: {
|
|
21
27
|
Age: typeof Age;
|
|
28
|
+
ArraySort: typeof ArraySort;
|
|
29
|
+
ArrayGroup: typeof ArrayGroup;
|
|
30
|
+
ArraySortDate: typeof ArraySortDate;
|
|
31
|
+
ArraySortFunction: typeof ArraySortFunction;
|
|
32
|
+
ArraySumma: typeof ArraySumma;
|
|
33
|
+
Translit: typeof Translit;
|
|
22
34
|
Date: typeof Date;
|
|
23
35
|
MoneyString: (num: any) => string | false;
|
|
24
36
|
DateSort: typeof DateSort;
|
|
@@ -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';
|