elcrm 0.8.37 → 0.8.38

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.
@@ -16,5 +16,5 @@ interface Input {
16
16
  modal?: string;
17
17
  options?: any;
18
18
  }
19
- export default function ({ value, onValue, name, placeholder, title, error, hide, edit, show, active, after, view, modal, module, options, }: Input): import("react/jsx-runtime").JSX.Element;
19
+ export default function ({ value, onValue, name, placeholder, title, error, hide, edit, show, active, after, view, modal, module, options, className, }: Input): import("react/jsx-runtime").JSX.Element;
20
20
  export {};
@@ -0,0 +1,20 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ name: string;
5
+ placeholder?: string;
6
+ title?: string;
7
+ error?: string;
8
+ hide?: boolean;
9
+ edit?: boolean;
10
+ show?: boolean;
11
+ active?: boolean;
12
+ after?: string;
13
+ view?: string;
14
+ className?: string;
15
+ module: string;
16
+ modal?: string;
17
+ options?: any;
18
+ }
19
+ export default function ({ value, onValue, name, placeholder, title, error, hide, edit, show, active, after, view, modal, module, options, className, }: Input): import("react/jsx-runtime").JSX.Element;
20
+ export {};
@@ -23,6 +23,7 @@ import { default as Check } from './Check';
23
23
  import { default as Palette } from './Palette';
24
24
  import { default as Toogle } from './Toogle';
25
25
  import { default as Group } from './Group';
26
+ import { default as Options } from './Options';
26
27
  import { useData, setValue, runReload } from './use';
27
28
 
28
29
  declare const _default: {
@@ -57,5 +58,6 @@ declare const _default: {
57
58
  Palette: ({ label, onValue, value, name, item }: Palette) => import("react/jsx-runtime").JSX.Element;
58
59
  Toogle: ({ onValue, value, name, item }: Toogle) => import("react/jsx-runtime").JSX.Element;
59
60
  Group: typeof Group;
61
+ Options: typeof Options;
60
62
  };
61
63
  export default _default;
@@ -22,6 +22,7 @@ import { default as Users } from '../Form/Users';
22
22
  import { default as Check } from '../Form/Check';
23
23
  import { default as Toogle } from '../Form/Toogle';
24
24
  import { default as Group } from '../Form/Group';
25
+ import { default as Options } from '../Form/Options';
25
26
 
26
27
  declare const _default: {
27
28
  Color: typeof Color;
@@ -50,5 +51,6 @@ declare const _default: {
50
51
  String: typeof Input;
51
52
  Toogle: ({ onValue, value, name, item }: Toogle) => import("react/jsx-runtime").JSX.Element;
52
53
  Group: typeof Group;
54
+ Options: typeof Options;
53
55
  };
54
56
  export default _default;