@vunk/form 1.1.31 → 1.1.32
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.
|
@@ -125,14 +125,22 @@ const props = __spreadProps(__spreadValues({}, _VkfInputCtx.props), {
|
|
|
125
125
|
default: false
|
|
126
126
|
}
|
|
127
127
|
});
|
|
128
|
-
bindPropsFactory(props);
|
|
128
|
+
const createBindProps = bindPropsFactory(props);
|
|
129
129
|
const emits = __spreadProps(__spreadValues({}, _VkfInputCtx.emits), {
|
|
130
130
|
"update:modelValue": (e) => e,
|
|
131
131
|
"update:flying": null,
|
|
132
132
|
"appendFly": null,
|
|
133
133
|
appendEdit: null
|
|
134
134
|
});
|
|
135
|
-
onEmitsFactory(emits);
|
|
135
|
+
const createOnEmits = onEmitsFactory(emits);
|
|
136
|
+
|
|
137
|
+
var ctx = /*#__PURE__*/Object.freeze({
|
|
138
|
+
__proto__: null,
|
|
139
|
+
props: props,
|
|
140
|
+
createBindProps: createBindProps,
|
|
141
|
+
emits: emits,
|
|
142
|
+
createOnEmits: createOnEmits
|
|
143
|
+
});
|
|
136
144
|
|
|
137
145
|
/*! Element Plus Icons Vue v2.1.0 */
|
|
138
146
|
|
|
@@ -1652,4 +1660,4 @@ VkfEsriInputGeojson.install = (app) => {
|
|
|
1652
1660
|
app.component(VkfEsriInputGeojson.name, VkfEsriInputGeojson);
|
|
1653
1661
|
};
|
|
1654
1662
|
|
|
1655
|
-
export { EDIT_TYPE, EDIT_TYPE_OPTIONS, EDIT_TYPE_REFLECT, EMPTY_FEATURE_COLLECTION, VkfEsriInputGeojson, types as __VkfEsriInputGeojson, VkfEsriInputGeojson as default };
|
|
1663
|
+
export { EDIT_TYPE, EDIT_TYPE_OPTIONS, EDIT_TYPE_REFLECT, EMPTY_FEATURE_COLLECTION, VkfEsriInputGeojson, ctx as _VkfEsriInputGeojsonCtx, types as __VkfEsriInputGeojson, VkfEsriInputGeojson as default };
|