@builder.io/sdk-qwik 0.15.2 → 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.
@@ -626,56 +626,37 @@ const getRepeatItemData = ({ block, context }) => {
626
626
  }));
627
627
  return repeatArray;
628
628
  };
629
- const applyDefaults = (shouldReceiveBuilderProps) => {
630
- return {
631
- // once we bump to a major version, toggle this to `false`.
632
- builderBlock: true,
633
- // once we bump to a major version, toggle this to `false`.
634
- builderContext: true,
635
- builderComponents: false,
636
- builderLinkComponent: false,
637
- ...shouldReceiveBuilderProps
638
- };
639
- };
640
629
  const provideLinkComponent = (block, linkComponent) => {
641
- if (!block)
642
- return {};
643
- const shouldReceiveProp = applyDefaults(block.shouldReceiveBuilderProps).builderLinkComponent;
644
- if (!shouldReceiveProp)
645
- return {};
646
- return {
647
- builderLinkComponent: linkComponent
648
- };
630
+ var _a;
631
+ if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderLinkComponent)
632
+ return {
633
+ builderLinkComponent: linkComponent
634
+ };
635
+ return {};
649
636
  };
650
637
  const provideRegisteredComponents = (block, registeredComponents) => {
651
- if (!block)
652
- return {};
653
- const shouldReceiveProp = applyDefaults(block.shouldReceiveBuilderProps).builderComponents;
654
- if (!shouldReceiveProp)
655
- return {};
656
- return {
657
- builderComponents: registeredComponents
658
- };
638
+ var _a;
639
+ if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderComponents)
640
+ return {
641
+ builderComponents: registeredComponents
642
+ };
643
+ return {};
659
644
  };
660
645
  const provideBuilderBlock = (block, builderBlock) => {
661
- if (!block)
662
- return {};
663
- const shouldReceiveProp = applyDefaults(block.shouldReceiveBuilderProps).builderBlock;
664
- if (!shouldReceiveProp)
665
- return {};
666
- return {
667
- builderBlock
668
- };
646
+ var _a;
647
+ if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderBlock)
648
+ return {
649
+ builderBlock
650
+ };
651
+ return {};
669
652
  };
670
653
  const provideBuilderContext = (block, context) => {
671
- if (!block)
672
- return {};
673
- const shouldReceiveProp = applyDefaults(block.shouldReceiveBuilderProps).builderContext;
674
- if (!shouldReceiveProp)
675
- return {};
676
- return {
677
- builderContext: context
678
- };
654
+ var _a;
655
+ if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderContext)
656
+ return {
657
+ builderContext: context
658
+ };
659
+ return {};
679
660
  };
680
661
  const SIZES = {
681
662
  small: {
@@ -727,7 +708,10 @@ const InlinedStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
727
708
  ], "p0.styles"),
728
709
  "data-id": qwik._fnSignal((p0) => p0.id, [
729
710
  props
730
- ], "p0.id")
711
+ ], "p0.id"),
712
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
713
+ props
714
+ ], "p0.nonce")
731
715
  }, null, 3, "NG_0");
732
716
  }, "InlinedStyles_component_IOsg46hMexk"));
733
717
  const BlockStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
@@ -812,8 +796,14 @@ const BlockStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
812
796
  get styles() {
813
797
  return css.value;
814
798
  },
799
+ get nonce() {
800
+ return props.context.nonce;
801
+ },
815
802
  [qwik._IMMUTABLE]: {
816
803
  id: qwik._IMMUTABLE,
804
+ nonce: qwik._fnSignal((p0) => p0.context.nonce, [
805
+ props
806
+ ], "p0.context.nonce"),
817
807
  styles: qwik._fnSignal((p0) => p0.value, [
818
808
  css
819
809
  ], "p0.value")
@@ -1563,8 +1553,9 @@ const getWidth = function getWidth2(props, state, index) {
1563
1553
  return ((_a = state.cols[index]) == null ? void 0 : _a.width) || 100 / state.cols.length;
1564
1554
  };
1565
1555
  const getColumnCssWidth = function getColumnCssWidth2(props, state, index) {
1566
- const subtractWidth = state.gutterSize * (state.cols.length - 1) / state.cols.length;
1567
- return `calc(${getWidth(props, state, index)}% - ${subtractWidth}px)`;
1556
+ const width = getWidth(props, state, index);
1557
+ const subtractWidth = state.gutterSize * (state.cols.length - 1) * (width / 100);
1558
+ return `calc(${width}% - ${subtractWidth}px)`;
1568
1559
  };
1569
1560
  const getTabletStyle = function getTabletStyle2(props, state, { stackedStyle, desktopStyle }) {
1570
1561
  return state.stackAt === "tablet" ? stackedStyle : desktopStyle;
@@ -1673,8 +1664,14 @@ const Columns = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQr
1673
1664
  /* @__PURE__ */ qwik._jsxC(InlinedStyles, {
1674
1665
  id: "builderio-columns",
1675
1666
  styles: columnsStyles(props, state),
1667
+ get nonce() {
1668
+ return props.builderContext.nonce;
1669
+ },
1676
1670
  [qwik._IMMUTABLE]: {
1677
- id: qwik._IMMUTABLE
1671
+ id: qwik._IMMUTABLE,
1672
+ nonce: qwik._fnSignal((p0) => p0.builderContext.nonce, [
1673
+ props
1674
+ ], "p0.builderContext.nonce")
1678
1675
  }
1679
1676
  }, 3, "c0_0"),
1680
1677
  (props.columns || []).map((column, index) => {
@@ -2511,9 +2508,6 @@ const componentInfo$h = {
2511
2508
  static: true,
2512
2509
  noWrap: true,
2513
2510
  shouldReceiveBuilderProps: {
2514
- builderBlock: false,
2515
- builderContext: false,
2516
- builderComponents: false,
2517
2511
  builderLinkComponent: true
2518
2512
  }
2519
2513
  };
@@ -2766,12 +2760,6 @@ const componentInfo$g = {
2766
2760
  }
2767
2761
  };
2768
2762
  const componentInfo$f = {
2769
- shouldReceiveBuilderProps: {
2770
- builderBlock: false,
2771
- builderContext: false,
2772
- builderComponents: false,
2773
- builderLinkComponent: false
2774
- },
2775
2763
  name: "Fragment",
2776
2764
  static: true,
2777
2765
  hidden: true,
@@ -2933,19 +2921,10 @@ const componentInfo$e = {
2933
2921
  }
2934
2922
  ],
2935
2923
  shouldReceiveBuilderProps: {
2936
- builderBlock: true,
2937
- builderContext: false,
2938
- builderComponents: false,
2939
- builderLinkComponent: false
2924
+ builderBlock: true
2940
2925
  }
2941
2926
  };
2942
2927
  const componentInfo$d = {
2943
- shouldReceiveBuilderProps: {
2944
- builderBlock: false,
2945
- builderContext: false,
2946
- builderComponents: false,
2947
- builderLinkComponent: false
2948
- },
2949
2928
  name: "Core:Section",
2950
2929
  static: true,
2951
2930
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F682efef23ace49afac61748dd305c70a",
@@ -3006,10 +2985,7 @@ const componentInfo$c = {
3006
2985
  }
3007
2986
  ],
3008
2987
  shouldReceiveBuilderProps: {
3009
- builderBlock: false,
3010
- builderContext: true,
3011
- builderComponents: false,
3012
- builderLinkComponent: false
2988
+ builderContext: true
3013
2989
  }
3014
2990
  };
3015
2991
  const Slot = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
@@ -3383,10 +3359,7 @@ const Tabs = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((
3383
3359
  }, "Tabs_component_MhWcxXy0lMY"));
3384
3360
  const componentInfo$9 = {
3385
3361
  shouldReceiveBuilderProps: {
3386
- builderBlock: false,
3387
- builderContext: false,
3388
- builderComponents: false,
3389
- builderLinkComponent: false
3362
+ builderBlock: false
3390
3363
  },
3391
3364
  name: "Text",
3392
3365
  static: true,
@@ -3423,12 +3396,6 @@ const Text = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((
3423
3396
  }, null, 3, "yO_0");
3424
3397
  }, "Text_component_15p0cKUxgIE"));
3425
3398
  const componentInfo$8 = {
3426
- shouldReceiveBuilderProps: {
3427
- builderBlock: false,
3428
- builderContext: false,
3429
- builderComponents: false,
3430
- builderLinkComponent: false
3431
- },
3432
3399
  name: "Custom Code",
3433
3400
  static: true,
3434
3401
  requiredPermissions: [
@@ -3508,12 +3475,6 @@ const CustomCode = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inline
3508
3475
  }, null, 3, "bY_0");
3509
3476
  }, "CustomCode_component_uYOSy7w7Zqw"));
3510
3477
  const componentInfo$7 = {
3511
- shouldReceiveBuilderProps: {
3512
- builderBlock: false,
3513
- builderContext: false,
3514
- builderComponents: false,
3515
- builderLinkComponent: false
3516
- },
3517
3478
  name: "Embed",
3518
3479
  static: true,
3519
3480
  inputs: [
@@ -4176,12 +4137,6 @@ const STYLES = `
4176
4137
  }
4177
4138
  `;
4178
4139
  const componentInfo$5 = {
4179
- shouldReceiveBuilderProps: {
4180
- builderBlock: false,
4181
- builderContext: false,
4182
- builderComponents: false,
4183
- builderLinkComponent: false
4184
- },
4185
4140
  name: "Form:Input",
4186
4141
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fad6f37889d9e40bbbbc72cdb5875d6ca",
4187
4142
  inputs: [
@@ -4265,12 +4220,6 @@ const FormInputComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwi
4265
4220
  });
4266
4221
  }, "FormInputComponent_component_AUUjdN0ueMs"));
4267
4222
  const componentInfo$4 = {
4268
- shouldReceiveBuilderProps: {
4269
- builderBlock: false,
4270
- builderContext: false,
4271
- builderComponents: false,
4272
- builderLinkComponent: false
4273
- },
4274
4223
  name: "Form:Select",
4275
4224
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F83acca093fb24aaf94dee136e9a4b045",
4276
4225
  defaultStyles: {
@@ -4340,12 +4289,6 @@ const SelectComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
4340
4289
  }));
4341
4290
  }, "SelectComponent_component_SPKbsFLikZU"));
4342
4291
  const componentInfo$3 = {
4343
- shouldReceiveBuilderProps: {
4344
- builderBlock: false,
4345
- builderContext: false,
4346
- builderComponents: false,
4347
- builderLinkComponent: false
4348
- },
4349
4292
  name: "Form:SubmitButton",
4350
4293
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fdf2820ffed1f4349a94c40b3221f5b98",
4351
4294
  defaultStyles: {
@@ -4380,12 +4323,6 @@ const SubmitButton = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inli
4380
4323
  }, 0, "6z_0");
4381
4324
  }, "SubmitButton_component_NXvMBMCDhwc"));
4382
4325
  const componentInfo$2 = {
4383
- shouldReceiveBuilderProps: {
4384
- builderBlock: false,
4385
- builderContext: false,
4386
- builderComponents: false,
4387
- builderLinkComponent: false
4388
- },
4389
4326
  name: "Form:TextArea",
4390
4327
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Ff74a2f3de58c4c3e939204e5b6b8f6c3",
4391
4328
  inputs: [
@@ -4450,12 +4387,6 @@ const Textarea = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
4450
4387
  }, 0, "kE_0");
4451
4388
  }, "Textarea_component_o1TcxV139Oc"));
4452
4389
  const componentInfo$1 = {
4453
- shouldReceiveBuilderProps: {
4454
- builderBlock: false,
4455
- builderContext: false,
4456
- builderComponents: false,
4457
- builderLinkComponent: false
4458
- },
4459
4390
  // friendlyName?
4460
4391
  name: "Raw:Img",
4461
4392
  hideFromInsertMenu: true,
@@ -4619,10 +4550,7 @@ const componentInfo = {
4619
4550
  }
4620
4551
  ],
4621
4552
  shouldReceiveBuilderProps: {
4622
- builderBlock: true,
4623
- builderContext: false,
4624
- builderComponents: false,
4625
- builderLinkComponent: false
4553
+ builderBlock: true
4626
4554
  }
4627
4555
  };
4628
4556
  const Video = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
@@ -4870,7 +4798,10 @@ const InlinedScript = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
4870
4798
  ], "p0.scriptStr"),
4871
4799
  "data-id": qwik._fnSignal((p0) => p0.id, [
4872
4800
  props
4873
- ], "p0.id")
4801
+ ], "p0.id"),
4802
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
4803
+ props
4804
+ ], 'p0.nonce||""')
4874
4805
  }, null, 3, "WO_0");
4875
4806
  }, "InlinedScript_component_hwThBdhA8rw"));
4876
4807
  function getGlobalThis() {
@@ -5270,7 +5201,7 @@ function isFromTrustedHost(trustedHosts, e) {
5270
5201
  const url = new URL(e.origin), hostname = url.hostname;
5271
5202
  return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
5272
5203
  }
5273
- const SDK_VERSION = "0.15.2";
5204
+ const SDK_VERSION = "0.16.1";
5274
5205
  const registry = {};
5275
5206
  function register(type, info) {
5276
5207
  let typeList = registry[type];
@@ -5914,8 +5845,14 @@ ${getDefaultStyles(props.isNestedRender)}
5914
5845
  get styles() {
5915
5846
  return state.injectedStyles;
5916
5847
  },
5848
+ get nonce() {
5849
+ return props.nonce;
5850
+ },
5917
5851
  [qwik._IMMUTABLE]: {
5918
5852
  id: qwik._IMMUTABLE,
5853
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
5854
+ props
5855
+ ], "p0.nonce"),
5919
5856
  styles: qwik._fnSignal((p0) => p0.injectedStyles, [
5920
5857
  state
5921
5858
  ], "p0.injectedStyles")
@@ -5978,7 +5915,8 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
5978
5915
  }), {}),
5979
5916
  inheritedStyles: {},
5980
5917
  BlocksWrapper: props.blocksWrapper || "div",
5981
- BlocksWrapperProps: props.blocksWrapperProps || {}
5918
+ BlocksWrapperProps: props.blocksWrapperProps || {},
5919
+ nonce: props.nonce || ""
5982
5920
  },
5983
5921
  registeredComponents: [
5984
5922
  ...getDefaultRegisteredComponents(),
@@ -6003,6 +5941,9 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6003
5941
  registeredComponents: state.registeredComponents
6004
5942
  }));
6005
5943
  return /* @__PURE__ */ qwik._jsxC(EnableEditor, {
5944
+ get nonce() {
5945
+ return props.nonce;
5946
+ },
6006
5947
  get content() {
6007
5948
  return props.content;
6008
5949
  },
@@ -6048,14 +5989,23 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6048
5989
  get scriptStr() {
6049
5990
  return state.scriptStr;
6050
5991
  },
5992
+ get nonce() {
5993
+ return props.nonce || "";
5994
+ },
6051
5995
  [qwik._IMMUTABLE]: {
6052
5996
  id: qwik._IMMUTABLE,
5997
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
5998
+ props
5999
+ ], 'p0.nonce||""'),
6053
6000
  scriptStr: qwik._fnSignal((p0) => p0.scriptStr, [
6054
6001
  state
6055
6002
  ], "p0.scriptStr")
6056
6003
  }
6057
6004
  }, 3, "LQ_0") : null,
6058
6005
  /* @__PURE__ */ qwik._jsxC(ContentStyles, {
6006
+ get nonce() {
6007
+ return props.nonce || "";
6008
+ },
6059
6009
  get isNestedRender() {
6060
6010
  return props.isNestedRender;
6061
6011
  },
@@ -6092,7 +6042,10 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6092
6042
  ], "p0.builderContextSignal.content?.data?.customFonts"),
6093
6043
  isNestedRender: qwik._fnSignal((p0) => p0.isNestedRender, [
6094
6044
  props
6095
- ], "p0.isNestedRender")
6045
+ ], "p0.isNestedRender"),
6046
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6047
+ props
6048
+ ], 'p0.nonce||""')
6096
6049
  }
6097
6050
  }, 3, "LQ_1"),
6098
6051
  /* @__PURE__ */ qwik._jsxC(Blocks, {
@@ -6162,6 +6115,9 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6162
6115
  model: qwik._fnSignal((p0) => p0.model, [
6163
6116
  props
6164
6117
  ], "p0.model"),
6118
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
6119
+ props
6120
+ ], "p0.nonce"),
6165
6121
  showContent: qwik._fnSignal((p0) => p0.showContent, [
6166
6122
  props
6167
6123
  ], "p0.showContent"),
@@ -6218,8 +6174,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6218
6174
  get scriptStr() {
6219
6175
  return getInitVariantsFnsScriptString();
6220
6176
  },
6177
+ get nonce() {
6178
+ return props.nonce || "";
6179
+ },
6221
6180
  [qwik._IMMUTABLE]: {
6222
6181
  id: qwik._IMMUTABLE,
6182
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6183
+ props
6184
+ ], 'p0.nonce||""'),
6223
6185
  scriptStr: qwik._IMMUTABLE
6224
6186
  }
6225
6187
  }, 3, "XM_0") : null,
@@ -6230,8 +6192,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6230
6192
  get styles() {
6231
6193
  return hideVariantsStyleString.value;
6232
6194
  },
6195
+ get nonce() {
6196
+ return props.nonce || "";
6197
+ },
6233
6198
  [qwik._IMMUTABLE]: {
6234
6199
  id: qwik._IMMUTABLE,
6200
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6201
+ props
6202
+ ], 'p0.nonce||""'),
6235
6203
  styles: qwik._fnSignal((p0) => p0.value, [
6236
6204
  hideVariantsStyleString
6237
6205
  ], "p0.value")
@@ -6242,8 +6210,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6242
6210
  get scriptStr() {
6243
6211
  return updateCookieAndStylesScriptStr.value;
6244
6212
  },
6213
+ get nonce() {
6214
+ return props.nonce || "";
6215
+ },
6245
6216
  [qwik._IMMUTABLE]: {
6246
6217
  id: qwik._IMMUTABLE,
6218
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6219
+ props
6220
+ ], 'p0.nonce||""'),
6247
6221
  scriptStr: qwik._fnSignal((p0) => p0.value, [
6248
6222
  updateCookieAndStylesScriptStr
6249
6223
  ], "p0.value")
@@ -6254,6 +6228,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6254
6228
  get isNestedRender() {
6255
6229
  return props.isNestedRender;
6256
6230
  },
6231
+ get nonce() {
6232
+ return props.nonce;
6233
+ },
6257
6234
  content: variant,
6258
6235
  showContent: false,
6259
6236
  get model() {
@@ -6353,6 +6330,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6353
6330
  model: qwik._fnSignal((p0) => p0.model, [
6354
6331
  props
6355
6332
  ], "p0.model"),
6333
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
6334
+ props
6335
+ ], "p0.nonce"),
6356
6336
  showContent: qwik._IMMUTABLE,
6357
6337
  trustedHosts: qwik._fnSignal((p0) => p0.trustedHosts, [
6358
6338
  props
@@ -6363,6 +6343,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6363
6343
  ]
6364
6344
  }, 1, "XM_3") : null,
6365
6345
  /* @__PURE__ */ qwik._jsxC(ContentComponent, {
6346
+ get nonce() {
6347
+ return props.nonce;
6348
+ },
6366
6349
  get isNestedRender() {
6367
6350
  return props.isNestedRender;
6368
6351
  },
@@ -6470,6 +6453,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6470
6453
  model: qwik._fnSignal((p0) => p0.model, [
6471
6454
  props
6472
6455
  ], "p0.model"),
6456
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
6457
+ props
6458
+ ], "p0.nonce"),
6473
6459
  showContent: qwik._IMMUTABLE,
6474
6460
  trustedHosts: qwik._fnSignal((p0) => p0.trustedHosts, [
6475
6461
  props
@@ -6545,6 +6531,9 @@ const Symbol$1 = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
6545
6531
  return /* @__PURE__ */ qwik._jsxS("div", {
6546
6532
  ...props.attributes,
6547
6533
  children: /* @__PURE__ */ qwik._jsxC(ContentVariants, {
6534
+ get nonce() {
6535
+ return props.builderContext.nonce;
6536
+ },
6548
6537
  isNestedRender: true,
6549
6538
  get apiVersion() {
6550
6539
  return props.builderContext.apiVersion;
@@ -6640,7 +6629,10 @@ const Symbol$1 = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
6640
6629
  return (_a2 = p0.symbol) == null ? void 0 : _a2.model;
6641
6630
  }, [
6642
6631
  props
6643
- ], "p0.symbol?.model")
6632
+ ], "p0.symbol?.model"),
6633
+ nonce: qwik._fnSignal((p0) => p0.builderContext.nonce, [
6634
+ props
6635
+ ], "p0.builderContext.nonce")
6644
6636
  }
6645
6637
  }, 3, "Wt_0")
6646
6638
  }, {