@vunk/form 2.14.18 → 2.14.19
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/button/src/ctx.d.ts +8 -1
- package/components/button/src/index.vue.d.ts +43 -8
- package/components/card-input-collection/src/core.vue.d.ts +30 -9
- package/components/cascader/src/ctx.d.ts +63 -6
- package/components/cascader/src/index.vue.d.ts +155 -10
- package/components/color-picker/src/ctx.d.ts +14 -0
- package/components/color-picker/src/index.vue.d.ts +29 -0
- package/components/date-picker/src/ctx.d.ts +46 -4
- package/components/date-picker/src/index.vue.d.ts +266 -27
- package/components/date-picker-range/src/ctx.d.ts +48 -6
- package/components/date-picker-range/src/index.vue.d.ts +98 -13
- package/components/dialog-input-collection/src/dialog-form.vue.d.ts +4696 -48
- package/components/dialog-input-collection/src/index.vue.d.ts +4723 -54
- package/components/download-plus/src/index.vue.d.ts +45 -6
- package/components/esri-input-geojson/src/append.vue.d.ts +27 -6
- package/components/esri-input-geojson/src/ctx.d.ts +7 -1
- package/components/esri-input-geojson/src/index.vue.d.ts +13 -0
- package/components/fieldset/index.cjs +1 -17
- package/components/fieldset/index.mjs +1 -17
- package/components/form/src/ctx.d.ts +1 -1
- package/components/form/src/index.vue.d.ts +2867 -22
- package/components/form-item/src/core.vue.d.ts +27 -6
- package/components/input/src/ctx.d.ts +7 -1
- package/components/input/src/index.vue.d.ts +31 -0
- package/components/input-array/src/form-template.vue.d.ts +27 -6
- package/components/input-array/src/index.vue.d.ts +27 -6
- package/components/input-collection/src/core.vue.d.ts +27 -6
- package/components/input-link/src/ctx.d.ts +6 -0
- package/components/input-link/src/index.vue.d.ts +12 -0
- package/components/input-number/src/ctx.d.ts +10 -1
- package/components/input-number/src/index.vue.d.ts +55 -0
- package/components/input-tag/src/ctx.d.ts +17 -1
- package/components/input-tag/src/index.vue.d.ts +103 -3
- package/components/select/src/core.vue.d.ts +2 -2
- package/components/select/src/ctx.d.ts +1 -1
- package/components/select/src/index.vue.d.ts +1 -1
- package/components/tables-select/src/index.vue.d.ts +108 -12
- package/components/upload/index.cjs +93 -35
- package/components/upload/index.css +3 -0
- package/components/upload/index.mjs +95 -37
- package/components/upload/src/ctx.d.ts +1 -4
- package/components/upload/src/file.vue.d.ts +427 -6
- package/components/upload/src/index.vue.d.ts +427 -12
- package/components/upload-plus/src/index.vue.d.ts +45 -6
- package/components/van-cascader/index.cjs +40 -43
- package/components/van-cascader/index.mjs +41 -44
- package/components/van-cascader/src/ctx.d.ts +62 -5
- package/components/van-cascader/src/index.vue.d.ts +825 -1681
- package/components/var-datetime-picker/src/index.vue.d.ts +159 -25
- package/index.css +3 -0
- package/package.json +1 -1
- package/shared/element-plus/ctx.d.ts +7 -7
- package/shared/element-plus/instances.d.ts +45 -3
- package/shared/progress-it/index.cjs +3 -1
|
@@ -1480,7 +1480,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1480
1480
|
} & {
|
|
1481
1481
|
readonly default: undefined;
|
|
1482
1482
|
};
|
|
1483
|
-
readonly text:
|
|
1483
|
+
readonly text: {
|
|
1484
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1485
|
+
readonly required: false;
|
|
1486
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1487
|
+
__epPropKey: true;
|
|
1488
|
+
} & {
|
|
1489
|
+
readonly default: undefined;
|
|
1490
|
+
};
|
|
1484
1491
|
readonly link: BooleanConstructor;
|
|
1485
1492
|
readonly bg: BooleanConstructor;
|
|
1486
1493
|
readonly autofocus: BooleanConstructor;
|
|
@@ -1534,9 +1541,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1534
1541
|
readonly autofocus: boolean;
|
|
1535
1542
|
readonly tag: unknown;
|
|
1536
1543
|
readonly plain: boolean;
|
|
1544
|
+
readonly autoInsertSpace: boolean;
|
|
1537
1545
|
readonly nativeType: "button" | "reset" | "submit";
|
|
1538
1546
|
readonly loadingIcon: unknown;
|
|
1539
|
-
readonly autoInsertSpace: boolean;
|
|
1540
1547
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1541
1548
|
P: {};
|
|
1542
1549
|
B: {};
|
|
@@ -1591,7 +1598,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1591
1598
|
} & {
|
|
1592
1599
|
readonly default: undefined;
|
|
1593
1600
|
};
|
|
1594
|
-
readonly text:
|
|
1601
|
+
readonly text: {
|
|
1602
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1603
|
+
readonly required: false;
|
|
1604
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1605
|
+
__epPropKey: true;
|
|
1606
|
+
} & {
|
|
1607
|
+
readonly default: undefined;
|
|
1608
|
+
};
|
|
1595
1609
|
readonly link: BooleanConstructor;
|
|
1596
1610
|
readonly bg: BooleanConstructor;
|
|
1597
1611
|
readonly autofocus: BooleanConstructor;
|
|
@@ -1643,9 +1657,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1643
1657
|
readonly autofocus: boolean;
|
|
1644
1658
|
readonly tag: unknown;
|
|
1645
1659
|
readonly plain: boolean;
|
|
1660
|
+
readonly autoInsertSpace: boolean;
|
|
1646
1661
|
readonly nativeType: "button" | "reset" | "submit";
|
|
1647
1662
|
readonly loadingIcon: unknown;
|
|
1648
|
-
readonly autoInsertSpace: boolean;
|
|
1649
1663
|
}>;
|
|
1650
1664
|
__isFragment?: never;
|
|
1651
1665
|
__isTeleport?: never;
|
|
@@ -1697,7 +1711,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1697
1711
|
} & {
|
|
1698
1712
|
readonly default: undefined;
|
|
1699
1713
|
};
|
|
1700
|
-
readonly text:
|
|
1714
|
+
readonly text: {
|
|
1715
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1716
|
+
readonly required: false;
|
|
1717
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1718
|
+
__epPropKey: true;
|
|
1719
|
+
} & {
|
|
1720
|
+
readonly default: undefined;
|
|
1721
|
+
};
|
|
1701
1722
|
readonly link: BooleanConstructor;
|
|
1702
1723
|
readonly bg: BooleanConstructor;
|
|
1703
1724
|
readonly autofocus: BooleanConstructor;
|
|
@@ -1751,9 +1772,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1751
1772
|
readonly autofocus: boolean;
|
|
1752
1773
|
readonly tag: unknown;
|
|
1753
1774
|
readonly plain: boolean;
|
|
1775
|
+
readonly autoInsertSpace: boolean;
|
|
1754
1776
|
readonly nativeType: "button" | "reset" | "submit";
|
|
1755
1777
|
readonly loadingIcon: unknown;
|
|
1756
|
-
readonly autoInsertSpace: boolean;
|
|
1757
1778
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1758
1779
|
$slots: {
|
|
1759
1780
|
loading?(_: {}): any;
|
|
@@ -194,6 +194,12 @@ export declare const props: {
|
|
|
194
194
|
__epPropKey: true;
|
|
195
195
|
};
|
|
196
196
|
clearable: BooleanConstructor;
|
|
197
|
+
clearIcon: {
|
|
198
|
+
readonly type: PropType<unknown>;
|
|
199
|
+
readonly required: false;
|
|
200
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
201
|
+
__epPropKey: true;
|
|
202
|
+
};
|
|
197
203
|
showPassword: BooleanConstructor;
|
|
198
204
|
showWordLimit: BooleanConstructor;
|
|
199
205
|
suffixIcon: {
|
|
@@ -242,7 +248,7 @@ export declare const props: {
|
|
|
242
248
|
};
|
|
243
249
|
autofocus: BooleanConstructor;
|
|
244
250
|
};
|
|
245
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"formatter", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"parser", keyof T2> | Extract<"form", keyof T2> | Extract<"showPassword", keyof T2> | Extract<"showWordLimit", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"containerRole", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"inputStyle", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"type", keyof T2>, KE> | Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"formItemSize", keyof T2>, KE> | Exclude<Extract<"formItemSlots", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"formItemTip", keyof T2>, KE> | Exclude<Extract<"formItemTipClass", keyof T2>, KE> | Exclude<Extract<"labelTip", keyof T2>, KE> | Exclude<Extract<"information", keyof T2>, KE> | Exclude<Extract<"prop", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"error", keyof T2>, KE> | Exclude<Extract<"validateStatus", keyof T2>, KE> | Exclude<Extract<"for", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"ariaLabel", keyof T2>, KE> | Exclude<Extract<"name", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"formatter", keyof T2>, KE> | Exclude<Extract<"autofocus", keyof T2>, KE> | Exclude<Extract<"maxlength", keyof T2>, KE> | Exclude<Extract<"minlength", keyof T2>, KE> | Exclude<Extract<"inputSlots", keyof T2>, KE> | Exclude<Extract<"rows", keyof T2>, KE> | Exclude<Extract<"inputmode", keyof T2>, KE> | Exclude<Extract<"resize", keyof T2>, KE> | Exclude<Extract<"autosize", keyof T2>, KE> | Exclude<Extract<"autocomplete", keyof T2>, KE> | Exclude<Extract<"parser", keyof T2>, KE> | Exclude<Extract<"form", keyof T2>, KE> | Exclude<Extract<"showPassword", keyof T2>, KE> | Exclude<Extract<"showWordLimit", keyof T2>, KE> | Exclude<Extract<"suffixIcon", keyof T2>, KE> | Exclude<Extract<"prefixIcon", keyof T2>, KE> | Exclude<Extract<"containerRole", keyof T2>, KE> | Exclude<Extract<"tabindex", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"inputStyle", keyof T2>, KE> : Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"formatter", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"parser", keyof T2> | Extract<"form", keyof T2> | Extract<"showPassword", keyof T2> | Extract<"showWordLimit", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"containerRole", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"inputStyle", keyof T2>]: { [k in Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"formatter", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"parser", keyof T2> | Extract<"form", keyof T2> | Extract<"showPassword", keyof T2> | Extract<"showWordLimit", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"containerRole", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"inputStyle", keyof T2>]: T2[k]; }[P]; }>;
|
|
251
|
+
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"formatter", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"parser", keyof T2> | Extract<"form", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"showPassword", keyof T2> | Extract<"showWordLimit", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"containerRole", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"inputStyle", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"type", keyof T2>, KE> | Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"formItemSize", keyof T2>, KE> | Exclude<Extract<"formItemSlots", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"formItemTip", keyof T2>, KE> | Exclude<Extract<"formItemTipClass", keyof T2>, KE> | Exclude<Extract<"labelTip", keyof T2>, KE> | Exclude<Extract<"information", keyof T2>, KE> | Exclude<Extract<"prop", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"error", keyof T2>, KE> | Exclude<Extract<"validateStatus", keyof T2>, KE> | Exclude<Extract<"for", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"ariaLabel", keyof T2>, KE> | Exclude<Extract<"name", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"formatter", keyof T2>, KE> | Exclude<Extract<"autofocus", keyof T2>, KE> | Exclude<Extract<"maxlength", keyof T2>, KE> | Exclude<Extract<"minlength", keyof T2>, KE> | Exclude<Extract<"inputSlots", keyof T2>, KE> | Exclude<Extract<"rows", keyof T2>, KE> | Exclude<Extract<"inputmode", keyof T2>, KE> | Exclude<Extract<"resize", keyof T2>, KE> | Exclude<Extract<"autosize", keyof T2>, KE> | Exclude<Extract<"autocomplete", keyof T2>, KE> | Exclude<Extract<"parser", keyof T2>, KE> | Exclude<Extract<"form", keyof T2>, KE> | Exclude<Extract<"clearIcon", keyof T2>, KE> | Exclude<Extract<"showPassword", keyof T2>, KE> | Exclude<Extract<"showWordLimit", keyof T2>, KE> | Exclude<Extract<"suffixIcon", keyof T2>, KE> | Exclude<Extract<"prefixIcon", keyof T2>, KE> | Exclude<Extract<"containerRole", keyof T2>, KE> | Exclude<Extract<"tabindex", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"inputStyle", keyof T2>, KE> : Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"formatter", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"parser", keyof T2> | Extract<"form", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"showPassword", keyof T2> | Extract<"showWordLimit", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"containerRole", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"inputStyle", keyof T2>]: { [k in Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"clearable", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"formatter", keyof T2> | Extract<"autofocus", keyof T2> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"parser", keyof T2> | Extract<"form", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"showPassword", keyof T2> | Extract<"showWordLimit", keyof T2> | Extract<"suffixIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"containerRole", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"inputStyle", keyof T2>]: T2[k]; }[P]; }>;
|
|
246
252
|
export declare const emits: {
|
|
247
253
|
"update:modelValue": (value: string) => boolean;
|
|
248
254
|
input: (value: string) => boolean;
|
|
@@ -192,6 +192,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
192
192
|
__epPropKey: true;
|
|
193
193
|
};
|
|
194
194
|
clearable: BooleanConstructor;
|
|
195
|
+
clearIcon: {
|
|
196
|
+
readonly type: import("vue").PropType<unknown>;
|
|
197
|
+
readonly required: false;
|
|
198
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
199
|
+
__epPropKey: true;
|
|
200
|
+
};
|
|
195
201
|
showPassword: BooleanConstructor;
|
|
196
202
|
showWordLimit: BooleanConstructor;
|
|
197
203
|
suffixIcon: {
|
|
@@ -261,6 +267,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
261
267
|
autocomplete: string;
|
|
262
268
|
parser: Function;
|
|
263
269
|
form: string;
|
|
270
|
+
clearIcon: unknown;
|
|
264
271
|
showPassword: boolean;
|
|
265
272
|
showWordLimit: boolean;
|
|
266
273
|
suffixIcon: unknown;
|
|
@@ -480,6 +487,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
480
487
|
__epPropKey: true;
|
|
481
488
|
};
|
|
482
489
|
clearable: BooleanConstructor;
|
|
490
|
+
clearIcon: {
|
|
491
|
+
readonly type: import("vue").PropType<unknown>;
|
|
492
|
+
readonly required: false;
|
|
493
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
494
|
+
__epPropKey: true;
|
|
495
|
+
};
|
|
483
496
|
showPassword: BooleanConstructor;
|
|
484
497
|
showWordLimit: BooleanConstructor;
|
|
485
498
|
suffixIcon: {
|
|
@@ -676,6 +689,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
676
689
|
};
|
|
677
690
|
readonly readonly: BooleanConstructor;
|
|
678
691
|
readonly clearable: BooleanConstructor;
|
|
692
|
+
readonly clearIcon: {
|
|
693
|
+
readonly type: import("vue").PropType<unknown>;
|
|
694
|
+
readonly required: false;
|
|
695
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
696
|
+
__epPropKey: true;
|
|
697
|
+
};
|
|
679
698
|
readonly showPassword: BooleanConstructor;
|
|
680
699
|
readonly showWordLimit: BooleanConstructor;
|
|
681
700
|
readonly suffixIcon: {
|
|
@@ -896,6 +915,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
896
915
|
};
|
|
897
916
|
readonly readonly: BooleanConstructor;
|
|
898
917
|
readonly clearable: BooleanConstructor;
|
|
918
|
+
readonly clearIcon: {
|
|
919
|
+
readonly type: import("vue").PropType<unknown>;
|
|
920
|
+
readonly required: false;
|
|
921
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
922
|
+
__epPropKey: true;
|
|
923
|
+
};
|
|
899
924
|
readonly showPassword: BooleanConstructor;
|
|
900
925
|
readonly showWordLimit: BooleanConstructor;
|
|
901
926
|
readonly suffixIcon: {
|
|
@@ -1100,6 +1125,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1100
1125
|
};
|
|
1101
1126
|
readonly readonly: BooleanConstructor;
|
|
1102
1127
|
readonly clearable: BooleanConstructor;
|
|
1128
|
+
readonly clearIcon: {
|
|
1129
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1130
|
+
readonly required: false;
|
|
1131
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1132
|
+
__epPropKey: true;
|
|
1133
|
+
};
|
|
1103
1134
|
readonly showPassword: BooleanConstructor;
|
|
1104
1135
|
readonly showWordLimit: BooleanConstructor;
|
|
1105
1136
|
readonly suffixIcon: {
|
|
@@ -323,7 +323,14 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
323
323
|
} & {
|
|
324
324
|
readonly default: undefined;
|
|
325
325
|
};
|
|
326
|
-
readonly text:
|
|
326
|
+
readonly text: {
|
|
327
|
+
readonly type: import("vue").PropType<boolean>;
|
|
328
|
+
readonly required: false;
|
|
329
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
330
|
+
__epPropKey: true;
|
|
331
|
+
} & {
|
|
332
|
+
readonly default: undefined;
|
|
333
|
+
};
|
|
327
334
|
readonly link: BooleanConstructor;
|
|
328
335
|
readonly bg: BooleanConstructor;
|
|
329
336
|
readonly autofocus: BooleanConstructor;
|
|
@@ -377,9 +384,9 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
377
384
|
readonly autofocus: boolean;
|
|
378
385
|
readonly tag: unknown;
|
|
379
386
|
readonly plain: boolean;
|
|
387
|
+
readonly autoInsertSpace: boolean;
|
|
380
388
|
readonly nativeType: "button" | "reset" | "submit";
|
|
381
389
|
readonly loadingIcon: unknown;
|
|
382
|
-
readonly autoInsertSpace: boolean;
|
|
383
390
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
384
391
|
P: {};
|
|
385
392
|
B: {};
|
|
@@ -434,7 +441,14 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
434
441
|
} & {
|
|
435
442
|
readonly default: undefined;
|
|
436
443
|
};
|
|
437
|
-
readonly text:
|
|
444
|
+
readonly text: {
|
|
445
|
+
readonly type: import("vue").PropType<boolean>;
|
|
446
|
+
readonly required: false;
|
|
447
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
448
|
+
__epPropKey: true;
|
|
449
|
+
} & {
|
|
450
|
+
readonly default: undefined;
|
|
451
|
+
};
|
|
438
452
|
readonly link: BooleanConstructor;
|
|
439
453
|
readonly bg: BooleanConstructor;
|
|
440
454
|
readonly autofocus: BooleanConstructor;
|
|
@@ -486,9 +500,9 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
486
500
|
readonly autofocus: boolean;
|
|
487
501
|
readonly tag: unknown;
|
|
488
502
|
readonly plain: boolean;
|
|
503
|
+
readonly autoInsertSpace: boolean;
|
|
489
504
|
readonly nativeType: "button" | "reset" | "submit";
|
|
490
505
|
readonly loadingIcon: unknown;
|
|
491
|
-
readonly autoInsertSpace: boolean;
|
|
492
506
|
}>;
|
|
493
507
|
__isFragment?: never;
|
|
494
508
|
__isTeleport?: never;
|
|
@@ -540,7 +554,14 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
540
554
|
} & {
|
|
541
555
|
readonly default: undefined;
|
|
542
556
|
};
|
|
543
|
-
readonly text:
|
|
557
|
+
readonly text: {
|
|
558
|
+
readonly type: import("vue").PropType<boolean>;
|
|
559
|
+
readonly required: false;
|
|
560
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
561
|
+
__epPropKey: true;
|
|
562
|
+
} & {
|
|
563
|
+
readonly default: undefined;
|
|
564
|
+
};
|
|
544
565
|
readonly link: BooleanConstructor;
|
|
545
566
|
readonly bg: BooleanConstructor;
|
|
546
567
|
readonly autofocus: BooleanConstructor;
|
|
@@ -594,9 +615,9 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
594
615
|
readonly autofocus: boolean;
|
|
595
616
|
readonly tag: unknown;
|
|
596
617
|
readonly plain: boolean;
|
|
618
|
+
readonly autoInsertSpace: boolean;
|
|
597
619
|
readonly nativeType: "button" | "reset" | "submit";
|
|
598
620
|
readonly loadingIcon: unknown;
|
|
599
|
-
readonly autoInsertSpace: boolean;
|
|
600
621
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
601
622
|
$slots: {
|
|
602
623
|
loading?(_: {}): any;
|
|
@@ -312,7 +312,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
312
312
|
} & {
|
|
313
313
|
readonly default: undefined;
|
|
314
314
|
};
|
|
315
|
-
readonly text:
|
|
315
|
+
readonly text: {
|
|
316
|
+
readonly type: import("vue").PropType<boolean>;
|
|
317
|
+
readonly required: false;
|
|
318
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
319
|
+
__epPropKey: true;
|
|
320
|
+
} & {
|
|
321
|
+
readonly default: undefined;
|
|
322
|
+
};
|
|
316
323
|
readonly link: BooleanConstructor;
|
|
317
324
|
readonly bg: BooleanConstructor;
|
|
318
325
|
readonly autofocus: BooleanConstructor;
|
|
@@ -366,9 +373,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
366
373
|
readonly autofocus: boolean;
|
|
367
374
|
readonly tag: unknown;
|
|
368
375
|
readonly plain: boolean;
|
|
376
|
+
readonly autoInsertSpace: boolean;
|
|
369
377
|
readonly nativeType: "button" | "reset" | "submit";
|
|
370
378
|
readonly loadingIcon: unknown;
|
|
371
|
-
readonly autoInsertSpace: boolean;
|
|
372
379
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
373
380
|
P: {};
|
|
374
381
|
B: {};
|
|
@@ -423,7 +430,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
423
430
|
} & {
|
|
424
431
|
readonly default: undefined;
|
|
425
432
|
};
|
|
426
|
-
readonly text:
|
|
433
|
+
readonly text: {
|
|
434
|
+
readonly type: import("vue").PropType<boolean>;
|
|
435
|
+
readonly required: false;
|
|
436
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
437
|
+
__epPropKey: true;
|
|
438
|
+
} & {
|
|
439
|
+
readonly default: undefined;
|
|
440
|
+
};
|
|
427
441
|
readonly link: BooleanConstructor;
|
|
428
442
|
readonly bg: BooleanConstructor;
|
|
429
443
|
readonly autofocus: BooleanConstructor;
|
|
@@ -475,9 +489,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
475
489
|
readonly autofocus: boolean;
|
|
476
490
|
readonly tag: unknown;
|
|
477
491
|
readonly plain: boolean;
|
|
492
|
+
readonly autoInsertSpace: boolean;
|
|
478
493
|
readonly nativeType: "button" | "reset" | "submit";
|
|
479
494
|
readonly loadingIcon: unknown;
|
|
480
|
-
readonly autoInsertSpace: boolean;
|
|
481
495
|
}>;
|
|
482
496
|
__isFragment?: never;
|
|
483
497
|
__isTeleport?: never;
|
|
@@ -529,7 +543,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
529
543
|
} & {
|
|
530
544
|
readonly default: undefined;
|
|
531
545
|
};
|
|
532
|
-
readonly text:
|
|
546
|
+
readonly text: {
|
|
547
|
+
readonly type: import("vue").PropType<boolean>;
|
|
548
|
+
readonly required: false;
|
|
549
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
550
|
+
__epPropKey: true;
|
|
551
|
+
} & {
|
|
552
|
+
readonly default: undefined;
|
|
553
|
+
};
|
|
533
554
|
readonly link: BooleanConstructor;
|
|
534
555
|
readonly bg: BooleanConstructor;
|
|
535
556
|
readonly autofocus: BooleanConstructor;
|
|
@@ -583,9 +604,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
583
604
|
readonly autofocus: boolean;
|
|
584
605
|
readonly tag: unknown;
|
|
585
606
|
readonly plain: boolean;
|
|
607
|
+
readonly autoInsertSpace: boolean;
|
|
586
608
|
readonly nativeType: "button" | "reset" | "submit";
|
|
587
609
|
readonly loadingIcon: unknown;
|
|
588
|
-
readonly autoInsertSpace: boolean;
|
|
589
610
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
590
611
|
$slots: {
|
|
591
612
|
loading?(_: {}): any;
|
|
@@ -664,7 +664,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
664
664
|
} & {
|
|
665
665
|
readonly default: undefined;
|
|
666
666
|
};
|
|
667
|
-
readonly text:
|
|
667
|
+
readonly text: {
|
|
668
|
+
readonly type: import("vue").PropType<boolean>;
|
|
669
|
+
readonly required: false;
|
|
670
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
671
|
+
__epPropKey: true;
|
|
672
|
+
} & {
|
|
673
|
+
readonly default: undefined;
|
|
674
|
+
};
|
|
668
675
|
readonly link: BooleanConstructor;
|
|
669
676
|
readonly bg: BooleanConstructor;
|
|
670
677
|
readonly autofocus: BooleanConstructor;
|
|
@@ -718,9 +725,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
718
725
|
readonly autofocus: boolean;
|
|
719
726
|
readonly tag: unknown;
|
|
720
727
|
readonly plain: boolean;
|
|
728
|
+
readonly autoInsertSpace: boolean;
|
|
721
729
|
readonly nativeType: "button" | "reset" | "submit";
|
|
722
730
|
readonly loadingIcon: unknown;
|
|
723
|
-
readonly autoInsertSpace: boolean;
|
|
724
731
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
725
732
|
P: {};
|
|
726
733
|
B: {};
|
|
@@ -775,7 +782,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
775
782
|
} & {
|
|
776
783
|
readonly default: undefined;
|
|
777
784
|
};
|
|
778
|
-
readonly text:
|
|
785
|
+
readonly text: {
|
|
786
|
+
readonly type: import("vue").PropType<boolean>;
|
|
787
|
+
readonly required: false;
|
|
788
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
789
|
+
__epPropKey: true;
|
|
790
|
+
} & {
|
|
791
|
+
readonly default: undefined;
|
|
792
|
+
};
|
|
779
793
|
readonly link: BooleanConstructor;
|
|
780
794
|
readonly bg: BooleanConstructor;
|
|
781
795
|
readonly autofocus: BooleanConstructor;
|
|
@@ -827,9 +841,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
827
841
|
readonly autofocus: boolean;
|
|
828
842
|
readonly tag: unknown;
|
|
829
843
|
readonly plain: boolean;
|
|
844
|
+
readonly autoInsertSpace: boolean;
|
|
830
845
|
readonly nativeType: "button" | "reset" | "submit";
|
|
831
846
|
readonly loadingIcon: unknown;
|
|
832
|
-
readonly autoInsertSpace: boolean;
|
|
833
847
|
}>;
|
|
834
848
|
__isFragment?: never;
|
|
835
849
|
__isTeleport?: never;
|
|
@@ -881,7 +895,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
881
895
|
} & {
|
|
882
896
|
readonly default: undefined;
|
|
883
897
|
};
|
|
884
|
-
readonly text:
|
|
898
|
+
readonly text: {
|
|
899
|
+
readonly type: import("vue").PropType<boolean>;
|
|
900
|
+
readonly required: false;
|
|
901
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
902
|
+
__epPropKey: true;
|
|
903
|
+
} & {
|
|
904
|
+
readonly default: undefined;
|
|
905
|
+
};
|
|
885
906
|
readonly link: BooleanConstructor;
|
|
886
907
|
readonly bg: BooleanConstructor;
|
|
887
908
|
readonly autofocus: BooleanConstructor;
|
|
@@ -935,9 +956,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
935
956
|
readonly autofocus: boolean;
|
|
936
957
|
readonly tag: unknown;
|
|
937
958
|
readonly plain: boolean;
|
|
959
|
+
readonly autoInsertSpace: boolean;
|
|
938
960
|
readonly nativeType: "button" | "reset" | "submit";
|
|
939
961
|
readonly loadingIcon: unknown;
|
|
940
|
-
readonly autoInsertSpace: boolean;
|
|
941
962
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
942
963
|
$slots: {
|
|
943
964
|
loading?(_: {}): any;
|
|
@@ -213,6 +213,12 @@ export declare const props: {
|
|
|
213
213
|
__epPropKey: true;
|
|
214
214
|
};
|
|
215
215
|
clearable: BooleanConstructor;
|
|
216
|
+
clearIcon: {
|
|
217
|
+
readonly type: import("vue").PropType<unknown>;
|
|
218
|
+
readonly required: false;
|
|
219
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
220
|
+
__epPropKey: true;
|
|
221
|
+
};
|
|
216
222
|
showPassword: BooleanConstructor;
|
|
217
223
|
showWordLimit: BooleanConstructor;
|
|
218
224
|
suffixIcon: {
|
|
@@ -202,6 +202,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
202
202
|
__epPropKey: true;
|
|
203
203
|
};
|
|
204
204
|
clearable: BooleanConstructor;
|
|
205
|
+
clearIcon: {
|
|
206
|
+
readonly type: import("vue").PropType<unknown>;
|
|
207
|
+
readonly required: false;
|
|
208
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
209
|
+
__epPropKey: true;
|
|
210
|
+
};
|
|
205
211
|
showPassword: BooleanConstructor;
|
|
206
212
|
showWordLimit: BooleanConstructor;
|
|
207
213
|
suffixIcon: {
|
|
@@ -473,6 +479,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
473
479
|
__epPropKey: true;
|
|
474
480
|
};
|
|
475
481
|
clearable: BooleanConstructor;
|
|
482
|
+
clearIcon: {
|
|
483
|
+
readonly type: import("vue").PropType<unknown>;
|
|
484
|
+
readonly required: false;
|
|
485
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
486
|
+
__epPropKey: true;
|
|
487
|
+
};
|
|
476
488
|
showPassword: BooleanConstructor;
|
|
477
489
|
showWordLimit: BooleanConstructor;
|
|
478
490
|
suffixIcon: {
|
|
@@ -21,6 +21,15 @@ export declare const props: {
|
|
|
21
21
|
} & {
|
|
22
22
|
readonly default: undefined;
|
|
23
23
|
};
|
|
24
|
+
align: {
|
|
25
|
+
readonly type: PropType<"left" | "right" | "center">;
|
|
26
|
+
readonly required: false;
|
|
27
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
28
|
+
__epPropKey: true;
|
|
29
|
+
} & {
|
|
30
|
+
readonly default: "center";
|
|
31
|
+
};
|
|
32
|
+
disabledScientific: BooleanConstructor;
|
|
24
33
|
ariaLabel: StringConstructor;
|
|
25
34
|
id: {
|
|
26
35
|
readonly type: PropType<string>;
|
|
@@ -194,7 +203,7 @@ export declare const props: {
|
|
|
194
203
|
readonly default: true;
|
|
195
204
|
};
|
|
196
205
|
};
|
|
197
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"min", keyof T2> | Extract<"max", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"step", keyof T2> | Extract<"stepStrictly", keyof T2> | Extract<"controls", keyof T2> | Extract<"controlsPosition", keyof T2> | Extract<"precision", keyof T2> | Extract<"unit", keyof T2> | Extract<"inputNumberSlots", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"formItemSize", keyof T2>, KE> | Exclude<Extract<"formItemSlots", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"formItemTip", keyof T2>, KE> | Exclude<Extract<"formItemTipClass", keyof T2>, KE> | Exclude<Extract<"labelTip", keyof T2>, KE> | Exclude<Extract<"information", keyof T2>, KE> | Exclude<Extract<"prop", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"error", keyof T2>, KE> | Exclude<Extract<"validateStatus", keyof T2>, KE> | Exclude<Extract<"for", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"ariaLabel", keyof T2>, KE> | Exclude<Extract<"name", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"min", keyof T2>, KE> | Exclude<Extract<"max", keyof T2>, KE> | Exclude<Extract<"inputmode", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"valueOnClear", keyof T2>, KE> | Exclude<Extract<"step", keyof T2>, KE> | Exclude<Extract<"stepStrictly", keyof T2>, KE> | Exclude<Extract<"controls", keyof T2>, KE> | Exclude<Extract<"controlsPosition", keyof T2>, KE> | Exclude<Extract<"precision", keyof T2>, KE> | Exclude<Extract<"unit", keyof T2>, KE> | Exclude<Extract<"inputNumberSlots", keyof T2>, KE> : Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"min", keyof T2> | Extract<"max", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"step", keyof T2> | Extract<"stepStrictly", keyof T2> | Extract<"controls", keyof T2> | Extract<"controlsPosition", keyof T2> | Extract<"precision", keyof T2> | Extract<"unit", keyof T2> | Extract<"inputNumberSlots", keyof T2>]: { [k in Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"min", keyof T2> | Extract<"max", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"step", keyof T2> | Extract<"stepStrictly", keyof T2> | Extract<"controls", keyof T2> | Extract<"controlsPosition", keyof T2> | Extract<"precision", keyof T2> | Extract<"unit", keyof T2> | Extract<"inputNumberSlots", keyof T2>]: T2[k]; }[P]; }>;
|
|
206
|
+
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"align", keyof T2> | Extract<"min", keyof T2> | Extract<"max", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"disabledScientific", keyof T2> | Extract<"step", keyof T2> | Extract<"stepStrictly", keyof T2> | Extract<"controls", keyof T2> | Extract<"controlsPosition", keyof T2> | Extract<"precision", keyof T2> | Extract<"unit", keyof T2> | Extract<"inputNumberSlots", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"formItemSize", keyof T2>, KE> | Exclude<Extract<"formItemSlots", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"formItemTip", keyof T2>, KE> | Exclude<Extract<"formItemTipClass", keyof T2>, KE> | Exclude<Extract<"labelTip", keyof T2>, KE> | Exclude<Extract<"information", keyof T2>, KE> | Exclude<Extract<"prop", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"error", keyof T2>, KE> | Exclude<Extract<"validateStatus", keyof T2>, KE> | Exclude<Extract<"for", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"ariaLabel", keyof T2>, KE> | Exclude<Extract<"name", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"align", keyof T2>, KE> | Exclude<Extract<"min", keyof T2>, KE> | Exclude<Extract<"max", keyof T2>, KE> | Exclude<Extract<"inputmode", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"valueOnClear", keyof T2>, KE> | Exclude<Extract<"disabledScientific", keyof T2>, KE> | Exclude<Extract<"step", keyof T2>, KE> | Exclude<Extract<"stepStrictly", keyof T2>, KE> | Exclude<Extract<"controls", keyof T2>, KE> | Exclude<Extract<"controlsPosition", keyof T2>, KE> | Exclude<Extract<"precision", keyof T2>, KE> | Exclude<Extract<"unit", keyof T2>, KE> | Exclude<Extract<"inputNumberSlots", keyof T2>, KE> : Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"align", keyof T2> | Extract<"min", keyof T2> | Extract<"max", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"disabledScientific", keyof T2> | Extract<"step", keyof T2> | Extract<"stepStrictly", keyof T2> | Extract<"controls", keyof T2> | Extract<"controlsPosition", keyof T2> | Extract<"precision", keyof T2> | Extract<"unit", keyof T2> | Extract<"inputNumberSlots", keyof T2>]: { [k in Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"align", keyof T2> | Extract<"min", keyof T2> | Extract<"max", keyof T2> | Extract<"inputmode", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"disabledScientific", keyof T2> | Extract<"step", keyof T2> | Extract<"stepStrictly", keyof T2> | Extract<"controls", keyof T2> | Extract<"controlsPosition", keyof T2> | Extract<"precision", keyof T2> | Extract<"unit", keyof T2> | Extract<"inputNumberSlots", keyof T2>]: T2[k]; }[P]; }>;
|
|
198
207
|
export declare const emits: {
|
|
199
208
|
change: (cur: number | undefined, prev: number | undefined) => boolean;
|
|
200
209
|
blur: (e: FocusEvent) => boolean;
|