@dt-frames/ui 1.0.11 → 1.0.12

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.
@@ -6,7 +6,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
6
6
  type: FunctionConstructor;
7
7
  };
8
8
  formProps: {
9
- type: PropType<Ref<Partial<FormProps>>>;
9
+ type: PropType<Partial<FormProps>>;
10
+ default: () => {};
10
11
  };
11
12
  formsVal: {
12
13
  type: PropType<Ref<Recordable<any>>>;
@@ -46,7 +47,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
46
47
  type: FunctionConstructor;
47
48
  };
48
49
  formProps: {
49
- type: PropType<Ref<Partial<FormProps>>>;
50
+ type: PropType<Partial<FormProps>>;
51
+ default: () => {};
50
52
  };
51
53
  formsVal: {
52
54
  type: PropType<Ref<Recordable<any>>>;
@@ -1414,7 +1416,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
1414
1416
  type: FunctionConstructor;
1415
1417
  };
1416
1418
  formProps: {
1417
- type: PropType<Ref<Partial<FormProps>>>;
1419
+ type: PropType<Partial<FormProps>>;
1420
+ default: () => {};
1418
1421
  };
1419
1422
  formsVal: {
1420
1423
  type: PropType<Ref<Recordable<any>>>;
@@ -1453,6 +1456,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1453
1456
  canFullscreen: boolean;
1454
1457
  closable: boolean;
1455
1458
  width: string | number;
1459
+ formProps: {};
1456
1460
  schemas: import("../../../forms").FormSchema[];
1457
1461
  actions: import("../../../forms").ButtonProps[];
1458
1462
  }>;