@qqt-product/ui 16.0.1 → 16.0.3
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 +30818 -30695
- package/dist/index.umd.js +118 -118
- package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +4 -0
- package/dist/lib/components/layout/index.d.ts +1 -0
- package/dist/lib/components/layout/src/index.vue.d.ts +1 -0
- package/dist/lib/components/layout/src/sider/index.vue.d.ts +1 -0
- package/dist/lib/components/layout/src/sider/logo.vue.d.ts +1 -0
- package/dist/lib/components/layout/src/types.d.ts +1 -0
- package/dist/lib/components/list-page-layout/index.d.ts +1 -1
- package/dist/lib/components/list-page-layout/src/components/list-header/module/searchExtend/index.vue.d.ts +2 -0
- package/dist/lib/components/list-page-layout/src/layout.vue.d.ts +1 -1
- package/dist/lib/components/list-page-layout/src/list-page-layout-types.d.ts +1 -1
- 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/select/index.d.ts +2 -3
- package/dist/lib/components/select/src/select.vue.d.ts +2 -3
- 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/style.css +1 -1
- package/package.json +1 -1
- package/dist/lib/components/remote-select/index.d.ts +0 -83
- package/dist/lib/components/remote-select/src/remote-select.vue.d.ts +0 -79
|
@@ -361,9 +361,11 @@ export interface FormFieldsItem {
|
|
|
361
361
|
fieldLabel: string;
|
|
362
362
|
fieldName: string;
|
|
363
363
|
helpText?: string;
|
|
364
|
+
disabled?: boolean;
|
|
364
365
|
required?: '0' | '1';
|
|
365
366
|
regex?: RegExp;
|
|
366
367
|
alertMsg?: string;
|
|
368
|
+
options?: RecordString[];
|
|
367
369
|
callback?: (ctx: ComponentInternalInstance | null, payload: Payload) => void;
|
|
368
370
|
[key: string]: unknown;
|
|
369
371
|
}
|
|
@@ -374,9 +376,11 @@ export interface ColumnItem {
|
|
|
374
376
|
field: string;
|
|
375
377
|
fieldType?: string;
|
|
376
378
|
helpText?: string;
|
|
379
|
+
disabled?: boolean;
|
|
377
380
|
required?: '0' | '1';
|
|
378
381
|
regex?: string | RegExp;
|
|
379
382
|
alertMsg?: string;
|
|
383
|
+
options?: RecordString[];
|
|
380
384
|
callback?: (ctx: SetupContext, payload: VxePayload) => void;
|
|
381
385
|
[key: string]: unknown;
|
|
382
386
|
}
|
|
@@ -261,6 +261,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
261
261
|
};
|
|
262
262
|
}, {
|
|
263
263
|
imgRef: Ref<any>;
|
|
264
|
+
showTitle: Ref<boolean>;
|
|
264
265
|
onImageLoad: () => void;
|
|
265
266
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
266
267
|
title: {
|
|
@@ -258,6 +258,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
258
258
|
};
|
|
259
259
|
}, {
|
|
260
260
|
imgRef: Ref<any>;
|
|
261
|
+
showTitle: Ref<boolean>;
|
|
261
262
|
onImageLoad: () => void;
|
|
262
263
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
263
264
|
title: {
|
|
@@ -126,6 +126,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
126
126
|
};
|
|
127
127
|
}, {
|
|
128
128
|
imgRef: Ref<any>;
|
|
129
|
+
showTitle: Ref<boolean>;
|
|
129
130
|
onImageLoad: () => void;
|
|
130
131
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
131
132
|
title: {
|
|
@@ -17,6 +17,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
17
17
|
};
|
|
18
18
|
}, {
|
|
19
19
|
imgRef: Ref<any>;
|
|
20
|
+
showTitle: Ref<boolean>;
|
|
20
21
|
onImageLoad: () => void;
|
|
21
22
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
22
23
|
title: {
|
|
@@ -276,7 +276,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
276
276
|
fieldCode?: string | undefined;
|
|
277
277
|
dictCode?: string | undefined;
|
|
278
278
|
fieldType?: string | undefined;
|
|
279
|
-
fieldValue?:
|
|
279
|
+
fieldValue?: unknown;
|
|
280
280
|
showValue?: string | number | undefined;
|
|
281
281
|
joiner?: string | number | undefined;
|
|
282
282
|
dictTable?: string | number | undefined;
|
|
@@ -75,6 +75,8 @@ declare const _sfc_main: DefineComponent<{
|
|
|
75
75
|
selectValue: Ref<string>;
|
|
76
76
|
selectedKeys: Ref<any>;
|
|
77
77
|
fieldListIndex: Ref<string | number>;
|
|
78
|
+
cacheLogicSymbol: Ref<string | undefined>;
|
|
79
|
+
cacheItem: Ref<QueryParamsItem>;
|
|
78
80
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "callback" | "handleSuperQuery" | "synQueryParams" | "queryParamsModelLength")[], "close" | "callback" | "handleSuperQuery" | "synQueryParams" | "queryParamsModelLength", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
79
81
|
tableCode: {
|
|
80
82
|
type: StringConstructor;
|
|
@@ -269,7 +269,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
269
269
|
fieldCode?: string | undefined;
|
|
270
270
|
dictCode?: string | undefined;
|
|
271
271
|
fieldType?: string | undefined;
|
|
272
|
-
fieldValue?:
|
|
272
|
+
fieldValue?: unknown;
|
|
273
273
|
showValue?: string | number | undefined;
|
|
274
274
|
joiner?: string | number | undefined;
|
|
275
275
|
dictTable?: string | number | undefined;
|
|
@@ -356,7 +356,7 @@ export interface QueryParamsItem {
|
|
|
356
356
|
fieldCode?: string;
|
|
357
357
|
dictCode?: string;
|
|
358
358
|
fieldType?: string;
|
|
359
|
-
fieldValue?: string | number;
|
|
359
|
+
fieldValue?: string | number | unknown;
|
|
360
360
|
showValue?: string | number;
|
|
361
361
|
joiner?: string | number;
|
|
362
362
|
dictTable?: string | number;
|
|
@@ -23,6 +23,7 @@ declare const _default: SFCWithInstall<DefineComponent<Readonly<ComponentPropsOp
|
|
|
23
23
|
pageData: Ref<RecordString>;
|
|
24
24
|
loading: Ref<boolean>;
|
|
25
25
|
layoutLoading: Ref<boolean>;
|
|
26
|
+
isFinishConfig: Ref<boolean>;
|
|
26
27
|
customLoading: Readonly<Ref<boolean>>;
|
|
27
28
|
currentRow: CurrentRow;
|
|
28
29
|
fileVisible: Ref<boolean>;
|
|
@@ -12,6 +12,7 @@ declare const _sfc_main: DefineComponent<Readonly<ComponentPropsOptions<{
|
|
|
12
12
|
pageData: Ref<RecordString>;
|
|
13
13
|
loading: Ref<boolean>;
|
|
14
14
|
layoutLoading: Ref<boolean>;
|
|
15
|
+
isFinishConfig: Ref<boolean>;
|
|
15
16
|
customLoading: Readonly<Ref<boolean>>;
|
|
16
17
|
currentRow: CurrentRow;
|
|
17
18
|
fileVisible: Ref<boolean>;
|
|
@@ -38,16 +38,15 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
38
38
|
classes: ComputedRef<{
|
|
39
39
|
[key: string]: string | boolean;
|
|
40
40
|
}>;
|
|
41
|
-
realValue: Ref<string | string[]
|
|
41
|
+
realValue: Ref<string | string[]>;
|
|
42
42
|
mode: ComputedRef<string>;
|
|
43
43
|
options: Ref<{
|
|
44
|
-
|
|
44
|
+
label: string;
|
|
45
45
|
title: string;
|
|
46
46
|
value: string;
|
|
47
47
|
id: string;
|
|
48
48
|
textI18nKey: string;
|
|
49
49
|
children?: unknown[] | undefined;
|
|
50
|
-
label: string;
|
|
51
50
|
}[]>;
|
|
52
51
|
dictCode: Ref<string>;
|
|
53
52
|
onChange: (value: string | string[], options: SelectOption | SelectOption[]) => void;
|
|
@@ -34,16 +34,15 @@ declare const _sfc_main: DefineComponent<{
|
|
|
34
34
|
classes: ComputedRef<{
|
|
35
35
|
[key: string]: string | boolean;
|
|
36
36
|
}>;
|
|
37
|
-
realValue: Ref<string | string[]
|
|
37
|
+
realValue: Ref<string | string[]>;
|
|
38
38
|
mode: ComputedRef<string>;
|
|
39
39
|
options: Ref<{
|
|
40
|
-
|
|
40
|
+
label: string;
|
|
41
41
|
title: string;
|
|
42
42
|
value: string;
|
|
43
43
|
id: string;
|
|
44
44
|
textI18nKey: string;
|
|
45
45
|
children?: unknown[] | undefined;
|
|
46
|
-
label: string;
|
|
47
46
|
}[]>;
|
|
48
47
|
dictCode: Ref<string>;
|
|
49
48
|
onChange: (value: string | string[], options: SelectOption | SelectOption[]) => void;
|
|
@@ -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[];
|