yc-pro-components 0.0.44 → 0.0.46
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/es/components/display-item/src/index.vue2.mjs +16 -3
- package/es/components/index.d.ts +1 -0
- package/es/components/index.mjs +2 -0
- package/es/components/yc-batch-import-dialog/index.d.ts +167 -0
- package/es/components/yc-batch-import-dialog/index.mjs +13 -0
- package/es/components/yc-batch-import-dialog/src/UploadRecordList.vue.d.ts +45 -0
- package/es/components/yc-batch-import-dialog/src/UploadRecordList.vue.mjs +6 -0
- package/es/components/yc-batch-import-dialog/src/UploadRecordList.vue2.mjs +186 -0
- package/es/components/yc-batch-import-dialog/src/index.vue.d.ts +73 -0
- package/es/components/yc-batch-import-dialog/src/index.vue.mjs +6 -0
- package/es/components/yc-batch-import-dialog/src/index.vue2.mjs +579 -0
- package/es/components/yc-batch-import-dialog/src/types.d.ts +159 -0
- package/es/components/yc-batch-import-dialog/src/types.mjs +1 -0
- package/es/components/yc-drawer/src/index.vue.mjs +1 -1
- package/es/components/yc-drawer/src/index.vue2.mjs +37 -10
- package/es/components/yc-drawer/src/type.d.ts +17 -0
- package/es/components/yc-drawer/store.d.ts +6 -0
- package/es/components/yc-plus-page/src/index.vue.d.ts +210 -26
- package/es/components/yc-plus-page/src/index.vue.mjs +1 -1
- package/es/components/yc-plus-page/src/index.vue2.mjs +96 -8
- package/es/components/yc-plus-page/src/type.d.ts +12 -0
- package/es/dict/createDictStore.d.ts +1 -1
- package/es/index.css +13 -11
- package/es/index.mjs +2 -0
- package/index.css +291 -12
- package/index.js +1215 -325
- package/index.min.css +5 -3
- package/index.min.js +11 -11
- package/index.min.mjs +11 -11
- package/index.mjs +1215 -328
- package/lib/components/display-item/src/index.vue2.js +16 -3
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +5 -0
- package/lib/components/yc-batch-import-dialog/index.d.ts +167 -0
- package/lib/components/yc-batch-import-dialog/index.js +20 -0
- package/lib/components/yc-batch-import-dialog/src/UploadRecordList.vue.d.ts +45 -0
- package/lib/components/yc-batch-import-dialog/src/UploadRecordList.vue.js +10 -0
- package/lib/components/yc-batch-import-dialog/src/UploadRecordList.vue2.js +190 -0
- package/lib/components/yc-batch-import-dialog/src/index.vue.d.ts +73 -0
- package/lib/components/yc-batch-import-dialog/src/index.vue.js +10 -0
- package/lib/components/yc-batch-import-dialog/src/index.vue2.js +583 -0
- package/lib/components/yc-batch-import-dialog/src/types.d.ts +159 -0
- package/lib/components/yc-batch-import-dialog/src/types.js +2 -0
- package/lib/components/yc-drawer/src/index.vue.js +1 -1
- package/lib/components/yc-drawer/src/index.vue2.js +36 -9
- package/lib/components/yc-drawer/src/type.d.ts +17 -0
- package/lib/components/yc-drawer/store.d.ts +6 -0
- package/lib/components/yc-plus-page/src/index.vue.d.ts +210 -26
- package/lib/components/yc-plus-page/src/index.vue.js +1 -1
- package/lib/components/yc-plus-page/src/index.vue2.js +95 -7
- package/lib/components/yc-plus-page/src/type.d.ts +12 -0
- package/lib/dict/createDictStore.d.ts +1 -1
- package/lib/index.css +12 -10
- package/lib/index.js +5 -0
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/ja.js +1 -1
- package/locale/ja.min.js +1 -1
- package/locale/ja.min.mjs +1 -1
- package/locale/ja.mjs +1 -1
- package/locale/ko.js +1 -1
- package/locale/ko.min.js +1 -1
- package/locale/ko.min.mjs +1 -1
- package/locale/ko.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/locale/zh-tw.js +1 -1
- package/locale/zh-tw.min.js +1 -1
- package/locale/zh-tw.min.mjs +1 -1
- package/locale/zh-tw.mjs +1 -1
- package/package.json +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/plus-table.css +1 -1
- package/theme-chalk/plus-yc-plus-page.css +1 -1
- package/theme-chalk/src/table.scss +5 -0
- package/theme-chalk/src/yc-plus-page.scss +46 -0
|
@@ -53,6 +53,16 @@ interface Props {
|
|
|
53
53
|
* @default true(默认隐藏)
|
|
54
54
|
*/
|
|
55
55
|
hideHeaderFilter?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* 列设置本地缓存的唯一标识
|
|
58
|
+
* 不传时会自动根据列配置生成
|
|
59
|
+
*/
|
|
60
|
+
columnCacheKey?: string;
|
|
61
|
+
/**
|
|
62
|
+
* 是否禁用列设置本地缓存
|
|
63
|
+
* @default false(默认启用缓存)
|
|
64
|
+
*/
|
|
65
|
+
disableColumnCache?: boolean;
|
|
56
66
|
}
|
|
57
67
|
declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
58
68
|
isCard: boolean;
|
|
@@ -66,6 +76,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
66
76
|
};
|
|
67
77
|
headerFilter: boolean;
|
|
68
78
|
hideHeaderFilter: boolean;
|
|
79
|
+
columnCacheKey: undefined;
|
|
80
|
+
disableColumnCache: boolean;
|
|
69
81
|
}>, {
|
|
70
82
|
plusPageRef: Ref<({
|
|
71
83
|
$: ComponentInternalInstance;
|
|
@@ -1038,6 +1050,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1038
1050
|
};
|
|
1039
1051
|
$forceUpdate: () => void;
|
|
1040
1052
|
$nextTick: typeof nextTick;
|
|
1053
|
+
/**
|
|
1054
|
+
* 搜索表单显示状态
|
|
1055
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
1056
|
+
*/
|
|
1041
1057
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
1042
1058
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
1043
1059
|
collapseDuration: {
|
|
@@ -1161,7 +1177,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1161
1177
|
index: number;
|
|
1162
1178
|
title: string | ComputedRef<string>;
|
|
1163
1179
|
name?: string | undefined;
|
|
1164
|
-
icon?: Component | undefined;
|
|
1180
|
+
icon?: Component | undefined; /**
|
|
1181
|
+
* 是否禁用列设置本地缓存
|
|
1182
|
+
* @default false(默认启用缓存)
|
|
1183
|
+
*/
|
|
1165
1184
|
cardProps?: Partial< Mutable<CardProps> & {
|
|
1166
1185
|
style?: CSSProperties | undefined;
|
|
1167
1186
|
class?: any;
|
|
@@ -1189,7 +1208,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1189
1208
|
[index: number]: any;
|
|
1190
1209
|
[index: symbol]: any;
|
|
1191
1210
|
class: any;
|
|
1192
|
-
style: CSSProperties;
|
|
1211
|
+
style: CSSProperties;
|
|
1193
1212
|
modelModifiers: {
|
|
1194
1213
|
[index: string]: any;
|
|
1195
1214
|
lazy?: boolean | undefined;
|
|
@@ -1201,7 +1220,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1201
1220
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
1202
1221
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
1203
1222
|
step: string | number;
|
|
1204
|
-
format: string | ProgressFn | undefined;
|
|
1223
|
+
format: string | ProgressFn | undefined;
|
|
1205
1224
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
1206
1225
|
id: string | [string, string];
|
|
1207
1226
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -1297,7 +1316,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1297
1316
|
[index: number]: any;
|
|
1298
1317
|
[index: symbol]: any;
|
|
1299
1318
|
class: any;
|
|
1300
|
-
style: CSSProperties;
|
|
1319
|
+
style: CSSProperties;
|
|
1301
1320
|
modelModifiers: {
|
|
1302
1321
|
[index: string]: any;
|
|
1303
1322
|
lazy?: boolean | undefined;
|
|
@@ -1309,7 +1328,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1309
1328
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
1310
1329
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
1311
1330
|
step: string | number;
|
|
1312
|
-
format: string | ProgressFn | undefined;
|
|
1331
|
+
format: string | ProgressFn | undefined;
|
|
1313
1332
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
1314
1333
|
id: string | [string, string];
|
|
1315
1334
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -1454,6 +1473,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1454
1473
|
};
|
|
1455
1474
|
$forceUpdate: () => void;
|
|
1456
1475
|
$nextTick: typeof nextTick;
|
|
1476
|
+
/**
|
|
1477
|
+
* 搜索表单显示状态
|
|
1478
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
1479
|
+
*/
|
|
1457
1480
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
1458
1481
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
1459
1482
|
columns: {
|
|
@@ -1942,6 +1965,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1942
1965
|
};
|
|
1943
1966
|
$forceUpdate: () => void;
|
|
1944
1967
|
$nextTick: typeof nextTick;
|
|
1968
|
+
/**
|
|
1969
|
+
* 搜索表单显示状态
|
|
1970
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
1971
|
+
*/
|
|
1945
1972
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
1946
1973
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
1947
1974
|
collapseDuration: {
|
|
@@ -2065,7 +2092,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2065
2092
|
index: number;
|
|
2066
2093
|
title: string | ComputedRef<string>;
|
|
2067
2094
|
name?: string | undefined;
|
|
2068
|
-
icon?: Component | undefined;
|
|
2095
|
+
icon?: Component | undefined; /**
|
|
2096
|
+
* 是否禁用列设置本地缓存
|
|
2097
|
+
* @default false(默认启用缓存)
|
|
2098
|
+
*/
|
|
2069
2099
|
cardProps?: Partial< Mutable<CardProps> & {
|
|
2070
2100
|
style?: CSSProperties | undefined;
|
|
2071
2101
|
class?: any;
|
|
@@ -2093,7 +2123,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2093
2123
|
[index: number]: any;
|
|
2094
2124
|
[index: symbol]: any;
|
|
2095
2125
|
class: any;
|
|
2096
|
-
style: CSSProperties;
|
|
2126
|
+
style: CSSProperties;
|
|
2097
2127
|
modelModifiers: {
|
|
2098
2128
|
[index: string]: any;
|
|
2099
2129
|
lazy?: boolean | undefined;
|
|
@@ -2105,7 +2135,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2105
2135
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
2106
2136
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
2107
2137
|
step: string | number;
|
|
2108
|
-
format: string | ProgressFn | undefined;
|
|
2138
|
+
format: string | ProgressFn | undefined;
|
|
2109
2139
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
2110
2140
|
id: string | [string, string];
|
|
2111
2141
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -2201,7 +2231,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2201
2231
|
[index: number]: any;
|
|
2202
2232
|
[index: symbol]: any;
|
|
2203
2233
|
class: any;
|
|
2204
|
-
style: CSSProperties;
|
|
2234
|
+
style: CSSProperties;
|
|
2205
2235
|
modelModifiers: {
|
|
2206
2236
|
[index: string]: any;
|
|
2207
2237
|
lazy?: boolean | undefined;
|
|
@@ -2213,7 +2243,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2213
2243
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
2214
2244
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
2215
2245
|
step: string | number;
|
|
2216
|
-
format: string | ProgressFn | undefined;
|
|
2246
|
+
format: string | ProgressFn | undefined;
|
|
2217
2247
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
2218
2248
|
id: string | [string, string];
|
|
2219
2249
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -2327,7 +2357,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2327
2357
|
[index: number]: any;
|
|
2328
2358
|
[index: symbol]: any;
|
|
2329
2359
|
class: any;
|
|
2330
|
-
style: CSSProperties;
|
|
2360
|
+
style: CSSProperties;
|
|
2331
2361
|
modelModifiers: {
|
|
2332
2362
|
[index: string]: any;
|
|
2333
2363
|
lazy?: boolean | undefined;
|
|
@@ -2339,7 +2369,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2339
2369
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
2340
2370
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
2341
2371
|
step: string | number;
|
|
2342
|
-
format: string | ProgressFn | undefined;
|
|
2372
|
+
format: string | ProgressFn | undefined;
|
|
2343
2373
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
2344
2374
|
id: string | [string, string];
|
|
2345
2375
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -2431,6 +2461,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2431
2461
|
data: RecordType[];
|
|
2432
2462
|
columns: PlusColumn[];
|
|
2433
2463
|
headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
2464
|
+
/**
|
|
2465
|
+
* 表头筛选配置
|
|
2466
|
+
* - 传入 true 启用默认配置
|
|
2467
|
+
* - 传入对象自定义配置
|
|
2468
|
+
* - 不传或传入 false 禁用(默认)
|
|
2469
|
+
*/
|
|
2434
2470
|
row: any[];
|
|
2435
2471
|
rowIndex: number;
|
|
2436
2472
|
column: TableColumnCtx<any[]>;
|
|
@@ -2478,6 +2514,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2478
2514
|
readonly data: RecordType[];
|
|
2479
2515
|
readonly columns: PlusColumn[];
|
|
2480
2516
|
readonly headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
2517
|
+
/**
|
|
2518
|
+
* 表头筛选配置
|
|
2519
|
+
* - 传入 true 启用默认配置
|
|
2520
|
+
* - 传入对象自定义配置
|
|
2521
|
+
* - 不传或传入 false 禁用(默认)
|
|
2522
|
+
*/
|
|
2481
2523
|
row: any[];
|
|
2482
2524
|
rowIndex: number;
|
|
2483
2525
|
column: TableColumnCtx<any[]>;
|
|
@@ -2548,6 +2590,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2548
2590
|
};
|
|
2549
2591
|
headerCellStyle: {
|
|
2550
2592
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
2593
|
+
/**
|
|
2594
|
+
* 表头筛选配置
|
|
2595
|
+
* - 传入 true 启用默认配置
|
|
2596
|
+
* - 传入对象自定义配置
|
|
2597
|
+
* - 不传或传入 false 禁用(默认)
|
|
2598
|
+
*/
|
|
2551
2599
|
row: any[];
|
|
2552
2600
|
rowIndex: number;
|
|
2553
2601
|
column: TableColumnCtx<any[]>;
|
|
@@ -2711,6 +2759,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2711
2759
|
};
|
|
2712
2760
|
headerCellStyle: {
|
|
2713
2761
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
2762
|
+
/**
|
|
2763
|
+
* 表头筛选配置
|
|
2764
|
+
* - 传入 true 启用默认配置
|
|
2765
|
+
* - 传入对象自定义配置
|
|
2766
|
+
* - 不传或传入 false 禁用(默认)
|
|
2767
|
+
*/
|
|
2714
2768
|
row: any[];
|
|
2715
2769
|
rowIndex: number;
|
|
2716
2770
|
column: TableColumnCtx<any[]>;
|
|
@@ -2865,6 +2919,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2865
2919
|
data: RecordType[];
|
|
2866
2920
|
columns: PlusColumn[];
|
|
2867
2921
|
headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
2922
|
+
/**
|
|
2923
|
+
* 表头筛选配置
|
|
2924
|
+
* - 传入 true 启用默认配置
|
|
2925
|
+
* - 传入对象自定义配置
|
|
2926
|
+
* - 不传或传入 false 禁用(默认)
|
|
2927
|
+
*/
|
|
2868
2928
|
row: any[];
|
|
2869
2929
|
rowIndex: number;
|
|
2870
2930
|
column: TableColumnCtx<any[]>;
|
|
@@ -2927,6 +2987,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2927
2987
|
};
|
|
2928
2988
|
$forceUpdate: () => void;
|
|
2929
2989
|
$nextTick: typeof nextTick;
|
|
2990
|
+
/**
|
|
2991
|
+
* 搜索表单显示状态
|
|
2992
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
2993
|
+
*/
|
|
2930
2994
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
2931
2995
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
2932
2996
|
data: {
|
|
@@ -2942,6 +3006,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2942
3006
|
};
|
|
2943
3007
|
headerCellStyle: {
|
|
2944
3008
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
3009
|
+
/**
|
|
3010
|
+
* 表头筛选配置
|
|
3011
|
+
* - 传入 true 启用默认配置
|
|
3012
|
+
* - 传入对象自定义配置
|
|
3013
|
+
* - 不传或传入 false 禁用(默认)
|
|
3014
|
+
*/
|
|
2945
3015
|
row: any[];
|
|
2946
3016
|
rowIndex: number;
|
|
2947
3017
|
column: TableColumnCtx<any[]>;
|
|
@@ -3509,6 +3579,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3509
3579
|
};
|
|
3510
3580
|
$forceUpdate: () => void;
|
|
3511
3581
|
$nextTick: typeof nextTick;
|
|
3582
|
+
/**
|
|
3583
|
+
* 搜索表单显示状态
|
|
3584
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
3585
|
+
*/
|
|
3512
3586
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
3513
3587
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
3514
3588
|
fixed: {
|
|
@@ -3713,6 +3787,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
3713
3787
|
};
|
|
3714
3788
|
$forceUpdate: () => void;
|
|
3715
3789
|
$nextTick: typeof nextTick;
|
|
3790
|
+
/**
|
|
3791
|
+
* 搜索表单显示状态
|
|
3792
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
3793
|
+
*/
|
|
3716
3794
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
3717
3795
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
3718
3796
|
search: {
|
|
@@ -4489,6 +4567,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4489
4567
|
};
|
|
4490
4568
|
$forceUpdate: () => void;
|
|
4491
4569
|
$nextTick: typeof nextTick;
|
|
4570
|
+
/**
|
|
4571
|
+
* 搜索表单显示状态
|
|
4572
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
4573
|
+
*/
|
|
4492
4574
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
4493
4575
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
4494
4576
|
collapseDuration: {
|
|
@@ -4612,7 +4694,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4612
4694
|
index: number;
|
|
4613
4695
|
title: string | ComputedRef<string>;
|
|
4614
4696
|
name?: string | undefined;
|
|
4615
|
-
icon?: Component | undefined;
|
|
4697
|
+
icon?: Component | undefined; /**
|
|
4698
|
+
* 是否禁用列设置本地缓存
|
|
4699
|
+
* @default false(默认启用缓存)
|
|
4700
|
+
*/
|
|
4616
4701
|
cardProps?: Partial< Mutable<CardProps> & {
|
|
4617
4702
|
style?: CSSProperties | undefined;
|
|
4618
4703
|
class?: any;
|
|
@@ -4640,7 +4725,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4640
4725
|
[index: number]: any;
|
|
4641
4726
|
[index: symbol]: any;
|
|
4642
4727
|
class: any;
|
|
4643
|
-
style: CSSProperties;
|
|
4728
|
+
style: CSSProperties;
|
|
4644
4729
|
modelModifiers: {
|
|
4645
4730
|
[index: string]: any;
|
|
4646
4731
|
lazy?: boolean | undefined;
|
|
@@ -4652,7 +4737,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4652
4737
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
4653
4738
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
4654
4739
|
step: string | number;
|
|
4655
|
-
format: string | ProgressFn | undefined;
|
|
4740
|
+
format: string | ProgressFn | undefined;
|
|
4656
4741
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
4657
4742
|
id: string | [string, string];
|
|
4658
4743
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -4748,7 +4833,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4748
4833
|
[index: number]: any;
|
|
4749
4834
|
[index: symbol]: any;
|
|
4750
4835
|
class: any;
|
|
4751
|
-
style: CSSProperties;
|
|
4836
|
+
style: CSSProperties;
|
|
4752
4837
|
modelModifiers: {
|
|
4753
4838
|
[index: string]: any;
|
|
4754
4839
|
lazy?: boolean | undefined;
|
|
@@ -4760,7 +4845,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4760
4845
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
4761
4846
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
4762
4847
|
step: string | number;
|
|
4763
|
-
format: string | ProgressFn | undefined;
|
|
4848
|
+
format: string | ProgressFn | undefined;
|
|
4764
4849
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
4765
4850
|
id: string | [string, string];
|
|
4766
4851
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -4905,6 +4990,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
4905
4990
|
};
|
|
4906
4991
|
$forceUpdate: () => void;
|
|
4907
4992
|
$nextTick: typeof nextTick;
|
|
4993
|
+
/**
|
|
4994
|
+
* 搜索表单显示状态
|
|
4995
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
4996
|
+
*/
|
|
4908
4997
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
4909
4998
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
4910
4999
|
columns: {
|
|
@@ -5393,6 +5482,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5393
5482
|
};
|
|
5394
5483
|
$forceUpdate: () => void;
|
|
5395
5484
|
$nextTick: typeof nextTick;
|
|
5485
|
+
/**
|
|
5486
|
+
* 搜索表单显示状态
|
|
5487
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
5488
|
+
*/
|
|
5396
5489
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
5397
5490
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
5398
5491
|
collapseDuration: {
|
|
@@ -5516,7 +5609,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5516
5609
|
index: number;
|
|
5517
5610
|
title: string | ComputedRef<string>;
|
|
5518
5611
|
name?: string | undefined;
|
|
5519
|
-
icon?: Component | undefined;
|
|
5612
|
+
icon?: Component | undefined; /**
|
|
5613
|
+
* 是否禁用列设置本地缓存
|
|
5614
|
+
* @default false(默认启用缓存)
|
|
5615
|
+
*/
|
|
5520
5616
|
cardProps?: Partial< Mutable<CardProps> & {
|
|
5521
5617
|
style?: CSSProperties | undefined;
|
|
5522
5618
|
class?: any;
|
|
@@ -5544,7 +5640,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5544
5640
|
[index: number]: any;
|
|
5545
5641
|
[index: symbol]: any;
|
|
5546
5642
|
class: any;
|
|
5547
|
-
style: CSSProperties;
|
|
5643
|
+
style: CSSProperties;
|
|
5548
5644
|
modelModifiers: {
|
|
5549
5645
|
[index: string]: any;
|
|
5550
5646
|
lazy?: boolean | undefined;
|
|
@@ -5556,7 +5652,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5556
5652
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
5557
5653
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
5558
5654
|
step: string | number;
|
|
5559
|
-
format: string | ProgressFn | undefined;
|
|
5655
|
+
format: string | ProgressFn | undefined;
|
|
5560
5656
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
5561
5657
|
id: string | [string, string];
|
|
5562
5658
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -5652,7 +5748,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5652
5748
|
[index: number]: any;
|
|
5653
5749
|
[index: symbol]: any;
|
|
5654
5750
|
class: any;
|
|
5655
|
-
style: CSSProperties;
|
|
5751
|
+
style: CSSProperties;
|
|
5656
5752
|
modelModifiers: {
|
|
5657
5753
|
[index: string]: any;
|
|
5658
5754
|
lazy?: boolean | undefined;
|
|
@@ -5664,7 +5760,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5664
5760
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
5665
5761
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
5666
5762
|
step: string | number;
|
|
5667
|
-
format: string | ProgressFn | undefined;
|
|
5763
|
+
format: string | ProgressFn | undefined;
|
|
5668
5764
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
5669
5765
|
id: string | [string, string];
|
|
5670
5766
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -5778,7 +5874,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5778
5874
|
[index: number]: any;
|
|
5779
5875
|
[index: symbol]: any;
|
|
5780
5876
|
class: any;
|
|
5781
|
-
style: CSSProperties;
|
|
5877
|
+
style: CSSProperties;
|
|
5782
5878
|
modelModifiers: {
|
|
5783
5879
|
[index: string]: any;
|
|
5784
5880
|
lazy?: boolean | undefined;
|
|
@@ -5790,7 +5886,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5790
5886
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
5791
5887
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
5792
5888
|
step: string | number;
|
|
5793
|
-
format: string | ProgressFn | undefined;
|
|
5889
|
+
format: string | ProgressFn | undefined;
|
|
5794
5890
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
5795
5891
|
id: string | [string, string];
|
|
5796
5892
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -5882,6 +5978,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5882
5978
|
data: RecordType[];
|
|
5883
5979
|
columns: PlusColumn[];
|
|
5884
5980
|
headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
5981
|
+
/**
|
|
5982
|
+
* 表头筛选配置
|
|
5983
|
+
* - 传入 true 启用默认配置
|
|
5984
|
+
* - 传入对象自定义配置
|
|
5985
|
+
* - 不传或传入 false 禁用(默认)
|
|
5986
|
+
*/
|
|
5885
5987
|
row: any[];
|
|
5886
5988
|
rowIndex: number;
|
|
5887
5989
|
column: TableColumnCtx<any[]>;
|
|
@@ -5929,6 +6031,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5929
6031
|
readonly data: RecordType[];
|
|
5930
6032
|
readonly columns: PlusColumn[];
|
|
5931
6033
|
readonly headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
6034
|
+
/**
|
|
6035
|
+
* 表头筛选配置
|
|
6036
|
+
* - 传入 true 启用默认配置
|
|
6037
|
+
* - 传入对象自定义配置
|
|
6038
|
+
* - 不传或传入 false 禁用(默认)
|
|
6039
|
+
*/
|
|
5932
6040
|
row: any[];
|
|
5933
6041
|
rowIndex: number;
|
|
5934
6042
|
column: TableColumnCtx<any[]>;
|
|
@@ -5999,6 +6107,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
5999
6107
|
};
|
|
6000
6108
|
headerCellStyle: {
|
|
6001
6109
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
6110
|
+
/**
|
|
6111
|
+
* 表头筛选配置
|
|
6112
|
+
* - 传入 true 启用默认配置
|
|
6113
|
+
* - 传入对象自定义配置
|
|
6114
|
+
* - 不传或传入 false 禁用(默认)
|
|
6115
|
+
*/
|
|
6002
6116
|
row: any[];
|
|
6003
6117
|
rowIndex: number;
|
|
6004
6118
|
column: TableColumnCtx<any[]>;
|
|
@@ -6162,6 +6276,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6162
6276
|
};
|
|
6163
6277
|
headerCellStyle: {
|
|
6164
6278
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
6279
|
+
/**
|
|
6280
|
+
* 表头筛选配置
|
|
6281
|
+
* - 传入 true 启用默认配置
|
|
6282
|
+
* - 传入对象自定义配置
|
|
6283
|
+
* - 不传或传入 false 禁用(默认)
|
|
6284
|
+
*/
|
|
6165
6285
|
row: any[];
|
|
6166
6286
|
rowIndex: number;
|
|
6167
6287
|
column: TableColumnCtx<any[]>;
|
|
@@ -6316,6 +6436,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6316
6436
|
data: RecordType[];
|
|
6317
6437
|
columns: PlusColumn[];
|
|
6318
6438
|
headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
6439
|
+
/**
|
|
6440
|
+
* 表头筛选配置
|
|
6441
|
+
* - 传入 true 启用默认配置
|
|
6442
|
+
* - 传入对象自定义配置
|
|
6443
|
+
* - 不传或传入 false 禁用(默认)
|
|
6444
|
+
*/
|
|
6319
6445
|
row: any[];
|
|
6320
6446
|
rowIndex: number;
|
|
6321
6447
|
column: TableColumnCtx<any[]>;
|
|
@@ -6378,6 +6504,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6378
6504
|
};
|
|
6379
6505
|
$forceUpdate: () => void;
|
|
6380
6506
|
$nextTick: typeof nextTick;
|
|
6507
|
+
/**
|
|
6508
|
+
* 搜索表单显示状态
|
|
6509
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
6510
|
+
*/
|
|
6381
6511
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
6382
6512
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
6383
6513
|
data: {
|
|
@@ -6393,6 +6523,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6393
6523
|
};
|
|
6394
6524
|
headerCellStyle: {
|
|
6395
6525
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
6526
|
+
/**
|
|
6527
|
+
* 表头筛选配置
|
|
6528
|
+
* - 传入 true 启用默认配置
|
|
6529
|
+
* - 传入对象自定义配置
|
|
6530
|
+
* - 不传或传入 false 禁用(默认)
|
|
6531
|
+
*/
|
|
6396
6532
|
row: any[];
|
|
6397
6533
|
rowIndex: number;
|
|
6398
6534
|
column: TableColumnCtx<any[]>;
|
|
@@ -6960,6 +7096,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
6960
7096
|
};
|
|
6961
7097
|
$forceUpdate: () => void;
|
|
6962
7098
|
$nextTick: typeof nextTick;
|
|
7099
|
+
/**
|
|
7100
|
+
* 搜索表单显示状态
|
|
7101
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
7102
|
+
*/
|
|
6963
7103
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
6964
7104
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
6965
7105
|
fixed: {
|
|
@@ -7128,7 +7268,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7128
7268
|
[index: number]: any;
|
|
7129
7269
|
[index: symbol]: any;
|
|
7130
7270
|
class: any;
|
|
7131
|
-
style: CSSProperties;
|
|
7271
|
+
style: CSSProperties;
|
|
7132
7272
|
modelModifiers: {
|
|
7133
7273
|
[index: string]: any;
|
|
7134
7274
|
lazy?: boolean | undefined;
|
|
@@ -7140,7 +7280,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7140
7280
|
type: "" | "number" | "default" | "search" | "button" | "textarea" | "time" | "circle" | "image" | "line" | "text" | "datetimerange" | "daterange" | "monthrange" | "checkbox" | "radio" | "color" | "primary" | "success" | "warning" | "info" | "danger" | "reset" | "submit" | "hidden" | "range" | "password" | "email" | "tel" | "url" | "date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "yearrange" | "dashboard" | "datetime-local" | "file" | undefined;
|
|
7141
7281
|
loading: boolean | EpPropMergeType<StringConstructor, "lazy" | "eager", unknown> | undefined;
|
|
7142
7282
|
step: string | number;
|
|
7143
|
-
format: string | ProgressFn | undefined;
|
|
7283
|
+
format: string | ProgressFn | undefined;
|
|
7144
7284
|
filterMethod: ((node: CascaderNode, keyword: string) => boolean) | ((query: string) => void) | undefined;
|
|
7145
7285
|
id: string | [string, string];
|
|
7146
7286
|
effect: EpPropMergeType<(new (...args: any[]) => string) | (() => PopperEffect) | ((new (...args: any[]) => string) | (() => PopperEffect))[], unknown, unknown>;
|
|
@@ -7250,6 +7390,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7250
7390
|
data: RecordType[];
|
|
7251
7391
|
columns: PlusColumn[];
|
|
7252
7392
|
headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
7393
|
+
/**
|
|
7394
|
+
* 表头筛选配置
|
|
7395
|
+
* - 传入 true 启用默认配置
|
|
7396
|
+
* - 传入对象自定义配置
|
|
7397
|
+
* - 不传或传入 false 禁用(默认)
|
|
7398
|
+
*/
|
|
7253
7399
|
row: any[];
|
|
7254
7400
|
rowIndex: number;
|
|
7255
7401
|
column: TableColumnCtx<any[]>;
|
|
@@ -7297,6 +7443,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7297
7443
|
readonly data: RecordType[];
|
|
7298
7444
|
readonly columns: PlusColumn[];
|
|
7299
7445
|
readonly headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
7446
|
+
/**
|
|
7447
|
+
* 表头筛选配置
|
|
7448
|
+
* - 传入 true 启用默认配置
|
|
7449
|
+
* - 传入对象自定义配置
|
|
7450
|
+
* - 不传或传入 false 禁用(默认)
|
|
7451
|
+
*/
|
|
7300
7452
|
row: any[];
|
|
7301
7453
|
rowIndex: number;
|
|
7302
7454
|
column: TableColumnCtx<any[]>;
|
|
@@ -7367,6 +7519,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7367
7519
|
};
|
|
7368
7520
|
headerCellStyle: {
|
|
7369
7521
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
7522
|
+
/**
|
|
7523
|
+
* 表头筛选配置
|
|
7524
|
+
* - 传入 true 启用默认配置
|
|
7525
|
+
* - 传入对象自定义配置
|
|
7526
|
+
* - 不传或传入 false 禁用(默认)
|
|
7527
|
+
*/
|
|
7370
7528
|
row: any[];
|
|
7371
7529
|
rowIndex: number;
|
|
7372
7530
|
column: TableColumnCtx<any[]>;
|
|
@@ -7530,6 +7688,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7530
7688
|
};
|
|
7531
7689
|
headerCellStyle: {
|
|
7532
7690
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
7691
|
+
/**
|
|
7692
|
+
* 表头筛选配置
|
|
7693
|
+
* - 传入 true 启用默认配置
|
|
7694
|
+
* - 传入对象自定义配置
|
|
7695
|
+
* - 不传或传入 false 禁用(默认)
|
|
7696
|
+
*/
|
|
7533
7697
|
row: any[];
|
|
7534
7698
|
rowIndex: number;
|
|
7535
7699
|
column: TableColumnCtx<any[]>;
|
|
@@ -7684,6 +7848,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7684
7848
|
data: RecordType[];
|
|
7685
7849
|
columns: PlusColumn[];
|
|
7686
7850
|
headerCellStyle: Partial< CSSProperties> | Partial<(data: {
|
|
7851
|
+
/**
|
|
7852
|
+
* 表头筛选配置
|
|
7853
|
+
* - 传入 true 启用默认配置
|
|
7854
|
+
* - 传入对象自定义配置
|
|
7855
|
+
* - 不传或传入 false 禁用(默认)
|
|
7856
|
+
*/
|
|
7687
7857
|
row: any[];
|
|
7688
7858
|
rowIndex: number;
|
|
7689
7859
|
column: TableColumnCtx<any[]>;
|
|
@@ -7746,6 +7916,10 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7746
7916
|
};
|
|
7747
7917
|
$forceUpdate: () => void;
|
|
7748
7918
|
$nextTick: typeof nextTick;
|
|
7919
|
+
/**
|
|
7920
|
+
* 搜索表单显示状态
|
|
7921
|
+
* 优先级:props.showSearch > 全局配置 showPageSearch > 默认 true
|
|
7922
|
+
*/
|
|
7749
7923
|
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
7750
7924
|
} & Omit<Readonly< ExtractPropTypes<{
|
|
7751
7925
|
data: {
|
|
@@ -7761,6 +7935,12 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7761
7935
|
};
|
|
7762
7936
|
headerCellStyle: {
|
|
7763
7937
|
type: PropType<Partial< CSSProperties> | Partial<(data: {
|
|
7938
|
+
/**
|
|
7939
|
+
* 表头筛选配置
|
|
7940
|
+
* - 传入 true 启用默认配置
|
|
7941
|
+
* - 传入对象自定义配置
|
|
7942
|
+
* - 不传或传入 false 禁用(默认)
|
|
7943
|
+
*/
|
|
7764
7944
|
row: any[];
|
|
7765
7945
|
rowIndex: number;
|
|
7766
7946
|
column: TableColumnCtx<any[]>;
|
|
@@ -7950,6 +8130,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7950
8130
|
};
|
|
7951
8131
|
headerFilter: boolean;
|
|
7952
8132
|
hideHeaderFilter: boolean;
|
|
8133
|
+
columnCacheKey: undefined;
|
|
8134
|
+
disableColumnCache: boolean;
|
|
7953
8135
|
}>>> & {
|
|
7954
8136
|
"onHeader-filter-confirm"?: ((payload: HeaderFilterPayload) => any) | undefined;
|
|
7955
8137
|
"onHeader-filter-reset"?: ((payload: HeaderFilterResetPayload) => any) | undefined;
|
|
@@ -7961,6 +8143,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
7961
8143
|
isCard: boolean;
|
|
7962
8144
|
hideHeaderFilter: boolean;
|
|
7963
8145
|
hideColumnSettingsIcon: boolean;
|
|
8146
|
+
columnCacheKey: string;
|
|
8147
|
+
disableColumnCache: boolean;
|
|
7964
8148
|
}, {}>, Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
|
|
7965
8149
|
"column-settings-icon"?(_: {}): any;
|
|
7966
8150
|
default?(_: {}): any;
|