@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
package/lib/edge/index.qwik.cjs
CHANGED
|
@@ -3932,7 +3932,10 @@ const InlinedStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
|
|
|
3932
3932
|
], "p0.styles"),
|
|
3933
3933
|
"data-id": qwik._fnSignal((p0) => p0.id, [
|
|
3934
3934
|
props
|
|
3935
|
-
], "p0.id")
|
|
3935
|
+
], "p0.id"),
|
|
3936
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
3937
|
+
props
|
|
3938
|
+
], "p0.nonce")
|
|
3936
3939
|
}, null, 3, "NG_0");
|
|
3937
3940
|
}, "InlinedStyles_component_IOsg46hMexk"));
|
|
3938
3941
|
const BlockStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
@@ -4017,8 +4020,14 @@ const BlockStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
|
|
|
4017
4020
|
get styles() {
|
|
4018
4021
|
return css.value;
|
|
4019
4022
|
},
|
|
4023
|
+
get nonce() {
|
|
4024
|
+
return props.context.nonce;
|
|
4025
|
+
},
|
|
4020
4026
|
[qwik._IMMUTABLE]: {
|
|
4021
4027
|
id: qwik._IMMUTABLE,
|
|
4028
|
+
nonce: qwik._fnSignal((p0) => p0.context.nonce, [
|
|
4029
|
+
props
|
|
4030
|
+
], "p0.context.nonce"),
|
|
4022
4031
|
styles: qwik._fnSignal((p0) => p0.value, [
|
|
4023
4032
|
css
|
|
4024
4033
|
], "p0.value")
|
|
@@ -4879,8 +4888,14 @@ const Columns = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQr
|
|
|
4879
4888
|
/* @__PURE__ */ qwik._jsxC(InlinedStyles, {
|
|
4880
4889
|
id: "builderio-columns",
|
|
4881
4890
|
styles: columnsStyles(props, state),
|
|
4891
|
+
get nonce() {
|
|
4892
|
+
return props.builderContext.nonce;
|
|
4893
|
+
},
|
|
4882
4894
|
[qwik._IMMUTABLE]: {
|
|
4883
|
-
id: qwik._IMMUTABLE
|
|
4895
|
+
id: qwik._IMMUTABLE,
|
|
4896
|
+
nonce: qwik._fnSignal((p0) => p0.builderContext.nonce, [
|
|
4897
|
+
props
|
|
4898
|
+
], "p0.builderContext.nonce")
|
|
4884
4899
|
}
|
|
4885
4900
|
}, 3, "c0_0"),
|
|
4886
4901
|
(props.columns || []).map((column, index) => {
|
|
@@ -8007,7 +8022,10 @@ const InlinedScript = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
|
|
|
8007
8022
|
], "p0.scriptStr"),
|
|
8008
8023
|
"data-id": qwik._fnSignal((p0) => p0.id, [
|
|
8009
8024
|
props
|
|
8010
|
-
], "p0.id")
|
|
8025
|
+
], "p0.id"),
|
|
8026
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
8027
|
+
props
|
|
8028
|
+
], 'p0.nonce||""')
|
|
8011
8029
|
}, null, 3, "WO_0");
|
|
8012
8030
|
}, "InlinedScript_component_hwThBdhA8rw"));
|
|
8013
8031
|
function getGlobalThis() {
|
|
@@ -8407,7 +8425,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
8407
8425
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
8408
8426
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
8409
8427
|
}
|
|
8410
|
-
const SDK_VERSION = "0.16.
|
|
8428
|
+
const SDK_VERSION = "0.16.1";
|
|
8411
8429
|
const registry = {};
|
|
8412
8430
|
function register(type, info) {
|
|
8413
8431
|
let typeList = registry[type];
|
|
@@ -9051,8 +9069,14 @@ ${getDefaultStyles(props.isNestedRender)}
|
|
|
9051
9069
|
get styles() {
|
|
9052
9070
|
return state.injectedStyles;
|
|
9053
9071
|
},
|
|
9072
|
+
get nonce() {
|
|
9073
|
+
return props.nonce;
|
|
9074
|
+
},
|
|
9054
9075
|
[qwik._IMMUTABLE]: {
|
|
9055
9076
|
id: qwik._IMMUTABLE,
|
|
9077
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
9078
|
+
props
|
|
9079
|
+
], "p0.nonce"),
|
|
9056
9080
|
styles: qwik._fnSignal((p0) => p0.injectedStyles, [
|
|
9057
9081
|
state
|
|
9058
9082
|
], "p0.injectedStyles")
|
|
@@ -9115,7 +9139,8 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
9115
9139
|
}), {}),
|
|
9116
9140
|
inheritedStyles: {},
|
|
9117
9141
|
BlocksWrapper: props.blocksWrapper || "div",
|
|
9118
|
-
BlocksWrapperProps: props.blocksWrapperProps || {}
|
|
9142
|
+
BlocksWrapperProps: props.blocksWrapperProps || {},
|
|
9143
|
+
nonce: props.nonce || ""
|
|
9119
9144
|
},
|
|
9120
9145
|
registeredComponents: [
|
|
9121
9146
|
...getDefaultRegisteredComponents(),
|
|
@@ -9140,6 +9165,9 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
9140
9165
|
registeredComponents: state.registeredComponents
|
|
9141
9166
|
}));
|
|
9142
9167
|
return /* @__PURE__ */ qwik._jsxC(EnableEditor, {
|
|
9168
|
+
get nonce() {
|
|
9169
|
+
return props.nonce;
|
|
9170
|
+
},
|
|
9143
9171
|
get content() {
|
|
9144
9172
|
return props.content;
|
|
9145
9173
|
},
|
|
@@ -9185,14 +9213,23 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
9185
9213
|
get scriptStr() {
|
|
9186
9214
|
return state.scriptStr;
|
|
9187
9215
|
},
|
|
9216
|
+
get nonce() {
|
|
9217
|
+
return props.nonce || "";
|
|
9218
|
+
},
|
|
9188
9219
|
[qwik._IMMUTABLE]: {
|
|
9189
9220
|
id: qwik._IMMUTABLE,
|
|
9221
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
9222
|
+
props
|
|
9223
|
+
], 'p0.nonce||""'),
|
|
9190
9224
|
scriptStr: qwik._fnSignal((p0) => p0.scriptStr, [
|
|
9191
9225
|
state
|
|
9192
9226
|
], "p0.scriptStr")
|
|
9193
9227
|
}
|
|
9194
9228
|
}, 3, "LQ_0") : null,
|
|
9195
9229
|
/* @__PURE__ */ qwik._jsxC(ContentStyles, {
|
|
9230
|
+
get nonce() {
|
|
9231
|
+
return props.nonce || "";
|
|
9232
|
+
},
|
|
9196
9233
|
get isNestedRender() {
|
|
9197
9234
|
return props.isNestedRender;
|
|
9198
9235
|
},
|
|
@@ -9229,7 +9266,10 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
9229
9266
|
], "p0.builderContextSignal.content?.data?.customFonts"),
|
|
9230
9267
|
isNestedRender: qwik._fnSignal((p0) => p0.isNestedRender, [
|
|
9231
9268
|
props
|
|
9232
|
-
], "p0.isNestedRender")
|
|
9269
|
+
], "p0.isNestedRender"),
|
|
9270
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
9271
|
+
props
|
|
9272
|
+
], 'p0.nonce||""')
|
|
9233
9273
|
}
|
|
9234
9274
|
}, 3, "LQ_1"),
|
|
9235
9275
|
/* @__PURE__ */ qwik._jsxC(Blocks, {
|
|
@@ -9299,6 +9339,9 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
|
|
|
9299
9339
|
model: qwik._fnSignal((p0) => p0.model, [
|
|
9300
9340
|
props
|
|
9301
9341
|
], "p0.model"),
|
|
9342
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
9343
|
+
props
|
|
9344
|
+
], "p0.nonce"),
|
|
9302
9345
|
showContent: qwik._fnSignal((p0) => p0.showContent, [
|
|
9303
9346
|
props
|
|
9304
9347
|
], "p0.showContent"),
|
|
@@ -9355,8 +9398,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
9355
9398
|
get scriptStr() {
|
|
9356
9399
|
return getInitVariantsFnsScriptString();
|
|
9357
9400
|
},
|
|
9401
|
+
get nonce() {
|
|
9402
|
+
return props.nonce || "";
|
|
9403
|
+
},
|
|
9358
9404
|
[qwik._IMMUTABLE]: {
|
|
9359
9405
|
id: qwik._IMMUTABLE,
|
|
9406
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
9407
|
+
props
|
|
9408
|
+
], 'p0.nonce||""'),
|
|
9360
9409
|
scriptStr: qwik._IMMUTABLE
|
|
9361
9410
|
}
|
|
9362
9411
|
}, 3, "XM_0") : null,
|
|
@@ -9367,8 +9416,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
9367
9416
|
get styles() {
|
|
9368
9417
|
return hideVariantsStyleString.value;
|
|
9369
9418
|
},
|
|
9419
|
+
get nonce() {
|
|
9420
|
+
return props.nonce || "";
|
|
9421
|
+
},
|
|
9370
9422
|
[qwik._IMMUTABLE]: {
|
|
9371
9423
|
id: qwik._IMMUTABLE,
|
|
9424
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
9425
|
+
props
|
|
9426
|
+
], 'p0.nonce||""'),
|
|
9372
9427
|
styles: qwik._fnSignal((p0) => p0.value, [
|
|
9373
9428
|
hideVariantsStyleString
|
|
9374
9429
|
], "p0.value")
|
|
@@ -9379,8 +9434,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
9379
9434
|
get scriptStr() {
|
|
9380
9435
|
return updateCookieAndStylesScriptStr.value;
|
|
9381
9436
|
},
|
|
9437
|
+
get nonce() {
|
|
9438
|
+
return props.nonce || "";
|
|
9439
|
+
},
|
|
9382
9440
|
[qwik._IMMUTABLE]: {
|
|
9383
9441
|
id: qwik._IMMUTABLE,
|
|
9442
|
+
nonce: qwik._fnSignal((p0) => p0.nonce || "", [
|
|
9443
|
+
props
|
|
9444
|
+
], 'p0.nonce||""'),
|
|
9384
9445
|
scriptStr: qwik._fnSignal((p0) => p0.value, [
|
|
9385
9446
|
updateCookieAndStylesScriptStr
|
|
9386
9447
|
], "p0.value")
|
|
@@ -9391,6 +9452,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
9391
9452
|
get isNestedRender() {
|
|
9392
9453
|
return props.isNestedRender;
|
|
9393
9454
|
},
|
|
9455
|
+
get nonce() {
|
|
9456
|
+
return props.nonce;
|
|
9457
|
+
},
|
|
9394
9458
|
content: variant,
|
|
9395
9459
|
showContent: false,
|
|
9396
9460
|
get model() {
|
|
@@ -9490,6 +9554,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
9490
9554
|
model: qwik._fnSignal((p0) => p0.model, [
|
|
9491
9555
|
props
|
|
9492
9556
|
], "p0.model"),
|
|
9557
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
9558
|
+
props
|
|
9559
|
+
], "p0.nonce"),
|
|
9493
9560
|
showContent: qwik._IMMUTABLE,
|
|
9494
9561
|
trustedHosts: qwik._fnSignal((p0) => p0.trustedHosts, [
|
|
9495
9562
|
props
|
|
@@ -9500,6 +9567,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
9500
9567
|
]
|
|
9501
9568
|
}, 1, "XM_3") : null,
|
|
9502
9569
|
/* @__PURE__ */ qwik._jsxC(ContentComponent, {
|
|
9570
|
+
get nonce() {
|
|
9571
|
+
return props.nonce;
|
|
9572
|
+
},
|
|
9503
9573
|
get isNestedRender() {
|
|
9504
9574
|
return props.isNestedRender;
|
|
9505
9575
|
},
|
|
@@ -9607,6 +9677,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
9607
9677
|
model: qwik._fnSignal((p0) => p0.model, [
|
|
9608
9678
|
props
|
|
9609
9679
|
], "p0.model"),
|
|
9680
|
+
nonce: qwik._fnSignal((p0) => p0.nonce, [
|
|
9681
|
+
props
|
|
9682
|
+
], "p0.nonce"),
|
|
9610
9683
|
showContent: qwik._IMMUTABLE,
|
|
9611
9684
|
trustedHosts: qwik._fnSignal((p0) => p0.trustedHosts, [
|
|
9612
9685
|
props
|
|
@@ -9682,6 +9755,9 @@ const Symbol$1 = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
|
|
|
9682
9755
|
return /* @__PURE__ */ qwik._jsxS("div", {
|
|
9683
9756
|
...props.attributes,
|
|
9684
9757
|
children: /* @__PURE__ */ qwik._jsxC(ContentVariants, {
|
|
9758
|
+
get nonce() {
|
|
9759
|
+
return props.builderContext.nonce;
|
|
9760
|
+
},
|
|
9685
9761
|
isNestedRender: true,
|
|
9686
9762
|
get apiVersion() {
|
|
9687
9763
|
return props.builderContext.apiVersion;
|
|
@@ -9777,7 +9853,10 @@ const Symbol$1 = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
|
|
|
9777
9853
|
return (_a2 = p0.symbol) == null ? void 0 : _a2.model;
|
|
9778
9854
|
}, [
|
|
9779
9855
|
props
|
|
9780
|
-
], "p0.symbol?.model")
|
|
9856
|
+
], "p0.symbol?.model"),
|
|
9857
|
+
nonce: qwik._fnSignal((p0) => p0.builderContext.nonce, [
|
|
9858
|
+
props
|
|
9859
|
+
], "p0.builderContext.nonce")
|
|
9781
9860
|
}
|
|
9782
9861
|
}, 3, "Wt_0")
|
|
9783
9862
|
}, {
|
package/lib/edge/index.qwik.mjs
CHANGED
|
@@ -3930,7 +3930,10 @@ const InlinedStyles = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((p
|
|
|
3930
3930
|
], "p0.styles"),
|
|
3931
3931
|
"data-id": _fnSignal((p0) => p0.id, [
|
|
3932
3932
|
props
|
|
3933
|
-
], "p0.id")
|
|
3933
|
+
], "p0.id"),
|
|
3934
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
3935
|
+
props
|
|
3936
|
+
], "p0.nonce")
|
|
3934
3937
|
}, null, 3, "NG_0");
|
|
3935
3938
|
}, "InlinedStyles_component_IOsg46hMexk"));
|
|
3936
3939
|
const BlockStyles = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
@@ -4015,8 +4018,14 @@ const BlockStyles = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
4015
4018
|
get styles() {
|
|
4016
4019
|
return css.value;
|
|
4017
4020
|
},
|
|
4021
|
+
get nonce() {
|
|
4022
|
+
return props.context.nonce;
|
|
4023
|
+
},
|
|
4018
4024
|
[_IMMUTABLE]: {
|
|
4019
4025
|
id: _IMMUTABLE,
|
|
4026
|
+
nonce: _fnSignal((p0) => p0.context.nonce, [
|
|
4027
|
+
props
|
|
4028
|
+
], "p0.context.nonce"),
|
|
4020
4029
|
styles: _fnSignal((p0) => p0.value, [
|
|
4021
4030
|
css
|
|
4022
4031
|
], "p0.value")
|
|
@@ -4877,8 +4886,14 @@ const Columns = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
4877
4886
|
/* @__PURE__ */ _jsxC(InlinedStyles, {
|
|
4878
4887
|
id: "builderio-columns",
|
|
4879
4888
|
styles: columnsStyles(props, state),
|
|
4889
|
+
get nonce() {
|
|
4890
|
+
return props.builderContext.nonce;
|
|
4891
|
+
},
|
|
4880
4892
|
[_IMMUTABLE]: {
|
|
4881
|
-
id: _IMMUTABLE
|
|
4893
|
+
id: _IMMUTABLE,
|
|
4894
|
+
nonce: _fnSignal((p0) => p0.builderContext.nonce, [
|
|
4895
|
+
props
|
|
4896
|
+
], "p0.builderContext.nonce")
|
|
4882
4897
|
}
|
|
4883
4898
|
}, 3, "c0_0"),
|
|
4884
4899
|
(props.columns || []).map((column, index) => {
|
|
@@ -8005,7 +8020,10 @@ const InlinedScript = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((p
|
|
|
8005
8020
|
], "p0.scriptStr"),
|
|
8006
8021
|
"data-id": _fnSignal((p0) => p0.id, [
|
|
8007
8022
|
props
|
|
8008
|
-
], "p0.id")
|
|
8023
|
+
], "p0.id"),
|
|
8024
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
8025
|
+
props
|
|
8026
|
+
], 'p0.nonce||""')
|
|
8009
8027
|
}, null, 3, "WO_0");
|
|
8010
8028
|
}, "InlinedScript_component_hwThBdhA8rw"));
|
|
8011
8029
|
function getGlobalThis() {
|
|
@@ -8405,7 +8423,7 @@ function isFromTrustedHost(trustedHosts, e) {
|
|
|
8405
8423
|
const url = new URL(e.origin), hostname = url.hostname;
|
|
8406
8424
|
return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
|
|
8407
8425
|
}
|
|
8408
|
-
const SDK_VERSION = "0.16.
|
|
8426
|
+
const SDK_VERSION = "0.16.1";
|
|
8409
8427
|
const registry = {};
|
|
8410
8428
|
function register(type, info) {
|
|
8411
8429
|
let typeList = registry[type];
|
|
@@ -9049,8 +9067,14 @@ ${getDefaultStyles(props.isNestedRender)}
|
|
|
9049
9067
|
get styles() {
|
|
9050
9068
|
return state.injectedStyles;
|
|
9051
9069
|
},
|
|
9070
|
+
get nonce() {
|
|
9071
|
+
return props.nonce;
|
|
9072
|
+
},
|
|
9052
9073
|
[_IMMUTABLE]: {
|
|
9053
9074
|
id: _IMMUTABLE,
|
|
9075
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
9076
|
+
props
|
|
9077
|
+
], "p0.nonce"),
|
|
9054
9078
|
styles: _fnSignal((p0) => p0.injectedStyles, [
|
|
9055
9079
|
state
|
|
9056
9080
|
], "p0.injectedStyles")
|
|
@@ -9113,7 +9137,8 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
9113
9137
|
}), {}),
|
|
9114
9138
|
inheritedStyles: {},
|
|
9115
9139
|
BlocksWrapper: props.blocksWrapper || "div",
|
|
9116
|
-
BlocksWrapperProps: props.blocksWrapperProps || {}
|
|
9140
|
+
BlocksWrapperProps: props.blocksWrapperProps || {},
|
|
9141
|
+
nonce: props.nonce || ""
|
|
9117
9142
|
},
|
|
9118
9143
|
registeredComponents: [
|
|
9119
9144
|
...getDefaultRegisteredComponents(),
|
|
@@ -9138,6 +9163,9 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
9138
9163
|
registeredComponents: state.registeredComponents
|
|
9139
9164
|
}));
|
|
9140
9165
|
return /* @__PURE__ */ _jsxC(EnableEditor, {
|
|
9166
|
+
get nonce() {
|
|
9167
|
+
return props.nonce;
|
|
9168
|
+
},
|
|
9141
9169
|
get content() {
|
|
9142
9170
|
return props.content;
|
|
9143
9171
|
},
|
|
@@ -9183,14 +9211,23 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
9183
9211
|
get scriptStr() {
|
|
9184
9212
|
return state.scriptStr;
|
|
9185
9213
|
},
|
|
9214
|
+
get nonce() {
|
|
9215
|
+
return props.nonce || "";
|
|
9216
|
+
},
|
|
9186
9217
|
[_IMMUTABLE]: {
|
|
9187
9218
|
id: _IMMUTABLE,
|
|
9219
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
9220
|
+
props
|
|
9221
|
+
], 'p0.nonce||""'),
|
|
9188
9222
|
scriptStr: _fnSignal((p0) => p0.scriptStr, [
|
|
9189
9223
|
state
|
|
9190
9224
|
], "p0.scriptStr")
|
|
9191
9225
|
}
|
|
9192
9226
|
}, 3, "LQ_0") : null,
|
|
9193
9227
|
/* @__PURE__ */ _jsxC(ContentStyles, {
|
|
9228
|
+
get nonce() {
|
|
9229
|
+
return props.nonce || "";
|
|
9230
|
+
},
|
|
9194
9231
|
get isNestedRender() {
|
|
9195
9232
|
return props.isNestedRender;
|
|
9196
9233
|
},
|
|
@@ -9227,7 +9264,10 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
9227
9264
|
], "p0.builderContextSignal.content?.data?.customFonts"),
|
|
9228
9265
|
isNestedRender: _fnSignal((p0) => p0.isNestedRender, [
|
|
9229
9266
|
props
|
|
9230
|
-
], "p0.isNestedRender")
|
|
9267
|
+
], "p0.isNestedRender"),
|
|
9268
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
9269
|
+
props
|
|
9270
|
+
], 'p0.nonce||""')
|
|
9231
9271
|
}
|
|
9232
9272
|
}, 3, "LQ_1"),
|
|
9233
9273
|
/* @__PURE__ */ _jsxC(Blocks, {
|
|
@@ -9297,6 +9337,9 @@ const ContentComponent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl
|
|
|
9297
9337
|
model: _fnSignal((p0) => p0.model, [
|
|
9298
9338
|
props
|
|
9299
9339
|
], "p0.model"),
|
|
9340
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
9341
|
+
props
|
|
9342
|
+
], "p0.nonce"),
|
|
9300
9343
|
showContent: _fnSignal((p0) => p0.showContent, [
|
|
9301
9344
|
props
|
|
9302
9345
|
], "p0.showContent"),
|
|
@@ -9353,8 +9396,14 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
9353
9396
|
get scriptStr() {
|
|
9354
9397
|
return getInitVariantsFnsScriptString();
|
|
9355
9398
|
},
|
|
9399
|
+
get nonce() {
|
|
9400
|
+
return props.nonce || "";
|
|
9401
|
+
},
|
|
9356
9402
|
[_IMMUTABLE]: {
|
|
9357
9403
|
id: _IMMUTABLE,
|
|
9404
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
9405
|
+
props
|
|
9406
|
+
], 'p0.nonce||""'),
|
|
9358
9407
|
scriptStr: _IMMUTABLE
|
|
9359
9408
|
}
|
|
9360
9409
|
}, 3, "XM_0") : null,
|
|
@@ -9365,8 +9414,14 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
9365
9414
|
get styles() {
|
|
9366
9415
|
return hideVariantsStyleString.value;
|
|
9367
9416
|
},
|
|
9417
|
+
get nonce() {
|
|
9418
|
+
return props.nonce || "";
|
|
9419
|
+
},
|
|
9368
9420
|
[_IMMUTABLE]: {
|
|
9369
9421
|
id: _IMMUTABLE,
|
|
9422
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
9423
|
+
props
|
|
9424
|
+
], 'p0.nonce||""'),
|
|
9370
9425
|
styles: _fnSignal((p0) => p0.value, [
|
|
9371
9426
|
hideVariantsStyleString
|
|
9372
9427
|
], "p0.value")
|
|
@@ -9377,8 +9432,14 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
9377
9432
|
get scriptStr() {
|
|
9378
9433
|
return updateCookieAndStylesScriptStr.value;
|
|
9379
9434
|
},
|
|
9435
|
+
get nonce() {
|
|
9436
|
+
return props.nonce || "";
|
|
9437
|
+
},
|
|
9380
9438
|
[_IMMUTABLE]: {
|
|
9381
9439
|
id: _IMMUTABLE,
|
|
9440
|
+
nonce: _fnSignal((p0) => p0.nonce || "", [
|
|
9441
|
+
props
|
|
9442
|
+
], 'p0.nonce||""'),
|
|
9382
9443
|
scriptStr: _fnSignal((p0) => p0.value, [
|
|
9383
9444
|
updateCookieAndStylesScriptStr
|
|
9384
9445
|
], "p0.value")
|
|
@@ -9389,6 +9450,9 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
9389
9450
|
get isNestedRender() {
|
|
9390
9451
|
return props.isNestedRender;
|
|
9391
9452
|
},
|
|
9453
|
+
get nonce() {
|
|
9454
|
+
return props.nonce;
|
|
9455
|
+
},
|
|
9392
9456
|
content: variant,
|
|
9393
9457
|
showContent: false,
|
|
9394
9458
|
get model() {
|
|
@@ -9488,6 +9552,9 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
9488
9552
|
model: _fnSignal((p0) => p0.model, [
|
|
9489
9553
|
props
|
|
9490
9554
|
], "p0.model"),
|
|
9555
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
9556
|
+
props
|
|
9557
|
+
], "p0.nonce"),
|
|
9491
9558
|
showContent: _IMMUTABLE,
|
|
9492
9559
|
trustedHosts: _fnSignal((p0) => p0.trustedHosts, [
|
|
9493
9560
|
props
|
|
@@ -9498,6 +9565,9 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
9498
9565
|
]
|
|
9499
9566
|
}, 1, "XM_3") : null,
|
|
9500
9567
|
/* @__PURE__ */ _jsxC(ContentComponent, {
|
|
9568
|
+
get nonce() {
|
|
9569
|
+
return props.nonce;
|
|
9570
|
+
},
|
|
9501
9571
|
get isNestedRender() {
|
|
9502
9572
|
return props.isNestedRender;
|
|
9503
9573
|
},
|
|
@@ -9605,6 +9675,9 @@ const ContentVariants = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
9605
9675
|
model: _fnSignal((p0) => p0.model, [
|
|
9606
9676
|
props
|
|
9607
9677
|
], "p0.model"),
|
|
9678
|
+
nonce: _fnSignal((p0) => p0.nonce, [
|
|
9679
|
+
props
|
|
9680
|
+
], "p0.nonce"),
|
|
9608
9681
|
showContent: _IMMUTABLE,
|
|
9609
9682
|
trustedHosts: _fnSignal((p0) => p0.trustedHosts, [
|
|
9610
9683
|
props
|
|
@@ -9680,6 +9753,9 @@ const Symbol$1 = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
9680
9753
|
return /* @__PURE__ */ _jsxS("div", {
|
|
9681
9754
|
...props.attributes,
|
|
9682
9755
|
children: /* @__PURE__ */ _jsxC(ContentVariants, {
|
|
9756
|
+
get nonce() {
|
|
9757
|
+
return props.builderContext.nonce;
|
|
9758
|
+
},
|
|
9683
9759
|
isNestedRender: true,
|
|
9684
9760
|
get apiVersion() {
|
|
9685
9761
|
return props.builderContext.apiVersion;
|
|
@@ -9775,7 +9851,10 @@ const Symbol$1 = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
9775
9851
|
return (_a2 = p0.symbol) == null ? void 0 : _a2.model;
|
|
9776
9852
|
}, [
|
|
9777
9853
|
props
|
|
9778
|
-
], "p0.symbol?.model")
|
|
9854
|
+
], "p0.symbol?.model"),
|
|
9855
|
+
nonce: _fnSignal((p0) => p0.builderContext.nonce, [
|
|
9856
|
+
props
|
|
9857
|
+
], "p0.builderContext.nonce")
|
|
9779
9858
|
}
|
|
9780
9859
|
}, 3, "Wt_0")
|
|
9781
9860
|
}, {
|