@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.
@@ -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.0";
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.0";
5289
+ const SDK_VERSION = "0.15.1";
5290
5290
  const registry = {};
5291
5291
  function register(type, info) {
5292
5292
  let typeList = registry[type];
@@ -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.0";
8515
+ const SDK_VERSION = "0.15.1";
8516
8516
  const registry = {};
8517
8517
  function register(type, info) {
8518
8518
  let typeList = registry[type];
@@ -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.0";
8513
+ const SDK_VERSION = "0.15.1";
8514
8514
  const registry = {};
8515
8515
  function register(type, info) {
8516
8516
  let typeList = registry[type];
@@ -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.0";
5436
+ const SDK_VERSION = "0.15.1";
5437
5437
  const registry = {};
5438
5438
  function register(type, info) {
5439
5439
  let typeList = registry[type];
@@ -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.0";
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk-qwik",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/qwik",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.15.0";
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
  */