@builder.io/sdk-qwik 0.16.0 → 0.16.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 +86 -7
- package/lib/browser/index.qwik.mjs +86 -7
- package/lib/edge/index.qwik.cjs +86 -7
- package/lib/edge/index.qwik.mjs +86 -7
- package/lib/node/index.qwik.cjs +86 -7
- package/lib/node/index.qwik.mjs +86 -7
- package/package.json +1 -1
- package/types/src/components/content/components/styles.d.ts +2 -1
- package/types/src/components/content-variants/content-variants.types.d.ts +4 -0
- package/types/src/components/inlined-script.d.ts +2 -1
- package/types/src/components/inlined-styles.d.ts +2 -1
- package/types/src/constants/sdk-version.d.ts +1 -1
- package/types/src/context/types.d.ts +1 -0
- package/types/src/types/builder-props.d.ts +3 -0
|
@@ -708,7 +708,10 @@ const InlinedStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
|
|
|
708
708
|
], "p0.styles"),
|
|
709
709
|
"data-id": qwik._fnSignal((p0) => p0.id, [
|
|
710
710
|
props
|
|
711
|
-
], "p0.id")
|
|
711
|
+
], "p0.id"),
|
|
712
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
713
|
+
props
|
|
714
|
+
], "p0.nonce")
|
|
712
715
|
}, null, 3, "NG_0");
|
|
713
716
|
}, "InlinedStyles_component_IOsg46hMexk"));
|
|
714
717
|
const BlockStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
@@ -793,8 +796,14 @@ const BlockStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
|
|
|
793
796
|
get styles() {
|
|
794
797
|
return css.value;
|
|
795
798
|
},
|
|
799
|
+
get nonce() {
|
|
800
|
+
return props.context.nonce;
|
|
801
|
+
},
|
|
796
802
|
[qwik._IMMUTABLE]: {
|
|
797
803
|
id: qwik._IMMUTABLE,
|
|
804
|
+
nonce: qwik._fnSignal((p0) => p0.context.nonce, [
|
|
805
|
+
props
|
|
806
|
+
], "p0.context.nonce"),
|
|
798
807
|
styles: qwik._fnSignal((p0) => p0.value, [
|
|
799
808
|
css
|
|
800
809
|
], "p0.value")
|
|
@@ -1655,8 +1664,14 @@ const Columns = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQr
|
|
|
1655
1664
|
/* @__PURE__ */ qwik._jsxC(InlinedStyles, {
|
|
1656
1665
|
id: "builderio-columns",
|
|
1657
1666
|
styles: columnsStyles(props, state),
|
|
1667
|
+
get nonce() {
|
|
1668
|
+
return props.builderContext.nonce;
|
|
1669
|
+
},
|
|
1658
1670
|
[qwik._IMMUTABLE]: {
|
|
1659
|
-
id: qwik._IMMUTABLE
|
|
1671
|
+
id: qwik._IMMUTABLE,
|
|
1672
|
+
nonce: qwik._fnSignal((p0) => p0.builderContext.nonce, [
|
|
1673
|
+
props
|
|
1674
|
+
], "p0.builderContext.nonce")
|
|
1660
1675
|
}
|
|
1661
1676
|
}, 3, "c0_0"),
|
|
1662
1677
|
(props.columns || []).map((column, index) => {
|
|
@@ -4783,7 +4798,10 @@ const InlinedScript = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
|
|
|
4783
4798
|
], "p0.scriptStr"),
|
|
4784
4799
|
"data-id": qwik._fnSignal((p0) => p0.id, [
|
|
4785
4800
|
props
|
|
4786
|
-
], "p0.id")
|
|
4801
|
+
], "p0.id"),
|
|
4802
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
4803
|
+
props
|
|
4804
|
+
], 'p0.nonce||""')
|
|
4787
4805
|
}, null, 3, "WO_0");
|
|
4788
4806
|
}, "InlinedScript_component_hwThBdhA8rw"));
|
|
4789
4807
|
function getGlobalThis() {
|
|
@@ -5183,7 +5201,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5183
5201
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5184
5202
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5185
5203
|
}
|
|
5186
|
-
const SDK_VERSION = "0.16.
|
|
5204
|
+
const SDK_VERSION = "0.16.1";
|
|
5187
5205
|
const registry = {};
|
|
5188
5206
|
function register(type, info) {
|
|
5189
5207
|
let typeList = registry[type];
|
|
@@ -5827,8 +5845,14 @@ ${getDefaultStyles(props.isNestedRender)}
|
|
|
5827
5845
|
get styles() {
|
|
5828
5846
|
return state.injectedStyles;
|
|
5829
5847
|
},
|
|
5848
|
+
get nonce() {
|
|
5849
|
+
return props.nonce;
|
|
5850
|
+
},
|
|
5830
5851
|
[qwik._IMMUTABLE]: {
|
|
5831
5852
|
id: qwik._IMMUTABLE,
|
|
5853
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
5854
|
+
props
|
|
5855
|
+
], "p0.nonce"),
|
|
5832
5856
|
styles: qwik._fnSignal((p0) => p0.injectedStyles, [
|
|
5833
5857
|
state
|
|
5834
5858
|
], "p0.injectedStyles")
|
|
@@ -5891,7 +5915,8 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
5891
5915
|
}), {}),
|
|
5892
5916
|
inheritedStyles: {},
|
|
5893
5917
|
BlocksWrapper: props.blocksWrapper || "div",
|
|
5894
|
-
BlocksWrapperProps: props.blocksWrapperProps || {}
|
|
5918
|
+
BlocksWrapperProps: props.blocksWrapperProps || {},
|
|
5919
|
+
nonce: props.nonce || ""
|
|
5895
5920
|
},
|
|
5896
5921
|
registeredComponents: [
|
|
5897
5922
|
...getDefaultRegisteredComponents(),
|
|
@@ -5916,6 +5941,9 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
5916
5941
|
registeredComponents: state.registeredComponents
|
|
5917
5942
|
}));
|
|
5918
5943
|
return /* @__PURE__ */ qwik._jsxC(EnableEditor, {
|
|
5944
|
+
get nonce() {
|
|
5945
|
+
return props.nonce;
|
|
5946
|
+
},
|
|
5919
5947
|
get content() {
|
|
5920
5948
|
return props.content;
|
|
5921
5949
|
},
|
|
@@ -5961,14 +5989,23 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
5961
5989
|
get scriptStr() {
|
|
5962
5990
|
return state.scriptStr;
|
|
5963
5991
|
},
|
|
5992
|
+
get nonce() {
|
|
5993
|
+
return props.nonce || "";
|
|
5994
|
+
},
|
|
5964
5995
|
[qwik._IMMUTABLE]: {
|
|
5965
5996
|
id: qwik._IMMUTABLE,
|
|
5997
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
5998
|
+
props
|
|
5999
|
+
], 'p0.nonce||""'),
|
|
5966
6000
|
scriptStr: qwik._fnSignal((p0) => p0.scriptStr, [
|
|
5967
6001
|
state
|
|
5968
6002
|
], "p0.scriptStr")
|
|
5969
6003
|
}
|
|
5970
6004
|
}, 3, "LQ_0") : null,
|
|
5971
6005
|
/* @__PURE__ */ qwik._jsxC(ContentStyles, {
|
|
6006
|
+
get nonce() {
|
|
6007
|
+
return props.nonce || "";
|
|
6008
|
+
},
|
|
5972
6009
|
get isNestedRender() {
|
|
5973
6010
|
return props.isNestedRender;
|
|
5974
6011
|
},
|
|
@@ -6005,7 +6042,10 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
6005
6042
|
], "p0.builderContextSignal.content?.data?.customFonts"),
|
|
6006
6043
|
isNestedRender: qwik._fnSignal((p0) => p0.isNestedRender, [
|
|
6007
6044
|
props
|
|
6008
|
-
], "p0.isNestedRender")
|
|
6045
|
+
], "p0.isNestedRender"),
|
|
6046
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
6047
|
+
props
|
|
6048
|
+
], 'p0.nonce||""')
|
|
6009
6049
|
}
|
|
6010
6050
|
}, 3, "LQ_1"),
|
|
6011
6051
|
/* @__PURE__ */ qwik._jsxC(Blocks, {
|
|
@@ -6075,6 +6115,9 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
6075
6115
|
model: qwik._fnSignal((p0) => p0.model, [
|
|
6076
6116
|
props
|
|
6077
6117
|
], "p0.model"),
|
|
6118
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
6119
|
+
props
|
|
6120
|
+
], "p0.nonce"),
|
|
6078
6121
|
showContent: qwik._fnSignal((p0) => p0.showContent, [
|
|
6079
6122
|
props
|
|
6080
6123
|
], "p0.showContent"),
|
|
@@ -6131,8 +6174,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
6131
6174
|
get scriptStr() {
|
|
6132
6175
|
return getInitVariantsFnsScriptString();
|
|
6133
6176
|
},
|
|
6177
|
+
get nonce() {
|
|
6178
|
+
return props.nonce || "";
|
|
6179
|
+
},
|
|
6134
6180
|
[qwik._IMMUTABLE]: {
|
|
6135
6181
|
id: qwik._IMMUTABLE,
|
|
6182
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
6183
|
+
props
|
|
6184
|
+
], 'p0.nonce||""'),
|
|
6136
6185
|
scriptStr: qwik._IMMUTABLE
|
|
6137
6186
|
}
|
|
6138
6187
|
}, 3, "XM_0") : null,
|
|
@@ -6143,8 +6192,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
6143
6192
|
get styles() {
|
|
6144
6193
|
return hideVariantsStyleString.value;
|
|
6145
6194
|
},
|
|
6195
|
+
get nonce() {
|
|
6196
|
+
return props.nonce || "";
|
|
6197
|
+
},
|
|
6146
6198
|
[qwik._IMMUTABLE]: {
|
|
6147
6199
|
id: qwik._IMMUTABLE,
|
|
6200
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
6201
|
+
props
|
|
6202
|
+
], 'p0.nonce||""'),
|
|
6148
6203
|
styles: qwik._fnSignal((p0) => p0.value, [
|
|
6149
6204
|
hideVariantsStyleString
|
|
6150
6205
|
], "p0.value")
|
|
@@ -6155,8 +6210,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
6155
6210
|
get scriptStr() {
|
|
6156
6211
|
return updateCookieAndStylesScriptStr.value;
|
|
6157
6212
|
},
|
|
6213
|
+
get nonce() {
|
|
6214
|
+
return props.nonce || "";
|
|
6215
|
+
},
|
|
6158
6216
|
[qwik._IMMUTABLE]: {
|
|
6159
6217
|
id: qwik._IMMUTABLE,
|
|
6218
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
6219
|
+
props
|
|
6220
|
+
], 'p0.nonce||""'),
|
|
6160
6221
|
scriptStr: qwik._fnSignal((p0) => p0.value, [
|
|
6161
6222
|
updateCookieAndStylesScriptStr
|
|
6162
6223
|
], "p0.value")
|
|
@@ -6167,6 +6228,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
6167
6228
|
get isNestedRender() {
|
|
6168
6229
|
return props.isNestedRender;
|
|
6169
6230
|
},
|
|
6231
|
+
get nonce() {
|
|
6232
|
+
return props.nonce;
|
|
6233
|
+
},
|
|
6170
6234
|
content: variant,
|
|
6171
6235
|
showContent: false,
|
|
6172
6236
|
get model() {
|
|
@@ -6266,6 +6330,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
6266
6330
|
model: qwik._fnSignal((p0) => p0.model, [
|
|
6267
6331
|
props
|
|
6268
6332
|
], "p0.model"),
|
|
6333
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
6334
|
+
props
|
|
6335
|
+
], "p0.nonce"),
|
|
6269
6336
|
showContent: qwik._IMMUTABLE,
|
|
6270
6337
|
trustedHosts: qwik._fnSignal((p0) => p0.trustedHosts, [
|
|
6271
6338
|
props
|
|
@@ -6276,6 +6343,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
6276
6343
|
]
|
|
6277
6344
|
}, 1, "XM_3") : null,
|
|
6278
6345
|
/* @__PURE__ */ qwik._jsxC(ContentComponent, {
|
|
6346
|
+
get nonce() {
|
|
6347
|
+
return props.nonce;
|
|
6348
|
+
},
|
|
6279
6349
|
get isNestedRender() {
|
|
6280
6350
|
return props.isNestedRender;
|
|
6281
6351
|
},
|
|
@@ -6383,6 +6453,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
6383
6453
|
model: qwik._fnSignal((p0) => p0.model, [
|
|
6384
6454
|
props
|
|
6385
6455
|
], "p0.model"),
|
|
6456
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
6457
|
+
props
|
|
6458
|
+
], "p0.nonce"),
|
|
6386
6459
|
showContent: qwik._IMMUTABLE,
|
|
6387
6460
|
trustedHosts: qwik._fnSignal((p0) => p0.trustedHosts, [
|
|
6388
6461
|
props
|
|
@@ -6458,6 +6531,9 @@ const Symbol$1 = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
|
|
|
6458
6531
|
return /* @__PURE__ */ qwik._jsxS("div", {
|
|
6459
6532
|
...props.attributes,
|
|
6460
6533
|
children: /* @__PURE__ */ qwik._jsxC(ContentVariants, {
|
|
6534
|
+
get nonce() {
|
|
6535
|
+
return props.builderContext.nonce;
|
|
6536
|
+
},
|
|
6461
6537
|
isNestedRender: true,
|
|
6462
6538
|
get apiVersion() {
|
|
6463
6539
|
return props.builderContext.apiVersion;
|
|
@@ -6553,7 +6629,10 @@ const Symbol$1 = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
|
|
|
6553
6629
|
return (_a2 = p0.symbol) == null ? void 0 : _a2.model;
|
|
6554
6630
|
}, [
|
|
6555
6631
|
props
|
|
6556
|
-
], "p0.symbol?.model")
|
|
6632
|
+
], "p0.symbol?.model"),
|
|
6633
|
+
nonce: qwik._fnSignal((p0) => p0.builderContext.nonce, [
|
|
6634
|
+
props
|
|
6635
|
+
], "p0.builderContext.nonce")
|
|
6557
6636
|
}
|
|
6558
6637
|
}, 3, "Wt_0")
|
|
6559
6638
|
}, {
|
|
@@ -706,7 +706,10 @@ const InlinedStyles = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((p
|
|
|
706
706
|
], "p0.styles"),
|
|
707
707
|
"data-id": _fnSignal((p0) => p0.id, [
|
|
708
708
|
props
|
|
709
|
-
], "p0.id")
|
|
709
|
+
], "p0.id"),
|
|
710
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
711
|
+
props
|
|
712
|
+
], "p0.nonce")
|
|
710
713
|
}, null, 3, "NG_0");
|
|
711
714
|
}, "InlinedStyles_component_IOsg46hMexk"));
|
|
712
715
|
const BlockStyles = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
@@ -791,8 +794,14 @@ const BlockStyles = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
791
794
|
get styles() {
|
|
792
795
|
return css.value;
|
|
793
796
|
},
|
|
797
|
+
get nonce() {
|
|
798
|
+
return props.context.nonce;
|
|
799
|
+
},
|
|
794
800
|
[_IMMUTABLE]: {
|
|
795
801
|
id: _IMMUTABLE,
|
|
802
|
+
nonce: _fnSignal((p0) => p0.context.nonce, [
|
|
803
|
+
props
|
|
804
|
+
], "p0.context.nonce"),
|
|
796
805
|
styles: _fnSignal((p0) => p0.value, [
|
|
797
806
|
css
|
|
798
807
|
], "p0.value")
|
|
@@ -1653,8 +1662,14 @@ const Columns = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
1653
1662
|
/* @__PURE__ */ _jsxC(InlinedStyles, {
|
|
1654
1663
|
id: "builderio-columns",
|
|
1655
1664
|
styles: columnsStyles(props, state),
|
|
1665
|
+
get nonce() {
|
|
1666
|
+
return props.builderContext.nonce;
|
|
1667
|
+
},
|
|
1656
1668
|
[_IMMUTABLE]: {
|
|
1657
|
-
id: _IMMUTABLE
|
|
1669
|
+
id: _IMMUTABLE,
|
|
1670
|
+
nonce: _fnSignal((p0) => p0.builderContext.nonce, [
|
|
1671
|
+
props
|
|
1672
|
+
], "p0.builderContext.nonce")
|
|
1658
1673
|
}
|
|
1659
1674
|
}, 3, "c0_0"),
|
|
1660
1675
|
(props.columns || []).map((column, index) => {
|
|
@@ -4781,7 +4796,10 @@ const InlinedScript = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((p
|
|
|
4781
4796
|
], "p0.scriptStr"),
|
|
4782
4797
|
"data-id": _fnSignal((p0) => p0.id, [
|
|
4783
4798
|
props
|
|
4784
|
-
], "p0.id")
|
|
4799
|
+
], "p0.id"),
|
|
4800
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
4801
|
+
props
|
|
4802
|
+
], 'p0.nonce||""')
|
|
4785
4803
|
}, null, 3, "WO_0");
|
|
4786
4804
|
}, "InlinedScript_component_hwThBdhA8rw"));
|
|
4787
4805
|
function getGlobalThis() {
|
|
@@ -5181,7 +5199,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
5181
5199
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
5182
5200
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
5183
5201
|
}
|
|
5184
|
-
const SDK_VERSION = "0.16.
|
|
5202
|
+
const SDK_VERSION = "0.16.1";
|
|
5185
5203
|
const registry = {};
|
|
5186
5204
|
function register(type, info) {
|
|
5187
5205
|
let typeList = registry[type];
|
|
@@ -5825,8 +5843,14 @@ ${getDefaultStyles(props.isNestedRender)}
|
|
|
5825
5843
|
get styles() {
|
|
5826
5844
|
return state.injectedStyles;
|
|
5827
5845
|
},
|
|
5846
|
+
get nonce() {
|
|
5847
|
+
return props.nonce;
|
|
5848
|
+
},
|
|
5828
5849
|
[_IMMUTABLE]: {
|
|
5829
5850
|
id: _IMMUTABLE,
|
|
5851
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
5852
|
+
props
|
|
5853
|
+
], "p0.nonce"),
|
|
5830
5854
|
styles: _fnSignal((p0) => p0.injectedStyles, [
|
|
5831
5855
|
state
|
|
5832
5856
|
], "p0.injectedStyles")
|
|
@@ -5889,7 +5913,8 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
5889
5913
|
}), {}),
|
|
5890
5914
|
inheritedStyles: {},
|
|
5891
5915
|
BlocksWrapper: props.blocksWrapper || "div",
|
|
5892
|
-
BlocksWrapperProps: props.blocksWrapperProps || {}
|
|
5916
|
+
BlocksWrapperProps: props.blocksWrapperProps || {},
|
|
5917
|
+
nonce: props.nonce || ""
|
|
5893
5918
|
},
|
|
5894
5919
|
registeredComponents: [
|
|
5895
5920
|
...getDefaultRegisteredComponents(),
|
|
@@ -5914,6 +5939,9 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
5914
5939
|
registeredComponents: state.registeredComponents
|
|
5915
5940
|
}));
|
|
5916
5941
|
return /* @__PURE__ */ _jsxC(EnableEditor, {
|
|
5942
|
+
get nonce() {
|
|
5943
|
+
return props.nonce;
|
|
5944
|
+
},
|
|
5917
5945
|
get content() {
|
|
5918
5946
|
return props.content;
|
|
5919
5947
|
},
|
|
@@ -5959,14 +5987,23 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
5959
5987
|
get scriptStr() {
|
|
5960
5988
|
return state.scriptStr;
|
|
5961
5989
|
},
|
|
5990
|
+
get nonce() {
|
|
5991
|
+
return props.nonce || "";
|
|
5992
|
+
},
|
|
5962
5993
|
[_IMMUTABLE]: {
|
|
5963
5994
|
id: _IMMUTABLE,
|
|
5995
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
5996
|
+
props
|
|
5997
|
+
], 'p0.nonce||""'),
|
|
5964
5998
|
scriptStr: _fnSignal((p0) => p0.scriptStr, [
|
|
5965
5999
|
state
|
|
5966
6000
|
], "p0.scriptStr")
|
|
5967
6001
|
}
|
|
5968
6002
|
}, 3, "LQ_0") : null,
|
|
5969
6003
|
/* @__PURE__ */ _jsxC(ContentStyles, {
|
|
6004
|
+
get nonce() {
|
|
6005
|
+
return props.nonce || "";
|
|
6006
|
+
},
|
|
5970
6007
|
get isNestedRender() {
|
|
5971
6008
|
return props.isNestedRender;
|
|
5972
6009
|
},
|
|
@@ -6003,7 +6040,10 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
6003
6040
|
], "p0.builderContextSignal.content?.data?.customFonts"),
|
|
6004
6041
|
isNestedRender: _fnSignal((p0) => p0.isNestedRender, [
|
|
6005
6042
|
props
|
|
6006
|
-
], "p0.isNestedRender")
|
|
6043
|
+
], "p0.isNestedRender"),
|
|
6044
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
6045
|
+
props
|
|
6046
|
+
], 'p0.nonce||""')
|
|
6007
6047
|
}
|
|
6008
6048
|
}, 3, "LQ_1"),
|
|
6009
6049
|
/* @__PURE__ */ _jsxC(Blocks, {
|
|
@@ -6073,6 +6113,9 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
6073
6113
|
model: _fnSignal((p0) => p0.model, [
|
|
6074
6114
|
props
|
|
6075
6115
|
], "p0.model"),
|
|
6116
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
6117
|
+
props
|
|
6118
|
+
], "p0.nonce"),
|
|
6076
6119
|
showContent: _fnSignal((p0) => p0.showContent, [
|
|
6077
6120
|
props
|
|
6078
6121
|
], "p0.showContent"),
|
|
@@ -6129,8 +6172,14 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
6129
6172
|
get scriptStr() {
|
|
6130
6173
|
return getInitVariantsFnsScriptString();
|
|
6131
6174
|
},
|
|
6175
|
+
get nonce() {
|
|
6176
|
+
return props.nonce || "";
|
|
6177
|
+
},
|
|
6132
6178
|
[_IMMUTABLE]: {
|
|
6133
6179
|
id: _IMMUTABLE,
|
|
6180
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
6181
|
+
props
|
|
6182
|
+
], 'p0.nonce||""'),
|
|
6134
6183
|
scriptStr: _IMMUTABLE
|
|
6135
6184
|
}
|
|
6136
6185
|
}, 3, "XM_0") : null,
|
|
@@ -6141,8 +6190,14 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
6141
6190
|
get styles() {
|
|
6142
6191
|
return hideVariantsStyleString.value;
|
|
6143
6192
|
},
|
|
6193
|
+
get nonce() {
|
|
6194
|
+
return props.nonce || "";
|
|
6195
|
+
},
|
|
6144
6196
|
[_IMMUTABLE]: {
|
|
6145
6197
|
id: _IMMUTABLE,
|
|
6198
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
6199
|
+
props
|
|
6200
|
+
], 'p0.nonce||""'),
|
|
6146
6201
|
styles: _fnSignal((p0) => p0.value, [
|
|
6147
6202
|
hideVariantsStyleString
|
|
6148
6203
|
], "p0.value")
|
|
@@ -6153,8 +6208,14 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
6153
6208
|
get scriptStr() {
|
|
6154
6209
|
return updateCookieAndStylesScriptStr.value;
|
|
6155
6210
|
},
|
|
6211
|
+
get nonce() {
|
|
6212
|
+
return props.nonce || "";
|
|
6213
|
+
},
|
|
6156
6214
|
[_IMMUTABLE]: {
|
|
6157
6215
|
id: _IMMUTABLE,
|
|
6216
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
6217
|
+
props
|
|
6218
|
+
], 'p0.nonce||""'),
|
|
6158
6219
|
scriptStr: _fnSignal((p0) => p0.value, [
|
|
6159
6220
|
updateCookieAndStylesScriptStr
|
|
6160
6221
|
], "p0.value")
|
|
@@ -6165,6 +6226,9 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
6165
6226
|
get isNestedRender() {
|
|
6166
6227
|
return props.isNestedRender;
|
|
6167
6228
|
},
|
|
6229
|
+
get nonce() {
|
|
6230
|
+
return props.nonce;
|
|
6231
|
+
},
|
|
6168
6232
|
content: variant,
|
|
6169
6233
|
showContent: false,
|
|
6170
6234
|
get model() {
|
|
@@ -6264,6 +6328,9 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
6264
6328
|
model: _fnSignal((p0) => p0.model, [
|
|
6265
6329
|
props
|
|
6266
6330
|
], "p0.model"),
|
|
6331
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
6332
|
+
props
|
|
6333
|
+
], "p0.nonce"),
|
|
6267
6334
|
showContent: _IMMUTABLE,
|
|
6268
6335
|
trustedHosts: _fnSignal((p0) => p0.trustedHosts, [
|
|
6269
6336
|
props
|
|
@@ -6274,6 +6341,9 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
6274
6341
|
]
|
|
6275
6342
|
}, 1, "XM_3") : null,
|
|
6276
6343
|
/* @__PURE__ */ _jsxC(ContentComponent, {
|
|
6344
|
+
get nonce() {
|
|
6345
|
+
return props.nonce;
|
|
6346
|
+
},
|
|
6277
6347
|
get isNestedRender() {
|
|
6278
6348
|
return props.isNestedRender;
|
|
6279
6349
|
},
|
|
@@ -6381,6 +6451,9 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
6381
6451
|
model: _fnSignal((p0) => p0.model, [
|
|
6382
6452
|
props
|
|
6383
6453
|
], "p0.model"),
|
|
6454
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
6455
|
+
props
|
|
6456
|
+
], "p0.nonce"),
|
|
6384
6457
|
showContent: _IMMUTABLE,
|
|
6385
6458
|
trustedHosts: _fnSignal((p0) => p0.trustedHosts, [
|
|
6386
6459
|
props
|
|
@@ -6456,6 +6529,9 @@ const Symbol$1 = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
6456
6529
|
return /* @__PURE__ */ _jsxS("div", {
|
|
6457
6530
|
...props.attributes,
|
|
6458
6531
|
children: /* @__PURE__ */ _jsxC(ContentVariants, {
|
|
6532
|
+
get nonce() {
|
|
6533
|
+
return props.builderContext.nonce;
|
|
6534
|
+
},
|
|
6459
6535
|
isNestedRender: true,
|
|
6460
6536
|
get apiVersion() {
|
|
6461
6537
|
return props.builderContext.apiVersion;
|
|
@@ -6551,7 +6627,10 @@ const Symbol$1 = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
6551
6627
|
return (_a2 = p0.symbol) == null ? void 0 : _a2.model;
|
|
6552
6628
|
}, [
|
|
6553
6629
|
props
|
|
6554
|
-
], "p0.symbol?.model")
|
|
6630
|
+
], "p0.symbol?.model"),
|
|
6631
|
+
nonce: _fnSignal((p0) => p0.builderContext.nonce, [
|
|
6632
|
+
props
|
|
6633
|
+
], "p0.builderContext.nonce")
|
|
6555
6634
|
}
|
|
6556
6635
|
}, 3, "Wt_0")
|
|
6557
6636
|
}, {
|