@juzhenfe/page-model 3.13.3 → 3.13.4
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/components/table/components/table-column/components/filter-zone/index.vue.d.ts +72 -0
- package/dist/components/table/components/table-column/index.vue.d.ts +281 -0
- package/dist/components/table/constructor.d.ts +4 -0
- package/dist/index.es.js +13 -7
- package/dist/index.min.css +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/types/common.d.ts +19 -17
- package/package.json +1 -1
package/dist/types/common.d.ts
CHANGED
|
@@ -284,26 +284,28 @@ declare global {
|
|
|
284
284
|
* 是否启用过滤
|
|
285
285
|
*/
|
|
286
286
|
filterable?: boolean
|
|
287
|
-
|
|
288
|
-
/**
|
|
289
|
-
* 过滤类型
|
|
290
|
-
*/
|
|
291
|
-
filterType?: FilterType
|
|
292
287
|
|
|
293
288
|
/**
|
|
294
|
-
*
|
|
295
|
-
*/
|
|
296
|
-
filterMultiple?: boolean
|
|
297
|
-
|
|
298
|
-
/**
|
|
299
|
-
* 过滤表单文本
|
|
289
|
+
* 过滤的选项
|
|
300
290
|
*/
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
291
|
+
filters?: {
|
|
292
|
+
/**
|
|
293
|
+
* 过滤类型
|
|
294
|
+
*/
|
|
295
|
+
filterType: FilterType
|
|
296
|
+
/**
|
|
297
|
+
* 复数过滤
|
|
298
|
+
*/
|
|
299
|
+
filterMultiple?: boolean
|
|
300
|
+
/**
|
|
301
|
+
* 过滤表单文本
|
|
302
|
+
*/
|
|
303
|
+
filterLabel?: string
|
|
304
|
+
/**
|
|
305
|
+
* 过滤选项
|
|
306
|
+
*/
|
|
307
|
+
filterOptions?: Array<{ label: string; value: string | number | boolean }>
|
|
308
|
+
}
|
|
307
309
|
|
|
308
310
|
/**
|
|
309
311
|
* 是否必填
|