gzkx-package 0.1.57 → 0.1.59

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.
@@ -11,6 +11,8 @@ interface FileUploadProps {
11
11
  maxCount?: number;
12
12
  disabled?: boolean;
13
13
  buttonText?: string;
14
+ baseUrl?: string;
15
+ params?: Record<string, any>;
14
16
  }
15
17
  declare const FileFoldComponent: React.FC<FileUploadProps>;
16
18
  export default FileFoldComponent;
@@ -13,6 +13,8 @@ interface FileUploadProps {
13
13
  maxCount?: number;
14
14
  disabled?: boolean;
15
15
  showFileType?: boolean;
16
+ baseUrl?: string;
17
+ params?: Record<string, any>;
16
18
  }
17
19
  declare const ImageVideoComponent: React.FC<FileUploadProps>;
18
20
  export default ImageVideoComponent;
@@ -51,10 +51,13 @@ interface CustomAddProps {
51
51
  oneditFormChange?: (changedValues: any, allValues: any) => void;
52
52
  CustomModalFooter?: ((record: any) => React.ReactNode);
53
53
  validateConfig?: ValidateConfig;
54
+ activeTab?: string;
55
+ onTabChange?: (key: string) => void;
54
56
  }
55
57
  interface CustomAddHandle {
56
58
  setFieldsValue: (values: any) => void;
57
59
  getFieldsValue: () => any;
60
+ setActiveTab: (key: string) => void;
58
61
  }
59
62
  declare const CustomAdd: React.ForwardRefExoticComponent<CustomAddProps & React.RefAttributes<CustomAddHandle>>;
60
63
  export default CustomAdd;
@@ -9,6 +9,7 @@ export interface CommonPageHandle {
9
9
  reload: () => void;
10
10
  getSearchFieldsValue: () => any;
11
11
  setSearchFieldsValue: (values: any) => void;
12
+ setActiveTab: (key: string) => void;
12
13
  /** 打开表格配置弹窗 */
13
14
  openSettingModal: () => void;
14
15
  /** 关闭表格配置弹窗 */
@@ -10,6 +10,7 @@ interface EnvConfig {
10
10
  uploadUrl: string;
11
11
  enableLog: boolean;
12
12
  wsUrl: string;
13
+ fileFold: string;
13
14
  }
14
15
  declare const env: EnvConfig;
15
16
  export default env;