vxe-pc-ui 4.9.37 → 4.9.39
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 +18 -0
- package/types/components/grid.d.ts +10 -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-plugins/extend-cell-area.d.ts +1 -1
- 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.1759043297531.ttf} +0 -0
- /package/es/icon/{iconfont.1758878505769.woff → iconfont.1759043297531.woff} +0 -0
- /package/es/icon/{iconfont.1758878505769.woff2 → iconfont.1759043297531.woff2} +0 -0
- /package/es/{iconfont.1758878505769.ttf → iconfont.1759043297531.ttf} +0 -0
- /package/es/{iconfont.1758878505769.woff → iconfont.1759043297531.woff} +0 -0
- /package/es/{iconfont.1758878505769.woff2 → iconfont.1759043297531.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1758878505769.ttf → iconfont.1759043297531.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1758878505769.woff → iconfont.1759043297531.woff} +0 -0
- /package/lib/icon/style/{iconfont.1758878505769.woff2 → iconfont.1759043297531.woff2} +0 -0
- /package/lib/{iconfont.1758878505769.ttf → iconfont.1759043297531.ttf} +0 -0
- /package/lib/{iconfont.1758878505769.woff → iconfont.1759043297531.woff} +0 -0
- /package/lib/{iconfont.1758878505769.woff2 → iconfont.1759043297531.woff2} +0 -0
|
@@ -151,7 +151,8 @@ export type VxeTextareaEmits = [
|
|
|
151
151
|
'click',
|
|
152
152
|
'change',
|
|
153
153
|
'focus',
|
|
154
|
-
'blur'
|
|
154
|
+
'blur',
|
|
155
|
+
'lazy-change'
|
|
155
156
|
]
|
|
156
157
|
|
|
157
158
|
export namespace VxeTextareaDefines {
|
|
@@ -181,6 +182,8 @@ export namespace VxeTextareaDefines {
|
|
|
181
182
|
|
|
182
183
|
export interface BlurParams extends InputParams {}
|
|
183
184
|
export interface BlurEventParams extends TextareaEventParams, BlurParams { }
|
|
185
|
+
|
|
186
|
+
export interface LazyChangeEventParams extends TextareaEventParams { }
|
|
184
187
|
}
|
|
185
188
|
|
|
186
189
|
export type VxeTextareaEventProps = {
|
|
@@ -192,6 +195,7 @@ export type VxeTextareaEventProps = {
|
|
|
192
195
|
onClick?: VxeTextareaEvents.Click
|
|
193
196
|
onFocus?: VxeTextareaEvents.Focus
|
|
194
197
|
onBlur?: VxeTextareaEvents.Blur
|
|
198
|
+
onLazyChange?: VxeTextareaEvents.LazyChange
|
|
195
199
|
}
|
|
196
200
|
|
|
197
201
|
export interface VxeTextareaListeners {
|
|
@@ -203,6 +207,7 @@ export interface VxeTextareaListeners {
|
|
|
203
207
|
click?: VxeTextareaEvents.Click
|
|
204
208
|
focus?: VxeTextareaEvents.Focus
|
|
205
209
|
blur?: VxeTextareaEvents.Blur
|
|
210
|
+
lazyChange?: VxeTextareaEvents.LazyChange
|
|
206
211
|
}
|
|
207
212
|
|
|
208
213
|
export namespace VxeTextareaEvents {
|
|
@@ -214,6 +219,7 @@ export namespace VxeTextareaEvents {
|
|
|
214
219
|
export type Click = (params: VxeTextareaDefines.ClickEventParams) => void
|
|
215
220
|
export type Focus = (params: VxeTextareaDefines.FocusEventParams) => void
|
|
216
221
|
export type Blur = (params: VxeTextareaDefines.BlurEventParams) => void
|
|
222
|
+
export type LazyChange = (params: VxeTextareaDefines.LazyChangeEventParams) => void
|
|
217
223
|
}
|
|
218
224
|
|
|
219
225
|
export namespace VxeTextareaSlotTypes {
|
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
|