@qqt-product/ui 12.0.6 → 12.0.8
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 +21574 -21662
- package/dist/index.umd.js +107 -107
- package/dist/lib/components/currency/src/use-methods.d.ts +0 -7
- package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +0 -2
- package/dist/lib/components/field-select-modal/index.d.ts +2 -5
- package/dist/lib/components/field-select-modal/src/field-select-modal-types.d.ts +0 -3
- package/dist/lib/components/field-select-modal/src/field-select-modal.vue.d.ts +2 -5
- package/dist/lib/components/layout/index.d.ts +3 -56
- package/dist/lib/components/layout/src/index.vue.d.ts +3 -56
- package/dist/lib/components/layout/src/sider/index.vue.d.ts +1 -5
- package/dist/lib/components/layout/src/sider/logo.vue.d.ts +2 -6
- package/dist/lib/components/layout/src/types.d.ts +0 -1
- package/dist/lib/components/select-modal/index.d.ts +3 -9
- package/dist/lib/components/select-modal/src/select-modal-types.d.ts +0 -2
- package/dist/lib/components/select-modal/src/select-modal.vue.d.ts +3 -9
- package/dist/style.css +1 -1
- package/package.json +8 -8
|
@@ -134,7 +134,6 @@ export interface PageButtonDeleteFileRow extends Omit<PageButton, 'args'> {
|
|
|
134
134
|
};
|
|
135
135
|
groupCode: string;
|
|
136
136
|
ids: string[];
|
|
137
|
-
attachmentIds?: string[];
|
|
138
137
|
rows: RecordString[];
|
|
139
138
|
}
|
|
140
139
|
export type ValidateStatus = 'success' | 'fail' | 'unset';
|
|
@@ -344,7 +343,6 @@ export type VxePayload = {
|
|
|
344
343
|
setItemRequiredOrDisabled?: SetItemRequiredOrDisabled;
|
|
345
344
|
Decimal?: typeof Decimal;
|
|
346
345
|
topEmit?: () => void;
|
|
347
|
-
selectedOptions?: CascaderProps['options'];
|
|
348
346
|
};
|
|
349
347
|
export interface UploadExtend {
|
|
350
348
|
businessType?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { SrmI18n } from '../../utils/type';
|
|
2
2
|
import type { VxeTableProps, VxeTableDataRow, VxeGridInstance } from 'vxe-table';
|
|
3
3
|
import type { RequestMethod, ModalConfig, ModalType, OpenFuncType, TablePage } from './src/field-select-modal-types';
|
|
4
|
-
import type { DefineComponent, PropType, ComputedRef, Ref,
|
|
4
|
+
import type { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
5
5
|
import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
|
|
6
6
|
import QFieldSelectModal from './src/field-select-modal.vue';
|
|
7
7
|
export * from './src/field-select-modal-types';
|
|
@@ -100,7 +100,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
100
100
|
getPagerConfig: ComputedRef<any>;
|
|
101
101
|
modalTitle: Ref<string>;
|
|
102
102
|
placeholder: Ref<string>;
|
|
103
|
-
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm
|
|
103
|
+
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
|
|
104
104
|
close: () => void;
|
|
105
105
|
onSearch: () => void;
|
|
106
106
|
handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
|
|
@@ -113,9 +113,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
113
113
|
type: string;
|
|
114
114
|
}) => Promise<never> | undefined;
|
|
115
115
|
restParams: () => void;
|
|
116
|
-
isShowCheckItem: ShallowRef<boolean>;
|
|
117
|
-
checktableData: Ref<Record<string, unknown>[]>;
|
|
118
|
-
onCheckboxChange: () => void;
|
|
119
116
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
120
117
|
modalTitle: {
|
|
121
118
|
type: StringConstructor;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { SrmI18n } from '../../../utils/type';
|
|
2
|
-
import type { DefineComponent, PropType, Ref,
|
|
2
|
+
import type { DefineComponent, PropType, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComputedRef } from 'vue';
|
|
3
3
|
import type { RequestMethod, ModalConfig, ModalType, OpenFuncType, TablePage } from './field-select-modal-types';
|
|
4
4
|
import type { VxeTableProps, VxeTableDataRow, VxeGridInstance } from 'vxe-table';
|
|
5
5
|
declare const _sfc_main: DefineComponent<{
|
|
@@ -96,7 +96,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
96
96
|
getPagerConfig: ComputedRef<any>;
|
|
97
97
|
modalTitle: Ref<string>;
|
|
98
98
|
placeholder: Ref<string>;
|
|
99
|
-
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm
|
|
99
|
+
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
|
|
100
100
|
close: () => void;
|
|
101
101
|
onSearch: () => void;
|
|
102
102
|
handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
|
|
@@ -109,9 +109,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
109
109
|
type: string;
|
|
110
110
|
}) => Promise<never> | undefined;
|
|
111
111
|
restParams: () => void;
|
|
112
|
-
isShowCheckItem: ShallowRef<boolean>;
|
|
113
|
-
checktableData: Ref<Record<string, unknown>[]>;
|
|
114
|
-
onCheckboxChange: () => void;
|
|
115
112
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
116
113
|
modalTitle: {
|
|
117
114
|
type: StringConstructor;
|
|
@@ -103,7 +103,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
103
103
|
}, {
|
|
104
104
|
srmI18n: SrmI18n;
|
|
105
105
|
props: any;
|
|
106
|
-
emit: (event: "menuSelect" | "schedule-click" | "services-click"
|
|
106
|
+
emit: (event: "menuSelect" | "schedule-click" | "services-click", ...args: any[]) => void;
|
|
107
107
|
SIDER_DEFAULT_WIDTH: number;
|
|
108
108
|
SIDER_DEFAULT_WIDTH_STORE_STRING: string | null;
|
|
109
109
|
SIDER_DEFAULT_WIDTH_STORE_VALUE: string;
|
|
@@ -111,10 +111,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
111
111
|
siderWidth: Ref<number>;
|
|
112
112
|
tagDragging: Ref<boolean>;
|
|
113
113
|
lineLeft: Ref<number>;
|
|
114
|
-
chatDragging: Ref<boolean>;
|
|
115
|
-
chatDraggingPositionX: Ref<number>;
|
|
116
|
-
chatDraggingPositionY: Ref<number | null>;
|
|
117
|
-
showAiKnowledgeBase: Ref<boolean>;
|
|
118
114
|
secondMenuShow: Ref<boolean>;
|
|
119
115
|
siderRef: Ref<any>;
|
|
120
116
|
menuSelect: (obj: any) => void;
|
|
@@ -126,19 +122,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
126
122
|
updateMenuShow: (flag: boolean) => void;
|
|
127
123
|
handleMouseDown: (event: MouseEvent) => void;
|
|
128
124
|
handleMouseMove: (event: MouseEvent) => void;
|
|
129
|
-
handleChatMouseDown: () => void;
|
|
130
|
-
handleChatAiClick: () => void;
|
|
131
125
|
collapsedSider: (collapsed: boolean) => void;
|
|
132
126
|
handleUndo: () => void;
|
|
133
|
-
chatPositionStyle: ComputedRef<{
|
|
134
|
-
left: string;
|
|
135
|
-
top: string;
|
|
136
|
-
right?: undefined;
|
|
137
|
-
} | {
|
|
138
|
-
right: string;
|
|
139
|
-
top: string;
|
|
140
|
-
left?: undefined;
|
|
141
|
-
}>;
|
|
142
127
|
QLayoutSider: DefineComponent<{
|
|
143
128
|
siderWidth: {
|
|
144
129
|
type: NumberConstructor;
|
|
@@ -253,11 +238,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
253
238
|
type: StringConstructor;
|
|
254
239
|
default: string;
|
|
255
240
|
};
|
|
256
|
-
}, {
|
|
257
|
-
onImageLoad: () => void;
|
|
258
|
-
imgRef: Ref<any>;
|
|
259
|
-
shouldHide: Ref<boolean>;
|
|
260
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
241
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
261
242
|
title: {
|
|
262
243
|
type: StringConstructor;
|
|
263
244
|
default: string;
|
|
@@ -1022,40 +1003,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
1022
1003
|
}, {}, {}>;
|
|
1023
1004
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
1024
1005
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
1025
|
-
|
|
1026
|
-
type: {
|
|
1027
|
-
type: PropType<string>;
|
|
1028
|
-
default: string;
|
|
1029
|
-
};
|
|
1030
|
-
size: {
|
|
1031
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1032
|
-
};
|
|
1033
|
-
color: {
|
|
1034
|
-
type: StringConstructor;
|
|
1035
|
-
};
|
|
1036
|
-
}, {
|
|
1037
|
-
fontSize: ComputedRef<{
|
|
1038
|
-
fontSize: string;
|
|
1039
|
-
}>;
|
|
1040
|
-
iconType: ComputedRef<string>;
|
|
1041
|
-
iconColor: ComputedRef<{
|
|
1042
|
-
color: string;
|
|
1043
|
-
}>;
|
|
1044
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1045
|
-
type: {
|
|
1046
|
-
type: PropType<string>;
|
|
1047
|
-
default: string;
|
|
1048
|
-
};
|
|
1049
|
-
size: {
|
|
1050
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1051
|
-
};
|
|
1052
|
-
color: {
|
|
1053
|
-
type: StringConstructor;
|
|
1054
|
-
};
|
|
1055
|
-
}>>, {
|
|
1056
|
-
type: string;
|
|
1057
|
-
}, {}>;
|
|
1058
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "schedule-click" | "services-click" | "chatAi-click")[], "menuSelect" | "schedule-click" | "services-click" | "chatAi-click", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1006
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "schedule-click" | "services-click")[], "menuSelect" | "schedule-click" | "services-click", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1059
1007
|
internalOrExternal: {
|
|
1060
1008
|
type: BooleanConstructor;
|
|
1061
1009
|
default: boolean;
|
|
@@ -1148,7 +1096,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
1148
1096
|
onMenuSelect?: ((...args: any[]) => any) | undefined;
|
|
1149
1097
|
"onSchedule-click"?: ((...args: any[]) => any) | undefined;
|
|
1150
1098
|
"onServices-click"?: ((...args: any[]) => any) | undefined;
|
|
1151
|
-
"onChatAi-click"?: ((...args: any[]) => any) | undefined;
|
|
1152
1099
|
}, {
|
|
1153
1100
|
internalOrExternal: boolean;
|
|
1154
1101
|
collapsible: boolean;
|
|
@@ -100,7 +100,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
100
100
|
}, {
|
|
101
101
|
srmI18n: SrmI18n;
|
|
102
102
|
props: any;
|
|
103
|
-
emit: (event: "menuSelect" | "schedule-click" | "services-click"
|
|
103
|
+
emit: (event: "menuSelect" | "schedule-click" | "services-click", ...args: any[]) => void;
|
|
104
104
|
SIDER_DEFAULT_WIDTH: number;
|
|
105
105
|
SIDER_DEFAULT_WIDTH_STORE_STRING: string | null;
|
|
106
106
|
SIDER_DEFAULT_WIDTH_STORE_VALUE: string;
|
|
@@ -108,10 +108,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
108
108
|
siderWidth: Ref<number>;
|
|
109
109
|
tagDragging: Ref<boolean>;
|
|
110
110
|
lineLeft: Ref<number>;
|
|
111
|
-
chatDragging: Ref<boolean>;
|
|
112
|
-
chatDraggingPositionX: Ref<number>;
|
|
113
|
-
chatDraggingPositionY: Ref<number | null>;
|
|
114
|
-
showAiKnowledgeBase: Ref<boolean>;
|
|
115
111
|
secondMenuShow: Ref<boolean>;
|
|
116
112
|
siderRef: Ref<any>;
|
|
117
113
|
menuSelect: (obj: any) => void;
|
|
@@ -123,19 +119,8 @@ declare const _sfc_main: DefineComponent<{
|
|
|
123
119
|
updateMenuShow: (flag: boolean) => void;
|
|
124
120
|
handleMouseDown: (event: MouseEvent) => void;
|
|
125
121
|
handleMouseMove: (event: MouseEvent) => void;
|
|
126
|
-
handleChatMouseDown: () => void;
|
|
127
|
-
handleChatAiClick: () => void;
|
|
128
122
|
collapsedSider: (collapsed: boolean) => void;
|
|
129
123
|
handleUndo: () => void;
|
|
130
|
-
chatPositionStyle: ComputedRef<{
|
|
131
|
-
left: string;
|
|
132
|
-
top: string;
|
|
133
|
-
right?: undefined;
|
|
134
|
-
} | {
|
|
135
|
-
right: string;
|
|
136
|
-
top: string;
|
|
137
|
-
left?: undefined;
|
|
138
|
-
}>;
|
|
139
124
|
QLayoutSider: DefineComponent<{
|
|
140
125
|
siderWidth: {
|
|
141
126
|
type: NumberConstructor;
|
|
@@ -250,11 +235,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
250
235
|
type: StringConstructor;
|
|
251
236
|
default: string;
|
|
252
237
|
};
|
|
253
|
-
}, {
|
|
254
|
-
onImageLoad: () => void;
|
|
255
|
-
imgRef: Ref<any>;
|
|
256
|
-
shouldHide: Ref<boolean>;
|
|
257
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
238
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
258
239
|
title: {
|
|
259
240
|
type: StringConstructor;
|
|
260
241
|
default: string;
|
|
@@ -1019,40 +1000,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
1019
1000
|
}, {}, {}>;
|
|
1020
1001
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
1021
1002
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
1022
|
-
|
|
1023
|
-
type: {
|
|
1024
|
-
type: PropType<string>;
|
|
1025
|
-
default: string;
|
|
1026
|
-
};
|
|
1027
|
-
size: {
|
|
1028
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1029
|
-
};
|
|
1030
|
-
color: {
|
|
1031
|
-
type: StringConstructor;
|
|
1032
|
-
};
|
|
1033
|
-
}, {
|
|
1034
|
-
fontSize: ComputedRef<{
|
|
1035
|
-
fontSize: string;
|
|
1036
|
-
}>;
|
|
1037
|
-
iconType: ComputedRef<string>;
|
|
1038
|
-
iconColor: ComputedRef<{
|
|
1039
|
-
color: string;
|
|
1040
|
-
}>;
|
|
1041
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1042
|
-
type: {
|
|
1043
|
-
type: PropType<string>;
|
|
1044
|
-
default: string;
|
|
1045
|
-
};
|
|
1046
|
-
size: {
|
|
1047
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1048
|
-
};
|
|
1049
|
-
color: {
|
|
1050
|
-
type: StringConstructor;
|
|
1051
|
-
};
|
|
1052
|
-
}>>, {
|
|
1053
|
-
type: string;
|
|
1054
|
-
}, {}>;
|
|
1055
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "schedule-click" | "services-click" | "chatAi-click")[], "menuSelect" | "schedule-click" | "services-click" | "chatAi-click", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1003
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("menuSelect" | "schedule-click" | "services-click")[], "menuSelect" | "schedule-click" | "services-click", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1056
1004
|
internalOrExternal: {
|
|
1057
1005
|
type: BooleanConstructor;
|
|
1058
1006
|
default: boolean;
|
|
@@ -1145,7 +1093,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
1145
1093
|
onMenuSelect?: ((...args: any[]) => any) | undefined;
|
|
1146
1094
|
"onSchedule-click"?: ((...args: any[]) => any) | undefined;
|
|
1147
1095
|
"onServices-click"?: ((...args: any[]) => any) | undefined;
|
|
1148
|
-
"onChatAi-click"?: ((...args: any[]) => any) | undefined;
|
|
1149
1096
|
}, {
|
|
1150
1097
|
internalOrExternal: boolean;
|
|
1151
1098
|
collapsible: boolean;
|
|
@@ -117,11 +117,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
117
117
|
type: StringConstructor;
|
|
118
118
|
default: string;
|
|
119
119
|
};
|
|
120
|
-
}, {
|
|
121
|
-
onImageLoad: () => void;
|
|
122
|
-
imgRef: Ref<any>;
|
|
123
|
-
shouldHide: Ref<boolean>;
|
|
124
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
120
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
125
121
|
title: {
|
|
126
122
|
type: StringConstructor;
|
|
127
123
|
default: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { DefineComponent,
|
|
1
|
+
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
2
2
|
declare const _sfc_main: DefineComponent<{
|
|
3
3
|
title: {
|
|
4
4
|
type: StringConstructor;
|
|
@@ -12,11 +12,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
12
12
|
type: StringConstructor;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
|
-
}, {
|
|
16
|
-
onImageLoad: () => void;
|
|
17
|
-
imgRef: Ref<any>;
|
|
18
|
-
shouldHide: Ref<boolean>;
|
|
19
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
15
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
20
16
|
title: {
|
|
21
17
|
type: StringConstructor;
|
|
22
18
|
default: string;
|
|
@@ -2,7 +2,7 @@ import type { VxeTableProps, VxeTableDataRow, VxeGridInstance } from 'vxe-table'
|
|
|
2
2
|
import type { RequestMethod, ModalConfig, ModalType, OpenFuncType, TablePage } from '../field-select-modal';
|
|
3
3
|
import type { SrmI18n } from '../../utils/type';
|
|
4
4
|
import type { Config, RecordString, Extend } from './src/select-modal-types';
|
|
5
|
-
import type { DefineComponent, PropType, ComputedRef, Ref, ComponentInternalInstance, VNodeRef, VNode, RendererNode, RendererElement, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes,
|
|
5
|
+
import type { DefineComponent, PropType, ComputedRef, Ref, ComponentInternalInstance, VNodeRef, VNode, RendererNode, RendererElement, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
|
|
6
6
|
import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
|
|
7
7
|
import QSelectModal from './src/select-modal.vue';
|
|
8
8
|
export * from './src/select-modal-types';
|
|
@@ -200,7 +200,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
200
200
|
getPagerConfig: ComputedRef<any>;
|
|
201
201
|
modalTitle: Ref<string>;
|
|
202
202
|
placeholder: Ref<string>;
|
|
203
|
-
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm
|
|
203
|
+
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
|
|
204
204
|
close: () => void;
|
|
205
205
|
onSearch: () => void;
|
|
206
206
|
handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
|
|
@@ -213,9 +213,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
213
213
|
type: string;
|
|
214
214
|
}) => Promise<never> | undefined;
|
|
215
215
|
restParams: () => void;
|
|
216
|
-
isShowCheckItem: ShallowRef<boolean>;
|
|
217
|
-
checktableData: Ref<Record<string, unknown>[]>;
|
|
218
|
-
onCheckboxChange: () => void;
|
|
219
216
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
220
217
|
modalTitle: string;
|
|
221
218
|
apiUrls: string;
|
|
@@ -339,7 +336,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
339
336
|
getPagerConfig: ComputedRef<any>;
|
|
340
337
|
modalTitle: Ref<string>;
|
|
341
338
|
placeholder: Ref<string>;
|
|
342
|
-
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm
|
|
339
|
+
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
|
|
343
340
|
close: () => void;
|
|
344
341
|
onSearch: () => void;
|
|
345
342
|
handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
|
|
@@ -352,9 +349,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
352
349
|
type: string;
|
|
353
350
|
}) => Promise<never> | undefined;
|
|
354
351
|
restParams: () => void;
|
|
355
|
-
isShowCheckItem: ShallowRef<boolean>;
|
|
356
|
-
checktableData: Ref<Record<string, unknown>[]>;
|
|
357
|
-
onCheckboxChange: () => void;
|
|
358
352
|
}> & {} & ComponentCustomProperties & {}) | undefined>;
|
|
359
353
|
openSelectModal: () => void;
|
|
360
354
|
onChange: (checkedValues: RecordString[]) => void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { VxeTableProps, VxeTableDataRow, VxeGridInstance } from 'vxe-table';
|
|
2
2
|
import type { RequestMethod, ModalConfig, ModalType, OpenFuncType, TablePage } from './../../field-select-modal';
|
|
3
3
|
import type { SrmI18n } from '../../../utils/type';
|
|
4
|
-
import type { DefineComponent, PropType, Ref, ComponentInternalInstance, VNodeRef, VNode, RendererNode, RendererElement, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes,
|
|
4
|
+
import type { DefineComponent, PropType, Ref, ComponentInternalInstance, VNodeRef, VNode, RendererNode, RendererElement, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef } from 'vue';
|
|
5
5
|
import type { Config, RecordString, Extend } from './select-modal-types';
|
|
6
6
|
declare const _sfc_main: DefineComponent<{
|
|
7
7
|
value: {
|
|
@@ -196,7 +196,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
196
196
|
getPagerConfig: ComputedRef<any>;
|
|
197
197
|
modalTitle: Ref<string>;
|
|
198
198
|
placeholder: Ref<string>;
|
|
199
|
-
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm
|
|
199
|
+
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
|
|
200
200
|
close: () => void;
|
|
201
201
|
onSearch: () => void;
|
|
202
202
|
handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
|
|
@@ -209,9 +209,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
209
209
|
type: string;
|
|
210
210
|
}) => Promise<never> | undefined;
|
|
211
211
|
restParams: () => void;
|
|
212
|
-
isShowCheckItem: ShallowRef<boolean>;
|
|
213
|
-
checktableData: Ref<Record<string, unknown>[]>;
|
|
214
|
-
onCheckboxChange: () => void;
|
|
215
212
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
216
213
|
modalTitle: string;
|
|
217
214
|
apiUrls: string;
|
|
@@ -335,7 +332,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
335
332
|
getPagerConfig: ComputedRef<any>;
|
|
336
333
|
modalTitle: Ref<string>;
|
|
337
334
|
placeholder: Ref<string>;
|
|
338
|
-
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm
|
|
335
|
+
open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
|
|
339
336
|
close: () => void;
|
|
340
337
|
onSearch: () => void;
|
|
341
338
|
handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
|
|
@@ -348,9 +345,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
348
345
|
type: string;
|
|
349
346
|
}) => Promise<never> | undefined;
|
|
350
347
|
restParams: () => void;
|
|
351
|
-
isShowCheckItem: ShallowRef<boolean>;
|
|
352
|
-
checktableData: Ref<Record<string, unknown>[]>;
|
|
353
|
-
onCheckboxChange: () => void;
|
|
354
348
|
}> & {} & ComponentCustomProperties & {}) | undefined>;
|
|
355
349
|
openSelectModal: () => void;
|
|
356
350
|
onChange: (checkedValues: RecordString[]) => void;
|