vxe-pc-ui 4.9.37 → 4.9.38
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/icon/style.css +1 -1
- package/es/input/src/input.js +6 -3
- package/es/number-input/src/number-input.js +5 -0
- package/es/password-input/src/password-input.js +9 -7
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/textarea/src/textarea.js +3 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +42 -18
- package/lib/index.umd.min.js +1 -1
- package/lib/input/src/input.js +10 -4
- package/lib/input/src/input.min.js +1 -1
- package/lib/number-input/src/number-input.js +13 -1
- package/lib/number-input/src/number-input.min.js +1 -1
- package/lib/password-input/src/password-input.js +13 -10
- package/lib/password-input/src/password-input.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/textarea/src/textarea.js +4 -1
- package/lib/textarea/src/textarea.min.js +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/package.json +1 -1
- package/packages/input/src/input.ts +6 -3
- package/packages/number-input/src/number-input.ts +5 -0
- package/packages/password-input/src/password-input.ts +9 -7
- package/packages/textarea/src/textarea.ts +3 -1
- package/types/components/column.d.ts +17 -0
- package/types/components/grid.d.ts +8 -0
- package/types/components/input.d.ts +6 -0
- package/types/components/number-input.d.ts +1 -0
- package/types/components/password-input.d.ts +1 -0
- package/types/components/table-module/filter.d.ts +50 -4
- package/types/components/table.d.ts +33 -4
- package/types/components/textarea.d.ts +7 -1
- package/types/ui/renderer.d.ts +24 -0
- /package/es/icon/{iconfont.1758878505769.ttf → iconfont.1759031228909.ttf} +0 -0
- /package/es/icon/{iconfont.1758878505769.woff → iconfont.1759031228909.woff} +0 -0
- /package/es/icon/{iconfont.1758878505769.woff2 → iconfont.1759031228909.woff2} +0 -0
- /package/es/{iconfont.1758878505769.ttf → iconfont.1759031228909.ttf} +0 -0
- /package/es/{iconfont.1758878505769.woff → iconfont.1759031228909.woff} +0 -0
- /package/es/{iconfont.1758878505769.woff2 → iconfont.1759031228909.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1758878505769.ttf → iconfont.1759031228909.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1758878505769.woff → iconfont.1759031228909.woff} +0 -0
- /package/lib/icon/style/{iconfont.1758878505769.woff2 → iconfont.1759031228909.woff2} +0 -0
- /package/lib/{iconfont.1758878505769.ttf → iconfont.1759031228909.ttf} +0 -0
- /package/lib/{iconfont.1758878505769.woff → iconfont.1759031228909.woff} +0 -0
- /package/lib/{iconfont.1758878505769.woff2 → iconfont.1759031228909.woff2} +0 -0
package/types/ui/renderer.d.ts
CHANGED
|
@@ -29,6 +29,14 @@ declare module '@vxe-ui/core' {
|
|
|
29
29
|
* 表格 - 自定义筛选渲染内容
|
|
30
30
|
*/
|
|
31
31
|
renderTableFilter?(renderOpts: VxeGlobalRendererHandles.RenderTableFilterOptions, renderParams: VxeGlobalRendererHandles.RenderTableFilterParams<any>): VxeComponentSlotType | VxeComponentSlotType[]
|
|
32
|
+
/**
|
|
33
|
+
* 表格 - 自定义浮动筛选渲染内容
|
|
34
|
+
*/
|
|
35
|
+
renderTableFloatingFilter?(renderOpts: VxeGlobalRendererHandles.RenderTableFloatingFilterOptions, renderParams: VxeGlobalRendererHandles.RenderTableFloatingFilterParams<any>): VxeComponentSlotType | VxeComponentSlotType[]
|
|
36
|
+
/**
|
|
37
|
+
* 表格 - 定义筛选选项数据
|
|
38
|
+
*/
|
|
39
|
+
createTableFilterOptions?(params: VxeGlobalRendererHandles.CreateTableFilterOptionsParams): VxeColumnPropTypes.FilterItem[]
|
|
32
40
|
/**
|
|
33
41
|
* 表格 - 筛选面板自适应表格高度
|
|
34
42
|
*/
|
|
@@ -255,6 +263,12 @@ declare module '@vxe-ui/core' {
|
|
|
255
263
|
*/
|
|
256
264
|
export interface RenderFilterOptions extends RenderTableFilterOptions {}
|
|
257
265
|
export interface RenderTableFilterOptions extends VxeColumnPropTypes.FilterRender {}
|
|
266
|
+
export interface RenderTableFloatingFilterOptions extends VxeColumnPropTypes.FilterRender {}
|
|
267
|
+
|
|
268
|
+
export interface CreateTableFilterOptionsParams<D = any> {
|
|
269
|
+
$table: VxeTableConstructor<D>
|
|
270
|
+
column: VxeTableDefines.ColumnInfo<D>
|
|
271
|
+
}
|
|
258
272
|
|
|
259
273
|
export interface RenderParams {}
|
|
260
274
|
|
|
@@ -273,6 +287,16 @@ declare module '@vxe-ui/core' {
|
|
|
273
287
|
$rowIndex: number
|
|
274
288
|
}
|
|
275
289
|
|
|
290
|
+
export interface RenderTableFloatingFilterParams<D = any> {
|
|
291
|
+
$table: VxeTableConstructor<D>
|
|
292
|
+
option: VxeTableDefines.FilterOption
|
|
293
|
+
column: {
|
|
294
|
+
filters: VxeTableDefines.FilterOption[]
|
|
295
|
+
} & VxeTableDefines.ColumnInfo<D>
|
|
296
|
+
columnIndex: number
|
|
297
|
+
$columnIndex: number
|
|
298
|
+
}
|
|
299
|
+
|
|
276
300
|
/**
|
|
277
301
|
* @deprecated
|
|
278
302
|
*/
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|