@silver-formily/element-plus 3.0.3 → 4.0.1

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 (42) hide show
  1. package/README.en-US.md +3 -1
  2. package/README.md +3 -1
  3. package/esm/autocomplete/index.d.ts +41 -1
  4. package/esm/cascader/index.d.ts +31 -1
  5. package/esm/checkbox/index.d.ts +819 -1
  6. package/esm/color-picker/index.d.ts +210 -1
  7. package/esm/color-picker-panel/index.d.ts +130 -1
  8. package/esm/date-picker/index.d.ts +447 -1
  9. package/esm/date-picker-panel/index.d.ts +147 -1
  10. package/esm/editable/index.d.ts +60 -1
  11. package/esm/form-item/index.d.ts +83 -1
  12. package/esm/form-layout/form-layout.vue.d.ts +2 -2
  13. package/esm/index.d.ts +3 -1
  14. package/esm/index.mjs +2 -1
  15. package/esm/input/index.d.ts +43 -1
  16. package/esm/input-number/index.d.ts +328 -1
  17. package/esm/input-tag/index.d.ts +26 -1
  18. package/esm/mention/index.d.ts +36 -1
  19. package/esm/password/index.d.ts +42 -1
  20. package/esm/picker-select/index.d.ts +47 -0
  21. package/esm/picker-select/index.mjs +14 -0
  22. package/esm/picker-select/index.mjs.map +1 -0
  23. package/esm/picker-select/picker-select.mjs +186 -0
  24. package/esm/picker-select/picker-select.mjs.map +1 -0
  25. package/esm/picker-select/types.d.ts +23 -0
  26. package/esm/query-form-item/index.d.ts +152 -1
  27. package/esm/radio/index.d.ts +76 -22
  28. package/esm/rate/index.d.ts +186 -1
  29. package/esm/segmented/index.d.ts +28 -1
  30. package/esm/select/index.d.ts +112 -1
  31. package/esm/select-table/index.d.ts +61 -1
  32. package/esm/select-table/types.d.ts +22 -0
  33. package/esm/slider/index.d.ts +178 -1
  34. package/esm/switch/index.d.ts +298 -1
  35. package/esm/time-picker/index.d.ts +446 -1
  36. package/esm/time-select/index.d.ts +188 -1
  37. package/esm/transfer/index.d.ts +268 -1
  38. package/esm/tree/index.d.ts +45 -1
  39. package/esm/tree/types.d.ts +18 -0
  40. package/esm/tree-select/index.d.ts +19 -1
  41. package/esm/upload/index.d.ts +129 -1
  42. package/package.json +4 -4
@@ -1,10 +1,69 @@
1
1
  import { IFormItemProps } from "../form-item/types.js";
2
2
  import { ElPopover } from "element-plus";
3
+ import * as _$vue from "vue";
3
4
 
4
5
  //#region src/editable/index.d.ts
5
6
  type EditableProps = IFormItemProps;
6
7
  type EditablePopoverProps = typeof ElPopover;
7
- declare const Editable: any;
8
+ declare const Editable: {
9
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<IFormItemProps & {
10
+ editProps?: IFormItemProps;
11
+ }> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {
12
+ size: "small" | "default" | "large";
13
+ feedbackLayout: "loose" | "terse" | "popover";
14
+ }, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
15
+ P: {};
16
+ B: {};
17
+ D: {};
18
+ C: {};
19
+ M: {};
20
+ Defaults: {};
21
+ }, Readonly<IFormItemProps & {
22
+ editProps?: IFormItemProps;
23
+ }> & Readonly<{}>, {}, {}, {}, {}, {
24
+ size: "small" | "default" | "large";
25
+ feedbackLayout: "loose" | "terse" | "popover";
26
+ }>;
27
+ __isFragment?: never;
28
+ __isTeleport?: never;
29
+ __isSuspense?: never;
30
+ } & _$vue.ComponentOptionsBase<Readonly<IFormItemProps & {
31
+ editProps?: IFormItemProps;
32
+ }> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {
33
+ size: "small" | "default" | "large";
34
+ feedbackLayout: "loose" | "terse" | "popover";
35
+ }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
36
+ $slots: {
37
+ default?: (props: {}) => any;
38
+ };
39
+ }) & {
40
+ Popover: {
41
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<IFormItemProps> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {
42
+ size: "small" | "default" | "large";
43
+ feedbackLayout: "loose" | "terse" | "popover";
44
+ }, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
45
+ P: {};
46
+ B: {};
47
+ D: {};
48
+ C: {};
49
+ M: {};
50
+ Defaults: {};
51
+ }, Readonly<IFormItemProps> & Readonly<{}>, {}, {}, {}, {}, {
52
+ size: "small" | "default" | "large";
53
+ feedbackLayout: "loose" | "terse" | "popover";
54
+ }>;
55
+ __isFragment?: never;
56
+ __isTeleport?: never;
57
+ __isSuspense?: never;
58
+ } & _$vue.ComponentOptionsBase<Readonly<IFormItemProps> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {
59
+ size: "small" | "default" | "large";
60
+ feedbackLayout: "loose" | "terse" | "popover";
61
+ }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
62
+ $slots: {
63
+ default?: (props: {}) => any;
64
+ };
65
+ });
66
+ };
8
67
  //#endregion
9
68
  export { Editable, EditablePopoverProps, EditableProps };
10
69
  //# sourceMappingURL=index.d.ts.map
@@ -1,9 +1,91 @@
1
1
  import { IFormItemProps } from "./types.js";
2
2
  import { _default } from "./form-item.vue.js";
3
+ import * as _$element_plus0 from "element-plus";
4
+ import * as _$vue from "vue";
3
5
 
4
6
  //#region src/form-item/index.d.ts
5
7
  declare function fieldFeedbackMapper(props: any, field: any): any;
6
- declare const FormItem: any;
8
+ declare const FormItem: {
9
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<IFormItemProps> & Readonly<{}>, {
10
+ feedbackTooltipRef: _$vue.Ref<_$element_plus0.TooltipInstance, _$element_plus0.TooltipInstance>;
11
+ }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {
12
+ asterisk: boolean;
13
+ colon: boolean;
14
+ labelWrap: boolean;
15
+ fullness: boolean;
16
+ }, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
17
+ P: {};
18
+ B: {};
19
+ D: {};
20
+ C: {};
21
+ M: {};
22
+ Defaults: {};
23
+ }, Readonly<IFormItemProps> & Readonly<{}>, {
24
+ feedbackTooltipRef: _$vue.Ref<_$element_plus0.TooltipInstance, _$element_plus0.TooltipInstance>;
25
+ }, {}, {}, {}, {
26
+ asterisk: boolean;
27
+ colon: boolean;
28
+ labelWrap: boolean;
29
+ fullness: boolean;
30
+ }>;
31
+ __isFragment?: never;
32
+ __isTeleport?: never;
33
+ __isSuspense?: never;
34
+ } & _$vue.ComponentOptionsBase<Readonly<IFormItemProps> & Readonly<{}>, {
35
+ feedbackTooltipRef: _$vue.Ref<_$element_plus0.TooltipInstance, _$element_plus0.TooltipInstance>;
36
+ }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {
37
+ asterisk: boolean;
38
+ colon: boolean;
39
+ labelWrap: boolean;
40
+ fullness: boolean;
41
+ }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
42
+ $slots: {
43
+ default?: (props: {}) => any;
44
+ } & {
45
+ default?: (props: {}) => any;
46
+ };
47
+ }) & {
48
+ BaseItem: {
49
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<IFormItemProps> & Readonly<{}>, {
50
+ feedbackTooltipRef: _$vue.Ref<_$element_plus0.TooltipInstance, _$element_plus0.TooltipInstance>;
51
+ }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {
52
+ asterisk: boolean;
53
+ colon: boolean;
54
+ labelWrap: boolean;
55
+ fullness: boolean;
56
+ }, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
57
+ P: {};
58
+ B: {};
59
+ D: {};
60
+ C: {};
61
+ M: {};
62
+ Defaults: {};
63
+ }, Readonly<IFormItemProps> & Readonly<{}>, {
64
+ feedbackTooltipRef: _$vue.Ref<_$element_plus0.TooltipInstance, _$element_plus0.TooltipInstance>;
65
+ }, {}, {}, {}, {
66
+ asterisk: boolean;
67
+ colon: boolean;
68
+ labelWrap: boolean;
69
+ fullness: boolean;
70
+ }>;
71
+ __isFragment?: never;
72
+ __isTeleport?: never;
73
+ __isSuspense?: never;
74
+ } & _$vue.ComponentOptionsBase<Readonly<IFormItemProps> & Readonly<{}>, {
75
+ feedbackTooltipRef: _$vue.Ref<_$element_plus0.TooltipInstance, _$element_plus0.TooltipInstance>;
76
+ }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {
77
+ asterisk: boolean;
78
+ colon: boolean;
79
+ labelWrap: boolean;
80
+ fullness: boolean;
81
+ }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
82
+ $slots: {
83
+ default?: (props: {}) => any;
84
+ } & {
85
+ default?: (props: {}) => any;
86
+ };
87
+ });
88
+ };
7
89
  //#endregion
8
90
  export { FormItem, fieldFeedbackMapper };
9
91
  //# sourceMappingURL=index.d.ts.map
@@ -7,12 +7,12 @@ type __VLS_Slots = {} & {
7
7
  default?: (props: typeof __VLS_11) => any;
8
8
  };
9
9
  declare const __VLS_base: _$vue.DefineComponent<IFormLayoutProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<IFormLayoutProps> & Readonly<{}>, {
10
- layout: "vertical" | "horizontal" | "inline" | ("vertical" | "horizontal" | "inline")[];
11
10
  size: "small" | "default" | "large";
11
+ layout: "vertical" | "horizontal" | "inline" | ("vertical" | "horizontal" | "inline")[];
12
+ tag: string;
12
13
  colon: boolean;
13
14
  labelWrap: boolean;
14
15
  fullness: boolean;
15
- tag: string;
16
16
  shallow: boolean;
17
17
  statusIcon: boolean;
18
18
  }, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
package/esm/index.d.ts CHANGED
@@ -29,6 +29,8 @@ import { InputNumber, InputNumberProps } from "./input-number/index.js";
29
29
  import { InputTag } from "./input-tag/index.js";
30
30
  import { Mention } from "./mention/index.js";
31
31
  import { Password, PasswordProps } from "./password/index.js";
32
+ import { PickerSelectOpenContext, PickerSelectOpenPicker, PickerSelectOption, PickerSelectProps } from "./picker-select/types.js";
33
+ import { PickerSelect } from "./picker-select/index.js";
32
34
  import { PreviewText } from "./preview-text/index.js";
33
35
  import { IQueryFormLightProps, IQueryFormProps, QueryFormVisible, QueryFormVisibleContext } from "./query-form/types.js";
34
36
  import { QueryForm } from "./query-form/index.js";
@@ -50,4 +52,4 @@ import { Transfer, TransferProps } from "./transfer/index.js";
50
52
  import { Tree } from "./tree/index.js";
51
53
  import { TreeSelect } from "./tree-select/index.js";
52
54
  import { Upload } from "./upload/index.js";
53
- export { ArrayCards, ArrayCollapse, ArrayItems, ArrayListTabs, ArrayTable, ArrayTabs, Autocomplete, Cascader, Checkbox, ColorPicker, ColorPickerPanel, ColorPickerPanelProps, ColorPickerProps, DatePicker, DatePickerPanel, Editable, EditablePopoverProps, EditableProps, _default as Form, _default$1 as FormBaseItem, FormButtonGroup, composeFormCollapse as FormCollapse, FormCollapseItem, FormDialog, FormDrawer, FormGrid, FormItem, _default$2 as FormLayout, FormStep, composeFormTab as FormTab, composeFormTab, IFormItemProps, IQueryFormItemProps, IQueryFormLightProps, IQueryFormProps, Input, InputNumber, InputNumberProps, InputTag, Mention, Password, PasswordProps, PreviewText, QueryForm, QueryFormItem, QueryFormItemMode, QueryFormItemPagination, QueryFormItemPaginationMap, QueryFormItemPaginationProps, QueryFormItemQueryProps, QueryFormItemRequest, QueryFormItemRequestResultObject, QueryFormItemRequestSuccessPayload, QueryFormVisible, QueryFormVisibleContext, Radio, Rate, RateProps, Reset, Segmented, Select, SelectTable, Slider, SliderProps, Space, Submit, Switch, SwitchProps, TimePicker, TimePickerProps, TimeSelect, Transfer, TransferProps, Tree, TreeSelect, Upload, fieldFeedbackMapper };
55
+ export { ArrayCards, ArrayCollapse, ArrayItems, ArrayListTabs, ArrayTable, ArrayTabs, Autocomplete, Cascader, Checkbox, ColorPicker, ColorPickerPanel, ColorPickerPanelProps, ColorPickerProps, DatePicker, DatePickerPanel, Editable, EditablePopoverProps, EditableProps, _default as Form, _default$1 as FormBaseItem, FormButtonGroup, composeFormCollapse as FormCollapse, FormCollapseItem, FormDialog, FormDrawer, FormGrid, FormItem, _default$2 as FormLayout, FormStep, composeFormTab as FormTab, composeFormTab, IFormItemProps, IQueryFormItemProps, IQueryFormLightProps, IQueryFormProps, Input, InputNumber, InputNumberProps, InputTag, Mention, Password, PasswordProps, PickerSelect, PickerSelectOpenContext, PickerSelectOpenPicker, PickerSelectOption, PickerSelectProps, PreviewText, QueryForm, QueryFormItem, QueryFormItemMode, QueryFormItemPagination, QueryFormItemPaginationMap, QueryFormItemPaginationProps, QueryFormItemQueryProps, QueryFormItemRequest, QueryFormItemRequestResultObject, QueryFormItemRequestSuccessPayload, QueryFormVisible, QueryFormVisibleContext, Radio, Rate, RateProps, Reset, Segmented, Select, SelectTable, Slider, SliderProps, Space, Submit, Switch, SwitchProps, TimePicker, TimePickerProps, TimeSelect, Transfer, TransferProps, Tree, TreeSelect, Upload, fieldFeedbackMapper };
package/esm/index.mjs CHANGED
@@ -29,6 +29,7 @@ import InputNumber from "./input-number/index.mjs";
29
29
  import InputTag from "./input-tag/index.mjs";
30
30
  import Mention from "./mention/index.mjs";
31
31
  import Password from "./password/index.mjs";
32
+ import PickerSelect from "./picker-select/index.mjs";
32
33
  import Radio from "./radio/index.mjs";
33
34
  import Rate from "./rate/index.mjs";
34
35
  import Select from "./select/index.mjs";
@@ -47,4 +48,4 @@ import { Space } from "./space/index.mjs";
47
48
  import Transfer from "./transfer/index.mjs";
48
49
  import Tree from "./tree/index.mjs";
49
50
  import Upload from "./upload/index.mjs";
50
- export { ArrayCards, ArrayCollapse, ArrayItems, ArrayListTabs, ArrayTable, ArrayTabs, Autocomplete, Cascader, Checkbox, ColorPicker, ColorPickerPanel, DatePicker, DatePickerPanel, Editable, _sfc_main as Form, _sfc_main$1 as FormBaseItem, FormButtonGroup, composeFormCollapse as FormCollapse, FormCollapseItem, FormDialog, FormDrawer, FormGrid, FormItem, _sfc_main$2 as FormLayout, FormStep, composeFormTab as FormTab, composeFormTab, Input, InputNumber, InputTag, Mention, Password, PreviewText, QueryForm, QueryFormItem, Radio, Rate, Reset, Segmented, Select, SelectTable, Slider, Space, Submit, Switch, TimePicker, TimeSelect, Transfer, Tree, TreeSelect, Upload, fieldFeedbackMapper };
51
+ export { ArrayCards, ArrayCollapse, ArrayItems, ArrayListTabs, ArrayTable, ArrayTabs, Autocomplete, Cascader, Checkbox, ColorPicker, ColorPickerPanel, DatePicker, DatePickerPanel, Editable, _sfc_main as Form, _sfc_main$1 as FormBaseItem, FormButtonGroup, composeFormCollapse as FormCollapse, FormCollapseItem, FormDialog, FormDrawer, FormGrid, FormItem, _sfc_main$2 as FormLayout, FormStep, composeFormTab as FormTab, composeFormTab, Input, InputNumber, InputTag, Mention, Password, PickerSelect, PreviewText, QueryForm, QueryFormItem, Radio, Rate, Reset, Segmented, Select, SelectTable, Slider, Space, Submit, Switch, TimePicker, TimeSelect, Transfer, Tree, TreeSelect, Upload, fieldFeedbackMapper };
@@ -1,5 +1,47 @@
1
+ import * as _$vue from "vue";
2
+
1
3
  //#region src/input/index.d.ts
2
- declare const Input: any;
4
+ declare const Input: {
5
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {}, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
6
+ P: {};
7
+ B: {};
8
+ D: {};
9
+ C: {};
10
+ M: {};
11
+ Defaults: {};
12
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
13
+ __isFragment?: never;
14
+ __isTeleport?: never;
15
+ __isSuspense?: never;
16
+ } & _$vue.ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {}, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
17
+ $slots: {
18
+ prefix?: () => any;
19
+ suffix?: () => any;
20
+ prepend?: () => any;
21
+ append?: () => any;
22
+ };
23
+ }) & {
24
+ TextArea: {
25
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {}, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
26
+ P: {};
27
+ B: {};
28
+ D: {};
29
+ C: {};
30
+ M: {};
31
+ Defaults: {};
32
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
33
+ __isFragment?: never;
34
+ __isTeleport?: never;
35
+ __isSuspense?: never;
36
+ } & _$vue.ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {}, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
37
+ $slots: {
38
+ prefix?: () => any;
39
+ suffix?: () => any;
40
+ prepend?: () => any;
41
+ append?: () => any;
42
+ };
43
+ });
44
+ };
3
45
  //#endregion
4
46
  export { Input };
5
47
  //# sourceMappingURL=index.d.ts.map
@@ -1,8 +1,335 @@
1
1
  import { ElInputNumber } from "element-plus";
2
+ import * as _$vue from "vue";
3
+ import * as _$element_plus_es_utils_index_mjs0 from "element-plus/es/utils/index.mjs";
2
4
 
3
5
  //#region src/input-number/index.d.ts
4
6
  type InputNumberProps = typeof ElInputNumber;
5
- declare const InputNumber: any;
7
+ declare const InputNumber: _$element_plus_es_utils_index_mjs0.SFCWithInstall<{
8
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<_$vue.ExtractPropTypes<{
9
+ modelValue: {
10
+ type: _$vue.PropType<number>;
11
+ };
12
+ name: {
13
+ type: _$vue.PropType<string>;
14
+ };
15
+ disabled: {
16
+ type: _$vue.PropType<boolean>;
17
+ default: undefined;
18
+ };
19
+ size: {
20
+ type: _$vue.PropType<"" | "default" | "small" | "large">;
21
+ };
22
+ readonly: {
23
+ type: _$vue.PropType<boolean>;
24
+ default: boolean;
25
+ };
26
+ placeholder: {
27
+ type: _$vue.PropType<string>;
28
+ };
29
+ validateEvent: {
30
+ type: _$vue.PropType<boolean>;
31
+ default: boolean;
32
+ };
33
+ valueOnClear: {
34
+ type: _$vue.PropType<number | "min" | "max">;
35
+ default: null;
36
+ };
37
+ ariaLabel: {
38
+ type: _$vue.PropType<string>;
39
+ };
40
+ id: {
41
+ type: _$vue.PropType<string>;
42
+ default: undefined;
43
+ };
44
+ min: {
45
+ type: _$vue.PropType<number>;
46
+ default: number;
47
+ };
48
+ max: {
49
+ type: _$vue.PropType<number>;
50
+ default: number;
51
+ };
52
+ inputmode: {
53
+ type: _$vue.PropType<"search" | "text" | "email" | "tel" | "url" | "none" | "numeric" | "decimal">;
54
+ default: undefined;
55
+ };
56
+ align: {
57
+ type: _$vue.PropType<"right" | "left" | "center">;
58
+ default: string;
59
+ };
60
+ step: {
61
+ type: _$vue.PropType<number>;
62
+ default: number;
63
+ };
64
+ stepStrictly: {
65
+ type: _$vue.PropType<boolean>;
66
+ default: boolean;
67
+ };
68
+ controls: {
69
+ type: _$vue.PropType<boolean>;
70
+ default: boolean;
71
+ };
72
+ controlsPosition: {
73
+ type: _$vue.PropType<"" | "right">;
74
+ default: string;
75
+ };
76
+ precision: {
77
+ type: _$vue.PropType<number>;
78
+ };
79
+ disabledScientific: {
80
+ type: _$vue.PropType<boolean>;
81
+ };
82
+ }>> & {
83
+ "onUpdate:modelValue"?: ((val: number | undefined) => any) | undefined;
84
+ onInput?: ((val: number | null | undefined) => any) | undefined;
85
+ onFocus?: ((e: FocusEvent) => any) | undefined;
86
+ onChange?: ((cur: number | undefined, prev: number | undefined) => any) | undefined;
87
+ onBlur?: ((e: FocusEvent) => any) | undefined;
88
+ }, {
89
+ focus: () => void;
90
+ blur: () => void;
91
+ }, unknown, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
92
+ focus: (e: FocusEvent) => void;
93
+ "update:modelValue": (val: number | undefined) => void;
94
+ change: (cur: number | undefined, prev: number | undefined) => void;
95
+ input: (val: number | null | undefined) => void;
96
+ blur: (e: FocusEvent) => void;
97
+ }, _$vue.PublicProps, {
98
+ disabled: boolean;
99
+ id: string;
100
+ valueOnClear: "min" | "max" | number | null;
101
+ min: number;
102
+ max: number;
103
+ inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal";
104
+ validateEvent: boolean;
105
+ readonly: boolean;
106
+ align: "left" | "right" | "center";
107
+ step: number;
108
+ controls: boolean;
109
+ controlsPosition: "" | "right";
110
+ stepStrictly: boolean;
111
+ }, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
112
+ P: {};
113
+ B: {};
114
+ D: {};
115
+ C: {};
116
+ M: {};
117
+ Defaults: {};
118
+ }, Readonly<_$vue.ExtractPropTypes<{
119
+ modelValue: {
120
+ type: _$vue.PropType<number>;
121
+ };
122
+ name: {
123
+ type: _$vue.PropType<string>;
124
+ };
125
+ disabled: {
126
+ type: _$vue.PropType<boolean>;
127
+ default: undefined;
128
+ };
129
+ size: {
130
+ type: _$vue.PropType<"" | "default" | "small" | "large">;
131
+ };
132
+ readonly: {
133
+ type: _$vue.PropType<boolean>;
134
+ default: boolean;
135
+ };
136
+ placeholder: {
137
+ type: _$vue.PropType<string>;
138
+ };
139
+ validateEvent: {
140
+ type: _$vue.PropType<boolean>;
141
+ default: boolean;
142
+ };
143
+ valueOnClear: {
144
+ type: _$vue.PropType<number | "min" | "max">;
145
+ default: null;
146
+ };
147
+ ariaLabel: {
148
+ type: _$vue.PropType<string>;
149
+ };
150
+ id: {
151
+ type: _$vue.PropType<string>;
152
+ default: undefined;
153
+ };
154
+ min: {
155
+ type: _$vue.PropType<number>;
156
+ default: number;
157
+ };
158
+ max: {
159
+ type: _$vue.PropType<number>;
160
+ default: number;
161
+ };
162
+ inputmode: {
163
+ type: _$vue.PropType<"search" | "text" | "email" | "tel" | "url" | "none" | "numeric" | "decimal">;
164
+ default: undefined;
165
+ };
166
+ align: {
167
+ type: _$vue.PropType<"right" | "left" | "center">;
168
+ default: string;
169
+ };
170
+ step: {
171
+ type: _$vue.PropType<number>;
172
+ default: number;
173
+ };
174
+ stepStrictly: {
175
+ type: _$vue.PropType<boolean>;
176
+ default: boolean;
177
+ };
178
+ controls: {
179
+ type: _$vue.PropType<boolean>;
180
+ default: boolean;
181
+ };
182
+ controlsPosition: {
183
+ type: _$vue.PropType<"" | "right">;
184
+ default: string;
185
+ };
186
+ precision: {
187
+ type: _$vue.PropType<number>;
188
+ };
189
+ disabledScientific: {
190
+ type: _$vue.PropType<boolean>;
191
+ };
192
+ }>> & {
193
+ "onUpdate:modelValue"?: ((val: number | undefined) => any) | undefined;
194
+ onInput?: ((val: number | null | undefined) => any) | undefined;
195
+ onFocus?: ((e: FocusEvent) => any) | undefined;
196
+ onChange?: ((cur: number | undefined, prev: number | undefined) => any) | undefined;
197
+ onBlur?: ((e: FocusEvent) => any) | undefined;
198
+ }, {
199
+ focus: () => void;
200
+ blur: () => void;
201
+ }, {}, {}, {}, {
202
+ disabled: boolean;
203
+ id: string;
204
+ valueOnClear: "min" | "max" | number | null;
205
+ min: number;
206
+ max: number;
207
+ inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal";
208
+ validateEvent: boolean;
209
+ readonly: boolean;
210
+ align: "left" | "right" | "center";
211
+ step: number;
212
+ controls: boolean;
213
+ controlsPosition: "" | "right";
214
+ stepStrictly: boolean;
215
+ }>;
216
+ __isFragment?: never;
217
+ __isTeleport?: never;
218
+ __isSuspense?: never;
219
+ } & _$vue.ComponentOptionsBase<Readonly<_$vue.ExtractPropTypes<{
220
+ modelValue: {
221
+ type: _$vue.PropType<number>;
222
+ };
223
+ name: {
224
+ type: _$vue.PropType<string>;
225
+ };
226
+ disabled: {
227
+ type: _$vue.PropType<boolean>;
228
+ default: undefined;
229
+ };
230
+ size: {
231
+ type: _$vue.PropType<"" | "default" | "small" | "large">;
232
+ };
233
+ readonly: {
234
+ type: _$vue.PropType<boolean>;
235
+ default: boolean;
236
+ };
237
+ placeholder: {
238
+ type: _$vue.PropType<string>;
239
+ };
240
+ validateEvent: {
241
+ type: _$vue.PropType<boolean>;
242
+ default: boolean;
243
+ };
244
+ valueOnClear: {
245
+ type: _$vue.PropType<number | "min" | "max">;
246
+ default: null;
247
+ };
248
+ ariaLabel: {
249
+ type: _$vue.PropType<string>;
250
+ };
251
+ id: {
252
+ type: _$vue.PropType<string>;
253
+ default: undefined;
254
+ };
255
+ min: {
256
+ type: _$vue.PropType<number>;
257
+ default: number;
258
+ };
259
+ max: {
260
+ type: _$vue.PropType<number>;
261
+ default: number;
262
+ };
263
+ inputmode: {
264
+ type: _$vue.PropType<"search" | "text" | "email" | "tel" | "url" | "none" | "numeric" | "decimal">;
265
+ default: undefined;
266
+ };
267
+ align: {
268
+ type: _$vue.PropType<"right" | "left" | "center">;
269
+ default: string;
270
+ };
271
+ step: {
272
+ type: _$vue.PropType<number>;
273
+ default: number;
274
+ };
275
+ stepStrictly: {
276
+ type: _$vue.PropType<boolean>;
277
+ default: boolean;
278
+ };
279
+ controls: {
280
+ type: _$vue.PropType<boolean>;
281
+ default: boolean;
282
+ };
283
+ controlsPosition: {
284
+ type: _$vue.PropType<"" | "right">;
285
+ default: string;
286
+ };
287
+ precision: {
288
+ type: _$vue.PropType<number>;
289
+ };
290
+ disabledScientific: {
291
+ type: _$vue.PropType<boolean>;
292
+ };
293
+ }>> & {
294
+ "onUpdate:modelValue"?: ((val: number | undefined) => any) | undefined;
295
+ onInput?: ((val: number | null | undefined) => any) | undefined;
296
+ onFocus?: ((e: FocusEvent) => any) | undefined;
297
+ onChange?: ((cur: number | undefined, prev: number | undefined) => any) | undefined;
298
+ onBlur?: ((e: FocusEvent) => any) | undefined;
299
+ }, {
300
+ focus: () => void;
301
+ blur: () => void;
302
+ }, unknown, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
303
+ focus: (e: FocusEvent) => void;
304
+ "update:modelValue": (val: number | undefined) => void;
305
+ change: (cur: number | undefined, prev: number | undefined) => void;
306
+ input: (val: number | null | undefined) => void;
307
+ blur: (e: FocusEvent) => void;
308
+ }, string, {
309
+ disabled: boolean;
310
+ id: string;
311
+ valueOnClear: "min" | "max" | number | null;
312
+ min: number;
313
+ max: number;
314
+ inputmode: "search" | "text" | "none" | "url" | "email" | "tel" | "numeric" | "decimal";
315
+ validateEvent: boolean;
316
+ readonly: boolean;
317
+ align: "left" | "right" | "center";
318
+ step: number;
319
+ controls: boolean;
320
+ controlsPosition: "" | "right";
321
+ stepStrictly: boolean;
322
+ }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
323
+ $slots: {
324
+ 'decrease-icon'?: (props: {}) => any;
325
+ } & {
326
+ 'increase-icon'?: (props: {}) => any;
327
+ } & {
328
+ prefix?: (props: {}) => any;
329
+ } & {
330
+ suffix?: (props: {}) => any;
331
+ };
332
+ })>;
6
333
  //#endregion
7
334
  export { InputNumber, InputNumberProps };
8
335
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,30 @@
1
+ import * as _$vue from "vue";
2
+ import * as _$_formily_core0 from "@formily/core";
3
+
1
4
  //#region src/input-tag/index.d.ts
2
- declare const InputTag: any;
5
+ declare const InputTag: {
6
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {}, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
14
+ __isFragment?: never;
15
+ __isTeleport?: never;
16
+ __isSuspense?: never;
17
+ } & _$vue.ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {}, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
18
+ $slots: {
19
+ tag?: (scope: {
20
+ value: string;
21
+ index: number;
22
+ field: _$_formily_core0.Field | undefined;
23
+ }) => any;
24
+ prefix?: () => any;
25
+ suffix?: () => any;
26
+ };
27
+ });
3
28
  //#endregion
4
29
  export { InputTag };
5
30
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,40 @@
1
+ import * as _$element_plus0 from "element-plus";
2
+ import * as _$vue from "vue";
3
+ import * as _$_formily_core0 from "@formily/core";
4
+
1
5
  //#region src/mention/index.d.ts
2
- declare const Mention: any;
6
+ declare const Mention: {
7
+ new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {}, true, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
8
+ P: {};
9
+ B: {};
10
+ D: {};
11
+ C: {};
12
+ M: {};
13
+ Defaults: {};
14
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
15
+ __isFragment?: never;
16
+ __isTeleport?: never;
17
+ __isSuspense?: never;
18
+ } & _$vue.ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {}, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
19
+ $slots: {
20
+ label?: (scope: {
21
+ item: _$element_plus0.MentionOption;
22
+ index: number;
23
+ field: _$_formily_core0.Field | undefined;
24
+ }) => any;
25
+ header?: (scope: {
26
+ field: _$_formily_core0.Field | undefined;
27
+ }) => any;
28
+ footer?: (scope: {
29
+ field: _$_formily_core0.Field | undefined;
30
+ }) => any;
31
+ loading?: () => any;
32
+ prefix?: () => any;
33
+ suffix?: () => any;
34
+ prepend?: () => any;
35
+ append?: () => any;
36
+ };
37
+ });
3
38
  //#endregion
4
39
  export { Mention };
5
40
  //# sourceMappingURL=index.d.ts.map