sun-biz 0.0.3-beta.26 → 0.0.3-beta.28
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 +7 -0
- package/dist/components/index.js +496 -60
- package/dist/components/pro-table/interface/index.d.ts +8 -0
- package/dist/components/pro-table/utils.d.ts +18 -2
- package/dist/components/static/css/index.css +1 -1
- package/dist/hooks/index.js +8 -1
- package/dist/index.js +497 -61
- package/dist/static/css/index.css +1 -1
- package/package.json +1 -1
|
@@ -84,3 +84,10 @@ export declare function integrateData(initData: {
|
|
|
84
84
|
export declare function getDefaultValue(data: {
|
|
85
85
|
[key: string]: unknown;
|
|
86
86
|
}, key: string): string;
|
|
87
|
+
/**
|
|
88
|
+
* 患者建档新增时表格不可重复的配置
|
|
89
|
+
*/
|
|
90
|
+
export declare const TABLE_DUPLICATE_CHECK: {
|
|
91
|
+
perCertificateList: string;
|
|
92
|
+
perAddressList: string;
|
|
93
|
+
};
|