@juzhenfe/page-model 3.14.7 → 3.14.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/components/column-filter-tools/index.vue.d.ts +4 -0
- package/dist/components/column-sort-tools/index.vue.d.ts +2 -0
- package/dist/components/simple-popover/index.vue.d.ts +2 -0
- package/dist/components/table/components/table-column/index.vue.d.ts +8 -6
- package/dist/index.es.js +117 -77
- package/dist/index.min.css +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/types/common.d.ts +2 -2
- package/package.json +1 -1
package/dist/types/common.d.ts
CHANGED
|
@@ -289,7 +289,7 @@ declare global {
|
|
|
289
289
|
/**
|
|
290
290
|
* 过滤的选项
|
|
291
291
|
*/
|
|
292
|
-
filters?: {
|
|
292
|
+
filters?: ExtendReflect<{
|
|
293
293
|
/**
|
|
294
294
|
* 过滤类型
|
|
295
295
|
*/
|
|
@@ -306,7 +306,7 @@ declare global {
|
|
|
306
306
|
* 过滤选项
|
|
307
307
|
*/
|
|
308
308
|
filterOptions?: Array<{ label: string; value: string | number | boolean }>
|
|
309
|
-
}
|
|
309
|
+
}>
|
|
310
310
|
|
|
311
311
|
/**
|
|
312
312
|
* 是否必填
|