@das-fed/ui 6.4.0-dev.24 → 6.4.0-dev.25
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/package.json +5 -5
- package/packages/business-components/process-form/App.vue.d.ts +2 -0
- package/packages/business-components/process-form/index.d.ts +2 -0
- package/packages/business-components/process-form/index.js +151 -151
- package/packages/business-components/process-form/index.js.gz +0 -0
- package/packages/business-components/process-form/style.css +1 -1
- package/packages/business-components/process-form/type.d.ts +1 -0
- package/packages/business-components/process-table/hooks/useProcessTable.d.ts +12 -4
- package/packages/business-components/process-table/hooks/useTableShow.d.ts +8 -12
- package/packages/business-components/process-table/index.d.ts +18 -2
- package/packages/business-components/process-table/index.js +613 -591
- package/packages/business-components/process-table/index.js.gz +0 -0
- package/packages/business-components/process-table/src/App.vue.d.ts +3 -1
- package/packages/business-components/process-table/src/type.d.ts +21 -0
- package/packages/business-components/process-table/style.css +1 -1
- package/packages/components/form/index.js +21 -21
- package/packages/components/form/index.js.gz +0 -0
- package/packages/components/form/style.css +1 -1
- package/packages/components/form-item/index.js +2 -2
- package/packages/components/form-item/index.js.gz +0 -0
- package/packages/components/form-item/style.css +1 -1
- package/packages/components/form-item/style.css.gz +0 -0
- package/packages/components/rich-editor/index.js +1 -0
- package/packages/components/rich-editor/index.js.gz +0 -0
- package/packages/components/search/index.js +19 -19
- package/packages/components/search/index.js.gz +0 -0
- package/packages/components/search/style.css +1 -1
- package/packages/components/search/style.css.gz +0 -0
- package/packages/components/tree/index.js +2 -1
- package/packages/components/tree/index.js.gz +0 -0
- package/packages/components/tree/src/App.vue.d.ts +50 -40
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.form-image[data-v-e6f9c5ec]{background:#fff;margin:10px 0 30px}.table-search-process-top[data-v-c2fe15eb]{display:flex;justify-content:space-between;align-items:center;margin:0 14px 6px}.table-search-process-top .left-box[data-v-c2fe15eb]{display:flex;align-items:center}.form-image[data-v-6169bf17]{background:#fff;margin:10px 0 30px}.accordion-layout{width:100%}.accordion-layout .grid-layout{padding:0}.custom-page[data-v-
|
|
1
|
+
.form-image[data-v-e6f9c5ec]{background:#fff;margin:10px 0 30px}.table-search-process-top[data-v-c2fe15eb]{display:flex;justify-content:space-between;align-items:center;margin:0 14px 6px}.table-search-process-top .left-box[data-v-c2fe15eb]{display:flex;align-items:center}.form-image[data-v-6169bf17]{background:#fff;margin:10px 0 30px}.accordion-layout{width:100%}.accordion-layout .grid-layout{padding:0}.custom-page[data-v-7653ee4c]{display:flex;flex-direction:column;background-color:#e2e7ef}.custom-page .btn-box[data-v-7653ee4c]{background-color:#fff;height:48px;line-height:48px;padding-left:18px}.custom-page .content-box[data-v-7653ee4c]{flex:1;margin:0 10px;min-height:0}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Props, Emits } from '../src/type';
|
|
1
|
+
import type { Props, Emits, ITableShowColumn } from '../src/type';
|
|
2
2
|
export declare const useProcessTable: (props: Props, emits: Emits) => {
|
|
3
3
|
filterSetting: import("vue").Ref<any, any>;
|
|
4
4
|
defaultFilterSetting: import("vue").Ref<{
|
|
@@ -11,14 +11,22 @@ export declare const useProcessTable: (props: Props, emits: Emits) => {
|
|
|
11
11
|
prop: string;
|
|
12
12
|
order: string;
|
|
13
13
|
}[]>;
|
|
14
|
-
copySettingHeaderData: import("vue").Ref<
|
|
14
|
+
copySettingHeaderData: import("vue").Ref<any[], any[]>;
|
|
15
15
|
copyDialogHeaderData: import("vue").Ref<any, any>;
|
|
16
16
|
operation: (row: any, column: any, index: number) => any[];
|
|
17
17
|
reqTableList: () => Promise<void>;
|
|
18
18
|
tableData: import("vue").Ref<any, any>;
|
|
19
19
|
reqSearchSetting: () => Promise<void>;
|
|
20
|
-
settingHeaderData: import("vue").Ref<
|
|
21
|
-
dialogHeaderData: import("vue").Ref<
|
|
20
|
+
settingHeaderData: import("vue").Ref<any[], any[]>;
|
|
21
|
+
dialogHeaderData: import("vue").Ref<{
|
|
22
|
+
switch: boolean;
|
|
23
|
+
desc: string;
|
|
24
|
+
name: string;
|
|
25
|
+
}[], ITableShowColumn[] | {
|
|
26
|
+
switch: boolean;
|
|
27
|
+
desc: string;
|
|
28
|
+
name: string;
|
|
29
|
+
}[]>;
|
|
22
30
|
total: import("vue").Ref<number, number>;
|
|
23
31
|
pageIndex: import("vue").Ref<number, number>;
|
|
24
32
|
pageSize: import("vue").Ref<number, number>;
|
|
@@ -1,20 +1,16 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
import type { Props } from '../src/type';
|
|
3
|
-
type Header =
|
|
4
|
-
|
|
5
|
-
desc: string;
|
|
6
|
-
switch: boolean;
|
|
7
|
-
}[];
|
|
8
|
-
export declare const useTableShow: (props: Props, dialogHeaderData: Ref<Header>, settingHeaderData: any, copyDialogHeaderData: Ref<Header>, copySettingHeaderData: any) => {
|
|
2
|
+
import type { Props, Emits, ITableShowColumn } from '../src/type';
|
|
3
|
+
type Header = ITableShowColumn[];
|
|
4
|
+
export declare const useTableShow: (props: Props, emits: Emits, dialogHeaderData: Ref<Header>, settingHeaderData: any, copyDialogHeaderData: Ref<Header>, copySettingHeaderData: any) => {
|
|
9
5
|
headerBackData: Ref<{
|
|
10
|
-
name: string;
|
|
11
|
-
desc: string;
|
|
12
6
|
switch: boolean;
|
|
13
|
-
}[], Header | {
|
|
14
|
-
name: string;
|
|
15
7
|
desc: string;
|
|
8
|
+
name: string;
|
|
9
|
+
}[], {
|
|
16
10
|
switch: boolean;
|
|
17
|
-
|
|
11
|
+
desc: string;
|
|
12
|
+
name: string;
|
|
13
|
+
}[] | Header>;
|
|
18
14
|
showSettingDialog: Ref<boolean, boolean>;
|
|
19
15
|
cancelTabel: () => void;
|
|
20
16
|
resetDefault: () => void;
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
3
3
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
4
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
4
5
|
}>, {
|
|
5
6
|
reqTableList: () => Promise<void>;
|
|
6
7
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
8
|
getSearchQuery: (val: any) => any;
|
|
9
|
+
changeSlotShow: (val: import("./src/type.js").ITableShowColumn[]) => any;
|
|
8
10
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("./src/type.js").Props> & Readonly<{
|
|
9
11
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
12
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
10
13
|
}>, {
|
|
11
14
|
flowKey: string;
|
|
12
15
|
needDisplayFileds: boolean;
|
|
@@ -25,6 +28,7 @@ declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
25
28
|
Defaults: {};
|
|
26
29
|
}, Readonly<import("./src/type.js").Props> & Readonly<{
|
|
27
30
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
31
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
28
32
|
}>, {
|
|
29
33
|
reqTableList: () => Promise<void>;
|
|
30
34
|
}, {}, {}, {}, {
|
|
@@ -42,10 +46,12 @@ declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
42
46
|
__isSuspense?: never;
|
|
43
47
|
} & import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
44
48
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
49
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
45
50
|
}>, {
|
|
46
51
|
reqTableList: () => Promise<void>;
|
|
47
52
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
48
53
|
getSearchQuery: (val: any) => any;
|
|
54
|
+
changeSlotShow: (val: import("./src/type.js").ITableShowColumn[]) => any;
|
|
49
55
|
}, string, {
|
|
50
56
|
flowKey: string;
|
|
51
57
|
needDisplayFileds: boolean;
|
|
@@ -87,8 +93,10 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
87
93
|
selectable?: (row?: any, index?: any) => boolean;
|
|
88
94
|
}) | undefined;
|
|
89
95
|
readonly onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
96
|
+
readonly onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
90
97
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("./src/type.js").Props> & Readonly<{
|
|
91
98
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
99
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
92
100
|
}>;
|
|
93
101
|
$attrs: {
|
|
94
102
|
[x: string]: unknown;
|
|
@@ -102,14 +110,16 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
102
110
|
$root: import("vue").ComponentPublicInstance | null;
|
|
103
111
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
104
112
|
$host: Element | null;
|
|
105
|
-
$emit: (event: "getSearchQuery", val: any) => void;
|
|
113
|
+
$emit: ((event: "getSearchQuery", val: any) => void) & ((event: "changeSlotShow", val: import("./src/type.js").ITableShowColumn[]) => void);
|
|
106
114
|
$el: any;
|
|
107
115
|
$options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
108
116
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
117
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
109
118
|
}>, {
|
|
110
119
|
reqTableList: () => Promise<void>;
|
|
111
120
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
112
121
|
getSearchQuery: (val: any) => any;
|
|
122
|
+
changeSlotShow: (val: import("./src/type.js").ITableShowColumn[]) => any;
|
|
113
123
|
}, string, {
|
|
114
124
|
flowKey: string;
|
|
115
125
|
needDisplayFileds: boolean;
|
|
@@ -150,6 +160,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
150
160
|
columnSettingName: string;
|
|
151
161
|
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
152
162
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
163
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
153
164
|
}>, "reqTableList" | ("flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
|
|
154
165
|
reqTableList: () => Promise<void>;
|
|
155
166
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
@@ -182,8 +193,10 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
182
193
|
selectable?: (row?: any, index?: any) => boolean;
|
|
183
194
|
}) | undefined;
|
|
184
195
|
readonly onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
196
|
+
readonly onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
185
197
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("./src/type.js").Props> & Readonly<{
|
|
186
198
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
199
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
187
200
|
}>;
|
|
188
201
|
$attrs: {
|
|
189
202
|
[x: string]: unknown;
|
|
@@ -197,14 +210,16 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
197
210
|
$root: import("vue").ComponentPublicInstance | null;
|
|
198
211
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
199
212
|
$host: Element | null;
|
|
200
|
-
$emit: (event: "getSearchQuery", val: any) => void;
|
|
213
|
+
$emit: ((event: "getSearchQuery", val: any) => void) & ((event: "changeSlotShow", val: import("./src/type.js").ITableShowColumn[]) => void);
|
|
201
214
|
$el: any;
|
|
202
215
|
$options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
203
216
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
217
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
204
218
|
}>, {
|
|
205
219
|
reqTableList: () => Promise<void>;
|
|
206
220
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
207
221
|
getSearchQuery: (val: any) => any;
|
|
222
|
+
changeSlotShow: (val: import("./src/type.js").ITableShowColumn[]) => any;
|
|
208
223
|
}, string, {
|
|
209
224
|
flowKey: string;
|
|
210
225
|
needDisplayFileds: boolean;
|
|
@@ -245,6 +260,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
|
|
|
245
260
|
columnSettingName: string;
|
|
246
261
|
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
247
262
|
onGetSearchQuery?: ((val: any) => any) | undefined;
|
|
263
|
+
onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
|
|
248
264
|
}>, "reqTableList" | ("flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
|
|
249
265
|
reqTableList: () => Promise<void>;
|
|
250
266
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|