szld-libs 0.0.11 → 0.0.13

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.
@@ -1,10 +1,11 @@
1
- import { ReactNode } from "react";
1
+ import { CSSProperties, ReactNode } from "react";
2
2
  interface BackHeaderProps {
3
3
  isBack?: boolean;
4
4
  title: string | ReactNode;
5
5
  subTitle?: string | ReactNode;
6
6
  extra?: ReactNode;
7
7
  className?: string;
8
+ titleStyle?: CSSProperties;
8
9
  }
9
10
  declare const BackHeader: (props: BackHeaderProps) => JSX.Element;
10
11
  export default BackHeader;
@@ -2,6 +2,8 @@
2
2
  import { UploadProps } from "antd";
3
3
  export interface UploadFileProps extends UploadProps {
4
4
  maxSize?: number;
5
+ uploadBtnName?: string;
6
+ uploadHint?: any;
5
7
  }
6
8
  declare const UploadFile: (props: UploadFileProps) => JSX.Element;
7
9
  export default UploadFile;