@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.
- package/es/components/curd/src/components/dialog.d.ts +7 -3
- package/es/components/forms/src/components/formInputUseDialog.d.ts +903 -0
- package/es/components/forms/src/types/form.type.d.ts +3 -1
- package/es/components/modal/src/types/modal.type.d.ts +4 -1
- package/es/components/table/src/hooks/useCustomRow.d.ts +19 -0
- package/es/components/table/src/index.d.ts +21 -2
- package/es/components/table/src/props.d.ts +4 -0
- package/es/components/upload/src/index.d.ts +21 -2
- package/es/components/upload/src/upload.d.ts +21 -2
- package/es/index.js +150 -34
- package/es/style/components/forms/index.less +23 -0
- package/package.json +1 -1
- package/src/components/curd/src/components/dialog.vue +3 -2
- package/src/components/forms/index.less +23 -0
- package/src/components/forms/src/componentMap.ts +2 -0
- package/src/components/forms/src/components/formInputUseDialog.vue +43 -0
- package/src/components/forms/src/components/formItem.vue +10 -10
- package/src/components/forms/src/types/form.type.ts +6 -0
- package/src/components/modal/src/hooks/useModal.ts +7 -1
- package/src/components/modal/src/types/modal.type.ts +4 -1
- package/src/components/source/src/hooks/useSource.ts +1 -1
- package/src/components/table/src/components/TableHeader.vue +1 -1
- package/src/components/table/src/hooks/useCustomRow.ts +86 -0
- package/src/components/table/src/index.vue +14 -2
- package/src/components/table/src/props.ts +3 -0
|
@@ -6,7 +6,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6
6
|
type: FunctionConstructor;
|
|
7
7
|
};
|
|
8
8
|
formProps: {
|
|
9
|
-
type: PropType<
|
|
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<
|
|
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<
|
|
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
|
}>;
|