@builder.io/sdk-qwik 0.15.0 → 0.15.1
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 +1 -1
- package/lib/browser/index.qwik.mjs +1 -1
- package/lib/edge/index.qwik.cjs +1 -1
- package/lib/edge/index.qwik.mjs +1 -1
- package/lib/node/index.qwik.cjs +1 -1
- package/lib/node/index.qwik.mjs +1 -1
- package/package.json +1 -1
- package/types/src/constants/sdk-version.d.ts +1 -1
- package/types/src/types/components.d.ts +10 -0
|
@@ -5288,7 +5288,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5288
5288
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5289
5289
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5290
5290
|
}
|
|
5291
|
-
const SDK_VERSION = "0.15.
|
|
5291
|
+
const SDK_VERSION = "0.15.1";
|
|
5292
5292
|
const registry = {};
|
|
5293
5293
|
function register(type, info) {
|
|
5294
5294
|
let typeList = registry[type];
|
|
@@ -5286,7 +5286,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5286
5286
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5287
5287
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5288
5288
|
}
|
|
5289
|
-
const SDK_VERSION = "0.15.
|
|
5289
|
+
const SDK_VERSION = "0.15.1";
|
|
5290
5290
|
const registry = {};
|
|
5291
5291
|
function register(type, info) {
|
|
5292
5292
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.cjs
CHANGED
|
@@ -8512,7 +8512,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
8512
8512
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
8513
8513
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
8514
8514
|
}
|
|
8515
|
-
const SDK_VERSION = "0.15.
|
|
8515
|
+
const SDK_VERSION = "0.15.1";
|
|
8516
8516
|
const registry = {};
|
|
8517
8517
|
function register(type, info) {
|
|
8518
8518
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.mjs
CHANGED
|
@@ -8510,7 +8510,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
8510
8510
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
8511
8511
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
8512
8512
|
}
|
|
8513
|
-
const SDK_VERSION = "0.15.
|
|
8513
|
+
const SDK_VERSION = "0.15.1";
|
|
8514
8514
|
const registry = {};
|
|
8515
8515
|
function register(type, info) {
|
|
8516
8516
|
let typeList = registry[type];
|
package/lib/node/index.qwik.cjs
CHANGED
|
@@ -5433,7 +5433,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5433
5433
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5434
5434
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5435
5435
|
}
|
|
5436
|
-
const SDK_VERSION = "0.15.
|
|
5436
|
+
const SDK_VERSION = "0.15.1";
|
|
5437
5437
|
const registry = {};
|
|
5438
5438
|
function register(type, info) {
|
|
5439
5439
|
let typeList = registry[type];
|
package/lib/node/index.qwik.mjs
CHANGED
|
@@ -5431,7 +5431,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5431
5431
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5432
5432
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5433
5433
|
}
|
|
5434
|
-
const SDK_VERSION = "0.15.
|
|
5434
|
+
const SDK_VERSION = "0.15.1";
|
|
5435
5435
|
const registry = {};
|
|
5436
5436
|
function register(type, info) {
|
|
5437
5437
|
let typeList = registry[type];
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.15.
|
|
1
|
+
export declare const SDK_VERSION = "0.15.1";
|
|
@@ -105,6 +105,16 @@ export interface ComponentInfo {
|
|
|
105
105
|
*/
|
|
106
106
|
requiredPermissions?: Array<Permission>;
|
|
107
107
|
hidden?: boolean;
|
|
108
|
+
/**
|
|
109
|
+
* When overriding built-in components, if you don't want any special behavior that
|
|
110
|
+
* the original has, set this to `true` to skip the default behavior
|
|
111
|
+
*
|
|
112
|
+
* Default behaviors include special "virtual options", such as a custom
|
|
113
|
+
* aspect ratio editor for Images, or a special column editor for Columns
|
|
114
|
+
*
|
|
115
|
+
* Learn more about overriding built-in components here: https://www.builder.io/c/docs/custom-components-overriding
|
|
116
|
+
*/
|
|
117
|
+
override?: boolean;
|
|
108
118
|
/**
|
|
109
119
|
* Whether or not the component should receive SDK-related props.
|
|
110
120
|
*/
|