@qqt-product/ui 14.1.4 → 14.1.5
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/index.es.js +14979 -14909
- package/dist/index.umd.js +93 -93
- package/dist/lib/components/checkbox/index.d.ts +1 -1
- package/dist/lib/components/checkbox/src/checkbox.vue.d.ts +1 -1
- package/dist/lib/components/detail-page-layout/index.d.ts +10 -0
- package/dist/lib/components/detail-page-layout/src/detail-page-layout.vue.d.ts +11 -1
- package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +1 -0
- package/dist/lib/components/layout/index.d.ts +9 -7
- package/dist/lib/components/layout/src/header/index.vue.d.ts +0 -1
- package/dist/lib/components/layout/src/header/navRight/index.vue.d.ts +0 -1
- package/dist/lib/components/layout/src/header/navRight/rightTool.vue.d.ts +0 -1
- package/dist/lib/components/layout/src/index.vue.d.ts +9 -7
- package/dist/lib/components/layout/src/menu/menu.vue.d.ts +2 -3
- package/dist/lib/components/layout/src/sider/index.vue.d.ts +9 -4
- package/dist/lib/components/layout/src/sider/logo.vue.d.ts +8 -2
- package/dist/lib/components/list-page-layout/index.d.ts +2 -0
- package/dist/lib/components/list-page-layout/src/components/common/chatBi-modal/chatBi-modal.vue.d.ts +10 -0
- package/dist/lib/components/list-page-layout/src/components/common/columnSetting/columnSetting.vue.d.ts +2 -2
- package/dist/lib/components/list-page-layout/src/components/list-content-buttons/list-content-buttons.vue.d.ts +9 -0
- package/dist/lib/components/list-page-layout/src/layout.vue.d.ts +2 -0
- package/dist/lib/components/list-page-layout/src/list-page-layout-types.d.ts +1 -0
- package/dist/lib/components/list-page-layout/src/symbol.d.ts +1 -0
- package/dist/lib/components/page-layout/index.d.ts +1 -0
- package/dist/lib/components/page-layout/src/page-layout.vue.d.ts +1 -0
- package/dist/lib/components/radio/index.d.ts +1 -1
- package/dist/lib/components/radio/src/radio.vue.d.ts +1 -1
- package/dist/lib/components/select/index.d.ts +1 -0
- package/dist/lib/components/select/src/select.vue.d.ts +1 -0
- package/dist/lib/components/vxe-select/index.d.ts +1 -2
- package/dist/lib/components/vxe-select/src/vxe-select.vue.d.ts +2 -3
- package/dist/lib/utils/event.d.ts +2 -1
- package/dist/style.css +1 -1
- package/package.json +8 -8
|
@@ -104,8 +104,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
104
104
|
readonly value: string;
|
|
105
105
|
readonly options: Option[];
|
|
106
106
|
readonly 'onUpdate:value': ((value: string) => void) | ((value: string) => void)[];
|
|
107
|
-
readonly required: "0" | "1";
|
|
108
107
|
readonly dictCode: string;
|
|
108
|
+
readonly required: "0" | "1";
|
|
109
109
|
readonly isLayout: boolean;
|
|
110
110
|
readonly colSpan: string;
|
|
111
111
|
readonly selectControlType: string;
|
|
@@ -100,8 +100,8 @@ declare const _sfc_main: DefineComponent<{
|
|
|
100
100
|
readonly value: string;
|
|
101
101
|
readonly options: Option[];
|
|
102
102
|
readonly 'onUpdate:value': ((value: string) => void) | ((value: string) => void)[];
|
|
103
|
-
readonly required: "0" | "1";
|
|
104
103
|
readonly dictCode: string;
|
|
104
|
+
readonly required: "0" | "1";
|
|
105
105
|
readonly isLayout: boolean;
|
|
106
106
|
readonly colSpan: string;
|
|
107
107
|
readonly selectControlType: string;
|
|
@@ -101,6 +101,11 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
101
101
|
type: StringConstructor;
|
|
102
102
|
default: string;
|
|
103
103
|
};
|
|
104
|
+
} & {
|
|
105
|
+
isDetail: {
|
|
106
|
+
type: PropType<boolean>;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
104
109
|
}, {
|
|
105
110
|
instance: Ref<Expose | undefined>;
|
|
106
111
|
classes: ComputedRef<{
|
|
@@ -212,6 +217,11 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
212
217
|
type: StringConstructor;
|
|
213
218
|
default: string;
|
|
214
219
|
};
|
|
220
|
+
} & {
|
|
221
|
+
isDetail: {
|
|
222
|
+
type: PropType<boolean>;
|
|
223
|
+
default: boolean;
|
|
224
|
+
};
|
|
215
225
|
}>>, {
|
|
216
226
|
pattern: Pattern;
|
|
217
227
|
currentRow: CurrentRow;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { DefineComponent,
|
|
1
|
+
import type { DefineComponent, Ref, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
2
|
import type { roleValidator, CurrentRow, UserInfo, Pattern, patternValidator, RemoteConfig, DetailApiFunctionType, PageButton, PageButtonPosition, pageButtonPositionValidator, RecordString, Expose, ComputedFormFieldsItem } from '../../edit-page-layout';
|
|
3
3
|
declare const _sfc_main: DefineComponent<{
|
|
4
4
|
showPageHeader: {
|
|
@@ -97,6 +97,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
97
97
|
type: StringConstructor;
|
|
98
98
|
default: string;
|
|
99
99
|
};
|
|
100
|
+
} & {
|
|
101
|
+
isDetail: {
|
|
102
|
+
type: PropType<boolean>;
|
|
103
|
+
default: boolean;
|
|
104
|
+
};
|
|
100
105
|
}, {
|
|
101
106
|
instance: Ref<Expose | undefined>;
|
|
102
107
|
classes: ComputedRef<{
|
|
@@ -208,6 +213,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
208
213
|
type: StringConstructor;
|
|
209
214
|
default: string;
|
|
210
215
|
};
|
|
216
|
+
} & {
|
|
217
|
+
isDetail: {
|
|
218
|
+
type: PropType<boolean>;
|
|
219
|
+
default: boolean;
|
|
220
|
+
};
|
|
211
221
|
}>>, {
|
|
212
222
|
pattern: Pattern;
|
|
213
223
|
currentRow: CurrentRow;
|
|
@@ -344,6 +344,7 @@ export type VxePayload = {
|
|
|
344
344
|
setItemRequiredOrDisabled?: SetItemRequiredOrDisabled;
|
|
345
345
|
Decimal?: typeof Decimal;
|
|
346
346
|
topEmit?: () => void;
|
|
347
|
+
selectedOptions?: CascaderProps['options'];
|
|
347
348
|
};
|
|
348
349
|
export interface UploadExtend {
|
|
349
350
|
businessType?: string;
|
|
@@ -101,7 +101,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
101
101
|
type: PropType<LayoutConfigType>;
|
|
102
102
|
};
|
|
103
103
|
}, {
|
|
104
|
-
srmI18n: SrmI18n;
|
|
105
104
|
props: any;
|
|
106
105
|
emit: (event: "menuSelect" | "schedule-click" | "services-click" | "chatAi-click", ...args: any[]) => void;
|
|
107
106
|
SIDER_DEFAULT_WIDTH: number;
|
|
@@ -130,7 +129,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
130
129
|
handleChatMouseDown: () => void;
|
|
131
130
|
handleChatAiClick: () => void;
|
|
132
131
|
collapsedSider: (collapsed: boolean) => void;
|
|
133
|
-
handleUndo: () => void;
|
|
134
132
|
chatPositionStyle: ComputedRef<{
|
|
135
133
|
left: string;
|
|
136
134
|
top: string;
|
|
@@ -248,31 +246,37 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
248
246
|
logo: DefineComponent<{
|
|
249
247
|
title: {
|
|
250
248
|
type: StringConstructor;
|
|
249
|
+
required: false;
|
|
251
250
|
default: string;
|
|
252
251
|
};
|
|
253
252
|
collapsed: {
|
|
254
253
|
type: BooleanConstructor;
|
|
254
|
+
required: false;
|
|
255
255
|
default: boolean;
|
|
256
256
|
};
|
|
257
257
|
logoUrl: {
|
|
258
258
|
type: StringConstructor;
|
|
259
|
+
required: false;
|
|
259
260
|
default: string;
|
|
260
261
|
};
|
|
261
262
|
}, {
|
|
262
|
-
onImageLoad: () => void;
|
|
263
263
|
imgRef: Ref<any>;
|
|
264
|
-
|
|
264
|
+
showTitle: Ref<boolean>;
|
|
265
|
+
onImageLoad: () => void;
|
|
265
266
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
266
267
|
title: {
|
|
267
268
|
type: StringConstructor;
|
|
269
|
+
required: false;
|
|
268
270
|
default: string;
|
|
269
271
|
};
|
|
270
272
|
collapsed: {
|
|
271
273
|
type: BooleanConstructor;
|
|
274
|
+
required: false;
|
|
272
275
|
default: boolean;
|
|
273
276
|
};
|
|
274
277
|
logoUrl: {
|
|
275
278
|
type: StringConstructor;
|
|
279
|
+
required: false;
|
|
276
280
|
default: string;
|
|
277
281
|
};
|
|
278
282
|
}>>, {
|
|
@@ -406,12 +410,11 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
406
410
|
currentActive: Ref<number>;
|
|
407
411
|
meta: Ref<FirstMenuMeta | undefined>;
|
|
408
412
|
isEffectiveRoutePath: Ref<boolean>;
|
|
413
|
+
customMode: ComputedRef<"vertical" | "inline">;
|
|
409
414
|
firstMenuSelect: (item: ExtendMenu, index: number) => void;
|
|
410
415
|
updateMenuBadgeCount: (firstMenuPath: string, count: number) => void;
|
|
411
416
|
menuSelect: () => void;
|
|
412
|
-
expandedKeys: Ref<(string | number)[]>;
|
|
413
417
|
autoExpandParent: Ref<boolean>;
|
|
414
|
-
checkPath: (node: ExtendMenu, path: string) => boolean;
|
|
415
418
|
getEffectiveSource: (node: ExtendMenu, data: ExtendMenu[]) => void;
|
|
416
419
|
onSelect: (selectedKeys: string[], e: any) => void;
|
|
417
420
|
readonly QIcon: DefineComponent<{
|
|
@@ -1035,7 +1038,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
1035
1038
|
iconToolClick: (type: string) => void;
|
|
1036
1039
|
openChat: () => void;
|
|
1037
1040
|
fetchCustomer: () => void;
|
|
1038
|
-
openChatBi: () => void;
|
|
1039
1041
|
readonly QSymbolIcon: DefineComponent<{
|
|
1040
1042
|
type: {
|
|
1041
1043
|
type: PropType<string>;
|
|
@@ -116,7 +116,6 @@ declare const _sfc_main: DefineComponent<{}, {
|
|
|
116
116
|
iconToolClick: (type: string) => void;
|
|
117
117
|
openChat: () => void;
|
|
118
118
|
fetchCustomer: () => void;
|
|
119
|
-
openChatBi: () => void;
|
|
120
119
|
readonly QSymbolIcon: DefineComponent<{
|
|
121
120
|
type: {
|
|
122
121
|
type: PropType<string>;
|
|
@@ -98,7 +98,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
98
98
|
type: PropType<LayoutConfigType>;
|
|
99
99
|
};
|
|
100
100
|
}, {
|
|
101
|
-
srmI18n: SrmI18n;
|
|
102
101
|
props: any;
|
|
103
102
|
emit: (event: "menuSelect" | "schedule-click" | "services-click" | "chatAi-click", ...args: any[]) => void;
|
|
104
103
|
SIDER_DEFAULT_WIDTH: number;
|
|
@@ -127,7 +126,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
127
126
|
handleChatMouseDown: () => void;
|
|
128
127
|
handleChatAiClick: () => void;
|
|
129
128
|
collapsedSider: (collapsed: boolean) => void;
|
|
130
|
-
handleUndo: () => void;
|
|
131
129
|
chatPositionStyle: ComputedRef<{
|
|
132
130
|
left: string;
|
|
133
131
|
top: string;
|
|
@@ -245,31 +243,37 @@ declare const _sfc_main: DefineComponent<{
|
|
|
245
243
|
logo: DefineComponent<{
|
|
246
244
|
title: {
|
|
247
245
|
type: StringConstructor;
|
|
246
|
+
required: false;
|
|
248
247
|
default: string;
|
|
249
248
|
};
|
|
250
249
|
collapsed: {
|
|
251
250
|
type: BooleanConstructor;
|
|
251
|
+
required: false;
|
|
252
252
|
default: boolean;
|
|
253
253
|
};
|
|
254
254
|
logoUrl: {
|
|
255
255
|
type: StringConstructor;
|
|
256
|
+
required: false;
|
|
256
257
|
default: string;
|
|
257
258
|
};
|
|
258
259
|
}, {
|
|
259
|
-
onImageLoad: () => void;
|
|
260
260
|
imgRef: Ref<any>;
|
|
261
|
-
|
|
261
|
+
showTitle: Ref<boolean>;
|
|
262
|
+
onImageLoad: () => void;
|
|
262
263
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
263
264
|
title: {
|
|
264
265
|
type: StringConstructor;
|
|
266
|
+
required: false;
|
|
265
267
|
default: string;
|
|
266
268
|
};
|
|
267
269
|
collapsed: {
|
|
268
270
|
type: BooleanConstructor;
|
|
271
|
+
required: false;
|
|
269
272
|
default: boolean;
|
|
270
273
|
};
|
|
271
274
|
logoUrl: {
|
|
272
275
|
type: StringConstructor;
|
|
276
|
+
required: false;
|
|
273
277
|
default: string;
|
|
274
278
|
};
|
|
275
279
|
}>>, {
|
|
@@ -403,12 +407,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
403
407
|
currentActive: Ref<number>;
|
|
404
408
|
meta: Ref<FirstMenuMeta | undefined>;
|
|
405
409
|
isEffectiveRoutePath: Ref<boolean>;
|
|
410
|
+
customMode: ComputedRef<"vertical" | "inline">;
|
|
406
411
|
firstMenuSelect: (item: ExtendMenu, index: number) => void;
|
|
407
412
|
updateMenuBadgeCount: (firstMenuPath: string, count: number) => void;
|
|
408
413
|
menuSelect: () => void;
|
|
409
|
-
expandedKeys: Ref<(string | number)[]>;
|
|
410
414
|
autoExpandParent: Ref<boolean>;
|
|
411
|
-
checkPath: (node: ExtendMenu, path: string) => boolean;
|
|
412
415
|
getEffectiveSource: (node: ExtendMenu, data: ExtendMenu[]) => void;
|
|
413
416
|
onSelect: (selectedKeys: string[], e: any) => void;
|
|
414
417
|
readonly QIcon: DefineComponent<{
|
|
@@ -1032,7 +1035,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
1032
1035
|
iconToolClick: (type: string) => void;
|
|
1033
1036
|
openChat: () => void;
|
|
1034
1037
|
fetchCustomer: () => void;
|
|
1035
|
-
openChatBi: () => void;
|
|
1036
1038
|
readonly QSymbolIcon: DefineComponent<{
|
|
1037
1039
|
type: {
|
|
1038
1040
|
type: PropType<string>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { SrmI18n } from '../../../../utils/type';
|
|
2
|
-
import type { DefineComponent, Ref,
|
|
2
|
+
import type { DefineComponent, Ref, ComputedRef, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
3
3
|
import type { Menu, SelectedMemu, ExtendMenu, FirstMenuMeta, RouterPropsType } from '../types';
|
|
4
4
|
declare const _sfc_main: DefineComponent<{
|
|
5
5
|
globalStyleSettingsMenuPattern: {
|
|
@@ -127,12 +127,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
127
127
|
currentActive: Ref<number>;
|
|
128
128
|
meta: Ref<FirstMenuMeta | undefined>;
|
|
129
129
|
isEffectiveRoutePath: Ref<boolean>;
|
|
130
|
+
customMode: ComputedRef<"vertical" | "inline">;
|
|
130
131
|
firstMenuSelect: (item: ExtendMenu, index: number) => void;
|
|
131
132
|
updateMenuBadgeCount: (firstMenuPath: string, count: number) => void;
|
|
132
133
|
menuSelect: () => void;
|
|
133
|
-
expandedKeys: Ref<(string | number)[]>;
|
|
134
134
|
autoExpandParent: Ref<boolean>;
|
|
135
|
-
checkPath: (node: ExtendMenu, path: string) => boolean;
|
|
136
135
|
getEffectiveSource: (node: ExtendMenu, data: ExtendMenu[]) => void;
|
|
137
136
|
onSelect: (selectedKeys: string[], e: any) => void;
|
|
138
137
|
readonly QIcon: DefineComponent<{
|
|
@@ -111,31 +111,37 @@ declare const _sfc_main: DefineComponent<{
|
|
|
111
111
|
logo: DefineComponent<{
|
|
112
112
|
title: {
|
|
113
113
|
type: StringConstructor;
|
|
114
|
+
required: false;
|
|
114
115
|
default: string;
|
|
115
116
|
};
|
|
116
117
|
collapsed: {
|
|
117
118
|
type: BooleanConstructor;
|
|
119
|
+
required: false;
|
|
118
120
|
default: boolean;
|
|
119
121
|
};
|
|
120
122
|
logoUrl: {
|
|
121
123
|
type: StringConstructor;
|
|
124
|
+
required: false;
|
|
122
125
|
default: string;
|
|
123
126
|
};
|
|
124
127
|
}, {
|
|
125
|
-
onImageLoad: () => void;
|
|
126
128
|
imgRef: Ref<any>;
|
|
127
|
-
|
|
129
|
+
showTitle: Ref<boolean>;
|
|
130
|
+
onImageLoad: () => void;
|
|
128
131
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
129
132
|
title: {
|
|
130
133
|
type: StringConstructor;
|
|
134
|
+
required: false;
|
|
131
135
|
default: string;
|
|
132
136
|
};
|
|
133
137
|
collapsed: {
|
|
134
138
|
type: BooleanConstructor;
|
|
139
|
+
required: false;
|
|
135
140
|
default: boolean;
|
|
136
141
|
};
|
|
137
142
|
logoUrl: {
|
|
138
143
|
type: StringConstructor;
|
|
144
|
+
required: false;
|
|
139
145
|
default: string;
|
|
140
146
|
};
|
|
141
147
|
}>>, {
|
|
@@ -269,12 +275,11 @@ declare const _sfc_main: DefineComponent<{
|
|
|
269
275
|
currentActive: Ref<number>;
|
|
270
276
|
meta: Ref<FirstMenuMeta | undefined>;
|
|
271
277
|
isEffectiveRoutePath: Ref<boolean>;
|
|
278
|
+
customMode: ComputedRef<"vertical" | "inline">;
|
|
272
279
|
firstMenuSelect: (item: ExtendMenu, index: number) => void;
|
|
273
280
|
updateMenuBadgeCount: (firstMenuPath: string, count: number) => void;
|
|
274
281
|
menuSelect: () => void;
|
|
275
|
-
expandedKeys: Ref<(string | number)[]>;
|
|
276
282
|
autoExpandParent: Ref<boolean>;
|
|
277
|
-
checkPath: (node: ExtendMenu, path: string) => boolean;
|
|
278
283
|
getEffectiveSource: (node: ExtendMenu, data: ExtendMenu[]) => void;
|
|
279
284
|
onSelect: (selectedKeys: string[], e: any) => void;
|
|
280
285
|
readonly QIcon: DefineComponent<{
|
|
@@ -2,31 +2,37 @@ import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedCo
|
|
|
2
2
|
declare const _sfc_main: DefineComponent<{
|
|
3
3
|
title: {
|
|
4
4
|
type: StringConstructor;
|
|
5
|
+
required: false;
|
|
5
6
|
default: string;
|
|
6
7
|
};
|
|
7
8
|
collapsed: {
|
|
8
9
|
type: BooleanConstructor;
|
|
10
|
+
required: false;
|
|
9
11
|
default: boolean;
|
|
10
12
|
};
|
|
11
13
|
logoUrl: {
|
|
12
14
|
type: StringConstructor;
|
|
15
|
+
required: false;
|
|
13
16
|
default: string;
|
|
14
17
|
};
|
|
15
18
|
}, {
|
|
16
|
-
onImageLoad: () => void;
|
|
17
19
|
imgRef: Ref<any>;
|
|
18
|
-
|
|
20
|
+
showTitle: Ref<boolean>;
|
|
21
|
+
onImageLoad: () => void;
|
|
19
22
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
20
23
|
title: {
|
|
21
24
|
type: StringConstructor;
|
|
25
|
+
required: false;
|
|
22
26
|
default: string;
|
|
23
27
|
};
|
|
24
28
|
collapsed: {
|
|
25
29
|
type: BooleanConstructor;
|
|
30
|
+
required: false;
|
|
26
31
|
default: boolean;
|
|
27
32
|
};
|
|
28
33
|
logoUrl: {
|
|
29
34
|
type: StringConstructor;
|
|
35
|
+
required: false;
|
|
30
36
|
default: string;
|
|
31
37
|
};
|
|
32
38
|
}>>, {
|
|
@@ -290,6 +290,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
290
290
|
}[];
|
|
291
291
|
superQuery: ObjectMap;
|
|
292
292
|
} | undefined;
|
|
293
|
+
chatBiBusinessType?: string | undefined;
|
|
293
294
|
};
|
|
294
295
|
beforeHandleData?: ((column: GridColumn[]) => void) | undefined;
|
|
295
296
|
afterHandleData?: ((tableData: ObjectMap[]) => void) | undefined;
|
|
@@ -311,6 +312,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
311
312
|
importSuccess: () => void;
|
|
312
313
|
columnSettingRef: Ref<any>;
|
|
313
314
|
helpTextModalRef: Ref<any>;
|
|
315
|
+
chatBiModalRef: Ref<any>;
|
|
314
316
|
addModalRef: Ref<any>;
|
|
315
317
|
recordModalRef: Ref<any>;
|
|
316
318
|
editNavModalRef: Ref<any>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { SrmI18n } from '../../../../../../utils/type';
|
|
2
|
+
import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
3
|
+
import { ButtonItem } from '../../../list-page-layout-types';
|
|
4
|
+
declare const _sfc_main: DefineComponent<{}, {
|
|
5
|
+
srmI18n: SrmI18n;
|
|
6
|
+
visible: Ref<boolean>;
|
|
7
|
+
biUrl: Ref<string>;
|
|
8
|
+
open: (button: ButtonItem, url: string) => void;
|
|
9
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
10
|
+
export default _sfc_main;
|
|
@@ -10,10 +10,10 @@ declare const _sfc_main: DefineComponent<{}, {
|
|
|
10
10
|
open: (columnCode: string) => void;
|
|
11
11
|
close: typeof close;
|
|
12
12
|
setFrozenColumn<T extends GridColumn>(listArry: T[]): T[];
|
|
13
|
-
getColumnsList(columnCode: string):
|
|
13
|
+
getColumnsList(columnCode: string): Promise<string>;
|
|
14
14
|
getFieldColorsData(item: any): void;
|
|
15
15
|
showDrawer(row: any): void;
|
|
16
|
-
reset(): void
|
|
16
|
+
reset(): Promise<void>;
|
|
17
17
|
selectedOk(): void;
|
|
18
18
|
drawerVisible: Ref<boolean>;
|
|
19
19
|
selectedRow: Ref<{
|
|
@@ -10,6 +10,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
10
10
|
type: PropType<ToolsConfig>;
|
|
11
11
|
default: () => {};
|
|
12
12
|
};
|
|
13
|
+
pageData: {
|
|
14
|
+
type: ObjectConstructor;
|
|
15
|
+
default: () => {};
|
|
16
|
+
};
|
|
13
17
|
}, {
|
|
14
18
|
handleClick: (btn: ButtonItem) => void;
|
|
15
19
|
showHandle: (item: any) => boolean;
|
|
@@ -28,7 +32,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
28
32
|
type: PropType<ToolsConfig>;
|
|
29
33
|
default: () => {};
|
|
30
34
|
};
|
|
35
|
+
pageData: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
default: () => {};
|
|
38
|
+
};
|
|
31
39
|
}>>, {
|
|
40
|
+
pageData: Record<string, any>;
|
|
32
41
|
buttonConfig: ButtonConfig;
|
|
33
42
|
toolsConfig: ToolsConfig;
|
|
34
43
|
}, {}>;
|
|
@@ -283,6 +283,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
283
283
|
}[];
|
|
284
284
|
superQuery: ObjectMap;
|
|
285
285
|
} | undefined;
|
|
286
|
+
chatBiBusinessType?: string | undefined;
|
|
286
287
|
};
|
|
287
288
|
beforeHandleData?: ((column: GridColumn[]) => void) | undefined;
|
|
288
289
|
afterHandleData?: ((tableData: ObjectMap[]) => void) | undefined;
|
|
@@ -304,6 +305,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
304
305
|
importSuccess: () => void;
|
|
305
306
|
columnSettingRef: Ref<any>;
|
|
306
307
|
helpTextModalRef: Ref<any>;
|
|
308
|
+
chatBiModalRef: Ref<any>;
|
|
307
309
|
addModalRef: Ref<any>;
|
|
308
310
|
recordModalRef: Ref<any>;
|
|
309
311
|
editNavModalRef: Ref<any>;
|
|
@@ -9,4 +9,5 @@ export declare const SYMBOL_HANDLE_HELP_TEXT: unique symbol;
|
|
|
9
9
|
export declare const SYMBOL_HANDLE_ATTACHMENT_TEXT: unique symbol;
|
|
10
10
|
export declare const SYMBOL_HANDLE_VIDEO_TEXT: unique symbol;
|
|
11
11
|
export declare const SYMBOL_HANDLE_MERGE_GRID: unique symbol;
|
|
12
|
+
export declare const SYMBOL_HANDLE_CHATBI: unique symbol;
|
|
12
13
|
export declare const SYMBOL_FETCH_NAV_DATA: unique symbol;
|
|
@@ -21,6 +21,7 @@ declare const _default: SFCWithInstall<DefineComponent<Readonly<ComponentPropsOp
|
|
|
21
21
|
layoutConfig: Ref<LayoutConfig>;
|
|
22
22
|
pageData: Ref<RecordString>;
|
|
23
23
|
loading: Ref<boolean>;
|
|
24
|
+
isFinishConfig: Ref<boolean>;
|
|
24
25
|
layoutLoading: Ref<boolean>;
|
|
25
26
|
customLoading: Readonly<Ref<boolean>>;
|
|
26
27
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, readonly string[] | Readonly<ExtractPropTypes<Readonly<ComponentObjectPropsOptions<{
|
|
@@ -10,6 +10,7 @@ declare const _sfc_main: DefineComponent<Readonly<ComponentPropsOptions<{
|
|
|
10
10
|
layoutConfig: Ref<LayoutConfig>;
|
|
11
11
|
pageData: Ref<RecordString>;
|
|
12
12
|
loading: Ref<boolean>;
|
|
13
|
+
isFinishConfig: Ref<boolean>;
|
|
13
14
|
layoutLoading: Ref<boolean>;
|
|
14
15
|
customLoading: Readonly<Ref<boolean>>;
|
|
15
16
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, readonly string[] | Readonly<ExtractPropTypes<Readonly<ComponentObjectPropsOptions<{
|
|
@@ -96,8 +96,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
96
96
|
readonly value: string;
|
|
97
97
|
readonly options: Option[];
|
|
98
98
|
readonly 'onUpdate:value': ((value: string) => void) | ((value: string) => void)[];
|
|
99
|
-
readonly required: "0" | "1";
|
|
100
99
|
readonly dictCode: string;
|
|
100
|
+
readonly required: "0" | "1";
|
|
101
101
|
readonly isLayout: boolean;
|
|
102
102
|
readonly colSpan: string;
|
|
103
103
|
}, {}>>;
|
|
@@ -92,8 +92,8 @@ declare const _sfc_main: DefineComponent<{
|
|
|
92
92
|
readonly value: string;
|
|
93
93
|
readonly options: Option[];
|
|
94
94
|
readonly 'onUpdate:value': ((value: string) => void) | ((value: string) => void)[];
|
|
95
|
-
readonly required: "0" | "1";
|
|
96
95
|
readonly dictCode: string;
|
|
96
|
+
readonly required: "0" | "1";
|
|
97
97
|
readonly isLayout: boolean;
|
|
98
98
|
readonly colSpan: string;
|
|
99
99
|
}, {}>;
|
|
@@ -49,6 +49,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
49
49
|
children?: unknown[] | undefined;
|
|
50
50
|
label: string;
|
|
51
51
|
}[]>;
|
|
52
|
+
dictCode: Ref<string>;
|
|
52
53
|
onChange: (value: string | string[], options: SelectOption | SelectOption[]) => void;
|
|
53
54
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
54
55
|
readonly value: {
|
|
@@ -45,6 +45,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
45
45
|
children?: unknown[] | undefined;
|
|
46
46
|
label: string;
|
|
47
47
|
}[]>;
|
|
48
|
+
dictCode: Ref<string>;
|
|
48
49
|
onChange: (value: string | string[], options: SelectOption | SelectOption[]) => void;
|
|
49
50
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
50
51
|
readonly value: {
|
|
@@ -56,13 +56,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
56
56
|
placeholder: string;
|
|
57
57
|
multiple: boolean;
|
|
58
58
|
options: Ref<{
|
|
59
|
-
|
|
59
|
+
label: string;
|
|
60
60
|
title: string;
|
|
61
61
|
value: string;
|
|
62
62
|
id: string;
|
|
63
63
|
textI18nKey: string;
|
|
64
64
|
children?: unknown[] | undefined;
|
|
65
|
-
label: string;
|
|
66
65
|
}[]>;
|
|
67
66
|
onChange: ({ value }: {
|
|
68
67
|
value: string | string[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
|
-
import type {
|
|
2
|
+
import type { SelectOption, VxeSelectProps } from './vxe-select-types';
|
|
3
3
|
declare const _sfc_main: DefineComponent<{
|
|
4
4
|
readonly modelValue: {
|
|
5
5
|
readonly type: StringConstructor;
|
|
@@ -52,13 +52,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
52
52
|
placeholder: string;
|
|
53
53
|
multiple: boolean;
|
|
54
54
|
options: Ref<{
|
|
55
|
-
|
|
55
|
+
label: string;
|
|
56
56
|
title: string;
|
|
57
57
|
value: string;
|
|
58
58
|
id: string;
|
|
59
59
|
textI18nKey: string;
|
|
60
60
|
children?: unknown[] | undefined;
|
|
61
|
-
label: string;
|
|
62
61
|
}[]>;
|
|
63
62
|
onChange: ({ value }: {
|
|
64
63
|
value: string | string[];
|
|
@@ -4,7 +4,7 @@ import { SYMBOL_BINDFUNCTION, SYMBOL_CUSTOM_BINDFUNCTION, SYMBOL_VXE_BINDFUNCTIO
|
|
|
4
4
|
import type { RecordString, BindFunctionEvent, VxeBindFunctionEvent, PageButton, PageButtonWithGroupCode, PageButtonDeleteRow, PageButtonDownLoad, ValidateResult, LinkClickCallbackParams, FormFieldsItem, PageButtonDeleteFileRow, KeydownEventParams, FlowApprovalCallbackPayload } from '../../lib/components/edit-page-layout';
|
|
5
5
|
import type { ButtonItem, ObjectMap, ToolsButtonItem } from '../../lib/components/list-page-layout';
|
|
6
6
|
import type { VxeItemFileUpload } from '../../lib/components/upload-file';
|
|
7
|
-
import { SYMBOL_GRID_INSTANCE, SYMBOL_HANDLE_SETTING, SYMBOL_HANDLE_ADD, SYMBOL_HANDLE_EXPORT, SYMBOL_HANDLE_IMPORT, SYMBOL_HANDLE_QUICK_NAV, SYMBOL_HANDLE_RECORD, SYMBOL_HANDLE_HELP_TEXT, SYMBOL_HANDLE_ATTACHMENT_TEXT, SYMBOL_HANDLE_VIDEO_TEXT, SYMBOL_HANDLE_MERGE_GRID, SYMBOL_FETCH_NAV_DATA } from '../components/list-page-layout/src/symbol';
|
|
7
|
+
import { SYMBOL_GRID_INSTANCE, SYMBOL_HANDLE_SETTING, SYMBOL_HANDLE_ADD, SYMBOL_HANDLE_EXPORT, SYMBOL_HANDLE_IMPORT, SYMBOL_HANDLE_QUICK_NAV, SYMBOL_HANDLE_RECORD, SYMBOL_HANDLE_HELP_TEXT, SYMBOL_HANDLE_ATTACHMENT_TEXT, SYMBOL_HANDLE_VIDEO_TEXT, SYMBOL_HANDLE_MERGE_GRID, SYMBOL_HANDLE_CHATBI, SYMBOL_FETCH_NAV_DATA } from '../components/list-page-layout/src/symbol';
|
|
8
8
|
export type Events = {
|
|
9
9
|
[SYMBOL_BINDFUNCTION]: BindFunctionEvent;
|
|
10
10
|
[SYMBOL_CUSTOM_BINDFUNCTION]: BindFunctionEvent;
|
|
@@ -38,6 +38,7 @@ export type Events = {
|
|
|
38
38
|
[SYMBOL_HANDLE_ATTACHMENT_TEXT]: ButtonItem;
|
|
39
39
|
[SYMBOL_HANDLE_VIDEO_TEXT]: ButtonItem;
|
|
40
40
|
[SYMBOL_HANDLE_MERGE_GRID]: ToolsButtonItem;
|
|
41
|
+
[SYMBOL_HANDLE_CHATBI]: ToolsButtonItem;
|
|
41
42
|
[SYMBOL_HANDLE_RECORD]: ObjectMap;
|
|
42
43
|
[SYMBOL_HANDLE_QUICK_NAV]: string | number | undefined;
|
|
43
44
|
[SYMBOL_FETCH_NAV_DATA]: string | number | undefined;
|