@builder.io/sdk-qwik 0.15.2 → 0.16.0
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 +32 -119
- package/lib/browser/index.qwik.mjs +32 -119
- package/lib/edge/index.qwik.cjs +32 -119
- package/lib/edge/index.qwik.mjs +32 -119
- package/lib/node/index.qwik.cjs +32 -119
- package/lib/node/index.qwik.mjs +32 -119
- package/package.json +1 -1
- package/types/src/components/block/block.helpers.d.ts +8 -8
- package/types/src/constants/sdk-version.d.ts +1 -1
package/lib/edge/index.qwik.cjs
CHANGED
|
@@ -3850,56 +3850,37 @@ const getRepeatItemData = ({ block, context }) => {
|
|
|
3850
3850
|
}));
|
|
3851
3851
|
return repeatArray;
|
|
3852
3852
|
};
|
|
3853
|
-
const applyDefaults = (shouldReceiveBuilderProps) => {
|
|
3854
|
-
return {
|
|
3855
|
-
// once we bump to a major version, toggle this to `false`.
|
|
3856
|
-
builderBlock: true,
|
|
3857
|
-
// once we bump to a major version, toggle this to `false`.
|
|
3858
|
-
builderContext: true,
|
|
3859
|
-
builderComponents: false,
|
|
3860
|
-
builderLinkComponent: false,
|
|
3861
|
-
...shouldReceiveBuilderProps
|
|
3862
|
-
};
|
|
3863
|
-
};
|
|
3864
3853
|
const provideLinkComponent = (block, linkComponent) => {
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
return {
|
|
3871
|
-
builderLinkComponent: linkComponent
|
|
3872
|
-
};
|
|
3854
|
+
var _a;
|
|
3855
|
+
if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderLinkComponent)
|
|
3856
|
+
return {
|
|
3857
|
+
builderLinkComponent: linkComponent
|
|
3858
|
+
};
|
|
3859
|
+
return {};
|
|
3873
3860
|
};
|
|
3874
3861
|
const provideRegisteredComponents = (block, registeredComponents) => {
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
return {
|
|
3881
|
-
builderComponents: registeredComponents
|
|
3882
|
-
};
|
|
3862
|
+
var _a;
|
|
3863
|
+
if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderComponents)
|
|
3864
|
+
return {
|
|
3865
|
+
builderComponents: registeredComponents
|
|
3866
|
+
};
|
|
3867
|
+
return {};
|
|
3883
3868
|
};
|
|
3884
3869
|
const provideBuilderBlock = (block, builderBlock) => {
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
return {
|
|
3891
|
-
builderBlock
|
|
3892
|
-
};
|
|
3870
|
+
var _a;
|
|
3871
|
+
if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderBlock)
|
|
3872
|
+
return {
|
|
3873
|
+
builderBlock
|
|
3874
|
+
};
|
|
3875
|
+
return {};
|
|
3893
3876
|
};
|
|
3894
3877
|
const provideBuilderContext = (block, context) => {
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
return {
|
|
3901
|
-
builderContext: context
|
|
3902
|
-
};
|
|
3878
|
+
var _a;
|
|
3879
|
+
if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderContext)
|
|
3880
|
+
return {
|
|
3881
|
+
builderContext: context
|
|
3882
|
+
};
|
|
3883
|
+
return {};
|
|
3903
3884
|
};
|
|
3904
3885
|
const SIZES = {
|
|
3905
3886
|
small: {
|
|
@@ -4787,8 +4768,9 @@ const getWidth = function getWidth2(props, state, index) {
|
|
|
4787
4768
|
return ((_a = state.cols[index]) == null ? void 0 : _a.width) || 100 / state.cols.length;
|
|
4788
4769
|
};
|
|
4789
4770
|
const getColumnCssWidth = function getColumnCssWidth2(props, state, index) {
|
|
4790
|
-
const
|
|
4791
|
-
|
|
4771
|
+
const width = getWidth(props, state, index);
|
|
4772
|
+
const subtractWidth = state.gutterSize * (state.cols.length - 1) * (width / 100);
|
|
4773
|
+
return `calc(${width}% - ${subtractWidth}px)`;
|
|
4792
4774
|
};
|
|
4793
4775
|
const getTabletStyle = function getTabletStyle2(props, state, { stackedStyle, desktopStyle }) {
|
|
4794
4776
|
return state.stackAt === "tablet" ? stackedStyle : desktopStyle;
|
|
@@ -5735,9 +5717,6 @@ const componentInfo$h = {
|
|
|
5735
5717
|
static: true,
|
|
5736
5718
|
noWrap: true,
|
|
5737
5719
|
shouldReceiveBuilderProps: {
|
|
5738
|
-
builderBlock: false,
|
|
5739
|
-
builderContext: false,
|
|
5740
|
-
builderComponents: false,
|
|
5741
5720
|
builderLinkComponent: true
|
|
5742
5721
|
}
|
|
5743
5722
|
};
|
|
@@ -5990,12 +5969,6 @@ const componentInfo$g = {
|
|
|
5990
5969
|
}
|
|
5991
5970
|
};
|
|
5992
5971
|
const componentInfo$f = {
|
|
5993
|
-
shouldReceiveBuilderProps: {
|
|
5994
|
-
builderBlock: false,
|
|
5995
|
-
builderContext: false,
|
|
5996
|
-
builderComponents: false,
|
|
5997
|
-
builderLinkComponent: false
|
|
5998
|
-
},
|
|
5999
5972
|
name: "Fragment",
|
|
6000
5973
|
static: true,
|
|
6001
5974
|
hidden: true,
|
|
@@ -6157,19 +6130,10 @@ const componentInfo$e = {
|
|
|
6157
6130
|
}
|
|
6158
6131
|
],
|
|
6159
6132
|
shouldReceiveBuilderProps: {
|
|
6160
|
-
builderBlock: true
|
|
6161
|
-
builderContext: false,
|
|
6162
|
-
builderComponents: false,
|
|
6163
|
-
builderLinkComponent: false
|
|
6133
|
+
builderBlock: true
|
|
6164
6134
|
}
|
|
6165
6135
|
};
|
|
6166
6136
|
const componentInfo$d = {
|
|
6167
|
-
shouldReceiveBuilderProps: {
|
|
6168
|
-
builderBlock: false,
|
|
6169
|
-
builderContext: false,
|
|
6170
|
-
builderComponents: false,
|
|
6171
|
-
builderLinkComponent: false
|
|
6172
|
-
},
|
|
6173
6137
|
name: "Core:Section",
|
|
6174
6138
|
static: true,
|
|
6175
6139
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F682efef23ace49afac61748dd305c70a",
|
|
@@ -6230,10 +6194,7 @@ const componentInfo$c = {
|
|
|
6230
6194
|
}
|
|
6231
6195
|
],
|
|
6232
6196
|
shouldReceiveBuilderProps: {
|
|
6233
|
-
|
|
6234
|
-
builderContext: true,
|
|
6235
|
-
builderComponents: false,
|
|
6236
|
-
builderLinkComponent: false
|
|
6197
|
+
builderContext: true
|
|
6237
6198
|
}
|
|
6238
6199
|
};
|
|
6239
6200
|
const Slot = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
@@ -6607,10 +6568,7 @@ const Tabs = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((
|
|
|
6607
6568
|
}, "Tabs_component_MhWcxXy0lMY"));
|
|
6608
6569
|
const componentInfo$9 = {
|
|
6609
6570
|
shouldReceiveBuilderProps: {
|
|
6610
|
-
builderBlock: false
|
|
6611
|
-
builderContext: false,
|
|
6612
|
-
builderComponents: false,
|
|
6613
|
-
builderLinkComponent: false
|
|
6571
|
+
builderBlock: false
|
|
6614
6572
|
},
|
|
6615
6573
|
name: "Text",
|
|
6616
6574
|
static: true,
|
|
@@ -6647,12 +6605,6 @@ const Text = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((
|
|
|
6647
6605
|
}, null, 3, "yO_0");
|
|
6648
6606
|
}, "Text_component_15p0cKUxgIE"));
|
|
6649
6607
|
const componentInfo$8 = {
|
|
6650
|
-
shouldReceiveBuilderProps: {
|
|
6651
|
-
builderBlock: false,
|
|
6652
|
-
builderContext: false,
|
|
6653
|
-
builderComponents: false,
|
|
6654
|
-
builderLinkComponent: false
|
|
6655
|
-
},
|
|
6656
6608
|
name: "Custom Code",
|
|
6657
6609
|
static: true,
|
|
6658
6610
|
requiredPermissions: [
|
|
@@ -6732,12 +6684,6 @@ const CustomCode = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inline
|
|
|
6732
6684
|
}, null, 3, "bY_0");
|
|
6733
6685
|
}, "CustomCode_component_uYOSy7w7Zqw"));
|
|
6734
6686
|
const componentInfo$7 = {
|
|
6735
|
-
shouldReceiveBuilderProps: {
|
|
6736
|
-
builderBlock: false,
|
|
6737
|
-
builderContext: false,
|
|
6738
|
-
builderComponents: false,
|
|
6739
|
-
builderLinkComponent: false
|
|
6740
|
-
},
|
|
6741
6687
|
name: "Embed",
|
|
6742
6688
|
static: true,
|
|
6743
6689
|
inputs: [
|
|
@@ -7400,12 +7346,6 @@ const STYLES = `
|
|
|
7400
7346
|
}
|
|
7401
7347
|
`;
|
|
7402
7348
|
const componentInfo$5 = {
|
|
7403
|
-
shouldReceiveBuilderProps: {
|
|
7404
|
-
builderBlock: false,
|
|
7405
|
-
builderContext: false,
|
|
7406
|
-
builderComponents: false,
|
|
7407
|
-
builderLinkComponent: false
|
|
7408
|
-
},
|
|
7409
7349
|
name: "Form:Input",
|
|
7410
7350
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fad6f37889d9e40bbbbc72cdb5875d6ca",
|
|
7411
7351
|
inputs: [
|
|
@@ -7489,12 +7429,6 @@ const FormInputComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwi
|
|
|
7489
7429
|
});
|
|
7490
7430
|
}, "FormInputComponent_component_AUUjdN0ueMs"));
|
|
7491
7431
|
const componentInfo$4 = {
|
|
7492
|
-
shouldReceiveBuilderProps: {
|
|
7493
|
-
builderBlock: false,
|
|
7494
|
-
builderContext: false,
|
|
7495
|
-
builderComponents: false,
|
|
7496
|
-
builderLinkComponent: false
|
|
7497
|
-
},
|
|
7498
7432
|
name: "Form:Select",
|
|
7499
7433
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F83acca093fb24aaf94dee136e9a4b045",
|
|
7500
7434
|
defaultStyles: {
|
|
@@ -7564,12 +7498,6 @@ const SelectComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
7564
7498
|
}));
|
|
7565
7499
|
}, "SelectComponent_component_SPKbsFLikZU"));
|
|
7566
7500
|
const componentInfo$3 = {
|
|
7567
|
-
shouldReceiveBuilderProps: {
|
|
7568
|
-
builderBlock: false,
|
|
7569
|
-
builderContext: false,
|
|
7570
|
-
builderComponents: false,
|
|
7571
|
-
builderLinkComponent: false
|
|
7572
|
-
},
|
|
7573
7501
|
name: "Form:SubmitButton",
|
|
7574
7502
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fdf2820ffed1f4349a94c40b3221f5b98",
|
|
7575
7503
|
defaultStyles: {
|
|
@@ -7604,12 +7532,6 @@ const SubmitButton = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inli
|
|
|
7604
7532
|
}, 0, "6z_0");
|
|
7605
7533
|
}, "SubmitButton_component_NXvMBMCDhwc"));
|
|
7606
7534
|
const componentInfo$2 = {
|
|
7607
|
-
shouldReceiveBuilderProps: {
|
|
7608
|
-
builderBlock: false,
|
|
7609
|
-
builderContext: false,
|
|
7610
|
-
builderComponents: false,
|
|
7611
|
-
builderLinkComponent: false
|
|
7612
|
-
},
|
|
7613
7535
|
name: "Form:TextArea",
|
|
7614
7536
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Ff74a2f3de58c4c3e939204e5b6b8f6c3",
|
|
7615
7537
|
inputs: [
|
|
@@ -7674,12 +7596,6 @@ const Textarea = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
|
|
|
7674
7596
|
}, 0, "kE_0");
|
|
7675
7597
|
}, "Textarea_component_o1TcxV139Oc"));
|
|
7676
7598
|
const componentInfo$1 = {
|
|
7677
|
-
shouldReceiveBuilderProps: {
|
|
7678
|
-
builderBlock: false,
|
|
7679
|
-
builderContext: false,
|
|
7680
|
-
builderComponents: false,
|
|
7681
|
-
builderLinkComponent: false
|
|
7682
|
-
},
|
|
7683
7599
|
// friendlyName?
|
|
7684
7600
|
name: "Raw:Img",
|
|
7685
7601
|
hideFromInsertMenu: true,
|
|
@@ -7843,10 +7759,7 @@ const componentInfo = {
|
|
|
7843
7759
|
}
|
|
7844
7760
|
],
|
|
7845
7761
|
shouldReceiveBuilderProps: {
|
|
7846
|
-
builderBlock: true
|
|
7847
|
-
builderContext: false,
|
|
7848
|
-
builderComponents: false,
|
|
7849
|
-
builderLinkComponent: false
|
|
7762
|
+
builderBlock: true
|
|
7850
7763
|
}
|
|
7851
7764
|
};
|
|
7852
7765
|
const Video = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
@@ -8494,7 +8407,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
8494
8407
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
8495
8408
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
8496
8409
|
}
|
|
8497
|
-
const SDK_VERSION = "0.
|
|
8410
|
+
const SDK_VERSION = "0.16.0";
|
|
8498
8411
|
const registry = {};
|
|
8499
8412
|
function register(type, info) {
|
|
8500
8413
|
let typeList = registry[type];
|
package/lib/edge/index.qwik.mjs
CHANGED
|
@@ -3848,56 +3848,37 @@ const getRepeatItemData = ({ block, context }) => {
|
|
|
3848
3848
|
}));
|
|
3849
3849
|
return repeatArray;
|
|
3850
3850
|
};
|
|
3851
|
-
const applyDefaults = (shouldReceiveBuilderProps) => {
|
|
3852
|
-
return {
|
|
3853
|
-
// once we bump to a major version, toggle this to `false`.
|
|
3854
|
-
builderBlock: true,
|
|
3855
|
-
// once we bump to a major version, toggle this to `false`.
|
|
3856
|
-
builderContext: true,
|
|
3857
|
-
builderComponents: false,
|
|
3858
|
-
builderLinkComponent: false,
|
|
3859
|
-
...shouldReceiveBuilderProps
|
|
3860
|
-
};
|
|
3861
|
-
};
|
|
3862
3851
|
const provideLinkComponent = (block, linkComponent) => {
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
return {
|
|
3869
|
-
builderLinkComponent: linkComponent
|
|
3870
|
-
};
|
|
3852
|
+
var _a;
|
|
3853
|
+
if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderLinkComponent)
|
|
3854
|
+
return {
|
|
3855
|
+
builderLinkComponent: linkComponent
|
|
3856
|
+
};
|
|
3857
|
+
return {};
|
|
3871
3858
|
};
|
|
3872
3859
|
const provideRegisteredComponents = (block, registeredComponents) => {
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
return {
|
|
3879
|
-
builderComponents: registeredComponents
|
|
3880
|
-
};
|
|
3860
|
+
var _a;
|
|
3861
|
+
if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderComponents)
|
|
3862
|
+
return {
|
|
3863
|
+
builderComponents: registeredComponents
|
|
3864
|
+
};
|
|
3865
|
+
return {};
|
|
3881
3866
|
};
|
|
3882
3867
|
const provideBuilderBlock = (block, builderBlock) => {
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
return {
|
|
3889
|
-
builderBlock
|
|
3890
|
-
};
|
|
3868
|
+
var _a;
|
|
3869
|
+
if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderBlock)
|
|
3870
|
+
return {
|
|
3871
|
+
builderBlock
|
|
3872
|
+
};
|
|
3873
|
+
return {};
|
|
3891
3874
|
};
|
|
3892
3875
|
const provideBuilderContext = (block, context) => {
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
return {
|
|
3899
|
-
builderContext: context
|
|
3900
|
-
};
|
|
3876
|
+
var _a;
|
|
3877
|
+
if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderContext)
|
|
3878
|
+
return {
|
|
3879
|
+
builderContext: context
|
|
3880
|
+
};
|
|
3881
|
+
return {};
|
|
3901
3882
|
};
|
|
3902
3883
|
const SIZES = {
|
|
3903
3884
|
small: {
|
|
@@ -4785,8 +4766,9 @@ const getWidth = function getWidth2(props, state, index) {
|
|
|
4785
4766
|
return ((_a = state.cols[index]) == null ? void 0 : _a.width) || 100 / state.cols.length;
|
|
4786
4767
|
};
|
|
4787
4768
|
const getColumnCssWidth = function getColumnCssWidth2(props, state, index) {
|
|
4788
|
-
const
|
|
4789
|
-
|
|
4769
|
+
const width = getWidth(props, state, index);
|
|
4770
|
+
const subtractWidth = state.gutterSize * (state.cols.length - 1) * (width / 100);
|
|
4771
|
+
return `calc(${width}% - ${subtractWidth}px)`;
|
|
4790
4772
|
};
|
|
4791
4773
|
const getTabletStyle = function getTabletStyle2(props, state, { stackedStyle, desktopStyle }) {
|
|
4792
4774
|
return state.stackAt === "tablet" ? stackedStyle : desktopStyle;
|
|
@@ -5733,9 +5715,6 @@ const componentInfo$h = {
|
|
|
5733
5715
|
static: true,
|
|
5734
5716
|
noWrap: true,
|
|
5735
5717
|
shouldReceiveBuilderProps: {
|
|
5736
|
-
builderBlock: false,
|
|
5737
|
-
builderContext: false,
|
|
5738
|
-
builderComponents: false,
|
|
5739
5718
|
builderLinkComponent: true
|
|
5740
5719
|
}
|
|
5741
5720
|
};
|
|
@@ -5988,12 +5967,6 @@ const componentInfo$g = {
|
|
|
5988
5967
|
}
|
|
5989
5968
|
};
|
|
5990
5969
|
const componentInfo$f = {
|
|
5991
|
-
shouldReceiveBuilderProps: {
|
|
5992
|
-
builderBlock: false,
|
|
5993
|
-
builderContext: false,
|
|
5994
|
-
builderComponents: false,
|
|
5995
|
-
builderLinkComponent: false
|
|
5996
|
-
},
|
|
5997
5970
|
name: "Fragment",
|
|
5998
5971
|
static: true,
|
|
5999
5972
|
hidden: true,
|
|
@@ -6155,19 +6128,10 @@ const componentInfo$e = {
|
|
|
6155
6128
|
}
|
|
6156
6129
|
],
|
|
6157
6130
|
shouldReceiveBuilderProps: {
|
|
6158
|
-
builderBlock: true
|
|
6159
|
-
builderContext: false,
|
|
6160
|
-
builderComponents: false,
|
|
6161
|
-
builderLinkComponent: false
|
|
6131
|
+
builderBlock: true
|
|
6162
6132
|
}
|
|
6163
6133
|
};
|
|
6164
6134
|
const componentInfo$d = {
|
|
6165
|
-
shouldReceiveBuilderProps: {
|
|
6166
|
-
builderBlock: false,
|
|
6167
|
-
builderContext: false,
|
|
6168
|
-
builderComponents: false,
|
|
6169
|
-
builderLinkComponent: false
|
|
6170
|
-
},
|
|
6171
6135
|
name: "Core:Section",
|
|
6172
6136
|
static: true,
|
|
6173
6137
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F682efef23ace49afac61748dd305c70a",
|
|
@@ -6228,10 +6192,7 @@ const componentInfo$c = {
|
|
|
6228
6192
|
}
|
|
6229
6193
|
],
|
|
6230
6194
|
shouldReceiveBuilderProps: {
|
|
6231
|
-
|
|
6232
|
-
builderContext: true,
|
|
6233
|
-
builderComponents: false,
|
|
6234
|
-
builderLinkComponent: false
|
|
6195
|
+
builderContext: true
|
|
6235
6196
|
}
|
|
6236
6197
|
};
|
|
6237
6198
|
const Slot = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
@@ -6605,10 +6566,7 @@ const Tabs = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
6605
6566
|
}, "Tabs_component_MhWcxXy0lMY"));
|
|
6606
6567
|
const componentInfo$9 = {
|
|
6607
6568
|
shouldReceiveBuilderProps: {
|
|
6608
|
-
builderBlock: false
|
|
6609
|
-
builderContext: false,
|
|
6610
|
-
builderComponents: false,
|
|
6611
|
-
builderLinkComponent: false
|
|
6569
|
+
builderBlock: false
|
|
6612
6570
|
},
|
|
6613
6571
|
name: "Text",
|
|
6614
6572
|
static: true,
|
|
@@ -6645,12 +6603,6 @@ const Text = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
6645
6603
|
}, null, 3, "yO_0");
|
|
6646
6604
|
}, "Text_component_15p0cKUxgIE"));
|
|
6647
6605
|
const componentInfo$8 = {
|
|
6648
|
-
shouldReceiveBuilderProps: {
|
|
6649
|
-
builderBlock: false,
|
|
6650
|
-
builderContext: false,
|
|
6651
|
-
builderComponents: false,
|
|
6652
|
-
builderLinkComponent: false
|
|
6653
|
-
},
|
|
6654
6606
|
name: "Custom Code",
|
|
6655
6607
|
static: true,
|
|
6656
6608
|
requiredPermissions: [
|
|
@@ -6730,12 +6682,6 @@ const CustomCode = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((prop
|
|
|
6730
6682
|
}, null, 3, "bY_0");
|
|
6731
6683
|
}, "CustomCode_component_uYOSy7w7Zqw"));
|
|
6732
6684
|
const componentInfo$7 = {
|
|
6733
|
-
shouldReceiveBuilderProps: {
|
|
6734
|
-
builderBlock: false,
|
|
6735
|
-
builderContext: false,
|
|
6736
|
-
builderComponents: false,
|
|
6737
|
-
builderLinkComponent: false
|
|
6738
|
-
},
|
|
6739
6685
|
name: "Embed",
|
|
6740
6686
|
static: true,
|
|
6741
6687
|
inputs: [
|
|
@@ -7398,12 +7344,6 @@ const STYLES = `
|
|
|
7398
7344
|
}
|
|
7399
7345
|
`;
|
|
7400
7346
|
const componentInfo$5 = {
|
|
7401
|
-
shouldReceiveBuilderProps: {
|
|
7402
|
-
builderBlock: false,
|
|
7403
|
-
builderContext: false,
|
|
7404
|
-
builderComponents: false,
|
|
7405
|
-
builderLinkComponent: false
|
|
7406
|
-
},
|
|
7407
7347
|
name: "Form:Input",
|
|
7408
7348
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fad6f37889d9e40bbbbc72cdb5875d6ca",
|
|
7409
7349
|
inputs: [
|
|
@@ -7487,12 +7427,6 @@ const FormInputComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQ
|
|
|
7487
7427
|
});
|
|
7488
7428
|
}, "FormInputComponent_component_AUUjdN0ueMs"));
|
|
7489
7429
|
const componentInfo$4 = {
|
|
7490
|
-
shouldReceiveBuilderProps: {
|
|
7491
|
-
builderBlock: false,
|
|
7492
|
-
builderContext: false,
|
|
7493
|
-
builderComponents: false,
|
|
7494
|
-
builderLinkComponent: false
|
|
7495
|
-
},
|
|
7496
7430
|
name: "Form:Select",
|
|
7497
7431
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F83acca093fb24aaf94dee136e9a4b045",
|
|
7498
7432
|
defaultStyles: {
|
|
@@ -7562,12 +7496,6 @@ const SelectComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
7562
7496
|
}));
|
|
7563
7497
|
}, "SelectComponent_component_SPKbsFLikZU"));
|
|
7564
7498
|
const componentInfo$3 = {
|
|
7565
|
-
shouldReceiveBuilderProps: {
|
|
7566
|
-
builderBlock: false,
|
|
7567
|
-
builderContext: false,
|
|
7568
|
-
builderComponents: false,
|
|
7569
|
-
builderLinkComponent: false
|
|
7570
|
-
},
|
|
7571
7499
|
name: "Form:SubmitButton",
|
|
7572
7500
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fdf2820ffed1f4349a94c40b3221f5b98",
|
|
7573
7501
|
defaultStyles: {
|
|
@@ -7602,12 +7530,6 @@ const SubmitButton = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
7602
7530
|
}, 0, "6z_0");
|
|
7603
7531
|
}, "SubmitButton_component_NXvMBMCDhwc"));
|
|
7604
7532
|
const componentInfo$2 = {
|
|
7605
|
-
shouldReceiveBuilderProps: {
|
|
7606
|
-
builderBlock: false,
|
|
7607
|
-
builderContext: false,
|
|
7608
|
-
builderComponents: false,
|
|
7609
|
-
builderLinkComponent: false
|
|
7610
|
-
},
|
|
7611
7533
|
name: "Form:TextArea",
|
|
7612
7534
|
image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Ff74a2f3de58c4c3e939204e5b6b8f6c3",
|
|
7613
7535
|
inputs: [
|
|
@@ -7672,12 +7594,6 @@ const Textarea = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
7672
7594
|
}, 0, "kE_0");
|
|
7673
7595
|
}, "Textarea_component_o1TcxV139Oc"));
|
|
7674
7596
|
const componentInfo$1 = {
|
|
7675
|
-
shouldReceiveBuilderProps: {
|
|
7676
|
-
builderBlock: false,
|
|
7677
|
-
builderContext: false,
|
|
7678
|
-
builderComponents: false,
|
|
7679
|
-
builderLinkComponent: false
|
|
7680
|
-
},
|
|
7681
7597
|
// friendlyName?
|
|
7682
7598
|
name: "Raw:Img",
|
|
7683
7599
|
hideFromInsertMenu: true,
|
|
@@ -7841,10 +7757,7 @@ const componentInfo = {
|
|
|
7841
7757
|
}
|
|
7842
7758
|
],
|
|
7843
7759
|
shouldReceiveBuilderProps: {
|
|
7844
|
-
builderBlock: true
|
|
7845
|
-
builderContext: false,
|
|
7846
|
-
builderComponents: false,
|
|
7847
|
-
builderLinkComponent: false
|
|
7760
|
+
builderBlock: true
|
|
7848
7761
|
}
|
|
7849
7762
|
};
|
|
7850
7763
|
const Video = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
@@ -8492,7 +8405,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
8492
8405
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
8493
8406
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
8494
8407
|
}
|
|
8495
|
-
const SDK_VERSION = "0.
|
|
8408
|
+
const SDK_VERSION = "0.16.0";
|
|
8496
8409
|
const registry = {};
|
|
8497
8410
|
function register(type, info) {
|
|
8498
8411
|
let typeList = registry[type];
|