@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.
@@ -771,56 +771,37 @@ const getRepeatItemData = ({ block, context }) => {
771
771
  }));
772
772
  return repeatArray;
773
773
  };
774
- const applyDefaults = (shouldReceiveBuilderProps) => {
775
- return {
776
- // once we bump to a major version, toggle this to `false`.
777
- builderBlock: true,
778
- // once we bump to a major version, toggle this to `false`.
779
- builderContext: true,
780
- builderComponents: false,
781
- builderLinkComponent: false,
782
- ...shouldReceiveBuilderProps
783
- };
784
- };
785
774
  const provideLinkComponent = (block, linkComponent) => {
786
- if (!block)
787
- return {};
788
- const shouldReceiveProp = applyDefaults(block.shouldReceiveBuilderProps).builderLinkComponent;
789
- if (!shouldReceiveProp)
790
- return {};
791
- return {
792
- builderLinkComponent: linkComponent
793
- };
775
+ var _a;
776
+ if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderLinkComponent)
777
+ return {
778
+ builderLinkComponent: linkComponent
779
+ };
780
+ return {};
794
781
  };
795
782
  const provideRegisteredComponents = (block, registeredComponents) => {
796
- if (!block)
797
- return {};
798
- const shouldReceiveProp = applyDefaults(block.shouldReceiveBuilderProps).builderComponents;
799
- if (!shouldReceiveProp)
800
- return {};
801
- return {
802
- builderComponents: registeredComponents
803
- };
783
+ var _a;
784
+ if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderComponents)
785
+ return {
786
+ builderComponents: registeredComponents
787
+ };
788
+ return {};
804
789
  };
805
790
  const provideBuilderBlock = (block, builderBlock) => {
806
- if (!block)
807
- return {};
808
- const shouldReceiveProp = applyDefaults(block.shouldReceiveBuilderProps).builderBlock;
809
- if (!shouldReceiveProp)
810
- return {};
811
- return {
812
- builderBlock
813
- };
791
+ var _a;
792
+ if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderBlock)
793
+ return {
794
+ builderBlock
795
+ };
796
+ return {};
814
797
  };
815
798
  const provideBuilderContext = (block, context) => {
816
- if (!block)
817
- return {};
818
- const shouldReceiveProp = applyDefaults(block.shouldReceiveBuilderProps).builderContext;
819
- if (!shouldReceiveProp)
820
- return {};
821
- return {
822
- builderContext: context
823
- };
799
+ var _a;
800
+ if ((_a = block == null ? void 0 : block.shouldReceiveBuilderProps) == null ? void 0 : _a.builderContext)
801
+ return {
802
+ builderContext: context
803
+ };
804
+ return {};
824
805
  };
825
806
  const SIZES = {
826
807
  small: {
@@ -872,7 +853,10 @@ const InlinedStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
872
853
  ], "p0.styles"),
873
854
  "data-id": qwik._fnSignal((p0) => p0.id, [
874
855
  props
875
- ], "p0.id")
856
+ ], "p0.id"),
857
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
858
+ props
859
+ ], "p0.nonce")
876
860
  }, null, 3, "NG_0");
877
861
  }, "InlinedStyles_component_IOsg46hMexk"));
878
862
  const BlockStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
@@ -957,8 +941,14 @@ const BlockStyles = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
957
941
  get styles() {
958
942
  return css.value;
959
943
  },
944
+ get nonce() {
945
+ return props.context.nonce;
946
+ },
960
947
  [qwik._IMMUTABLE]: {
961
948
  id: qwik._IMMUTABLE,
949
+ nonce: qwik._fnSignal((p0) => p0.context.nonce, [
950
+ props
951
+ ], "p0.context.nonce"),
962
952
  styles: qwik._fnSignal((p0) => p0.value, [
963
953
  css
964
954
  ], "p0.value")
@@ -1708,8 +1698,9 @@ const getWidth = function getWidth2(props, state, index) {
1708
1698
  return ((_a = state.cols[index]) == null ? void 0 : _a.width) || 100 / state.cols.length;
1709
1699
  };
1710
1700
  const getColumnCssWidth = function getColumnCssWidth2(props, state, index) {
1711
- const subtractWidth = state.gutterSize * (state.cols.length - 1) / state.cols.length;
1712
- return `calc(${getWidth(props, state, index)}% - ${subtractWidth}px)`;
1701
+ const width = getWidth(props, state, index);
1702
+ const subtractWidth = state.gutterSize * (state.cols.length - 1) * (width / 100);
1703
+ return `calc(${width}% - ${subtractWidth}px)`;
1713
1704
  };
1714
1705
  const getTabletStyle = function getTabletStyle2(props, state, { stackedStyle, desktopStyle }) {
1715
1706
  return state.stackAt === "tablet" ? stackedStyle : desktopStyle;
@@ -1818,8 +1809,14 @@ const Columns = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQr
1818
1809
  /* @__PURE__ */ qwik._jsxC(InlinedStyles, {
1819
1810
  id: "builderio-columns",
1820
1811
  styles: columnsStyles(props, state),
1812
+ get nonce() {
1813
+ return props.builderContext.nonce;
1814
+ },
1821
1815
  [qwik._IMMUTABLE]: {
1822
- id: qwik._IMMUTABLE
1816
+ id: qwik._IMMUTABLE,
1817
+ nonce: qwik._fnSignal((p0) => p0.builderContext.nonce, [
1818
+ props
1819
+ ], "p0.builderContext.nonce")
1823
1820
  }
1824
1821
  }, 3, "c0_0"),
1825
1822
  (props.columns || []).map((column, index) => {
@@ -2656,9 +2653,6 @@ const componentInfo$h = {
2656
2653
  static: true,
2657
2654
  noWrap: true,
2658
2655
  shouldReceiveBuilderProps: {
2659
- builderBlock: false,
2660
- builderContext: false,
2661
- builderComponents: false,
2662
2656
  builderLinkComponent: true
2663
2657
  }
2664
2658
  };
@@ -2911,12 +2905,6 @@ const componentInfo$g = {
2911
2905
  }
2912
2906
  };
2913
2907
  const componentInfo$f = {
2914
- shouldReceiveBuilderProps: {
2915
- builderBlock: false,
2916
- builderContext: false,
2917
- builderComponents: false,
2918
- builderLinkComponent: false
2919
- },
2920
2908
  name: "Fragment",
2921
2909
  static: true,
2922
2910
  hidden: true,
@@ -3078,19 +3066,10 @@ const componentInfo$e = {
3078
3066
  }
3079
3067
  ],
3080
3068
  shouldReceiveBuilderProps: {
3081
- builderBlock: true,
3082
- builderContext: false,
3083
- builderComponents: false,
3084
- builderLinkComponent: false
3069
+ builderBlock: true
3085
3070
  }
3086
3071
  };
3087
3072
  const componentInfo$d = {
3088
- shouldReceiveBuilderProps: {
3089
- builderBlock: false,
3090
- builderContext: false,
3091
- builderComponents: false,
3092
- builderLinkComponent: false
3093
- },
3094
3073
  name: "Core:Section",
3095
3074
  static: true,
3096
3075
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F682efef23ace49afac61748dd305c70a",
@@ -3151,10 +3130,7 @@ const componentInfo$c = {
3151
3130
  }
3152
3131
  ],
3153
3132
  shouldReceiveBuilderProps: {
3154
- builderBlock: false,
3155
- builderContext: true,
3156
- builderComponents: false,
3157
- builderLinkComponent: false
3133
+ builderContext: true
3158
3134
  }
3159
3135
  };
3160
3136
  const Slot = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
@@ -3528,10 +3504,7 @@ const Tabs = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((
3528
3504
  }, "Tabs_component_MhWcxXy0lMY"));
3529
3505
  const componentInfo$9 = {
3530
3506
  shouldReceiveBuilderProps: {
3531
- builderBlock: false,
3532
- builderContext: false,
3533
- builderComponents: false,
3534
- builderLinkComponent: false
3507
+ builderBlock: false
3535
3508
  },
3536
3509
  name: "Text",
3537
3510
  static: true,
@@ -3568,12 +3541,6 @@ const Text = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((
3568
3541
  }, null, 3, "yO_0");
3569
3542
  }, "Text_component_15p0cKUxgIE"));
3570
3543
  const componentInfo$8 = {
3571
- shouldReceiveBuilderProps: {
3572
- builderBlock: false,
3573
- builderContext: false,
3574
- builderComponents: false,
3575
- builderLinkComponent: false
3576
- },
3577
3544
  name: "Custom Code",
3578
3545
  static: true,
3579
3546
  requiredPermissions: [
@@ -3653,12 +3620,6 @@ const CustomCode = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inline
3653
3620
  }, null, 3, "bY_0");
3654
3621
  }, "CustomCode_component_uYOSy7w7Zqw"));
3655
3622
  const componentInfo$7 = {
3656
- shouldReceiveBuilderProps: {
3657
- builderBlock: false,
3658
- builderContext: false,
3659
- builderComponents: false,
3660
- builderLinkComponent: false
3661
- },
3662
3623
  name: "Embed",
3663
3624
  static: true,
3664
3625
  inputs: [
@@ -4321,12 +4282,6 @@ const STYLES = `
4321
4282
  }
4322
4283
  `;
4323
4284
  const componentInfo$5 = {
4324
- shouldReceiveBuilderProps: {
4325
- builderBlock: false,
4326
- builderContext: false,
4327
- builderComponents: false,
4328
- builderLinkComponent: false
4329
- },
4330
4285
  name: "Form:Input",
4331
4286
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fad6f37889d9e40bbbbc72cdb5875d6ca",
4332
4287
  inputs: [
@@ -4410,12 +4365,6 @@ const FormInputComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwi
4410
4365
  });
4411
4366
  }, "FormInputComponent_component_AUUjdN0ueMs"));
4412
4367
  const componentInfo$4 = {
4413
- shouldReceiveBuilderProps: {
4414
- builderBlock: false,
4415
- builderContext: false,
4416
- builderComponents: false,
4417
- builderLinkComponent: false
4418
- },
4419
4368
  name: "Form:Select",
4420
4369
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2F83acca093fb24aaf94dee136e9a4b045",
4421
4370
  defaultStyles: {
@@ -4485,12 +4434,6 @@ const SelectComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
4485
4434
  }));
4486
4435
  }, "SelectComponent_component_SPKbsFLikZU"));
4487
4436
  const componentInfo$3 = {
4488
- shouldReceiveBuilderProps: {
4489
- builderBlock: false,
4490
- builderContext: false,
4491
- builderComponents: false,
4492
- builderLinkComponent: false
4493
- },
4494
4437
  name: "Form:SubmitButton",
4495
4438
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Fdf2820ffed1f4349a94c40b3221f5b98",
4496
4439
  defaultStyles: {
@@ -4525,12 +4468,6 @@ const SubmitButton = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inli
4525
4468
  }, 0, "6z_0");
4526
4469
  }, "SubmitButton_component_NXvMBMCDhwc"));
4527
4470
  const componentInfo$2 = {
4528
- shouldReceiveBuilderProps: {
4529
- builderBlock: false,
4530
- builderContext: false,
4531
- builderComponents: false,
4532
- builderLinkComponent: false
4533
- },
4534
4471
  name: "Form:TextArea",
4535
4472
  image: "https://cdn.builder.io/api/v1/image/assets%2FIsxPKMo2gPRRKeakUztj1D6uqed2%2Ff74a2f3de58c4c3e939204e5b6b8f6c3",
4536
4473
  inputs: [
@@ -4595,12 +4532,6 @@ const Textarea = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
4595
4532
  }, 0, "kE_0");
4596
4533
  }, "Textarea_component_o1TcxV139Oc"));
4597
4534
  const componentInfo$1 = {
4598
- shouldReceiveBuilderProps: {
4599
- builderBlock: false,
4600
- builderContext: false,
4601
- builderComponents: false,
4602
- builderLinkComponent: false
4603
- },
4604
4535
  // friendlyName?
4605
4536
  name: "Raw:Img",
4606
4537
  hideFromInsertMenu: true,
@@ -4764,10 +4695,7 @@ const componentInfo = {
4764
4695
  }
4765
4696
  ],
4766
4697
  shouldReceiveBuilderProps: {
4767
- builderBlock: true,
4768
- builderContext: false,
4769
- builderComponents: false,
4770
- builderLinkComponent: false
4698
+ builderBlock: true
4771
4699
  }
4772
4700
  };
4773
4701
  const Video = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
@@ -5015,7 +4943,10 @@ const InlinedScript = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
5015
4943
  ], "p0.scriptStr"),
5016
4944
  "data-id": qwik._fnSignal((p0) => p0.id, [
5017
4945
  props
5018
- ], "p0.id")
4946
+ ], "p0.id"),
4947
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
4948
+ props
4949
+ ], 'p0.nonce||""')
5019
4950
  }, null, 3, "WO_0");
5020
4951
  }, "InlinedScript_component_hwThBdhA8rw"));
5021
4952
  function getGlobalThis() {
@@ -5415,7 +5346,7 @@ function isFromTrustedHost(trustedHosts, e) {
5415
5346
  const url = new URL(e.origin), hostname = url.hostname;
5416
5347
  return (trustedHosts || DEFAULT_TRUSTED_HOSTS).findIndex((trustedHost) => trustedHost.startsWith("*.") ? hostname.endsWith(trustedHost.slice(1)) : trustedHost === hostname) > -1;
5417
5348
  }
5418
- const SDK_VERSION = "0.15.2";
5349
+ const SDK_VERSION = "0.16.1";
5419
5350
  const registry = {};
5420
5351
  function register(type, info) {
5421
5352
  let typeList = registry[type];
@@ -6059,8 +5990,14 @@ ${getDefaultStyles(props.isNestedRender)}
6059
5990
  get styles() {
6060
5991
  return state.injectedStyles;
6061
5992
  },
5993
+ get nonce() {
5994
+ return props.nonce;
5995
+ },
6062
5996
  [qwik._IMMUTABLE]: {
6063
5997
  id: qwik._IMMUTABLE,
5998
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
5999
+ props
6000
+ ], "p0.nonce"),
6064
6001
  styles: qwik._fnSignal((p0) => p0.injectedStyles, [
6065
6002
  state
6066
6003
  ], "p0.injectedStyles")
@@ -6123,7 +6060,8 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6123
6060
  }), {}),
6124
6061
  inheritedStyles: {},
6125
6062
  BlocksWrapper: props.blocksWrapper || "div",
6126
- BlocksWrapperProps: props.blocksWrapperProps || {}
6063
+ BlocksWrapperProps: props.blocksWrapperProps || {},
6064
+ nonce: props.nonce || ""
6127
6065
  },
6128
6066
  registeredComponents: [
6129
6067
  ...getDefaultRegisteredComponents(),
@@ -6148,6 +6086,9 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6148
6086
  registeredComponents: state.registeredComponents
6149
6087
  }));
6150
6088
  return /* @__PURE__ */ qwik._jsxC(EnableEditor, {
6089
+ get nonce() {
6090
+ return props.nonce;
6091
+ },
6151
6092
  get content() {
6152
6093
  return props.content;
6153
6094
  },
@@ -6193,14 +6134,23 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6193
6134
  get scriptStr() {
6194
6135
  return state.scriptStr;
6195
6136
  },
6137
+ get nonce() {
6138
+ return props.nonce || "";
6139
+ },
6196
6140
  [qwik._IMMUTABLE]: {
6197
6141
  id: qwik._IMMUTABLE,
6142
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6143
+ props
6144
+ ], 'p0.nonce||""'),
6198
6145
  scriptStr: qwik._fnSignal((p0) => p0.scriptStr, [
6199
6146
  state
6200
6147
  ], "p0.scriptStr")
6201
6148
  }
6202
6149
  }, 3, "LQ_0") : null,
6203
6150
  /* @__PURE__ */ qwik._jsxC(ContentStyles, {
6151
+ get nonce() {
6152
+ return props.nonce || "";
6153
+ },
6204
6154
  get isNestedRender() {
6205
6155
  return props.isNestedRender;
6206
6156
  },
@@ -6237,7 +6187,10 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6237
6187
  ], "p0.builderContextSignal.content?.data?.customFonts"),
6238
6188
  isNestedRender: qwik._fnSignal((p0) => p0.isNestedRender, [
6239
6189
  props
6240
- ], "p0.isNestedRender")
6190
+ ], "p0.isNestedRender"),
6191
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6192
+ props
6193
+ ], 'p0.nonce||""')
6241
6194
  }
6242
6195
  }, 3, "LQ_1"),
6243
6196
  /* @__PURE__ */ qwik._jsxC(Blocks, {
@@ -6307,6 +6260,9 @@ const ContentComponent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.
6307
6260
  model: qwik._fnSignal((p0) => p0.model, [
6308
6261
  props
6309
6262
  ], "p0.model"),
6263
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
6264
+ props
6265
+ ], "p0.nonce"),
6310
6266
  showContent: qwik._fnSignal((p0) => p0.showContent, [
6311
6267
  props
6312
6268
  ], "p0.showContent"),
@@ -6363,8 +6319,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6363
6319
  get scriptStr() {
6364
6320
  return getInitVariantsFnsScriptString();
6365
6321
  },
6322
+ get nonce() {
6323
+ return props.nonce || "";
6324
+ },
6366
6325
  [qwik._IMMUTABLE]: {
6367
6326
  id: qwik._IMMUTABLE,
6327
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6328
+ props
6329
+ ], 'p0.nonce||""'),
6368
6330
  scriptStr: qwik._IMMUTABLE
6369
6331
  }
6370
6332
  }, 3, "XM_0") : null,
@@ -6375,8 +6337,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6375
6337
  get styles() {
6376
6338
  return hideVariantsStyleString.value;
6377
6339
  },
6340
+ get nonce() {
6341
+ return props.nonce || "";
6342
+ },
6378
6343
  [qwik._IMMUTABLE]: {
6379
6344
  id: qwik._IMMUTABLE,
6345
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6346
+ props
6347
+ ], 'p0.nonce||""'),
6380
6348
  styles: qwik._fnSignal((p0) => p0.value, [
6381
6349
  hideVariantsStyleString
6382
6350
  ], "p0.value")
@@ -6387,8 +6355,14 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6387
6355
  get scriptStr() {
6388
6356
  return updateCookieAndStylesScriptStr.value;
6389
6357
  },
6358
+ get nonce() {
6359
+ return props.nonce || "";
6360
+ },
6390
6361
  [qwik._IMMUTABLE]: {
6391
6362
  id: qwik._IMMUTABLE,
6363
+ nonce: qwik._fnSignal((p0) => p0.nonce || "", [
6364
+ props
6365
+ ], 'p0.nonce||""'),
6392
6366
  scriptStr: qwik._fnSignal((p0) => p0.value, [
6393
6367
  updateCookieAndStylesScriptStr
6394
6368
  ], "p0.value")
@@ -6399,6 +6373,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6399
6373
  get isNestedRender() {
6400
6374
  return props.isNestedRender;
6401
6375
  },
6376
+ get nonce() {
6377
+ return props.nonce;
6378
+ },
6402
6379
  content: variant,
6403
6380
  showContent: false,
6404
6381
  get model() {
@@ -6498,6 +6475,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6498
6475
  model: qwik._fnSignal((p0) => p0.model, [
6499
6476
  props
6500
6477
  ], "p0.model"),
6478
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
6479
+ props
6480
+ ], "p0.nonce"),
6501
6481
  showContent: qwik._IMMUTABLE,
6502
6482
  trustedHosts: qwik._fnSignal((p0) => p0.trustedHosts, [
6503
6483
  props
@@ -6508,6 +6488,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6508
6488
  ]
6509
6489
  }, 1, "XM_3") : null,
6510
6490
  /* @__PURE__ */ qwik._jsxC(ContentComponent, {
6491
+ get nonce() {
6492
+ return props.nonce;
6493
+ },
6511
6494
  get isNestedRender() {
6512
6495
  return props.isNestedRender;
6513
6496
  },
@@ -6615,6 +6598,9 @@ const ContentVariants = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
6615
6598
  model: qwik._fnSignal((p0) => p0.model, [
6616
6599
  props
6617
6600
  ], "p0.model"),
6601
+ nonce: qwik._fnSignal((p0) => p0.nonce, [
6602
+ props
6603
+ ], "p0.nonce"),
6618
6604
  showContent: qwik._IMMUTABLE,
6619
6605
  trustedHosts: qwik._fnSignal((p0) => p0.trustedHosts, [
6620
6606
  props
@@ -6690,6 +6676,9 @@ const Symbol$1 = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
6690
6676
  return /* @__PURE__ */ qwik._jsxS("div", {
6691
6677
  ...props.attributes,
6692
6678
  children: /* @__PURE__ */ qwik._jsxC(ContentVariants, {
6679
+ get nonce() {
6680
+ return props.builderContext.nonce;
6681
+ },
6693
6682
  isNestedRender: true,
6694
6683
  get apiVersion() {
6695
6684
  return props.builderContext.apiVersion;
@@ -6785,7 +6774,10 @@ const Symbol$1 = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQ
6785
6774
  return (_a2 = p0.symbol) == null ? void 0 : _a2.model;
6786
6775
  }, [
6787
6776
  props
6788
- ], "p0.symbol?.model")
6777
+ ], "p0.symbol?.model"),
6778
+ nonce: qwik._fnSignal((p0) => p0.builderContext.nonce, [
6779
+ props
6780
+ ], "p0.builderContext.nonce")
6789
6781
  }
6790
6782
  }, 3, "Wt_0")
6791
6783
  }, {