@descope/web-components-ui 1.0.160 → 1.0.162

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/dist/index.esm.js CHANGED
@@ -3127,18 +3127,17 @@ const ComboBoxMixin = (superclass) =>
3127
3127
  // so we override it to open inside the shadow DOM
3128
3128
  #overrideOverlaySettings() {
3129
3129
  const overlay = this.baseElement.shadowRoot.querySelector('vaadin-combo-box-overlay');
3130
-
3131
3130
  overlay._attachOverlay = () => {
3132
- this.bringToFront();
3131
+ overlay.bringToFront();
3133
3132
  };
3134
- overlay._detachOverlay = () => {};
3135
- overlay._enterModalState = () => {};
3133
+ overlay._detachOverlay = () => { };
3134
+ overlay._enterModalState = () => { };
3136
3135
  }
3137
3136
 
3138
3137
  init() {
3139
3138
  super.init?.();
3140
3139
 
3141
- this.#overrideOverlaySettings.bind(this);
3140
+ this.#overrideOverlaySettings();
3142
3141
  observeChildren(this, this.#onChildrenChange.bind(this));
3143
3142
  }
3144
3143
  };
@@ -5935,7 +5934,7 @@ const globals = {
5935
5934
  const vars$o = getThemeVars(globals);
5936
5935
 
5937
5936
  const globalRefs$b = getThemeRefs(globals);
5938
- const compVars$2 = ButtonClass.cssVarList;
5937
+ const compVars$3 = ButtonClass.cssVarList;
5939
5938
 
5940
5939
  const mode = {
5941
5940
  primary: globalRefs$b.colors.primary,
@@ -5945,7 +5944,7 @@ const mode = {
5945
5944
  surface: globalRefs$b.colors.surface,
5946
5945
  };
5947
5946
 
5948
- const [helperTheme$3, helperRefs$3, helperVars$2] = createHelperVars({ mode }, componentName$r);
5947
+ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars({ mode }, componentName$r);
5949
5948
 
5950
5949
  const verticalPaddingRatio = 3;
5951
5950
  const horizontalPaddingRatio = 2;
@@ -5953,88 +5952,88 @@ const horizontalPaddingRatio = 2;
5953
5952
  const button = {
5954
5953
  ...helperTheme$3,
5955
5954
 
5956
- [compVars$2.fontFamily]: globalRefs$b.fonts.font1.family,
5955
+ [compVars$3.fontFamily]: globalRefs$b.fonts.font1.family,
5957
5956
 
5958
- [compVars$2.cursor]: 'pointer',
5959
- [compVars$2.hostHeight]: '3em',
5957
+ [compVars$3.cursor]: 'pointer',
5958
+ [compVars$3.hostHeight]: '3em',
5960
5959
 
5961
- [compVars$2.borderRadius]: globalRefs$b.radius.sm,
5962
- [compVars$2.borderWidth]: globalRefs$b.border.xs,
5963
- [compVars$2.borderStyle]: 'solid',
5964
- [compVars$2.borderColor]: 'transparent',
5960
+ [compVars$3.borderRadius]: globalRefs$b.radius.sm,
5961
+ [compVars$3.borderWidth]: globalRefs$b.border.xs,
5962
+ [compVars$3.borderStyle]: 'solid',
5963
+ [compVars$3.borderColor]: 'transparent',
5965
5964
 
5966
- [compVars$2.labelSpacing]: '0.25em',
5965
+ [compVars$3.labelSpacing]: '0.25em',
5967
5966
 
5968
- [compVars$2.verticalPadding]: `calc(var(${compVars$2.fontSize}) / ${verticalPaddingRatio})`,
5969
- [compVars$2.horizontalPadding]: `calc(var(${compVars$2.fontSize}) / ${horizontalPaddingRatio})`,
5967
+ [compVars$3.verticalPadding]: `calc(var(${compVars$3.fontSize}) / ${verticalPaddingRatio})`,
5968
+ [compVars$3.horizontalPadding]: `calc(var(${compVars$3.fontSize}) / ${horizontalPaddingRatio})`,
5970
5969
 
5971
- [compVars$2.outlineWidth]: globals.border.sm,
5972
- [compVars$2.outlineOffset]: '0px', // keep `px` unit for external calc
5973
- [compVars$2.outlineStyle]: 'solid',
5974
- [compVars$2.outlineColor]: 'transparent',
5970
+ [compVars$3.outlineWidth]: globals.border.sm,
5971
+ [compVars$3.outlineOffset]: '0px', // keep `px` unit for external calc
5972
+ [compVars$3.outlineStyle]: 'solid',
5973
+ [compVars$3.outlineColor]: 'transparent',
5975
5974
 
5976
5975
  size: {
5977
- xs: { [compVars$2.fontSize]: '12px' },
5978
- sm: { [compVars$2.fontSize]: '14px' },
5979
- md: { [compVars$2.fontSize]: '16px' },
5980
- lg: { [compVars$2.fontSize]: '18px' },
5976
+ xs: { [compVars$3.fontSize]: '12px' },
5977
+ sm: { [compVars$3.fontSize]: '14px' },
5978
+ md: { [compVars$3.fontSize]: '16px' },
5979
+ lg: { [compVars$3.fontSize]: '18px' },
5981
5980
  },
5982
5981
 
5983
5982
  _fullWidth: {
5984
- [compVars$2.hostWidth]: '100%',
5983
+ [compVars$3.hostWidth]: '100%',
5985
5984
  },
5986
5985
 
5987
5986
  _loading: {
5988
- [compVars$2.cursor]: 'wait',
5989
- [compVars$2.labelTextColor]: helperRefs$3.main,
5987
+ [compVars$3.cursor]: 'wait',
5988
+ [compVars$3.labelTextColor]: helperRefs$3.main,
5990
5989
  },
5991
5990
 
5992
5991
  variant: {
5993
5992
  contained: {
5994
- [compVars$2.labelTextColor]: helperRefs$3.contrast,
5995
- [compVars$2.backgroundColor]: helperRefs$3.main,
5993
+ [compVars$3.labelTextColor]: helperRefs$3.contrast,
5994
+ [compVars$3.backgroundColor]: helperRefs$3.main,
5996
5995
  _hover: {
5997
- [compVars$2.backgroundColor]: helperRefs$3.dark,
5996
+ [compVars$3.backgroundColor]: helperRefs$3.dark,
5998
5997
  _loading: {
5999
- [compVars$2.backgroundColor]: helperRefs$3.main,
5998
+ [compVars$3.backgroundColor]: helperRefs$3.main,
6000
5999
  },
6001
6000
  },
6002
6001
  _active: {
6003
- [compVars$2.backgroundColor]: helperRefs$3.main,
6002
+ [compVars$3.backgroundColor]: helperRefs$3.main,
6004
6003
  },
6005
6004
  },
6006
6005
 
6007
6006
  outline: {
6008
- [compVars$2.labelTextColor]: helperRefs$3.main,
6009
- [compVars$2.borderColor]: 'currentColor',
6007
+ [compVars$3.labelTextColor]: helperRefs$3.main,
6008
+ [compVars$3.borderColor]: 'currentColor',
6010
6009
  _hover: {
6011
- [compVars$2.labelTextColor]: helperRefs$3.dark,
6010
+ [compVars$3.labelTextColor]: helperRefs$3.dark,
6012
6011
  },
6013
6012
  _active: {
6014
- [compVars$2.labelTextColor]: helperRefs$3.main,
6013
+ [compVars$3.labelTextColor]: helperRefs$3.main,
6015
6014
  },
6016
6015
  },
6017
6016
 
6018
6017
  link: {
6019
- [compVars$2.labelTextColor]: helperRefs$3.main,
6018
+ [compVars$3.labelTextColor]: helperRefs$3.main,
6020
6019
  _hover: {
6021
- [compVars$2.labelTextColor]: helperRefs$3.dark,
6022
- [compVars$2.labelTextDecoration]: 'underline',
6020
+ [compVars$3.labelTextColor]: helperRefs$3.dark,
6021
+ [compVars$3.labelTextDecoration]: 'underline',
6023
6022
  },
6024
6023
  _active: {
6025
- [compVars$2.labelTextColor]: helperRefs$3.dark,
6024
+ [compVars$3.labelTextColor]: helperRefs$3.dark,
6026
6025
  },
6027
6026
  },
6028
6027
  },
6029
6028
 
6030
6029
  _focused: {
6031
- [compVars$2.outlineColor]: globalRefs$b.colors.surface.main,
6030
+ [compVars$3.outlineColor]: globalRefs$b.colors.surface.main,
6032
6031
  },
6033
6032
  };
6034
6033
 
6035
6034
  const vars$n = {
6036
- ...compVars$2,
6037
- ...helperVars$2,
6035
+ ...compVars$3,
6036
+ ...helperVars$3,
6038
6037
  };
6039
6038
 
6040
6039
  var button$1 = /*#__PURE__*/Object.freeze({
@@ -6395,7 +6394,7 @@ var switchToggle$1 = /*#__PURE__*/Object.freeze({
6395
6394
 
6396
6395
  const globalRefs$6 = getThemeRefs(globals);
6397
6396
 
6398
- const compVars$1 = ContainerClass.cssVarList;
6397
+ const compVars$2 = ContainerClass.cssVarList;
6399
6398
 
6400
6399
  const verticalAlignment = {
6401
6400
  start: { verticalAlignment: 'start' },
@@ -6409,7 +6408,7 @@ const horizontalAlignment = {
6409
6408
  end: { horizontalAlignment: 'end' },
6410
6409
  };
6411
6410
 
6412
- const [helperTheme$2, helperRefs$2, helperVars$1] = createHelperVars(
6411
+ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
6413
6412
  {
6414
6413
  verticalAlignment,
6415
6414
  horizontalAlignment,
@@ -6423,85 +6422,85 @@ const { shadowColor } = helperRefs$2;
6423
6422
  const container = {
6424
6423
  ...helperTheme$2,
6425
6424
 
6426
- [compVars$1.hostWidth]: '100%',
6427
- [compVars$1.boxShadow]: 'none',
6428
- [compVars$1.backgroundColor]: globalRefs$6.colors.surface.light,
6429
- [compVars$1.color]: globalRefs$6.colors.surface.contrast,
6425
+ [compVars$2.hostWidth]: '100%',
6426
+ [compVars$2.boxShadow]: 'none',
6427
+ [compVars$2.backgroundColor]: globalRefs$6.colors.surface.light,
6428
+ [compVars$2.color]: globalRefs$6.colors.surface.contrast,
6430
6429
 
6431
6430
  verticalPadding: {
6432
- sm: { [compVars$1.verticalPadding]: '5px' },
6433
- md: { [compVars$1.verticalPadding]: '10px' },
6434
- lg: { [compVars$1.verticalPadding]: '20px' },
6431
+ sm: { [compVars$2.verticalPadding]: '5px' },
6432
+ md: { [compVars$2.verticalPadding]: '10px' },
6433
+ lg: { [compVars$2.verticalPadding]: '20px' },
6435
6434
  },
6436
6435
 
6437
6436
  horizontalPadding: {
6438
- sm: { [compVars$1.horizontalPadding]: '5px' },
6439
- md: { [compVars$1.horizontalPadding]: '10px' },
6440
- lg: { [compVars$1.horizontalPadding]: '20px' },
6437
+ sm: { [compVars$2.horizontalPadding]: '5px' },
6438
+ md: { [compVars$2.horizontalPadding]: '10px' },
6439
+ lg: { [compVars$2.horizontalPadding]: '20px' },
6441
6440
  },
6442
6441
 
6443
6442
  direction: {
6444
6443
  row: {
6445
- [compVars$1.flexDirection]: 'row',
6446
- [compVars$1.alignItems]: helperRefs$2.verticalAlignment,
6447
- [compVars$1.justifyContent]: helperRefs$2.horizontalAlignment,
6448
- [compVars$1.flexWrap]: 'wrap',
6444
+ [compVars$2.flexDirection]: 'row',
6445
+ [compVars$2.alignItems]: helperRefs$2.verticalAlignment,
6446
+ [compVars$2.justifyContent]: helperRefs$2.horizontalAlignment,
6447
+ [compVars$2.flexWrap]: 'wrap',
6449
6448
  horizontalAlignment: {
6450
6449
  spaceBetween: {
6451
- [helperVars$1.horizontalAlignment]: 'space-between',
6450
+ [helperVars$2.horizontalAlignment]: 'space-between',
6452
6451
  },
6453
6452
  },
6454
6453
  },
6455
6454
  column: {
6456
- [compVars$1.flexDirection]: 'column',
6457
- [compVars$1.alignItems]: helperRefs$2.horizontalAlignment,
6458
- [compVars$1.justifyContent]: helperRefs$2.verticalAlignment,
6455
+ [compVars$2.flexDirection]: 'column',
6456
+ [compVars$2.alignItems]: helperRefs$2.horizontalAlignment,
6457
+ [compVars$2.justifyContent]: helperRefs$2.verticalAlignment,
6459
6458
  verticalAlignment: {
6460
6459
  spaceBetween: {
6461
- [helperVars$1.verticalAlignment]: 'space-between',
6460
+ [helperVars$2.verticalAlignment]: 'space-between',
6462
6461
  },
6463
6462
  },
6464
6463
  },
6465
6464
  },
6466
6465
 
6467
6466
  spaceBetween: {
6468
- sm: { [compVars$1.gap]: '10px' },
6469
- md: { [compVars$1.gap]: '20px' },
6470
- lg: { [compVars$1.gap]: '30px' },
6467
+ sm: { [compVars$2.gap]: '10px' },
6468
+ md: { [compVars$2.gap]: '20px' },
6469
+ lg: { [compVars$2.gap]: '30px' },
6471
6470
  },
6472
6471
 
6473
6472
  shadow: {
6474
6473
  sm: {
6475
- [compVars$1.boxShadow]: `${globalRefs$6.shadow.wide.sm} ${shadowColor}, ${globalRefs$6.shadow.narrow.sm} ${shadowColor}`,
6474
+ [compVars$2.boxShadow]: `${globalRefs$6.shadow.wide.sm} ${shadowColor}, ${globalRefs$6.shadow.narrow.sm} ${shadowColor}`,
6476
6475
  },
6477
6476
  md: {
6478
- [compVars$1.boxShadow]: `${globalRefs$6.shadow.wide.md} ${shadowColor}, ${globalRefs$6.shadow.narrow.md} ${shadowColor}`,
6477
+ [compVars$2.boxShadow]: `${globalRefs$6.shadow.wide.md} ${shadowColor}, ${globalRefs$6.shadow.narrow.md} ${shadowColor}`,
6479
6478
  },
6480
6479
  lg: {
6481
- [compVars$1.boxShadow]: `${globalRefs$6.shadow.wide.lg} ${shadowColor}, ${globalRefs$6.shadow.narrow.lg} ${shadowColor}`,
6480
+ [compVars$2.boxShadow]: `${globalRefs$6.shadow.wide.lg} ${shadowColor}, ${globalRefs$6.shadow.narrow.lg} ${shadowColor}`,
6482
6481
  },
6483
6482
  xl: {
6484
- [compVars$1.boxShadow]: `${globalRefs$6.shadow.wide.xl} ${shadowColor}, ${globalRefs$6.shadow.narrow.xl} ${shadowColor}`,
6483
+ [compVars$2.boxShadow]: `${globalRefs$6.shadow.wide.xl} ${shadowColor}, ${globalRefs$6.shadow.narrow.xl} ${shadowColor}`,
6485
6484
  },
6486
6485
  '2xl': {
6487
- [helperVars$1.shadowColor]: '#00000050', // mimic daisyUI shadow settings
6488
- [compVars$1.boxShadow]: `${globalRefs$6.shadow.wide['2xl']} ${shadowColor}`,
6486
+ [helperVars$2.shadowColor]: '#00000050', // mimic daisyUI shadow settings
6487
+ [compVars$2.boxShadow]: `${globalRefs$6.shadow.wide['2xl']} ${shadowColor}`,
6489
6488
  },
6490
6489
  },
6491
6490
 
6492
6491
  borderRadius: {
6493
- sm: { [compVars$1.borderRadius]: globalRefs$6.radius.sm },
6494
- md: { [compVars$1.borderRadius]: globalRefs$6.radius.md },
6495
- lg: { [compVars$1.borderRadius]: globalRefs$6.radius.lg },
6496
- xl: { [compVars$1.borderRadius]: globalRefs$6.radius.xl },
6497
- '2xl': { [compVars$1.borderRadius]: globalRefs$6.radius['2xl'] },
6498
- '3xl': { [compVars$1.borderRadius]: globalRefs$6.radius['3xl'] },
6492
+ sm: { [compVars$2.borderRadius]: globalRefs$6.radius.sm },
6493
+ md: { [compVars$2.borderRadius]: globalRefs$6.radius.md },
6494
+ lg: { [compVars$2.borderRadius]: globalRefs$6.radius.lg },
6495
+ xl: { [compVars$2.borderRadius]: globalRefs$6.radius.xl },
6496
+ '2xl': { [compVars$2.borderRadius]: globalRefs$6.radius['2xl'] },
6497
+ '3xl': { [compVars$2.borderRadius]: globalRefs$6.radius['3xl'] },
6499
6498
  },
6500
6499
  };
6501
6500
 
6502
6501
  const vars$e = {
6503
- ...compVars$1,
6504
- ...helperVars$1,
6502
+ ...compVars$2,
6503
+ ...helperVars$2,
6505
6504
  };
6506
6505
 
6507
6506
  var container$1 = /*#__PURE__*/Object.freeze({
@@ -6664,9 +6663,9 @@ var link$1 = /*#__PURE__*/Object.freeze({
6664
6663
  });
6665
6664
 
6666
6665
  const globalRefs$3 = getThemeRefs(globals);
6667
- const compVars = DividerClass.cssVarList;
6666
+ const compVars$1 = DividerClass.cssVarList;
6668
6667
 
6669
- const [helperTheme$1, helperRefs$1, helperVars] = createHelperVars(
6668
+ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
6670
6669
  {
6671
6670
  thickness: '2px',
6672
6671
  spacing: '10px',
@@ -6677,32 +6676,32 @@ const [helperTheme$1, helperRefs$1, helperVars] = createHelperVars(
6677
6676
  const divider = {
6678
6677
  ...helperTheme$1,
6679
6678
 
6680
- [compVars.alignItems]: 'center',
6681
- [compVars.flexDirection]: 'row',
6682
- [compVars.alignSelf]: 'stretch',
6683
- [compVars.hostWidth]: '100%',
6684
- [compVars.stripeColor]: globalRefs$3.colors.surface.main,
6685
- [compVars.stripeColorOpacity]: '0.5',
6686
- [compVars.stripeHorizontalThickness]: helperRefs$1.thickness,
6687
- [compVars.labelTextWidth]: 'fit-content',
6688
- [compVars.labelTextMaxWidth]: 'calc(100% - 100px)',
6689
- [compVars.labelTextHorizontalSpacing]: helperRefs$1.spacing,
6679
+ [compVars$1.alignItems]: 'center',
6680
+ [compVars$1.flexDirection]: 'row',
6681
+ [compVars$1.alignSelf]: 'stretch',
6682
+ [compVars$1.hostWidth]: '100%',
6683
+ [compVars$1.stripeColor]: globalRefs$3.colors.surface.main,
6684
+ [compVars$1.stripeColorOpacity]: '0.5',
6685
+ [compVars$1.stripeHorizontalThickness]: helperRefs$1.thickness,
6686
+ [compVars$1.labelTextWidth]: 'fit-content',
6687
+ [compVars$1.labelTextMaxWidth]: 'calc(100% - 100px)',
6688
+ [compVars$1.labelTextHorizontalSpacing]: helperRefs$1.spacing,
6690
6689
 
6691
6690
  _vertical: {
6692
- [compVars.minHeight]: '200px',
6693
- [compVars.flexDirection]: 'column',
6694
- [compVars.hostWidth]: 'fit-content',
6695
- [compVars.hostPadding]: `0 calc(${helperRefs$1.thickness} * 3)`,
6696
- [compVars.stripeVerticalThickness]: helperRefs$1.thickness,
6697
- [compVars.labelTextWidth]: 'fit-content',
6698
- [compVars.labelTextMaxWidth]: '100%',
6699
- [compVars.labelTextVerticalSpacing]: helperRefs$1.spacing,
6691
+ [compVars$1.minHeight]: '200px',
6692
+ [compVars$1.flexDirection]: 'column',
6693
+ [compVars$1.hostWidth]: 'fit-content',
6694
+ [compVars$1.hostPadding]: `0 calc(${helperRefs$1.thickness} * 3)`,
6695
+ [compVars$1.stripeVerticalThickness]: helperRefs$1.thickness,
6696
+ [compVars$1.labelTextWidth]: 'fit-content',
6697
+ [compVars$1.labelTextMaxWidth]: '100%',
6698
+ [compVars$1.labelTextVerticalSpacing]: helperRefs$1.spacing,
6700
6699
  },
6701
6700
  };
6702
6701
 
6703
6702
  const vars$9 = {
6704
- ...compVars,
6705
- ...helperVars,
6703
+ ...compVars$1,
6704
+ ...helperVars$1,
6706
6705
  };
6707
6706
 
6708
6707
  var divider$1 = /*#__PURE__*/Object.freeze({
@@ -6786,9 +6785,9 @@ var loaderLinear$1 = /*#__PURE__*/Object.freeze({
6786
6785
  });
6787
6786
 
6788
6787
  const globalRefs$1 = getThemeRefs(globals);
6789
- const vars$6 = LoaderRadialClass.cssVarList;
6788
+ const compVars = LoaderRadialClass.cssVarList;
6790
6789
 
6791
- const [helperTheme, helperRefs] = createHelperVars(
6790
+ const [helperTheme, helperRefs, helperVars] = createHelperVars(
6792
6791
  {
6793
6792
  spinnerColor: globalRefs$1.colors.surface.contrast,
6794
6793
  mode: {
@@ -6806,29 +6805,33 @@ const [helperTheme, helperRefs] = createHelperVars(
6806
6805
  const loaderRadial = {
6807
6806
  ...helperTheme,
6808
6807
 
6809
- [vars$6.animationDuration]: '2s',
6810
- [vars$6.animationTimingFunction]: 'linear',
6811
- [vars$6.animationIterationCount]: 'infinite',
6812
- [vars$6.spinnerBorderStyle]: 'solid',
6813
- [vars$6.spinnerBorderWidth]: '0.2em',
6814
- [vars$6.spinnerBorderRadius]: '50%',
6815
- [vars$6.spinnerQuadrant1Color]: helperRefs.spinnerColor,
6816
- [vars$6.spinnerQuadrant2Color]: 'transparent',
6817
- [vars$6.spinnerQuadrant3Color]: helperRefs.spinnerColor,
6818
- [vars$6.spinnerQuadrant4Color]: 'transparent',
6808
+ [compVars.animationDuration]: '2s',
6809
+ [compVars.animationTimingFunction]: 'linear',
6810
+ [compVars.animationIterationCount]: 'infinite',
6811
+ [compVars.spinnerBorderStyle]: 'solid',
6812
+ [compVars.spinnerBorderWidth]: '0.2em',
6813
+ [compVars.spinnerBorderRadius]: '50%',
6814
+ [compVars.spinnerQuadrant1Color]: helperRefs.spinnerColor,
6815
+ [compVars.spinnerQuadrant2Color]: 'transparent',
6816
+ [compVars.spinnerQuadrant3Color]: helperRefs.spinnerColor,
6817
+ [compVars.spinnerQuadrant4Color]: 'transparent',
6819
6818
 
6820
6819
  size: {
6821
- xs: { [vars$6.spinnerSize]: '20px' },
6822
- sm: { [vars$6.spinnerSize]: '30px' },
6823
- md: { [vars$6.spinnerSize]: '40px' },
6824
- lg: { [vars$6.spinnerSize]: '60px' },
6825
- xl: { [vars$6.spinnerSize]: '80px' },
6820
+ xs: { [compVars.spinnerSize]: '20px' },
6821
+ sm: { [compVars.spinnerSize]: '30px' },
6822
+ md: { [compVars.spinnerSize]: '40px' },
6823
+ lg: { [compVars.spinnerSize]: '60px' },
6824
+ xl: { [compVars.spinnerSize]: '80px' },
6826
6825
  },
6827
6826
 
6828
6827
  _hidden: {
6829
- [vars$6.hostDisplay]: 'none',
6828
+ [compVars.hostDisplay]: 'none',
6830
6829
  },
6831
6830
  };
6831
+ const vars$6 = {
6832
+ ...compVars,
6833
+ ...helperVars,
6834
+ };
6832
6835
 
6833
6836
  var loaderRadial$1 = /*#__PURE__*/Object.freeze({
6834
6837
  __proto__: null,