@vunk/form 2.14.18 → 2.14.20
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
|
@@ -6,10 +6,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6
6
|
type: StringConstructor;
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
|
-
preview:
|
|
10
|
-
type: BooleanConstructor;
|
|
11
|
-
default: boolean;
|
|
12
|
-
};
|
|
9
|
+
preview: any;
|
|
13
10
|
beforeUpload: {
|
|
14
11
|
type: FunctionConstructor;
|
|
15
12
|
default: any;
|
|
@@ -326,10 +323,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
326
323
|
type: StringConstructor;
|
|
327
324
|
default: string;
|
|
328
325
|
};
|
|
329
|
-
preview:
|
|
330
|
-
type: BooleanConstructor;
|
|
331
|
-
default: boolean;
|
|
332
|
-
};
|
|
326
|
+
preview: any;
|
|
333
327
|
beforeUpload: {
|
|
334
328
|
type: FunctionConstructor;
|
|
335
329
|
default: any;
|
|
@@ -631,7 +625,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
631
625
|
listType: "text" | "picture" | "picture-card";
|
|
632
626
|
httpRequest: import("element-plus").UploadRequestHandler;
|
|
633
627
|
tip: string;
|
|
634
|
-
preview:
|
|
628
|
+
preview: any;
|
|
635
629
|
onDownload: (arg: UploadFile) => any;
|
|
636
630
|
exceedable: boolean;
|
|
637
631
|
confirmExceed: boolean;
|
|
@@ -1290,7 +1284,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1290
1284
|
default: any;
|
|
1291
1285
|
};
|
|
1292
1286
|
preview: {
|
|
1293
|
-
type: BooleanConstructor;
|
|
1287
|
+
type: (BooleanConstructor | FunctionConstructor)[];
|
|
1294
1288
|
default: boolean;
|
|
1295
1289
|
};
|
|
1296
1290
|
}>, {
|
|
@@ -1333,6 +1327,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1333
1327
|
cssVarBlockName: (name: string) => string;
|
|
1334
1328
|
};
|
|
1335
1329
|
handleDownload: (file?: UploadFile) => void;
|
|
1330
|
+
handlePreview: (file?: UploadFile) => void;
|
|
1331
|
+
previewable: import("vue").ComputedRef<unknown>;
|
|
1336
1332
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1337
1333
|
remove: (e: UploadFile) => UploadFile;
|
|
1338
1334
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1357,7 +1353,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1357
1353
|
default: any;
|
|
1358
1354
|
};
|
|
1359
1355
|
preview: {
|
|
1360
|
-
type: BooleanConstructor;
|
|
1356
|
+
type: (BooleanConstructor | FunctionConstructor)[];
|
|
1361
1357
|
default: boolean;
|
|
1362
1358
|
};
|
|
1363
1359
|
}>> & Readonly<{
|
|
@@ -1367,7 +1363,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1367
1363
|
onPreview: (arg: UploadFile) => any;
|
|
1368
1364
|
listType: "text" | "picture" | "picture-card";
|
|
1369
1365
|
file: UploadFile;
|
|
1370
|
-
preview: boolean;
|
|
1366
|
+
preview: boolean | Function;
|
|
1371
1367
|
onDownload: (arg: UploadFile) => any;
|
|
1372
1368
|
}, {}, {
|
|
1373
1369
|
ElProgress: {
|
|
@@ -1755,6 +1751,425 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1755
1751
|
CircleCheck: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1756
1752
|
Document: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1757
1753
|
Download: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1754
|
+
ElButton: ({
|
|
1755
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1756
|
+
readonly size: {
|
|
1757
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
1758
|
+
readonly required: false;
|
|
1759
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1760
|
+
__epPropKey: true;
|
|
1761
|
+
};
|
|
1762
|
+
readonly disabled: BooleanConstructor;
|
|
1763
|
+
readonly type: {
|
|
1764
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1765
|
+
readonly required: false;
|
|
1766
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1767
|
+
__epPropKey: true;
|
|
1768
|
+
} & {
|
|
1769
|
+
readonly default: "";
|
|
1770
|
+
};
|
|
1771
|
+
readonly icon: {
|
|
1772
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1773
|
+
readonly required: false;
|
|
1774
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1775
|
+
__epPropKey: true;
|
|
1776
|
+
};
|
|
1777
|
+
readonly nativeType: {
|
|
1778
|
+
readonly type: import("vue").PropType<"button" | "reset" | "submit">;
|
|
1779
|
+
readonly required: false;
|
|
1780
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1781
|
+
__epPropKey: true;
|
|
1782
|
+
} & {
|
|
1783
|
+
readonly default: "button";
|
|
1784
|
+
};
|
|
1785
|
+
readonly loading: BooleanConstructor;
|
|
1786
|
+
readonly loadingIcon: {
|
|
1787
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1788
|
+
readonly required: false;
|
|
1789
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1790
|
+
__epPropKey: true;
|
|
1791
|
+
} & {
|
|
1792
|
+
readonly default: () => any;
|
|
1793
|
+
};
|
|
1794
|
+
readonly plain: {
|
|
1795
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1796
|
+
readonly required: false;
|
|
1797
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1798
|
+
__epPropKey: true;
|
|
1799
|
+
} & {
|
|
1800
|
+
readonly default: undefined;
|
|
1801
|
+
};
|
|
1802
|
+
readonly text: {
|
|
1803
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1804
|
+
readonly required: false;
|
|
1805
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1806
|
+
__epPropKey: true;
|
|
1807
|
+
} & {
|
|
1808
|
+
readonly default: undefined;
|
|
1809
|
+
};
|
|
1810
|
+
readonly link: BooleanConstructor;
|
|
1811
|
+
readonly bg: BooleanConstructor;
|
|
1812
|
+
readonly autofocus: BooleanConstructor;
|
|
1813
|
+
readonly round: {
|
|
1814
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1815
|
+
readonly required: false;
|
|
1816
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1817
|
+
__epPropKey: true;
|
|
1818
|
+
} & {
|
|
1819
|
+
readonly default: undefined;
|
|
1820
|
+
};
|
|
1821
|
+
readonly circle: BooleanConstructor;
|
|
1822
|
+
readonly color: StringConstructor;
|
|
1823
|
+
readonly dark: BooleanConstructor;
|
|
1824
|
+
readonly autoInsertSpace: {
|
|
1825
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1826
|
+
readonly required: false;
|
|
1827
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1828
|
+
__epPropKey: true;
|
|
1829
|
+
} & {
|
|
1830
|
+
readonly default: undefined;
|
|
1831
|
+
};
|
|
1832
|
+
readonly tag: {
|
|
1833
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1834
|
+
readonly required: false;
|
|
1835
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1836
|
+
__epPropKey: true;
|
|
1837
|
+
} & {
|
|
1838
|
+
readonly default: "button";
|
|
1839
|
+
};
|
|
1840
|
+
}>> & {
|
|
1841
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
1842
|
+
}, {
|
|
1843
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
1844
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
1845
|
+
type: import("vue").ComputedRef<string>;
|
|
1846
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
1847
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
1848
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1849
|
+
click: (evt: MouseEvent) => void;
|
|
1850
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
1851
|
+
readonly link: boolean;
|
|
1852
|
+
readonly circle: boolean;
|
|
1853
|
+
readonly text: boolean;
|
|
1854
|
+
readonly disabled: boolean;
|
|
1855
|
+
readonly round: boolean;
|
|
1856
|
+
readonly dark: boolean;
|
|
1857
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1858
|
+
readonly bg: boolean;
|
|
1859
|
+
readonly loading: boolean;
|
|
1860
|
+
readonly autofocus: boolean;
|
|
1861
|
+
readonly tag: unknown;
|
|
1862
|
+
readonly plain: boolean;
|
|
1863
|
+
readonly autoInsertSpace: boolean;
|
|
1864
|
+
readonly nativeType: "button" | "reset" | "submit";
|
|
1865
|
+
readonly loadingIcon: unknown;
|
|
1866
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1867
|
+
P: {};
|
|
1868
|
+
B: {};
|
|
1869
|
+
D: {};
|
|
1870
|
+
C: {};
|
|
1871
|
+
M: {};
|
|
1872
|
+
Defaults: {};
|
|
1873
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
1874
|
+
readonly size: {
|
|
1875
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
1876
|
+
readonly required: false;
|
|
1877
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1878
|
+
__epPropKey: true;
|
|
1879
|
+
};
|
|
1880
|
+
readonly disabled: BooleanConstructor;
|
|
1881
|
+
readonly type: {
|
|
1882
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1883
|
+
readonly required: false;
|
|
1884
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1885
|
+
__epPropKey: true;
|
|
1886
|
+
} & {
|
|
1887
|
+
readonly default: "";
|
|
1888
|
+
};
|
|
1889
|
+
readonly icon: {
|
|
1890
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1891
|
+
readonly required: false;
|
|
1892
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1893
|
+
__epPropKey: true;
|
|
1894
|
+
};
|
|
1895
|
+
readonly nativeType: {
|
|
1896
|
+
readonly type: import("vue").PropType<"button" | "reset" | "submit">;
|
|
1897
|
+
readonly required: false;
|
|
1898
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1899
|
+
__epPropKey: true;
|
|
1900
|
+
} & {
|
|
1901
|
+
readonly default: "button";
|
|
1902
|
+
};
|
|
1903
|
+
readonly loading: BooleanConstructor;
|
|
1904
|
+
readonly loadingIcon: {
|
|
1905
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1906
|
+
readonly required: false;
|
|
1907
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1908
|
+
__epPropKey: true;
|
|
1909
|
+
} & {
|
|
1910
|
+
readonly default: () => any;
|
|
1911
|
+
};
|
|
1912
|
+
readonly plain: {
|
|
1913
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1914
|
+
readonly required: false;
|
|
1915
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1916
|
+
__epPropKey: true;
|
|
1917
|
+
} & {
|
|
1918
|
+
readonly default: undefined;
|
|
1919
|
+
};
|
|
1920
|
+
readonly text: {
|
|
1921
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1922
|
+
readonly required: false;
|
|
1923
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1924
|
+
__epPropKey: true;
|
|
1925
|
+
} & {
|
|
1926
|
+
readonly default: undefined;
|
|
1927
|
+
};
|
|
1928
|
+
readonly link: BooleanConstructor;
|
|
1929
|
+
readonly bg: BooleanConstructor;
|
|
1930
|
+
readonly autofocus: BooleanConstructor;
|
|
1931
|
+
readonly round: {
|
|
1932
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1933
|
+
readonly required: false;
|
|
1934
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1935
|
+
__epPropKey: true;
|
|
1936
|
+
} & {
|
|
1937
|
+
readonly default: undefined;
|
|
1938
|
+
};
|
|
1939
|
+
readonly circle: BooleanConstructor;
|
|
1940
|
+
readonly color: StringConstructor;
|
|
1941
|
+
readonly dark: BooleanConstructor;
|
|
1942
|
+
readonly autoInsertSpace: {
|
|
1943
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1944
|
+
readonly required: false;
|
|
1945
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1946
|
+
__epPropKey: true;
|
|
1947
|
+
} & {
|
|
1948
|
+
readonly default: undefined;
|
|
1949
|
+
};
|
|
1950
|
+
readonly tag: {
|
|
1951
|
+
readonly type: import("vue").PropType<unknown>;
|
|
1952
|
+
readonly required: false;
|
|
1953
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1954
|
+
__epPropKey: true;
|
|
1955
|
+
} & {
|
|
1956
|
+
readonly default: "button";
|
|
1957
|
+
};
|
|
1958
|
+
}>> & {
|
|
1959
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
1960
|
+
}, {
|
|
1961
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
1962
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
1963
|
+
type: import("vue").ComputedRef<string>;
|
|
1964
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
1965
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
1966
|
+
}, {}, {}, {}, {
|
|
1967
|
+
readonly link: boolean;
|
|
1968
|
+
readonly circle: boolean;
|
|
1969
|
+
readonly text: boolean;
|
|
1970
|
+
readonly disabled: boolean;
|
|
1971
|
+
readonly round: boolean;
|
|
1972
|
+
readonly dark: boolean;
|
|
1973
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
1974
|
+
readonly bg: boolean;
|
|
1975
|
+
readonly loading: boolean;
|
|
1976
|
+
readonly autofocus: boolean;
|
|
1977
|
+
readonly tag: unknown;
|
|
1978
|
+
readonly plain: boolean;
|
|
1979
|
+
readonly autoInsertSpace: boolean;
|
|
1980
|
+
readonly nativeType: "button" | "reset" | "submit";
|
|
1981
|
+
readonly loadingIcon: unknown;
|
|
1982
|
+
}>;
|
|
1983
|
+
__isFragment?: never;
|
|
1984
|
+
__isTeleport?: never;
|
|
1985
|
+
__isSuspense?: never;
|
|
1986
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1987
|
+
readonly size: {
|
|
1988
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
1989
|
+
readonly required: false;
|
|
1990
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1991
|
+
__epPropKey: true;
|
|
1992
|
+
};
|
|
1993
|
+
readonly disabled: BooleanConstructor;
|
|
1994
|
+
readonly type: {
|
|
1995
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
1996
|
+
readonly required: false;
|
|
1997
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1998
|
+
__epPropKey: true;
|
|
1999
|
+
} & {
|
|
2000
|
+
readonly default: "";
|
|
2001
|
+
};
|
|
2002
|
+
readonly icon: {
|
|
2003
|
+
readonly type: import("vue").PropType<unknown>;
|
|
2004
|
+
readonly required: false;
|
|
2005
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2006
|
+
__epPropKey: true;
|
|
2007
|
+
};
|
|
2008
|
+
readonly nativeType: {
|
|
2009
|
+
readonly type: import("vue").PropType<"button" | "reset" | "submit">;
|
|
2010
|
+
readonly required: false;
|
|
2011
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2012
|
+
__epPropKey: true;
|
|
2013
|
+
} & {
|
|
2014
|
+
readonly default: "button";
|
|
2015
|
+
};
|
|
2016
|
+
readonly loading: BooleanConstructor;
|
|
2017
|
+
readonly loadingIcon: {
|
|
2018
|
+
readonly type: import("vue").PropType<unknown>;
|
|
2019
|
+
readonly required: false;
|
|
2020
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2021
|
+
__epPropKey: true;
|
|
2022
|
+
} & {
|
|
2023
|
+
readonly default: () => any;
|
|
2024
|
+
};
|
|
2025
|
+
readonly plain: {
|
|
2026
|
+
readonly type: import("vue").PropType<boolean>;
|
|
2027
|
+
readonly required: false;
|
|
2028
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2029
|
+
__epPropKey: true;
|
|
2030
|
+
} & {
|
|
2031
|
+
readonly default: undefined;
|
|
2032
|
+
};
|
|
2033
|
+
readonly text: {
|
|
2034
|
+
readonly type: import("vue").PropType<boolean>;
|
|
2035
|
+
readonly required: false;
|
|
2036
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2037
|
+
__epPropKey: true;
|
|
2038
|
+
} & {
|
|
2039
|
+
readonly default: undefined;
|
|
2040
|
+
};
|
|
2041
|
+
readonly link: BooleanConstructor;
|
|
2042
|
+
readonly bg: BooleanConstructor;
|
|
2043
|
+
readonly autofocus: BooleanConstructor;
|
|
2044
|
+
readonly round: {
|
|
2045
|
+
readonly type: import("vue").PropType<boolean>;
|
|
2046
|
+
readonly required: false;
|
|
2047
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2048
|
+
__epPropKey: true;
|
|
2049
|
+
} & {
|
|
2050
|
+
readonly default: undefined;
|
|
2051
|
+
};
|
|
2052
|
+
readonly circle: BooleanConstructor;
|
|
2053
|
+
readonly color: StringConstructor;
|
|
2054
|
+
readonly dark: BooleanConstructor;
|
|
2055
|
+
readonly autoInsertSpace: {
|
|
2056
|
+
readonly type: import("vue").PropType<boolean>;
|
|
2057
|
+
readonly required: false;
|
|
2058
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2059
|
+
__epPropKey: true;
|
|
2060
|
+
} & {
|
|
2061
|
+
readonly default: undefined;
|
|
2062
|
+
};
|
|
2063
|
+
readonly tag: {
|
|
2064
|
+
readonly type: import("vue").PropType<unknown>;
|
|
2065
|
+
readonly required: false;
|
|
2066
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2067
|
+
__epPropKey: true;
|
|
2068
|
+
} & {
|
|
2069
|
+
readonly default: "button";
|
|
2070
|
+
};
|
|
2071
|
+
}>> & {
|
|
2072
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
2073
|
+
}, {
|
|
2074
|
+
ref: import("vue").Ref<HTMLButtonElement | undefined>;
|
|
2075
|
+
size: import("vue").ComputedRef<"" | "small" | "default" | "large">;
|
|
2076
|
+
type: import("vue").ComputedRef<string>;
|
|
2077
|
+
disabled: import("vue").ComputedRef<boolean>;
|
|
2078
|
+
shouldAddSpace: import("vue").ComputedRef<boolean>;
|
|
2079
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2080
|
+
click: (evt: MouseEvent) => void;
|
|
2081
|
+
}, string, {
|
|
2082
|
+
readonly link: boolean;
|
|
2083
|
+
readonly circle: boolean;
|
|
2084
|
+
readonly text: boolean;
|
|
2085
|
+
readonly disabled: boolean;
|
|
2086
|
+
readonly round: boolean;
|
|
2087
|
+
readonly dark: boolean;
|
|
2088
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
2089
|
+
readonly bg: boolean;
|
|
2090
|
+
readonly loading: boolean;
|
|
2091
|
+
readonly autofocus: boolean;
|
|
2092
|
+
readonly tag: unknown;
|
|
2093
|
+
readonly plain: boolean;
|
|
2094
|
+
readonly autoInsertSpace: boolean;
|
|
2095
|
+
readonly nativeType: "button" | "reset" | "submit";
|
|
2096
|
+
readonly loadingIcon: unknown;
|
|
2097
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2098
|
+
$slots: {
|
|
2099
|
+
loading?(_: {}): any;
|
|
2100
|
+
icon?(_: {}): any;
|
|
2101
|
+
default?(_: {}): any;
|
|
2102
|
+
};
|
|
2103
|
+
}) & import("vue").Plugin) & {
|
|
2104
|
+
ButtonGroup: {
|
|
2105
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
2106
|
+
readonly size: {
|
|
2107
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
2108
|
+
readonly required: false;
|
|
2109
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2110
|
+
__epPropKey: true;
|
|
2111
|
+
};
|
|
2112
|
+
readonly type: {
|
|
2113
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
2114
|
+
readonly required: false;
|
|
2115
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2116
|
+
__epPropKey: true;
|
|
2117
|
+
} & {
|
|
2118
|
+
readonly default: "";
|
|
2119
|
+
};
|
|
2120
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
2121
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
2122
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2123
|
+
P: {};
|
|
2124
|
+
B: {};
|
|
2125
|
+
D: {};
|
|
2126
|
+
C: {};
|
|
2127
|
+
M: {};
|
|
2128
|
+
Defaults: {};
|
|
2129
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
2130
|
+
readonly size: {
|
|
2131
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
2132
|
+
readonly required: false;
|
|
2133
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2134
|
+
__epPropKey: true;
|
|
2135
|
+
};
|
|
2136
|
+
readonly type: {
|
|
2137
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
2138
|
+
readonly required: false;
|
|
2139
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2140
|
+
__epPropKey: true;
|
|
2141
|
+
} & {
|
|
2142
|
+
readonly default: "";
|
|
2143
|
+
};
|
|
2144
|
+
}>>, {}, {}, {}, {}, {
|
|
2145
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
2146
|
+
}>;
|
|
2147
|
+
__isFragment?: never;
|
|
2148
|
+
__isTeleport?: never;
|
|
2149
|
+
__isSuspense?: never;
|
|
2150
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2151
|
+
readonly size: {
|
|
2152
|
+
readonly type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
2153
|
+
readonly required: false;
|
|
2154
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2155
|
+
__epPropKey: true;
|
|
2156
|
+
};
|
|
2157
|
+
readonly type: {
|
|
2158
|
+
readonly type: import("vue").PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
2159
|
+
readonly required: false;
|
|
2160
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2161
|
+
__epPropKey: true;
|
|
2162
|
+
} & {
|
|
2163
|
+
readonly default: "";
|
|
2164
|
+
};
|
|
2165
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
2166
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
2167
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2168
|
+
$slots: {
|
|
2169
|
+
default?(_: {}): any;
|
|
2170
|
+
};
|
|
2171
|
+
});
|
|
2172
|
+
};
|
|
1758
2173
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1759
2174
|
ElLink: {
|
|
1760
2175
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -551,6 +551,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
551
551
|
};
|
|
552
552
|
readonly readonly: BooleanConstructor;
|
|
553
553
|
readonly clearable: BooleanConstructor;
|
|
554
|
+
readonly clearIcon: {
|
|
555
|
+
readonly type: import("vue").PropType<unknown>;
|
|
556
|
+
readonly required: false;
|
|
557
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
558
|
+
__epPropKey: true;
|
|
559
|
+
};
|
|
554
560
|
readonly showPassword: BooleanConstructor;
|
|
555
561
|
readonly showWordLimit: BooleanConstructor;
|
|
556
562
|
readonly suffixIcon: {
|
|
@@ -771,6 +777,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
771
777
|
};
|
|
772
778
|
readonly readonly: BooleanConstructor;
|
|
773
779
|
readonly clearable: BooleanConstructor;
|
|
780
|
+
readonly clearIcon: {
|
|
781
|
+
readonly type: import("vue").PropType<unknown>;
|
|
782
|
+
readonly required: false;
|
|
783
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
784
|
+
__epPropKey: true;
|
|
785
|
+
};
|
|
774
786
|
readonly showPassword: BooleanConstructor;
|
|
775
787
|
readonly showWordLimit: BooleanConstructor;
|
|
776
788
|
readonly suffixIcon: {
|
|
@@ -975,6 +987,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
975
987
|
};
|
|
976
988
|
readonly readonly: BooleanConstructor;
|
|
977
989
|
readonly clearable: BooleanConstructor;
|
|
990
|
+
readonly clearIcon: {
|
|
991
|
+
readonly type: import("vue").PropType<unknown>;
|
|
992
|
+
readonly required: false;
|
|
993
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
994
|
+
__epPropKey: true;
|
|
995
|
+
};
|
|
978
996
|
readonly showPassword: BooleanConstructor;
|
|
979
997
|
readonly showWordLimit: BooleanConstructor;
|
|
980
998
|
readonly suffixIcon: {
|
|
@@ -1210,7 +1228,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1210
1228
|
} & {
|
|
1211
1229
|
readonly default: undefined;
|
|
1212
1230
|
};
|
|
1213
|
-
readonly text:
|
|
1231
|
+
readonly text: {
|
|
1232
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1233
|
+
readonly required: false;
|
|
1234
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1235
|
+
__epPropKey: true;
|
|
1236
|
+
} & {
|
|
1237
|
+
readonly default: undefined;
|
|
1238
|
+
};
|
|
1214
1239
|
readonly link: BooleanConstructor;
|
|
1215
1240
|
readonly bg: BooleanConstructor;
|
|
1216
1241
|
readonly autofocus: BooleanConstructor;
|
|
@@ -1264,9 +1289,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1264
1289
|
readonly autofocus: boolean;
|
|
1265
1290
|
readonly tag: unknown;
|
|
1266
1291
|
readonly plain: boolean;
|
|
1292
|
+
readonly autoInsertSpace: boolean;
|
|
1267
1293
|
readonly nativeType: "button" | "reset" | "submit";
|
|
1268
1294
|
readonly loadingIcon: unknown;
|
|
1269
|
-
readonly autoInsertSpace: boolean;
|
|
1270
1295
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1271
1296
|
P: {};
|
|
1272
1297
|
B: {};
|
|
@@ -1321,7 +1346,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1321
1346
|
} & {
|
|
1322
1347
|
readonly default: undefined;
|
|
1323
1348
|
};
|
|
1324
|
-
readonly text:
|
|
1349
|
+
readonly text: {
|
|
1350
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1351
|
+
readonly required: false;
|
|
1352
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1353
|
+
__epPropKey: true;
|
|
1354
|
+
} & {
|
|
1355
|
+
readonly default: undefined;
|
|
1356
|
+
};
|
|
1325
1357
|
readonly link: BooleanConstructor;
|
|
1326
1358
|
readonly bg: BooleanConstructor;
|
|
1327
1359
|
readonly autofocus: BooleanConstructor;
|
|
@@ -1373,9 +1405,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1373
1405
|
readonly autofocus: boolean;
|
|
1374
1406
|
readonly tag: unknown;
|
|
1375
1407
|
readonly plain: boolean;
|
|
1408
|
+
readonly autoInsertSpace: boolean;
|
|
1376
1409
|
readonly nativeType: "button" | "reset" | "submit";
|
|
1377
1410
|
readonly loadingIcon: unknown;
|
|
1378
|
-
readonly autoInsertSpace: boolean;
|
|
1379
1411
|
}>;
|
|
1380
1412
|
__isFragment?: never;
|
|
1381
1413
|
__isTeleport?: never;
|
|
@@ -1427,7 +1459,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1427
1459
|
} & {
|
|
1428
1460
|
readonly default: undefined;
|
|
1429
1461
|
};
|
|
1430
|
-
readonly text:
|
|
1462
|
+
readonly text: {
|
|
1463
|
+
readonly type: import("vue").PropType<boolean>;
|
|
1464
|
+
readonly required: false;
|
|
1465
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1466
|
+
__epPropKey: true;
|
|
1467
|
+
} & {
|
|
1468
|
+
readonly default: undefined;
|
|
1469
|
+
};
|
|
1431
1470
|
readonly link: BooleanConstructor;
|
|
1432
1471
|
readonly bg: BooleanConstructor;
|
|
1433
1472
|
readonly autofocus: BooleanConstructor;
|
|
@@ -1481,9 +1520,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1481
1520
|
readonly autofocus: boolean;
|
|
1482
1521
|
readonly tag: unknown;
|
|
1483
1522
|
readonly plain: boolean;
|
|
1523
|
+
readonly autoInsertSpace: boolean;
|
|
1484
1524
|
readonly nativeType: "button" | "reset" | "submit";
|
|
1485
1525
|
readonly loadingIcon: unknown;
|
|
1486
|
-
readonly autoInsertSpace: boolean;
|
|
1487
1526
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1488
1527
|
$slots: {
|
|
1489
1528
|
loading?(_: {}): any;
|