elcrm 0.9.83 → 0.9.85

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.
@@ -9,6 +9,8 @@ export type TButton = {
9
9
  view?: "confirm" | "cancel" | "action" | "disabled" | "none";
10
10
  awaitText?: string;
11
11
  children?: any;
12
+ after?: any;
13
+ before?: any;
12
14
  };
13
15
  /**
14
16
  * The Button component.
@@ -30,5 +32,5 @@ export type TButton = {
30
32
  *
31
33
  * @returns {React.ReactElement} The button component.
32
34
  */
33
- declare const Button: ({ onClick, onSend, size, view, mode, children, className, label, onRef, awaitText, }: TButton) => import("react/jsx-runtime").JSX.Element;
35
+ declare const Button: ({ onClick, onSend, size, view, mode, children, className, after, before, label, onRef, awaitText, }: TButton) => import("react/jsx-runtime").JSX.Element;
34
36
  export default Button;
@@ -12,12 +12,14 @@ interface Input {
12
12
  edit?: boolean;
13
13
  active?: Boolean;
14
14
  after?: any;
15
+ before?: any;
15
16
  show?: Boolean;
16
17
  view?: string;
17
18
  id?: string;
18
19
  className?: string;
19
20
  isCopy?: boolean;
20
21
  maxLength?: number;
22
+ isReload?: boolean;
21
23
  }
22
- export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, maxLength, view, onBlur, onSave, className, isCopy, }: Input): "" | import("react/jsx-runtime").JSX.Element;
24
+ export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, before, show, maxLength, view, onBlur, onSave, className, isCopy, isReload, }: Input): "" | import("react/jsx-runtime").JSX.Element;
23
25
  export {};
@@ -10,11 +10,12 @@ type Data = {
10
10
  hide?: boolean;
11
11
  edit?: Boolean;
12
12
  active?: Boolean;
13
- after?: string;
13
+ after?: any;
14
+ before?: any;
14
15
  show?: Boolean;
15
16
  view?: string;
16
17
  className?: string;
17
18
  item?: string;
18
19
  };
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;
20
+ export default function Number({ onValue, onSave, active, max, edit, title, error, show, hide, value, placeholder, className, name, after, before, view, }: Data): import("react/jsx-runtime").JSX.Element;
20
21
  export {};
@@ -1,7 +1,8 @@
1
- interface Data {
1
+ export type TSelect = {
2
2
  value?: string;
3
3
  onValue?: Function;
4
4
  name?: string;
5
+ isReload?: boolean;
5
6
  placeholder?: string;
6
7
  title?: string;
7
8
  error?: string;
@@ -14,6 +15,5 @@ interface Data {
14
15
  className?: string;
15
16
  options?: any;
16
17
  order?: any;
17
- }
18
- export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, name, after, view, order, }: Data): "" | import("react/jsx-runtime").JSX.Element;
19
- export {};
18
+ };
19
+ export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, name, after, view, order, isReload, }: TSelect): "" | import("react/jsx-runtime").JSX.Element;
@@ -11,6 +11,7 @@ type List = {
11
11
  items?: any;
12
12
  list?: any;
13
13
  icons?: any;
14
+ isSetting?: boolean;
14
15
  };
15
- export declare function Lite({ items, list, icons }: List): import("react/jsx-runtime").JSX.Element;
16
+ export declare function Lite({ items, list, icons, isSetting }: List): import("react/jsx-runtime").JSX.Element;
16
17
  export {};