elcrm 0.8.85 → 0.8.87
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/Mask.d.ts +19 -0
- package/dist/Form/index.d.ts +1 -0
- 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/index.es.js +827 -822
- package/dist/index.umd.js +9 -9
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface Input {
|
|
2
|
+
value?: string;
|
|
3
|
+
onValue?: Function;
|
|
4
|
+
onSave?: Function;
|
|
5
|
+
name?: string;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
error?: string;
|
|
9
|
+
hide?: boolean;
|
|
10
|
+
edit?: boolean;
|
|
11
|
+
show?: boolean;
|
|
12
|
+
active?: boolean;
|
|
13
|
+
after?: string;
|
|
14
|
+
view?: string;
|
|
15
|
+
format?: string;
|
|
16
|
+
className?: string;
|
|
17
|
+
}
|
|
18
|
+
export default function ({ value, onValue, onSave, name, format, placeholder, title, error, hide, edit, active, after, show, view, className, }: Input): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export {};
|
package/dist/Form/index.d.ts
CHANGED
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
|
};
|