@builder.io/sdk-qwik 0.14.5 → 0.14.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.
- package/lib/browser/index.qwik.cjs +3 -3
- package/lib/browser/index.qwik.mjs +3 -3
- package/lib/edge/index.qwik.cjs +3 -3
- package/lib/edge/index.qwik.mjs +3 -3
- package/lib/node/index.qwik.cjs +3 -3
- package/lib/node/index.qwik.mjs +3 -3
- package/package.json +1 -1
- package/types/src/constants/sdk-version.d.ts +1 -1
|
@@ -1781,9 +1781,9 @@ const Image = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl(
|
|
|
1781
1781
|
props
|
|
1782
1782
|
], '"builder-image"+(p0.className?" "+p0.className:"")+" img-Image"'),
|
|
1783
1783
|
loading: "lazy",
|
|
1784
|
-
role: qwik._fnSignal((p0) => p0.altText ? "presentation"
|
|
1784
|
+
role: qwik._fnSignal((p0) => p0.altText ? void 0 : "presentation", [
|
|
1785
1785
|
props
|
|
1786
|
-
], 'p0.altText?"presentation"
|
|
1786
|
+
], 'p0.altText?undefined:"presentation"'),
|
|
1787
1787
|
sizes: qwik._fnSignal((p0) => p0.sizes, [
|
|
1788
1788
|
props
|
|
1789
1789
|
], "p0.sizes"),
|
|
@@ -4360,7 +4360,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
4360
4360
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
4361
4361
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
4362
4362
|
}
|
|
4363
|
-
const SDK_VERSION = "0.14.
|
|
4363
|
+
const SDK_VERSION = "0.14.6";
|
|
4364
4364
|
const registry = {};
|
|
4365
4365
|
function register(type, info) {
|
|
4366
4366
|
let typeList = registry[type];
|
|
@@ -1779,9 +1779,9 @@ const Image = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
1779
1779
|
props
|
|
1780
1780
|
], '"builder-image"+(p0.className?" "+p0.className:"")+" img-Image"'),
|
|
1781
1781
|
loading: "lazy",
|
|
1782
|
-
role: _fnSignal((p0) => p0.altText ? "presentation"
|
|
1782
|
+
role: _fnSignal((p0) => p0.altText ? void 0 : "presentation", [
|
|
1783
1783
|
props
|
|
1784
|
-
], 'p0.altText?"presentation"
|
|
1784
|
+
], 'p0.altText?undefined:"presentation"'),
|
|
1785
1785
|
sizes: _fnSignal((p0) => p0.sizes, [
|
|
1786
1786
|
props
|
|
1787
1787
|
], "p0.sizes"),
|
|
@@ -4358,7 +4358,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
4358
4358
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
4359
4359
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
4360
4360
|
}
|
|
4361
|
-
const SDK_VERSION = "0.14.
|
|
4361
|
+
const SDK_VERSION = "0.14.6";
|
|
4362
4362
|
const registry = {};
|
|
4363
4363
|
function register(type, info) {
|
|
4364
4364
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.cjs
CHANGED
|
@@ -5012,9 +5012,9 @@ const Image = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl(
|
|
|
5012
5012
|
props
|
|
5013
5013
|
], '"builder-image"+(p0.className?" "+p0.className:"")+" img-Image"'),
|
|
5014
5014
|
loading: "lazy",
|
|
5015
|
-
role: qwik._fnSignal((p0) => p0.altText ? "presentation"
|
|
5015
|
+
role: qwik._fnSignal((p0) => p0.altText ? void 0 : "presentation", [
|
|
5016
5016
|
props
|
|
5017
|
-
], 'p0.altText?"presentation"
|
|
5017
|
+
], 'p0.altText?undefined:"presentation"'),
|
|
5018
5018
|
sizes: qwik._fnSignal((p0) => p0.sizes, [
|
|
5019
5019
|
props
|
|
5020
5020
|
], "p0.sizes"),
|
|
@@ -7591,7 +7591,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
7591
7591
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
7592
7592
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
7593
7593
|
}
|
|
7594
|
-
const SDK_VERSION = "0.14.
|
|
7594
|
+
const SDK_VERSION = "0.14.6";
|
|
7595
7595
|
const registry = {};
|
|
7596
7596
|
function register(type, info) {
|
|
7597
7597
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.mjs
CHANGED
|
@@ -5010,9 +5010,9 @@ const Image = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
5010
5010
|
props
|
|
5011
5011
|
], '"builder-image"+(p0.className?" "+p0.className:"")+" img-Image"'),
|
|
5012
5012
|
loading: "lazy",
|
|
5013
|
-
role: _fnSignal((p0) => p0.altText ? "presentation"
|
|
5013
|
+
role: _fnSignal((p0) => p0.altText ? void 0 : "presentation", [
|
|
5014
5014
|
props
|
|
5015
|
-
], 'p0.altText?"presentation"
|
|
5015
|
+
], 'p0.altText?undefined:"presentation"'),
|
|
5016
5016
|
sizes: _fnSignal((p0) => p0.sizes, [
|
|
5017
5017
|
props
|
|
5018
5018
|
], "p0.sizes"),
|
|
@@ -7589,7 +7589,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
7589
7589
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
7590
7590
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
7591
7591
|
}
|
|
7592
|
-
const SDK_VERSION = "0.14.
|
|
7592
|
+
const SDK_VERSION = "0.14.6";
|
|
7593
7593
|
const registry = {};
|
|
7594
7594
|
function register(type, info) {
|
|
7595
7595
|
let typeList = registry[type];
|
package/lib/node/index.qwik.cjs
CHANGED
|
@@ -1883,9 +1883,9 @@ const Image = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl(
|
|
|
1883
1883
|
props
|
|
1884
1884
|
], '"builder-image"+(p0.className?" "+p0.className:"")+" img-Image"'),
|
|
1885
1885
|
loading: "lazy",
|
|
1886
|
-
role: qwik._fnSignal((p0) => p0.altText ? "presentation"
|
|
1886
|
+
role: qwik._fnSignal((p0) => p0.altText ? void 0 : "presentation", [
|
|
1887
1887
|
props
|
|
1888
|
-
], 'p0.altText?"presentation"
|
|
1888
|
+
], 'p0.altText?undefined:"presentation"'),
|
|
1889
1889
|
sizes: qwik._fnSignal((p0) => p0.sizes, [
|
|
1890
1890
|
props
|
|
1891
1891
|
], "p0.sizes"),
|
|
@@ -4462,7 +4462,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
4462
4462
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
4463
4463
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
4464
4464
|
}
|
|
4465
|
-
const SDK_VERSION = "0.14.
|
|
4465
|
+
const SDK_VERSION = "0.14.6";
|
|
4466
4466
|
const registry = {};
|
|
4467
4467
|
function register(type, info) {
|
|
4468
4468
|
let typeList = registry[type];
|
package/lib/node/index.qwik.mjs
CHANGED
|
@@ -1881,9 +1881,9 @@ const Image = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
1881
1881
|
props
|
|
1882
1882
|
], '"builder-image"+(p0.className?" "+p0.className:"")+" img-Image"'),
|
|
1883
1883
|
loading: "lazy",
|
|
1884
|
-
role: _fnSignal((p0) => p0.altText ? "presentation"
|
|
1884
|
+
role: _fnSignal((p0) => p0.altText ? void 0 : "presentation", [
|
|
1885
1885
|
props
|
|
1886
|
-
], 'p0.altText?"presentation"
|
|
1886
|
+
], 'p0.altText?undefined:"presentation"'),
|
|
1887
1887
|
sizes: _fnSignal((p0) => p0.sizes, [
|
|
1888
1888
|
props
|
|
1889
1889
|
], "p0.sizes"),
|
|
@@ -4460,7 +4460,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
4460
4460
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
4461
4461
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
4462
4462
|
}
|
|
4463
|
-
const SDK_VERSION = "0.14.
|
|
4463
|
+
const SDK_VERSION = "0.14.6";
|
|
4464
4464
|
const registry = {};
|
|
4465
4465
|
function register(type, info) {
|
|
4466
4466
|
let typeList = registry[type];
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.14.
|
|
1
|
+
export declare const SDK_VERSION = "0.14.6";
|