elcrm 0.8.83 → 0.8.84
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/Money.d.ts +22 -1
- package/dist/Format/index.d.ts +2 -0
- package/dist/Format/isNumeric.d.ts +1 -0
- package/dist/index.es.js +1065 -1044
- package/dist/index.umd.js +11 -11
- package/package.json +1 -1
package/dist/Form/Money.d.ts
CHANGED
|
@@ -1 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
interface Input {
|
|
2
|
+
value?: string | number;
|
|
3
|
+
onValue?: Function;
|
|
4
|
+
onBlur?: Function;
|
|
5
|
+
onSave?: Function;
|
|
6
|
+
name?: string;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
title?: string;
|
|
9
|
+
label?: string;
|
|
10
|
+
error?: string;
|
|
11
|
+
hide?: boolean;
|
|
12
|
+
edit?: boolean;
|
|
13
|
+
active?: Boolean;
|
|
14
|
+
after?: string;
|
|
15
|
+
show?: Boolean;
|
|
16
|
+
view?: string;
|
|
17
|
+
type?: string;
|
|
18
|
+
className?: string;
|
|
19
|
+
course?: number;
|
|
20
|
+
}
|
|
21
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, course, view, onBlur, type, onSave, className, }: Input): "" | import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export {};
|
package/dist/Format/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { default as DeclensionWord } from './DeclensionWord';
|
|
|
13
13
|
import { default as Select } from './Select';
|
|
14
14
|
import { default as ObjectByArray } from './ObjectByArray';
|
|
15
15
|
import { default as Age } from './Age';
|
|
16
|
+
import { default as isNumeric } from './isNumeric';
|
|
16
17
|
|
|
17
18
|
declare const _default: {
|
|
18
19
|
Age: typeof Age;
|
|
@@ -31,5 +32,6 @@ declare const _default: {
|
|
|
31
32
|
DeclensionWord: typeof DeclensionWord;
|
|
32
33
|
Select: typeof Select;
|
|
33
34
|
ObjectByArray: typeof ObjectByArray;
|
|
35
|
+
isNumeric: typeof isNumeric;
|
|
34
36
|
};
|
|
35
37
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (s: any): Boolean;
|