sun-biz 0.0.2-beta.1 → 0.0.2-beta.10

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.
@@ -15,6 +15,9 @@ export declare const COMPONENT_MAP: {
15
15
  "11": string;
16
16
  "6": string;
17
17
  "1": string;
18
+ "8": string;
19
+ "9": string;
20
+ "10": string;
18
21
  };
19
22
  /**
20
23
  * 分组展开 集合展示
@@ -22,7 +25,14 @@ export declare const COMPONENT_MAP: {
22
25
  * @param result
23
26
  * @returns
24
27
  */
25
- export declare function expansionGroup(data: FormDesignDetailInfo[], result?: FormDesignDetailInfo[]): FormDesignDetailInfo[];
28
+ export declare function expansionGroup(data: FormDesignDetailInfo[], result?: FormDesignDetailInfo[], hideData?: {
29
+ [key: string]: unknown;
30
+ }): {
31
+ result: FormDesignDetailInfo[];
32
+ hideData: {
33
+ [key: string]: unknown;
34
+ };
35
+ };
26
36
  /**
27
37
  * 获取组件类型
28
38
  * @param item
@@ -35,11 +45,14 @@ export declare function getExtraProps(item: FormDesignDetailInfo, dataValueNames
35
45
  }, modelValue?: {
36
46
  [key: string]: unknown;
37
47
  }): {
38
- [key: string]: unknown;
48
+ [x: string]: unknown;
39
49
  };
40
- export declare function useGetFromConfigData(result: FormDesignDetailInfo[], layoutTypeCode: number): {
50
+ export declare function useGetFromConfigData(result: FormDesignDetailInfo[], layoutTypeCode: number, parentFormCtlNo: string, afterValueChange: ((key: string, value: unknown, model: unknown, parentFormCtlNo: string) => void) | undefined): {
41
51
  label: string | undefined;
42
52
  name: string;
53
+ onModelChange: (value: unknown, model: {
54
+ [key: string]: unknown;
55
+ }) => void;
43
56
  component: string;
44
57
  placeholder: string;
45
58
  defaultValue: {};
@@ -50,6 +63,9 @@ export declare function useGetFromConfigData(result: FormDesignDetailInfo[], lay
50
63
  message: string;
51
64
  trigger: string;
52
65
  }[];
66
+ extraProps: {
67
+ [key: string]: unknown;
68
+ };
53
69
  }[];
54
70
  /**
55
71
  * 为服务接口 整合数据
@@ -1,8 +1,9 @@
1
- export { Title } from './title/index.ts';
2
- export * from './patient-access/index.ts';
3
- export { ProTable, DbgridComponentSetting } from './pro-table/index.ts';
4
- export { DictSelect, FlagSelect, HospitalSelect } from './biz-select/index.ts';
5
- export { CopyTextWithTooltip } from './copy-text-with-tooltip/index.ts';
6
- export { FormDesignRender } from './form-design-render/index.ts';
7
- export { ProDialog } from './pro-dialog/index.ts';
8
- export { ProForm } from './pro-form/index.ts';
1
+ export { Title } from "./title/index.ts";
2
+ export * from "./patient-access/index.ts";
3
+ export { ProTable, DbgridComponentSetting } from "./pro-table/index.ts";
4
+ export { DictSelect, FlagSelect, HospitalSelect } from "./biz-select/index.ts";
5
+ export { CopyTextWithTooltip } from "./copy-text-with-tooltip/index.ts";
6
+ export { FormDesignRender } from "./form-design-render/index.ts";
7
+ export { ProDialog } from "./pro-dialog/index.ts";
8
+ export { ProForm, FormUnit } from "./pro-form/index.ts";
9
+ export { print, PrintComponent } from "./print-component/index.ts";