@nuxt/scripts 1.0.0-rc.5 → 1.0.0-rc.6

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.
Files changed (31) hide show
  1. package/dist/devtools-client/200.html +1 -1
  2. package/dist/devtools-client/404.html +1 -1
  3. package/dist/devtools-client/_nuxt/{DoF6byDH.js → B7jHEBMT.js} +1 -1
  4. package/dist/devtools-client/_nuxt/{D838xXrH.js → BaiqmiV1.js} +1 -1
  5. package/dist/devtools-client/_nuxt/{Duf9abe1.js → BjmZlwuw.js} +1 -1
  6. package/dist/devtools-client/_nuxt/{BfQVeAez.js → CLjOeO0G.js} +1 -1
  7. package/dist/devtools-client/_nuxt/{C7-YRs3P.js → Chi3DhDl.js} +1 -1
  8. package/dist/devtools-client/_nuxt/{CL6TeQIJ.js → HLYrIHDq.js} +31 -31
  9. package/dist/devtools-client/_nuxt/builds/latest.json +1 -1
  10. package/dist/devtools-client/_nuxt/builds/meta/640f0a39-e659-4a31-8b8d-adbd9af52f1e.json +1 -0
  11. package/dist/devtools-client/_nuxt/error-404.Dwj0Wlzm.css +1 -0
  12. package/dist/devtools-client/_nuxt/error-500.B4wHUYBa.css +1 -0
  13. package/dist/devtools-client/_nuxt/{BFtOB2Ap.js → qfgRjj7S.js} +1 -1
  14. package/dist/devtools-client/docs/index.html +1 -1
  15. package/dist/devtools-client/first-party/index.html +1 -1
  16. package/dist/devtools-client/index.html +1 -1
  17. package/dist/devtools-client/registry/index.html +1 -1
  18. package/dist/module.json +1 -1
  19. package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.d.vue.ts +73 -93
  20. package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue +65 -57
  21. package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue.d.ts +73 -93
  22. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.d.vue.ts +49 -28
  23. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.vue +143 -103
  24. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.vue.d.ts +49 -28
  25. package/dist/runtime/components/GoogleMaps/useGoogleMapsResource.d.ts +50 -0
  26. package/dist/runtime/components/GoogleMaps/useGoogleMapsResource.js +76 -1
  27. package/dist/types-source.mjs +2 -198
  28. package/package.json +2 -2
  29. package/dist/devtools-client/_nuxt/builds/meta/03a9e297-6209-4281-8c3d-4265bdd5d038.json +0 -1
  30. package/dist/devtools-client/_nuxt/error-404.BGYgyi5Q.css +0 -1
  31. package/dist/devtools-client/_nuxt/error-500.7RpV0mcx.css +0 -1
@@ -1,18 +1,16 @@
1
1
  <script>
2
+ export { MAP_INJECTION_KEY } from "./useGoogleMapsResource";
3
+ </script>
4
+
5
+ <script setup>
2
6
  import { useScriptTriggerElement } from "#nuxt-scripts/composables/useScriptTriggerElement";
3
7
  import { useScriptGoogleMaps } from "#nuxt-scripts/registry/google-maps";
4
8
  import { scriptRuntimeConfig, scriptsPrefix } from "#nuxt-scripts/utils";
5
9
  import { defu } from "defu";
6
10
  import { tryUseNuxtApp, useHead, useRuntimeConfig } from "nuxt/app";
7
- import { computed, onBeforeUnmount, onMounted, provide, ref, shallowRef, toRaw, useAttrs, watch } from "vue";
11
+ import { computed, onBeforeUnmount, onMounted, provide, ref, shallowRef, toRaw, useAttrs, useTemplateRef, watch } from "vue";
8
12
  import ScriptAriaLoadingIndicator from "../ScriptAriaLoadingIndicator.vue";
9
- import { MAP_INJECTION_KEY } from "./useGoogleMapsResource";
10
- const DIGITS_ONLY_RE = /^\d+$/;
11
- const DIGITS_PX_RE = /^\d+px$/i;
12
- export { MAP_INJECTION_KEY } from "./useGoogleMapsResource";
13
- </script>
14
-
15
- <script setup>
13
+ import { defineDeprecatedAlias, MAP_INJECTION_KEY, waitForMapsReady, warnDeprecatedTopLevelMapProps } from "./useGoogleMapsResource";
16
14
  const props = defineProps({
17
15
  trigger: { type: [String, Array, Boolean], required: false, default: ["mouseenter", "mouseover", "mousedown"] },
18
16
  apiKey: { type: String, required: false },
@@ -30,23 +28,21 @@ const props = defineProps({
30
28
  });
31
29
  const emits = defineEmits(["ready", "error"]);
32
30
  defineSlots();
31
+ const DIGITS_ONLY_RE = /^\d+$/;
32
+ const DIGITS_PX_RE = /^\d+px$/i;
33
33
  const apiKey = props.apiKey || scriptRuntimeConfig("googleMaps")?.apiKey;
34
34
  const runtimeConfig = useRuntimeConfig();
35
- const nuxtApp = tryUseNuxtApp();
36
- const nuxtColorMode = nuxtApp?.$colorMode;
37
- const currentColorMode = computed(() => {
38
- if (props.colorMode)
39
- return props.colorMode;
40
- if (nuxtColorMode?.value)
41
- return nuxtColorMode.value === "dark" ? "dark" : "light";
42
- return "light";
35
+ const nuxtColorMode = computed(() => {
36
+ const value = tryUseNuxtApp()?.$colorMode?.value;
37
+ return value === "dark" || value === "light" ? value : void 0;
43
38
  });
39
+ const currentColorMode = computed(() => props.colorMode || nuxtColorMode.value || "light");
44
40
  const currentMapId = computed(() => {
45
41
  if (!props.mapIds)
46
42
  return props.mapOptions?.mapId;
47
43
  return props.mapIds[currentColorMode.value] || props.mapIds.light || props.mapOptions?.mapId;
48
44
  });
49
- const mapsApi = ref();
45
+ const mapsApi = shallowRef();
50
46
  if (import.meta.dev) {
51
47
  if (!apiKey)
52
48
  throw new Error("GoogleMaps requires an API key. Enable it in your nuxt.config:\n\n scripts: {\n registry: {\n googleMaps: true\n }\n }\n\nThen set NUXT_PUBLIC_SCRIPTS_GOOGLE_MAPS_API_KEY in your .env file.\n\nAlternatively, pass `api-key` directly on the <ScriptGoogleMaps> component (note: this exposes the key client-side).");
@@ -62,9 +58,10 @@ if (import.meta.dev) {
62
58
  if (prop in attrs)
63
59
  console.warn(`[nuxt-scripts] <ScriptGoogleMaps> prop "${prop}" was removed in v1. ${message} See https://scripts.nuxt.com/docs/migration-guide/v0-to-v1`);
64
60
  }
61
+ warnDeprecatedTopLevelMapProps({ center: props.center, zoom: props.zoom });
65
62
  }
66
- const rootEl = ref();
67
- const mapEl = ref();
63
+ const rootEl = useTemplateRef("rootEl");
64
+ const mapEl = useTemplateRef("mapEl");
68
65
  const centerOverride = ref();
69
66
  const trigger = useScriptTriggerElement({ trigger: props.trigger, el: rootEl });
70
67
  const { load, status, onLoaded } = useScriptGoogleMaps({
@@ -78,12 +75,14 @@ const { load, status, onLoaded } = useScriptGoogleMaps({
78
75
  });
79
76
  const options = computed(() => {
80
77
  const mapId = props.mapOptions?.styles ? void 0 : currentMapId.value || "map";
81
- return defu({ center: centerOverride.value, mapId, zoom: props.zoom }, props.mapOptions, {
82
- center: props.center,
83
- zoom: 15
84
- });
78
+ return defu(
79
+ { center: centerOverride.value, mapId },
80
+ props.mapOptions,
81
+ { center: props.center, zoom: props.zoom },
82
+ { zoom: 15 }
83
+ );
85
84
  });
86
- const ready = ref(false);
85
+ const isMapReady = ref(false);
87
86
  const map = shallowRef();
88
87
  function isLocationQuery(s) {
89
88
  return typeof s === "string" && (s.split(",").length > 2 || s.includes("+"));
@@ -108,29 +107,25 @@ async function resolveQueryToLatLng(query) {
108
107
  }
109
108
  throw new Error(`No location found for ${query}`);
110
109
  }
111
- return new Promise(async (resolve, reject) => {
112
- if (!mapsApi.value) {
113
- await load();
114
- await new Promise((resolve2) => {
115
- const _ = watch(mapsApi, () => {
116
- _();
117
- resolve2();
118
- });
119
- });
120
- }
121
- const placesService = new mapsApi.value.places.PlacesService(map.value);
122
- placesService.findPlaceFromQuery({
123
- query,
124
- fields: ["name", "geometry"]
125
- }, (results, status2) => {
126
- if (status2 === "OK" && results?.[0]?.geometry?.location)
127
- return resolve(results[0].geometry.location);
128
- return reject(new Error(`No location found for ${query}`));
129
- });
130
- }).then((res) => {
131
- queryToLatLngCache.set(query, res);
132
- return res;
110
+ await waitForMapsReady({ mapsApi, map, status, load });
111
+ const placesService = new mapsApi.value.places.PlacesService(map.value);
112
+ const result = await new Promise((resolve, reject) => {
113
+ placesService.findPlaceFromQuery(
114
+ {
115
+ query,
116
+ fields: ["name", "geometry"]
117
+ },
118
+ (results, status2) => {
119
+ if (status2 === "OK" && results?.[0]?.geometry?.location) {
120
+ resolve(results[0].geometry.location);
121
+ } else {
122
+ reject(new Error(`No location found for ${query}`));
123
+ }
124
+ }
125
+ );
133
126
  });
127
+ queryToLatLngCache.set(query, result);
128
+ return result;
134
129
  }
135
130
  const libraries = /* @__PURE__ */ new Map();
136
131
  function importLibrary(key) {
@@ -152,13 +147,25 @@ function importLibrary(key) {
152
147
  libraries.set(key, cached);
153
148
  return cached;
154
149
  }
155
- const googleMaps = {
150
+ const exposed = {
151
+ mapsApi,
152
+ // Plain alias for production. In dev, replaced below with a getter that
153
+ // emits a one-shot deprecation warning. Both forms return the same
154
+ // shallow ref as `mapsApi`.
156
155
  googleMaps: mapsApi,
157
156
  map,
158
157
  resolveQueryToLatLng,
159
158
  importLibrary
160
159
  };
161
- defineExpose(googleMaps);
160
+ if (import.meta.dev) {
161
+ defineDeprecatedAlias(
162
+ exposed,
163
+ "googleMaps",
164
+ "mapsApi",
165
+ '[nuxt-scripts] <ScriptGoogleMaps> expose key "googleMaps" is deprecated; use "mapsApi" instead. See https://scripts.nuxt.com/docs/migration-guide/v0-to-v1'
166
+ );
167
+ }
168
+ defineExpose(exposed);
162
169
  let activeInfoWindow;
163
170
  provide(MAP_INJECTION_KEY, {
164
171
  map,
@@ -171,9 +178,9 @@ provide(MAP_INJECTION_KEY, {
171
178
  }
172
179
  });
173
180
  onMounted(() => {
174
- watch(ready, (v) => {
181
+ watch(isMapReady, (v) => {
175
182
  if (v) {
176
- emits("ready", googleMaps);
183
+ emits("ready", exposed);
177
184
  }
178
185
  });
179
186
  watch(status, (v) => {
@@ -191,13 +198,13 @@ onMounted(() => {
191
198
  if (map.value && zoom != null)
192
199
  map.value.setZoom(zoom);
193
200
  });
194
- watch([() => options.value.center, ready, map], async (next) => {
201
+ watch([() => options.value.center, isMapReady, map], async (next) => {
195
202
  if (!map.value) {
196
203
  return;
197
204
  }
198
205
  let center = toRaw(next[0]);
199
206
  if (center) {
200
- if (isLocationQuery(center) && ready.value) {
207
+ if (isLocationQuery(center) && isMapReady.value) {
201
208
  center = await resolveQueryToLatLng(center);
202
209
  }
203
210
  const current = map.value.getCenter();
@@ -223,9 +230,10 @@ onMounted(() => {
223
230
  map.value = new mapsApi.value.Map(mapEl.value, _options);
224
231
  if (center && isLocationQuery(center)) {
225
232
  centerOverride.value = await resolveQueryToLatLng(center);
226
- map.value?.setCenter(centerOverride.value);
233
+ if (centerOverride.value)
234
+ map.value?.setCenter(centerOverride.value);
227
235
  }
228
- ready.value = true;
236
+ isMapReady.value = true;
229
237
  });
230
238
  });
231
239
  if (import.meta.server) {
@@ -280,9 +288,9 @@ onBeforeUnmount(() => {
280
288
 
281
289
  <template>
282
290
  <div ref="rootEl" v-bind="rootAttrs">
283
- <div v-show="ready" ref="mapEl" :style="{ width: '100%', height: '100%', maxWidth: '100%' }" />
284
- <slot v-if="!ready" name="placeholder" />
285
- <slot v-if="status !== 'awaitingLoad' && !ready" name="loading">
291
+ <div v-show="isMapReady" ref="mapEl" :style="{ width: '100%', height: '100%', maxWidth: '100%' }" />
292
+ <slot v-if="!isMapReady" name="placeholder" />
293
+ <slot v-if="status !== 'awaitingLoad' && !isMapReady" name="loading">
286
294
  <ScriptAriaLoadingIndicator />
287
295
  </slot>
288
296
  <slot v-if="status === 'awaitingLoad'" name="awaitingLoad" />
@@ -1,11 +1,10 @@
1
1
  import type { ElementScriptTrigger } from '#nuxt-scripts/types';
2
2
  import type { HTMLAttributes, ReservedProps, ShallowRef } from 'vue';
3
3
  export { MAP_INJECTION_KEY } from './useGoogleMapsResource.js';
4
- declare const _default: typeof __VLS_export;
5
- export default _default;
6
- declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
4
+ export interface ScriptGoogleMapsProps {
7
5
  /**
8
6
  * Defines the trigger event to load the script.
7
+ * @default ['mouseenter', 'mouseover', 'mousedown']
9
8
  */
10
9
  trigger?: ElementScriptTrigger;
11
10
  /**
@@ -14,11 +13,20 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
14
13
  apiKey?: string;
15
14
  /**
16
15
  * A latitude / longitude of where to focus the map.
16
+ *
17
+ * @deprecated Pass `center` via `mapOptions` instead. The top-level `center`
18
+ * prop will be removed in a future major version. When both are set,
19
+ * `mapOptions.center` wins.
20
+ * @see https://scripts.nuxt.com/docs/migration-guide/v0-to-v1
17
21
  */
18
22
  center?: google.maps.LatLng | google.maps.LatLngLiteral | `${string},${string}`;
19
23
  /**
20
24
  * Zoom level for the map (0-21). Reactive: changing this will update the map.
21
- * Takes precedence over mapOptions.zoom when provided.
25
+ *
26
+ * @deprecated Pass `zoom` via `mapOptions` instead. The top-level `zoom`
27
+ * prop will be removed in a future major version. When both are set,
28
+ * `mapOptions.zoom` wins.
29
+ * @see https://scripts.nuxt.com/docs/migration-guide/v0-to-v1
22
30
  */
23
31
  zoom?: number;
24
32
  /**
@@ -30,19 +38,21 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
30
38
  */
31
39
  region?: string;
32
40
  /**
33
- * Defines the language of the map
41
+ * Defines the language of the map.
34
42
  */
35
43
  language?: string;
36
44
  /**
37
- * Defines the version of google maps js API
45
+ * Defines the version of google maps js API.
38
46
  */
39
47
  version?: string;
40
48
  /**
41
49
  * Defines the width of the map.
50
+ * @default 640
42
51
  */
43
52
  width?: number | string;
44
53
  /**
45
- * Defines the height of the map
54
+ * Defines the height of the map.
55
+ * @default 400
46
56
  */
47
57
  height?: number | string;
48
58
  /**
@@ -60,122 +70,92 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
60
70
  };
61
71
  /**
62
72
  * Manual color mode control. When provided, overrides auto-detection from @nuxtjs/color-mode.
63
- * Accepts 'light', 'dark', or a reactive ref.
64
- */
65
- colorMode?: "light" | "dark";
66
- }, {
67
- readonly googleMaps: import("vue").Ref<typeof google.maps | undefined, typeof google.maps | undefined>;
68
- readonly map: ShallowRef<google.maps.Map | undefined>;
69
- readonly resolveQueryToLatLng: (query: string) => Promise<google.maps.LatLng | google.maps.LatLngLiteral | undefined>;
70
- readonly importLibrary: {
71
- (key: "marker"): Promise<google.maps.MarkerLibrary>;
72
- (key: "places"): Promise<google.maps.PlacesLibrary>;
73
- (key: "geometry"): Promise<google.maps.GeometryLibrary>;
74
- (key: "drawing"): Promise<google.maps.DrawingLibrary>;
75
- (key: "visualization"): Promise<google.maps.VisualizationLibrary>;
76
- (key: string): Promise<any>;
77
- };
78
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
79
- error: () => any;
80
- ready: (e: {
81
- readonly googleMaps: import("vue").Ref<typeof google.maps | undefined, typeof google.maps | undefined>;
82
- readonly map: ShallowRef<google.maps.Map | undefined>;
83
- readonly resolveQueryToLatLng: (query: string) => Promise<google.maps.LatLng | google.maps.LatLngLiteral | undefined>;
84
- readonly importLibrary: {
85
- (key: "marker"): Promise<google.maps.MarkerLibrary>;
86
- (key: "places"): Promise<google.maps.PlacesLibrary>;
87
- (key: "geometry"): Promise<google.maps.GeometryLibrary>;
88
- (key: "drawing"): Promise<google.maps.DrawingLibrary>;
89
- (key: "visualization"): Promise<google.maps.VisualizationLibrary>;
90
- (key: string): Promise<any>;
91
- };
92
- }) => any;
93
- }, string, import("vue").PublicProps, Readonly<{
94
- /**
95
- * Defines the trigger event to load the script.
73
+ * Accepts 'light' or 'dark'.
96
74
  */
97
- trigger?: ElementScriptTrigger;
75
+ colorMode?: 'light' | 'dark';
76
+ }
77
+ export interface ScriptGoogleMapsExpose {
98
78
  /**
99
- * Defines the Google Maps API key. Must have access to the Static Maps API as well.
79
+ * A reference to the loaded Google Maps API namespace (`google.maps`), or
80
+ * `undefined` if not yet loaded.
100
81
  */
101
- apiKey?: string;
82
+ mapsApi: ShallowRef<typeof google.maps | undefined>;
102
83
  /**
103
- * A latitude / longitude of where to focus the map.
84
+ * A reference to the loaded Google Maps API namespace, or `undefined` if not
85
+ * yet loaded.
86
+ *
87
+ * @deprecated Use `mapsApi` instead. The `googleMaps` alias will be removed
88
+ * in a future major version.
89
+ * @see https://scripts.nuxt.com/docs/migration-guide/v0-to-v1
104
90
  */
105
- center?: google.maps.LatLng | google.maps.LatLngLiteral | `${string},${string}`;
91
+ googleMaps: ShallowRef<typeof google.maps | undefined>;
106
92
  /**
107
- * Zoom level for the map (0-21). Reactive: changing this will update the map.
108
- * Takes precedence over mapOptions.zoom when provided.
93
+ * A reference to the Google Map instance, or `undefined` if not yet initialized.
109
94
  */
110
- zoom?: number;
95
+ map: ShallowRef<google.maps.Map | undefined>;
111
96
  /**
112
- * Options for the map.
97
+ * Utility function to resolve a location query (e.g. "New York, NY") to latitude/longitude coordinates.
98
+ * Uses a caching mechanism and a server-side proxy to avoid unnecessary client-side API calls.
113
99
  */
114
- mapOptions?: google.maps.MapOptions;
100
+ resolveQueryToLatLng: (query: string) => Promise<google.maps.LatLng | google.maps.LatLngLiteral | undefined>;
115
101
  /**
116
- * Defines the region of the map.
102
+ * Utility function to dynamically import additional Google Maps libraries (e.g. "marker", "places").
103
+ * Caches imported libraries for efficient reuse.
117
104
  */
118
- region?: string;
105
+ importLibrary: {
106
+ (key: 'marker'): Promise<google.maps.MarkerLibrary>;
107
+ (key: 'places'): Promise<google.maps.PlacesLibrary>;
108
+ (key: 'geometry'): Promise<google.maps.GeometryLibrary>;
109
+ (key: 'drawing'): Promise<google.maps.DrawingLibrary>;
110
+ (key: 'visualization'): Promise<google.maps.VisualizationLibrary>;
111
+ (key: string): Promise<any>;
112
+ };
113
+ }
114
+ export interface ScriptGoogleMapsEmits {
119
115
  /**
120
- * Defines the language of the map
116
+ * Fired when the Google Maps instance is fully loaded and ready to use. Provides access to the maps API.
121
117
  */
122
- language?: string;
118
+ ready: [payload: ScriptGoogleMapsExpose];
123
119
  /**
124
- * Defines the version of google maps js API
120
+ * Fired when the Google Maps script fails to load.
125
121
  */
126
- version?: string;
122
+ error: [];
123
+ }
124
+ export interface ScriptGoogleMapsSlots {
127
125
  /**
128
- * Defines the width of the map.
126
+ * Default slot for rendering child components (e.g. markers, info windows) that depend on the map being ready.
129
127
  */
130
- width?: number | string;
128
+ default?: () => any;
131
129
  /**
132
- * Defines the height of the map
130
+ * Slot displayed while the map is loading. Can be used to show a custom loading indicator.
133
131
  */
134
- height?: number | string;
132
+ loading?: () => any;
135
133
  /**
136
- * Customize the root element attributes.
134
+ * Slot displayed when the script is awaiting user interaction to load (based on the `trigger` prop).
137
135
  */
138
- rootAttrs?: HTMLAttributes & ReservedProps & Record<string, unknown>;
136
+ awaitingLoad?: () => any;
139
137
  /**
140
- * Map IDs for light and dark color modes.
141
- * When provided, the map will automatically switch styles based on color mode.
142
- * Requires @nuxtjs/color-mode or manual colorMode prop.
138
+ * Slot displayed if the script fails to load.
143
139
  */
144
- mapIds?: {
145
- light?: string;
146
- dark?: string;
147
- };
140
+ error?: () => any;
148
141
  /**
149
- * Manual color mode control. When provided, overrides auto-detection from @nuxtjs/color-mode.
150
- * Accepts 'light', 'dark', or a reactive ref.
142
+ * Slot displayed as a placeholder before the map is ready. Useful for showing a static map or skeleton.
151
143
  */
152
- colorMode?: "light" | "dark";
153
- }> & Readonly<{
144
+ placeholder?: () => any;
145
+ }
146
+ declare const _default: typeof __VLS_export;
147
+ export default _default;
148
+ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<ScriptGoogleMapsProps, ScriptGoogleMapsExpose, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
149
+ error: () => any;
150
+ ready: (payload: ScriptGoogleMapsExpose) => any;
151
+ }, string, import("vue").PublicProps, Readonly<ScriptGoogleMapsProps> & Readonly<{
154
152
  onError?: (() => any) | undefined;
155
- onReady?: ((e: {
156
- readonly googleMaps: import("vue").Ref<typeof google.maps | undefined, typeof google.maps | undefined>;
157
- readonly map: ShallowRef<google.maps.Map | undefined>;
158
- readonly resolveQueryToLatLng: (query: string) => Promise<google.maps.LatLng | google.maps.LatLngLiteral | undefined>;
159
- readonly importLibrary: {
160
- (key: "marker"): Promise<google.maps.MarkerLibrary>;
161
- (key: "places"): Promise<google.maps.PlacesLibrary>;
162
- (key: "geometry"): Promise<google.maps.GeometryLibrary>;
163
- (key: "drawing"): Promise<google.maps.DrawingLibrary>;
164
- (key: "visualization"): Promise<google.maps.VisualizationLibrary>;
165
- (key: string): Promise<any>;
166
- };
167
- }) => any) | undefined;
153
+ onReady?: ((payload: ScriptGoogleMapsExpose) => any) | undefined;
168
154
  }>, {
169
155
  trigger: ElementScriptTrigger;
170
156
  width: number | string;
171
157
  height: number | string;
172
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
173
- default?: () => any;
174
- placeholder?: () => any;
175
- loading?: () => any;
176
- awaitingLoad?: () => any;
177
- error?: () => any;
178
- }>;
158
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ScriptGoogleMapsSlots>;
179
159
  type __VLS_WithSlots<T, S> = T & {
180
160
  new (): {
181
161
  $slots: S;
@@ -1,16 +1,29 @@
1
- type OverlayAnchor = 'center' | 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'left-center' | 'right-center';
2
- type OverlayPane = 'mapPane' | 'overlayLayer' | 'markerLayer' | 'overlayMouseTarget' | 'floatPane';
3
- type __VLS_Props = {
1
+ import type { ShallowRef } from 'vue';
2
+ export type ScriptGoogleMapsOverlayAnchor = 'center' | 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'left-center' | 'right-center';
3
+ export type ScriptGoogleMapsOverlayPane = 'mapPane' | 'overlayLayer' | 'markerLayer' | 'overlayMouseTarget' | 'floatPane';
4
+ export interface ScriptGoogleMapsOverlayViewProps {
4
5
  /**
5
6
  * Geographic position for the overlay. Falls back to parent marker position if omitted.
7
+ *
8
+ * Accepts either a plain `LatLngLiteral` (`{ lat, lng }`) or a
9
+ * `google.maps.LatLng` instance.
6
10
  * @see https://developers.google.com/maps/documentation/javascript/reference/overlay-view#OverlayView
7
11
  */
8
- position?: google.maps.LatLngLiteral;
12
+ position?: google.maps.LatLng | google.maps.LatLngLiteral;
13
+ /**
14
+ * Initial open state for the uncontrolled mode (when `v-model:open` is not
15
+ * bound). When omitted, the overlay opens on mount, matching v0 behaviour.
16
+ *
17
+ * Has no effect when `v-model:open` is used; pass an initial value to the
18
+ * bound ref instead.
19
+ * @default true
20
+ */
21
+ defaultOpen?: boolean;
9
22
  /**
10
23
  * Anchor point of the overlay relative to its position.
11
24
  * @default 'bottom-center'
12
25
  */
13
- anchor?: OverlayAnchor;
26
+ anchor?: ScriptGoogleMapsOverlayAnchor;
14
27
  /**
15
28
  * Pixel offset from the anchor position.
16
29
  */
@@ -23,7 +36,7 @@ type __VLS_Props = {
23
36
  * @default 'floatPane'
24
37
  * @see https://developers.google.com/maps/documentation/javascript/reference/overlay-view#MapPanes
25
38
  */
26
- pane?: OverlayPane;
39
+ pane?: ScriptGoogleMapsOverlayPane;
27
40
  /**
28
41
  * CSS z-index for the overlay element.
29
42
  */
@@ -45,31 +58,39 @@ type __VLS_Props = {
45
58
  * @default true
46
59
  */
47
60
  hideWhenClustered?: boolean;
48
- };
49
- type __VLS_Slots = {
61
+ }
62
+ export interface ScriptGoogleMapsOverlayViewEmits {
63
+ /** Event handler called when the open state of the overlay view changes. */
64
+ 'update:open': [value: boolean];
65
+ }
66
+ export interface ScriptGoogleMapsOverlayViewSlots {
50
67
  default?: () => any;
51
- };
52
- type __VLS_ModelProps = {
53
- 'open'?: boolean;
54
- };
55
- type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
56
- declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
57
- overlay: import("vue").ShallowRef<google.maps.OverlayView | undefined>;
58
- dataState: import("vue").ComputedRef<"open" | "closed">;
59
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
60
- "update:open": (value: boolean) => any;
61
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
62
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
63
- }>, {
64
- anchor: OverlayAnchor;
65
- pane: OverlayPane;
66
- blockMapInteraction: boolean;
67
- panOnOpen: boolean | number;
68
- hideWhenClustered: boolean;
69
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
70
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
68
+ }
69
+ export interface ScriptGoogleMapsOverlayViewExpose {
70
+ /** The underlying `OverlayView` instance. */
71
+ overlayView: ShallowRef<google.maps.OverlayView | undefined>;
72
+ /**
73
+ * The underlying `OverlayView` instance.
74
+ *
75
+ * @deprecated Use `overlayView` instead. The `overlay` alias will be
76
+ * removed in a future major version.
77
+ * @see https://scripts.nuxt.com/docs/migration-guide/v0-to-v1
78
+ */
79
+ overlay: ShallowRef<google.maps.OverlayView | undefined>;
80
+ /** The current data-state of the overlay, either 'open' or 'closed'. */
81
+ dataState: Readonly<ShallowRef<'open' | 'closed'>>;
82
+ }
71
83
  declare const _default: typeof __VLS_export;
72
84
  export default _default;
85
+ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<ScriptGoogleMapsOverlayViewProps & {
86
+ open?: boolean;
87
+ }, ScriptGoogleMapsOverlayViewExpose, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
88
+ "update:open": (value: boolean) => any;
89
+ }, string, import("vue").PublicProps, Readonly<ScriptGoogleMapsOverlayViewProps & {
90
+ open?: boolean;
91
+ }> & Readonly<{
92
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
93
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ScriptGoogleMapsOverlayViewSlots>;
73
94
  type __VLS_WithSlots<T, S> = T & {
74
95
  new (): {
75
96
  $slots: S;