@tplc/wot 1.0.12 → 1.0.13

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.
Files changed (62) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/components/wd-calendar/index.scss +145 -58
  3. package/components/wd-calendar/types.ts +41 -23
  4. package/components/wd-calendar/wd-calendar.vue +130 -123
  5. package/components/wd-calendar-view/month/index.scss +65 -33
  6. package/components/wd-calendar-view/month/month.vue +113 -80
  7. package/components/wd-calendar-view/month/types.ts +1 -2
  8. package/components/wd-calendar-view/monthPanel/index.scss +15 -15
  9. package/components/wd-calendar-view/monthPanel/month-panel.vue +78 -64
  10. package/components/wd-calendar-view/monthPanel/types.ts +10 -58
  11. package/components/wd-calendar-view/types.ts +36 -12
  12. package/components/wd-calendar-view/utils.ts +36 -14
  13. package/components/wd-calendar-view/wd-calendar-view.vue +7 -7
  14. package/components/wd-calendar-view/year/index.scss +13 -18
  15. package/components/wd-calendar-view/year/types.ts +1 -2
  16. package/components/wd-calendar-view/year/year.vue +43 -25
  17. package/components/wd-calendar-view/yearPanel/index.scss +4 -4
  18. package/components/wd-calendar-view/yearPanel/types.ts +2 -2
  19. package/components/wd-calendar-view/yearPanel/year-panel.vue +41 -36
  20. package/components/wd-drop-menu/index.scss +45 -17
  21. package/components/wd-drop-menu/types.ts +3 -3
  22. package/components/wd-drop-menu/wd-drop-menu.vue +25 -61
  23. package/components/wd-drop-menu-item/index.scss +15 -15
  24. package/components/wd-drop-menu-item/types.ts +15 -18
  25. package/components/wd-drop-menu-item/wd-drop-menu-item.vue +54 -33
  26. package/package.json +1 -1
  27. package/types/components/common/dayjs.d.ts +26 -0
  28. package/types/components/wd-calendar/types.d.ts +18 -24
  29. package/types/components/wd-calendar/wd-calendar.vue.d.ts +24 -40
  30. package/types/components/wd-calendar-view/month/month.vue.d.ts +3 -11
  31. package/types/components/wd-calendar-view/month/types.d.ts +0 -4
  32. package/types/components/wd-calendar-view/monthPanel/month-panel.vue.d.ts +12 -18
  33. package/types/components/wd-calendar-view/monthPanel/types.d.ts +6 -48
  34. package/types/components/wd-calendar-view/types.d.ts +4 -11
  35. package/types/components/wd-calendar-view/utils.d.ts +12 -3
  36. package/types/components/wd-calendar-view/year/types.d.ts +0 -4
  37. package/types/components/wd-calendar-view/year/year.vue.d.ts +3 -11
  38. package/types/components/wd-cell/wd-cell.vue.d.ts +5 -5
  39. package/types/components/wd-col-picker/wd-col-picker.vue.d.ts +9 -9
  40. package/types/components/wd-datetime-picker/wd-datetime-picker.vue.d.ts +10 -10
  41. package/types/components/wd-datetime-picker-view/wd-datetime-picker-view.vue.d.ts +1 -1
  42. package/types/components/wd-drop-menu/types.d.ts +3 -3
  43. package/types/components/wd-drop-menu/wd-drop-menu.vue.d.ts +5 -5
  44. package/types/components/wd-drop-menu-item/types.d.ts +15 -27
  45. package/types/components/wd-drop-menu-item/wd-drop-menu-item.vue.d.ts +35 -46
  46. package/types/components/wd-floating-panel/wd-floating-panel.vue.d.ts +1 -1
  47. package/types/components/wd-form/wd-form.vue.d.ts +1 -1
  48. package/types/components/wd-form-item/wd-form-item.vue.d.ts +1 -1
  49. package/types/components/wd-grid-item/wd-grid-item.vue.d.ts +1 -1
  50. package/types/components/wd-input/wd-input.vue.d.ts +4 -4
  51. package/types/components/wd-keyboard/wd-keyboard.vue.d.ts +1 -1
  52. package/types/components/wd-notify/wd-notify.vue.d.ts +1 -1
  53. package/types/components/wd-number-keyboard/wd-number-keyboard.vue.d.ts +1 -1
  54. package/types/components/wd-picker/wd-picker.vue.d.ts +12 -12
  55. package/types/components/wd-picker-view/wd-picker-view.vue.d.ts +2 -2
  56. package/types/components/wd-select-picker/wd-select-picker.vue.d.ts +12 -12
  57. package/types/components/wd-signature/wd-signature.vue.d.ts +2 -2
  58. package/types/components/wd-steps/wd-steps.vue.d.ts +1 -1
  59. package/types/components/wd-swiper/wd-swiper.vue.d.ts +1 -1
  60. package/types/components/wd-tabs/wd-tabs.vue.d.ts +1 -1
  61. package/types/components/wd-textarea/wd-textarea.vue.d.ts +3 -3
  62. /package/components/wd-input/{placeholder.scss → placeholder.css} +0 -0
@@ -24,7 +24,7 @@ export declare const dorpMenuItemProps: {
24
24
  */
25
25
  modelValue: (NumberConstructor | StringConstructor)[]
26
26
  /**
27
- * 列表数据,对应数据结构 [{label: '标题', value: '0', tip: '提示文字'}]
27
+ * 列表数据,对应数据结构 [{text: '标题', value: '0', tip: '提示文字'}]
28
28
  */
29
29
  options: {
30
30
  type: PropType<Record<string, any>[]>
@@ -58,7 +58,10 @@ export declare const dorpMenuItemProps: {
58
58
  /**
59
59
  * 菜单图标大小
60
60
  */
61
- iconSize: (NumberConstructor | StringConstructor)[]
61
+ iconSize: {
62
+ type: PropType<string>
63
+ default: string
64
+ }
62
65
  /**
63
66
  * 自定义点击事件
64
67
  */
@@ -84,33 +87,16 @@ export declare const dorpMenuItemProps: {
84
87
  type: PropType<string>
85
88
  default: string
86
89
  }
87
- /**
88
- * 自定义下拉菜单popup样式类
89
- */
90
- customPopupClass: {
91
- type: PropType<string>
92
- default: string
93
- }
94
- /**
95
- * 自定义下拉菜单popup样式
96
- */
97
- customPopupStyle: {
98
- type: PropType<string>
99
- default: string
100
- }
101
- /**
102
- * 弹出层高度 这里设置了 就取这里的
103
- */
104
- popupHeight: {
105
- type: PropType<string>
106
- default: string
90
+ selected: {
91
+ type: BooleanConstructor
92
+ default: boolean
107
93
  }
108
94
  /**
109
- * 是否从页面中脱离出来,用于解决各种 fixed 失效问题 (H5: teleport, APP: renderjs, 小程序: root-portal)
95
+ * 选项对象中,选项说明对应的 key
110
96
  */
111
- rootPortal: {
112
- type: BooleanConstructor
113
- default: boolean
97
+ dot: {
98
+ type: NumberConstructor
99
+ default: number
114
100
  }
115
101
  customStyle: {
116
102
  type: PropType<string>
@@ -127,5 +113,7 @@ export type DropMenuItemExpose = {
127
113
  open: () => void
128
114
  close: () => void
129
115
  toggle: () => void
116
+ getSelected: () => boolean
117
+ getDot: () => number
130
118
  }
131
- export type DropMenuItemInstance = ComponentPublicInstance<DropMenuItemProps, DropMenuItemExpose>
119
+ export type DropMenuItemInstance = ComponentPublicInstance<DropMenuItemProps>
@@ -27,7 +27,10 @@ declare const _default: __VLS_WithTemplateSlots<
27
27
  type: import('vue').PropType<string>
28
28
  default: string
29
29
  }
30
- iconSize: (NumberConstructor | StringConstructor)[]
30
+ iconSize: {
31
+ type: import('vue').PropType<string>
32
+ default: string
33
+ }
31
34
  beforeToggle: import('vue').PropType<import('./types').DropMenuItemBeforeToggle>
32
35
  valueKey: {
33
36
  type: import('vue').PropType<string>
@@ -41,22 +44,14 @@ declare const _default: __VLS_WithTemplateSlots<
41
44
  type: import('vue').PropType<string>
42
45
  default: string
43
46
  }
44
- customPopupClass: {
45
- type: import('vue').PropType<string>
46
- default: string
47
- }
48
- customPopupStyle: {
49
- type: import('vue').PropType<string>
50
- default: string
51
- }
52
- popupHeight: {
53
- type: import('vue').PropType<string>
54
- default: string
55
- }
56
- rootPortal: {
47
+ selected: {
57
48
  type: BooleanConstructor
58
49
  default: boolean
59
50
  }
51
+ dot: {
52
+ type: NumberConstructor
53
+ default: number
54
+ }
60
55
  customStyle: {
61
56
  type: import('vue').PropType<string>
62
57
  default: string
@@ -71,6 +66,8 @@ declare const _default: __VLS_WithTemplateSlots<
71
66
  open: () => void
72
67
  close: () => void
73
68
  toggle: () => void
69
+ getSelected: () => boolean
70
+ getDot: () => number
74
71
  },
75
72
  unknown,
76
73
  {},
@@ -78,12 +75,12 @@ declare const _default: __VLS_WithTemplateSlots<
78
75
  import('vue').ComponentOptionsMixin,
79
76
  import('vue').ComponentOptionsMixin,
80
77
  {
81
- 'update:modelValue': (value: string | number) => void
82
- change: (event: { value: string | number; selectedItem: Record<string, any> }) => void
83
- open: () => void
84
- opened: () => void
85
- close: () => void
86
- closed: () => void
78
+ 'update:modelValue': (...args: any[]) => void
79
+ close: (...args: any[]) => void
80
+ closed: (...args: any[]) => void
81
+ open: (...args: any[]) => void
82
+ opened: (...args: any[]) => void
83
+ change: (...args: any[]) => void
87
84
  },
88
85
  string,
89
86
  import('vue').PublicProps,
@@ -115,7 +112,10 @@ declare const _default: __VLS_WithTemplateSlots<
115
112
  type: import('vue').PropType<string>
116
113
  default: string
117
114
  }
118
- iconSize: (NumberConstructor | StringConstructor)[]
115
+ iconSize: {
116
+ type: import('vue').PropType<string>
117
+ default: string
118
+ }
119
119
  beforeToggle: import('vue').PropType<import('./types').DropMenuItemBeforeToggle>
120
120
  valueKey: {
121
121
  type: import('vue').PropType<string>
@@ -129,22 +129,14 @@ declare const _default: __VLS_WithTemplateSlots<
129
129
  type: import('vue').PropType<string>
130
130
  default: string
131
131
  }
132
- customPopupClass: {
133
- type: import('vue').PropType<string>
134
- default: string
135
- }
136
- customPopupStyle: {
137
- type: import('vue').PropType<string>
138
- default: string
139
- }
140
- popupHeight: {
141
- type: import('vue').PropType<string>
142
- default: string
143
- }
144
- rootPortal: {
132
+ selected: {
145
133
  type: BooleanConstructor
146
134
  default: boolean
147
135
  }
136
+ dot: {
137
+ type: NumberConstructor
138
+ default: number
139
+ }
148
140
  customStyle: {
149
141
  type: import('vue').PropType<string>
150
142
  default: string
@@ -155,31 +147,28 @@ declare const _default: __VLS_WithTemplateSlots<
155
147
  }
156
148
  }>
157
149
  > & {
158
- onChange?:
159
- | ((event: { value: string | number; selectedItem: Record<string, any> }) => any)
160
- | undefined
161
- 'onUpdate:modelValue'?: ((value: string | number) => any) | undefined
162
- onClose?: (() => any) | undefined
163
- onClosed?: (() => any) | undefined
164
- onOpen?: (() => any) | undefined
165
- onOpened?: (() => any) | undefined
150
+ onChange?: ((...args: any[]) => any) | undefined
151
+ 'onUpdate:modelValue'?: ((...args: any[]) => any) | undefined
152
+ onClose?: ((...args: any[]) => any) | undefined
153
+ onClosed?: ((...args: any[]) => any) | undefined
154
+ onOpen?: ((...args: any[]) => any) | undefined
155
+ onOpened?: ((...args: any[]) => any) | undefined
166
156
  },
167
157
  {
168
158
  options: Record<string, any>[]
169
159
  customStyle: string
170
160
  customClass: string
171
- rootPortal: boolean
172
161
  icon: string
173
162
  disabled: boolean
163
+ selected: boolean
174
164
  iconName: string
165
+ iconSize: string
175
166
  valueKey: string
176
167
  labelKey: string
177
168
  tipKey: string
178
169
  customTitle: string
179
170
  customIcon: string
180
- customPopupClass: string
181
- customPopupStyle: string
182
- popupHeight: string
171
+ dot: number
183
172
  },
184
173
  {}
185
174
  >,
@@ -91,8 +91,8 @@ declare const _default: __VLS_WithTemplateSlots<
91
91
  duration: string | number
92
92
  safeAreaInsetBottom: boolean
93
93
  height: number
94
- showScrollbar: boolean
95
94
  anchors: number[]
95
+ showScrollbar: boolean
96
96
  contentDraggable: boolean
97
97
  },
98
98
  {}
@@ -75,7 +75,7 @@ declare const _default: __VLS_WithTemplateSlots<
75
75
  customClass: string
76
76
  rules: FormRules
77
77
  resetOnChange: boolean
78
- errorType: 'none' | 'message' | 'toast'
78
+ errorType: 'message' | 'toast' | 'none'
79
79
  },
80
80
  {}
81
81
  >,
@@ -75,8 +75,8 @@ declare const _default: __VLS_WithTemplateSlots<
75
75
  required: boolean
76
76
  center: boolean
77
77
  rules: import('../wd-form/types').FormItemRule[]
78
- isLink: boolean
79
78
  labelWidth: string
79
+ isLink: boolean
80
80
  },
81
81
  {}
82
82
  >,
@@ -129,8 +129,8 @@ declare const _default: __VLS_WithTemplateSlots<
129
129
  customClass: string
130
130
  isDot: boolean
131
131
  icon: string
132
- iconSize: string
133
132
  useSlot: boolean
133
+ iconSize: string
134
134
  customIcon: string
135
135
  customText: string
136
136
  linkType: import('./types').LinkType
@@ -160,8 +160,8 @@ declare const _default: __VLS_WithTemplateSlots<
160
160
  click: (...args: any[]) => void
161
161
  input: (...args: any[]) => void
162
162
  'update:modelValue': (...args: any[]) => void
163
- clear: (...args: any[]) => void
164
163
  confirm: (...args: any[]) => void
164
+ clear: (...args: any[]) => void
165
165
  focus: (...args: any[]) => void
166
166
  blur: (...args: any[]) => void
167
167
  keyboardheightchange: (...args: any[]) => void
@@ -326,8 +326,8 @@ declare const _default: __VLS_WithTemplateSlots<
326
326
  onBlur?: ((...args: any[]) => any) | undefined
327
327
  onInput?: ((...args: any[]) => any) | undefined
328
328
  'onUpdate:modelValue'?: ((...args: any[]) => any) | undefined
329
- onClear?: ((...args: any[]) => any) | undefined
330
329
  onConfirm?: ((...args: any[]) => any) | undefined
330
+ onClear?: ((...args: any[]) => any) | undefined
331
331
  onKeyboardheightchange?: ((...args: any[]) => any) | undefined
332
332
  onClicksuffixicon?: ((...args: any[]) => any) | undefined
333
333
  onClickprefixicon?: ((...args: any[]) => any) | undefined
@@ -343,10 +343,10 @@ declare const _default: __VLS_WithTemplateSlots<
343
343
  error: boolean
344
344
  disabled: boolean
345
345
  rules: FormItemRule[]
346
- customLabelClass: string
347
- markerSide: 'before' | 'after'
348
346
  labelWidth: string
349
347
  alignRight: boolean
348
+ customLabelClass: string
349
+ markerSide: 'before' | 'after'
350
350
  clearable: boolean
351
351
  focus: boolean
352
352
  customInputClass: string
@@ -177,8 +177,8 @@ declare const _default: __VLS_WithTemplateSlots<
177
177
  modal: boolean
178
178
  safeAreaInsetBottom: boolean
179
179
  modelValue: string
180
- visible: boolean
181
180
  mode: import('./types').KeyboardMode
181
+ visible: boolean
182
182
  maxlength: number
183
183
  showDeleteKey: boolean
184
184
  randomKeyOrder: boolean
@@ -114,9 +114,9 @@ declare const _default: __VLS_WithTemplateSlots<
114
114
  zIndex: number
115
115
  rootPortal: boolean
116
116
  position: import('./types').NotifyPosition
117
+ message: string | number
117
118
  selector: string
118
119
  visible: boolean
119
- message: string | number
120
120
  background: string
121
121
  },
122
122
  {}
@@ -164,8 +164,8 @@ declare const _default: __VLS_WithTemplateSlots<
164
164
  modal: boolean
165
165
  safeAreaInsetBottom: boolean
166
166
  modelValue: string
167
- visible: boolean
168
167
  mode: import('./types').KeyboardMode
168
+ visible: boolean
169
169
  maxlength: number
170
170
  showDeleteKey: boolean
171
171
  randomKeyOrder: boolean
@@ -146,8 +146,8 @@ declare const _default: __VLS_WithTemplateSlots<
146
146
  'update:modelValue': (...args: any[]) => void
147
147
  cancel: (...args: any[]) => void
148
148
  open: (...args: any[]) => void
149
- clear: (...args: any[]) => void
150
149
  confirm: (...args: any[]) => void
150
+ clear: (...args: any[]) => void
151
151
  },
152
152
  string,
153
153
  import('vue').PublicProps,
@@ -288,8 +288,8 @@ declare const _default: __VLS_WithTemplateSlots<
288
288
  'onUpdate:modelValue'?: ((...args: any[]) => any) | undefined
289
289
  onCancel?: ((...args: any[]) => any) | undefined
290
290
  onOpen?: ((...args: any[]) => any) | undefined
291
- onClear?: ((...args: any[]) => any) | undefined
292
291
  onConfirm?: ((...args: any[]) => any) | undefined
292
+ onClear?: ((...args: any[]) => any) | undefined
293
293
  },
294
294
  {
295
295
  customStyle: string
@@ -306,21 +306,21 @@ declare const _default: __VLS_WithTemplateSlots<
306
306
  loading: boolean
307
307
  loadingColor: string
308
308
  immediateChange: boolean
309
- columnsHeight: number
310
- valueKey: string
311
- labelKey: string
312
- columns: (string | number | ColumnItem | (string | number | ColumnItem)[])[]
313
309
  rules: FormItemRule[]
314
- customLabelClass: string
315
- customValueClass: string
316
- ellipsis: boolean
317
- markerSide: 'before' | 'after'
318
310
  labelWidth: string
311
+ useLabelSlot: boolean
312
+ useDefaultSlot: boolean
319
313
  alignRight: boolean
314
+ ellipsis: boolean
320
315
  customViewClass: string
316
+ customLabelClass: string
317
+ customValueClass: string
318
+ columns: (string | number | ColumnItem | (string | number | ColumnItem)[])[]
319
+ columnsHeight: number
320
+ markerSide: 'before' | 'after'
321
+ valueKey: string
322
+ labelKey: string
321
323
  clearable: boolean
322
- useLabelSlot: boolean
323
- useDefaultSlot: boolean
324
324
  },
325
325
  {}
326
326
  >,
@@ -148,11 +148,11 @@ declare const _default: import('vue').DefineComponent<
148
148
  loading: boolean
149
149
  loadingColor: string
150
150
  immediateChange: boolean
151
+ columns: (string | number | string[] | number[] | ColumnItem | ColumnItem[])[]
151
152
  columnsHeight: number
152
- itemHeight: number
153
153
  valueKey: string
154
154
  labelKey: string
155
- columns: (string | number | string[] | number[] | ColumnItem | ColumnItem[])[]
155
+ itemHeight: number
156
156
  },
157
157
  {}
158
158
  >
@@ -161,8 +161,8 @@ declare const _default: __VLS_WithTemplateSlots<
161
161
  cancel: (...args: any[]) => void
162
162
  open: (...args: any[]) => void
163
163
  change: (...args: any[]) => void
164
- clear: (...args: any[]) => void
165
164
  confirm: (...args: any[]) => void
165
+ clear: (...args: any[]) => void
166
166
  },
167
167
  string,
168
168
  import('vue').PublicProps,
@@ -319,8 +319,8 @@ declare const _default: __VLS_WithTemplateSlots<
319
319
  onClose?: ((...args: any[]) => any) | undefined
320
320
  onCancel?: ((...args: any[]) => any) | undefined
321
321
  onOpen?: ((...args: any[]) => any) | undefined
322
- onClear?: ((...args: any[]) => any) | undefined
323
322
  onConfirm?: ((...args: any[]) => any) | undefined
323
+ onClear?: ((...args: any[]) => any) | undefined
324
324
  },
325
325
  {
326
326
  customStyle: string
@@ -339,22 +339,22 @@ declare const _default: __VLS_WithTemplateSlots<
339
339
  loading: boolean
340
340
  loadingColor: string
341
341
  scrollIntoView: boolean
342
- valueKey: string
343
- labelKey: string
344
- columns: Record<string, any>[]
345
342
  rules: import('../wd-form/types.js').FormItemRule[]
346
- customLabelClass: string
347
- customValueClass: string
348
- ellipsis: boolean
349
- markerSide: 'before' | 'after'
350
343
  labelWidth: string
344
+ useLabelSlot: boolean
345
+ useDefaultSlot: boolean
351
346
  alignRight: boolean
352
347
  showConfirm: boolean
353
- clearable: boolean
348
+ ellipsis: boolean
349
+ customLabelClass: string
350
+ customValueClass: string
351
+ columns: Record<string, any>[]
354
352
  customContentClass: string
353
+ markerSide: 'before' | 'after'
355
354
  min: number
356
- useLabelSlot: boolean
357
- useDefaultSlot: boolean
355
+ valueKey: string
356
+ labelKey: string
357
+ clearable: boolean
358
358
  filterable: boolean
359
359
  },
360
360
  {}
@@ -86,8 +86,8 @@ declare const _default: __VLS_WithTemplateSlots<
86
86
  {
87
87
  start: (...args: any[]) => void
88
88
  end: (...args: any[]) => void
89
- clear: (...args: any[]) => void
90
89
  confirm: (...args: any[]) => void
90
+ clear: (...args: any[]) => void
91
91
  signing: (...args: any[]) => void
92
92
  },
93
93
  string,
@@ -165,8 +165,8 @@ declare const _default: __VLS_WithTemplateSlots<
165
165
  }
166
166
  }>
167
167
  > & {
168
- onClear?: ((...args: any[]) => any) | undefined
169
168
  onConfirm?: ((...args: any[]) => any) | undefined
169
+ onClear?: ((...args: any[]) => any) | undefined
170
170
  onStart?: ((...args: any[]) => any) | undefined
171
171
  onEnd?: ((...args: any[]) => any) | undefined
172
172
  onSigning?: ((...args: any[]) => any) | undefined
@@ -69,8 +69,8 @@ declare const _default: __VLS_WithTemplateSlots<
69
69
  customStyle: string
70
70
  customClass: string
71
71
  vertical: boolean
72
- active: number
73
72
  dot: boolean
73
+ active: number
74
74
  alignCenter: boolean
75
75
  },
76
76
  {}
@@ -312,8 +312,8 @@ declare const __VLS_component: import('vue').DefineComponent<
312
312
  action: boolean
313
313
  current: number
314
314
  direction: import('./types').DirectionType
315
- valueKey: string
316
315
  height: string | number
316
+ valueKey: string
317
317
  radius: string
318
318
  imgWidth: string | number
319
319
  imageMode: import('../wd-img/types').ImageMode
@@ -175,8 +175,8 @@ declare const _default: __VLS_WithTemplateSlots<
175
175
  customClass: string
176
176
  duration: number
177
177
  modelValue: string | number
178
- sticky: boolean
179
178
  mode: import('./types').TagsMode
179
+ sticky: boolean
180
180
  inactiveColor: string
181
181
  offsetTop: number
182
182
  slidableNum: number
@@ -171,8 +171,8 @@ declare const _default: __VLS_WithTemplateSlots<
171
171
  click: (...args: any[]) => void
172
172
  input: (...args: any[]) => void
173
173
  'update:modelValue': (...args: any[]) => void
174
- clear: (...args: any[]) => void
175
174
  confirm: (...args: any[]) => void
175
+ clear: (...args: any[]) => void
176
176
  focus: (...args: any[]) => void
177
177
  blur: (...args: any[]) => void
178
178
  keyboardheightchange: (...args: any[]) => void
@@ -348,8 +348,8 @@ declare const _default: __VLS_WithTemplateSlots<
348
348
  onBlur?: ((...args: any[]) => any) | undefined
349
349
  onInput?: ((...args: any[]) => any) | undefined
350
350
  'onUpdate:modelValue'?: ((...args: any[]) => any) | undefined
351
- onClear?: ((...args: any[]) => any) | undefined
352
351
  onConfirm?: ((...args: any[]) => any) | undefined
352
+ onClear?: ((...args: any[]) => any) | undefined
353
353
  onKeyboardheightchange?: ((...args: any[]) => any) | undefined
354
354
  onClickprefixicon?: ((...args: any[]) => any) | undefined
355
355
  onLinechange?: ((...args: any[]) => any) | undefined
@@ -365,10 +365,10 @@ declare const _default: __VLS_WithTemplateSlots<
365
365
  error: boolean
366
366
  disabled: boolean
367
367
  rules: FormItemRule[]
368
+ labelWidth: string
368
369
  prop: string
369
370
  customLabelClass: string
370
371
  markerSide: 'before' | 'after'
371
- labelWidth: string
372
372
  clearable: boolean
373
373
  focus: boolean
374
374
  placeholderClass: string