@xy-planning-network/trees 0.7.5-rc1 → 0.7.5-rc2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xy-planning-network/trees",
3
- "version": "0.7.5-rc1",
3
+ "version": "0.7.5-rc2",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "repository": "github:xy-planning-network/trees",
@@ -29,6 +29,11 @@ const {
29
29
  inputValidation,
30
30
  } = useInputField({ props, targetInput })
31
31
 
32
+ // A wrapper component may need to have direct access
33
+ // to the underlying HTMLInputElement that BaseInput binds to
34
+ // example: GoogleMaps Autocomplete inputs
35
+ defineExpose({ input: targetInput })
36
+
32
37
  const typeAttributes = computed(() => {
33
38
  switch (props.type) {
34
39
  case "number":
@@ -23,7 +23,9 @@ declare const _default: import("vue").DefineComponent<{
23
23
  type: import("vue").PropType<string>;
24
24
  default: string;
25
25
  };
26
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
26
+ }, {
27
+ input: import("vue").Ref<HTMLInputElement | null>;
28
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
29
  "update:modelValue": (...args: any[]) => void;
28
30
  "update:error": (...args: any[]) => void;
29
31
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{