szld-libs 0.0.3 → 0.0.5

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,6 +1,9 @@
1
+ import { ModalFuncProps } from "antd";
1
2
  interface WorkFlowNodeProps {
2
3
  data: any[];
3
4
  current: string;
4
5
  }
5
- declare const showWorkFlow: (props: WorkFlowNodeProps) => null;
6
+ interface showWorkFlow extends WorkFlowNodeProps, ModalFuncProps {
7
+ }
8
+ declare const showWorkFlow: (props: showWorkFlow) => null;
6
9
  export default showWorkFlow;
package/@types/main.d.ts CHANGED
@@ -2,9 +2,12 @@ import BackHeader from "./components/BackHeader";
2
2
  import CreateForm from "./components/CreateForm";
3
3
  import SearchTable from "./components/SearchTable";
4
4
  import UploadFile from "./components/Upload";
5
+ import Echarts from "./components/Echarts";
6
+ import EditTable from "./components/EditTable";
7
+ import VirtualTable from "./components/VirtualTable";
5
8
  import showWorkFlow from "./components/WorkFlowNode";
6
9
  import * as download from "./utils/download";
7
10
  import * as fileType from "./utils/filetype";
8
11
  import * as verfyCode from "./utils/verify-code";
9
12
  import * as utils from "./utils/index";
10
- export { BackHeader, CreateForm, SearchTable, UploadFile, showWorkFlow, download, fileType, verfyCode, utils, };
13
+ export { Echarts, EditTable, VirtualTable, BackHeader, CreateForm, SearchTable, UploadFile, showWorkFlow, download, fileType, verfyCode, utils, };