elcrm 0.9.95 → 0.9.97

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.
@@ -2,6 +2,7 @@ export type TButton = {
2
2
  onClick?: Function;
3
3
  onSend?: Function;
4
4
  onRef?: any;
5
+ isDisabled?: boolean;
5
6
  label?: String;
6
7
  className?: string;
7
8
  size?: "m" | "s" | "l";
@@ -32,5 +33,5 @@ export type TButton = {
32
33
  *
33
34
  * @returns {React.ReactElement} The button component.
34
35
  */
35
- declare const Button: ({ onClick, onSend, size, view, mode, children, className, after, before, label, onRef, awaitText, }: TButton) => import("react/jsx-runtime").JSX.Element;
36
+ declare const Button: ({ onClick, onSend, size, view, mode, children, isDisabled, className, after, before, label, onRef, awaitText, }: TButton) => import("react/jsx-runtime").JSX.Element;
36
37
  export default Button;
@@ -27,8 +27,8 @@ export declare function subId(id: number): void;
27
27
  export declare function setId(id: number, reload?: boolean): void;
28
28
  export declare function getId(): any;
29
29
  export declare function isId(id: number): boolean;
30
- export declare function Path(module: string, tab: string, id: string): void;
31
- export declare function Push(page: string, module: string, tab?: string, id?: string): void;
30
+ export declare function Path(module: string, tab: string, id: string | number): void;
31
+ export declare function Push(page: string, module: string, tab?: string, id?: string | number): void;
32
32
  export declare function newSetting(j: any): void;
33
33
  export declare function setSetting(s: string, p: any): void;
34
34
  export declare function getSetting(p: string): any;