elcrm 0.8.86 → 0.8.88

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.
@@ -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 {};
@@ -30,6 +30,7 @@ import { useData, setValue, runReload } from './use';
30
30
  declare const _default: {
31
31
  Color: typeof Color;
32
32
  Date: typeof Date;
33
+ Mask: typeof Image;
33
34
  Image: typeof Image;
34
35
  Code: typeof Code;
35
36
  Check: typeof Check;
@@ -1,28 +1,29 @@
1
- import { default as Switch } from '../Form/Switch';
2
- import { default as Input } from '../Form/Input';
3
1
  import { default as Button } from '../Form/Button';
4
- import { default as Message } from '../Form/Message';
5
- import { default as Generator } from '../Form/Generator';
6
2
  import { default as Captcha } from '../Form/Captcha';
3
+ import { default as Check } from '../Form/Check';
7
4
  import { default as Code } from '../Form/Code';
8
5
  import { default as Color } from '../Form/Color';
9
6
  import { default as Date } from '../Form/Date';
7
+ import { default as Generator } from '../Form/Generator';
8
+ import { default as Group } from '../Form/Group';
9
+ import { default as Input } from '../Form/Input';
10
+ import { default as Mask } from '../Form/Mask';
11
+ import { default as Message } from '../Form/Message';
10
12
  import { default as Modal } from '../Form/Modal';
11
13
  import { default as Money } from '../Form/Money';
12
14
  import { default as Month } from '../Form/Month';
13
15
  import { default as Notes } from '../Form/Notes';
14
16
  import { default as Number } from '../Form/Number';
17
+ import { default as Options } from '../Form/Options';
15
18
  import { default as Password } from '../Form/Password';
16
19
  import { default as Phone } from '../Form/Phone';
17
20
  import { default as Select } from '../Form/Select';
18
21
  import { default as Set } from '../Form/Set';
22
+ import { default as Switch } from '../Form/Switch';
19
23
  import { default as Textarea } from '../Form/Textarea';
20
24
  import { default as Time } from '../Form/Time';
21
- import { default as Users } from '../Form/Users';
22
- import { default as Check } from '../Form/Check';
23
25
  import { default as Toogle } from '../Form/Toogle';
24
- import { default as Group } from '../Form/Group';
25
- import { default as Options } from '../Form/Options';
26
+ import { default as Users } from '../Form/Users';
26
27
 
27
28
  declare const _default: {
28
29
  Color: typeof Color;
@@ -37,6 +38,7 @@ declare const _default: {
37
38
  Captcha: typeof Captcha;
38
39
  Modal: typeof Modal;
39
40
  Money: typeof Money;
41
+ Mask: typeof Mask;
40
42
  Month: typeof Month;
41
43
  Notes: typeof Notes;
42
44
  Number: typeof Number;