sun-biz 0.0.2-beta.9 → 0.0.3-beta.1
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.
- package/dist/components/form-design-render/utils.d.ts +3 -1
- package/dist/components/index.d.ts +8 -7
- package/dist/components/index.js +1710 -891
- package/dist/components/invoice/index.d.ts +2 -0
- package/dist/components/patient-access/api.d.ts +8 -2
- package/dist/components/patient-access/constant.d.ts +23 -0
- package/dist/components/patient-access/index.d.ts +6 -4
- package/dist/components/{print-component → print}/api/index.d.ts +7 -1
- package/dist/components/print/hooks/index.d.ts +22 -0
- package/dist/components/print/index.d.ts +4 -0
- package/dist/components/print/print.d.ts +6 -0
- package/dist/components/print/template.d.ts +4 -0
- package/dist/components/pro-form/index.d.ts +3 -2
- package/dist/components/pro-form/typings/index.d.ts +3 -2
- package/dist/components/pro-table/index.d.ts +3 -2
- package/dist/components/pro-table/interface/index.d.ts +4 -3
- package/dist/hooks/index.d.ts +6 -5
- package/dist/hooks/index.js +113 -6
- package/dist/hooks/use-app-config/index.d.ts +3 -1
- package/dist/hooks/use-app-config/types.d.ts +9 -0
- package/dist/hooks/use-direction-select/index.d.ts +2 -2
- package/dist/hooks/use-editable-table/index.d.ts +29 -0
- package/dist/index.d.ts +9 -5
- package/dist/index.js +2406 -1494
- package/package.json +20 -17
- package/dist/components/print-component/index.d.ts +0 -4
- /package/dist/components/{print-component → print}/api/request.d.ts +0 -0
- /package/dist/components/{print-component → print}/constant.d.ts +0 -0
|
@@ -78,10 +78,12 @@ export declare function integrateData(initData: {
|
|
|
78
78
|
};
|
|
79
79
|
/**
|
|
80
80
|
* 传入地址类似的值 ,拼接
|
|
81
|
+
* 如果接口返回了这个字段。 展示接口返回对应的vaule
|
|
82
|
+
* 没有的话则展示默认值
|
|
81
83
|
* @param data
|
|
82
84
|
* @param key
|
|
83
85
|
* @returns
|
|
84
86
|
*/
|
|
85
87
|
export declare function getDefaultValue(data: {
|
|
86
88
|
[key: string]: unknown;
|
|
87
|
-
}, key: string): string
|
|
89
|
+
}, key: string): string;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from "./invoice/index.ts";
|
|
2
|
+
export * from "./pro-table/index.ts";
|
|
2
3
|
export * from "./patient-access/index.ts";
|
|
3
|
-
export
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export { FormDesignRender } from "./form-design-render/index.ts";
|
|
4
|
+
export * from "./print/index.ts";
|
|
5
|
+
export { ProForm, FormUnit, convertToWbNo, convertToSpellNo, } from "./pro-form/index.ts";
|
|
6
|
+
export { Title } from "./title/index.ts";
|
|
7
7
|
export { ProDialog } from "./pro-dialog/index.ts";
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
8
|
+
export { FormDesignRender } from "./form-design-render/index.ts";
|
|
9
|
+
export { CopyTextWithTooltip } from "./copy-text-with-tooltip/index.ts";
|
|
10
|
+
export { DictSelect, FlagSelect, HospitalSelect } from "./biz-select/index.ts";
|