@fewangsit/wangsvue-fats 1.0.0-alpha.49 → 1.0.0-alpha.50
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/components/fieldwrapper/FieldWrapper.vue.d.ts +12 -2
- package/components/inputnumber/InputNumber.vue.d.ts +5 -0
- package/package.json +1 -1
- package/stats.html +1 -1
- package/wangsvue-fats.js +4115 -4104
- package/wangsvue-fats.system.js +48 -48
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Slot } from 'vue';
|
|
2
|
+
|
|
3
|
+
import { ClassComponent } from '../ts-helpers';
|
|
2
4
|
|
|
3
5
|
export interface FieldWrapperLocaleConfig {
|
|
4
6
|
/**
|
|
@@ -64,6 +66,14 @@ export interface FieldWrapperProps {
|
|
|
64
66
|
tooltipPos?: 'top' | 'right' | 'bottom' | 'left';
|
|
65
67
|
}
|
|
66
68
|
|
|
67
|
-
|
|
69
|
+
export interface FieldWrapperSlots {
|
|
70
|
+
'label-addon': Slot;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
declare class FieldWrapper extends ClassComponent<
|
|
74
|
+
FieldWrapperProps,
|
|
75
|
+
FieldWrapperSlots,
|
|
76
|
+
unknown
|
|
77
|
+
> {}
|
|
68
78
|
|
|
69
79
|
export default FieldWrapper;
|
|
@@ -262,6 +262,11 @@ export type InputNumberEmits = {
|
|
|
262
262
|
export interface InputNumberSlots {
|
|
263
263
|
'addon-left': Slot;
|
|
264
264
|
'addon-right': Slot;
|
|
265
|
+
/**
|
|
266
|
+
* Slot for content in the right side of field label
|
|
267
|
+
*/
|
|
268
|
+
'field-label-addon': Slot;
|
|
269
|
+
'validatormessage': Slot;
|
|
265
270
|
}
|
|
266
271
|
|
|
267
272
|
/**
|