@nuxt/scripts 1.0.0-beta.27 → 1.0.0-beta.28
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/dist/client/200.html +1 -1
- package/dist/client/404.html +1 -1
- package/dist/client/_nuxt/{KCxg59bo.js → AwAKM0sG.js} +1 -1
- package/dist/client/_nuxt/{CwXQ1Eqw.js → Bl23o3st.js} +18 -18
- package/dist/client/_nuxt/{JXDRhrZp.js → CYlYSSNW.js} +1 -1
- package/dist/client/_nuxt/{viP3Pc9X.js → D5FIkDae.js} +1 -1
- package/dist/client/_nuxt/builds/latest.json +1 -1
- package/dist/client/_nuxt/builds/meta/3ca2fe82-918c-4528-826c-0bf9ff54a5fa.json +1 -0
- package/dist/client/_nuxt/error-404.1K8v8Su2.css +1 -0
- package/dist/client/_nuxt/error-500.B9qvKpQm.css +1 -0
- package/dist/client/index.html +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +12 -1
- package/dist/registry.mjs +4 -1
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.d.vue.ts +13 -3
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue +12 -7
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue.d.ts +13 -3
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.d.vue.ts +4 -34
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.vue +37 -36
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.vue.d.ts +4 -34
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsCircle.vue +5 -9
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsGeoJson.d.vue.ts +35 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsGeoJson.vue +68 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsGeoJson.vue.d.ts +35 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsInfoWindow.d.vue.ts +4 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsInfoWindow.vue +2 -6
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsInfoWindow.vue.d.ts +4 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.d.vue.ts +6 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.vue +18 -10
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.vue.d.ts +6 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.d.vue.ts +40 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.vue +168 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.vue.d.ts +40 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPolygon.vue +4 -9
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPolyline.vue +4 -9
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsRectangle.vue +5 -9
- package/dist/runtime/components/GoogleMaps/bindGoogleMapsEvents.d.ts +13 -0
- package/dist/runtime/components/GoogleMaps/bindGoogleMapsEvents.js +8 -0
- package/dist/runtime/registry/gravatar.d.ts +1 -0
- package/dist/runtime/registry/gravatar.js +1 -0
- package/dist/stats.mjs +283 -227
- package/dist/types-source.mjs +1247 -67
- package/package.json +3 -3
- package/dist/client/_nuxt/builds/meta/d0d06e27-af53-4f1a-b7ae-18727423b3ed.json +0 -1
- package/dist/client/_nuxt/error-404.C_3_IG5y.css +0 -1
- package/dist/client/_nuxt/error-500.DSv6YikH.css +0 -1
package/dist/types-source.mjs
CHANGED
|
@@ -26,11 +26,6 @@ const types = {
|
|
|
26
26
|
name: "ScriptBlueskyEmbedProps",
|
|
27
27
|
kind: "interface",
|
|
28
28
|
code: "interface ScriptBlueskyEmbedProps {\n /**\n * The Bluesky post URL to embed\n * @example 'https://bsky.app/profile/bsky.app/post/3mgnwwvj3u22a'\n */\n postUrl: string\n /**\n * Custom API endpoint for fetching post data\n * @default '/_scripts/embed/bluesky'\n */\n apiEndpoint?: string\n /**\n * Custom image proxy endpoint\n * @default '/_scripts/embed/bluesky-image'\n */\n imageProxyEndpoint?: string\n /**\n * Root element attributes\n */\n rootAttrs?: HTMLAttributes\n}"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
name: "ScriptBlueskyEmbedDefaults",
|
|
32
|
-
kind: "const",
|
|
33
|
-
code: "const ScriptBlueskyEmbedDefaults = {\n \"apiEndpoint\": \"'/_scripts/embed/bluesky'\",\n \"imageProxyEndpoint\": \"'/_scripts/embed/bluesky-image'\"\n}"
|
|
34
29
|
}
|
|
35
30
|
],
|
|
36
31
|
clarity: [
|
|
@@ -77,11 +72,6 @@ const types = {
|
|
|
77
72
|
name: "ScriptCrispProps",
|
|
78
73
|
kind: "interface",
|
|
79
74
|
code: "interface ScriptCrispProps {\n /**\n * Defines the trigger event to load the script.\n */\n trigger?: ElementScriptTrigger\n id: string\n runtimeConfig?: {\n locale: string\n }\n tokenId?: string\n cookieDomain?: string\n cookieExpiry?: number\n}"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
name: "ScriptCrispDefaults",
|
|
83
|
-
kind: "const",
|
|
84
|
-
code: "const ScriptCrispDefaults = {\n \"trigger\": \"'click'\"\n}"
|
|
85
75
|
}
|
|
86
76
|
],
|
|
87
77
|
"databuddy-analytics": [
|
|
@@ -123,11 +113,6 @@ const types = {
|
|
|
123
113
|
name: "ScriptGoogleAdsenseProps",
|
|
124
114
|
kind: "interface",
|
|
125
115
|
code: "interface ScriptGoogleAdsenseProps {\n dataAdClient: string\n dataAdSlot: string\n dataAdFormat?: 'auto' | 'rectangle' | 'vertical' | 'horizontal' | 'fluid' | 'autorelaxed'\n dataAdLayout?: 'in-article' | 'in-feed' | 'fixed'\n dataFullWidthResponsive?: boolean\n /**\n * Defines the trigger event to load the script.\n */\n trigger?: ElementScriptTrigger\n}"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
name: "ScriptGoogleAdsenseDefaults",
|
|
129
|
-
kind: "const",
|
|
130
|
-
code: "const ScriptGoogleAdsenseDefaults = {\n \"dataFullWidthResponsive\": \"true\",\n \"dataAdFormat\": \"undefined\"\n}"
|
|
131
116
|
}
|
|
132
117
|
],
|
|
133
118
|
"google-analytics": [
|
|
@@ -206,23 +191,38 @@ const types = {
|
|
|
206
191
|
{
|
|
207
192
|
name: "ScriptGoogleMapsProps",
|
|
208
193
|
kind: "interface",
|
|
209
|
-
code: "interface ScriptGoogleMapsProps {\n /**\n * Defines the trigger event to load the script.\n */\n trigger?: ElementScriptTrigger\n /**\n * Is Google Maps being rendered above the fold?\n * This will load the placeholder image with higher priority.\n */\n aboveTheFold?: boolean\n /**\n * Defines the Google Maps API key. Must have access to the Static Maps API as well.\n */\n apiKey?: string\n /**\n * A latitude / longitude of where to focus the map.\n */\n center?: google.maps.LatLng | google.maps.LatLngLiteral | `${string},${string}`\n /**\n * Should a marker be displayed on the map where the centre is.\n */\n centerMarker?: boolean\n /**\n * Options for the map.\n */\n mapOptions?: google.maps.MapOptions\n /**\n * Defines the region of the map.\n */\n region?: string\n /**\n * Defines the language of the map\n */\n language?: string\n /**\n * Defines the version of google maps js API\n */\n version?: string\n /**\n * Defines the width of the map.\n */\n width?: number | string\n /**\n * Defines the height of the map\n */\n height?: number | string\n /**\n * Customize the placeholder image attributes.\n *\n * @see https://developers.google.com/maps/documentation/maps-static/start.\n */\n placeholderOptions?: PlaceholderOptions\n /**\n * Customize the placeholder image attributes.\n */\n placeholderAttrs?: ImgHTMLAttributes & ReservedProps & Record<string, unknown>\n /**\n * Customize the root element attributes.\n */\n rootAttrs?: HTMLAttributes & ReservedProps & Record<string, unknown>\n /**\n * Extra Markers to add to the map.\n */\n markers?: (`${string},${string}` | google.maps.marker.AdvancedMarkerElementOptions)[]\n /**\n * Map IDs for light and dark color modes.\n * When provided, the map will automatically switch styles based on color mode.\n * Requires @nuxtjs/color-mode or manual colorMode prop.\n */\n mapIds?: { light?: string, dark?: string }\n /**\n * Manual color mode control. When provided, overrides auto-detection from @nuxtjs/color-mode.\n * Accepts 'light', 'dark', or a reactive ref.\n */\n colorMode?: 'light' | 'dark'\n}"
|
|
194
|
+
code: "interface ScriptGoogleMapsProps {\n /**\n * Defines the trigger event to load the script.\n */\n trigger?: ElementScriptTrigger\n /**\n * Is Google Maps being rendered above the fold?\n * This will load the placeholder image with higher priority.\n */\n aboveTheFold?: boolean\n /**\n * Defines the Google Maps API key. Must have access to the Static Maps API as well.\n */\n apiKey?: string\n /**\n * A latitude / longitude of where to focus the map.\n */\n center?: google.maps.LatLng | google.maps.LatLngLiteral | `${string},${string}`\n /**\n * Zoom level for the map (0-21). Reactive: changing this will update the map.\n * Takes precedence over mapOptions.zoom when provided.\n */\n zoom?: number\n /**\n * Should a marker be displayed on the map where the centre is.\n */\n centerMarker?: boolean\n /**\n * Options for the map.\n */\n mapOptions?: google.maps.MapOptions\n /**\n * Defines the region of the map.\n */\n region?: string\n /**\n * Defines the language of the map\n */\n language?: string\n /**\n * Defines the version of google maps js API\n */\n version?: string\n /**\n * Defines the width of the map.\n */\n width?: number | string\n /**\n * Defines the height of the map\n */\n height?: number | string\n /**\n * Customize the placeholder image attributes.\n *\n * @see https://developers.google.com/maps/documentation/maps-static/start.\n */\n placeholderOptions?: PlaceholderOptions\n /**\n * Customize the placeholder image attributes.\n */\n placeholderAttrs?: ImgHTMLAttributes & ReservedProps & Record<string, unknown>\n /**\n * Customize the root element attributes.\n */\n rootAttrs?: HTMLAttributes & ReservedProps & Record<string, unknown>\n /**\n * Extra Markers to add to the map.\n */\n markers?: (`${string},${string}` | google.maps.marker.AdvancedMarkerElementOptions)[]\n /**\n * Map IDs for light and dark color modes.\n * When provided, the map will automatically switch styles based on color mode.\n * Requires @nuxtjs/color-mode or manual colorMode prop.\n */\n mapIds?: { light?: string, dark?: string }\n /**\n * Manual color mode control. When provided, overrides auto-detection from @nuxtjs/color-mode.\n * Accepts 'light', 'dark', or a reactive ref.\n */\n colorMode?: 'light' | 'dark'\n}"
|
|
210
195
|
},
|
|
211
196
|
{
|
|
212
|
-
name: "
|
|
213
|
-
kind: "
|
|
214
|
-
code: "
|
|
197
|
+
name: "ScriptGoogleMapsAdvancedMarkerElementProps",
|
|
198
|
+
kind: "interface",
|
|
199
|
+
code: "interface ScriptGoogleMapsAdvancedMarkerElementProps {\n position?: google.maps.LatLngLiteral | google.maps.LatLng\n options?: Omit<google.maps.marker.AdvancedMarkerElementOptions, 'map'>\n}"
|
|
215
200
|
},
|
|
216
201
|
{
|
|
217
|
-
name: "
|
|
202
|
+
name: "ScriptGoogleMapsAdvancedMarkerElementEvents",
|
|
218
203
|
kind: "interface",
|
|
219
|
-
code: "interface
|
|
204
|
+
code: "interface ScriptGoogleMapsAdvancedMarkerElementEvents {\n click: google.maps.MapMouseEvent\n drag: google.maps.MapMouseEvent\n dragend: google.maps.MapMouseEvent\n dragstart: google.maps.MapMouseEvent\n}"
|
|
220
205
|
},
|
|
221
206
|
{
|
|
222
207
|
name: "ScriptGoogleMapsCircleProps",
|
|
223
208
|
kind: "interface",
|
|
224
209
|
code: "interface ScriptGoogleMapsCircleProps {\n options?: Omit<google.maps.CircleOptions, 'map'>\n}"
|
|
225
210
|
},
|
|
211
|
+
{
|
|
212
|
+
name: "ScriptGoogleMapsCircleEvents",
|
|
213
|
+
kind: "interface",
|
|
214
|
+
code: "interface ScriptGoogleMapsCircleEvents {\n center_changed: -\n radius_changed: -\n click: google.maps.MapMouseEvent\n dblclick: google.maps.MapMouseEvent\n drag: google.maps.MapMouseEvent\n dragend: google.maps.MapMouseEvent\n dragstart: google.maps.MapMouseEvent\n mousedown: google.maps.MapMouseEvent\n mousemove: google.maps.MapMouseEvent\n mouseout: google.maps.MapMouseEvent\n mouseover: google.maps.MapMouseEvent\n mouseup: google.maps.MapMouseEvent\n rightclick: google.maps.MapMouseEvent\n}"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
name: "ScriptGoogleMapsGeoJsonProps",
|
|
218
|
+
kind: "interface",
|
|
219
|
+
code: "interface ScriptGoogleMapsGeoJsonProps {\n src: string | object\n style?: google.maps.Data.StylingFunction | google.maps.Data.StyleOptions\n}"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
name: "ScriptGoogleMapsGeoJsonEvents",
|
|
223
|
+
kind: "interface",
|
|
224
|
+
code: "interface ScriptGoogleMapsGeoJsonEvents {\n click: google.maps.Data.MouseEvent\n contextmenu: google.maps.Data.MouseEvent\n dblclick: google.maps.Data.MouseEvent\n mousedown: google.maps.Data.MouseEvent\n mousemove: google.maps.Data.MouseEvent\n mouseout: google.maps.Data.MouseEvent\n mouseover: google.maps.Data.MouseEvent\n mouseup: google.maps.Data.MouseEvent\n addfeature: google.maps.Data.AddFeatureEvent\n removefeature: google.maps.Data.RemoveFeatureEvent\n setgeometry: google.maps.Data.SetGeometryEvent\n setproperty: google.maps.Data.SetPropertyEvent\n removeproperty: google.maps.Data.RemovePropertyEvent\n}"
|
|
225
|
+
},
|
|
226
226
|
{
|
|
227
227
|
name: "ScriptGoogleMapsHeatmapLayerProps",
|
|
228
228
|
kind: "interface",
|
|
@@ -233,16 +233,36 @@ const types = {
|
|
|
233
233
|
kind: "interface",
|
|
234
234
|
code: "interface ScriptGoogleMapsInfoWindowProps {\n options?: google.maps.InfoWindowOptions\n}"
|
|
235
235
|
},
|
|
236
|
+
{
|
|
237
|
+
name: "ScriptGoogleMapsInfoWindowEvents",
|
|
238
|
+
kind: "interface",
|
|
239
|
+
code: "interface ScriptGoogleMapsInfoWindowEvents {\n close: -\n closeclick: -\n content_changed: -\n domready: -\n headercontent_changed: -\n headerdisabled_changed: -\n position_changed: -\n visible: -\n zindex_changed: -\n}"
|
|
240
|
+
},
|
|
236
241
|
{
|
|
237
242
|
name: "ScriptGoogleMapsMarkerProps",
|
|
238
243
|
kind: "interface",
|
|
239
|
-
code: "interface ScriptGoogleMapsMarkerProps {\n options?: Omit<google.maps.MarkerOptions, 'map'>\n}"
|
|
244
|
+
code: "interface ScriptGoogleMapsMarkerProps {\n position?: google.maps.LatLngLiteral | google.maps.LatLng\n options?: Omit<google.maps.MarkerOptions, 'map'>\n}"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: "ScriptGoogleMapsMarkerEvents",
|
|
248
|
+
kind: "interface",
|
|
249
|
+
code: "interface ScriptGoogleMapsMarkerEvents {\n animation_changed: -\n clickable_changed: -\n cursor_changed: -\n draggable_changed: -\n flat_changed: -\n icon_changed: -\n position_changed: -\n shape_changed: -\n title_changed: -\n visible_changed: -\n zindex_changed: -\n click: google.maps.MapMouseEvent\n contextmenu: google.maps.MapMouseEvent\n dblclick: google.maps.MapMouseEvent\n drag: google.maps.MapMouseEvent\n dragend: google.maps.MapMouseEvent\n dragstart: google.maps.MapMouseEvent\n mousedown: google.maps.MapMouseEvent\n mouseout: google.maps.MapMouseEvent\n mouseover: google.maps.MapMouseEvent\n mouseup: google.maps.MapMouseEvent\n}"
|
|
240
250
|
},
|
|
241
251
|
{
|
|
242
252
|
name: "ScriptGoogleMapsMarkerClustererProps",
|
|
243
253
|
kind: "interface",
|
|
244
254
|
code: "interface ScriptGoogleMapsMarkerClustererProps {\n options?: Omit<MarkerClustererOptions, 'map'>\n}"
|
|
245
255
|
},
|
|
256
|
+
{
|
|
257
|
+
name: "ScriptGoogleMapsMarkerClustererEvents",
|
|
258
|
+
kind: "interface",
|
|
259
|
+
code: "interface ScriptGoogleMapsMarkerClustererEvents {\n click: MarkerClustererInstance\n clusteringbegin: MarkerClustererInstance\n clusteringend: MarkerClustererInstance\n}"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
name: "ScriptGoogleMapsOverlayViewProps",
|
|
263
|
+
kind: "interface",
|
|
264
|
+
code: "interface ScriptGoogleMapsOverlayViewProps {\n position?: google.maps.LatLngLiteral\n anchor?: OverlayAnchor\n offset?: { x: number, y: number }\n pane?: OverlayPane\n zIndex?: number\n blockMapInteraction?: boolean\n}"
|
|
265
|
+
},
|
|
246
266
|
{
|
|
247
267
|
name: "ScriptGoogleMapsPinElementProps",
|
|
248
268
|
kind: "interface",
|
|
@@ -253,15 +273,30 @@ const types = {
|
|
|
253
273
|
kind: "interface",
|
|
254
274
|
code: "interface ScriptGoogleMapsPolygonProps {\n options?: Omit<google.maps.PolygonOptions, 'map'>\n}"
|
|
255
275
|
},
|
|
276
|
+
{
|
|
277
|
+
name: "ScriptGoogleMapsPolygonEvents",
|
|
278
|
+
kind: "interface",
|
|
279
|
+
code: "interface ScriptGoogleMapsPolygonEvents {\n click: google.maps.PolyMouseEvent\n contextmenu: google.maps.PolyMouseEvent\n dblclick: google.maps.PolyMouseEvent\n mousedown: google.maps.PolyMouseEvent\n mousemove: google.maps.PolyMouseEvent\n mouseout: google.maps.PolyMouseEvent\n mouseover: google.maps.PolyMouseEvent\n mouseup: google.maps.PolyMouseEvent\n drag: google.maps.MapMouseEvent\n dragend: google.maps.MapMouseEvent\n dragstart: google.maps.MapMouseEvent\n}"
|
|
280
|
+
},
|
|
256
281
|
{
|
|
257
282
|
name: "ScriptGoogleMapsPolylineProps",
|
|
258
283
|
kind: "interface",
|
|
259
284
|
code: "interface ScriptGoogleMapsPolylineProps {\n options?: Omit<google.maps.PolylineOptions, 'map'>\n}"
|
|
260
285
|
},
|
|
286
|
+
{
|
|
287
|
+
name: "ScriptGoogleMapsPolylineEvents",
|
|
288
|
+
kind: "interface",
|
|
289
|
+
code: "interface ScriptGoogleMapsPolylineEvents {\n click: google.maps.PolyMouseEvent\n contextmenu: google.maps.PolyMouseEvent\n dblclick: google.maps.PolyMouseEvent\n mousedown: google.maps.PolyMouseEvent\n mousemove: google.maps.PolyMouseEvent\n mouseout: google.maps.PolyMouseEvent\n mouseover: google.maps.PolyMouseEvent\n mouseup: google.maps.PolyMouseEvent\n drag: google.maps.MapMouseEvent\n dragend: google.maps.MapMouseEvent\n dragstart: google.maps.MapMouseEvent\n}"
|
|
290
|
+
},
|
|
261
291
|
{
|
|
262
292
|
name: "ScriptGoogleMapsRectangleProps",
|
|
263
293
|
kind: "interface",
|
|
264
294
|
code: "interface ScriptGoogleMapsRectangleProps {\n options?: Omit<google.maps.RectangleOptions, 'map'>\n}"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
name: "ScriptGoogleMapsRectangleEvents",
|
|
298
|
+
kind: "interface",
|
|
299
|
+
code: "interface ScriptGoogleMapsRectangleEvents {\n bounds_changed: -\n click: google.maps.MapMouseEvent\n contextmenu: google.maps.MapMouseEvent\n dblclick: google.maps.MapMouseEvent\n drag: google.maps.MapMouseEvent\n dragend: google.maps.MapMouseEvent\n dragstart: google.maps.MapMouseEvent\n mousedown: google.maps.MapMouseEvent\n mousemove: google.maps.MapMouseEvent\n mouseout: google.maps.MapMouseEvent\n mouseover: google.maps.MapMouseEvent\n mouseup: google.maps.MapMouseEvent\n}"
|
|
265
300
|
}
|
|
266
301
|
],
|
|
267
302
|
"google-recaptcha": [
|
|
@@ -371,6 +406,11 @@ const types = {
|
|
|
371
406
|
}
|
|
372
407
|
],
|
|
373
408
|
gravatar: [
|
|
409
|
+
{
|
|
410
|
+
name: "GravatarOptions",
|
|
411
|
+
kind: "const",
|
|
412
|
+
code: "export const GravatarOptions = object({\n /**\n * Cache duration for proxied avatar images in seconds.\n * @default 3600\n */\n cacheMaxAge: optional(number()),\n /**\n * Default image to show when no Gravatar exists.\n * @see https://docs.gravatar.com/general/images/#default-image\n * @default 'mp'\n */\n default: optional(string()),\n /**\n * Avatar size in pixels (1-2048).\n * @default 80\n */\n size: optional(number()),\n /**\n * Content rating filter.\n * @default 'g'\n */\n rating: optional(string()),\n})"
|
|
413
|
+
},
|
|
374
414
|
{
|
|
375
415
|
name: "GravatarApi",
|
|
376
416
|
kind: "interface",
|
|
@@ -399,11 +439,6 @@ const types = {
|
|
|
399
439
|
name: "ScriptInstagramEmbedProps",
|
|
400
440
|
kind: "interface",
|
|
401
441
|
code: "interface ScriptInstagramEmbedProps {\n /**\n * The Instagram post URL to embed\n * e.g., https://www.instagram.com/p/ABC123/\n */\n postUrl: string\n /**\n * Whether to include captions in the embed\n * @default true\n */\n captions?: boolean\n /**\n * Custom API endpoint for fetching embed HTML\n * @default '/_scripts/embed/instagram'\n */\n apiEndpoint?: string\n /**\n * Root element attributes\n */\n rootAttrs?: HTMLAttributes\n}"
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
name: "ScriptInstagramEmbedDefaults",
|
|
405
|
-
kind: "const",
|
|
406
|
-
code: "const ScriptInstagramEmbedDefaults = {\n \"captions\": \"true\",\n \"apiEndpoint\": \"'/_scripts/embed/instagram'\"\n}"
|
|
407
442
|
}
|
|
408
443
|
],
|
|
409
444
|
intercom: [
|
|
@@ -421,11 +456,6 @@ const types = {
|
|
|
421
456
|
name: "ScriptIntercomProps",
|
|
422
457
|
kind: "interface",
|
|
423
458
|
code: "interface ScriptIntercomProps {\n appId: string\n apiBase?: string\n name?: string\n email?: string\n userId?: string\n // customizing the messenger\n alignment?: 'left' | 'right'\n horizontalPadding?: number\n verticalPadding?: number\n /**\n * Defines the trigger event to load the script.\n */\n trigger?: ElementScriptTrigger\n}"
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
name: "ScriptIntercomDefaults",
|
|
427
|
-
kind: "const",
|
|
428
|
-
code: "const ScriptIntercomDefaults = {\n \"trigger\": \"'click'\"\n}"
|
|
429
459
|
}
|
|
430
460
|
],
|
|
431
461
|
"lemon-squeezy": [
|
|
@@ -443,11 +473,6 @@ const types = {
|
|
|
443
473
|
name: "ScriptLemonSqueezyProps",
|
|
444
474
|
kind: "interface",
|
|
445
475
|
code: "interface ScriptLemonSqueezyProps {\n trigger?: ElementScriptTrigger\n}"
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
name: "ScriptLemonSqueezyDefaults",
|
|
449
|
-
kind: "const",
|
|
450
|
-
code: "const ScriptLemonSqueezyDefaults = {\n \"trigger\": \"'visible'\"\n}"
|
|
451
476
|
}
|
|
452
477
|
],
|
|
453
478
|
"matomo-analytics": [
|
|
@@ -539,20 +564,10 @@ const types = {
|
|
|
539
564
|
kind: "interface",
|
|
540
565
|
code: "interface ScriptPayPalButtonsProps {\n /**\n * Customize the root element attributes.\n */\n rootAttrs?: HTMLAttributes & ReservedProps & Record<string, unknown>\n /**\n * Defines the trigger event to load the script.\n */\n trigger?: ElementScriptTrigger\n /**\n * Client ID or client token for PayPal SDK v6 authentication.\n */\n clientId?: string\n /**\n * Server-generated client token for SDK v6.\n */\n clientToken?: string\n /**\n * The v6 SDK components to load.\n * @default ['paypal-payments']\n */\n components?: Components[]\n /**\n * The page type context hint.\n */\n pageType?: PageTypes\n /**\n * The locale for the SDK (BCP-47 code).\n */\n locale?: string\n /**\n * The merchant ID(s).\n */\n merchantId?: string | string[]\n /**\n * Partner attribution ID for revenue sharing.\n */\n partnerAttributionId?: string\n /**\n * The paypal script options.\n */\n paypalScriptOptions?: Partial<PayPalInput>\n}"
|
|
541
566
|
},
|
|
542
|
-
{
|
|
543
|
-
name: "ScriptPayPalButtonsDefaults",
|
|
544
|
-
kind: "const",
|
|
545
|
-
code: "const ScriptPayPalButtonsDefaults = {\n \"trigger\": \"'visible'\",\n \"clientId\": \"'test'\",\n \"components\": \"() => ['paypal-payments'] as Components[]\",\n \"paypalScriptOptions\": \"() => ({})\"\n}"
|
|
546
|
-
},
|
|
547
567
|
{
|
|
548
568
|
name: "ScriptPayPalMessagesProps",
|
|
549
569
|
kind: "interface",
|
|
550
570
|
code: "interface ScriptPayPalMessagesProps {\n /**\n * Customize the root element attributes.\n */\n rootAttrs?: HTMLAttributes & ReservedProps & Record<string, unknown>\n /**\n * Defines the trigger event to load the script.\n */\n trigger?: ElementScriptTrigger\n /**\n * Client ID or client token for PayPal SDK v6 authentication.\n */\n clientId?: string\n /**\n * Server-generated client token for SDK v6.\n */\n clientToken?: string\n /**\n * The merchant ID for the paypal script.\n */\n merchantId?: string | string[]\n /**\n * The partner attribution ID.\n */\n partnerAttributionId?: string\n /**\n * The page type context hint.\n */\n pageType?: PageTypes\n /**\n * The locale for the SDK (BCP-47 code).\n */\n locale?: string\n /**\n * Options for the PayPal Messages session.\n */\n messagesOptions?: PayPalMessagesOptions\n /**\n * The paypal script options.\n */\n paypalScriptOptions?: Partial<PayPalInput>\n}"
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
name: "ScriptPayPalMessagesDefaults",
|
|
554
|
-
kind: "const",
|
|
555
|
-
code: "const ScriptPayPalMessagesDefaults = {\n \"trigger\": \"'visible'\",\n \"clientId\": \"'test'\",\n \"paypalScriptOptions\": \"() => ({})\",\n \"messagesOptions\": \"() => ({})\"\n}"
|
|
556
571
|
}
|
|
557
572
|
],
|
|
558
573
|
"plausible-analytics": [
|
|
@@ -697,11 +712,6 @@ const types = {
|
|
|
697
712
|
name: "ScriptStripePricingTableProps",
|
|
698
713
|
kind: "interface",
|
|
699
714
|
code: "interface ScriptStripePricingTableProps {\n trigger?: ElementScriptTrigger\n publishableKey: string\n pricingTableId: string\n clientReferenceId?: string\n customerEmail?: string\n customerSessionClientSecret?: string\n}"
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
name: "ScriptStripePricingTableDefaults",
|
|
703
|
-
kind: "const",
|
|
704
|
-
code: "const ScriptStripePricingTableDefaults = {\n \"trigger\": \"'visible'\"\n}"
|
|
705
715
|
}
|
|
706
716
|
],
|
|
707
717
|
"tiktok-pixel": [
|
|
@@ -795,11 +805,6 @@ const types = {
|
|
|
795
805
|
name: "ScriptVimeoPlayerProps",
|
|
796
806
|
kind: "interface",
|
|
797
807
|
code: "interface ScriptVimeoPlayerProps {\n // custom\n trigger?: ElementScriptTrigger\n placeholderAttrs?: ImgHTMLAttributes\n rootAttrs?: HTMLAttributes\n aboveTheFold?: boolean\n vimeoOptions?: VimeoOptions\n id?: number | undefined\n url?: string | undefined\n ratio?: string\n /**\n * Object-fit for the placeholder image.\n *\n * @default 'contain'\n */\n placeholderObjectFit?: 'cover' | 'contain' | 'fill' | 'none' | 'scale-down'\n}"
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
name: "ScriptVimeoPlayerDefaults",
|
|
801
|
-
kind: "const",
|
|
802
|
-
code: "const ScriptVimeoPlayerDefaults = {\n \"trigger\": \"'mousedown'\",\n \"ratio\": \"'16/9'\",\n \"placeholderObjectFit\": \"'contain'\"\n}"
|
|
803
808
|
}
|
|
804
809
|
],
|
|
805
810
|
"x-embed": [
|
|
@@ -817,11 +822,6 @@ const types = {
|
|
|
817
822
|
name: "ScriptXEmbedProps",
|
|
818
823
|
kind: "interface",
|
|
819
824
|
code: "interface ScriptXEmbedProps {\n /**\n * The tweet ID to embed\n */\n tweetId: string\n /**\n * Custom API endpoint for fetching tweet data\n * @default '/_scripts/embed/x'\n */\n apiEndpoint?: string\n /**\n * Custom image proxy endpoint\n * @default '/_scripts/embed/x-image'\n */\n imageProxyEndpoint?: string\n /**\n * Root element attributes\n */\n rootAttrs?: HTMLAttributes\n}"
|
|
820
|
-
},
|
|
821
|
-
{
|
|
822
|
-
name: "ScriptXEmbedDefaults",
|
|
823
|
-
kind: "const",
|
|
824
|
-
code: "const ScriptXEmbedDefaults = {\n \"apiEndpoint\": \"'/_scripts/embed/x'\",\n \"imageProxyEndpoint\": \"'/_scripts/embed/x-image'\"\n}"
|
|
825
825
|
}
|
|
826
826
|
],
|
|
827
827
|
"x-pixel": [
|
|
@@ -861,11 +861,6 @@ const types = {
|
|
|
861
861
|
name: "ScriptYouTubePlayerProps",
|
|
862
862
|
kind: "interface",
|
|
863
863
|
code: "interface ScriptYouTubePlayerProps {\n placeholderAttrs?: ImgHTMLAttributes\n rootAttrs?: HTMLAttributes\n aboveTheFold?: boolean\n trigger?: ElementScriptTrigger\n videoId: string\n playerVars?: YT.PlayerVars\n width?: number\n height?: number\n ratio?: string\n /**\n * Whether to use youtube-nocookie.com for embedding.\n *\n * @default false\n */\n cookies?: boolean\n playerOptions?: YT.PlayerOptions\n thumbnailSize?: YoutubeThumbnailSize\n webp?: boolean\n /**\n * Object-fit for the placeholder image.\n *\n * @default 'cover'\n */\n placeholderObjectFit?: 'cover' | 'contain' | 'fill' | 'none' | 'scale-down'\n}"
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
name: "ScriptYouTubePlayerDefaults",
|
|
867
|
-
kind: "const",
|
|
868
|
-
code: "const ScriptYouTubePlayerDefaults = {\n \"cookies\": \"false\",\n \"trigger\": \"'mousedown'\",\n \"thumbnailSize\": \"'hq720'\",\n \"webp\": \"true\",\n \"playerVars\": \"{ autoplay: 0, playsinline: 1 }\",\n \"width\": \"640\",\n \"height\": \"360\",\n \"ratio\": \"'16/9'\",\n \"placeholderObjectFit\": \"'cover'\"\n}"
|
|
869
864
|
}
|
|
870
865
|
],
|
|
871
866
|
"carbon-ads": [
|
|
@@ -2023,6 +2018,1191 @@ const schemaFields = {
|
|
|
2023
2018
|
description: "Content rating filter.",
|
|
2024
2019
|
defaultValue: "'g'"
|
|
2025
2020
|
}
|
|
2021
|
+
],
|
|
2022
|
+
ScriptGoogleMapsProps: [
|
|
2023
|
+
{
|
|
2024
|
+
name: "trigger",
|
|
2025
|
+
type: "ElementScriptTrigger",
|
|
2026
|
+
required: false
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
name: "aboveTheFold",
|
|
2030
|
+
type: "boolean",
|
|
2031
|
+
required: false
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
name: "apiKey",
|
|
2035
|
+
type: "string",
|
|
2036
|
+
required: false
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
name: "center",
|
|
2040
|
+
type: "google.maps.LatLng | google.maps.LatLngLiteral | `${string},${string}`",
|
|
2041
|
+
required: false
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
name: "zoom",
|
|
2045
|
+
type: "number",
|
|
2046
|
+
required: false
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
name: "centerMarker",
|
|
2050
|
+
type: "boolean",
|
|
2051
|
+
required: false
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
name: "mapOptions",
|
|
2055
|
+
type: "google.maps.MapOptions",
|
|
2056
|
+
required: false
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
name: "region",
|
|
2060
|
+
type: "string",
|
|
2061
|
+
required: false
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
name: "language",
|
|
2065
|
+
type: "string",
|
|
2066
|
+
required: false
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
name: "version",
|
|
2070
|
+
type: "string",
|
|
2071
|
+
required: false
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
name: "width",
|
|
2075
|
+
type: "number | string",
|
|
2076
|
+
required: false
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
name: "height",
|
|
2080
|
+
type: "number | string",
|
|
2081
|
+
required: false
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
name: "placeholderOptions",
|
|
2085
|
+
type: "PlaceholderOptions",
|
|
2086
|
+
required: false
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
name: "placeholderAttrs",
|
|
2090
|
+
type: "ImgHTMLAttributes & ReservedProps & Record<string, unknown>",
|
|
2091
|
+
required: false
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
name: "rootAttrs",
|
|
2095
|
+
type: "HTMLAttributes & ReservedProps & Record<string, unknown>",
|
|
2096
|
+
required: false
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
name: "markers",
|
|
2100
|
+
type: "(`${string},${string}` | google.maps.marker.AdvancedMarkerElementOptions)[]",
|
|
2101
|
+
required: false
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
name: "mapIds",
|
|
2105
|
+
type: "{ light?: string, dark?: string }",
|
|
2106
|
+
required: false
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
name: "colorMode",
|
|
2110
|
+
type: "'light' | 'dark'",
|
|
2111
|
+
required: false
|
|
2112
|
+
}
|
|
2113
|
+
],
|
|
2114
|
+
ScriptGoogleMapsAdvancedMarkerElementProps: [
|
|
2115
|
+
{
|
|
2116
|
+
name: "position",
|
|
2117
|
+
type: "google.maps.LatLngLiteral | google.maps.LatLng",
|
|
2118
|
+
required: false
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
name: "options",
|
|
2122
|
+
type: "Omit<google.maps.marker.AdvancedMarkerElementOptions, 'map'>",
|
|
2123
|
+
required: false
|
|
2124
|
+
}
|
|
2125
|
+
],
|
|
2126
|
+
ScriptGoogleMapsAdvancedMarkerElementEvents: [
|
|
2127
|
+
{
|
|
2128
|
+
name: "click",
|
|
2129
|
+
type: "google.maps.MapMouseEvent",
|
|
2130
|
+
required: false
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
name: "drag",
|
|
2134
|
+
type: "google.maps.MapMouseEvent",
|
|
2135
|
+
required: false
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
name: "dragend",
|
|
2139
|
+
type: "google.maps.MapMouseEvent",
|
|
2140
|
+
required: false
|
|
2141
|
+
},
|
|
2142
|
+
{
|
|
2143
|
+
name: "dragstart",
|
|
2144
|
+
type: "google.maps.MapMouseEvent",
|
|
2145
|
+
required: false
|
|
2146
|
+
}
|
|
2147
|
+
],
|
|
2148
|
+
ScriptGoogleMapsCircleProps: [
|
|
2149
|
+
{
|
|
2150
|
+
name: "options",
|
|
2151
|
+
type: "Omit<google.maps.CircleOptions, 'map'>",
|
|
2152
|
+
required: false
|
|
2153
|
+
}
|
|
2154
|
+
],
|
|
2155
|
+
ScriptGoogleMapsCircleEvents: [
|
|
2156
|
+
{
|
|
2157
|
+
name: "center_changed",
|
|
2158
|
+
type: "-",
|
|
2159
|
+
required: false
|
|
2160
|
+
},
|
|
2161
|
+
{
|
|
2162
|
+
name: "radius_changed",
|
|
2163
|
+
type: "-",
|
|
2164
|
+
required: false
|
|
2165
|
+
},
|
|
2166
|
+
{
|
|
2167
|
+
name: "click",
|
|
2168
|
+
type: "google.maps.MapMouseEvent",
|
|
2169
|
+
required: false
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
name: "dblclick",
|
|
2173
|
+
type: "google.maps.MapMouseEvent",
|
|
2174
|
+
required: false
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
name: "drag",
|
|
2178
|
+
type: "google.maps.MapMouseEvent",
|
|
2179
|
+
required: false
|
|
2180
|
+
},
|
|
2181
|
+
{
|
|
2182
|
+
name: "dragend",
|
|
2183
|
+
type: "google.maps.MapMouseEvent",
|
|
2184
|
+
required: false
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
name: "dragstart",
|
|
2188
|
+
type: "google.maps.MapMouseEvent",
|
|
2189
|
+
required: false
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
name: "mousedown",
|
|
2193
|
+
type: "google.maps.MapMouseEvent",
|
|
2194
|
+
required: false
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
name: "mousemove",
|
|
2198
|
+
type: "google.maps.MapMouseEvent",
|
|
2199
|
+
required: false
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
name: "mouseout",
|
|
2203
|
+
type: "google.maps.MapMouseEvent",
|
|
2204
|
+
required: false
|
|
2205
|
+
},
|
|
2206
|
+
{
|
|
2207
|
+
name: "mouseover",
|
|
2208
|
+
type: "google.maps.MapMouseEvent",
|
|
2209
|
+
required: false
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
name: "mouseup",
|
|
2213
|
+
type: "google.maps.MapMouseEvent",
|
|
2214
|
+
required: false
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
name: "rightclick",
|
|
2218
|
+
type: "google.maps.MapMouseEvent",
|
|
2219
|
+
required: false
|
|
2220
|
+
}
|
|
2221
|
+
],
|
|
2222
|
+
ScriptGoogleMapsGeoJsonProps: [
|
|
2223
|
+
{
|
|
2224
|
+
name: "src",
|
|
2225
|
+
type: "string | object",
|
|
2226
|
+
required: true
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
name: "style",
|
|
2230
|
+
type: "google.maps.Data.StylingFunction | google.maps.Data.StyleOptions",
|
|
2231
|
+
required: false
|
|
2232
|
+
}
|
|
2233
|
+
],
|
|
2234
|
+
ScriptGoogleMapsGeoJsonEvents: [
|
|
2235
|
+
{
|
|
2236
|
+
name: "click",
|
|
2237
|
+
type: "google.maps.Data.MouseEvent",
|
|
2238
|
+
required: false
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
name: "contextmenu",
|
|
2242
|
+
type: "google.maps.Data.MouseEvent",
|
|
2243
|
+
required: false
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
name: "dblclick",
|
|
2247
|
+
type: "google.maps.Data.MouseEvent",
|
|
2248
|
+
required: false
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
name: "mousedown",
|
|
2252
|
+
type: "google.maps.Data.MouseEvent",
|
|
2253
|
+
required: false
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
name: "mousemove",
|
|
2257
|
+
type: "google.maps.Data.MouseEvent",
|
|
2258
|
+
required: false
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
name: "mouseout",
|
|
2262
|
+
type: "google.maps.Data.MouseEvent",
|
|
2263
|
+
required: false
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
name: "mouseover",
|
|
2267
|
+
type: "google.maps.Data.MouseEvent",
|
|
2268
|
+
required: false
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
name: "mouseup",
|
|
2272
|
+
type: "google.maps.Data.MouseEvent",
|
|
2273
|
+
required: false
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
name: "addfeature",
|
|
2277
|
+
type: "google.maps.Data.AddFeatureEvent",
|
|
2278
|
+
required: false
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
name: "removefeature",
|
|
2282
|
+
type: "google.maps.Data.RemoveFeatureEvent",
|
|
2283
|
+
required: false
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
name: "setgeometry",
|
|
2287
|
+
type: "google.maps.Data.SetGeometryEvent",
|
|
2288
|
+
required: false
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
name: "setproperty",
|
|
2292
|
+
type: "google.maps.Data.SetPropertyEvent",
|
|
2293
|
+
required: false
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
name: "removeproperty",
|
|
2297
|
+
type: "google.maps.Data.RemovePropertyEvent",
|
|
2298
|
+
required: false
|
|
2299
|
+
}
|
|
2300
|
+
],
|
|
2301
|
+
ScriptGoogleMapsHeatmapLayerProps: [
|
|
2302
|
+
{
|
|
2303
|
+
name: "options",
|
|
2304
|
+
type: "Omit<google.maps.visualization.HeatmapLayerOptions, 'map'>",
|
|
2305
|
+
required: false
|
|
2306
|
+
}
|
|
2307
|
+
],
|
|
2308
|
+
ScriptGoogleMapsInfoWindowProps: [
|
|
2309
|
+
{
|
|
2310
|
+
name: "options",
|
|
2311
|
+
type: "google.maps.InfoWindowOptions",
|
|
2312
|
+
required: false
|
|
2313
|
+
}
|
|
2314
|
+
],
|
|
2315
|
+
ScriptGoogleMapsInfoWindowEvents: [
|
|
2316
|
+
{
|
|
2317
|
+
name: "close",
|
|
2318
|
+
type: "-",
|
|
2319
|
+
required: false
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
name: "closeclick",
|
|
2323
|
+
type: "-",
|
|
2324
|
+
required: false
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
name: "content_changed",
|
|
2328
|
+
type: "-",
|
|
2329
|
+
required: false
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
name: "domready",
|
|
2333
|
+
type: "-",
|
|
2334
|
+
required: false
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
name: "headercontent_changed",
|
|
2338
|
+
type: "-",
|
|
2339
|
+
required: false
|
|
2340
|
+
},
|
|
2341
|
+
{
|
|
2342
|
+
name: "headerdisabled_changed",
|
|
2343
|
+
type: "-",
|
|
2344
|
+
required: false
|
|
2345
|
+
},
|
|
2346
|
+
{
|
|
2347
|
+
name: "position_changed",
|
|
2348
|
+
type: "-",
|
|
2349
|
+
required: false
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
name: "visible",
|
|
2353
|
+
type: "-",
|
|
2354
|
+
required: false
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
name: "zindex_changed",
|
|
2358
|
+
type: "-",
|
|
2359
|
+
required: false
|
|
2360
|
+
}
|
|
2361
|
+
],
|
|
2362
|
+
ScriptGoogleMapsMarkerProps: [
|
|
2363
|
+
{
|
|
2364
|
+
name: "position",
|
|
2365
|
+
type: "google.maps.LatLngLiteral | google.maps.LatLng",
|
|
2366
|
+
required: false
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
name: "options",
|
|
2370
|
+
type: "Omit<google.maps.MarkerOptions, 'map'>",
|
|
2371
|
+
required: false
|
|
2372
|
+
}
|
|
2373
|
+
],
|
|
2374
|
+
ScriptGoogleMapsMarkerEvents: [
|
|
2375
|
+
{
|
|
2376
|
+
name: "animation_changed",
|
|
2377
|
+
type: "-",
|
|
2378
|
+
required: false
|
|
2379
|
+
},
|
|
2380
|
+
{
|
|
2381
|
+
name: "clickable_changed",
|
|
2382
|
+
type: "-",
|
|
2383
|
+
required: false
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
name: "cursor_changed",
|
|
2387
|
+
type: "-",
|
|
2388
|
+
required: false
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
name: "draggable_changed",
|
|
2392
|
+
type: "-",
|
|
2393
|
+
required: false
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
name: "flat_changed",
|
|
2397
|
+
type: "-",
|
|
2398
|
+
required: false
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
name: "icon_changed",
|
|
2402
|
+
type: "-",
|
|
2403
|
+
required: false
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
name: "position_changed",
|
|
2407
|
+
type: "-",
|
|
2408
|
+
required: false
|
|
2409
|
+
},
|
|
2410
|
+
{
|
|
2411
|
+
name: "shape_changed",
|
|
2412
|
+
type: "-",
|
|
2413
|
+
required: false
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
name: "title_changed",
|
|
2417
|
+
type: "-",
|
|
2418
|
+
required: false
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
name: "visible_changed",
|
|
2422
|
+
type: "-",
|
|
2423
|
+
required: false
|
|
2424
|
+
},
|
|
2425
|
+
{
|
|
2426
|
+
name: "zindex_changed",
|
|
2427
|
+
type: "-",
|
|
2428
|
+
required: false
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
name: "click",
|
|
2432
|
+
type: "google.maps.MapMouseEvent",
|
|
2433
|
+
required: false
|
|
2434
|
+
},
|
|
2435
|
+
{
|
|
2436
|
+
name: "contextmenu",
|
|
2437
|
+
type: "google.maps.MapMouseEvent",
|
|
2438
|
+
required: false
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
name: "dblclick",
|
|
2442
|
+
type: "google.maps.MapMouseEvent",
|
|
2443
|
+
required: false
|
|
2444
|
+
},
|
|
2445
|
+
{
|
|
2446
|
+
name: "drag",
|
|
2447
|
+
type: "google.maps.MapMouseEvent",
|
|
2448
|
+
required: false
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
name: "dragend",
|
|
2452
|
+
type: "google.maps.MapMouseEvent",
|
|
2453
|
+
required: false
|
|
2454
|
+
},
|
|
2455
|
+
{
|
|
2456
|
+
name: "dragstart",
|
|
2457
|
+
type: "google.maps.MapMouseEvent",
|
|
2458
|
+
required: false
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
name: "mousedown",
|
|
2462
|
+
type: "google.maps.MapMouseEvent",
|
|
2463
|
+
required: false
|
|
2464
|
+
},
|
|
2465
|
+
{
|
|
2466
|
+
name: "mouseout",
|
|
2467
|
+
type: "google.maps.MapMouseEvent",
|
|
2468
|
+
required: false
|
|
2469
|
+
},
|
|
2470
|
+
{
|
|
2471
|
+
name: "mouseover",
|
|
2472
|
+
type: "google.maps.MapMouseEvent",
|
|
2473
|
+
required: false
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
name: "mouseup",
|
|
2477
|
+
type: "google.maps.MapMouseEvent",
|
|
2478
|
+
required: false
|
|
2479
|
+
}
|
|
2480
|
+
],
|
|
2481
|
+
ScriptGoogleMapsMarkerClustererProps: [
|
|
2482
|
+
{
|
|
2483
|
+
name: "options",
|
|
2484
|
+
type: "Omit<MarkerClustererOptions, 'map'>",
|
|
2485
|
+
required: false
|
|
2486
|
+
}
|
|
2487
|
+
],
|
|
2488
|
+
ScriptGoogleMapsMarkerClustererEvents: [
|
|
2489
|
+
{
|
|
2490
|
+
name: "click",
|
|
2491
|
+
type: "MarkerClustererInstance",
|
|
2492
|
+
required: false
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
name: "clusteringbegin",
|
|
2496
|
+
type: "MarkerClustererInstance",
|
|
2497
|
+
required: false
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
name: "clusteringend",
|
|
2501
|
+
type: "MarkerClustererInstance",
|
|
2502
|
+
required: false
|
|
2503
|
+
}
|
|
2504
|
+
],
|
|
2505
|
+
ScriptGoogleMapsOverlayViewProps: [
|
|
2506
|
+
{
|
|
2507
|
+
name: "position",
|
|
2508
|
+
type: "google.maps.LatLngLiteral",
|
|
2509
|
+
required: false
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
name: "anchor",
|
|
2513
|
+
type: "OverlayAnchor",
|
|
2514
|
+
required: false
|
|
2515
|
+
},
|
|
2516
|
+
{
|
|
2517
|
+
name: "offset",
|
|
2518
|
+
type: "{ x: number, y: number }",
|
|
2519
|
+
required: false
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
name: "pane",
|
|
2523
|
+
type: "OverlayPane",
|
|
2524
|
+
required: false
|
|
2525
|
+
},
|
|
2526
|
+
{
|
|
2527
|
+
name: "zIndex",
|
|
2528
|
+
type: "number",
|
|
2529
|
+
required: false
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
name: "blockMapInteraction",
|
|
2533
|
+
type: "boolean",
|
|
2534
|
+
required: false
|
|
2535
|
+
},
|
|
2536
|
+
{
|
|
2537
|
+
name: "v-model:open",
|
|
2538
|
+
type: "boolean",
|
|
2539
|
+
required: false
|
|
2540
|
+
}
|
|
2541
|
+
],
|
|
2542
|
+
ScriptGoogleMapsPinElementProps: [
|
|
2543
|
+
{
|
|
2544
|
+
name: "options",
|
|
2545
|
+
type: "Omit<google.maps.marker.PinElementOptions, 'map'>",
|
|
2546
|
+
required: false
|
|
2547
|
+
}
|
|
2548
|
+
],
|
|
2549
|
+
ScriptGoogleMapsPolygonProps: [
|
|
2550
|
+
{
|
|
2551
|
+
name: "options",
|
|
2552
|
+
type: "Omit<google.maps.PolygonOptions, 'map'>",
|
|
2553
|
+
required: false
|
|
2554
|
+
}
|
|
2555
|
+
],
|
|
2556
|
+
ScriptGoogleMapsPolygonEvents: [
|
|
2557
|
+
{
|
|
2558
|
+
name: "click",
|
|
2559
|
+
type: "google.maps.PolyMouseEvent",
|
|
2560
|
+
required: false
|
|
2561
|
+
},
|
|
2562
|
+
{
|
|
2563
|
+
name: "contextmenu",
|
|
2564
|
+
type: "google.maps.PolyMouseEvent",
|
|
2565
|
+
required: false
|
|
2566
|
+
},
|
|
2567
|
+
{
|
|
2568
|
+
name: "dblclick",
|
|
2569
|
+
type: "google.maps.PolyMouseEvent",
|
|
2570
|
+
required: false
|
|
2571
|
+
},
|
|
2572
|
+
{
|
|
2573
|
+
name: "mousedown",
|
|
2574
|
+
type: "google.maps.PolyMouseEvent",
|
|
2575
|
+
required: false
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
name: "mousemove",
|
|
2579
|
+
type: "google.maps.PolyMouseEvent",
|
|
2580
|
+
required: false
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
name: "mouseout",
|
|
2584
|
+
type: "google.maps.PolyMouseEvent",
|
|
2585
|
+
required: false
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
name: "mouseover",
|
|
2589
|
+
type: "google.maps.PolyMouseEvent",
|
|
2590
|
+
required: false
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
name: "mouseup",
|
|
2594
|
+
type: "google.maps.PolyMouseEvent",
|
|
2595
|
+
required: false
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
name: "drag",
|
|
2599
|
+
type: "google.maps.MapMouseEvent",
|
|
2600
|
+
required: false
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
name: "dragend",
|
|
2604
|
+
type: "google.maps.MapMouseEvent",
|
|
2605
|
+
required: false
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
name: "dragstart",
|
|
2609
|
+
type: "google.maps.MapMouseEvent",
|
|
2610
|
+
required: false
|
|
2611
|
+
}
|
|
2612
|
+
],
|
|
2613
|
+
ScriptGoogleMapsPolylineProps: [
|
|
2614
|
+
{
|
|
2615
|
+
name: "options",
|
|
2616
|
+
type: "Omit<google.maps.PolylineOptions, 'map'>",
|
|
2617
|
+
required: false
|
|
2618
|
+
}
|
|
2619
|
+
],
|
|
2620
|
+
ScriptGoogleMapsPolylineEvents: [
|
|
2621
|
+
{
|
|
2622
|
+
name: "click",
|
|
2623
|
+
type: "google.maps.PolyMouseEvent",
|
|
2624
|
+
required: false
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
name: "contextmenu",
|
|
2628
|
+
type: "google.maps.PolyMouseEvent",
|
|
2629
|
+
required: false
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
name: "dblclick",
|
|
2633
|
+
type: "google.maps.PolyMouseEvent",
|
|
2634
|
+
required: false
|
|
2635
|
+
},
|
|
2636
|
+
{
|
|
2637
|
+
name: "mousedown",
|
|
2638
|
+
type: "google.maps.PolyMouseEvent",
|
|
2639
|
+
required: false
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
name: "mousemove",
|
|
2643
|
+
type: "google.maps.PolyMouseEvent",
|
|
2644
|
+
required: false
|
|
2645
|
+
},
|
|
2646
|
+
{
|
|
2647
|
+
name: "mouseout",
|
|
2648
|
+
type: "google.maps.PolyMouseEvent",
|
|
2649
|
+
required: false
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
name: "mouseover",
|
|
2653
|
+
type: "google.maps.PolyMouseEvent",
|
|
2654
|
+
required: false
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
name: "mouseup",
|
|
2658
|
+
type: "google.maps.PolyMouseEvent",
|
|
2659
|
+
required: false
|
|
2660
|
+
},
|
|
2661
|
+
{
|
|
2662
|
+
name: "drag",
|
|
2663
|
+
type: "google.maps.MapMouseEvent",
|
|
2664
|
+
required: false
|
|
2665
|
+
},
|
|
2666
|
+
{
|
|
2667
|
+
name: "dragend",
|
|
2668
|
+
type: "google.maps.MapMouseEvent",
|
|
2669
|
+
required: false
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
name: "dragstart",
|
|
2673
|
+
type: "google.maps.MapMouseEvent",
|
|
2674
|
+
required: false
|
|
2675
|
+
}
|
|
2676
|
+
],
|
|
2677
|
+
ScriptGoogleMapsRectangleProps: [
|
|
2678
|
+
{
|
|
2679
|
+
name: "options",
|
|
2680
|
+
type: "Omit<google.maps.RectangleOptions, 'map'>",
|
|
2681
|
+
required: false
|
|
2682
|
+
}
|
|
2683
|
+
],
|
|
2684
|
+
ScriptGoogleMapsRectangleEvents: [
|
|
2685
|
+
{
|
|
2686
|
+
name: "bounds_changed",
|
|
2687
|
+
type: "-",
|
|
2688
|
+
required: false
|
|
2689
|
+
},
|
|
2690
|
+
{
|
|
2691
|
+
name: "click",
|
|
2692
|
+
type: "google.maps.MapMouseEvent",
|
|
2693
|
+
required: false
|
|
2694
|
+
},
|
|
2695
|
+
{
|
|
2696
|
+
name: "contextmenu",
|
|
2697
|
+
type: "google.maps.MapMouseEvent",
|
|
2698
|
+
required: false
|
|
2699
|
+
},
|
|
2700
|
+
{
|
|
2701
|
+
name: "dblclick",
|
|
2702
|
+
type: "google.maps.MapMouseEvent",
|
|
2703
|
+
required: false
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
name: "drag",
|
|
2707
|
+
type: "google.maps.MapMouseEvent",
|
|
2708
|
+
required: false
|
|
2709
|
+
},
|
|
2710
|
+
{
|
|
2711
|
+
name: "dragend",
|
|
2712
|
+
type: "google.maps.MapMouseEvent",
|
|
2713
|
+
required: false
|
|
2714
|
+
},
|
|
2715
|
+
{
|
|
2716
|
+
name: "dragstart",
|
|
2717
|
+
type: "google.maps.MapMouseEvent",
|
|
2718
|
+
required: false
|
|
2719
|
+
},
|
|
2720
|
+
{
|
|
2721
|
+
name: "mousedown",
|
|
2722
|
+
type: "google.maps.MapMouseEvent",
|
|
2723
|
+
required: false
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
name: "mousemove",
|
|
2727
|
+
type: "google.maps.MapMouseEvent",
|
|
2728
|
+
required: false
|
|
2729
|
+
},
|
|
2730
|
+
{
|
|
2731
|
+
name: "mouseout",
|
|
2732
|
+
type: "google.maps.MapMouseEvent",
|
|
2733
|
+
required: false
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
name: "mouseover",
|
|
2737
|
+
type: "google.maps.MapMouseEvent",
|
|
2738
|
+
required: false
|
|
2739
|
+
},
|
|
2740
|
+
{
|
|
2741
|
+
name: "mouseup",
|
|
2742
|
+
type: "google.maps.MapMouseEvent",
|
|
2743
|
+
required: false
|
|
2744
|
+
}
|
|
2745
|
+
],
|
|
2746
|
+
ScriptBlueskyEmbedProps: [
|
|
2747
|
+
{
|
|
2748
|
+
name: "postUrl",
|
|
2749
|
+
type: "string",
|
|
2750
|
+
required: true
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
name: "apiEndpoint",
|
|
2754
|
+
type: "string",
|
|
2755
|
+
required: false
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
name: "imageProxyEndpoint",
|
|
2759
|
+
type: "string",
|
|
2760
|
+
required: false
|
|
2761
|
+
},
|
|
2762
|
+
{
|
|
2763
|
+
name: "rootAttrs",
|
|
2764
|
+
type: "HTMLAttributes",
|
|
2765
|
+
required: false
|
|
2766
|
+
}
|
|
2767
|
+
],
|
|
2768
|
+
ScriptCarbonAdsProps: [
|
|
2769
|
+
{
|
|
2770
|
+
name: "serve",
|
|
2771
|
+
type: "string",
|
|
2772
|
+
required: true
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
name: "placement",
|
|
2776
|
+
type: "string",
|
|
2777
|
+
required: true
|
|
2778
|
+
},
|
|
2779
|
+
{
|
|
2780
|
+
name: "format",
|
|
2781
|
+
type: "string",
|
|
2782
|
+
required: true
|
|
2783
|
+
},
|
|
2784
|
+
{
|
|
2785
|
+
name: "trigger",
|
|
2786
|
+
type: "ElementScriptTrigger",
|
|
2787
|
+
required: false
|
|
2788
|
+
}
|
|
2789
|
+
],
|
|
2790
|
+
ScriptCrispProps: [
|
|
2791
|
+
{
|
|
2792
|
+
name: "trigger",
|
|
2793
|
+
type: "ElementScriptTrigger",
|
|
2794
|
+
required: false
|
|
2795
|
+
},
|
|
2796
|
+
{
|
|
2797
|
+
name: "id",
|
|
2798
|
+
type: "string",
|
|
2799
|
+
required: true
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
name: "runtimeConfig",
|
|
2803
|
+
type: "{\n locale: string\n }",
|
|
2804
|
+
required: false
|
|
2805
|
+
},
|
|
2806
|
+
{
|
|
2807
|
+
name: "tokenId",
|
|
2808
|
+
type: "string",
|
|
2809
|
+
required: false
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
name: "cookieDomain",
|
|
2813
|
+
type: "string",
|
|
2814
|
+
required: false
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
name: "cookieExpiry",
|
|
2818
|
+
type: "number",
|
|
2819
|
+
required: false
|
|
2820
|
+
}
|
|
2821
|
+
],
|
|
2822
|
+
ScriptGoogleAdsenseProps: [
|
|
2823
|
+
{
|
|
2824
|
+
name: "dataAdClient",
|
|
2825
|
+
type: "string",
|
|
2826
|
+
required: true
|
|
2827
|
+
},
|
|
2828
|
+
{
|
|
2829
|
+
name: "dataAdSlot",
|
|
2830
|
+
type: "string",
|
|
2831
|
+
required: true
|
|
2832
|
+
},
|
|
2833
|
+
{
|
|
2834
|
+
name: "dataAdFormat",
|
|
2835
|
+
type: "'auto' | 'rectangle' | 'vertical' | 'horizontal' | 'fluid' | 'autorelaxed'",
|
|
2836
|
+
required: false
|
|
2837
|
+
},
|
|
2838
|
+
{
|
|
2839
|
+
name: "dataAdLayout",
|
|
2840
|
+
type: "'in-article' | 'in-feed' | 'fixed'",
|
|
2841
|
+
required: false
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
name: "dataFullWidthResponsive",
|
|
2845
|
+
type: "boolean",
|
|
2846
|
+
required: false
|
|
2847
|
+
},
|
|
2848
|
+
{
|
|
2849
|
+
name: "trigger",
|
|
2850
|
+
type: "ElementScriptTrigger",
|
|
2851
|
+
required: false
|
|
2852
|
+
}
|
|
2853
|
+
],
|
|
2854
|
+
ScriptInstagramEmbedProps: [
|
|
2855
|
+
{
|
|
2856
|
+
name: "postUrl",
|
|
2857
|
+
type: "string",
|
|
2858
|
+
required: true
|
|
2859
|
+
},
|
|
2860
|
+
{
|
|
2861
|
+
name: "captions",
|
|
2862
|
+
type: "boolean",
|
|
2863
|
+
required: false
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
name: "apiEndpoint",
|
|
2867
|
+
type: "string",
|
|
2868
|
+
required: false
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
name: "rootAttrs",
|
|
2872
|
+
type: "HTMLAttributes",
|
|
2873
|
+
required: false
|
|
2874
|
+
}
|
|
2875
|
+
],
|
|
2876
|
+
ScriptIntercomProps: [
|
|
2877
|
+
{
|
|
2878
|
+
name: "appId",
|
|
2879
|
+
type: "string",
|
|
2880
|
+
required: true
|
|
2881
|
+
},
|
|
2882
|
+
{
|
|
2883
|
+
name: "apiBase",
|
|
2884
|
+
type: "string",
|
|
2885
|
+
required: false
|
|
2886
|
+
},
|
|
2887
|
+
{
|
|
2888
|
+
name: "name",
|
|
2889
|
+
type: "string",
|
|
2890
|
+
required: false
|
|
2891
|
+
},
|
|
2892
|
+
{
|
|
2893
|
+
name: "email",
|
|
2894
|
+
type: "string",
|
|
2895
|
+
required: false
|
|
2896
|
+
},
|
|
2897
|
+
{
|
|
2898
|
+
name: "userId",
|
|
2899
|
+
type: "string",
|
|
2900
|
+
required: false
|
|
2901
|
+
},
|
|
2902
|
+
{
|
|
2903
|
+
name: "alignment",
|
|
2904
|
+
type: "'left' | 'right'",
|
|
2905
|
+
required: false
|
|
2906
|
+
},
|
|
2907
|
+
{
|
|
2908
|
+
name: "horizontalPadding",
|
|
2909
|
+
type: "number",
|
|
2910
|
+
required: false
|
|
2911
|
+
},
|
|
2912
|
+
{
|
|
2913
|
+
name: "verticalPadding",
|
|
2914
|
+
type: "number",
|
|
2915
|
+
required: false
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
name: "trigger",
|
|
2919
|
+
type: "ElementScriptTrigger",
|
|
2920
|
+
required: false
|
|
2921
|
+
}
|
|
2922
|
+
],
|
|
2923
|
+
ScriptLemonSqueezyProps: [
|
|
2924
|
+
{
|
|
2925
|
+
name: "trigger",
|
|
2926
|
+
type: "ElementScriptTrigger",
|
|
2927
|
+
required: false
|
|
2928
|
+
}
|
|
2929
|
+
],
|
|
2930
|
+
ScriptPayPalButtonsProps: [
|
|
2931
|
+
{
|
|
2932
|
+
name: "rootAttrs",
|
|
2933
|
+
type: "HTMLAttributes & ReservedProps & Record<string, unknown>",
|
|
2934
|
+
required: false
|
|
2935
|
+
},
|
|
2936
|
+
{
|
|
2937
|
+
name: "trigger",
|
|
2938
|
+
type: "ElementScriptTrigger",
|
|
2939
|
+
required: false
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
name: "clientId",
|
|
2943
|
+
type: "string",
|
|
2944
|
+
required: false
|
|
2945
|
+
},
|
|
2946
|
+
{
|
|
2947
|
+
name: "clientToken",
|
|
2948
|
+
type: "string",
|
|
2949
|
+
required: false
|
|
2950
|
+
},
|
|
2951
|
+
{
|
|
2952
|
+
name: "components",
|
|
2953
|
+
type: "Components[]",
|
|
2954
|
+
required: false
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
name: "pageType",
|
|
2958
|
+
type: "PageTypes",
|
|
2959
|
+
required: false
|
|
2960
|
+
},
|
|
2961
|
+
{
|
|
2962
|
+
name: "locale",
|
|
2963
|
+
type: "string",
|
|
2964
|
+
required: false
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
name: "merchantId",
|
|
2968
|
+
type: "string | string[]",
|
|
2969
|
+
required: false
|
|
2970
|
+
},
|
|
2971
|
+
{
|
|
2972
|
+
name: "partnerAttributionId",
|
|
2973
|
+
type: "string",
|
|
2974
|
+
required: false
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
name: "paypalScriptOptions",
|
|
2978
|
+
type: "Partial<PayPalInput>",
|
|
2979
|
+
required: false
|
|
2980
|
+
}
|
|
2981
|
+
],
|
|
2982
|
+
ScriptPayPalMessagesProps: [
|
|
2983
|
+
{
|
|
2984
|
+
name: "rootAttrs",
|
|
2985
|
+
type: "HTMLAttributes & ReservedProps & Record<string, unknown>",
|
|
2986
|
+
required: false
|
|
2987
|
+
},
|
|
2988
|
+
{
|
|
2989
|
+
name: "trigger",
|
|
2990
|
+
type: "ElementScriptTrigger",
|
|
2991
|
+
required: false
|
|
2992
|
+
},
|
|
2993
|
+
{
|
|
2994
|
+
name: "clientId",
|
|
2995
|
+
type: "string",
|
|
2996
|
+
required: false
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
name: "clientToken",
|
|
3000
|
+
type: "string",
|
|
3001
|
+
required: false
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
name: "merchantId",
|
|
3005
|
+
type: "string | string[]",
|
|
3006
|
+
required: false
|
|
3007
|
+
},
|
|
3008
|
+
{
|
|
3009
|
+
name: "partnerAttributionId",
|
|
3010
|
+
type: "string",
|
|
3011
|
+
required: false
|
|
3012
|
+
},
|
|
3013
|
+
{
|
|
3014
|
+
name: "pageType",
|
|
3015
|
+
type: "PageTypes",
|
|
3016
|
+
required: false
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
name: "locale",
|
|
3020
|
+
type: "string",
|
|
3021
|
+
required: false
|
|
3022
|
+
},
|
|
3023
|
+
{
|
|
3024
|
+
name: "messagesOptions",
|
|
3025
|
+
type: "PayPalMessagesOptions",
|
|
3026
|
+
required: false
|
|
3027
|
+
},
|
|
3028
|
+
{
|
|
3029
|
+
name: "paypalScriptOptions",
|
|
3030
|
+
type: "Partial<PayPalInput>",
|
|
3031
|
+
required: false
|
|
3032
|
+
}
|
|
3033
|
+
],
|
|
3034
|
+
ScriptStripePricingTableProps: [
|
|
3035
|
+
{
|
|
3036
|
+
name: "trigger",
|
|
3037
|
+
type: "ElementScriptTrigger",
|
|
3038
|
+
required: false
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
name: "publishableKey",
|
|
3042
|
+
type: "string",
|
|
3043
|
+
required: true
|
|
3044
|
+
},
|
|
3045
|
+
{
|
|
3046
|
+
name: "pricingTableId",
|
|
3047
|
+
type: "string",
|
|
3048
|
+
required: true
|
|
3049
|
+
},
|
|
3050
|
+
{
|
|
3051
|
+
name: "clientReferenceId",
|
|
3052
|
+
type: "string",
|
|
3053
|
+
required: false
|
|
3054
|
+
},
|
|
3055
|
+
{
|
|
3056
|
+
name: "customerEmail",
|
|
3057
|
+
type: "string",
|
|
3058
|
+
required: false
|
|
3059
|
+
},
|
|
3060
|
+
{
|
|
3061
|
+
name: "customerSessionClientSecret",
|
|
3062
|
+
type: "string",
|
|
3063
|
+
required: false
|
|
3064
|
+
}
|
|
3065
|
+
],
|
|
3066
|
+
ScriptVimeoPlayerProps: [
|
|
3067
|
+
{
|
|
3068
|
+
name: "trigger",
|
|
3069
|
+
type: "ElementScriptTrigger",
|
|
3070
|
+
required: false
|
|
3071
|
+
},
|
|
3072
|
+
{
|
|
3073
|
+
name: "placeholderAttrs",
|
|
3074
|
+
type: "ImgHTMLAttributes",
|
|
3075
|
+
required: false
|
|
3076
|
+
},
|
|
3077
|
+
{
|
|
3078
|
+
name: "rootAttrs",
|
|
3079
|
+
type: "HTMLAttributes",
|
|
3080
|
+
required: false
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
name: "aboveTheFold",
|
|
3084
|
+
type: "boolean",
|
|
3085
|
+
required: false
|
|
3086
|
+
},
|
|
3087
|
+
{
|
|
3088
|
+
name: "vimeoOptions",
|
|
3089
|
+
type: "VimeoOptions",
|
|
3090
|
+
required: false
|
|
3091
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
name: "id",
|
|
3094
|
+
type: "number | undefined",
|
|
3095
|
+
required: false
|
|
3096
|
+
},
|
|
3097
|
+
{
|
|
3098
|
+
name: "url",
|
|
3099
|
+
type: "string | undefined",
|
|
3100
|
+
required: false
|
|
3101
|
+
},
|
|
3102
|
+
{
|
|
3103
|
+
name: "ratio",
|
|
3104
|
+
type: "string",
|
|
3105
|
+
required: false
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
name: "placeholderObjectFit",
|
|
3109
|
+
type: "'cover' | 'contain' | 'fill' | 'none' | 'scale-down'",
|
|
3110
|
+
required: false
|
|
3111
|
+
}
|
|
3112
|
+
],
|
|
3113
|
+
ScriptXEmbedProps: [
|
|
3114
|
+
{
|
|
3115
|
+
name: "tweetId",
|
|
3116
|
+
type: "string",
|
|
3117
|
+
required: true
|
|
3118
|
+
},
|
|
3119
|
+
{
|
|
3120
|
+
name: "apiEndpoint",
|
|
3121
|
+
type: "string",
|
|
3122
|
+
required: false
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
name: "imageProxyEndpoint",
|
|
3126
|
+
type: "string",
|
|
3127
|
+
required: false
|
|
3128
|
+
},
|
|
3129
|
+
{
|
|
3130
|
+
name: "rootAttrs",
|
|
3131
|
+
type: "HTMLAttributes",
|
|
3132
|
+
required: false
|
|
3133
|
+
}
|
|
3134
|
+
],
|
|
3135
|
+
ScriptYouTubePlayerProps: [
|
|
3136
|
+
{
|
|
3137
|
+
name: "placeholderAttrs",
|
|
3138
|
+
type: "ImgHTMLAttributes",
|
|
3139
|
+
required: false
|
|
3140
|
+
},
|
|
3141
|
+
{
|
|
3142
|
+
name: "rootAttrs",
|
|
3143
|
+
type: "HTMLAttributes",
|
|
3144
|
+
required: false
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
name: "aboveTheFold",
|
|
3148
|
+
type: "boolean",
|
|
3149
|
+
required: false
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
name: "trigger",
|
|
3153
|
+
type: "ElementScriptTrigger",
|
|
3154
|
+
required: false
|
|
3155
|
+
},
|
|
3156
|
+
{
|
|
3157
|
+
name: "videoId",
|
|
3158
|
+
type: "string",
|
|
3159
|
+
required: true
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
name: "playerVars",
|
|
3163
|
+
type: "YT.PlayerVars",
|
|
3164
|
+
required: false
|
|
3165
|
+
},
|
|
3166
|
+
{
|
|
3167
|
+
name: "width",
|
|
3168
|
+
type: "number",
|
|
3169
|
+
required: false
|
|
3170
|
+
},
|
|
3171
|
+
{
|
|
3172
|
+
name: "height",
|
|
3173
|
+
type: "number",
|
|
3174
|
+
required: false
|
|
3175
|
+
},
|
|
3176
|
+
{
|
|
3177
|
+
name: "ratio",
|
|
3178
|
+
type: "string",
|
|
3179
|
+
required: false
|
|
3180
|
+
},
|
|
3181
|
+
{
|
|
3182
|
+
name: "cookies",
|
|
3183
|
+
type: "boolean",
|
|
3184
|
+
required: false
|
|
3185
|
+
},
|
|
3186
|
+
{
|
|
3187
|
+
name: "playerOptions",
|
|
3188
|
+
type: "YT.PlayerOptions",
|
|
3189
|
+
required: false
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
name: "thumbnailSize",
|
|
3193
|
+
type: "YoutubeThumbnailSize",
|
|
3194
|
+
required: false
|
|
3195
|
+
},
|
|
3196
|
+
{
|
|
3197
|
+
name: "webp",
|
|
3198
|
+
type: "boolean",
|
|
3199
|
+
required: false
|
|
3200
|
+
},
|
|
3201
|
+
{
|
|
3202
|
+
name: "placeholderObjectFit",
|
|
3203
|
+
type: "'cover' | 'contain' | 'fill' | 'none' | 'scale-down'",
|
|
3204
|
+
required: false
|
|
3205
|
+
}
|
|
2026
3206
|
]
|
|
2027
3207
|
};
|
|
2028
3208
|
const registryTypesJson = {
|