@qqt-product/ui 16.0.7 → 16.0.9
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 +5518 -5509
- package/dist/index.umd.js +76 -76
- 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/select/index.d.ts +2 -3
- package/dist/lib/components/select/src/select.vue.d.ts +2 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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;
|