elcrm 0.8.84 → 0.8.86
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/Number.d.ts +2 -1
- package/dist/Format/Money.d.ts +1 -1
- package/dist/Format/SelectParams.d.ts +1 -0
- package/dist/Format/index.d.ts +2 -0
- package/dist/Search/Search.d.ts +1 -0
- package/dist/index.es.js +789 -782
- package/dist/index.umd.js +9 -9
- package/package.json +1 -1
package/dist/Form/Number.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type Data = {
|
|
2
2
|
value?: string;
|
|
3
3
|
onValue?: Function;
|
|
4
|
+
onSave?: Function;
|
|
4
5
|
name?: string;
|
|
5
6
|
placeholder?: string;
|
|
6
7
|
title?: string;
|
|
@@ -15,5 +16,5 @@ type Data = {
|
|
|
15
16
|
className?: string;
|
|
16
17
|
item?: string;
|
|
17
18
|
};
|
|
18
|
-
export default function Number({ onValue, active, max, edit, title, error, show, hide, value, placeholder, className, name, after, view, }: Data): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export default function Number({ onValue, onSave, active, max, edit, title, error, show, hide, value, placeholder, className, name, after, view, }: Data): import("react/jsx-runtime").JSX.Element;
|
|
19
20
|
export {};
|
package/dist/Format/Money.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function (n: any): string;
|
|
1
|
+
export default function (n: any, d?: number): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (type: string, id: number | string, p: string, unknown?: string): string;
|
package/dist/Format/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { default as Percent } from './Percent';
|
|
|
11
11
|
import { default as CapitalizeFirstLetter } from './CapitalizeFirstLetter';
|
|
12
12
|
import { default as DeclensionWord } from './DeclensionWord';
|
|
13
13
|
import { default as Select } from './Select';
|
|
14
|
+
import { default as SelectParams } from './SelectParams';
|
|
14
15
|
import { default as ObjectByArray } from './ObjectByArray';
|
|
15
16
|
import { default as Age } from './Age';
|
|
16
17
|
import { default as isNumeric } from './isNumeric';
|
|
@@ -31,6 +32,7 @@ declare const _default: {
|
|
|
31
32
|
CapitalizeFirstLetter: typeof CapitalizeFirstLetter;
|
|
32
33
|
DeclensionWord: typeof DeclensionWord;
|
|
33
34
|
Select: typeof Select;
|
|
35
|
+
SelectParams: typeof SelectParams;
|
|
34
36
|
ObjectByArray: typeof ObjectByArray;
|
|
35
37
|
isNumeric: typeof isNumeric;
|
|
36
38
|
};
|
package/dist/Search/Search.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ type Field = {
|
|
|
3
3
|
placeholder?: string;
|
|
4
4
|
};
|
|
5
5
|
export declare function Field({ className, placeholder }: Field): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare function FieldIcons({ className, placeholder }: Field): import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
export declare function Run(data: any, text: any, base: any): any;
|
|
7
8
|
export declare function Get(listener: any): void;
|
|
8
9
|
export declare function useValue(listener: any): void;
|