@vunk/form 1.1.27 → 1.1.29
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 +2 -2
- package/components/button/src/index.vue.d.ts +11 -11
- package/components/cascader/src/ctx.d.ts +2 -2
- package/components/cascader/src/index.vue.d.ts +27 -27
- package/components/checkbox/src/ctx.d.ts +2 -2
- package/components/checkbox/src/index.vue.d.ts +10 -10
- package/components/color-picker/src/ctx.d.ts +1 -1
- package/components/color-picker/src/index.vue.d.ts +10 -10
- package/components/date-picker/src/ctx.d.ts +1 -1
- package/components/date-picker/src/index.vue.d.ts +16 -16
- package/components/esri-input-geojson/index.js +10 -3
- package/components/esri-input-geojson/src/ctx.d.ts +3 -3
- package/components/esri-input-geojson/src/index.vue.d.ts +18 -21
- package/components/form/src/ctx.d.ts +2 -2
- package/components/form/src/index.vue.d.ts +6 -6
- package/components/form-item/src/ctx.d.ts +1 -1
- package/components/form-item/src/index.vue.d.ts +3 -3
- package/components/geoinput/src/ctx.d.ts +1 -1
- package/components/geoinput/src/index.vue.d.ts +23 -23
- package/components/geoinput-read/src/core.vue.d.ts +14 -14
- package/components/geoinput-read/src/ctx.d.ts +3 -3
- package/components/geoinput-read/src/index.vue.d.ts +15 -15
- package/components/geoinput-update/src/ctx.d.ts +3 -3
- package/components/geoinput-update/src/index.vue.d.ts +14 -14
- package/components/input/src/ctx.d.ts +3 -3
- package/components/input/src/index.vue.d.ts +14 -14
- package/components/input-link/src/ctx.d.ts +1 -1
- package/components/input-link/src/index.vue.d.ts +16 -16
- package/components/input-number/src/ctx.d.ts +3 -3
- package/components/input-number/src/index.vue.d.ts +15 -15
- package/components/radio/src/ctx.d.ts +1 -1
- package/components/radio/src/index.vue.d.ts +9 -9
- package/components/select/src/ctx.d.ts +4 -4
- package/components/select/src/index.vue.d.ts +48 -48
- package/components/slider/src/ctx.d.ts +1 -1
- package/components/slider/src/index.vue.d.ts +10 -10
- package/components/switch/src/ctx.d.ts +1 -1
- package/components/switch/src/index.vue.d.ts +7 -7
- package/components/upload/src/ctx.d.ts +2 -2
- package/components/upload/src/index.vue.d.ts +4 -4
- package/components/upload-plus/src/ctx.d.ts +1 -1
- package/components/upload-plus/src/index.vue.d.ts +4 -4
- package/components/van-cascader/src/ctx.d.ts +1 -1
- package/components/van-cascader/src/index.vue.d.ts +18 -18
- package/package.json +1 -1
- package/shared/element-plus/ctx.d.ts +12 -12
|
@@ -1361,6 +1361,11 @@ var _sfc_main = defineComponent({
|
|
|
1361
1361
|
sketchRef.value = e.sketch;
|
|
1362
1362
|
viewDef.resolve(sketchRef.value.view);
|
|
1363
1363
|
};
|
|
1364
|
+
const layerLoad = async ({
|
|
1365
|
+
view
|
|
1366
|
+
}) => {
|
|
1367
|
+
viewDef.resolve(view);
|
|
1368
|
+
};
|
|
1364
1369
|
const availableCreatureTools = computed(() => {
|
|
1365
1370
|
if (Array.isArray(props2.editTypes)) {
|
|
1366
1371
|
return props2.editTypes.reduce((pre, cur) => {
|
|
@@ -1490,7 +1495,8 @@ var _sfc_main = defineComponent({
|
|
|
1490
1495
|
dialogOnClose,
|
|
1491
1496
|
mapTo,
|
|
1492
1497
|
doSave,
|
|
1493
|
-
readonly
|
|
1498
|
+
readonly,
|
|
1499
|
+
layerLoad
|
|
1494
1500
|
};
|
|
1495
1501
|
}
|
|
1496
1502
|
});
|
|
@@ -1531,8 +1537,9 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1531
1537
|
(_ctx.readonly)
|
|
1532
1538
|
? (openBlock(), createBlock(_component_VaGraphicsLayer, {
|
|
1533
1539
|
key: 0,
|
|
1534
|
-
graphics: _ctx.sketchValue
|
|
1535
|
-
|
|
1540
|
+
graphics: _ctx.sketchValue,
|
|
1541
|
+
onLoad: _ctx.layerLoad
|
|
1542
|
+
}, null, 8 /* PROPS */, ["graphics", "onLoad"]))
|
|
1536
1543
|
: (openBlock(), createBlock(_component_VaSketch, {
|
|
1537
1544
|
key: 1,
|
|
1538
1545
|
viewModelActiveFillSymbol: _ctx.viewModelActiveFillSymbol,
|
|
@@ -100,7 +100,7 @@ export declare const props: {
|
|
|
100
100
|
};
|
|
101
101
|
error: StringConstructor;
|
|
102
102
|
validateStatus: {
|
|
103
|
-
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
103
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
104
104
|
readonly required: false;
|
|
105
105
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
106
106
|
__epPropKey: true;
|
|
@@ -189,7 +189,7 @@ export declare const props: {
|
|
|
189
189
|
validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
190
190
|
inputStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue) | ((new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
|
|
191
191
|
};
|
|
192
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"required", keyof T2> | Extract<"type", keyof T2> | Extract<"
|
|
192
|
+
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"required", keyof T2> | Extract<"type", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"prop", 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<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"formatter", keyof T2> | Extract<"parser", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"form", keyof T2> | Extract<"clearable", 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> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"multiple", keyof T2> | Extract<"editTypes", keyof T2> | Extract<"showMap", keyof T2> | Extract<"dialogEdit", keyof T2> | Extract<"dialogEditFullscreen", keyof T2> | Extract<"dialogEditTitle", keyof T2> | Extract<"mapTo", keyof T2> | Extract<"viewModelActiveFillSymbol", keyof T2> | Extract<"view", keyof T2> | Extract<"viewModelActiveLineSymbol", keyof T2> | Extract<"viewModelActivePointSymbol", keyof T2> | Extract<"skipSave", keyof T2> | Extract<"flying", keyof T2>)[] | undefined>(propsArg: T2, excludes?: EX | undefined) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"type", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"prop", 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<"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<"labelPosition", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"resize", keyof T2>, KE> | Exclude<Extract<"autosize", keyof T2>, KE> | Exclude<Extract<"autocomplete", keyof T2>, KE> | Exclude<Extract<"formatter", keyof T2>, KE> | Exclude<Extract<"parser", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"form", keyof T2>, KE> | Exclude<Extract<"clearable", 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> | 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<"multiple", keyof T2>, KE> | Exclude<Extract<"editTypes", keyof T2>, KE> | Exclude<Extract<"showMap", keyof T2>, KE> | Exclude<Extract<"dialogEdit", keyof T2>, KE> | Exclude<Extract<"dialogEditFullscreen", keyof T2>, KE> | Exclude<Extract<"dialogEditTitle", keyof T2>, KE> | Exclude<Extract<"mapTo", keyof T2>, KE> | Exclude<Extract<"viewModelActiveFillSymbol", keyof T2>, KE> | Exclude<Extract<"view", keyof T2>, KE> | Exclude<Extract<"viewModelActiveLineSymbol", keyof T2>, KE> | Exclude<Extract<"viewModelActivePointSymbol", keyof T2>, KE> | Exclude<Extract<"skipSave", keyof T2>, KE> | Exclude<Extract<"flying", keyof T2>, KE> : Extract<"required", keyof T2> | Extract<"type", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"prop", 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<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"formatter", keyof T2> | Extract<"parser", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"form", keyof T2> | Extract<"clearable", 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> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"multiple", keyof T2> | Extract<"editTypes", keyof T2> | Extract<"showMap", keyof T2> | Extract<"dialogEdit", keyof T2> | Extract<"dialogEditFullscreen", keyof T2> | Extract<"dialogEditTitle", keyof T2> | Extract<"mapTo", keyof T2> | Extract<"viewModelActiveFillSymbol", keyof T2> | Extract<"view", keyof T2> | Extract<"viewModelActiveLineSymbol", keyof T2> | Extract<"viewModelActivePointSymbol", keyof T2> | Extract<"skipSave", keyof T2> | Extract<"flying", keyof T2>]: { [k in Extract<"required", keyof T2> | Extract<"type", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"prop", 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<"size", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"resize", keyof T2> | Extract<"autosize", keyof T2> | Extract<"autocomplete", keyof T2> | Extract<"formatter", keyof T2> | Extract<"parser", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"form", keyof T2> | Extract<"clearable", 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> | Extract<"maxlength", keyof T2> | Extract<"minlength", keyof T2> | Extract<"inputSlots", keyof T2> | Extract<"rows", keyof T2> | Extract<"multiple", keyof T2> | Extract<"editTypes", keyof T2> | Extract<"showMap", keyof T2> | Extract<"dialogEdit", keyof T2> | Extract<"dialogEditFullscreen", keyof T2> | Extract<"dialogEditTitle", keyof T2> | Extract<"mapTo", keyof T2> | Extract<"viewModelActiveFillSymbol", keyof T2> | Extract<"view", keyof T2> | Extract<"viewModelActiveLineSymbol", keyof T2> | Extract<"viewModelActivePointSymbol", keyof T2> | Extract<"skipSave", keyof T2> | Extract<"flying", keyof T2>]: T2[k]; }[P]; }>;
|
|
193
193
|
export declare const emits: {
|
|
194
194
|
'update:modelValue': (e: FeatureCollection) => FeatureCollection<Geometry, import("geojson").GeoJsonProperties>;
|
|
195
195
|
'update:flying': null;
|
|
@@ -205,7 +205,7 @@ export declare const emits: {
|
|
|
205
205
|
compositionupdate: (evt: CompositionEvent) => boolean;
|
|
206
206
|
compositionend: (evt: CompositionEvent) => boolean;
|
|
207
207
|
};
|
|
208
|
-
export declare const createOnEmits: <T2 extends import("@vunk/core").AnyFunc, EX extends ("update:modelValue" | "
|
|
208
|
+
export declare const createOnEmits: <T2 extends import("@vunk/core").AnyFunc, EX extends ("update:modelValue" | "input" | "change" | "focus" | "blur" | "clear" | "mouseleave" | "mouseenter" | "keydown" | "compositionstart" | "compositionupdate" | "compositionend" | "update:flying")[] | undefined>(emit: T2, excludes?: EX | undefined) => { [P in EX extends (infer KE)[] ? Exclude<"update:modelValue", KE> | Exclude<"input", KE> | Exclude<"change", KE> | Exclude<"focus", KE> | Exclude<"blur", KE> | Exclude<"clear", KE> | Exclude<"mouseleave", KE> | Exclude<"mouseenter", KE> | Exclude<"keydown", KE> | Exclude<"compositionstart", KE> | Exclude<"compositionupdate", KE> | Exclude<"compositionend", KE> | Exclude<"update:flying", KE> : "update:modelValue" | "input" | "change" | "focus" | "blur" | "clear" | "mouseleave" | "mouseenter" | "keydown" | "compositionstart" | "compositionupdate" | "compositionend" | "update:flying"]: {
|
|
209
209
|
'update:modelValue': (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
210
210
|
'update:flying': (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
211
211
|
input: (...e: import("@vunk/core").RestParameters<T2>) => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
import { __VaSketch } from '@vuesri/core';
|
|
2
|
+
import { __VaSketch, __VaGraphicsLayer } from '@vuesri/core';
|
|
3
3
|
import Graphic from '@arcgis/core/Graphic';
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
5
|
readonly: {
|
|
@@ -100,7 +100,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
100
100
|
};
|
|
101
101
|
error: StringConstructor;
|
|
102
102
|
validateStatus: {
|
|
103
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
103
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
104
104
|
readonly required: false;
|
|
105
105
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
106
106
|
__epPropKey: true;
|
|
@@ -158,9 +158,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
158
158
|
__epPropKey: true;
|
|
159
159
|
};
|
|
160
160
|
placeholder: {
|
|
161
|
-
readonly type: import("vue").PropType<string>;
|
|
162
|
-
* 初始化
|
|
163
|
-
*/
|
|
161
|
+
readonly type: import("vue").PropType<string>;
|
|
164
162
|
readonly required: false;
|
|
165
163
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
166
164
|
__epPropKey: true;
|
|
@@ -194,48 +192,48 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
194
192
|
inputBindProps: import("vue").ComputedRef<{
|
|
195
193
|
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
196
194
|
type: string;
|
|
197
|
-
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never> | undefined;
|
|
198
|
-
placeholder: string | undefined;
|
|
199
|
-
disabled: boolean;
|
|
200
|
-
clearable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
201
|
-
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
202
195
|
label: string | undefined;
|
|
203
196
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
204
197
|
prop: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => import("element-plus").FormItemProp & {}) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => import("element-plus").FormItemProp & {}) | (() => import("element-plus").FormItemProp))[], unknown, unknown> | undefined;
|
|
205
198
|
rules: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => import("element-plus").FormItemRule | import("element-plus").FormItemRule[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").FormItemRule>) | ((new (...args: any[]) => import("element-plus").FormItemRule | import("element-plus").FormItemRule[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").FormItemRule>))[], unknown, unknown> | undefined;
|
|
206
199
|
error: string | undefined;
|
|
207
|
-
validateStatus: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
200
|
+
validateStatus: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown> | undefined;
|
|
208
201
|
for: string | undefined;
|
|
209
202
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
210
203
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
204
|
+
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never> | undefined;
|
|
211
205
|
formItemSize: "default" | "small" | "large";
|
|
212
206
|
formItemSlots: import("../../form-item/src/types").FormItemSlots | undefined;
|
|
213
207
|
elRef: any;
|
|
214
208
|
inline: boolean;
|
|
215
209
|
labelPosition: "right";
|
|
210
|
+
disabled: boolean;
|
|
216
211
|
id: string | undefined;
|
|
217
212
|
resize: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown> | undefined;
|
|
218
213
|
autosize: import("element-plus").InputAutoSize;
|
|
219
214
|
autocomplete: string;
|
|
220
215
|
formatter: Function | undefined;
|
|
221
216
|
parser: Function | undefined;
|
|
217
|
+
placeholder: string | undefined;
|
|
222
218
|
form: string | undefined;
|
|
219
|
+
clearable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
223
220
|
showPassword: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
224
221
|
showWordLimit: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
225
222
|
suffixIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown> | undefined;
|
|
226
223
|
prefixIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown> | undefined;
|
|
227
224
|
containerRole: string | undefined;
|
|
228
225
|
tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
226
|
+
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
229
227
|
inputStyle: import("vue").StyleValue;
|
|
230
228
|
maxlength: number | undefined;
|
|
231
229
|
minlength: number | undefined;
|
|
232
230
|
rows: number | undefined;
|
|
233
231
|
}>;
|
|
234
232
|
inputOnEmits: {
|
|
233
|
+
input: (...e: any[]) => void;
|
|
235
234
|
change: (...e: any[]) => void;
|
|
236
235
|
focus: (...e: any[]) => void;
|
|
237
236
|
blur: (...e: any[]) => void;
|
|
238
|
-
input: (...e: any[]) => void;
|
|
239
237
|
clear: (...e: any[]) => void;
|
|
240
238
|
mouseleave: (...e: any[]) => void;
|
|
241
239
|
mouseenter: (...e: any[]) => void;
|
|
@@ -259,6 +257,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
259
257
|
mapTo: Ref<HTMLDivElement>;
|
|
260
258
|
doSave: () => void;
|
|
261
259
|
readonly: import("vue").ComputedRef<boolean>;
|
|
260
|
+
layerLoad: __VaGraphicsLayer.OnLoad;
|
|
262
261
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
263
262
|
'update:modelValue': (e: import("geojson").FeatureCollection<import("geojson").Geometry, import("geojson").GeoJsonProperties>) => import("geojson").FeatureCollection<import("geojson").Geometry, import("geojson").GeoJsonProperties>;
|
|
264
263
|
'update:flying': null;
|
|
@@ -372,7 +371,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
372
371
|
};
|
|
373
372
|
error: StringConstructor;
|
|
374
373
|
validateStatus: {
|
|
375
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
374
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
376
375
|
readonly required: false;
|
|
377
376
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
378
377
|
__epPropKey: true;
|
|
@@ -430,9 +429,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
430
429
|
__epPropKey: true;
|
|
431
430
|
};
|
|
432
431
|
placeholder: {
|
|
433
|
-
readonly type: import("vue").PropType<string>;
|
|
434
|
-
* 初始化
|
|
435
|
-
*/
|
|
432
|
+
readonly type: import("vue").PropType<string>;
|
|
436
433
|
readonly required: false;
|
|
437
434
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
438
435
|
__epPropKey: true;
|
|
@@ -465,9 +462,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
465
462
|
}>> & {
|
|
466
463
|
onChange?: ((value: string) => any) | undefined;
|
|
467
464
|
"onUpdate:modelValue"?: ((e: import("geojson").FeatureCollection<import("geojson").Geometry, import("geojson").GeoJsonProperties>) => any) | undefined;
|
|
465
|
+
onInput?: ((value: string) => any) | undefined;
|
|
468
466
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
469
467
|
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
470
|
-
onInput?: ((value: string) => any) | undefined;
|
|
471
468
|
onClear?: (() => any) | undefined;
|
|
472
469
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
473
470
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
@@ -479,10 +476,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
479
476
|
}, {
|
|
480
477
|
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
481
478
|
type: string;
|
|
482
|
-
disabled: boolean;
|
|
483
|
-
clearable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
484
|
-
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
485
|
-
modelValue: import("geojson").FeatureCollection<import("geojson").Geometry, any>;
|
|
486
479
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
487
480
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
488
481
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -491,13 +484,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
491
484
|
inline: boolean;
|
|
492
485
|
readonly: boolean;
|
|
493
486
|
labelPosition: "right";
|
|
487
|
+
disabled: boolean;
|
|
494
488
|
id: string;
|
|
489
|
+
modelValue: import("geojson").FeatureCollection<import("geojson").Geometry, any>;
|
|
495
490
|
autosize: import("element-plus").InputAutoSize;
|
|
496
491
|
autocomplete: string;
|
|
492
|
+
clearable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
497
493
|
showPassword: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
498
494
|
showWordLimit: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
499
495
|
containerRole: string;
|
|
500
496
|
tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
497
|
+
validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
501
498
|
inputStyle: import("vue").StyleValue;
|
|
502
499
|
inputSlots: import("../../input/src/types").InputSlots;
|
|
503
500
|
rows: number;
|
|
@@ -64,7 +64,7 @@ export declare const props: {
|
|
|
64
64
|
readonly disabled: BooleanConstructor;
|
|
65
65
|
}>> & {
|
|
66
66
|
onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
67
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
67
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "labelWidth" | "inlineMessage" | "showMessage" | "inline" | "labelPosition" | "disabled" | "requireAsteriskPosition" | "labelSuffix" | "statusIcon" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError">;
|
|
68
68
|
$attrs: {
|
|
69
69
|
[x: string]: unknown;
|
|
70
70
|
};
|
|
@@ -383,7 +383,7 @@ export declare const props: {
|
|
|
383
383
|
};
|
|
384
384
|
disabled: BooleanConstructor;
|
|
385
385
|
};
|
|
386
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"
|
|
386
|
+
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"size", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"data", keyof T2> | Extract<"disabled", keyof T2> | Extract<"model", keyof T2> | Extract<"requireAsteriskPosition", keyof T2> | Extract<"labelSuffix", keyof T2> | Extract<"statusIcon", keyof T2> | Extract<"validateOnRuleChange", keyof T2> | Extract<"hideRequiredAsterisk", keyof T2> | Extract<"scrollToError", keyof T2> | Extract<"scrollIntoViewOptions", keyof T2> | Extract<"formItems", keyof T2> | Extract<"layout", keyof T2> | Extract<"rowSource", keyof T2> | Extract<"colSource", keyof T2>)[] | undefined>(propsArg: T2, excludes?: EX | undefined) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"data", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"model", keyof T2>, KE> | Exclude<Extract<"requireAsteriskPosition", keyof T2>, KE> | Exclude<Extract<"labelSuffix", keyof T2>, KE> | Exclude<Extract<"statusIcon", keyof T2>, KE> | Exclude<Extract<"validateOnRuleChange", keyof T2>, KE> | Exclude<Extract<"hideRequiredAsterisk", keyof T2>, KE> | Exclude<Extract<"scrollToError", keyof T2>, KE> | Exclude<Extract<"scrollIntoViewOptions", keyof T2>, KE> | Exclude<Extract<"formItems", keyof T2>, KE> | Exclude<Extract<"layout", keyof T2>, KE> | Exclude<Extract<"rowSource", keyof T2>, KE> | Exclude<Extract<"colSource", keyof T2>, KE> : Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"size", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"data", keyof T2> | Extract<"disabled", keyof T2> | Extract<"model", keyof T2> | Extract<"requireAsteriskPosition", keyof T2> | Extract<"labelSuffix", keyof T2> | Extract<"statusIcon", keyof T2> | Extract<"validateOnRuleChange", keyof T2> | Extract<"hideRequiredAsterisk", keyof T2> | Extract<"scrollToError", keyof T2> | Extract<"scrollIntoViewOptions", keyof T2> | Extract<"formItems", keyof T2> | Extract<"layout", keyof T2> | Extract<"rowSource", keyof T2> | Extract<"colSource", keyof T2>]: { [k in Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"size", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"data", keyof T2> | Extract<"disabled", keyof T2> | Extract<"model", keyof T2> | Extract<"requireAsteriskPosition", keyof T2> | Extract<"labelSuffix", keyof T2> | Extract<"statusIcon", keyof T2> | Extract<"validateOnRuleChange", keyof T2> | Extract<"hideRequiredAsterisk", keyof T2> | Extract<"scrollToError", keyof T2> | Extract<"scrollIntoViewOptions", keyof T2> | Extract<"formItems", keyof T2> | Extract<"layout", keyof T2> | Extract<"rowSource", keyof T2> | Extract<"colSource", keyof T2>]: T2[k]; }[P]; }>;
|
|
387
387
|
export declare const emits: {
|
|
388
388
|
setData: (e: SetDataEvent) => SetDataEvent<any>;
|
|
389
389
|
validate: null;
|
|
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
63
63
|
readonly disabled: BooleanConstructor;
|
|
64
64
|
}>> & {
|
|
65
65
|
onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
66
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
66
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "labelWidth" | "inlineMessage" | "showMessage" | "inline" | "labelPosition" | "disabled" | "requireAsteriskPosition" | "labelSuffix" | "statusIcon" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError">;
|
|
67
67
|
$attrs: {
|
|
68
68
|
[x: string]: unknown;
|
|
69
69
|
};
|
|
@@ -370,14 +370,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
370
370
|
disabled: BooleanConstructor;
|
|
371
371
|
}, {
|
|
372
372
|
formProps: import("vue").ComputedRef<{
|
|
373
|
-
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", unknown> | undefined;
|
|
374
|
-
disabled: boolean;
|
|
375
373
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
376
374
|
rules: Partial<Record<string, import("element-plus/es/utils").Arrayable<import("element-plus").FormItemRule>>> | undefined;
|
|
377
375
|
inlineMessage: boolean;
|
|
378
376
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
377
|
+
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", unknown> | undefined;
|
|
379
378
|
inline: boolean;
|
|
380
379
|
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
380
|
+
disabled: boolean;
|
|
381
381
|
requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
382
382
|
labelSuffix: string;
|
|
383
383
|
statusIcon: boolean;
|
|
@@ -459,7 +459,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
459
459
|
readonly disabled: BooleanConstructor;
|
|
460
460
|
}>> & {
|
|
461
461
|
onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
462
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
462
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "labelWidth" | "inlineMessage" | "showMessage" | "inline" | "labelPosition" | "disabled" | "requireAsteriskPosition" | "labelSuffix" | "statusIcon" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError">;
|
|
463
463
|
$attrs: {
|
|
464
464
|
[x: string]: unknown;
|
|
465
465
|
};
|
|
@@ -768,7 +768,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
768
768
|
onSetData?: ((e: import("@vunk/core").SetDataEvent<any>) => any) | undefined;
|
|
769
769
|
onValidate?: ((...args: any[]) => any) | undefined;
|
|
770
770
|
}, {
|
|
771
|
-
disabled: boolean;
|
|
772
771
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
773
772
|
inlineMessage: boolean;
|
|
774
773
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -822,7 +821,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
822
821
|
readonly disabled: BooleanConstructor;
|
|
823
822
|
}>> & {
|
|
824
823
|
onValidate?: ((prop: import("element-plus").FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
825
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
824
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "labelWidth" | "inlineMessage" | "showMessage" | "inline" | "labelPosition" | "disabled" | "requireAsteriskPosition" | "labelSuffix" | "statusIcon" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError">;
|
|
826
825
|
$attrs: {
|
|
827
826
|
[x: string]: unknown;
|
|
828
827
|
};
|
|
@@ -1086,6 +1085,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1086
1085
|
readonly: boolean;
|
|
1087
1086
|
labelPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "top" | "left", unknown>;
|
|
1088
1087
|
data: Record<string, any>;
|
|
1088
|
+
disabled: boolean;
|
|
1089
1089
|
requireAsteriskPosition: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
1090
1090
|
labelSuffix: string;
|
|
1091
1091
|
statusIcon: boolean;
|
|
@@ -42,7 +42,7 @@ export declare const props: Omit<{
|
|
|
42
42
|
};
|
|
43
43
|
error: StringConstructor;
|
|
44
44
|
validateStatus: {
|
|
45
|
-
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
45
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
46
46
|
readonly required: false;
|
|
47
47
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
48
48
|
__epPropKey: true;
|
|
@@ -41,7 +41,7 @@ declare const _default: import("vue").DefineComponent<Omit<{
|
|
|
41
41
|
};
|
|
42
42
|
error: StringConstructor;
|
|
43
43
|
validateStatus: {
|
|
44
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
44
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
45
45
|
readonly required: false;
|
|
46
46
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
47
47
|
__epPropKey: true;
|
|
@@ -62,7 +62,7 @@ declare const _default: import("vue").DefineComponent<Omit<{
|
|
|
62
62
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
63
63
|
prop: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => import("element-plus").FormItemProp & {}) | (() => import("element-plus").FormItemProp) | ((new (...args: any[]) => import("element-plus").FormItemProp & {}) | (() => import("element-plus").FormItemProp))[], unknown, unknown> | undefined;
|
|
64
64
|
error: string | undefined;
|
|
65
|
-
validateStatus: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
65
|
+
validateStatus: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown> | undefined;
|
|
66
66
|
for: string | undefined;
|
|
67
67
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
68
68
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -112,7 +112,7 @@ declare const _default: import("vue").DefineComponent<Omit<{
|
|
|
112
112
|
};
|
|
113
113
|
error: StringConstructor;
|
|
114
114
|
validateStatus: {
|
|
115
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
115
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
116
116
|
readonly required: false;
|
|
117
117
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
118
118
|
__epPropKey: true;
|
|
@@ -95,7 +95,7 @@ export declare const props: {
|
|
|
95
95
|
};
|
|
96
96
|
error: StringConstructor;
|
|
97
97
|
validateStatus: {
|
|
98
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
98
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "error" | "success" | "validating", unknown>>;
|
|
99
99
|
readonly required: false;
|
|
100
100
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
101
101
|
__epPropKey: true;
|