@builder.io/sdk-qwik 0.14.23 → 0.14.25
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/lib/browser/index.qwik.cjs +2 -2
- package/lib/browser/index.qwik.mjs +2 -2
- package/lib/edge/index.qwik.cjs +2 -2
- package/lib/edge/index.qwik.mjs +2 -2
- package/lib/node/index.qwik.cjs +2 -2
- package/lib/node/index.qwik.mjs +2 -2
- package/package.json +2 -2
- package/types/src/constants/sdk-version.d.ts +1 -1
|
@@ -5072,7 +5072,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5072
5072
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5073
5073
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5074
5074
|
}
|
|
5075
|
-
const SDK_VERSION = "0.14.
|
|
5075
|
+
const SDK_VERSION = "0.14.25";
|
|
5076
5076
|
const registry = {};
|
|
5077
5077
|
function register(type, info) {
|
|
5078
5078
|
let typeList = registry[type];
|
|
@@ -5505,7 +5505,7 @@ const EnableEditor = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inli
|
|
|
5505
5505
|
const [elementRef2, props2, showContentProps2, state2] = qwik.useLexicalScope();
|
|
5506
5506
|
const searchParams = new URL(location.href).searchParams;
|
|
5507
5507
|
const searchParamPreviewModel = searchParams.get("builder.preview");
|
|
5508
|
-
const searchParamPreviewId = searchParams.get(`builder.
|
|
5508
|
+
const searchParamPreviewId = searchParams.get(`builder.overrides.${searchParamPreviewModel}`);
|
|
5509
5509
|
const previewApiKey = searchParams.get("apiKey") || searchParams.get("builder.space");
|
|
5510
5510
|
if (searchParamPreviewModel === props2.model && previewApiKey === props2.apiKey && (!props2.content || searchParamPreviewId === props2.content.id))
|
|
5511
5511
|
fetchOneEntry({
|
|
@@ -5070,7 +5070,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5070
5070
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5071
5071
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5072
5072
|
}
|
|
5073
|
-
const SDK_VERSION = "0.14.
|
|
5073
|
+
const SDK_VERSION = "0.14.25";
|
|
5074
5074
|
const registry = {};
|
|
5075
5075
|
function register(type, info) {
|
|
5076
5076
|
let typeList = registry[type];
|
|
@@ -5503,7 +5503,7 @@ const EnableEditor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
5503
5503
|
const [elementRef2, props2, showContentProps2, state2] = useLexicalScope();
|
|
5504
5504
|
const searchParams = new URL(location.href).searchParams;
|
|
5505
5505
|
const searchParamPreviewModel = searchParams.get("builder.preview");
|
|
5506
|
-
const searchParamPreviewId = searchParams.get(`builder.
|
|
5506
|
+
const searchParamPreviewId = searchParams.get(`builder.overrides.${searchParamPreviewModel}`);
|
|
5507
5507
|
const previewApiKey = searchParams.get("apiKey") || searchParams.get("builder.space");
|
|
5508
5508
|
if (searchParamPreviewModel === props2.model && previewApiKey === props2.apiKey && (!props2.content || searchParamPreviewId === props2.content.id))
|
|
5509
5509
|
fetchOneEntry({
|
package/lib/edge/index.qwik.cjs
CHANGED
|
@@ -8303,7 +8303,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
8303
8303
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
8304
8304
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
8305
8305
|
}
|
|
8306
|
-
const SDK_VERSION = "0.14.
|
|
8306
|
+
const SDK_VERSION = "0.14.25";
|
|
8307
8307
|
const registry = {};
|
|
8308
8308
|
function register(type, info) {
|
|
8309
8309
|
let typeList = registry[type];
|
|
@@ -8736,7 +8736,7 @@ const EnableEditor = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inli
|
|
|
8736
8736
|
const [elementRef2, props2, showContentProps2, state2] = qwik.useLexicalScope();
|
|
8737
8737
|
const searchParams = new URL(location.href).searchParams;
|
|
8738
8738
|
const searchParamPreviewModel = searchParams.get("builder.preview");
|
|
8739
|
-
const searchParamPreviewId = searchParams.get(`builder.
|
|
8739
|
+
const searchParamPreviewId = searchParams.get(`builder.overrides.${searchParamPreviewModel}`);
|
|
8740
8740
|
const previewApiKey = searchParams.get("apiKey") || searchParams.get("builder.space");
|
|
8741
8741
|
if (searchParamPreviewModel === props2.model && previewApiKey === props2.apiKey && (!props2.content || searchParamPreviewId === props2.content.id))
|
|
8742
8742
|
fetchOneEntry({
|
package/lib/edge/index.qwik.mjs
CHANGED
|
@@ -8301,7 +8301,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
8301
8301
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
8302
8302
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
8303
8303
|
}
|
|
8304
|
-
const SDK_VERSION = "0.14.
|
|
8304
|
+
const SDK_VERSION = "0.14.25";
|
|
8305
8305
|
const registry = {};
|
|
8306
8306
|
function register(type, info) {
|
|
8307
8307
|
let typeList = registry[type];
|
|
@@ -8734,7 +8734,7 @@ const EnableEditor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
8734
8734
|
const [elementRef2, props2, showContentProps2, state2] = useLexicalScope();
|
|
8735
8735
|
const searchParams = new URL(location.href).searchParams;
|
|
8736
8736
|
const searchParamPreviewModel = searchParams.get("builder.preview");
|
|
8737
|
-
const searchParamPreviewId = searchParams.get(`builder.
|
|
8737
|
+
const searchParamPreviewId = searchParams.get(`builder.overrides.${searchParamPreviewModel}`);
|
|
8738
8738
|
const previewApiKey = searchParams.get("apiKey") || searchParams.get("builder.space");
|
|
8739
8739
|
if (searchParamPreviewModel === props2.model && previewApiKey === props2.apiKey && (!props2.content || searchParamPreviewId === props2.content.id))
|
|
8740
8740
|
fetchOneEntry({
|
package/lib/node/index.qwik.cjs
CHANGED
|
@@ -5204,7 +5204,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5204
5204
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5205
5205
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5206
5206
|
}
|
|
5207
|
-
const SDK_VERSION = "0.14.
|
|
5207
|
+
const SDK_VERSION = "0.14.25";
|
|
5208
5208
|
const registry = {};
|
|
5209
5209
|
function register(type, info) {
|
|
5210
5210
|
let typeList = registry[type];
|
|
@@ -5637,7 +5637,7 @@ const EnableEditor = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inli
|
|
|
5637
5637
|
const [elementRef2, props2, showContentProps2, state2] = qwik.useLexicalScope();
|
|
5638
5638
|
const searchParams = new URL(location.href).searchParams;
|
|
5639
5639
|
const searchParamPreviewModel = searchParams.get("builder.preview");
|
|
5640
|
-
const searchParamPreviewId = searchParams.get(`builder.
|
|
5640
|
+
const searchParamPreviewId = searchParams.get(`builder.overrides.${searchParamPreviewModel}`);
|
|
5641
5641
|
const previewApiKey = searchParams.get("apiKey") || searchParams.get("builder.space");
|
|
5642
5642
|
if (searchParamPreviewModel === props2.model && previewApiKey === props2.apiKey && (!props2.content || searchParamPreviewId === props2.content.id))
|
|
5643
5643
|
fetchOneEntry({
|
package/lib/node/index.qwik.mjs
CHANGED
|
@@ -5202,7 +5202,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5202
5202
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5203
5203
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5204
5204
|
}
|
|
5205
|
-
const SDK_VERSION = "0.14.
|
|
5205
|
+
const SDK_VERSION = "0.14.25";
|
|
5206
5206
|
const registry = {};
|
|
5207
5207
|
function register(type, info) {
|
|
5208
5208
|
let typeList = registry[type];
|
|
@@ -5635,7 +5635,7 @@ const EnableEditor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
5635
5635
|
const [elementRef2, props2, showContentProps2, state2] = useLexicalScope();
|
|
5636
5636
|
const searchParams = new URL(location.href).searchParams;
|
|
5637
5637
|
const searchParamPreviewModel = searchParams.get("builder.preview");
|
|
5638
|
-
const searchParamPreviewId = searchParams.get(`builder.
|
|
5638
|
+
const searchParamPreviewId = searchParams.get(`builder.overrides.${searchParamPreviewModel}`);
|
|
5639
5639
|
const previewApiKey = searchParams.get("apiKey") || searchParams.get("builder.space");
|
|
5640
5640
|
if (searchParamPreviewModel === props2.model && previewApiKey === props2.apiKey && (!props2.content || searchParamPreviewId === props2.content.id))
|
|
5641
5641
|
fetchOneEntry({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder.io/sdk-qwik",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.25",
|
|
4
4
|
"homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/qwik",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"build:browser": "SDK_ENV=browser yarn build:one"
|
|
107
107
|
},
|
|
108
108
|
"dependencies": {
|
|
109
|
-
"isolated-vm": "^
|
|
109
|
+
"isolated-vm": "^5.0.0"
|
|
110
110
|
},
|
|
111
111
|
"devDependencies": {
|
|
112
112
|
"@builder.io/qwik": "^1.5.1",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.14.
|
|
1
|
+
export declare const SDK_VERSION = "0.14.25";
|