@descope/web-components-ui 1.0.392 → 1.0.394

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
@@ -1749,9 +1749,9 @@ const createIcon = async (src) => {
1749
1749
 
1750
1750
  /* eslint-disable no-use-before-define */
1751
1751
 
1752
- const componentName$12 = getComponentName('icon');
1752
+ const componentName$13 = getComponentName('icon');
1753
1753
 
1754
- class RawIcon extends createBaseClass({ componentName: componentName$12, baseSelector: 'slot' }) {
1754
+ class RawIcon extends createBaseClass({ componentName: componentName$13, baseSelector: 'slot' }) {
1755
1755
  static get observedAttributes() {
1756
1756
  return ['src'];
1757
1757
  }
@@ -1836,7 +1836,7 @@ const clickableMixin = (superclass) =>
1836
1836
  }
1837
1837
  };
1838
1838
 
1839
- const componentName$11 = getComponentName('button');
1839
+ const componentName$12 = getComponentName('button');
1840
1840
 
1841
1841
  const resetStyles = `
1842
1842
  :host {
@@ -1952,7 +1952,7 @@ const ButtonClass = compose(
1952
1952
  }
1953
1953
  `,
1954
1954
  excludeAttrsSync: ['tabindex'],
1955
- componentName: componentName$11,
1955
+ componentName: componentName$12,
1956
1956
  })
1957
1957
  );
1958
1958
 
@@ -1989,7 +1989,7 @@ loadingIndicatorStyles = `
1989
1989
  }
1990
1990
  `;
1991
1991
 
1992
- customElements.define(componentName$11, ButtonClass);
1992
+ customElements.define(componentName$12, ButtonClass);
1993
1993
 
1994
1994
  const createBaseInputClass = (...args) =>
1995
1995
  compose(
@@ -1999,11 +1999,11 @@ const createBaseInputClass = (...args) =>
1999
1999
  inputEventsDispatchingMixin
2000
2000
  )(createBaseClass(...args));
2001
2001
 
2002
- const componentName$10 = getComponentName('boolean-field-internal');
2002
+ const componentName$11 = getComponentName('boolean-field-internal');
2003
2003
 
2004
2004
  const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
2005
2005
 
2006
- const BaseInputClass$a = createBaseInputClass({ componentName: componentName$10, baseSelector: 'div' });
2006
+ const BaseInputClass$a = createBaseInputClass({ componentName: componentName$11, baseSelector: 'div' });
2007
2007
 
2008
2008
  class BooleanInputInternal extends BaseInputClass$a {
2009
2009
  static get observedAttributes() {
@@ -2079,14 +2079,14 @@ const booleanFieldMixin = (superclass) =>
2079
2079
 
2080
2080
  const template = document.createElement('template');
2081
2081
  template.innerHTML = `
2082
- <${componentName$10}
2082
+ <${componentName$11}
2083
2083
  tabindex="-1"
2084
2084
  slot="input"
2085
- ></${componentName$10}>
2085
+ ></${componentName$11}>
2086
2086
  `;
2087
2087
 
2088
2088
  this.baseElement.appendChild(template.content.cloneNode(true));
2089
- this.inputElement = this.shadowRoot.querySelector(componentName$10);
2089
+ this.inputElement = this.shadowRoot.querySelector(componentName$11);
2090
2090
  this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
2091
2091
 
2092
2092
  forwardAttrs(this, this.inputElement, {
@@ -2300,7 +2300,7 @@ descope-boolean-field-internal {
2300
2300
  }
2301
2301
  `;
2302
2302
 
2303
- const componentName$$ = getComponentName('checkbox');
2303
+ const componentName$10 = getComponentName('checkbox');
2304
2304
 
2305
2305
  const {
2306
2306
  host: host$n,
@@ -2412,15 +2412,15 @@ const CheckboxClass = compose(
2412
2412
  }
2413
2413
  `,
2414
2414
  excludeAttrsSync: ['label', 'tabindex'],
2415
- componentName: componentName$$,
2415
+ componentName: componentName$10,
2416
2416
  })
2417
2417
  );
2418
2418
 
2419
- customElements.define(componentName$10, BooleanInputInternal);
2419
+ customElements.define(componentName$11, BooleanInputInternal);
2420
2420
 
2421
- customElements.define(componentName$$, CheckboxClass);
2421
+ customElements.define(componentName$10, CheckboxClass);
2422
2422
 
2423
- const componentName$_ = getComponentName('switch-toggle');
2423
+ const componentName$$ = getComponentName('switch-toggle');
2424
2424
 
2425
2425
  const {
2426
2426
  host: host$m,
@@ -2552,17 +2552,17 @@ const SwitchToggleClass = compose(
2552
2552
  }
2553
2553
  `,
2554
2554
  excludeAttrsSync: ['label', 'tabindex'],
2555
- componentName: componentName$_,
2555
+ componentName: componentName$$,
2556
2556
  })
2557
2557
  );
2558
2558
 
2559
- customElements.define(componentName$_, SwitchToggleClass);
2559
+ customElements.define(componentName$$, SwitchToggleClass);
2560
2560
 
2561
- const componentName$Z = getComponentName('loader-linear');
2561
+ const componentName$_ = getComponentName('loader-linear');
2562
2562
 
2563
- class RawLoaderLinear extends createBaseClass({ componentName: componentName$Z, baseSelector: ':host > div' }) {
2563
+ class RawLoaderLinear extends createBaseClass({ componentName: componentName$_, baseSelector: ':host > div' }) {
2564
2564
  static get componentName() {
2565
- return componentName$Z;
2565
+ return componentName$_;
2566
2566
  }
2567
2567
 
2568
2568
  constructor() {
@@ -2623,11 +2623,11 @@ const LoaderLinearClass = compose(
2623
2623
  componentNameValidationMixin
2624
2624
  )(RawLoaderLinear);
2625
2625
 
2626
- customElements.define(componentName$Z, LoaderLinearClass);
2626
+ customElements.define(componentName$_, LoaderLinearClass);
2627
2627
 
2628
- const componentName$Y = getComponentName('loader-radial');
2628
+ const componentName$Z = getComponentName('loader-radial');
2629
2629
 
2630
- class RawLoaderRadial extends createBaseClass({ componentName: componentName$Y, baseSelector: ':host > div' }) {
2630
+ class RawLoaderRadial extends createBaseClass({ componentName: componentName$Z, baseSelector: ':host > div' }) {
2631
2631
  constructor() {
2632
2632
  super();
2633
2633
 
@@ -2671,11 +2671,11 @@ const LoaderRadialClass = compose(
2671
2671
  componentNameValidationMixin
2672
2672
  )(RawLoaderRadial);
2673
2673
 
2674
- customElements.define(componentName$Y, LoaderRadialClass);
2674
+ customElements.define(componentName$Z, LoaderRadialClass);
2675
2675
 
2676
- const componentName$X = getComponentName('container');
2676
+ const componentName$Y = getComponentName('container');
2677
2677
 
2678
- class RawContainer extends createBaseClass({ componentName: componentName$X, baseSelector: 'slot' }) {
2678
+ class RawContainer extends createBaseClass({ componentName: componentName$Y, baseSelector: 'slot' }) {
2679
2679
  constructor() {
2680
2680
  super();
2681
2681
 
@@ -2728,9 +2728,9 @@ const ContainerClass = compose(
2728
2728
  componentNameValidationMixin
2729
2729
  )(RawContainer);
2730
2730
 
2731
- customElements.define(componentName$X, ContainerClass);
2731
+ customElements.define(componentName$Y, ContainerClass);
2732
2732
 
2733
- const componentName$W = getComponentName('combo-box');
2733
+ const componentName$X = getComponentName('combo-box');
2734
2734
 
2735
2735
  const ComboBoxMixin = (superclass) =>
2736
2736
  class ComboBoxMixinClass extends superclass {
@@ -3166,7 +3166,7 @@ const ComboBoxClass = compose(
3166
3166
  vaadin-combo-box[label-type="floating"]:not([focused])[disabled] > input:placeholder-shown {
3167
3167
  opacity: 0;
3168
3168
  }
3169
-
3169
+
3170
3170
  ${resetInputLabelPosition('vaadin-combo-box')}
3171
3171
  ${inputFloatingLabelStyle()}
3172
3172
  `,
@@ -3175,14 +3175,14 @@ const ComboBoxClass = compose(
3175
3175
  // and reset items to an empty array, and opening the list box with no items
3176
3176
  // to display.
3177
3177
  excludeAttrsSync: ['tabindex', 'size', 'data'],
3178
- componentName: componentName$W,
3178
+ componentName: componentName$X,
3179
3179
  includeForwardProps: ['items', 'renderer', 'selectedItem'],
3180
3180
  })
3181
3181
  );
3182
3182
 
3183
- customElements.define(componentName$W, ComboBoxClass);
3183
+ customElements.define(componentName$X, ComboBoxClass);
3184
3184
 
3185
- customElements.define(componentName$12, IconClass);
3185
+ customElements.define(componentName$13, IconClass);
3186
3186
 
3187
3187
  const SUPPORTED_FORMATS = ['MM/DD/YYYY', 'DD/MM/YYYY', 'YYYY/MM/DD'];
3188
3188
 
@@ -3499,7 +3499,7 @@ const nextMonth = (timestamp) => {
3499
3499
  return date;
3500
3500
  };
3501
3501
 
3502
- const componentName$V = getComponentName('calendar');
3502
+ const componentName$W = getComponentName('calendar');
3503
3503
 
3504
3504
  const observedAttrs$2 = [
3505
3505
  'initial-value',
@@ -3516,7 +3516,7 @@ const observedAttrs$2 = [
3516
3516
 
3517
3517
  const calendarUiAttrs = ['calendar-label-submit', 'calendar-label-cancel'];
3518
3518
 
3519
- const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$V, baseSelector: 'div' });
3519
+ const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$W, baseSelector: 'div' });
3520
3520
 
3521
3521
  class RawCalendar extends BaseInputClass$9 {
3522
3522
  static get observedAttributes() {
@@ -4129,7 +4129,7 @@ const CalendarClass = compose(
4129
4129
  componentNameValidationMixin
4130
4130
  )(RawCalendar);
4131
4131
 
4132
- customElements.define(componentName$V, CalendarClass);
4132
+ customElements.define(componentName$W, CalendarClass);
4133
4133
 
4134
4134
  const {
4135
4135
  host: host$j,
@@ -4277,7 +4277,7 @@ var textFieldMappings = {
4277
4277
  inputIconColor: { ...inputIcon, property: 'color' },
4278
4278
  };
4279
4279
 
4280
- const componentName$U = getComponentName('text-field');
4280
+ const componentName$V = getComponentName('text-field');
4281
4281
 
4282
4282
  const observedAttrs$1 = ['type', 'label-type', 'copy-to-clipboard'];
4283
4283
 
@@ -4399,11 +4399,11 @@ const TextFieldClass = compose(
4399
4399
  }
4400
4400
  `,
4401
4401
  excludeAttrsSync: ['tabindex'],
4402
- componentName: componentName$U,
4402
+ componentName: componentName$V,
4403
4403
  })
4404
4404
  );
4405
4405
 
4406
- customElements.define(componentName$U, TextFieldClass);
4406
+ customElements.define(componentName$V, TextFieldClass);
4407
4407
 
4408
4408
  const patterns = {
4409
4409
  MM: '(0?[1-9]|1[0-2])',
@@ -4536,12 +4536,12 @@ class DateCounter {
4536
4536
  }
4537
4537
  }
4538
4538
 
4539
- const componentName$T = getComponentName('date-field');
4539
+ const componentName$U = getComponentName('date-field');
4540
4540
 
4541
4541
  // we set baseSelector to `vaadin-popover` as a temporary hack, so our portalMixin will
4542
4542
  // be able to process this component's overlay. The whole process needs refactoring as soon as possible.
4543
4543
  const BASE_SELECTOR = 'vaadin-popover';
4544
- const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$T, baseSelector: BASE_SELECTOR });
4544
+ const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$U, baseSelector: BASE_SELECTOR });
4545
4545
 
4546
4546
  const dateFieldAttrs = ['format', 'opened', 'initial-value', 'readonly'];
4547
4547
  const calendarAttrs = ['years-range', 'calendar-months', 'calendar-weekdays'];
@@ -5212,11 +5212,11 @@ const DateFieldClass = compose(
5212
5212
  componentNameValidationMixin
5213
5213
  )(RawDateFieldClass);
5214
5214
 
5215
- customElements.define(componentName$T, DateFieldClass);
5215
+ customElements.define(componentName$U, DateFieldClass);
5216
5216
 
5217
- const componentName$S = getComponentName('text');
5217
+ const componentName$T = getComponentName('text');
5218
5218
 
5219
- class RawText extends createBaseClass({ componentName: componentName$S, baseSelector: ':host > slot' }) {
5219
+ class RawText extends createBaseClass({ componentName: componentName$T, baseSelector: ':host > slot' }) {
5220
5220
  constructor() {
5221
5221
  super();
5222
5222
 
@@ -5273,8 +5273,8 @@ const TextClass = compose(
5273
5273
  componentNameValidationMixin
5274
5274
  )(RawText);
5275
5275
 
5276
- const componentName$R = getComponentName('divider');
5277
- class RawDivider extends createBaseClass({ componentName: componentName$R, baseSelector: ':host > div' }) {
5276
+ const componentName$S = getComponentName('divider');
5277
+ class RawDivider extends createBaseClass({ componentName: componentName$S, baseSelector: ':host > div' }) {
5278
5278
  constructor() {
5279
5279
  super();
5280
5280
 
@@ -5373,11 +5373,11 @@ const DividerClass = compose(
5373
5373
  componentNameValidationMixin
5374
5374
  )(RawDivider);
5375
5375
 
5376
- customElements.define(componentName$S, TextClass);
5376
+ customElements.define(componentName$T, TextClass);
5377
5377
 
5378
- customElements.define(componentName$R, DividerClass);
5378
+ customElements.define(componentName$S, DividerClass);
5379
5379
 
5380
- const componentName$Q = getComponentName('email-field');
5380
+ const componentName$R = getComponentName('email-field');
5381
5381
 
5382
5382
  const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
5383
5383
  const defaultAutocomplete = 'username';
@@ -5445,15 +5445,15 @@ const EmailFieldClass = compose(
5445
5445
  }
5446
5446
  `,
5447
5447
  excludeAttrsSync: ['tabindex'],
5448
- componentName: componentName$Q,
5448
+ componentName: componentName$R,
5449
5449
  })
5450
5450
  );
5451
5451
 
5452
- customElements.define(componentName$Q, EmailFieldClass);
5452
+ customElements.define(componentName$R, EmailFieldClass);
5453
5453
 
5454
- const componentName$P = getComponentName('link');
5454
+ const componentName$Q = getComponentName('link');
5455
5455
 
5456
- class RawLink extends createBaseClass({ componentName: componentName$P, baseSelector: ':host a' }) {
5456
+ class RawLink extends createBaseClass({ componentName: componentName$Q, baseSelector: ':host a' }) {
5457
5457
  constructor() {
5458
5458
  super();
5459
5459
 
@@ -5517,7 +5517,7 @@ const LinkClass = compose(
5517
5517
  componentNameValidationMixin
5518
5518
  )(RawLink);
5519
5519
 
5520
- customElements.define(componentName$P, LinkClass);
5520
+ customElements.define(componentName$Q, LinkClass);
5521
5521
 
5522
5522
  const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
5523
5523
  let style;
@@ -5569,37 +5569,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
5569
5569
  return CssVarImageClass;
5570
5570
  };
5571
5571
 
5572
- const componentName$O = getComponentName('logo');
5572
+ const componentName$P = getComponentName('logo');
5573
5573
 
5574
5574
  const LogoClass = createCssVarImageClass({
5575
- componentName: componentName$O,
5575
+ componentName: componentName$P,
5576
5576
  varName: 'url',
5577
5577
  fallbackVarName: 'fallbackUrl',
5578
5578
  });
5579
5579
 
5580
- customElements.define(componentName$O, LogoClass);
5580
+ customElements.define(componentName$P, LogoClass);
5581
5581
 
5582
- const componentName$N = getComponentName('totp-image');
5582
+ const componentName$O = getComponentName('totp-image');
5583
5583
 
5584
5584
  const TotpImageClass = createCssVarImageClass({
5585
- componentName: componentName$N,
5585
+ componentName: componentName$O,
5586
5586
  varName: 'url',
5587
5587
  fallbackVarName: 'fallbackUrl',
5588
5588
  });
5589
5589
 
5590
- customElements.define(componentName$N, TotpImageClass);
5590
+ customElements.define(componentName$O, TotpImageClass);
5591
5591
 
5592
- const componentName$M = getComponentName('notp-image');
5592
+ const componentName$N = getComponentName('notp-image');
5593
5593
 
5594
5594
  const NotpImageClass = createCssVarImageClass({
5595
- componentName: componentName$M,
5595
+ componentName: componentName$N,
5596
5596
  varName: 'url',
5597
5597
  fallbackVarName: 'fallbackUrl',
5598
5598
  });
5599
5599
 
5600
- customElements.define(componentName$M, NotpImageClass);
5600
+ customElements.define(componentName$N, NotpImageClass);
5601
5601
 
5602
- const componentName$L = getComponentName('number-field');
5602
+ const componentName$M = getComponentName('number-field');
5603
5603
 
5604
5604
  const NumberFieldClass = compose(
5605
5605
  createStyleMixin({
@@ -5633,11 +5633,11 @@ const NumberFieldClass = compose(
5633
5633
  }
5634
5634
  `,
5635
5635
  excludeAttrsSync: ['tabindex'],
5636
- componentName: componentName$L,
5636
+ componentName: componentName$M,
5637
5637
  })
5638
5638
  );
5639
5639
 
5640
- customElements.define(componentName$L, NumberFieldClass);
5640
+ customElements.define(componentName$M, NumberFieldClass);
5641
5641
 
5642
5642
  const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
5643
5643
  const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
@@ -5683,13 +5683,13 @@ const toggleMaskVisibility = (input, value) => {
5683
5683
 
5684
5684
  /* eslint-disable no-param-reassign */
5685
5685
 
5686
- const componentName$K = getComponentName('passcode-internal');
5686
+ const componentName$L = getComponentName('passcode-internal');
5687
5687
 
5688
5688
  const observedAttributes$5 = ['digits', 'loading'];
5689
5689
 
5690
5690
  const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
5691
5691
 
5692
- const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$K, baseSelector: 'div' });
5692
+ const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$L, baseSelector: 'div' });
5693
5693
 
5694
5694
  class PasscodeInternal extends BaseInputClass$7 {
5695
5695
  static get observedAttributes() {
@@ -5907,7 +5907,7 @@ class PasscodeInternal extends BaseInputClass$7 {
5907
5907
  }
5908
5908
  }
5909
5909
 
5910
- const componentName$J = getComponentName('passcode');
5910
+ const componentName$K = getComponentName('passcode');
5911
5911
 
5912
5912
  const observedAttributes$4 = ['digits'];
5913
5913
 
@@ -5926,17 +5926,17 @@ const customMixin$a = (superclass) =>
5926
5926
  const template = document.createElement('template');
5927
5927
 
5928
5928
  template.innerHTML = `
5929
- <${componentName$K}
5929
+ <${componentName$L}
5930
5930
  bordered="true"
5931
5931
  name="code"
5932
5932
  tabindex="-1"
5933
5933
  slot="input"
5934
- ><slot></slot></${componentName$K}>
5934
+ ><slot></slot></${componentName$L}>
5935
5935
  `;
5936
5936
 
5937
5937
  this.baseElement.appendChild(template.content.cloneNode(true));
5938
5938
 
5939
- this.inputElement = this.shadowRoot.querySelector(componentName$K);
5939
+ this.inputElement = this.shadowRoot.querySelector(componentName$L);
5940
5940
 
5941
5941
  forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
5942
5942
  }
@@ -6088,13 +6088,13 @@ const PasscodeClass = compose(
6088
6088
  ${resetInputCursor('vaadin-text-field')}
6089
6089
  `,
6090
6090
  excludeAttrsSync: ['tabindex'],
6091
- componentName: componentName$J,
6091
+ componentName: componentName$K,
6092
6092
  })
6093
6093
  );
6094
6094
 
6095
- customElements.define(componentName$K, PasscodeInternal);
6095
+ customElements.define(componentName$L, PasscodeInternal);
6096
6096
 
6097
- customElements.define(componentName$J, PasscodeClass);
6097
+ customElements.define(componentName$K, PasscodeClass);
6098
6098
 
6099
6099
  const passwordDraggableMixin = (superclass) =>
6100
6100
  class PasswordDraggableMixinClass extends superclass {
@@ -6135,7 +6135,7 @@ const passwordDraggableMixin = (superclass) =>
6135
6135
  }
6136
6136
  };
6137
6137
 
6138
- const componentName$I = getComponentName('password');
6138
+ const componentName$J = getComponentName('password');
6139
6139
 
6140
6140
  const customMixin$9 = (superclass) =>
6141
6141
  class PasswordFieldMixinClass extends superclass {
@@ -6410,11 +6410,11 @@ const PasswordClass = compose(
6410
6410
  }
6411
6411
  `,
6412
6412
  excludeAttrsSync: ['tabindex'],
6413
- componentName: componentName$I,
6413
+ componentName: componentName$J,
6414
6414
  })
6415
6415
  );
6416
6416
 
6417
- customElements.define(componentName$I, PasswordClass);
6417
+ customElements.define(componentName$J, PasswordClass);
6418
6418
 
6419
6419
  const disableRules = [
6420
6420
  'blockquote',
@@ -6440,9 +6440,9 @@ const decodeHTML = (html) => {
6440
6440
  /* eslint-disable no-param-reassign */
6441
6441
 
6442
6442
 
6443
- const componentName$H = getComponentName('enriched-text');
6443
+ const componentName$I = getComponentName('enriched-text');
6444
6444
 
6445
- class EnrichedText extends createBaseClass({ componentName: componentName$H, baseSelector: ':host > div' }) {
6445
+ class EnrichedText extends createBaseClass({ componentName: componentName$I, baseSelector: ':host > div' }) {
6446
6446
  #origLinkRenderer;
6447
6447
 
6448
6448
  #origEmRenderer;
@@ -6638,9 +6638,9 @@ const EnrichedTextClass = compose(
6638
6638
  componentNameValidationMixin
6639
6639
  )(EnrichedText);
6640
6640
 
6641
- customElements.define(componentName$H, EnrichedTextClass);
6641
+ customElements.define(componentName$I, EnrichedTextClass);
6642
6642
 
6643
- const componentName$G = getComponentName('text-area');
6643
+ const componentName$H = getComponentName('text-area');
6644
6644
 
6645
6645
  const {
6646
6646
  host: host$d,
@@ -6716,17 +6716,17 @@ const TextAreaClass = compose(
6716
6716
  ${resetInputCursor('vaadin-text-area')}
6717
6717
  `,
6718
6718
  excludeAttrsSync: ['tabindex'],
6719
- componentName: componentName$G,
6719
+ componentName: componentName$H,
6720
6720
  })
6721
6721
  );
6722
6722
 
6723
- customElements.define(componentName$G, TextAreaClass);
6723
+ customElements.define(componentName$H, TextAreaClass);
6724
6724
 
6725
6725
  const observedAttributes$3 = ['src', 'alt'];
6726
6726
 
6727
- const componentName$F = getComponentName('image');
6727
+ const componentName$G = getComponentName('image');
6728
6728
 
6729
- const BaseClass$1 = createBaseClass({ componentName: componentName$F, baseSelector: ':host > img' });
6729
+ const BaseClass$1 = createBaseClass({ componentName: componentName$G, baseSelector: ':host > img' });
6730
6730
  class RawImage extends BaseClass$1 {
6731
6731
  static get observedAttributes() {
6732
6732
  return observedAttributes$3.concat(BaseClass$1.observedAttributes || []);
@@ -6766,7 +6766,7 @@ const ImageClass = compose(
6766
6766
  draggableMixin
6767
6767
  )(RawImage);
6768
6768
 
6769
- customElements.define(componentName$F, ImageClass);
6769
+ customElements.define(componentName$G, ImageClass);
6770
6770
 
6771
6771
  var CountryCodes = [
6772
6772
  // United States should be the first option
@@ -8035,7 +8035,7 @@ const parsePhoneNumber = (val) => {
8035
8035
  return [countryCode, phoneNumber];
8036
8036
  };
8037
8037
 
8038
- const componentName$E = getComponentName('phone-field-internal');
8038
+ const componentName$F = getComponentName('phone-field-internal');
8039
8039
 
8040
8040
  const commonAttrs$1 = ['disabled', 'size', 'bordered', 'invalid', 'readonly'];
8041
8041
  const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
@@ -8049,7 +8049,7 @@ const mapAttrs$1 = {
8049
8049
 
8050
8050
  const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
8051
8051
 
8052
- const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$E, baseSelector: 'div' });
8052
+ const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$F, baseSelector: 'div' });
8053
8053
 
8054
8054
  let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8055
8055
  static get observedAttributes() {
@@ -8266,12 +8266,12 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8266
8266
  }
8267
8267
  };
8268
8268
 
8269
- customElements.define(componentName$E, PhoneFieldInternal$1);
8269
+ customElements.define(componentName$F, PhoneFieldInternal$1);
8270
8270
 
8271
8271
  const textVars$1 = TextFieldClass.cssVarList;
8272
8272
  const comboVars = ComboBoxClass.cssVarList;
8273
8273
 
8274
- const componentName$D = getComponentName('phone-field');
8274
+ const componentName$E = getComponentName('phone-field');
8275
8275
 
8276
8276
  const customMixin$8 = (superclass) =>
8277
8277
  class PhoneFieldMixinClass extends superclass {
@@ -8285,15 +8285,15 @@ const customMixin$8 = (superclass) =>
8285
8285
  const template = document.createElement('template');
8286
8286
 
8287
8287
  template.innerHTML = `
8288
- <${componentName$E}
8288
+ <${componentName$F}
8289
8289
  tabindex="-1"
8290
8290
  slot="input"
8291
- ></${componentName$E}>
8291
+ ></${componentName$F}>
8292
8292
  `;
8293
8293
 
8294
8294
  this.baseElement.appendChild(template.content.cloneNode(true));
8295
8295
 
8296
- this.inputElement = this.shadowRoot.querySelector(componentName$E);
8296
+ this.inputElement = this.shadowRoot.querySelector(componentName$F);
8297
8297
 
8298
8298
  forwardAttrs(this.shadowRoot.host, this.inputElement, {
8299
8299
  includeAttrs: [
@@ -8515,17 +8515,17 @@ const PhoneFieldClass = compose(
8515
8515
  ${resetInputLabelPosition('vaadin-text-field')}
8516
8516
  `,
8517
8517
  excludeAttrsSync: ['tabindex'],
8518
- componentName: componentName$D,
8518
+ componentName: componentName$E,
8519
8519
  })
8520
8520
  );
8521
8521
 
8522
- customElements.define(componentName$D, PhoneFieldClass);
8522
+ customElements.define(componentName$E, PhoneFieldClass);
8523
8523
 
8524
8524
  const getCountryByCodeId = (countryCode) => {
8525
8525
  return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
8526
8526
  };
8527
8527
 
8528
- const componentName$C = getComponentName('phone-field-internal-input-box');
8528
+ const componentName$D = getComponentName('phone-field-internal-input-box');
8529
8529
 
8530
8530
  const observedAttributes$2 = [
8531
8531
  'disabled',
@@ -8542,7 +8542,7 @@ const mapAttrs = {
8542
8542
  'phone-input-placeholder': 'placeholder',
8543
8543
  };
8544
8544
 
8545
- const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$C, baseSelector: 'div' });
8545
+ const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$D, baseSelector: 'div' });
8546
8546
 
8547
8547
  class PhoneFieldInternal extends BaseInputClass$5 {
8548
8548
  static get observedAttributes() {
@@ -8681,11 +8681,11 @@ class PhoneFieldInternal extends BaseInputClass$5 {
8681
8681
  }
8682
8682
  }
8683
8683
 
8684
- customElements.define(componentName$C, PhoneFieldInternal);
8684
+ customElements.define(componentName$D, PhoneFieldInternal);
8685
8685
 
8686
8686
  const textVars = TextFieldClass.cssVarList;
8687
8687
 
8688
- const componentName$B = getComponentName('phone-input-box-field');
8688
+ const componentName$C = getComponentName('phone-input-box-field');
8689
8689
 
8690
8690
  const customMixin$7 = (superclass) =>
8691
8691
  class PhoneInputBoxFieldMixinClass extends superclass {
@@ -8699,15 +8699,15 @@ const customMixin$7 = (superclass) =>
8699
8699
  const template = document.createElement('template');
8700
8700
 
8701
8701
  template.innerHTML = `
8702
- <${componentName$C}
8702
+ <${componentName$D}
8703
8703
  tabindex="-1"
8704
8704
  slot="input"
8705
- ></${componentName$C}>
8705
+ ></${componentName$D}>
8706
8706
  `;
8707
8707
 
8708
8708
  this.baseElement.appendChild(template.content.cloneNode(true));
8709
8709
 
8710
- this.inputElement = this.shadowRoot.querySelector(componentName$C);
8710
+ this.inputElement = this.shadowRoot.querySelector(componentName$D);
8711
8711
 
8712
8712
  forwardAttrs(this.shadowRoot.host, this.inputElement, {
8713
8713
  includeAttrs: [
@@ -8884,26 +8884,26 @@ const PhoneFieldInputBoxClass = compose(
8884
8884
  ${inputFloatingLabelStyle()}
8885
8885
  `,
8886
8886
  excludeAttrsSync: ['tabindex'],
8887
- componentName: componentName$B,
8887
+ componentName: componentName$C,
8888
8888
  })
8889
8889
  );
8890
8890
 
8891
- customElements.define(componentName$B, PhoneFieldInputBoxClass);
8891
+ customElements.define(componentName$C, PhoneFieldInputBoxClass);
8892
8892
 
8893
- const componentName$A = getComponentName('new-password-internal');
8893
+ const componentName$B = getComponentName('new-password-internal');
8894
8894
 
8895
8895
  const interpolateString = (template, values) =>
8896
8896
  template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
8897
8897
 
8898
8898
  // eslint-disable-next-line max-classes-per-file
8899
8899
 
8900
- const componentName$z = getComponentName('policy-validation');
8900
+ const componentName$A = getComponentName('policy-validation');
8901
8901
 
8902
8902
  const overrideAttrs = ['data-password-policy-value-minlength'];
8903
8903
  const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
8904
8904
  const policyAttrs = ['label', 'value', ...dataAttrs];
8905
8905
 
8906
- class RawPolicyValidation extends createBaseClass({ componentName: componentName$z, baseSelector: ':host > div' }) {
8906
+ class RawPolicyValidation extends createBaseClass({ componentName: componentName$A, baseSelector: ':host > div' }) {
8907
8907
  #availablePolicies;
8908
8908
 
8909
8909
  #activePolicies = [];
@@ -9111,7 +9111,7 @@ const PolicyValidationClass = compose(
9111
9111
  componentNameValidationMixin
9112
9112
  )(RawPolicyValidation);
9113
9113
 
9114
- const componentName$y = getComponentName('new-password');
9114
+ const componentName$z = getComponentName('new-password');
9115
9115
 
9116
9116
  const policyPreviewVars = PolicyValidationClass.cssVarList;
9117
9117
 
@@ -9125,18 +9125,18 @@ const customMixin$6 = (superclass) =>
9125
9125
  const externalInputAttr = this.getAttribute('external-input');
9126
9126
 
9127
9127
  template.innerHTML = `
9128
- <${componentName$A}
9128
+ <${componentName$B}
9129
9129
  name="new-password"
9130
9130
  tabindex="-1"
9131
9131
  slot="input"
9132
9132
  external-input="${externalInputAttr}"
9133
9133
  >
9134
- </${componentName$A}>
9134
+ </${componentName$B}>
9135
9135
  `;
9136
9136
 
9137
9137
  this.baseElement.appendChild(template.content.cloneNode(true));
9138
9138
 
9139
- this.inputElement = this.shadowRoot.querySelector(componentName$A);
9139
+ this.inputElement = this.shadowRoot.querySelector(componentName$B);
9140
9140
 
9141
9141
  if (this.getAttribute('external-input') === 'true') {
9142
9142
  this.initExternalInput();
@@ -9312,11 +9312,11 @@ const NewPasswordClass = compose(
9312
9312
  }
9313
9313
  `,
9314
9314
  excludeAttrsSync: ['tabindex'],
9315
- componentName: componentName$y,
9315
+ componentName: componentName$z,
9316
9316
  })
9317
9317
  );
9318
9318
 
9319
- customElements.define(componentName$z, PolicyValidationClass);
9319
+ customElements.define(componentName$A, PolicyValidationClass);
9320
9320
 
9321
9321
  const passwordAttrPrefixRegex = /^password-/;
9322
9322
  const confirmAttrPrefixRegex = /^confirm-/;
@@ -9348,7 +9348,7 @@ const inputRelatedAttrs = [].concat(
9348
9348
  policyPanelAttrs
9349
9349
  );
9350
9350
 
9351
- const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$A, baseSelector: 'div' });
9351
+ const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$B, baseSelector: 'div' });
9352
9352
 
9353
9353
  class NewPasswordInternal extends BaseInputClass$4 {
9354
9354
  static get observedAttributes() {
@@ -9558,16 +9558,16 @@ class NewPasswordInternal extends BaseInputClass$4 {
9558
9558
  }
9559
9559
  }
9560
9560
 
9561
- customElements.define(componentName$A, NewPasswordInternal);
9561
+ customElements.define(componentName$B, NewPasswordInternal);
9562
9562
 
9563
- customElements.define(componentName$y, NewPasswordClass);
9563
+ customElements.define(componentName$z, NewPasswordClass);
9564
9564
 
9565
- const componentName$x = getComponentName('recaptcha');
9565
+ const componentName$y = getComponentName('recaptcha');
9566
9566
 
9567
9567
  const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
9568
9568
 
9569
9569
  const BaseClass = createBaseClass({
9570
- componentName: componentName$x,
9570
+ componentName: componentName$y,
9571
9571
  baseSelector: ':host > div',
9572
9572
  });
9573
9573
  class RawRecaptcha extends BaseClass {
@@ -9754,7 +9754,7 @@ class RawRecaptcha extends BaseClass {
9754
9754
 
9755
9755
  const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
9756
9756
 
9757
- customElements.define(componentName$x, RecaptchaClass);
9757
+ customElements.define(componentName$y, RecaptchaClass);
9758
9758
 
9759
9759
  const getFileBase64 = (fileObj) => {
9760
9760
  return new Promise((resolve) => {
@@ -9768,7 +9768,7 @@ const getFilename = (fileObj) => {
9768
9768
  return fileObj.name.replace(/^.*\\/, '');
9769
9769
  };
9770
9770
 
9771
- const componentName$w = getComponentName('upload-file');
9771
+ const componentName$x = getComponentName('upload-file');
9772
9772
 
9773
9773
  const observedAttributes = [
9774
9774
  'title',
@@ -9783,7 +9783,7 @@ const observedAttributes = [
9783
9783
  'icon',
9784
9784
  ];
9785
9785
 
9786
- const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$w, baseSelector: ':host > div' });
9786
+ const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$x, baseSelector: ':host > div' });
9787
9787
 
9788
9788
  class RawUploadFile extends BaseInputClass$3 {
9789
9789
  static get observedAttributes() {
@@ -9998,7 +9998,7 @@ const UploadFileClass = compose(
9998
9998
  componentNameValidationMixin
9999
9999
  )(RawUploadFile);
10000
10000
 
10001
- customElements.define(componentName$w, UploadFileClass);
10001
+ customElements.define(componentName$x, UploadFileClass);
10002
10002
 
10003
10003
  const createBaseButtonSelectionGroupInternalClass = (componentName) => {
10004
10004
  class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
@@ -10096,10 +10096,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
10096
10096
  return BaseButtonSelectionGroupInternalClass;
10097
10097
  };
10098
10098
 
10099
- const componentName$v = getComponentName('button-selection-group-internal');
10099
+ const componentName$w = getComponentName('button-selection-group-internal');
10100
10100
 
10101
10101
  class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
10102
- componentName$v
10102
+ componentName$w
10103
10103
  ) {
10104
10104
  getSelectedNode() {
10105
10105
  return this.items.find((item) => item.hasAttribute('selected'));
@@ -10331,7 +10331,7 @@ const buttonSelectionGroupStyles = `
10331
10331
  ${resetInputCursor('vaadin-text-field')}
10332
10332
  `;
10333
10333
 
10334
- const componentName$u = getComponentName('button-selection-group');
10334
+ const componentName$v = getComponentName('button-selection-group');
10335
10335
 
10336
10336
  const buttonSelectionGroupMixin = (superclass) =>
10337
10337
  class ButtonMultiSelectionGroupMixinClass extends superclass {
@@ -10340,19 +10340,19 @@ const buttonSelectionGroupMixin = (superclass) =>
10340
10340
  const template = document.createElement('template');
10341
10341
 
10342
10342
  template.innerHTML = `
10343
- <${componentName$v}
10343
+ <${componentName$w}
10344
10344
  name="button-selection-group"
10345
10345
  slot="input"
10346
10346
  tabindex="-1"
10347
10347
  part="internal-component"
10348
10348
  >
10349
10349
  <slot></slot>
10350
- </${componentName$v}>
10350
+ </${componentName$w}>
10351
10351
  `;
10352
10352
 
10353
10353
  this.baseElement.appendChild(template.content.cloneNode(true));
10354
10354
 
10355
- this.inputElement = this.shadowRoot.querySelector(componentName$v);
10355
+ this.inputElement = this.shadowRoot.querySelector(componentName$w);
10356
10356
 
10357
10357
  forwardAttrs(this, this.inputElement, {
10358
10358
  includeAttrs: ['size', 'default-value', 'allow-deselect'],
@@ -10377,16 +10377,16 @@ const ButtonSelectionGroupClass = compose(
10377
10377
  wrappedEleName: 'vaadin-text-field',
10378
10378
  style: () => buttonSelectionGroupStyles,
10379
10379
  excludeAttrsSync: ['tabindex'],
10380
- componentName: componentName$u,
10380
+ componentName: componentName$v,
10381
10381
  })
10382
10382
  );
10383
10383
 
10384
- customElements.define(componentName$v, ButtonSelectionGroupInternalClass);
10384
+ customElements.define(componentName$w, ButtonSelectionGroupInternalClass);
10385
10385
 
10386
- const componentName$t = getComponentName('button-selection-group-item');
10386
+ const componentName$u = getComponentName('button-selection-group-item');
10387
10387
 
10388
10388
  class RawSelectItem extends createBaseClass({
10389
- componentName: componentName$t,
10389
+ componentName: componentName$u,
10390
10390
  baseSelector: ':host > descope-button',
10391
10391
  }) {
10392
10392
  get size() {
@@ -10493,14 +10493,14 @@ const ButtonSelectionGroupItemClass = compose(
10493
10493
  componentNameValidationMixin
10494
10494
  )(RawSelectItem);
10495
10495
 
10496
- customElements.define(componentName$t, ButtonSelectionGroupItemClass);
10496
+ customElements.define(componentName$u, ButtonSelectionGroupItemClass);
10497
10497
 
10498
- customElements.define(componentName$u, ButtonSelectionGroupClass);
10498
+ customElements.define(componentName$v, ButtonSelectionGroupClass);
10499
10499
 
10500
- const componentName$s = getComponentName('button-multi-selection-group-internal');
10500
+ const componentName$t = getComponentName('button-multi-selection-group-internal');
10501
10501
 
10502
10502
  class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
10503
- componentName$s
10503
+ componentName$t
10504
10504
  ) {
10505
10505
  #getSelectedNodes() {
10506
10506
  return this.items.filter((item) => item.hasAttribute('selected'));
@@ -10603,7 +10603,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
10603
10603
  }
10604
10604
  }
10605
10605
 
10606
- const componentName$r = getComponentName('button-multi-selection-group');
10606
+ const componentName$s = getComponentName('button-multi-selection-group');
10607
10607
 
10608
10608
  const buttonMultiSelectionGroupMixin = (superclass) =>
10609
10609
  class ButtonMultiSelectionGroupMixinClass extends superclass {
@@ -10612,19 +10612,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
10612
10612
  const template = document.createElement('template');
10613
10613
 
10614
10614
  template.innerHTML = `
10615
- <${componentName$s}
10615
+ <${componentName$t}
10616
10616
  name="button-selection-group"
10617
10617
  slot="input"
10618
10618
  tabindex="-1"
10619
10619
  part="internal-component"
10620
10620
  >
10621
10621
  <slot></slot>
10622
- </${componentName$s}>
10622
+ </${componentName$t}>
10623
10623
  `;
10624
10624
 
10625
10625
  this.baseElement.appendChild(template.content.cloneNode(true));
10626
10626
 
10627
- this.inputElement = this.shadowRoot.querySelector(componentName$s);
10627
+ this.inputElement = this.shadowRoot.querySelector(componentName$t);
10628
10628
 
10629
10629
  forwardAttrs(this, this.inputElement, {
10630
10630
  includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
@@ -10649,13 +10649,13 @@ const ButtonMultiSelectionGroupClass = compose(
10649
10649
  wrappedEleName: 'vaadin-text-field',
10650
10650
  style: () => buttonSelectionGroupStyles,
10651
10651
  excludeAttrsSync: ['tabindex'],
10652
- componentName: componentName$r,
10652
+ componentName: componentName$s,
10653
10653
  })
10654
10654
  );
10655
10655
 
10656
- customElements.define(componentName$s, ButtonMultiSelectionGroupInternalClass);
10656
+ customElements.define(componentName$t, ButtonMultiSelectionGroupInternalClass);
10657
10657
 
10658
- customElements.define(componentName$r, ButtonMultiSelectionGroupClass);
10658
+ customElements.define(componentName$s, ButtonMultiSelectionGroupClass);
10659
10659
 
10660
10660
  /* eslint-disable no-param-reassign */
10661
10661
 
@@ -10683,9 +10683,9 @@ class GridTextColumnClass extends GridSortColumn {
10683
10683
  }
10684
10684
  }
10685
10685
 
10686
- const componentName$q = getComponentName('grid-text-column');
10686
+ const componentName$r = getComponentName('grid-text-column');
10687
10687
 
10688
- customElements.define(componentName$q, GridTextColumnClass);
10688
+ customElements.define(componentName$r, GridTextColumnClass);
10689
10689
 
10690
10690
  /* eslint-disable no-param-reassign */
10691
10691
 
@@ -10720,9 +10720,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
10720
10720
 
10721
10721
  /* eslint-disable no-param-reassign */
10722
10722
 
10723
- const componentName$p = getComponentName('grid-custom-column');
10723
+ const componentName$q = getComponentName('grid-custom-column');
10724
10724
 
10725
- customElements.define(componentName$p, GridCustomColumnClass);
10725
+ customElements.define(componentName$q, GridCustomColumnClass);
10726
10726
 
10727
10727
  const createCheckboxEle = () => {
10728
10728
  const checkbox = document.createElement('descope-checkbox');
@@ -10781,9 +10781,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
10781
10781
  }
10782
10782
  }
10783
10783
 
10784
- const componentName$o = getComponentName('grid-selection-column');
10784
+ const componentName$p = getComponentName('grid-selection-column');
10785
10785
 
10786
- customElements.define(componentName$o, GridSelectionColumnClass);
10786
+ customElements.define(componentName$p, GridSelectionColumnClass);
10787
10787
 
10788
10788
  /* eslint-disable no-param-reassign */
10789
10789
 
@@ -10822,9 +10822,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
10822
10822
  }
10823
10823
  }
10824
10824
 
10825
- const componentName$n = getComponentName('grid-item-details-column');
10825
+ const componentName$o = getComponentName('grid-item-details-column');
10826
10826
 
10827
- customElements.define(componentName$n, GridItemDetailsColumnClass);
10827
+ customElements.define(componentName$o, GridItemDetailsColumnClass);
10828
10828
 
10829
10829
  const decode = (input) => {
10830
10830
  const txt = document.createElement('textarea');
@@ -10836,9 +10836,9 @@ const tpl = (input, inline) => {
10836
10836
  return inline ? input : `<pre>${input}</pre>`;
10837
10837
  };
10838
10838
 
10839
- const componentName$m = getComponentName('code-snippet');
10839
+ const componentName$n = getComponentName('code-snippet');
10840
10840
 
10841
- let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$m, baseSelector: ':host > code' }) {
10841
+ let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$n, baseSelector: ':host > code' }) {
10842
10842
  static get observedAttributes() {
10843
10843
  return ['lang', 'inline'];
10844
10844
  }
@@ -11068,7 +11068,7 @@ const CodeSnippetClass = compose(
11068
11068
  componentNameValidationMixin
11069
11069
  )(CodeSnippet$1);
11070
11070
 
11071
- customElements.define(componentName$m, CodeSnippetClass);
11071
+ customElements.define(componentName$n, CodeSnippetClass);
11072
11072
 
11073
11073
  const isValidDataType = (data) => {
11074
11074
  const isValid = Array.isArray(data);
@@ -11143,7 +11143,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
11143
11143
  `;
11144
11144
  };
11145
11145
 
11146
- const componentName$l = getComponentName('grid');
11146
+ const componentName$m = getComponentName('grid');
11147
11147
 
11148
11148
  const GridMixin = (superclass) =>
11149
11149
  class GridMixinClass extends superclass {
@@ -11497,13 +11497,13 @@ const GridClass = compose(
11497
11497
  /*!css*/
11498
11498
  `,
11499
11499
  excludeAttrsSync: ['columns', 'tabindex'],
11500
- componentName: componentName$l,
11500
+ componentName: componentName$m,
11501
11501
  })
11502
11502
  );
11503
11503
 
11504
- customElements.define(componentName$l, GridClass);
11504
+ customElements.define(componentName$m, GridClass);
11505
11505
 
11506
- const componentName$k = getComponentName('multi-select-combo-box');
11506
+ const componentName$l = getComponentName('multi-select-combo-box');
11507
11507
 
11508
11508
  const multiSelectComboBoxMixin = (superclass) =>
11509
11509
  class MultiSelectComboBoxMixinClass extends superclass {
@@ -12137,16 +12137,16 @@ const MultiSelectComboBoxClass = compose(
12137
12137
  // Note: we exclude `placeholder` because the vaadin component observes it and
12138
12138
  // tries to override it, causing us to lose the user set placeholder.
12139
12139
  excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
12140
- componentName: componentName$k,
12140
+ componentName: componentName$l,
12141
12141
  includeForwardProps: ['items', 'renderer', 'selectedItems'],
12142
12142
  })
12143
12143
  );
12144
12144
 
12145
- customElements.define(componentName$k, MultiSelectComboBoxClass);
12145
+ customElements.define(componentName$l, MultiSelectComboBoxClass);
12146
12146
 
12147
- const componentName$j = getComponentName('badge');
12147
+ const componentName$k = getComponentName('badge');
12148
12148
 
12149
- class RawBadge extends createBaseClass({ componentName: componentName$j, baseSelector: ':host > div' }) {
12149
+ class RawBadge extends createBaseClass({ componentName: componentName$k, baseSelector: ':host > div' }) {
12150
12150
  constructor() {
12151
12151
  super();
12152
12152
 
@@ -12197,9 +12197,9 @@ const BadgeClass = compose(
12197
12197
  componentNameValidationMixin
12198
12198
  )(RawBadge);
12199
12199
 
12200
- customElements.define(componentName$j, BadgeClass);
12200
+ customElements.define(componentName$k, BadgeClass);
12201
12201
 
12202
- const componentName$i = getComponentName('modal');
12202
+ const componentName$j = getComponentName('modal');
12203
12203
 
12204
12204
  const customMixin$5 = (superclass) =>
12205
12205
  class ModalMixinClass extends superclass {
@@ -12298,11 +12298,11 @@ const ModalClass = compose(
12298
12298
  wrappedEleName: 'vaadin-dialog',
12299
12299
  style: () => ``,
12300
12300
  excludeAttrsSync: ['tabindex', 'opened'],
12301
- componentName: componentName$i,
12301
+ componentName: componentName$j,
12302
12302
  })
12303
12303
  );
12304
12304
 
12305
- customElements.define(componentName$i, ModalClass);
12305
+ customElements.define(componentName$j, ModalClass);
12306
12306
 
12307
12307
  const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
12308
12308
 
@@ -12313,7 +12313,7 @@ if (!vaadinContainerClass) {
12313
12313
  class NotificationContainerClass extends vaadinContainerClass {}
12314
12314
  customElements.define(getComponentName('notification-container'), NotificationContainerClass);
12315
12315
 
12316
- const componentName$h = getComponentName('notification-card');
12316
+ const componentName$i = getComponentName('notification-card');
12317
12317
 
12318
12318
  const notificationCardMixin = (superclass) =>
12319
12319
  class NotificationCardMixinClass extends superclass {
@@ -12421,13 +12421,13 @@ const NotificationCardClass = compose(
12421
12421
  }
12422
12422
  `,
12423
12423
  excludeAttrsSync: ['tabindex'],
12424
- componentName: componentName$h,
12424
+ componentName: componentName$i,
12425
12425
  })
12426
12426
  );
12427
12427
 
12428
- customElements.define(componentName$h, NotificationCardClass);
12428
+ customElements.define(componentName$i, NotificationCardClass);
12429
12429
 
12430
- const componentName$g = getComponentName('notification');
12430
+ const componentName$h = getComponentName('notification');
12431
12431
 
12432
12432
  const NotificationMixin = (superclass) =>
12433
12433
  class NotificationMixinClass extends superclass {
@@ -12522,14 +12522,14 @@ const NotificationClass = compose(
12522
12522
  createProxy({
12523
12523
  wrappedEleName: 'vaadin-notification',
12524
12524
  excludeAttrsSync: ['tabindex'],
12525
- componentName: componentName$g,
12525
+ componentName: componentName$h,
12526
12526
  })
12527
12527
  );
12528
12528
 
12529
- customElements.define(componentName$g, NotificationClass);
12529
+ customElements.define(componentName$h, NotificationClass);
12530
12530
 
12531
- const componentName$f = getComponentName('avatar');
12532
- class RawAvatar extends createBaseClass({ componentName: componentName$f, baseSelector: ':host > .wrapper' }) {
12531
+ const componentName$g = getComponentName('avatar');
12532
+ class RawAvatar extends createBaseClass({ componentName: componentName$g, baseSelector: ':host > .wrapper' }) {
12533
12533
  constructor() {
12534
12534
  super();
12535
12535
 
@@ -12633,11 +12633,11 @@ const AvatarClass = compose(
12633
12633
  componentNameValidationMixin
12634
12634
  )(RawAvatar);
12635
12635
 
12636
- customElements.define(componentName$f, AvatarClass);
12636
+ customElements.define(componentName$g, AvatarClass);
12637
12637
 
12638
- const componentName$e = getComponentName('mappings-field-internal');
12638
+ const componentName$f = getComponentName('mappings-field-internal');
12639
12639
 
12640
- const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$e, baseSelector: 'div' });
12640
+ const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$f, baseSelector: 'div' });
12641
12641
 
12642
12642
  class MappingsFieldInternal extends BaseInputClass$2 {
12643
12643
  #errorItem;
@@ -12872,7 +12872,7 @@ class MappingsFieldInternal extends BaseInputClass$2 {
12872
12872
  }
12873
12873
  }
12874
12874
 
12875
- const componentName$d = getComponentName('mappings-field');
12875
+ const componentName$e = getComponentName('mappings-field');
12876
12876
 
12877
12877
  const customMixin$4 = (superclass) =>
12878
12878
  class MappingsFieldMixinClass extends superclass {
@@ -12901,14 +12901,14 @@ const customMixin$4 = (superclass) =>
12901
12901
  const template = document.createElement('template');
12902
12902
 
12903
12903
  template.innerHTML = `
12904
- <${componentName$e}
12904
+ <${componentName$f}
12905
12905
  tabindex="-1"
12906
- ></${componentName$e}>
12906
+ ></${componentName$f}>
12907
12907
  `;
12908
12908
 
12909
12909
  this.baseElement.appendChild(template.content.cloneNode(true));
12910
12910
 
12911
- this.inputElement = this.shadowRoot.querySelector(componentName$e);
12911
+ this.inputElement = this.shadowRoot.querySelector(componentName$f);
12912
12912
 
12913
12913
  forwardAttrs(this, this.inputElement, {
12914
12914
  includeAttrs: [
@@ -13040,17 +13040,17 @@ const MappingsFieldClass = compose(
13040
13040
  'options',
13041
13041
  'error-message',
13042
13042
  ],
13043
- componentName: componentName$d,
13043
+ componentName: componentName$e,
13044
13044
  })
13045
13045
  );
13046
13046
 
13047
- customElements.define(componentName$e, MappingsFieldInternal);
13047
+ customElements.define(componentName$f, MappingsFieldInternal);
13048
13048
 
13049
- const componentName$c = getComponentName('mapping-item');
13049
+ const componentName$d = getComponentName('mapping-item');
13050
13050
 
13051
13051
  const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
13052
13052
 
13053
- const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$c, baseSelector: 'div' });
13053
+ const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$d, baseSelector: 'div' });
13054
13054
 
13055
13055
  class MappingItem extends BaseInputClass$1 {
13056
13056
  static get observedAttributes() {
@@ -13200,17 +13200,17 @@ class MappingItem extends BaseInputClass$1 {
13200
13200
  }
13201
13201
  }
13202
13202
 
13203
- customElements.define(componentName$c, MappingItem);
13203
+ customElements.define(componentName$d, MappingItem);
13204
13204
 
13205
- customElements.define(componentName$d, MappingsFieldClass);
13205
+ customElements.define(componentName$e, MappingsFieldClass);
13206
13206
 
13207
13207
  var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
13208
13208
 
13209
13209
  var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
13210
13210
 
13211
- const componentName$b = getComponentName('user-attribute');
13211
+ const componentName$c = getComponentName('user-attribute');
13212
13212
  class RawUserAttribute extends createBaseClass({
13213
- componentName: componentName$b,
13213
+ componentName: componentName$c,
13214
13214
  baseSelector: ':host > .root',
13215
13215
  }) {
13216
13216
  constructor() {
@@ -13444,13 +13444,13 @@ const UserAttributeClass = compose(
13444
13444
  componentNameValidationMixin
13445
13445
  )(RawUserAttribute);
13446
13446
 
13447
- customElements.define(componentName$b, UserAttributeClass);
13447
+ customElements.define(componentName$c, UserAttributeClass);
13448
13448
 
13449
13449
  var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
13450
13450
 
13451
- const componentName$a = getComponentName('user-auth-method');
13451
+ const componentName$b = getComponentName('user-auth-method');
13452
13452
  class RawUserAuthMethod extends createBaseClass({
13453
- componentName: componentName$a,
13453
+ componentName: componentName$b,
13454
13454
  baseSelector: ':host > .root',
13455
13455
  }) {
13456
13456
  constructor() {
@@ -13642,11 +13642,11 @@ const UserAuthMethodClass = compose(
13642
13642
  componentNameValidationMixin
13643
13643
  )(RawUserAuthMethod);
13644
13644
 
13645
- customElements.define(componentName$a, UserAuthMethodClass);
13645
+ customElements.define(componentName$b, UserAuthMethodClass);
13646
13646
 
13647
- const componentName$9 = getComponentName('saml-group-mappings-internal');
13647
+ const componentName$a = getComponentName('saml-group-mappings-internal');
13648
13648
 
13649
- const BaseInputClass = createBaseInputClass({ componentName: componentName$9, baseSelector: '' });
13649
+ const BaseInputClass = createBaseInputClass({ componentName: componentName$a, baseSelector: '' });
13650
13650
 
13651
13651
  class SamlGroupMappingsInternal extends BaseInputClass {
13652
13652
  static get observedAttributes() {
@@ -13772,7 +13772,7 @@ class SamlGroupMappingsInternal extends BaseInputClass {
13772
13772
  }
13773
13773
  }
13774
13774
 
13775
- const componentName$8 = getComponentName('saml-group-mappings');
13775
+ const componentName$9 = getComponentName('saml-group-mappings');
13776
13776
 
13777
13777
  const customMixin$3 = (superclass) =>
13778
13778
  class SamlGroupMappingsMixinClass extends superclass {
@@ -13782,14 +13782,14 @@ const customMixin$3 = (superclass) =>
13782
13782
  const template = document.createElement('template');
13783
13783
 
13784
13784
  template.innerHTML = `
13785
- <${componentName$9}
13785
+ <${componentName$a}
13786
13786
  tabindex="-1"
13787
- ></${componentName$9}>
13787
+ ></${componentName$a}>
13788
13788
  `;
13789
13789
 
13790
13790
  this.baseElement.appendChild(template.content.cloneNode(true));
13791
13791
 
13792
- this.inputElement = this.shadowRoot.querySelector(componentName$9);
13792
+ this.inputElement = this.shadowRoot.querySelector(componentName$a);
13793
13793
 
13794
13794
  forwardAttrs(this, this.inputElement, {
13795
13795
  includeAttrs: [
@@ -13866,15 +13866,15 @@ const SamlGroupMappingsClass = compose(
13866
13866
  'options',
13867
13867
  'error-message',
13868
13868
  ],
13869
- componentName: componentName$8,
13869
+ componentName: componentName$9,
13870
13870
  })
13871
13871
  );
13872
13872
 
13873
- customElements.define(componentName$9, SamlGroupMappingsInternal);
13873
+ customElements.define(componentName$a, SamlGroupMappingsInternal);
13874
13874
 
13875
- customElements.define(componentName$8, SamlGroupMappingsClass);
13875
+ customElements.define(componentName$9, SamlGroupMappingsClass);
13876
13876
 
13877
- const componentName$7 = getComponentName('radio-button');
13877
+ const componentName$8 = getComponentName('radio-button');
13878
13878
 
13879
13879
  const customMixin$2 = (superclass) =>
13880
13880
  class CustomMixin extends superclass {
@@ -13939,11 +13939,11 @@ const RadioButtonClass = compose(
13939
13939
  wrappedEleName: 'vaadin-radio-button',
13940
13940
  excludeAttrsSync: ['tabindex', 'data'],
13941
13941
  includeForwardProps: ['checked', 'name', 'disabled'],
13942
- componentName: componentName$7,
13942
+ componentName: componentName$8,
13943
13943
  })
13944
13944
  );
13945
13945
 
13946
- const componentName$6 = getComponentName('radio-group');
13946
+ const componentName$7 = getComponentName('radio-group');
13947
13947
 
13948
13948
  const RadioGroupMixin = (superclass) =>
13949
13949
  class RadioGroupMixinClass extends superclass {
@@ -13958,12 +13958,12 @@ const RadioGroupMixin = (superclass) =>
13958
13958
 
13959
13959
  // we are overriding vaadin children getter so it will run on our custom elements
13960
13960
  Object.defineProperty(this.baseElement, 'children', {
13961
- get: () => this.querySelectorAll(componentName$7),
13961
+ get: () => this.querySelectorAll(componentName$8),
13962
13962
  });
13963
13963
 
13964
13964
  // we are overriding vaadin __filterRadioButtons so it will run on our custom elements
13965
13965
  this.baseElement.__filterRadioButtons = (nodes) => {
13966
- return nodes.filter((node) => node.localName === componentName$7);
13966
+ return nodes.filter((node) => node.localName === componentName$8);
13967
13967
  };
13968
13968
 
13969
13969
  // vaadin radio group missing some input properties
@@ -14113,13 +14113,13 @@ const RadioGroupClass = compose(
14113
14113
  `,
14114
14114
 
14115
14115
  excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
14116
- componentName: componentName$6,
14116
+ componentName: componentName$7,
14117
14117
  includeForwardProps: ['value'],
14118
14118
  })
14119
14119
  );
14120
14120
 
14121
- customElements.define(componentName$6, RadioGroupClass);
14122
- customElements.define(componentName$7, RadioButtonClass);
14121
+ customElements.define(componentName$7, RadioGroupClass);
14122
+ customElements.define(componentName$8, RadioButtonClass);
14123
14123
 
14124
14124
  const activeableMixin = (superclass) =>
14125
14125
  class ActiveableMixinClass extends superclass {
@@ -14136,7 +14136,7 @@ const activeableMixin = (superclass) =>
14136
14136
  }
14137
14137
  };
14138
14138
 
14139
- const componentName$5 = getComponentName('list-item');
14139
+ const componentName$6 = getComponentName('list-item');
14140
14140
 
14141
14141
  const customMixin$1 = (superclass) =>
14142
14142
  class ListItemMixinClass extends superclass {
@@ -14185,11 +14185,11 @@ const ListItemClass = compose(
14185
14185
  componentNameValidationMixin,
14186
14186
  customMixin$1,
14187
14187
  activeableMixin
14188
- )(createBaseClass({ componentName: componentName$5, baseSelector: 'slot' }));
14188
+ )(createBaseClass({ componentName: componentName$6, baseSelector: 'slot' }));
14189
14189
 
14190
- const componentName$4 = getComponentName('list');
14190
+ const componentName$5 = getComponentName('list');
14191
14191
 
14192
- class RawList extends createBaseClass({ componentName: componentName$4, baseSelector: '.wrapper' }) {
14192
+ class RawList extends createBaseClass({ componentName: componentName$5, baseSelector: '.wrapper' }) {
14193
14193
  static get observedAttributes() {
14194
14194
  return ['variant', 'readonly'];
14195
14195
  }
@@ -14336,8 +14336,8 @@ const ListClass = compose(
14336
14336
  componentNameValidationMixin
14337
14337
  )(RawList);
14338
14338
 
14339
- customElements.define(componentName$4, ListClass);
14340
- customElements.define(componentName$5, ListItemClass);
14339
+ customElements.define(componentName$5, ListClass);
14340
+ customElements.define(componentName$6, ListItemClass);
14341
14341
 
14342
14342
  const defaultValidateSchema = () => true;
14343
14343
  const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
@@ -14438,7 +14438,7 @@ const createDynamicDataMixin =
14438
14438
  }
14439
14439
  };
14440
14440
 
14441
- const componentName$3 = getComponentName('apps-list');
14441
+ const componentName$4 = getComponentName('apps-list');
14442
14442
 
14443
14443
  const limitAbbreviation = (str, limit = 2) =>
14444
14444
  str
@@ -14500,7 +14500,7 @@ const AppsListClass = compose(
14500
14500
  slots: ['empty-state'],
14501
14501
  wrappedEleName: 'descope-list',
14502
14502
  excludeAttrsSync: ['tabindex', 'class', 'empty'],
14503
- componentName: componentName$3,
14503
+ componentName: componentName$4,
14504
14504
  style: () => `
14505
14505
  :host {
14506
14506
  width: 100%;
@@ -14525,9 +14525,9 @@ const AppsListClass = compose(
14525
14525
  })
14526
14526
  );
14527
14527
 
14528
- customElements.define(componentName$3, AppsListClass);
14528
+ customElements.define(componentName$4, AppsListClass);
14529
14529
 
14530
- const componentName$2 = getComponentName('scopes-list');
14530
+ const componentName$3 = getComponentName('scopes-list');
14531
14531
  const variants = ['checkbox', 'switch'];
14532
14532
 
14533
14533
  const itemRenderer = ({ id, desc, required = false }, _, ref) => {
@@ -14546,7 +14546,7 @@ const itemRenderer = ({ id, desc, required = false }, _, ref) => {
14546
14546
  `;
14547
14547
  };
14548
14548
 
14549
- class RawScopesList extends createBaseClass({ componentName: componentName$2, baseSelector: 'div' }) {
14549
+ class RawScopesList extends createBaseClass({ componentName: componentName$3, baseSelector: 'div' }) {
14550
14550
  constructor() {
14551
14551
  super();
14552
14552
 
@@ -14651,13 +14651,13 @@ const ScopesListClass = compose(
14651
14651
  componentNameValidationMixin
14652
14652
  )(RawScopesList);
14653
14653
 
14654
- customElements.define(componentName$2, ScopesListClass);
14654
+ customElements.define(componentName$3, ScopesListClass);
14655
14655
 
14656
14656
  var arrowsImg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTQ0OTIgMTUuNjQ1TDcuNDk5OTIgMTRMMi44MzMyNSAxOC42NjY3TDcuNDk5OTIgMjMuMzMzM0w5LjE0NDkyIDIxLjY4ODNMNy4zMDE1OSAxOS44MzMzSDI0Ljk5OTlWMTcuNUg3LjMwMTU5TDkuMTQ0OTIgMTUuNjQ1WiIgZmlsbD0iIzYzNkM3NCIvPgo8cGF0aCBkPSJNMTkuODU1IDEyLjM1NTNMMjEuNSAxNC4wMDAzTDI2LjE2NjcgOS4zMzM2NkwyMS41IDQuNjY2OTlMMTkuODU1IDYuMzExOTlMMjEuNjk4MyA4LjE2Njk5SDRWMTAuNTAwM0gyMS42OTgzTDE5Ljg1NSAxMi4zNTUzWiIgZmlsbD0iIzYzNkM3NCIvPgo8L3N2Zz4K";
14657
14657
 
14658
- const componentName$1 = getComponentName('third-party-app-logo');
14658
+ const componentName$2 = getComponentName('third-party-app-logo');
14659
14659
  class RawThirdPartyAppLogoClass extends createBaseClass({
14660
- componentName: componentName$1,
14660
+ componentName: componentName$2,
14661
14661
  baseSelector: '.wrapper',
14662
14662
  }) {
14663
14663
  constructor() {
@@ -14675,6 +14675,7 @@ class RawThirdPartyAppLogoClass extends createBaseClass({
14675
14675
  display: flex;
14676
14676
  justify-content: center;
14677
14677
  align-items: center;
14678
+ min-width: max-content;
14678
14679
  }
14679
14680
 
14680
14681
  .third-party-app-logo {
@@ -14750,7 +14751,248 @@ const ThirdPartyAppLogoClass = compose(
14750
14751
  componentNameValidationMixin
14751
14752
  )(RawThirdPartyAppLogoClass);
14752
14753
 
14753
- customElements.define(componentName$1, ThirdPartyAppLogoClass);
14754
+ customElements.define(componentName$2, ThirdPartyAppLogoClass);
14755
+
14756
+ const componentName$1 = getComponentName('security-questions-setup');
14757
+
14758
+ const attrsToSync = [
14759
+ 'full-width',
14760
+ 'readonly',
14761
+ 'size',
14762
+ 'label-type',
14763
+ 'question-label',
14764
+ 'question-placeholder',
14765
+ 'question-data-errormessage-value-missing',
14766
+ 'answer-label',
14767
+ 'answer-placeholder',
14768
+ 'answer-data-errormessage-value-missing',
14769
+ ];
14770
+
14771
+ const attrsToReRender = ['count', 'questions'];
14772
+ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$1, baseSelector: 'div' }) {
14773
+ constructor() {
14774
+ super();
14775
+
14776
+ this.attachShadow({ mode: 'open' }).innerHTML = `
14777
+ <style>
14778
+ :host {
14779
+ display: inline-flex;
14780
+ }
14781
+
14782
+ div {
14783
+ display: flex;
14784
+ flex-direction: column;
14785
+ }
14786
+
14787
+ </style>
14788
+ <div></div>
14789
+ `;
14790
+ }
14791
+
14792
+ get isReadOnly() {
14793
+ return this.getAttribute('readonly') === 'true';
14794
+ }
14795
+
14796
+ get size() {
14797
+ return this.getAttribute('size') || 'sm';
14798
+ }
14799
+
14800
+ get count() {
14801
+ return Number(this.getAttribute('count')) || 0;
14802
+ }
14803
+
14804
+ #renderQuestions() {
14805
+ const res = Array.from({ length: this.count }).map(
14806
+ (_, index) =>
14807
+ // <!--html-->
14808
+ `
14809
+ <div class="question-wrapper">
14810
+ <descope-combo-box
14811
+ data-id="${index}"
14812
+ item-label-path="data-name"
14813
+ item-value-path="data-id"
14814
+ bordered="true"
14815
+ required="true"
14816
+ clear-button-visible="true"
14817
+ ></descope-combo-box>
14818
+
14819
+ <descope-text-field
14820
+ data-id="${index}"
14821
+ required="true"
14822
+ bordered="true"
14823
+ minlength="2"
14824
+ ></descope-text-field>
14825
+ </div>
14826
+ `
14827
+ // <!--!html-->
14828
+ );
14829
+
14830
+ this.baseElement.innerHTML = res.join(
14831
+ '<spacer></spacer><descope-divider></descope-divider><spacer></spacer>'
14832
+ );
14833
+
14834
+ this.comboBoxes.forEach((el) => {
14835
+ el.addEventListener('change', (e) => {
14836
+ this.updateRemainingCombosData(e.target);
14837
+ const AttachedTextField = this.getAttachedTextField(e.target);
14838
+
14839
+ AttachedTextField.value = '';
14840
+ });
14841
+
14842
+ // eslint-disable-next-line no-param-reassign
14843
+ el.data = this.data;
14844
+ });
14845
+
14846
+ this.#syncAttrs(attrsToSync);
14847
+ }
14848
+
14849
+ getAttachedTextField(combo) {
14850
+ const selector = `descope-text-field[data-id="${combo.getAttribute('data-id')}"]`;
14851
+
14852
+ return this.baseElement.querySelector(selector);
14853
+ }
14854
+
14855
+ filterData(comboValue) {
14856
+ const res = this.data.filter((item) => {
14857
+ return item.value === comboValue || !this.selectedQuestionIds.includes(item.value);
14858
+ });
14859
+
14860
+ return res;
14861
+ }
14862
+
14863
+ reportValidity() {
14864
+ this.inputs.reverse().forEach((el) => el.reportValidity());
14865
+
14866
+ return this.checkValidity();
14867
+ }
14868
+
14869
+ checkValidity() {
14870
+ return [...this.comboBoxes, ...this.textFields].every((el) => el.checkValidity());
14871
+ }
14872
+
14873
+ updateRemainingCombosData(sourceCombo) {
14874
+ this.comboBoxes
14875
+ .filter((combo) => combo !== sourceCombo)
14876
+ .forEach((combo) => {
14877
+ // eslint-disable-next-line no-param-reassign
14878
+ combo.data = this.filterData(combo.value);
14879
+ });
14880
+ }
14881
+
14882
+ get questions() {
14883
+ try {
14884
+ return JSON.parse(this.getAttribute('questions')) || [];
14885
+ } catch (e) {
14886
+ // eslint-disable-next-line no-console
14887
+ console.error(componentName$1, 'Error parsing data attribute', e);
14888
+ return [];
14889
+ }
14890
+ }
14891
+
14892
+ // this returns the structure expected by the combo box
14893
+ get data() {
14894
+ return this.questions.map(({ id, text }) => ({ value: id, label: text }));
14895
+ }
14896
+
14897
+ get comboBoxes() {
14898
+ return Array.from(this.baseElement.querySelectorAll('descope-combo-box'));
14899
+ }
14900
+
14901
+ get textFields() {
14902
+ return Array.from(this.baseElement.querySelectorAll('descope-text-field'));
14903
+ }
14904
+
14905
+ get inputs() {
14906
+ return Array.from(this.baseElement.querySelectorAll('descope-combo-box, descope-text-field'));
14907
+ }
14908
+
14909
+ get selectedQuestionIds() {
14910
+ return this.comboBoxes.map((el) => el.value);
14911
+ }
14912
+
14913
+ get value() {
14914
+ return this.comboBoxes.map((combo) => {
14915
+ const id = combo.value;
14916
+ const answer = this.getAttachedTextField(combo).value;
14917
+
14918
+ return { id, answer };
14919
+ });
14920
+ }
14921
+
14922
+ set value(val = []) {
14923
+ val.forEach((item, index) => {
14924
+ const combo = this.comboBoxes[index];
14925
+ const textField = this.getAttachedTextField(combo);
14926
+
14927
+ combo.value = item.id;
14928
+ textField.value = item.answer;
14929
+ });
14930
+ }
14931
+
14932
+ // eslint-disable-next-line class-methods-use-this
14933
+ #updateAttribute(ele, attrName, value) {
14934
+ if (value === null) ele.removeAttribute(attrName);
14935
+ else ele.setAttribute(attrName, value);
14936
+ }
14937
+
14938
+ #syncAttrs(attrs) {
14939
+ const componentMap = {
14940
+ question: this.comboBoxes,
14941
+ answer: this.textFields,
14942
+ };
14943
+
14944
+ attrs.forEach((attr) => {
14945
+ const [maybeComponentType, ...rest] = attr.split('-');
14946
+ const elements = componentMap[maybeComponentType] || this.inputs;
14947
+ const attrName = componentMap[maybeComponentType] ? rest.join('-') : attr;
14948
+
14949
+ elements.forEach((el) => {
14950
+ this.#updateAttribute(el, attrName, this.getAttribute(attr));
14951
+ });
14952
+ });
14953
+ }
14954
+
14955
+ init() {
14956
+ super.init?.();
14957
+ // render new components
14958
+ observeAttributes(
14959
+ this,
14960
+ () => {
14961
+ this.#renderQuestions();
14962
+ },
14963
+ { includeAttrs: attrsToReRender }
14964
+ );
14965
+
14966
+ // update existing components
14967
+ observeAttributes(this, this.#syncAttrs.bind(this), {
14968
+ includeAttrs: attrsToSync,
14969
+ });
14970
+ }
14971
+ }
14972
+
14973
+ const SecurityQuestionsSetupClass = compose(
14974
+ createStyleMixin({
14975
+ mappings: {
14976
+ hostWidth: [{ selector: () => ':host', property: 'width' }, { property: 'width' }],
14977
+ hostDirection: [
14978
+ { selector: () => ':host', property: 'direction' },
14979
+ {
14980
+ selector: () => ComboBoxClass.componentName,
14981
+ property: ComboBoxClass.cssVarList.hostDirection,
14982
+ },
14983
+ {
14984
+ selector: () => TextFieldClass.componentName,
14985
+ property: TextFieldClass.cssVarList.hostDirection,
14986
+ },
14987
+ ],
14988
+ gap: { selector: () => 'div', property: 'gap' },
14989
+ },
14990
+ }),
14991
+ draggableMixin,
14992
+ componentNameValidationMixin
14993
+ )(RawSecurityQuestionsSetup);
14994
+
14995
+ customElements.define(componentName$1, SecurityQuestionsSetupClass);
14754
14996
 
14755
14997
  const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
14756
14998
 
@@ -15182,7 +15424,7 @@ const globals = {
15182
15424
  fonts,
15183
15425
  direction,
15184
15426
  };
15185
- const vars$Q = getThemeVars(globals);
15427
+ const vars$R = getThemeVars(globals);
15186
15428
 
15187
15429
  const globalRefs$y = getThemeRefs(globals);
15188
15430
  const compVars$6 = ButtonClass.cssVarList;
@@ -15195,7 +15437,7 @@ const mode = {
15195
15437
  surface: globalRefs$y.colors.surface,
15196
15438
  };
15197
15439
 
15198
- const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$11);
15440
+ const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$12);
15199
15441
 
15200
15442
  const button = {
15201
15443
  ...helperTheme$4,
@@ -15307,7 +15549,7 @@ const button = {
15307
15549
  },
15308
15550
  };
15309
15551
 
15310
- const vars$P = {
15552
+ const vars$Q = {
15311
15553
  ...compVars$6,
15312
15554
  ...helperVars$4,
15313
15555
  };
@@ -15315,13 +15557,13 @@ const vars$P = {
15315
15557
  var button$1 = /*#__PURE__*/Object.freeze({
15316
15558
  __proto__: null,
15317
15559
  default: button,
15318
- vars: vars$P
15560
+ vars: vars$Q
15319
15561
  });
15320
15562
 
15321
15563
  const componentName = getComponentName('input-wrapper');
15322
15564
  const globalRefs$x = getThemeRefs(globals);
15323
15565
 
15324
- const [theme$1, refs, vars$O] = createHelperVars(
15566
+ const [theme$1, refs, vars$P] = createHelperVars(
15325
15567
  {
15326
15568
  labelTextColor: globalRefs$x.colors.surface.dark,
15327
15569
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
@@ -15440,13 +15682,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
15440
15682
  __proto__: null,
15441
15683
  default: theme$1,
15442
15684
  refs: refs,
15443
- vars: vars$O
15685
+ vars: vars$P
15444
15686
  });
15445
15687
 
15446
15688
  const globalRefs$w = getThemeRefs(globals);
15447
- const vars$N = TextFieldClass.cssVarList;
15689
+ const vars$O = TextFieldClass.cssVarList;
15448
15690
 
15449
15691
  const textField = {
15692
+ [vars$O.hostWidth]: refs.width,
15693
+ [vars$O.hostMinWidth]: refs.minWidth,
15694
+ [vars$O.hostDirection]: refs.direction,
15695
+ [vars$O.fontSize]: refs.fontSize,
15696
+ [vars$O.fontFamily]: refs.fontFamily,
15697
+ [vars$O.labelFontSize]: refs.labelFontSize,
15698
+ [vars$O.labelFontWeight]: refs.labelFontWeight,
15699
+ [vars$O.labelTextColor]: refs.labelTextColor,
15700
+ [vars$O.labelRequiredIndicator]: refs.requiredIndicator,
15701
+ [vars$O.errorMessageTextColor]: refs.errorMessageTextColor,
15702
+ [vars$O.inputValueTextColor]: refs.valueTextColor,
15703
+ [vars$O.inputPlaceholderColor]: refs.placeholderTextColor,
15704
+ [vars$O.inputBorderWidth]: refs.borderWidth,
15705
+ [vars$O.inputBorderStyle]: refs.borderStyle,
15706
+ [vars$O.inputBorderColor]: refs.borderColor,
15707
+ [vars$O.inputBorderRadius]: refs.borderRadius,
15708
+ [vars$O.inputOutlineWidth]: refs.outlineWidth,
15709
+ [vars$O.inputOutlineStyle]: refs.outlineStyle,
15710
+ [vars$O.inputOutlineColor]: refs.outlineColor,
15711
+ [vars$O.inputOutlineOffset]: refs.outlineOffset,
15712
+ [vars$O.inputBackgroundColor]: refs.backgroundColor,
15713
+ [vars$O.inputHeight]: refs.inputHeight,
15714
+ [vars$O.inputHorizontalPadding]: refs.horizontalPadding,
15715
+ [vars$O.helperTextColor]: refs.helperTextColor,
15716
+ [vars$O.textAlign]: refs.textAlign,
15717
+ textAlign: {
15718
+ right: { [vars$O.inputTextAlign]: 'right' },
15719
+ left: { [vars$O.inputTextAlign]: 'left' },
15720
+ center: { [vars$O.inputTextAlign]: 'center' },
15721
+ },
15722
+ [vars$O.labelPosition]: refs.labelPosition,
15723
+ [vars$O.labelTopPosition]: refs.labelTopPosition,
15724
+ [vars$O.labelHorizontalPosition]: refs.labelHorizontalPosition,
15725
+ [vars$O.inputTransformY]: refs.inputTransformY,
15726
+ [vars$O.inputTransition]: refs.inputTransition,
15727
+ [vars$O.marginInlineStart]: refs.marginInlineStart,
15728
+ [vars$O.placeholderOpacity]: refs.placeholderOpacity,
15729
+ [vars$O.inputVerticalAlignment]: refs.inputVerticalAlignment,
15730
+ [vars$O.valueInputHeight]: refs.valueInputHeight,
15731
+ [vars$O.valueInputMarginBottom]: refs.valueInputMarginBottom,
15732
+ [vars$O.inputIconOffset]: globalRefs$w.spacing.md,
15733
+ [vars$O.inputIconSize]: refs.inputIconSize,
15734
+ [vars$O.inputIconColor]: refs.placeholderTextColor,
15735
+ };
15736
+
15737
+ var textField$1 = /*#__PURE__*/Object.freeze({
15738
+ __proto__: null,
15739
+ default: textField,
15740
+ textField: textField,
15741
+ vars: vars$O
15742
+ });
15743
+
15744
+ const globalRefs$v = getThemeRefs(globals);
15745
+ const vars$N = PasswordClass.cssVarList;
15746
+
15747
+ const password = {
15450
15748
  [vars$N.hostWidth]: refs.width,
15451
15749
  [vars$N.hostMinWidth]: refs.minWidth,
15452
15750
  [vars$N.hostDirection]: refs.direction,
@@ -15455,10 +15753,13 @@ const textField = {
15455
15753
  [vars$N.labelFontSize]: refs.labelFontSize,
15456
15754
  [vars$N.labelFontWeight]: refs.labelFontWeight,
15457
15755
  [vars$N.labelTextColor]: refs.labelTextColor,
15458
- [vars$N.labelRequiredIndicator]: refs.requiredIndicator,
15459
15756
  [vars$N.errorMessageTextColor]: refs.errorMessageTextColor,
15757
+ [vars$N.inputHorizontalPadding]: refs.horizontalPadding,
15758
+ [vars$N.inputHeight]: refs.inputHeight,
15759
+ [vars$N.inputBackgroundColor]: refs.backgroundColor,
15760
+ [vars$N.labelRequiredIndicator]: refs.requiredIndicator,
15460
15761
  [vars$N.inputValueTextColor]: refs.valueTextColor,
15461
- [vars$N.inputPlaceholderColor]: refs.placeholderTextColor,
15762
+ [vars$N.inputPlaceholderTextColor]: refs.placeholderTextColor,
15462
15763
  [vars$N.inputBorderWidth]: refs.borderWidth,
15463
15764
  [vars$N.inputBorderStyle]: refs.borderStyle,
15464
15765
  [vars$N.inputBorderColor]: refs.borderColor,
@@ -15467,16 +15768,9 @@ const textField = {
15467
15768
  [vars$N.inputOutlineStyle]: refs.outlineStyle,
15468
15769
  [vars$N.inputOutlineColor]: refs.outlineColor,
15469
15770
  [vars$N.inputOutlineOffset]: refs.outlineOffset,
15470
- [vars$N.inputBackgroundColor]: refs.backgroundColor,
15471
- [vars$N.inputHeight]: refs.inputHeight,
15472
- [vars$N.inputHorizontalPadding]: refs.horizontalPadding,
15473
- [vars$N.helperTextColor]: refs.helperTextColor,
15474
- [vars$N.textAlign]: refs.textAlign,
15475
- textAlign: {
15476
- right: { [vars$N.inputTextAlign]: 'right' },
15477
- left: { [vars$N.inputTextAlign]: 'left' },
15478
- center: { [vars$N.inputTextAlign]: 'center' },
15479
- },
15771
+ [vars$N.revealButtonOffset]: globalRefs$v.spacing.md,
15772
+ [vars$N.revealButtonSize]: refs.toggleButtonSize,
15773
+ [vars$N.revealButtonColor]: refs.placeholderTextColor,
15480
15774
  [vars$N.labelPosition]: refs.labelPosition,
15481
15775
  [vars$N.labelTopPosition]: refs.labelTopPosition,
15482
15776
  [vars$N.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15486,23 +15780,17 @@ const textField = {
15486
15780
  [vars$N.placeholderOpacity]: refs.placeholderOpacity,
15487
15781
  [vars$N.inputVerticalAlignment]: refs.inputVerticalAlignment,
15488
15782
  [vars$N.valueInputHeight]: refs.valueInputHeight,
15489
- [vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
15490
- [vars$N.inputIconOffset]: globalRefs$w.spacing.md,
15491
- [vars$N.inputIconSize]: refs.inputIconSize,
15492
- [vars$N.inputIconColor]: refs.placeholderTextColor,
15493
15783
  };
15494
15784
 
15495
- var textField$1 = /*#__PURE__*/Object.freeze({
15785
+ var password$1 = /*#__PURE__*/Object.freeze({
15496
15786
  __proto__: null,
15497
- default: textField,
15498
- textField: textField,
15787
+ default: password,
15499
15788
  vars: vars$N
15500
15789
  });
15501
15790
 
15502
- const globalRefs$v = getThemeRefs(globals);
15503
- const vars$M = PasswordClass.cssVarList;
15791
+ const vars$M = NumberFieldClass.cssVarList;
15504
15792
 
15505
- const password = {
15793
+ const numberField = {
15506
15794
  [vars$M.hostWidth]: refs.width,
15507
15795
  [vars$M.hostMinWidth]: refs.minWidth,
15508
15796
  [vars$M.hostDirection]: refs.direction,
@@ -15512,12 +15800,8 @@ const password = {
15512
15800
  [vars$M.labelFontWeight]: refs.labelFontWeight,
15513
15801
  [vars$M.labelTextColor]: refs.labelTextColor,
15514
15802
  [vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
15515
- [vars$M.inputHorizontalPadding]: refs.horizontalPadding,
15516
- [vars$M.inputHeight]: refs.inputHeight,
15517
- [vars$M.inputBackgroundColor]: refs.backgroundColor,
15518
- [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
15519
15803
  [vars$M.inputValueTextColor]: refs.valueTextColor,
15520
- [vars$M.inputPlaceholderTextColor]: refs.placeholderTextColor,
15804
+ [vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
15521
15805
  [vars$M.inputBorderWidth]: refs.borderWidth,
15522
15806
  [vars$M.inputBorderStyle]: refs.borderStyle,
15523
15807
  [vars$M.inputBorderColor]: refs.borderColor,
@@ -15526,9 +15810,10 @@ const password = {
15526
15810
  [vars$M.inputOutlineStyle]: refs.outlineStyle,
15527
15811
  [vars$M.inputOutlineColor]: refs.outlineColor,
15528
15812
  [vars$M.inputOutlineOffset]: refs.outlineOffset,
15529
- [vars$M.revealButtonOffset]: globalRefs$v.spacing.md,
15530
- [vars$M.revealButtonSize]: refs.toggleButtonSize,
15531
- [vars$M.revealButtonColor]: refs.placeholderTextColor,
15813
+ [vars$M.inputBackgroundColor]: refs.backgroundColor,
15814
+ [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
15815
+ [vars$M.inputHorizontalPadding]: refs.horizontalPadding,
15816
+ [vars$M.inputHeight]: refs.inputHeight,
15532
15817
  [vars$M.labelPosition]: refs.labelPosition,
15533
15818
  [vars$M.labelTopPosition]: refs.labelTopPosition,
15534
15819
  [vars$M.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15538,17 +15823,18 @@ const password = {
15538
15823
  [vars$M.placeholderOpacity]: refs.placeholderOpacity,
15539
15824
  [vars$M.inputVerticalAlignment]: refs.inputVerticalAlignment,
15540
15825
  [vars$M.valueInputHeight]: refs.valueInputHeight,
15826
+ [vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
15541
15827
  };
15542
15828
 
15543
- var password$1 = /*#__PURE__*/Object.freeze({
15829
+ var numberField$1 = /*#__PURE__*/Object.freeze({
15544
15830
  __proto__: null,
15545
- default: password,
15831
+ default: numberField,
15546
15832
  vars: vars$M
15547
15833
  });
15548
15834
 
15549
- const vars$L = NumberFieldClass.cssVarList;
15835
+ const vars$L = EmailFieldClass.cssVarList;
15550
15836
 
15551
- const numberField = {
15837
+ const emailField = {
15552
15838
  [vars$L.hostWidth]: refs.width,
15553
15839
  [vars$L.hostMinWidth]: refs.minWidth,
15554
15840
  [vars$L.hostDirection]: refs.direction,
@@ -15559,6 +15845,7 @@ const numberField = {
15559
15845
  [vars$L.labelTextColor]: refs.labelTextColor,
15560
15846
  [vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
15561
15847
  [vars$L.inputValueTextColor]: refs.valueTextColor,
15848
+ [vars$L.labelRequiredIndicator]: refs.requiredIndicator,
15562
15849
  [vars$L.inputPlaceholderColor]: refs.placeholderTextColor,
15563
15850
  [vars$L.inputBorderWidth]: refs.borderWidth,
15564
15851
  [vars$L.inputBorderStyle]: refs.borderStyle,
@@ -15569,7 +15856,6 @@ const numberField = {
15569
15856
  [vars$L.inputOutlineColor]: refs.outlineColor,
15570
15857
  [vars$L.inputOutlineOffset]: refs.outlineOffset,
15571
15858
  [vars$L.inputBackgroundColor]: refs.backgroundColor,
15572
- [vars$L.labelRequiredIndicator]: refs.requiredIndicator,
15573
15859
  [vars$L.inputHorizontalPadding]: refs.horizontalPadding,
15574
15860
  [vars$L.inputHeight]: refs.inputHeight,
15575
15861
  [vars$L.labelPosition]: refs.labelPosition,
@@ -15584,197 +15870,153 @@ const numberField = {
15584
15870
  [vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
15585
15871
  };
15586
15872
 
15587
- var numberField$1 = /*#__PURE__*/Object.freeze({
15873
+ var emailField$1 = /*#__PURE__*/Object.freeze({
15588
15874
  __proto__: null,
15589
- default: numberField,
15875
+ default: emailField,
15590
15876
  vars: vars$L
15591
15877
  });
15592
15878
 
15593
- const vars$K = EmailFieldClass.cssVarList;
15879
+ const vars$K = TextAreaClass.cssVarList;
15594
15880
 
15595
- const emailField = {
15881
+ const textArea = {
15596
15882
  [vars$K.hostWidth]: refs.width,
15597
15883
  [vars$K.hostMinWidth]: refs.minWidth,
15598
15884
  [vars$K.hostDirection]: refs.direction,
15599
15885
  [vars$K.fontSize]: refs.fontSize,
15600
15886
  [vars$K.fontFamily]: refs.fontFamily,
15601
- [vars$K.labelFontSize]: refs.labelFontSize,
15602
- [vars$K.labelFontWeight]: refs.labelFontWeight,
15603
15887
  [vars$K.labelTextColor]: refs.labelTextColor,
15888
+ [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
15604
15889
  [vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
15890
+ [vars$K.inputBackgroundColor]: refs.backgroundColor,
15605
15891
  [vars$K.inputValueTextColor]: refs.valueTextColor,
15606
- [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
15607
- [vars$K.inputPlaceholderColor]: refs.placeholderTextColor,
15892
+ [vars$K.inputPlaceholderTextColor]: refs.placeholderTextColor,
15893
+ [vars$K.inputBorderRadius]: refs.borderRadius,
15608
15894
  [vars$K.inputBorderWidth]: refs.borderWidth,
15609
15895
  [vars$K.inputBorderStyle]: refs.borderStyle,
15610
15896
  [vars$K.inputBorderColor]: refs.borderColor,
15611
- [vars$K.inputBorderRadius]: refs.borderRadius,
15612
15897
  [vars$K.inputOutlineWidth]: refs.outlineWidth,
15613
15898
  [vars$K.inputOutlineStyle]: refs.outlineStyle,
15614
15899
  [vars$K.inputOutlineColor]: refs.outlineColor,
15615
15900
  [vars$K.inputOutlineOffset]: refs.outlineOffset,
15616
- [vars$K.inputBackgroundColor]: refs.backgroundColor,
15617
- [vars$K.inputHorizontalPadding]: refs.horizontalPadding,
15618
- [vars$K.inputHeight]: refs.inputHeight,
15619
- [vars$K.labelPosition]: refs.labelPosition,
15620
- [vars$K.labelTopPosition]: refs.labelTopPosition,
15621
- [vars$K.labelHorizontalPosition]: refs.labelHorizontalPosition,
15622
- [vars$K.inputTransformY]: refs.inputTransformY,
15623
- [vars$K.inputTransition]: refs.inputTransition,
15624
- [vars$K.marginInlineStart]: refs.marginInlineStart,
15625
- [vars$K.placeholderOpacity]: refs.placeholderOpacity,
15626
- [vars$K.inputVerticalAlignment]: refs.inputVerticalAlignment,
15627
- [vars$K.valueInputHeight]: refs.valueInputHeight,
15628
- [vars$K.valueInputMarginBottom]: refs.valueInputMarginBottom,
15901
+ [vars$K.inputResizeType]: 'vertical',
15902
+ [vars$K.inputMinHeight]: '5em',
15903
+ textAlign: {
15904
+ right: { [vars$K.inputTextAlign]: 'right' },
15905
+ left: { [vars$K.inputTextAlign]: 'left' },
15906
+ center: { [vars$K.inputTextAlign]: 'center' },
15907
+ },
15908
+
15909
+ _readonly: {
15910
+ [vars$K.inputResizeType]: 'none',
15911
+ },
15629
15912
  };
15630
15913
 
15631
- var emailField$1 = /*#__PURE__*/Object.freeze({
15914
+ var textArea$1 = /*#__PURE__*/Object.freeze({
15632
15915
  __proto__: null,
15633
- default: emailField,
15916
+ default: textArea,
15634
15917
  vars: vars$K
15635
15918
  });
15636
15919
 
15637
- const vars$J = TextAreaClass.cssVarList;
15920
+ const vars$J = CheckboxClass.cssVarList;
15921
+ const checkboxSize = '1.35em';
15638
15922
 
15639
- const textArea = {
15923
+ const checkbox = {
15640
15924
  [vars$J.hostWidth]: refs.width,
15641
- [vars$J.hostMinWidth]: refs.minWidth,
15642
15925
  [vars$J.hostDirection]: refs.direction,
15643
15926
  [vars$J.fontSize]: refs.fontSize,
15644
15927
  [vars$J.fontFamily]: refs.fontFamily,
15645
15928
  [vars$J.labelTextColor]: refs.labelTextColor,
15646
15929
  [vars$J.labelRequiredIndicator]: refs.requiredIndicator,
15930
+ [vars$J.labelFontWeight]: '400',
15931
+ [vars$J.labelLineHeight]: checkboxSize,
15932
+ [vars$J.labelSpacing]: '1em',
15647
15933
  [vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
15648
- [vars$J.inputBackgroundColor]: refs.backgroundColor,
15649
- [vars$J.inputValueTextColor]: refs.valueTextColor,
15650
- [vars$J.inputPlaceholderTextColor]: refs.placeholderTextColor,
15934
+ [vars$J.inputOutlineWidth]: refs.outlineWidth,
15935
+ [vars$J.inputOutlineOffset]: refs.outlineOffset,
15936
+ [vars$J.inputOutlineColor]: refs.outlineColor,
15937
+ [vars$J.inputOutlineStyle]: refs.outlineStyle,
15651
15938
  [vars$J.inputBorderRadius]: refs.borderRadius,
15939
+ [vars$J.inputBorderColor]: refs.borderColor,
15652
15940
  [vars$J.inputBorderWidth]: refs.borderWidth,
15653
15941
  [vars$J.inputBorderStyle]: refs.borderStyle,
15654
- [vars$J.inputBorderColor]: refs.borderColor,
15655
- [vars$J.inputOutlineWidth]: refs.outlineWidth,
15656
- [vars$J.inputOutlineStyle]: refs.outlineStyle,
15657
- [vars$J.inputOutlineColor]: refs.outlineColor,
15658
- [vars$J.inputOutlineOffset]: refs.outlineOffset,
15659
- [vars$J.inputResizeType]: 'vertical',
15660
- [vars$J.inputMinHeight]: '5em',
15661
- textAlign: {
15662
- right: { [vars$J.inputTextAlign]: 'right' },
15663
- left: { [vars$J.inputTextAlign]: 'left' },
15664
- center: { [vars$J.inputTextAlign]: 'center' },
15665
- },
15666
-
15667
- _readonly: {
15668
- [vars$J.inputResizeType]: 'none',
15669
- },
15942
+ [vars$J.inputBackgroundColor]: refs.backgroundColor,
15943
+ [vars$J.inputSize]: checkboxSize,
15944
+ [vars$J.inputValueTextColor]: refs.valueTextColor,
15670
15945
  };
15671
15946
 
15672
- var textArea$1 = /*#__PURE__*/Object.freeze({
15947
+ var checkbox$1 = /*#__PURE__*/Object.freeze({
15673
15948
  __proto__: null,
15674
- default: textArea,
15949
+ default: checkbox,
15675
15950
  vars: vars$J
15676
15951
  });
15677
15952
 
15678
- const vars$I = CheckboxClass.cssVarList;
15679
- const checkboxSize = '1.35em';
15953
+ const knobMargin = '2px';
15954
+ const checkboxHeight = '1.25em';
15680
15955
 
15681
- const checkbox = {
15956
+ const globalRefs$u = getThemeRefs(globals);
15957
+ const vars$I = SwitchToggleClass.cssVarList;
15958
+
15959
+ const switchToggle = {
15682
15960
  [vars$I.hostWidth]: refs.width,
15683
15961
  [vars$I.hostDirection]: refs.direction,
15684
15962
  [vars$I.fontSize]: refs.fontSize,
15685
15963
  [vars$I.fontFamily]: refs.fontFamily,
15686
- [vars$I.labelTextColor]: refs.labelTextColor,
15687
- [vars$I.labelRequiredIndicator]: refs.requiredIndicator,
15688
- [vars$I.labelFontWeight]: '400',
15689
- [vars$I.labelLineHeight]: checkboxSize,
15690
- [vars$I.labelSpacing]: '1em',
15691
- [vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
15964
+
15692
15965
  [vars$I.inputOutlineWidth]: refs.outlineWidth,
15693
15966
  [vars$I.inputOutlineOffset]: refs.outlineOffset,
15694
15967
  [vars$I.inputOutlineColor]: refs.outlineColor,
15695
15968
  [vars$I.inputOutlineStyle]: refs.outlineStyle,
15696
- [vars$I.inputBorderRadius]: refs.borderRadius,
15697
- [vars$I.inputBorderColor]: refs.borderColor,
15698
- [vars$I.inputBorderWidth]: refs.borderWidth,
15699
- [vars$I.inputBorderStyle]: refs.borderStyle,
15700
- [vars$I.inputBackgroundColor]: refs.backgroundColor,
15701
- [vars$I.inputSize]: checkboxSize,
15702
- [vars$I.inputValueTextColor]: refs.valueTextColor,
15703
- };
15704
-
15705
- var checkbox$1 = /*#__PURE__*/Object.freeze({
15706
- __proto__: null,
15707
- default: checkbox,
15708
- vars: vars$I
15709
- });
15710
15969
 
15711
- const knobMargin = '2px';
15712
- const checkboxHeight = '1.25em';
15970
+ [vars$I.trackBorderStyle]: refs.borderStyle,
15971
+ [vars$I.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
15972
+ [vars$I.trackBorderColor]: refs.borderColor,
15973
+ [vars$I.trackBackgroundColor]: refs.backgroundColor,
15974
+ [vars$I.trackBorderRadius]: globalRefs$u.radius.md,
15975
+ [vars$I.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
15976
+ [vars$I.trackHeight]: checkboxHeight,
15977
+
15978
+ [vars$I.knobSize]: `calc(1em - ${knobMargin})`,
15979
+ [vars$I.knobRadius]: '50%',
15980
+ [vars$I.knobTopOffset]: '1px',
15981
+ [vars$I.knobLeftOffset]: knobMargin,
15982
+ [vars$I.knobColor]: refs.labelTextColor,
15983
+ [vars$I.knobTransitionDuration]: '0.3s',
15713
15984
 
15714
- const globalRefs$u = getThemeRefs(globals);
15715
- const vars$H = SwitchToggleClass.cssVarList;
15716
-
15717
- const switchToggle = {
15718
- [vars$H.hostWidth]: refs.width,
15719
- [vars$H.hostDirection]: refs.direction,
15720
- [vars$H.fontSize]: refs.fontSize,
15721
- [vars$H.fontFamily]: refs.fontFamily,
15722
-
15723
- [vars$H.inputOutlineWidth]: refs.outlineWidth,
15724
- [vars$H.inputOutlineOffset]: refs.outlineOffset,
15725
- [vars$H.inputOutlineColor]: refs.outlineColor,
15726
- [vars$H.inputOutlineStyle]: refs.outlineStyle,
15727
-
15728
- [vars$H.trackBorderStyle]: refs.borderStyle,
15729
- [vars$H.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
15730
- [vars$H.trackBorderColor]: refs.borderColor,
15731
- [vars$H.trackBackgroundColor]: refs.backgroundColor,
15732
- [vars$H.trackBorderRadius]: globalRefs$u.radius.md,
15733
- [vars$H.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
15734
- [vars$H.trackHeight]: checkboxHeight,
15735
-
15736
- [vars$H.knobSize]: `calc(1em - ${knobMargin})`,
15737
- [vars$H.knobRadius]: '50%',
15738
- [vars$H.knobTopOffset]: '1px',
15739
- [vars$H.knobLeftOffset]: knobMargin,
15740
- [vars$H.knobColor]: refs.labelTextColor,
15741
- [vars$H.knobTransitionDuration]: '0.3s',
15742
-
15743
- [vars$H.labelTextColor]: refs.labelTextColor,
15744
- [vars$H.labelFontWeight]: '400',
15745
- [vars$H.labelLineHeight]: '1.35em',
15746
- [vars$H.labelSpacing]: '1em',
15747
- [vars$H.labelRequiredIndicator]: refs.requiredIndicator,
15748
- [vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
15985
+ [vars$I.labelTextColor]: refs.labelTextColor,
15986
+ [vars$I.labelFontWeight]: '400',
15987
+ [vars$I.labelLineHeight]: '1.35em',
15988
+ [vars$I.labelSpacing]: '1em',
15989
+ [vars$I.labelRequiredIndicator]: refs.requiredIndicator,
15990
+ [vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
15749
15991
 
15750
15992
  _checked: {
15751
- [vars$H.trackBorderColor]: refs.borderColor,
15752
- [vars$H.knobLeftOffset]: `calc(100% - var(${vars$H.knobSize}) - ${knobMargin})`,
15753
- [vars$H.knobColor]: refs.valueTextColor,
15754
- [vars$H.knobTextColor]: refs.valueTextColor,
15993
+ [vars$I.trackBorderColor]: refs.borderColor,
15994
+ [vars$I.knobLeftOffset]: `calc(100% - var(${vars$I.knobSize}) - ${knobMargin})`,
15995
+ [vars$I.knobColor]: refs.valueTextColor,
15996
+ [vars$I.knobTextColor]: refs.valueTextColor,
15755
15997
  },
15756
15998
 
15757
15999
  _disabled: {
15758
- [vars$H.knobColor]: globalRefs$u.colors.surface.light,
15759
- [vars$H.trackBorderColor]: globalRefs$u.colors.surface.light,
15760
- [vars$H.trackBackgroundColor]: globalRefs$u.colors.surface.main,
15761
- [vars$H.labelTextColor]: refs.labelTextColor,
16000
+ [vars$I.knobColor]: globalRefs$u.colors.surface.light,
16001
+ [vars$I.trackBorderColor]: globalRefs$u.colors.surface.light,
16002
+ [vars$I.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16003
+ [vars$I.labelTextColor]: refs.labelTextColor,
15762
16004
  _checked: {
15763
- [vars$H.knobColor]: globalRefs$u.colors.surface.light,
15764
- [vars$H.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16005
+ [vars$I.knobColor]: globalRefs$u.colors.surface.light,
16006
+ [vars$I.trackBackgroundColor]: globalRefs$u.colors.surface.main,
15765
16007
  },
15766
16008
  },
15767
16009
 
15768
16010
  _invalid: {
15769
- [vars$H.trackBorderColor]: globalRefs$u.colors.error.main,
15770
- [vars$H.knobColor]: globalRefs$u.colors.error.main,
16011
+ [vars$I.trackBorderColor]: globalRefs$u.colors.error.main,
16012
+ [vars$I.knobColor]: globalRefs$u.colors.error.main,
15771
16013
  },
15772
16014
  };
15773
16015
 
15774
16016
  var switchToggle$1 = /*#__PURE__*/Object.freeze({
15775
16017
  __proto__: null,
15776
16018
  default: switchToggle,
15777
- vars: vars$H
16019
+ vars: vars$I
15778
16020
  });
15779
16021
 
15780
16022
  const globalRefs$t = getThemeRefs(globals);
@@ -15799,7 +16041,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
15799
16041
  horizontalAlignment,
15800
16042
  shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
15801
16043
  },
15802
- componentName$X
16044
+ componentName$Y
15803
16045
  );
15804
16046
 
15805
16047
  const { shadowColor: shadowColor$3 } = helperRefs$3;
@@ -15886,7 +16128,7 @@ const container = {
15886
16128
  },
15887
16129
  };
15888
16130
 
15889
- const vars$G = {
16131
+ const vars$H = {
15890
16132
  ...compVars$5,
15891
16133
  ...helperVars$3,
15892
16134
  };
@@ -15894,168 +16136,168 @@ const vars$G = {
15894
16136
  var container$1 = /*#__PURE__*/Object.freeze({
15895
16137
  __proto__: null,
15896
16138
  default: container,
15897
- vars: vars$G
16139
+ vars: vars$H
15898
16140
  });
15899
16141
 
15900
- const vars$F = LogoClass.cssVarList;
16142
+ const vars$G = LogoClass.cssVarList;
15901
16143
 
15902
16144
  const logo$2 = {
15903
- [vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
16145
+ [vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
15904
16146
  };
15905
16147
 
15906
16148
  var logo$3 = /*#__PURE__*/Object.freeze({
15907
16149
  __proto__: null,
15908
16150
  default: logo$2,
15909
- vars: vars$F
16151
+ vars: vars$G
15910
16152
  });
15911
16153
 
15912
- const vars$E = TotpImageClass.cssVarList;
16154
+ const vars$F = TotpImageClass.cssVarList;
15913
16155
 
15914
16156
  const logo$1 = {
15915
- [vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
16157
+ [vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
15916
16158
  };
15917
16159
 
15918
16160
  var totpImage = /*#__PURE__*/Object.freeze({
15919
16161
  __proto__: null,
15920
16162
  default: logo$1,
15921
- vars: vars$E
16163
+ vars: vars$F
15922
16164
  });
15923
16165
 
15924
- const vars$D = NotpImageClass.cssVarList;
16166
+ const vars$E = NotpImageClass.cssVarList;
15925
16167
 
15926
16168
  const logo = {
15927
- [vars$D.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
16169
+ [vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
15928
16170
  };
15929
16171
 
15930
16172
  var notpImage = /*#__PURE__*/Object.freeze({
15931
16173
  __proto__: null,
15932
16174
  default: logo,
15933
- vars: vars$D
16175
+ vars: vars$E
15934
16176
  });
15935
16177
 
15936
16178
  const globalRefs$s = getThemeRefs(globals);
15937
- const vars$C = TextClass.cssVarList;
16179
+ const vars$D = TextClass.cssVarList;
15938
16180
 
15939
16181
  const text = {
15940
- [vars$C.hostDirection]: globalRefs$s.direction,
15941
- [vars$C.textLineHeight]: '1.35em',
15942
- [vars$C.textAlign]: 'left',
15943
- [vars$C.textColor]: globalRefs$s.colors.surface.dark,
16182
+ [vars$D.hostDirection]: globalRefs$s.direction,
16183
+ [vars$D.textLineHeight]: '1.35em',
16184
+ [vars$D.textAlign]: 'left',
16185
+ [vars$D.textColor]: globalRefs$s.colors.surface.dark,
15944
16186
 
15945
16187
  variant: {
15946
16188
  h1: {
15947
- [vars$C.fontSize]: globalRefs$s.typography.h1.size,
15948
- [vars$C.fontWeight]: globalRefs$s.typography.h1.weight,
15949
- [vars$C.fontFamily]: globalRefs$s.typography.h1.font,
16189
+ [vars$D.fontSize]: globalRefs$s.typography.h1.size,
16190
+ [vars$D.fontWeight]: globalRefs$s.typography.h1.weight,
16191
+ [vars$D.fontFamily]: globalRefs$s.typography.h1.font,
15950
16192
  },
15951
16193
  h2: {
15952
- [vars$C.fontSize]: globalRefs$s.typography.h2.size,
15953
- [vars$C.fontWeight]: globalRefs$s.typography.h2.weight,
15954
- [vars$C.fontFamily]: globalRefs$s.typography.h2.font,
16194
+ [vars$D.fontSize]: globalRefs$s.typography.h2.size,
16195
+ [vars$D.fontWeight]: globalRefs$s.typography.h2.weight,
16196
+ [vars$D.fontFamily]: globalRefs$s.typography.h2.font,
15955
16197
  },
15956
16198
  h3: {
15957
- [vars$C.fontSize]: globalRefs$s.typography.h3.size,
15958
- [vars$C.fontWeight]: globalRefs$s.typography.h3.weight,
15959
- [vars$C.fontFamily]: globalRefs$s.typography.h3.font,
16199
+ [vars$D.fontSize]: globalRefs$s.typography.h3.size,
16200
+ [vars$D.fontWeight]: globalRefs$s.typography.h3.weight,
16201
+ [vars$D.fontFamily]: globalRefs$s.typography.h3.font,
15960
16202
  },
15961
16203
  subtitle1: {
15962
- [vars$C.fontSize]: globalRefs$s.typography.subtitle1.size,
15963
- [vars$C.fontWeight]: globalRefs$s.typography.subtitle1.weight,
15964
- [vars$C.fontFamily]: globalRefs$s.typography.subtitle1.font,
16204
+ [vars$D.fontSize]: globalRefs$s.typography.subtitle1.size,
16205
+ [vars$D.fontWeight]: globalRefs$s.typography.subtitle1.weight,
16206
+ [vars$D.fontFamily]: globalRefs$s.typography.subtitle1.font,
15965
16207
  },
15966
16208
  subtitle2: {
15967
- [vars$C.fontSize]: globalRefs$s.typography.subtitle2.size,
15968
- [vars$C.fontWeight]: globalRefs$s.typography.subtitle2.weight,
15969
- [vars$C.fontFamily]: globalRefs$s.typography.subtitle2.font,
16209
+ [vars$D.fontSize]: globalRefs$s.typography.subtitle2.size,
16210
+ [vars$D.fontWeight]: globalRefs$s.typography.subtitle2.weight,
16211
+ [vars$D.fontFamily]: globalRefs$s.typography.subtitle2.font,
15970
16212
  },
15971
16213
  body1: {
15972
- [vars$C.fontSize]: globalRefs$s.typography.body1.size,
15973
- [vars$C.fontWeight]: globalRefs$s.typography.body1.weight,
15974
- [vars$C.fontFamily]: globalRefs$s.typography.body1.font,
16214
+ [vars$D.fontSize]: globalRefs$s.typography.body1.size,
16215
+ [vars$D.fontWeight]: globalRefs$s.typography.body1.weight,
16216
+ [vars$D.fontFamily]: globalRefs$s.typography.body1.font,
15975
16217
  },
15976
16218
  body2: {
15977
- [vars$C.fontSize]: globalRefs$s.typography.body2.size,
15978
- [vars$C.fontWeight]: globalRefs$s.typography.body2.weight,
15979
- [vars$C.fontFamily]: globalRefs$s.typography.body2.font,
16219
+ [vars$D.fontSize]: globalRefs$s.typography.body2.size,
16220
+ [vars$D.fontWeight]: globalRefs$s.typography.body2.weight,
16221
+ [vars$D.fontFamily]: globalRefs$s.typography.body2.font,
15980
16222
  },
15981
16223
  },
15982
16224
 
15983
16225
  mode: {
15984
16226
  primary: {
15985
- [vars$C.textColor]: globalRefs$s.colors.surface.contrast,
16227
+ [vars$D.textColor]: globalRefs$s.colors.surface.contrast,
15986
16228
  },
15987
16229
  secondary: {
15988
- [vars$C.textColor]: globalRefs$s.colors.surface.dark,
16230
+ [vars$D.textColor]: globalRefs$s.colors.surface.dark,
15989
16231
  },
15990
16232
  error: {
15991
- [vars$C.textColor]: globalRefs$s.colors.error.main,
16233
+ [vars$D.textColor]: globalRefs$s.colors.error.main,
15992
16234
  },
15993
16235
  success: {
15994
- [vars$C.textColor]: globalRefs$s.colors.success.main,
16236
+ [vars$D.textColor]: globalRefs$s.colors.success.main,
15995
16237
  },
15996
16238
  },
15997
16239
 
15998
16240
  textAlign: {
15999
- right: { [vars$C.textAlign]: 'right' },
16000
- left: { [vars$C.textAlign]: 'left' },
16001
- center: { [vars$C.textAlign]: 'center' },
16241
+ right: { [vars$D.textAlign]: 'right' },
16242
+ left: { [vars$D.textAlign]: 'left' },
16243
+ center: { [vars$D.textAlign]: 'center' },
16002
16244
  },
16003
16245
 
16004
16246
  _fullWidth: {
16005
- [vars$C.hostWidth]: '100%',
16247
+ [vars$D.hostWidth]: '100%',
16006
16248
  },
16007
16249
 
16008
16250
  _italic: {
16009
- [vars$C.fontStyle]: 'italic',
16251
+ [vars$D.fontStyle]: 'italic',
16010
16252
  },
16011
16253
 
16012
16254
  _uppercase: {
16013
- [vars$C.textTransform]: 'uppercase',
16255
+ [vars$D.textTransform]: 'uppercase',
16014
16256
  },
16015
16257
 
16016
16258
  _lowercase: {
16017
- [vars$C.textTransform]: 'lowercase',
16259
+ [vars$D.textTransform]: 'lowercase',
16018
16260
  },
16019
16261
  };
16020
16262
 
16021
16263
  var text$1 = /*#__PURE__*/Object.freeze({
16022
16264
  __proto__: null,
16023
16265
  default: text,
16024
- vars: vars$C
16266
+ vars: vars$D
16025
16267
  });
16026
16268
 
16027
16269
  const globalRefs$r = getThemeRefs(globals);
16028
- const vars$B = LinkClass.cssVarList;
16270
+ const vars$C = LinkClass.cssVarList;
16029
16271
 
16030
16272
  const link = {
16031
- [vars$B.hostDirection]: globalRefs$r.direction,
16032
- [vars$B.cursor]: 'pointer',
16273
+ [vars$C.hostDirection]: globalRefs$r.direction,
16274
+ [vars$C.cursor]: 'pointer',
16033
16275
 
16034
- [vars$B.textColor]: globalRefs$r.colors.primary.main,
16276
+ [vars$C.textColor]: globalRefs$r.colors.primary.main,
16035
16277
 
16036
16278
  textAlign: {
16037
- right: { [vars$B.textAlign]: 'right' },
16038
- left: { [vars$B.textAlign]: 'left' },
16039
- center: { [vars$B.textAlign]: 'center' },
16279
+ right: { [vars$C.textAlign]: 'right' },
16280
+ left: { [vars$C.textAlign]: 'left' },
16281
+ center: { [vars$C.textAlign]: 'center' },
16040
16282
  },
16041
16283
 
16042
16284
  _fullWidth: {
16043
- [vars$B.hostWidth]: '100%',
16285
+ [vars$C.hostWidth]: '100%',
16044
16286
  },
16045
16287
 
16046
16288
  _hover: {
16047
- [vars$B.textDecoration]: 'underline',
16289
+ [vars$C.textDecoration]: 'underline',
16048
16290
  },
16049
16291
 
16050
16292
  mode: {
16051
16293
  secondary: {
16052
- [vars$B.textColor]: globalRefs$r.colors.secondary.main,
16294
+ [vars$C.textColor]: globalRefs$r.colors.secondary.main,
16053
16295
  },
16054
16296
  error: {
16055
- [vars$B.textColor]: globalRefs$r.colors.error.main,
16297
+ [vars$C.textColor]: globalRefs$r.colors.error.main,
16056
16298
  },
16057
16299
  success: {
16058
- [vars$B.textColor]: globalRefs$r.colors.success.main,
16300
+ [vars$C.textColor]: globalRefs$r.colors.success.main,
16059
16301
  },
16060
16302
  },
16061
16303
  };
@@ -16063,37 +16305,37 @@ const link = {
16063
16305
  var link$1 = /*#__PURE__*/Object.freeze({
16064
16306
  __proto__: null,
16065
16307
  default: link,
16066
- vars: vars$B
16308
+ vars: vars$C
16067
16309
  });
16068
16310
 
16069
16311
  const globalRefs$q = getThemeRefs(globals);
16070
- const vars$A = EnrichedTextClass.cssVarList;
16312
+ const vars$B = EnrichedTextClass.cssVarList;
16071
16313
 
16072
16314
  const enrichedText = {
16073
- [vars$A.hostDirection]: globalRefs$q.direction,
16074
- [vars$A.hostWidth]: useVar(vars$C.hostWidth),
16315
+ [vars$B.hostDirection]: globalRefs$q.direction,
16316
+ [vars$B.hostWidth]: useVar(vars$D.hostWidth),
16075
16317
 
16076
- [vars$A.textLineHeight]: useVar(vars$C.textLineHeight),
16077
- [vars$A.textColor]: useVar(vars$C.textColor),
16078
- [vars$A.textAlign]: useVar(vars$C.textAlign),
16318
+ [vars$B.textLineHeight]: useVar(vars$D.textLineHeight),
16319
+ [vars$B.textColor]: useVar(vars$D.textColor),
16320
+ [vars$B.textAlign]: useVar(vars$D.textAlign),
16079
16321
 
16080
- [vars$A.fontSize]: useVar(vars$C.fontSize),
16081
- [vars$A.fontWeight]: useVar(vars$C.fontWeight),
16082
- [vars$A.fontFamily]: useVar(vars$C.fontFamily),
16322
+ [vars$B.fontSize]: useVar(vars$D.fontSize),
16323
+ [vars$B.fontWeight]: useVar(vars$D.fontWeight),
16324
+ [vars$B.fontFamily]: useVar(vars$D.fontFamily),
16083
16325
 
16084
- [vars$A.linkColor]: useVar(vars$B.textColor),
16085
- [vars$A.linkTextDecoration]: 'none',
16086
- [vars$A.linkHoverTextDecoration]: 'underline',
16326
+ [vars$B.linkColor]: useVar(vars$C.textColor),
16327
+ [vars$B.linkTextDecoration]: 'none',
16328
+ [vars$B.linkHoverTextDecoration]: 'underline',
16087
16329
 
16088
- [vars$A.fontWeightBold]: '900',
16089
- [vars$A.minWidth]: '0.25em',
16090
- [vars$A.minHeight]: '1.35em',
16330
+ [vars$B.fontWeightBold]: '900',
16331
+ [vars$B.minWidth]: '0.25em',
16332
+ [vars$B.minHeight]: '1.35em',
16091
16333
 
16092
- [vars$A.hostDisplay]: 'inline-block',
16334
+ [vars$B.hostDisplay]: 'inline-block',
16093
16335
 
16094
16336
  _empty: {
16095
16337
  _hideWhenEmpty: {
16096
- [vars$A.hostDisplay]: 'none',
16338
+ [vars$B.hostDisplay]: 'none',
16097
16339
  },
16098
16340
  },
16099
16341
  };
@@ -16101,7 +16343,7 @@ const enrichedText = {
16101
16343
  var enrichedText$1 = /*#__PURE__*/Object.freeze({
16102
16344
  __proto__: null,
16103
16345
  default: enrichedText,
16104
- vars: vars$A
16346
+ vars: vars$B
16105
16347
  });
16106
16348
 
16107
16349
  const globalRefs$p = getThemeRefs(globals);
@@ -16112,7 +16354,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
16112
16354
  thickness: '2px',
16113
16355
  spacing: '10px',
16114
16356
  },
16115
- componentName$R
16357
+ componentName$S
16116
16358
  );
16117
16359
 
16118
16360
  const divider = {
@@ -16143,7 +16385,7 @@ const divider = {
16143
16385
  },
16144
16386
  };
16145
16387
 
16146
- const vars$z = {
16388
+ const vars$A = {
16147
16389
  ...compVars$4,
16148
16390
  ...helperVars$2,
16149
16391
  };
@@ -16151,93 +16393,93 @@ const vars$z = {
16151
16393
  var divider$1 = /*#__PURE__*/Object.freeze({
16152
16394
  __proto__: null,
16153
16395
  default: divider,
16154
- vars: vars$z
16396
+ vars: vars$A
16155
16397
  });
16156
16398
 
16157
- const vars$y = PasscodeClass.cssVarList;
16399
+ const vars$z = PasscodeClass.cssVarList;
16158
16400
 
16159
16401
  const passcode = {
16160
- [vars$y.hostDirection]: refs.direction,
16161
- [vars$y.fontFamily]: refs.fontFamily,
16162
- [vars$y.fontSize]: refs.fontSize,
16163
- [vars$y.labelTextColor]: refs.labelTextColor,
16164
- [vars$y.labelRequiredIndicator]: refs.requiredIndicator,
16165
- [vars$y.errorMessageTextColor]: refs.errorMessageTextColor,
16166
- [vars$y.digitValueTextColor]: refs.valueTextColor,
16167
- [vars$y.digitPadding]: '0',
16168
- [vars$y.digitTextAlign]: 'center',
16169
- [vars$y.digitSpacing]: '4px',
16170
- [vars$y.hostWidth]: refs.width,
16171
- [vars$y.digitOutlineColor]: 'transparent',
16172
- [vars$y.digitOutlineWidth]: refs.outlineWidth,
16173
- [vars$y.focusedDigitFieldOutlineColor]: refs.outlineColor,
16174
- [vars$y.digitSize]: refs.inputHeight,
16402
+ [vars$z.hostDirection]: refs.direction,
16403
+ [vars$z.fontFamily]: refs.fontFamily,
16404
+ [vars$z.fontSize]: refs.fontSize,
16405
+ [vars$z.labelTextColor]: refs.labelTextColor,
16406
+ [vars$z.labelRequiredIndicator]: refs.requiredIndicator,
16407
+ [vars$z.errorMessageTextColor]: refs.errorMessageTextColor,
16408
+ [vars$z.digitValueTextColor]: refs.valueTextColor,
16409
+ [vars$z.digitPadding]: '0',
16410
+ [vars$z.digitTextAlign]: 'center',
16411
+ [vars$z.digitSpacing]: '4px',
16412
+ [vars$z.hostWidth]: refs.width,
16413
+ [vars$z.digitOutlineColor]: 'transparent',
16414
+ [vars$z.digitOutlineWidth]: refs.outlineWidth,
16415
+ [vars$z.focusedDigitFieldOutlineColor]: refs.outlineColor,
16416
+ [vars$z.digitSize]: refs.inputHeight,
16175
16417
 
16176
16418
  size: {
16177
- xs: { [vars$y.spinnerSize]: '15px' },
16178
- sm: { [vars$y.spinnerSize]: '20px' },
16179
- md: { [vars$y.spinnerSize]: '20px' },
16180
- lg: { [vars$y.spinnerSize]: '20px' },
16419
+ xs: { [vars$z.spinnerSize]: '15px' },
16420
+ sm: { [vars$z.spinnerSize]: '20px' },
16421
+ md: { [vars$z.spinnerSize]: '20px' },
16422
+ lg: { [vars$z.spinnerSize]: '20px' },
16181
16423
  },
16182
16424
 
16183
16425
  _hideCursor: {
16184
- [vars$y.digitCaretTextColor]: 'transparent',
16426
+ [vars$z.digitCaretTextColor]: 'transparent',
16185
16427
  },
16186
16428
 
16187
16429
  _loading: {
16188
- [vars$y.overlayOpacity]: refs.overlayOpacity,
16430
+ [vars$z.overlayOpacity]: refs.overlayOpacity,
16189
16431
  },
16190
16432
  };
16191
16433
 
16192
16434
  var passcode$1 = /*#__PURE__*/Object.freeze({
16193
16435
  __proto__: null,
16194
16436
  default: passcode,
16195
- vars: vars$y
16437
+ vars: vars$z
16196
16438
  });
16197
16439
 
16198
16440
  const globalRefs$o = getThemeRefs(globals);
16199
- const vars$x = LoaderLinearClass.cssVarList;
16441
+ const vars$y = LoaderLinearClass.cssVarList;
16200
16442
 
16201
16443
  const loaderLinear = {
16202
- [vars$x.hostDisplay]: 'inline-block',
16203
- [vars$x.hostWidth]: '100%',
16444
+ [vars$y.hostDisplay]: 'inline-block',
16445
+ [vars$y.hostWidth]: '100%',
16204
16446
 
16205
- [vars$x.barColor]: globalRefs$o.colors.surface.contrast,
16206
- [vars$x.barWidth]: '20%',
16447
+ [vars$y.barColor]: globalRefs$o.colors.surface.contrast,
16448
+ [vars$y.barWidth]: '20%',
16207
16449
 
16208
- [vars$x.barBackgroundColor]: globalRefs$o.colors.surface.light,
16209
- [vars$x.barBorderRadius]: '4px',
16450
+ [vars$y.barBackgroundColor]: globalRefs$o.colors.surface.light,
16451
+ [vars$y.barBorderRadius]: '4px',
16210
16452
 
16211
- [vars$x.animationDuration]: '2s',
16212
- [vars$x.animationTimingFunction]: 'linear',
16213
- [vars$x.animationIterationCount]: 'infinite',
16214
- [vars$x.verticalPadding]: '0.25em',
16453
+ [vars$y.animationDuration]: '2s',
16454
+ [vars$y.animationTimingFunction]: 'linear',
16455
+ [vars$y.animationIterationCount]: 'infinite',
16456
+ [vars$y.verticalPadding]: '0.25em',
16215
16457
 
16216
16458
  size: {
16217
- xs: { [vars$x.barHeight]: '2px' },
16218
- sm: { [vars$x.barHeight]: '4px' },
16219
- md: { [vars$x.barHeight]: '6px' },
16220
- lg: { [vars$x.barHeight]: '8px' },
16459
+ xs: { [vars$y.barHeight]: '2px' },
16460
+ sm: { [vars$y.barHeight]: '4px' },
16461
+ md: { [vars$y.barHeight]: '6px' },
16462
+ lg: { [vars$y.barHeight]: '8px' },
16221
16463
  },
16222
16464
 
16223
16465
  mode: {
16224
16466
  primary: {
16225
- [vars$x.barColor]: globalRefs$o.colors.primary.main,
16467
+ [vars$y.barColor]: globalRefs$o.colors.primary.main,
16226
16468
  },
16227
16469
  secondary: {
16228
- [vars$x.barColor]: globalRefs$o.colors.secondary.main,
16470
+ [vars$y.barColor]: globalRefs$o.colors.secondary.main,
16229
16471
  },
16230
16472
  },
16231
16473
 
16232
16474
  _hidden: {
16233
- [vars$x.hostDisplay]: 'none',
16475
+ [vars$y.hostDisplay]: 'none',
16234
16476
  },
16235
16477
  };
16236
16478
 
16237
16479
  var loaderLinear$1 = /*#__PURE__*/Object.freeze({
16238
16480
  __proto__: null,
16239
16481
  default: loaderLinear,
16240
- vars: vars$x
16482
+ vars: vars$y
16241
16483
  });
16242
16484
 
16243
16485
  const globalRefs$n = getThemeRefs(globals);
@@ -16255,7 +16497,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
16255
16497
  },
16256
16498
  },
16257
16499
  },
16258
- componentName$Y
16500
+ componentName$Z
16259
16501
  );
16260
16502
 
16261
16503
  const loaderRadial = {
@@ -16284,7 +16526,7 @@ const loaderRadial = {
16284
16526
  [compVars$3.hostDisplay]: 'none',
16285
16527
  },
16286
16528
  };
16287
- const vars$w = {
16529
+ const vars$x = {
16288
16530
  ...compVars$3,
16289
16531
  ...helperVars$1,
16290
16532
  };
@@ -16292,93 +16534,134 @@ const vars$w = {
16292
16534
  var loaderRadial$1 = /*#__PURE__*/Object.freeze({
16293
16535
  __proto__: null,
16294
16536
  default: loaderRadial,
16295
- vars: vars$w
16537
+ vars: vars$x
16296
16538
  });
16297
16539
 
16298
16540
  const globalRefs$m = getThemeRefs(globals);
16299
- const vars$v = ComboBoxClass.cssVarList;
16541
+ const vars$w = ComboBoxClass.cssVarList;
16300
16542
 
16301
16543
  const comboBox = {
16302
- [vars$v.hostWidth]: refs.width,
16303
- [vars$v.hostDirection]: refs.direction,
16304
- [vars$v.fontSize]: refs.fontSize,
16305
- [vars$v.fontFamily]: refs.fontFamily,
16306
- [vars$v.labelFontSize]: refs.labelFontSize,
16307
- [vars$v.labelFontWeight]: refs.labelFontWeight,
16308
- [vars$v.labelTextColor]: refs.labelTextColor,
16309
- [vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
16310
- [vars$v.inputBorderColor]: refs.borderColor,
16311
- [vars$v.inputBorderWidth]: refs.borderWidth,
16312
- [vars$v.inputBorderStyle]: refs.borderStyle,
16313
- [vars$v.inputBorderRadius]: refs.borderRadius,
16314
- [vars$v.inputOutlineColor]: refs.outlineColor,
16315
- [vars$v.inputOutlineOffset]: refs.outlineOffset,
16316
- [vars$v.inputOutlineWidth]: refs.outlineWidth,
16317
- [vars$v.inputOutlineStyle]: refs.outlineStyle,
16318
- [vars$v.labelRequiredIndicator]: refs.requiredIndicator,
16319
- [vars$v.inputValueTextColor]: refs.valueTextColor,
16320
- [vars$v.inputPlaceholderTextColor]: refs.placeholderTextColor,
16321
- [vars$v.inputBackgroundColor]: refs.backgroundColor,
16322
- [vars$v.inputHorizontalPadding]: refs.horizontalPadding,
16323
- [vars$v.inputHeight]: refs.inputHeight,
16324
- [vars$v.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
16325
- [vars$v.inputDropdownButtonCursor]: 'pointer',
16326
- [vars$v.inputDropdownButtonSize]: refs.toggleButtonSize,
16327
- [vars$v.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
16328
- [vars$v.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
16329
- [vars$v.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
16330
- [vars$v.labelPosition]: refs.labelPosition,
16331
- [vars$v.labelTopPosition]: refs.labelTopPosition,
16332
- [vars$v.labelHorizontalPosition]: refs.labelHorizontalPosition,
16333
- [vars$v.inputTransformY]: refs.inputTransformY,
16334
- [vars$v.inputTransition]: refs.inputTransition,
16335
- [vars$v.marginInlineStart]: refs.marginInlineStart,
16336
- [vars$v.placeholderOpacity]: refs.placeholderOpacity,
16337
- [vars$v.inputVerticalAlignment]: refs.inputVerticalAlignment,
16338
- [vars$v.valueInputHeight]: refs.valueInputHeight,
16339
- [vars$v.valueInputMarginBottom]: refs.valueInputMarginBottom,
16544
+ [vars$w.hostWidth]: refs.width,
16545
+ [vars$w.hostDirection]: refs.direction,
16546
+ [vars$w.fontSize]: refs.fontSize,
16547
+ [vars$w.fontFamily]: refs.fontFamily,
16548
+ [vars$w.labelFontSize]: refs.labelFontSize,
16549
+ [vars$w.labelFontWeight]: refs.labelFontWeight,
16550
+ [vars$w.labelTextColor]: refs.labelTextColor,
16551
+ [vars$w.errorMessageTextColor]: refs.errorMessageTextColor,
16552
+ [vars$w.inputBorderColor]: refs.borderColor,
16553
+ [vars$w.inputBorderWidth]: refs.borderWidth,
16554
+ [vars$w.inputBorderStyle]: refs.borderStyle,
16555
+ [vars$w.inputBorderRadius]: refs.borderRadius,
16556
+ [vars$w.inputOutlineColor]: refs.outlineColor,
16557
+ [vars$w.inputOutlineOffset]: refs.outlineOffset,
16558
+ [vars$w.inputOutlineWidth]: refs.outlineWidth,
16559
+ [vars$w.inputOutlineStyle]: refs.outlineStyle,
16560
+ [vars$w.labelRequiredIndicator]: refs.requiredIndicator,
16561
+ [vars$w.inputValueTextColor]: refs.valueTextColor,
16562
+ [vars$w.inputPlaceholderTextColor]: refs.placeholderTextColor,
16563
+ [vars$w.inputBackgroundColor]: refs.backgroundColor,
16564
+ [vars$w.inputHorizontalPadding]: refs.horizontalPadding,
16565
+ [vars$w.inputHeight]: refs.inputHeight,
16566
+ [vars$w.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
16567
+ [vars$w.inputDropdownButtonCursor]: 'pointer',
16568
+ [vars$w.inputDropdownButtonSize]: refs.toggleButtonSize,
16569
+ [vars$w.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
16570
+ [vars$w.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
16571
+ [vars$w.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
16572
+ [vars$w.labelPosition]: refs.labelPosition,
16573
+ [vars$w.labelTopPosition]: refs.labelTopPosition,
16574
+ [vars$w.labelHorizontalPosition]: refs.labelHorizontalPosition,
16575
+ [vars$w.inputTransformY]: refs.inputTransformY,
16576
+ [vars$w.inputTransition]: refs.inputTransition,
16577
+ [vars$w.marginInlineStart]: refs.marginInlineStart,
16578
+ [vars$w.placeholderOpacity]: refs.placeholderOpacity,
16579
+ [vars$w.inputVerticalAlignment]: refs.inputVerticalAlignment,
16580
+ [vars$w.valueInputHeight]: refs.valueInputHeight,
16581
+ [vars$w.valueInputMarginBottom]: refs.valueInputMarginBottom,
16340
16582
 
16341
16583
  _readonly: {
16342
- [vars$v.inputDropdownButtonCursor]: 'default',
16584
+ [vars$w.inputDropdownButtonCursor]: 'default',
16343
16585
  },
16344
16586
 
16345
16587
  // Overlay theme exposed via the component:
16346
- [vars$v.overlayFontSize]: refs.fontSize,
16347
- [vars$v.overlayFontFamily]: refs.fontFamily,
16348
- [vars$v.overlayCursor]: 'pointer',
16349
- [vars$v.overlayItemBoxShadow]: 'none',
16350
- [vars$v.overlayBackground]: refs.backgroundColor,
16351
- [vars$v.overlayTextColor]: refs.valueTextColor,
16588
+ [vars$w.overlayFontSize]: refs.fontSize,
16589
+ [vars$w.overlayFontFamily]: refs.fontFamily,
16590
+ [vars$w.overlayCursor]: 'pointer',
16591
+ [vars$w.overlayItemBoxShadow]: 'none',
16592
+ [vars$w.overlayBackground]: refs.backgroundColor,
16593
+ [vars$w.overlayTextColor]: refs.valueTextColor,
16352
16594
 
16353
16595
  // Overlay direct theme:
16354
- [vars$v.overlay.minHeight]: '400px',
16355
- [vars$v.overlay.margin]: '0',
16596
+ [vars$w.overlay.minHeight]: '400px',
16597
+ [vars$w.overlay.margin]: '0',
16356
16598
  };
16357
16599
 
16358
16600
  var comboBox$1 = /*#__PURE__*/Object.freeze({
16359
16601
  __proto__: null,
16360
16602
  comboBox: comboBox,
16361
16603
  default: comboBox,
16362
- vars: vars$v
16604
+ vars: vars$w
16363
16605
  });
16364
16606
 
16365
- const vars$u = ImageClass.cssVarList;
16607
+ const vars$v = ImageClass.cssVarList;
16366
16608
 
16367
16609
  const image = {};
16368
16610
 
16369
16611
  var image$1 = /*#__PURE__*/Object.freeze({
16370
16612
  __proto__: null,
16371
16613
  default: image,
16372
- vars: vars$u
16614
+ vars: vars$v
16373
16615
  });
16374
16616
 
16375
- const vars$t = PhoneFieldClass.cssVarList;
16617
+ const vars$u = PhoneFieldClass.cssVarList;
16376
16618
 
16377
16619
  const phoneField = {
16378
- [vars$t.hostWidth]: refs.width,
16620
+ [vars$u.hostWidth]: refs.width,
16621
+ [vars$u.hostDirection]: refs.direction,
16622
+ [vars$u.fontSize]: refs.fontSize,
16623
+ [vars$u.fontFamily]: refs.fontFamily,
16624
+ [vars$u.labelTextColor]: refs.labelTextColor,
16625
+ [vars$u.labelRequiredIndicator]: refs.requiredIndicator,
16626
+ [vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
16627
+ [vars$u.inputValueTextColor]: refs.valueTextColor,
16628
+ [vars$u.inputPlaceholderTextColor]: refs.placeholderTextColor,
16629
+ [vars$u.inputBorderStyle]: refs.borderStyle,
16630
+ [vars$u.inputBorderWidth]: refs.borderWidth,
16631
+ [vars$u.inputBorderColor]: refs.borderColor,
16632
+ [vars$u.inputBorderRadius]: refs.borderRadius,
16633
+ [vars$u.inputOutlineStyle]: refs.outlineStyle,
16634
+ [vars$u.inputOutlineWidth]: refs.outlineWidth,
16635
+ [vars$u.inputOutlineColor]: refs.outlineColor,
16636
+ [vars$u.inputOutlineOffset]: refs.outlineOffset,
16637
+ [vars$u.phoneInputWidth]: refs.minWidth,
16638
+ [vars$u.countryCodeInputWidth]: '5em',
16639
+ [vars$u.countryCodeDropdownWidth]: '20em',
16640
+ [vars$u.marginInlineStart]: '-0.25em',
16641
+ [vars$u.valueInputHeight]: refs.valueInputHeight,
16642
+ [vars$u.valueInputMarginBottom]: refs.valueInputMarginBottom,
16643
+
16644
+ // '@overlay': {
16645
+ // overlayItemBackgroundColor: 'red'
16646
+ // }
16647
+ };
16648
+
16649
+ var phoneField$1 = /*#__PURE__*/Object.freeze({
16650
+ __proto__: null,
16651
+ default: phoneField,
16652
+ vars: vars$u
16653
+ });
16654
+
16655
+ const vars$t = PhoneFieldInputBoxClass.cssVarList;
16656
+
16657
+ const phoneInputBoxField = {
16658
+ [vars$t.hostWidth]: '16em',
16659
+ [vars$t.hostMinWidth]: refs.minWidth,
16379
16660
  [vars$t.hostDirection]: refs.direction,
16380
16661
  [vars$t.fontSize]: refs.fontSize,
16381
16662
  [vars$t.fontFamily]: refs.fontFamily,
16663
+ [vars$t.labelFontSize]: refs.labelFontSize,
16664
+ [vars$t.labelFontWeight]: refs.labelFontWeight,
16382
16665
  [vars$t.labelTextColor]: refs.labelTextColor,
16383
16666
  [vars$t.labelRequiredIndicator]: refs.requiredIndicator,
16384
16667
  [vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -16392,28 +16675,32 @@ const phoneField = {
16392
16675
  [vars$t.inputOutlineWidth]: refs.outlineWidth,
16393
16676
  [vars$t.inputOutlineColor]: refs.outlineColor,
16394
16677
  [vars$t.inputOutlineOffset]: refs.outlineOffset,
16395
- [vars$t.phoneInputWidth]: refs.minWidth,
16396
- [vars$t.countryCodeInputWidth]: '5em',
16397
- [vars$t.countryCodeDropdownWidth]: '20em',
16398
- [vars$t.marginInlineStart]: '-0.25em',
16678
+ [vars$t.labelPosition]: refs.labelPosition,
16679
+ [vars$t.labelTopPosition]: refs.labelTopPosition,
16680
+ [vars$t.labelHorizontalPosition]: refs.labelHorizontalPosition,
16681
+ [vars$t.inputTransformY]: refs.inputTransformY,
16682
+ [vars$t.inputTransition]: refs.inputTransition,
16683
+ [vars$t.marginInlineStart]: refs.marginInlineStart,
16399
16684
  [vars$t.valueInputHeight]: refs.valueInputHeight,
16400
16685
  [vars$t.valueInputMarginBottom]: refs.valueInputMarginBottom,
16686
+ [vars$t.inputHorizontalPadding]: '0',
16401
16687
 
16402
- // '@overlay': {
16403
- // overlayItemBackgroundColor: 'red'
16404
- // }
16688
+ _fullWidth: {
16689
+ [vars$t.hostWidth]: refs.width,
16690
+ },
16405
16691
  };
16406
16692
 
16407
- var phoneField$1 = /*#__PURE__*/Object.freeze({
16693
+ var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16408
16694
  __proto__: null,
16409
- default: phoneField,
16695
+ default: phoneInputBoxField,
16410
16696
  vars: vars$t
16411
16697
  });
16412
16698
 
16413
- const vars$s = PhoneFieldInputBoxClass.cssVarList;
16699
+ const globalRefs$l = getThemeRefs(globals);
16700
+ const vars$s = NewPasswordClass.cssVarList;
16414
16701
 
16415
- const phoneInputBoxField = {
16416
- [vars$s.hostWidth]: '16em',
16702
+ const newPassword = {
16703
+ [vars$s.hostWidth]: refs.width,
16417
16704
  [vars$s.hostMinWidth]: refs.minWidth,
16418
16705
  [vars$s.hostDirection]: refs.direction,
16419
16706
  [vars$s.fontSize]: refs.fontSize,
@@ -16421,171 +16708,126 @@ const phoneInputBoxField = {
16421
16708
  [vars$s.labelFontSize]: refs.labelFontSize,
16422
16709
  [vars$s.labelFontWeight]: refs.labelFontWeight,
16423
16710
  [vars$s.labelTextColor]: refs.labelTextColor,
16424
- [vars$s.labelRequiredIndicator]: refs.requiredIndicator,
16711
+ [vars$s.spaceBetweenInputs]: '1em',
16425
16712
  [vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
16426
- [vars$s.inputValueTextColor]: refs.valueTextColor,
16427
- [vars$s.inputPlaceholderTextColor]: refs.placeholderTextColor,
16428
- [vars$s.inputBorderStyle]: refs.borderStyle,
16429
- [vars$s.inputBorderWidth]: refs.borderWidth,
16430
- [vars$s.inputBorderColor]: refs.borderColor,
16431
- [vars$s.inputBorderRadius]: refs.borderRadius,
16432
- [vars$s.inputOutlineStyle]: refs.outlineStyle,
16433
- [vars$s.inputOutlineWidth]: refs.outlineWidth,
16434
- [vars$s.inputOutlineColor]: refs.outlineColor,
16435
- [vars$s.inputOutlineOffset]: refs.outlineOffset,
16436
- [vars$s.labelPosition]: refs.labelPosition,
16437
- [vars$s.labelTopPosition]: refs.labelTopPosition,
16438
- [vars$s.labelHorizontalPosition]: refs.labelHorizontalPosition,
16439
- [vars$s.inputTransformY]: refs.inputTransformY,
16440
- [vars$s.inputTransition]: refs.inputTransition,
16441
- [vars$s.marginInlineStart]: refs.marginInlineStart,
16713
+ [vars$s.policyPreviewBackgroundColor]: 'none',
16714
+ [vars$s.policyPreviewPadding]: globalRefs$l.spacing.lg,
16442
16715
  [vars$s.valueInputHeight]: refs.valueInputHeight,
16443
- [vars$s.valueInputMarginBottom]: refs.valueInputMarginBottom,
16444
- [vars$s.inputHorizontalPadding]: '0',
16445
-
16446
- _fullWidth: {
16447
- [vars$s.hostWidth]: refs.width,
16448
- },
16449
- };
16450
-
16451
- var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16452
- __proto__: null,
16453
- default: phoneInputBoxField,
16454
- vars: vars$s
16455
- });
16456
-
16457
- const globalRefs$l = getThemeRefs(globals);
16458
- const vars$r = NewPasswordClass.cssVarList;
16459
-
16460
- const newPassword = {
16461
- [vars$r.hostWidth]: refs.width,
16462
- [vars$r.hostMinWidth]: refs.minWidth,
16463
- [vars$r.hostDirection]: refs.direction,
16464
- [vars$r.fontSize]: refs.fontSize,
16465
- [vars$r.fontFamily]: refs.fontFamily,
16466
- [vars$r.labelFontSize]: refs.labelFontSize,
16467
- [vars$r.labelFontWeight]: refs.labelFontWeight,
16468
- [vars$r.labelTextColor]: refs.labelTextColor,
16469
- [vars$r.spaceBetweenInputs]: '1em',
16470
- [vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
16471
- [vars$r.policyPreviewBackgroundColor]: 'none',
16472
- [vars$r.policyPreviewPadding]: globalRefs$l.spacing.lg,
16473
- [vars$r.valueInputHeight]: refs.valueInputHeight,
16474
16716
 
16475
16717
  _required: {
16476
16718
  // NewPassword doesn't pass `required` attribute to its Password components.
16477
16719
  // That's why we fake the required indicator on each input.
16478
16720
  // We do that by injecting `::after` element, and populating it with requiredIndicator content.
16479
- [vars$r.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16721
+ [vars$s.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16480
16722
  },
16481
16723
  };
16482
16724
 
16483
16725
  var newPassword$1 = /*#__PURE__*/Object.freeze({
16484
16726
  __proto__: null,
16485
16727
  default: newPassword,
16486
- vars: vars$r
16728
+ vars: vars$s
16487
16729
  });
16488
16730
 
16489
- const vars$q = UploadFileClass.cssVarList;
16731
+ const vars$r = UploadFileClass.cssVarList;
16490
16732
 
16491
16733
  const uploadFile = {
16492
- [vars$q.hostDirection]: refs.direction,
16493
- [vars$q.labelTextColor]: refs.labelTextColor,
16494
- [vars$q.fontFamily]: refs.fontFamily,
16734
+ [vars$r.hostDirection]: refs.direction,
16735
+ [vars$r.labelTextColor]: refs.labelTextColor,
16736
+ [vars$r.fontFamily]: refs.fontFamily,
16495
16737
 
16496
- [vars$q.iconSize]: '2em',
16738
+ [vars$r.iconSize]: '2em',
16497
16739
 
16498
- [vars$q.hostPadding]: '0.75em',
16499
- [vars$q.gap]: '0.5em',
16740
+ [vars$r.hostPadding]: '0.75em',
16741
+ [vars$r.gap]: '0.5em',
16500
16742
 
16501
- [vars$q.fontSize]: '16px',
16502
- [vars$q.titleFontWeight]: '500',
16503
- [vars$q.lineHeight]: '1em',
16743
+ [vars$r.fontSize]: '16px',
16744
+ [vars$r.titleFontWeight]: '500',
16745
+ [vars$r.lineHeight]: '1em',
16504
16746
 
16505
- [vars$q.borderWidth]: refs.borderWidth,
16506
- [vars$q.borderColor]: refs.borderColor,
16507
- [vars$q.borderRadius]: refs.borderRadius,
16508
- [vars$q.borderStyle]: 'dashed',
16747
+ [vars$r.borderWidth]: refs.borderWidth,
16748
+ [vars$r.borderColor]: refs.borderColor,
16749
+ [vars$r.borderRadius]: refs.borderRadius,
16750
+ [vars$r.borderStyle]: 'dashed',
16509
16751
 
16510
16752
  _required: {
16511
- [vars$q.requiredIndicator]: refs.requiredIndicator,
16753
+ [vars$r.requiredIndicator]: refs.requiredIndicator,
16512
16754
  },
16513
16755
 
16514
16756
  size: {
16515
16757
  xs: {
16516
- [vars$q.hostHeight]: '196px',
16517
- [vars$q.hostWidth]: '200px',
16518
- [vars$q.titleFontSize]: '0.875em',
16519
- [vars$q.descriptionFontSize]: '0.875em',
16520
- [vars$q.lineHeight]: '1.25em',
16758
+ [vars$r.hostHeight]: '196px',
16759
+ [vars$r.hostWidth]: '200px',
16760
+ [vars$r.titleFontSize]: '0.875em',
16761
+ [vars$r.descriptionFontSize]: '0.875em',
16762
+ [vars$r.lineHeight]: '1.25em',
16521
16763
  },
16522
16764
  sm: {
16523
- [vars$q.hostHeight]: '216px',
16524
- [vars$q.hostWidth]: '230px',
16525
- [vars$q.titleFontSize]: '1em',
16526
- [vars$q.descriptionFontSize]: '0.875em',
16527
- [vars$q.lineHeight]: '1.25em',
16765
+ [vars$r.hostHeight]: '216px',
16766
+ [vars$r.hostWidth]: '230px',
16767
+ [vars$r.titleFontSize]: '1em',
16768
+ [vars$r.descriptionFontSize]: '0.875em',
16769
+ [vars$r.lineHeight]: '1.25em',
16528
16770
  },
16529
16771
  md: {
16530
- [vars$q.hostHeight]: '256px',
16531
- [vars$q.hostWidth]: '312px',
16532
- [vars$q.titleFontSize]: '1.125em',
16533
- [vars$q.descriptionFontSize]: '1em',
16534
- [vars$q.lineHeight]: '1.5em',
16772
+ [vars$r.hostHeight]: '256px',
16773
+ [vars$r.hostWidth]: '312px',
16774
+ [vars$r.titleFontSize]: '1.125em',
16775
+ [vars$r.descriptionFontSize]: '1em',
16776
+ [vars$r.lineHeight]: '1.5em',
16535
16777
  },
16536
16778
  lg: {
16537
- [vars$q.hostHeight]: '280px',
16538
- [vars$q.hostWidth]: '336px',
16539
- [vars$q.titleFontSize]: '1.125em',
16540
- [vars$q.descriptionFontSize]: '1.125em',
16541
- [vars$q.lineHeight]: '1.75em',
16779
+ [vars$r.hostHeight]: '280px',
16780
+ [vars$r.hostWidth]: '336px',
16781
+ [vars$r.titleFontSize]: '1.125em',
16782
+ [vars$r.descriptionFontSize]: '1.125em',
16783
+ [vars$r.lineHeight]: '1.75em',
16542
16784
  },
16543
16785
  },
16544
16786
 
16545
16787
  _fullWidth: {
16546
- [vars$q.hostWidth]: refs.width,
16788
+ [vars$r.hostWidth]: refs.width,
16547
16789
  },
16548
16790
  };
16549
16791
 
16550
16792
  var uploadFile$1 = /*#__PURE__*/Object.freeze({
16551
16793
  __proto__: null,
16552
16794
  default: uploadFile,
16553
- vars: vars$q
16795
+ vars: vars$r
16554
16796
  });
16555
16797
 
16556
16798
  const globalRefs$k = getThemeRefs(globals);
16557
16799
 
16558
- const vars$p = ButtonSelectionGroupItemClass.cssVarList;
16800
+ const vars$q = ButtonSelectionGroupItemClass.cssVarList;
16559
16801
 
16560
16802
  const buttonSelectionGroupItem = {
16561
- [vars$p.hostDirection]: 'inherit',
16562
- [vars$p.backgroundColor]: globalRefs$k.colors.surface.main,
16563
- [vars$p.labelTextColor]: globalRefs$k.colors.surface.contrast,
16564
- [vars$p.borderColor]: globalRefs$k.colors.surface.light,
16565
- [vars$p.borderStyle]: 'solid',
16566
- [vars$p.borderRadius]: globalRefs$k.radius.sm,
16567
- [vars$p.outlineColor]: 'transparent',
16568
- [vars$p.borderWidth]: globalRefs$k.border.xs,
16803
+ [vars$q.hostDirection]: 'inherit',
16804
+ [vars$q.backgroundColor]: globalRefs$k.colors.surface.main,
16805
+ [vars$q.labelTextColor]: globalRefs$k.colors.surface.contrast,
16806
+ [vars$q.borderColor]: globalRefs$k.colors.surface.light,
16807
+ [vars$q.borderStyle]: 'solid',
16808
+ [vars$q.borderRadius]: globalRefs$k.radius.sm,
16809
+ [vars$q.outlineColor]: 'transparent',
16810
+ [vars$q.borderWidth]: globalRefs$k.border.xs,
16569
16811
 
16570
16812
  _hover: {
16571
- [vars$p.backgroundColor]: globalRefs$k.colors.surface.highlight,
16813
+ [vars$q.backgroundColor]: globalRefs$k.colors.surface.highlight,
16572
16814
  },
16573
16815
 
16574
16816
  _focused: {
16575
- [vars$p.outlineColor]: globalRefs$k.colors.surface.light,
16817
+ [vars$q.outlineColor]: globalRefs$k.colors.surface.light,
16576
16818
  },
16577
16819
 
16578
16820
  _selected: {
16579
- [vars$p.borderColor]: globalRefs$k.colors.surface.contrast,
16580
- [vars$p.backgroundColor]: globalRefs$k.colors.surface.contrast,
16581
- [vars$p.labelTextColor]: globalRefs$k.colors.surface.main,
16821
+ [vars$q.borderColor]: globalRefs$k.colors.surface.contrast,
16822
+ [vars$q.backgroundColor]: globalRefs$k.colors.surface.contrast,
16823
+ [vars$q.labelTextColor]: globalRefs$k.colors.surface.main,
16582
16824
  },
16583
16825
  };
16584
16826
 
16585
16827
  var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
16586
16828
  __proto__: null,
16587
16829
  default: buttonSelectionGroupItem,
16588
- vars: vars$p
16830
+ vars: vars$q
16589
16831
  });
16590
16832
 
16591
16833
  const globalRefs$j = getThemeRefs(globals);
@@ -16600,28 +16842,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
16600
16842
  [vars.hostWidth]: refs.width,
16601
16843
  });
16602
16844
 
16603
- const vars$o = ButtonSelectionGroupClass.cssVarList;
16845
+ const vars$p = ButtonSelectionGroupClass.cssVarList;
16604
16846
 
16605
16847
  const buttonSelectionGroup = {
16606
- ...createBaseButtonSelectionGroupMappings(vars$o),
16848
+ ...createBaseButtonSelectionGroupMappings(vars$p),
16607
16849
  };
16608
16850
 
16609
16851
  var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
16610
16852
  __proto__: null,
16611
16853
  default: buttonSelectionGroup,
16612
- vars: vars$o
16854
+ vars: vars$p
16613
16855
  });
16614
16856
 
16615
- const vars$n = ButtonMultiSelectionGroupClass.cssVarList;
16857
+ const vars$o = ButtonMultiSelectionGroupClass.cssVarList;
16616
16858
 
16617
16859
  const buttonMultiSelectionGroup = {
16618
- ...createBaseButtonSelectionGroupMappings(vars$n),
16860
+ ...createBaseButtonSelectionGroupMappings(vars$o),
16619
16861
  };
16620
16862
 
16621
16863
  var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
16622
16864
  __proto__: null,
16623
16865
  default: buttonMultiSelectionGroup,
16624
- vars: vars$n
16866
+ vars: vars$o
16625
16867
  });
16626
16868
 
16627
16869
  const globalRefs$i = getThemeRefs(globals);
@@ -16634,58 +16876,58 @@ const modal = {
16634
16876
  [compVars$2.overlayWidth]: '540px',
16635
16877
  };
16636
16878
 
16637
- const vars$m = {
16879
+ const vars$n = {
16638
16880
  ...compVars$2,
16639
16881
  };
16640
16882
 
16641
16883
  var modal$1 = /*#__PURE__*/Object.freeze({
16642
16884
  __proto__: null,
16643
16885
  default: modal,
16644
- vars: vars$m
16886
+ vars: vars$n
16645
16887
  });
16646
16888
 
16647
16889
  const globalRefs$h = getThemeRefs(globals);
16648
- const vars$l = GridClass.cssVarList;
16890
+ const vars$m = GridClass.cssVarList;
16649
16891
 
16650
16892
  const grid = {
16651
- [vars$l.hostWidth]: '100%',
16652
- [vars$l.hostHeight]: '100%',
16653
- [vars$l.hostMinHeight]: '400px',
16654
- [vars$l.fontWeight]: '400',
16655
- [vars$l.backgroundColor]: globalRefs$h.colors.surface.main,
16656
-
16657
- [vars$l.fontSize]: refs.fontSize,
16658
- [vars$l.fontFamily]: refs.fontFamily,
16659
-
16660
- [vars$l.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
16661
- [vars$l.activeSortIndicator]: globalRefs$h.colors.surface.dark,
16662
- [vars$l.resizeHandleColor]: globalRefs$h.colors.surface.light,
16663
-
16664
- [vars$l.borderWidth]: refs.borderWidth,
16665
- [vars$l.borderStyle]: refs.borderStyle,
16666
- [vars$l.borderRadius]: refs.borderRadius,
16667
- [vars$l.borderColor]: 'transparent',
16668
-
16669
- [vars$l.headerRowTextColor]: globalRefs$h.colors.surface.dark,
16670
- [vars$l.separatorColor]: globalRefs$h.colors.surface.light,
16671
-
16672
- [vars$l.valueTextColor]: globalRefs$h.colors.surface.contrast,
16673
- [vars$l.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
16674
- [vars$l.hostDirection]: globalRefs$h.direction,
16675
-
16676
- [vars$l.toggleDetailsPanelButtonSize]: '1em',
16677
- [vars$l.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
16678
- [vars$l.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
16679
- [vars$l.toggleDetailsPanelButtonCursor]: 'pointer',
16680
- [vars$l.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
16681
- [vars$l.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
16682
- [vars$l.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
16683
- [vars$l.detailsPanelLabelsFontSize]: '0.8em',
16684
- [vars$l.detailsPanelItemsGap]: '2em',
16685
- [vars$l.detailsPanelPadding]: '12px 0',
16893
+ [vars$m.hostWidth]: '100%',
16894
+ [vars$m.hostHeight]: '100%',
16895
+ [vars$m.hostMinHeight]: '400px',
16896
+ [vars$m.fontWeight]: '400',
16897
+ [vars$m.backgroundColor]: globalRefs$h.colors.surface.main,
16898
+
16899
+ [vars$m.fontSize]: refs.fontSize,
16900
+ [vars$m.fontFamily]: refs.fontFamily,
16901
+
16902
+ [vars$m.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
16903
+ [vars$m.activeSortIndicator]: globalRefs$h.colors.surface.dark,
16904
+ [vars$m.resizeHandleColor]: globalRefs$h.colors.surface.light,
16905
+
16906
+ [vars$m.borderWidth]: refs.borderWidth,
16907
+ [vars$m.borderStyle]: refs.borderStyle,
16908
+ [vars$m.borderRadius]: refs.borderRadius,
16909
+ [vars$m.borderColor]: 'transparent',
16910
+
16911
+ [vars$m.headerRowTextColor]: globalRefs$h.colors.surface.dark,
16912
+ [vars$m.separatorColor]: globalRefs$h.colors.surface.light,
16913
+
16914
+ [vars$m.valueTextColor]: globalRefs$h.colors.surface.contrast,
16915
+ [vars$m.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
16916
+ [vars$m.hostDirection]: globalRefs$h.direction,
16917
+
16918
+ [vars$m.toggleDetailsPanelButtonSize]: '1em',
16919
+ [vars$m.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
16920
+ [vars$m.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
16921
+ [vars$m.toggleDetailsPanelButtonCursor]: 'pointer',
16922
+ [vars$m.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
16923
+ [vars$m.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
16924
+ [vars$m.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
16925
+ [vars$m.detailsPanelLabelsFontSize]: '0.8em',
16926
+ [vars$m.detailsPanelItemsGap]: '2em',
16927
+ [vars$m.detailsPanelPadding]: '12px 0',
16686
16928
 
16687
16929
  _bordered: {
16688
- [vars$l.borderColor]: refs.borderColor,
16930
+ [vars$m.borderColor]: refs.borderColor,
16689
16931
  },
16690
16932
  };
16691
16933
 
@@ -16693,53 +16935,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
16693
16935
  __proto__: null,
16694
16936
  default: grid,
16695
16937
  grid: grid,
16696
- vars: vars$l
16938
+ vars: vars$m
16697
16939
  });
16698
16940
 
16699
16941
  const globalRefs$g = getThemeRefs(globals);
16700
- const vars$k = NotificationCardClass.cssVarList;
16942
+ const vars$l = NotificationCardClass.cssVarList;
16701
16943
 
16702
16944
  const shadowColor$2 = '#00000020';
16703
16945
 
16704
16946
  const notification = {
16705
- [vars$k.hostMinWidth]: '415px',
16706
- [vars$k.fontFamily]: globalRefs$g.fonts.font1.family,
16707
- [vars$k.fontSize]: globalRefs$g.typography.body1.size,
16708
- [vars$k.backgroundColor]: globalRefs$g.colors.surface.main,
16709
- [vars$k.textColor]: globalRefs$g.colors.surface.contrast,
16710
- [vars$k.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
16711
- [vars$k.verticalPadding]: '0.625em',
16712
- [vars$k.horizontalPadding]: '1.5em',
16713
- [vars$k.borderRadius]: globalRefs$g.radius.xs,
16947
+ [vars$l.hostMinWidth]: '415px',
16948
+ [vars$l.fontFamily]: globalRefs$g.fonts.font1.family,
16949
+ [vars$l.fontSize]: globalRefs$g.typography.body1.size,
16950
+ [vars$l.backgroundColor]: globalRefs$g.colors.surface.main,
16951
+ [vars$l.textColor]: globalRefs$g.colors.surface.contrast,
16952
+ [vars$l.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
16953
+ [vars$l.verticalPadding]: '0.625em',
16954
+ [vars$l.horizontalPadding]: '1.5em',
16955
+ [vars$l.borderRadius]: globalRefs$g.radius.xs,
16714
16956
 
16715
16957
  _bordered: {
16716
- [vars$k.borderWidth]: globalRefs$g.border.sm,
16717
- [vars$k.borderStyle]: 'solid',
16718
- [vars$k.borderColor]: 'transparent',
16958
+ [vars$l.borderWidth]: globalRefs$g.border.sm,
16959
+ [vars$l.borderStyle]: 'solid',
16960
+ [vars$l.borderColor]: 'transparent',
16719
16961
  },
16720
16962
 
16721
16963
  size: {
16722
- xs: { [vars$k.fontSize]: '12px' },
16723
- sm: { [vars$k.fontSize]: '14px' },
16724
- md: { [vars$k.fontSize]: '16px' },
16725
- lg: { [vars$k.fontSize]: '18px' },
16964
+ xs: { [vars$l.fontSize]: '12px' },
16965
+ sm: { [vars$l.fontSize]: '14px' },
16966
+ md: { [vars$l.fontSize]: '16px' },
16967
+ lg: { [vars$l.fontSize]: '18px' },
16726
16968
  },
16727
16969
 
16728
16970
  mode: {
16729
16971
  primary: {
16730
- [vars$k.backgroundColor]: globalRefs$g.colors.primary.main,
16731
- [vars$k.textColor]: globalRefs$g.colors.primary.contrast,
16732
- [vars$k.borderColor]: globalRefs$g.colors.primary.light,
16972
+ [vars$l.backgroundColor]: globalRefs$g.colors.primary.main,
16973
+ [vars$l.textColor]: globalRefs$g.colors.primary.contrast,
16974
+ [vars$l.borderColor]: globalRefs$g.colors.primary.light,
16733
16975
  },
16734
16976
  success: {
16735
- [vars$k.backgroundColor]: globalRefs$g.colors.success.main,
16736
- [vars$k.textColor]: globalRefs$g.colors.success.contrast,
16737
- [vars$k.borderColor]: globalRefs$g.colors.success.light,
16977
+ [vars$l.backgroundColor]: globalRefs$g.colors.success.main,
16978
+ [vars$l.textColor]: globalRefs$g.colors.success.contrast,
16979
+ [vars$l.borderColor]: globalRefs$g.colors.success.light,
16738
16980
  },
16739
16981
  error: {
16740
- [vars$k.backgroundColor]: globalRefs$g.colors.error.main,
16741
- [vars$k.textColor]: globalRefs$g.colors.error.contrast,
16742
- [vars$k.borderColor]: globalRefs$g.colors.error.light,
16982
+ [vars$l.backgroundColor]: globalRefs$g.colors.error.main,
16983
+ [vars$l.textColor]: globalRefs$g.colors.error.contrast,
16984
+ [vars$l.borderColor]: globalRefs$g.colors.error.light,
16743
16985
  },
16744
16986
  },
16745
16987
  };
@@ -16747,148 +16989,148 @@ const notification = {
16747
16989
  var notificationCard = /*#__PURE__*/Object.freeze({
16748
16990
  __proto__: null,
16749
16991
  default: notification,
16750
- vars: vars$k
16992
+ vars: vars$l
16751
16993
  });
16752
16994
 
16753
16995
  const globalRefs$f = getThemeRefs(globals);
16754
- const vars$j = MultiSelectComboBoxClass.cssVarList;
16996
+ const vars$k = MultiSelectComboBoxClass.cssVarList;
16755
16997
 
16756
16998
  const multiSelectComboBox = {
16757
- [vars$j.hostWidth]: refs.width,
16758
- [vars$j.hostDirection]: refs.direction,
16759
- [vars$j.fontSize]: refs.fontSize,
16760
- [vars$j.fontFamily]: refs.fontFamily,
16761
- [vars$j.labelFontSize]: refs.labelFontSize,
16762
- [vars$j.labelFontWeight]: refs.labelFontWeight,
16763
- [vars$j.labelTextColor]: refs.labelTextColor,
16764
- [vars$j.errorMessageTextColor]: refs.errorMessageTextColor,
16765
- [vars$j.inputBorderColor]: refs.borderColor,
16766
- [vars$j.inputBorderWidth]: refs.borderWidth,
16767
- [vars$j.inputBorderStyle]: refs.borderStyle,
16768
- [vars$j.inputBorderRadius]: refs.borderRadius,
16769
- [vars$j.inputOutlineColor]: refs.outlineColor,
16770
- [vars$j.inputOutlineOffset]: refs.outlineOffset,
16771
- [vars$j.inputOutlineWidth]: refs.outlineWidth,
16772
- [vars$j.inputOutlineStyle]: refs.outlineStyle,
16773
- [vars$j.labelRequiredIndicator]: refs.requiredIndicator,
16774
- [vars$j.inputValueTextColor]: refs.valueTextColor,
16775
- [vars$j.inputPlaceholderTextColor]: refs.placeholderTextColor,
16776
- [vars$j.inputBackgroundColor]: refs.backgroundColor,
16777
- [vars$j.inputHorizontalPadding]: refs.horizontalPadding,
16778
- [vars$j.inputVerticalPadding]: refs.verticalPadding,
16779
- [vars$j.inputHeight]: refs.inputHeight,
16780
- [vars$j.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
16781
- [vars$j.inputDropdownButtonCursor]: 'pointer',
16782
- [vars$j.inputDropdownButtonSize]: refs.toggleButtonSize,
16783
- [vars$j.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
16784
- [vars$j.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
16785
- [vars$j.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
16786
- [vars$j.chipFontSize]: refs.chipFontSize,
16787
- [vars$j.chipTextColor]: globalRefs$f.colors.surface.contrast,
16788
- [vars$j.chipBackgroundColor]: globalRefs$f.colors.surface.light,
16789
- [vars$j.labelPosition]: refs.labelPosition,
16790
- [vars$j.labelTopPosition]: refs.labelTopPosition,
16791
- [vars$j.labelLeftPosition]: refs.labelLeftPosition,
16792
- [vars$j.labelHorizontalPosition]: refs.labelHorizontalPosition,
16793
- [vars$j.inputTransformY]: refs.inputTransformY,
16794
- [vars$j.inputTransition]: refs.inputTransition,
16795
- [vars$j.marginInlineStart]: refs.marginInlineStart,
16796
- [vars$j.placeholderOpacity]: refs.placeholderOpacity,
16797
- [vars$j.inputVerticalAlignment]: refs.inputVerticalAlignment,
16999
+ [vars$k.hostWidth]: refs.width,
17000
+ [vars$k.hostDirection]: refs.direction,
17001
+ [vars$k.fontSize]: refs.fontSize,
17002
+ [vars$k.fontFamily]: refs.fontFamily,
17003
+ [vars$k.labelFontSize]: refs.labelFontSize,
17004
+ [vars$k.labelFontWeight]: refs.labelFontWeight,
17005
+ [vars$k.labelTextColor]: refs.labelTextColor,
17006
+ [vars$k.errorMessageTextColor]: refs.errorMessageTextColor,
17007
+ [vars$k.inputBorderColor]: refs.borderColor,
17008
+ [vars$k.inputBorderWidth]: refs.borderWidth,
17009
+ [vars$k.inputBorderStyle]: refs.borderStyle,
17010
+ [vars$k.inputBorderRadius]: refs.borderRadius,
17011
+ [vars$k.inputOutlineColor]: refs.outlineColor,
17012
+ [vars$k.inputOutlineOffset]: refs.outlineOffset,
17013
+ [vars$k.inputOutlineWidth]: refs.outlineWidth,
17014
+ [vars$k.inputOutlineStyle]: refs.outlineStyle,
17015
+ [vars$k.labelRequiredIndicator]: refs.requiredIndicator,
17016
+ [vars$k.inputValueTextColor]: refs.valueTextColor,
17017
+ [vars$k.inputPlaceholderTextColor]: refs.placeholderTextColor,
17018
+ [vars$k.inputBackgroundColor]: refs.backgroundColor,
17019
+ [vars$k.inputHorizontalPadding]: refs.horizontalPadding,
17020
+ [vars$k.inputVerticalPadding]: refs.verticalPadding,
17021
+ [vars$k.inputHeight]: refs.inputHeight,
17022
+ [vars$k.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
17023
+ [vars$k.inputDropdownButtonCursor]: 'pointer',
17024
+ [vars$k.inputDropdownButtonSize]: refs.toggleButtonSize,
17025
+ [vars$k.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
17026
+ [vars$k.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
17027
+ [vars$k.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
17028
+ [vars$k.chipFontSize]: refs.chipFontSize,
17029
+ [vars$k.chipTextColor]: globalRefs$f.colors.surface.contrast,
17030
+ [vars$k.chipBackgroundColor]: globalRefs$f.colors.surface.light,
17031
+ [vars$k.labelPosition]: refs.labelPosition,
17032
+ [vars$k.labelTopPosition]: refs.labelTopPosition,
17033
+ [vars$k.labelLeftPosition]: refs.labelLeftPosition,
17034
+ [vars$k.labelHorizontalPosition]: refs.labelHorizontalPosition,
17035
+ [vars$k.inputTransformY]: refs.inputTransformY,
17036
+ [vars$k.inputTransition]: refs.inputTransition,
17037
+ [vars$k.marginInlineStart]: refs.marginInlineStart,
17038
+ [vars$k.placeholderOpacity]: refs.placeholderOpacity,
17039
+ [vars$k.inputVerticalAlignment]: refs.inputVerticalAlignment,
16798
17040
 
16799
17041
  labelType: {
16800
17042
  floating: {
16801
- [vars$j.inputHorizontalPadding]: '0.25em',
17043
+ [vars$k.inputHorizontalPadding]: '0.25em',
16802
17044
  _hasValue: {
16803
- [vars$j.inputHorizontalPadding]: '0.45em',
17045
+ [vars$k.inputHorizontalPadding]: '0.45em',
16804
17046
  },
16805
17047
  },
16806
17048
  },
16807
17049
 
16808
17050
  _readonly: {
16809
- [vars$j.inputDropdownButtonCursor]: 'default',
17051
+ [vars$k.inputDropdownButtonCursor]: 'default',
16810
17052
  },
16811
17053
 
16812
17054
  // Overlay theme exposed via the component:
16813
- [vars$j.overlayFontSize]: refs.fontSize,
16814
- [vars$j.overlayFontFamily]: refs.fontFamily,
16815
- [vars$j.overlayCursor]: 'pointer',
16816
- [vars$j.overlayItemBoxShadow]: 'none',
16817
- [vars$j.overlayBackground]: refs.backgroundColor,
16818
- [vars$j.overlayTextColor]: refs.valueTextColor,
17055
+ [vars$k.overlayFontSize]: refs.fontSize,
17056
+ [vars$k.overlayFontFamily]: refs.fontFamily,
17057
+ [vars$k.overlayCursor]: 'pointer',
17058
+ [vars$k.overlayItemBoxShadow]: 'none',
17059
+ [vars$k.overlayBackground]: refs.backgroundColor,
17060
+ [vars$k.overlayTextColor]: refs.valueTextColor,
16819
17061
 
16820
17062
  // Overlay direct theme:
16821
- [vars$j.overlay.minHeight]: '400px',
16822
- [vars$j.overlay.margin]: '0',
17063
+ [vars$k.overlay.minHeight]: '400px',
17064
+ [vars$k.overlay.margin]: '0',
16823
17065
  };
16824
17066
 
16825
17067
  var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
16826
17068
  __proto__: null,
16827
17069
  default: multiSelectComboBox,
16828
17070
  multiSelectComboBox: multiSelectComboBox,
16829
- vars: vars$j
17071
+ vars: vars$k
16830
17072
  });
16831
17073
 
16832
17074
  const globalRefs$e = getThemeRefs(globals);
16833
- const vars$i = BadgeClass.cssVarList;
17075
+ const vars$j = BadgeClass.cssVarList;
16834
17076
 
16835
17077
  const badge = {
16836
- [vars$i.hostWidth]: 'fit-content',
16837
- [vars$i.hostDirection]: globalRefs$e.direction,
17078
+ [vars$j.hostWidth]: 'fit-content',
17079
+ [vars$j.hostDirection]: globalRefs$e.direction,
16838
17080
 
16839
- [vars$i.textAlign]: 'center',
17081
+ [vars$j.textAlign]: 'center',
16840
17082
 
16841
- [vars$i.fontFamily]: globalRefs$e.fonts.font1.family,
16842
- [vars$i.fontWeight]: '400',
17083
+ [vars$j.fontFamily]: globalRefs$e.fonts.font1.family,
17084
+ [vars$j.fontWeight]: '400',
16843
17085
 
16844
- [vars$i.verticalPadding]: '0.25em',
16845
- [vars$i.horizontalPadding]: '0.5em',
17086
+ [vars$j.verticalPadding]: '0.25em',
17087
+ [vars$j.horizontalPadding]: '0.5em',
16846
17088
 
16847
- [vars$i.borderWidth]: globalRefs$e.border.xs,
16848
- [vars$i.borderRadius]: globalRefs$e.radius.xs,
16849
- [vars$i.borderColor]: 'transparent',
16850
- [vars$i.borderStyle]: 'solid',
17089
+ [vars$j.borderWidth]: globalRefs$e.border.xs,
17090
+ [vars$j.borderRadius]: globalRefs$e.radius.xs,
17091
+ [vars$j.borderColor]: 'transparent',
17092
+ [vars$j.borderStyle]: 'solid',
16851
17093
 
16852
17094
  _fullWidth: {
16853
- [vars$i.hostWidth]: '100%',
17095
+ [vars$j.hostWidth]: '100%',
16854
17096
  },
16855
17097
 
16856
17098
  size: {
16857
- xs: { [vars$i.fontSize]: '12px' },
16858
- sm: { [vars$i.fontSize]: '14px' },
16859
- md: { [vars$i.fontSize]: '16px' },
16860
- lg: { [vars$i.fontSize]: '18px' },
17099
+ xs: { [vars$j.fontSize]: '12px' },
17100
+ sm: { [vars$j.fontSize]: '14px' },
17101
+ md: { [vars$j.fontSize]: '16px' },
17102
+ lg: { [vars$j.fontSize]: '18px' },
16861
17103
  },
16862
17104
 
16863
17105
  mode: {
16864
17106
  default: {
16865
- [vars$i.textColor]: globalRefs$e.colors.surface.dark,
17107
+ [vars$j.textColor]: globalRefs$e.colors.surface.dark,
16866
17108
  _bordered: {
16867
- [vars$i.borderColor]: globalRefs$e.colors.surface.light,
17109
+ [vars$j.borderColor]: globalRefs$e.colors.surface.light,
16868
17110
  },
16869
17111
  },
16870
17112
  primary: {
16871
- [vars$i.textColor]: globalRefs$e.colors.primary.main,
17113
+ [vars$j.textColor]: globalRefs$e.colors.primary.main,
16872
17114
  _bordered: {
16873
- [vars$i.borderColor]: globalRefs$e.colors.primary.light,
17115
+ [vars$j.borderColor]: globalRefs$e.colors.primary.light,
16874
17116
  },
16875
17117
  },
16876
17118
  secondary: {
16877
- [vars$i.textColor]: globalRefs$e.colors.secondary.main,
17119
+ [vars$j.textColor]: globalRefs$e.colors.secondary.main,
16878
17120
  _bordered: {
16879
- [vars$i.borderColor]: globalRefs$e.colors.secondary.light,
17121
+ [vars$j.borderColor]: globalRefs$e.colors.secondary.light,
16880
17122
  },
16881
17123
  },
16882
17124
  error: {
16883
- [vars$i.textColor]: globalRefs$e.colors.error.main,
17125
+ [vars$j.textColor]: globalRefs$e.colors.error.main,
16884
17126
  _bordered: {
16885
- [vars$i.borderColor]: globalRefs$e.colors.error.light,
17127
+ [vars$j.borderColor]: globalRefs$e.colors.error.light,
16886
17128
  },
16887
17129
  },
16888
17130
  success: {
16889
- [vars$i.textColor]: globalRefs$e.colors.success.main,
17131
+ [vars$j.textColor]: globalRefs$e.colors.success.main,
16890
17132
  _bordered: {
16891
- [vars$i.borderColor]: globalRefs$e.colors.success.light,
17133
+ [vars$j.borderColor]: globalRefs$e.colors.success.light,
16892
17134
  },
16893
17135
  },
16894
17136
  },
@@ -16897,7 +17139,7 @@ const badge = {
16897
17139
  var badge$1 = /*#__PURE__*/Object.freeze({
16898
17140
  __proto__: null,
16899
17141
  default: badge,
16900
- vars: vars$i
17142
+ vars: vars$j
16901
17143
  });
16902
17144
 
16903
17145
  const globalRefs$d = getThemeRefs(globals);
@@ -16935,143 +17177,143 @@ const avatar = {
16935
17177
  },
16936
17178
  };
16937
17179
 
16938
- const vars$h = {
17180
+ const vars$i = {
16939
17181
  ...compVars$1,
16940
17182
  };
16941
17183
 
16942
17184
  var avatar$1 = /*#__PURE__*/Object.freeze({
16943
17185
  __proto__: null,
16944
17186
  default: avatar,
16945
- vars: vars$h
17187
+ vars: vars$i
16946
17188
  });
16947
17189
 
16948
17190
  const globalRefs$c = getThemeRefs(globals);
16949
17191
 
16950
- const vars$g = MappingsFieldClass.cssVarList;
17192
+ const vars$h = MappingsFieldClass.cssVarList;
16951
17193
 
16952
17194
  const mappingsField = {
16953
- [vars$g.hostWidth]: refs.width,
16954
- [vars$g.hostDirection]: refs.direction,
16955
- [vars$g.fontSize]: refs.fontSize,
16956
- [vars$g.fontFamily]: refs.fontFamily,
16957
- [vars$g.separatorFontSize]: '14px',
16958
- [vars$g.labelsFontSize]: '14px',
16959
- [vars$g.labelsLineHeight]: '1',
16960
- [vars$g.labelsMarginBottom]: '6px',
16961
- [vars$g.labelTextColor]: refs.labelTextColor,
16962
- [vars$g.itemMarginBottom]: '1em',
17195
+ [vars$h.hostWidth]: refs.width,
17196
+ [vars$h.hostDirection]: refs.direction,
17197
+ [vars$h.fontSize]: refs.fontSize,
17198
+ [vars$h.fontFamily]: refs.fontFamily,
17199
+ [vars$h.separatorFontSize]: '14px',
17200
+ [vars$h.labelsFontSize]: '14px',
17201
+ [vars$h.labelsLineHeight]: '1',
17202
+ [vars$h.labelsMarginBottom]: '6px',
17203
+ [vars$h.labelTextColor]: refs.labelTextColor,
17204
+ [vars$h.itemMarginBottom]: '1em',
16963
17205
  // To be positioned correctly, the min width has to match the text field min width
16964
- [vars$g.valueLabelMinWidth]: refs.minWidth,
17206
+ [vars$h.valueLabelMinWidth]: refs.minWidth,
16965
17207
  // To be positioned correctly, the min width has to match the combo box field min width
16966
- [vars$g.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
16967
- [vars$g.separatorWidth]: '70px',
16968
- [vars$g.removeButtonWidth]: '60px',
17208
+ [vars$h.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
17209
+ [vars$h.separatorWidth]: '70px',
17210
+ [vars$h.removeButtonWidth]: '60px',
16969
17211
  };
16970
17212
 
16971
17213
  var mappingsField$1 = /*#__PURE__*/Object.freeze({
16972
17214
  __proto__: null,
16973
17215
  default: mappingsField,
16974
17216
  mappingsField: mappingsField,
16975
- vars: vars$g
17217
+ vars: vars$h
16976
17218
  });
16977
17219
 
16978
17220
  const globalRefs$b = getThemeRefs(globals);
16979
- const vars$f = UserAttributeClass.cssVarList;
17221
+ const vars$g = UserAttributeClass.cssVarList;
16980
17222
 
16981
17223
  const userAttribute = {
16982
- [vars$f.hostDirection]: globalRefs$b.direction,
16983
- [vars$f.labelTextWidth]: '150px',
16984
- [vars$f.valueTextWidth]: '200px',
16985
- [vars$f.badgeMaxWidth]: '85px',
16986
- [vars$f.itemsGap]: '16px',
16987
- [vars$f.hostMinWidth]: '530px',
17224
+ [vars$g.hostDirection]: globalRefs$b.direction,
17225
+ [vars$g.labelTextWidth]: '150px',
17226
+ [vars$g.valueTextWidth]: '200px',
17227
+ [vars$g.badgeMaxWidth]: '85px',
17228
+ [vars$g.itemsGap]: '16px',
17229
+ [vars$g.hostMinWidth]: '530px',
16988
17230
  _fullWidth: {
16989
- [vars$f.hostWidth]: '100%',
17231
+ [vars$g.hostWidth]: '100%',
16990
17232
  },
16991
17233
  };
16992
17234
 
16993
17235
  var userAttribute$1 = /*#__PURE__*/Object.freeze({
16994
17236
  __proto__: null,
16995
17237
  default: userAttribute,
16996
- vars: vars$f
17238
+ vars: vars$g
16997
17239
  });
16998
17240
 
16999
17241
  const globalRefs$a = getThemeRefs(globals);
17000
- const vars$e = UserAuthMethodClass.cssVarList;
17242
+ const vars$f = UserAuthMethodClass.cssVarList;
17001
17243
 
17002
17244
  const userAuthMethod = {
17003
- [vars$e.hostDirection]: globalRefs$a.direction,
17004
- [vars$e.labelTextWidth]: '200px',
17005
- [vars$e.itemsGap]: '16px',
17006
- [vars$e.hostMinWidth]: '530px',
17007
- [vars$e.iconSize]: '24px',
17245
+ [vars$f.hostDirection]: globalRefs$a.direction,
17246
+ [vars$f.labelTextWidth]: '200px',
17247
+ [vars$f.itemsGap]: '16px',
17248
+ [vars$f.hostMinWidth]: '530px',
17249
+ [vars$f.iconSize]: '24px',
17008
17250
  _fullWidth: {
17009
- [vars$e.hostWidth]: '100%',
17251
+ [vars$f.hostWidth]: '100%',
17010
17252
  },
17011
17253
  };
17012
17254
 
17013
17255
  var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
17014
17256
  __proto__: null,
17015
17257
  default: userAuthMethod,
17016
- vars: vars$e
17258
+ vars: vars$f
17017
17259
  });
17018
17260
 
17019
- const vars$d = SamlGroupMappingsClass.cssVarList;
17261
+ const vars$e = SamlGroupMappingsClass.cssVarList;
17020
17262
 
17021
17263
  const samlGroupMappings = {
17022
- [vars$d.hostWidth]: refs.width,
17023
- [vars$d.hostDirection]: refs.direction,
17024
- [vars$d.groupNameInputMarginBottom]: '1em',
17264
+ [vars$e.hostWidth]: refs.width,
17265
+ [vars$e.hostDirection]: refs.direction,
17266
+ [vars$e.groupNameInputMarginBottom]: '1em',
17025
17267
  };
17026
17268
 
17027
17269
  var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
17028
17270
  __proto__: null,
17029
17271
  default: samlGroupMappings,
17030
17272
  samlGroupMappings: samlGroupMappings,
17031
- vars: vars$d
17273
+ vars: vars$e
17032
17274
  });
17033
17275
 
17034
17276
  const globalRefs$9 = getThemeRefs(globals);
17035
- const vars$c = PolicyValidationClass.cssVarList;
17277
+ const vars$d = PolicyValidationClass.cssVarList;
17036
17278
 
17037
17279
  const policyValidation = {
17038
- [vars$c.fontFamily]: refs.fontFamily,
17039
- [vars$c.fontSize]: refs.labelFontSize,
17040
- [vars$c.textColor]: refs.labelTextColor,
17041
- [vars$c.borderWidth]: refs.borderWidth,
17042
- [vars$c.borderStyle]: refs.borderStyle,
17043
- [vars$c.borderColor]: refs.borderColor,
17044
- [vars$c.borderRadius]: globalRefs$9.radius.sm,
17045
- [vars$c.backgroundColor]: 'none',
17046
- [vars$c.padding]: '0px',
17047
- [vars$c.labelMargin]: globalRefs$9.spacing.sm,
17048
- [vars$c.itemsSpacing]: globalRefs$9.spacing.lg,
17049
- [vars$c.itemSymbolDefault]: "'\\2022'", // "•"
17050
- [vars$c.itemSymbolSuccess]: "'\\2713'", // "✓"
17051
- [vars$c.itemSymbolError]: "'\\2A09'", // "⨉"
17052
- [vars$c.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
17053
- [vars$c.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
17280
+ [vars$d.fontFamily]: refs.fontFamily,
17281
+ [vars$d.fontSize]: refs.labelFontSize,
17282
+ [vars$d.textColor]: refs.labelTextColor,
17283
+ [vars$d.borderWidth]: refs.borderWidth,
17284
+ [vars$d.borderStyle]: refs.borderStyle,
17285
+ [vars$d.borderColor]: refs.borderColor,
17286
+ [vars$d.borderRadius]: globalRefs$9.radius.sm,
17287
+ [vars$d.backgroundColor]: 'none',
17288
+ [vars$d.padding]: '0px',
17289
+ [vars$d.labelMargin]: globalRefs$9.spacing.sm,
17290
+ [vars$d.itemsSpacing]: globalRefs$9.spacing.lg,
17291
+ [vars$d.itemSymbolDefault]: "'\\2022'", // "•"
17292
+ [vars$d.itemSymbolSuccess]: "'\\2713'", // "✓"
17293
+ [vars$d.itemSymbolError]: "'\\2A09'", // "⨉"
17294
+ [vars$d.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
17295
+ [vars$d.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
17054
17296
  };
17055
17297
 
17056
17298
  var policyValidation$1 = /*#__PURE__*/Object.freeze({
17057
17299
  __proto__: null,
17058
17300
  default: policyValidation,
17059
- vars: vars$c
17301
+ vars: vars$d
17060
17302
  });
17061
17303
 
17062
- const vars$b = IconClass.cssVarList;
17304
+ const vars$c = IconClass.cssVarList;
17063
17305
 
17064
17306
  const icon = {};
17065
17307
 
17066
17308
  var icon$1 = /*#__PURE__*/Object.freeze({
17067
17309
  __proto__: null,
17068
17310
  default: icon,
17069
- vars: vars$b
17311
+ vars: vars$c
17070
17312
  });
17071
17313
 
17072
17314
  const globalRefs$8 = getThemeRefs(globals);
17073
17315
 
17074
- const vars$a = CodeSnippetClass.cssVarList;
17316
+ const vars$b = CodeSnippetClass.cssVarList;
17075
17317
 
17076
17318
  const light = {
17077
17319
  color1: '#fa0',
@@ -17106,50 +17348,50 @@ const dark = {
17106
17348
  };
17107
17349
 
17108
17350
  const CodeSnippet = {
17109
- [vars$a.rootBgColor]: globalRefs$8.colors.surface.main,
17110
- [vars$a.rootTextColor]: globalRefs$8.colors.surface.contrast,
17111
- [vars$a.docTagTextColor]: light.color2,
17112
- [vars$a.keywordTextColor]: light.color2,
17113
- [vars$a.metaKeywordTextColor]: light.color2,
17114
- [vars$a.templateTagTextColor]: light.color2,
17115
- [vars$a.templateVariableTextColor]: light.color2,
17116
- [vars$a.typeTextColor]: light.color2,
17117
- [vars$a.variableLanguageTextColor]: light.color2,
17118
- [vars$a.titleTextColor]: light.color3,
17119
- [vars$a.titleClassTextColor]: light.color3,
17120
- [vars$a.titleClassInheritedTextColor]: light.color3,
17121
- [vars$a.titleFunctionTextColor]: light.color3,
17122
- [vars$a.attrTextColor]: light.color4,
17123
- [vars$a.attributeTextColor]: light.color4,
17124
- [vars$a.literalTextColor]: light.color4,
17125
- [vars$a.metaTextColor]: light.color4,
17126
- [vars$a.numberTextColor]: light.color4,
17127
- [vars$a.operatorTextColor]: light.color4,
17128
- [vars$a.variableTextColor]: light.color4,
17129
- [vars$a.selectorAttrTextColor]: light.color4,
17130
- [vars$a.selectorClassTextColor]: light.color4,
17131
- [vars$a.selectorIdTextColor]: light.color4,
17132
- [vars$a.regexpTextColor]: light.color13,
17133
- [vars$a.stringTextColor]: light.color13,
17134
- [vars$a.metaStringTextColor]: light.color13,
17135
- [vars$a.builtInTextColor]: light.color5,
17136
- [vars$a.symbolTextColor]: light.color5,
17137
- [vars$a.commentTextColor]: light.color6,
17138
- [vars$a.codeTextColor]: light.color6,
17139
- [vars$a.formulaTextColor]: light.color6,
17140
- [vars$a.nameTextColor]: light.color7,
17141
- [vars$a.quoteTextColor]: light.color7,
17142
- [vars$a.selectorTagTextColor]: light.color7,
17143
- [vars$a.selectorPseudoTextColor]: light.color7,
17144
- [vars$a.substTextColor]: light.color8,
17145
- [vars$a.sectionTextColor]: light.color4,
17146
- [vars$a.bulletTextColor]: light.color9,
17147
- [vars$a.emphasisTextColor]: light.color8,
17148
- [vars$a.strongTextColor]: light.color8,
17149
- [vars$a.additionTextColor]: light.color7,
17150
- [vars$a.additionBgColor]: light.color10,
17151
- [vars$a.deletionTextColor]: light.color2,
17152
- [vars$a.deletionBgColor]: light.color10,
17351
+ [vars$b.rootBgColor]: globalRefs$8.colors.surface.main,
17352
+ [vars$b.rootTextColor]: globalRefs$8.colors.surface.contrast,
17353
+ [vars$b.docTagTextColor]: light.color2,
17354
+ [vars$b.keywordTextColor]: light.color2,
17355
+ [vars$b.metaKeywordTextColor]: light.color2,
17356
+ [vars$b.templateTagTextColor]: light.color2,
17357
+ [vars$b.templateVariableTextColor]: light.color2,
17358
+ [vars$b.typeTextColor]: light.color2,
17359
+ [vars$b.variableLanguageTextColor]: light.color2,
17360
+ [vars$b.titleTextColor]: light.color3,
17361
+ [vars$b.titleClassTextColor]: light.color3,
17362
+ [vars$b.titleClassInheritedTextColor]: light.color3,
17363
+ [vars$b.titleFunctionTextColor]: light.color3,
17364
+ [vars$b.attrTextColor]: light.color4,
17365
+ [vars$b.attributeTextColor]: light.color4,
17366
+ [vars$b.literalTextColor]: light.color4,
17367
+ [vars$b.metaTextColor]: light.color4,
17368
+ [vars$b.numberTextColor]: light.color4,
17369
+ [vars$b.operatorTextColor]: light.color4,
17370
+ [vars$b.variableTextColor]: light.color4,
17371
+ [vars$b.selectorAttrTextColor]: light.color4,
17372
+ [vars$b.selectorClassTextColor]: light.color4,
17373
+ [vars$b.selectorIdTextColor]: light.color4,
17374
+ [vars$b.regexpTextColor]: light.color13,
17375
+ [vars$b.stringTextColor]: light.color13,
17376
+ [vars$b.metaStringTextColor]: light.color13,
17377
+ [vars$b.builtInTextColor]: light.color5,
17378
+ [vars$b.symbolTextColor]: light.color5,
17379
+ [vars$b.commentTextColor]: light.color6,
17380
+ [vars$b.codeTextColor]: light.color6,
17381
+ [vars$b.formulaTextColor]: light.color6,
17382
+ [vars$b.nameTextColor]: light.color7,
17383
+ [vars$b.quoteTextColor]: light.color7,
17384
+ [vars$b.selectorTagTextColor]: light.color7,
17385
+ [vars$b.selectorPseudoTextColor]: light.color7,
17386
+ [vars$b.substTextColor]: light.color8,
17387
+ [vars$b.sectionTextColor]: light.color4,
17388
+ [vars$b.bulletTextColor]: light.color9,
17389
+ [vars$b.emphasisTextColor]: light.color8,
17390
+ [vars$b.strongTextColor]: light.color8,
17391
+ [vars$b.additionTextColor]: light.color7,
17392
+ [vars$b.additionBgColor]: light.color10,
17393
+ [vars$b.deletionTextColor]: light.color2,
17394
+ [vars$b.deletionBgColor]: light.color10,
17153
17395
  /* purposely ignored */
17154
17396
  // [vars.charEscapeTextColor]: '',
17155
17397
  // [vars.linkTextColor]: '',
@@ -17161,50 +17403,50 @@ const CodeSnippet = {
17161
17403
 
17162
17404
  const codeSnippetDarkThemeOverrides = {
17163
17405
  codeSnippet: {
17164
- [vars$a.rootBgColor]: globalRefs$8.colors.surface.main,
17165
- [vars$a.rootTextColor]: globalRefs$8.colors.surface.contrast,
17166
- [vars$a.docTagTextColor]: dark.color2,
17167
- [vars$a.keywordTextColor]: dark.color2,
17168
- [vars$a.metaKeywordTextColor]: dark.color2,
17169
- [vars$a.templateTagTextColor]: dark.color2,
17170
- [vars$a.templateVariableTextColor]: dark.color2,
17171
- [vars$a.typeTextColor]: dark.color2,
17172
- [vars$a.variableLanguageTextColor]: dark.color2,
17173
- [vars$a.titleTextColor]: dark.color3,
17174
- [vars$a.titleClassTextColor]: dark.color3,
17175
- [vars$a.titleClassInheritedTextColor]: dark.color3,
17176
- [vars$a.titleFunctionTextColor]: dark.color3,
17177
- [vars$a.attrTextColor]: dark.color4,
17178
- [vars$a.attributeTextColor]: dark.color4,
17179
- [vars$a.literalTextColor]: dark.color4,
17180
- [vars$a.metaTextColor]: dark.color4,
17181
- [vars$a.numberTextColor]: dark.color4,
17182
- [vars$a.operatorTextColor]: dark.color4,
17183
- [vars$a.variableTextColor]: dark.color4,
17184
- [vars$a.selectorAttrTextColor]: dark.color4,
17185
- [vars$a.selectorClassTextColor]: dark.color4,
17186
- [vars$a.selectorIdTextColor]: dark.color4,
17187
- [vars$a.regexpTextColor]: dark.color13,
17188
- [vars$a.stringTextColor]: dark.color13,
17189
- [vars$a.metaStringTextColor]: dark.color13,
17190
- [vars$a.builtInTextColor]: dark.color5,
17191
- [vars$a.symbolTextColor]: dark.color5,
17192
- [vars$a.commentTextColor]: dark.color6,
17193
- [vars$a.codeTextColor]: dark.color6,
17194
- [vars$a.formulaTextColor]: dark.color6,
17195
- [vars$a.nameTextColor]: dark.color7,
17196
- [vars$a.quoteTextColor]: dark.color7,
17197
- [vars$a.selectorTagTextColor]: dark.color7,
17198
- [vars$a.selectorPseudoTextColor]: dark.color7,
17199
- [vars$a.substTextColor]: dark.color8,
17200
- [vars$a.sectionTextColor]: dark.color4,
17201
- [vars$a.bulletTextColor]: dark.color9,
17202
- [vars$a.emphasisTextColor]: dark.color8,
17203
- [vars$a.strongTextColor]: dark.color8,
17204
- [vars$a.additionTextColor]: dark.color7,
17205
- [vars$a.additionBgColor]: dark.color10,
17206
- [vars$a.deletionTextColor]: dark.color2,
17207
- [vars$a.deletionBgColor]: dark.color10,
17406
+ [vars$b.rootBgColor]: globalRefs$8.colors.surface.main,
17407
+ [vars$b.rootTextColor]: globalRefs$8.colors.surface.contrast,
17408
+ [vars$b.docTagTextColor]: dark.color2,
17409
+ [vars$b.keywordTextColor]: dark.color2,
17410
+ [vars$b.metaKeywordTextColor]: dark.color2,
17411
+ [vars$b.templateTagTextColor]: dark.color2,
17412
+ [vars$b.templateVariableTextColor]: dark.color2,
17413
+ [vars$b.typeTextColor]: dark.color2,
17414
+ [vars$b.variableLanguageTextColor]: dark.color2,
17415
+ [vars$b.titleTextColor]: dark.color3,
17416
+ [vars$b.titleClassTextColor]: dark.color3,
17417
+ [vars$b.titleClassInheritedTextColor]: dark.color3,
17418
+ [vars$b.titleFunctionTextColor]: dark.color3,
17419
+ [vars$b.attrTextColor]: dark.color4,
17420
+ [vars$b.attributeTextColor]: dark.color4,
17421
+ [vars$b.literalTextColor]: dark.color4,
17422
+ [vars$b.metaTextColor]: dark.color4,
17423
+ [vars$b.numberTextColor]: dark.color4,
17424
+ [vars$b.operatorTextColor]: dark.color4,
17425
+ [vars$b.variableTextColor]: dark.color4,
17426
+ [vars$b.selectorAttrTextColor]: dark.color4,
17427
+ [vars$b.selectorClassTextColor]: dark.color4,
17428
+ [vars$b.selectorIdTextColor]: dark.color4,
17429
+ [vars$b.regexpTextColor]: dark.color13,
17430
+ [vars$b.stringTextColor]: dark.color13,
17431
+ [vars$b.metaStringTextColor]: dark.color13,
17432
+ [vars$b.builtInTextColor]: dark.color5,
17433
+ [vars$b.symbolTextColor]: dark.color5,
17434
+ [vars$b.commentTextColor]: dark.color6,
17435
+ [vars$b.codeTextColor]: dark.color6,
17436
+ [vars$b.formulaTextColor]: dark.color6,
17437
+ [vars$b.nameTextColor]: dark.color7,
17438
+ [vars$b.quoteTextColor]: dark.color7,
17439
+ [vars$b.selectorTagTextColor]: dark.color7,
17440
+ [vars$b.selectorPseudoTextColor]: dark.color7,
17441
+ [vars$b.substTextColor]: dark.color8,
17442
+ [vars$b.sectionTextColor]: dark.color4,
17443
+ [vars$b.bulletTextColor]: dark.color9,
17444
+ [vars$b.emphasisTextColor]: dark.color8,
17445
+ [vars$b.strongTextColor]: dark.color8,
17446
+ [vars$b.additionTextColor]: dark.color7,
17447
+ [vars$b.additionBgColor]: dark.color10,
17448
+ [vars$b.deletionTextColor]: dark.color2,
17449
+ [vars$b.deletionBgColor]: dark.color10,
17208
17450
  },
17209
17451
  };
17210
17452
 
@@ -17212,36 +17454,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
17212
17454
  __proto__: null,
17213
17455
  codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
17214
17456
  default: CodeSnippet,
17215
- vars: vars$a
17457
+ vars: vars$b
17216
17458
  });
17217
17459
 
17218
- const vars$9 = RadioGroupClass.cssVarList;
17460
+ const vars$a = RadioGroupClass.cssVarList;
17219
17461
  const globalRefs$7 = getThemeRefs(globals);
17220
17462
 
17221
17463
  const radioGroup = {
17222
- [vars$9.buttonsRowGap]: '9px',
17223
- [vars$9.hostWidth]: refs.width,
17224
- [vars$9.hostDirection]: refs.direction,
17225
- [vars$9.fontSize]: refs.fontSize,
17226
- [vars$9.fontFamily]: refs.fontFamily,
17227
- [vars$9.labelTextColor]: refs.labelTextColor,
17228
- [vars$9.labelRequiredIndicator]: refs.requiredIndicator,
17229
- [vars$9.errorMessageTextColor]: refs.errorMessageTextColor,
17230
- [vars$9.helperTextColor]: refs.helperTextColor,
17231
- [vars$9.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
17464
+ [vars$a.buttonsRowGap]: '9px',
17465
+ [vars$a.hostWidth]: refs.width,
17466
+ [vars$a.hostDirection]: refs.direction,
17467
+ [vars$a.fontSize]: refs.fontSize,
17468
+ [vars$a.fontFamily]: refs.fontFamily,
17469
+ [vars$a.labelTextColor]: refs.labelTextColor,
17470
+ [vars$a.labelRequiredIndicator]: refs.requiredIndicator,
17471
+ [vars$a.errorMessageTextColor]: refs.errorMessageTextColor,
17472
+ [vars$a.helperTextColor]: refs.helperTextColor,
17473
+ [vars$a.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
17232
17474
 
17233
17475
  textAlign: {
17234
- right: { [vars$9.inputTextAlign]: 'right' },
17235
- left: { [vars$9.inputTextAlign]: 'left' },
17236
- center: { [vars$9.inputTextAlign]: 'center' },
17476
+ right: { [vars$a.inputTextAlign]: 'right' },
17477
+ left: { [vars$a.inputTextAlign]: 'left' },
17478
+ center: { [vars$a.inputTextAlign]: 'center' },
17237
17479
  },
17238
17480
 
17239
17481
  _fullWidth: {
17240
- [vars$9.buttonsSpacing]: 'space-between',
17482
+ [vars$a.buttonsSpacing]: 'space-between',
17241
17483
  },
17242
17484
 
17243
17485
  _disabled: {
17244
- [vars$9.itemsLabelColor]: globalRefs$7.colors.surface.light,
17486
+ [vars$a.itemsLabelColor]: globalRefs$7.colors.surface.light,
17245
17487
  },
17246
17488
  };
17247
17489
 
@@ -17249,24 +17491,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
17249
17491
  __proto__: null,
17250
17492
  default: radioGroup,
17251
17493
  radioGroup: radioGroup,
17252
- vars: vars$9
17494
+ vars: vars$a
17253
17495
  });
17254
17496
 
17255
- const vars$8 = RadioButtonClass.cssVarList;
17497
+ const vars$9 = RadioButtonClass.cssVarList;
17256
17498
  const globalRefs$6 = getThemeRefs(globals);
17257
17499
 
17258
17500
  const radioButton = {
17259
- [vars$8.fontFamily]: refs.fontFamily,
17260
- [vars$8.radioSize]: 'calc(1em + 6px)',
17261
- [vars$8.radioMargin]: 'auto 4px',
17262
- [vars$8.radioCheckedSize]: `calc(var(${vars$8.radioSize})/5)`,
17263
- [vars$8.radioCheckedColor]: globalRefs$6.colors.surface.light,
17264
- [vars$8.radioBackgroundColor]: globalRefs$6.colors.surface.light,
17265
- [vars$8.radioBorderColor]: 'none',
17266
- [vars$8.radioBorderWidth]: 0,
17501
+ [vars$9.fontFamily]: refs.fontFamily,
17502
+ [vars$9.radioSize]: 'calc(1em + 6px)',
17503
+ [vars$9.radioMargin]: 'auto 4px',
17504
+ [vars$9.radioCheckedSize]: `calc(var(${vars$9.radioSize})/5)`,
17505
+ [vars$9.radioCheckedColor]: globalRefs$6.colors.surface.light,
17506
+ [vars$9.radioBackgroundColor]: globalRefs$6.colors.surface.light,
17507
+ [vars$9.radioBorderColor]: 'none',
17508
+ [vars$9.radioBorderWidth]: 0,
17267
17509
 
17268
17510
  _checked: {
17269
- [vars$8.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
17511
+ [vars$9.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
17270
17512
  },
17271
17513
 
17272
17514
  _hover: {
@@ -17275,16 +17517,16 @@ const radioButton = {
17275
17517
 
17276
17518
  size: {
17277
17519
  xs: {
17278
- [vars$8.fontSize]: '12px',
17520
+ [vars$9.fontSize]: '12px',
17279
17521
  },
17280
17522
  sm: {
17281
- [vars$8.fontSize]: '14px',
17523
+ [vars$9.fontSize]: '14px',
17282
17524
  },
17283
17525
  md: {
17284
- [vars$8.fontSize]: '16px',
17526
+ [vars$9.fontSize]: '16px',
17285
17527
  },
17286
17528
  lg: {
17287
- [vars$8.fontSize]: '18px',
17529
+ [vars$9.fontSize]: '18px',
17288
17530
  },
17289
17531
  },
17290
17532
  };
@@ -17293,128 +17535,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
17293
17535
  __proto__: null,
17294
17536
  default: radioButton,
17295
17537
  radioButton: radioButton,
17296
- vars: vars$8
17538
+ vars: vars$9
17297
17539
  });
17298
17540
 
17299
17541
  const globalRefs$5 = getThemeRefs(globals);
17300
17542
 
17301
- const vars$7 = CalendarClass.cssVarList;
17543
+ const vars$8 = CalendarClass.cssVarList;
17302
17544
 
17303
17545
  const calendar = {
17304
- [vars$7.fontFamily]: refs.fontFamily,
17305
- [vars$7.fontSize]: refs.fontSize,
17306
- [vars$7.hostDirection]: refs.direction,
17546
+ [vars$8.fontFamily]: refs.fontFamily,
17547
+ [vars$8.fontSize]: refs.fontSize,
17548
+ [vars$8.hostDirection]: refs.direction,
17307
17549
 
17308
- [vars$7.calendarPadding]: '1em',
17550
+ [vars$8.calendarPadding]: '1em',
17309
17551
 
17310
- [vars$7.topNavVerticalPadding]: '1em',
17311
- [vars$7.topNavAlignment]: 'space-between',
17312
- [vars$7.topNavGap]: '0',
17313
- [vars$7.topNavSelectorsGap]: '0.5em',
17552
+ [vars$8.topNavVerticalPadding]: '1em',
17553
+ [vars$8.topNavAlignment]: 'space-between',
17554
+ [vars$8.topNavGap]: '0',
17555
+ [vars$8.topNavSelectorsGap]: '0.5em',
17314
17556
 
17315
- [vars$7.bottomNavVerticalPadding]: '0.75em',
17316
- [vars$7.bottomNavHorizontalPadding]: '1.5em',
17317
- [vars$7.bottomNavAlignment]: 'space-between',
17318
- [vars$7.bottomNavGap]: '0.5em',
17557
+ [vars$8.bottomNavVerticalPadding]: '0.75em',
17558
+ [vars$8.bottomNavHorizontalPadding]: '1.5em',
17559
+ [vars$8.bottomNavAlignment]: 'space-between',
17560
+ [vars$8.bottomNavGap]: '0.5em',
17319
17561
 
17320
- [vars$7.navMarginBottom]: '0.75em',
17321
- [vars$7.navBorderBottomWidth]: '1px',
17322
- [vars$7.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
17323
- [vars$7.navBorderBottomStyle]: 'solid',
17562
+ [vars$8.navMarginBottom]: '0.75em',
17563
+ [vars$8.navBorderBottomWidth]: '1px',
17564
+ [vars$8.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
17565
+ [vars$8.navBorderBottomStyle]: 'solid',
17324
17566
 
17325
- [vars$7.yearInputWidth]: '6em',
17326
- [vars$7.monthInputWidth]: '8em',
17567
+ [vars$8.yearInputWidth]: '6em',
17568
+ [vars$8.monthInputWidth]: '8em',
17327
17569
 
17328
- [vars$7.navButtonSize]: '24px',
17329
- [vars$7.navButtonCursor]: 'pointer',
17570
+ [vars$8.navButtonSize]: '24px',
17571
+ [vars$8.navButtonCursor]: 'pointer',
17330
17572
 
17331
- [vars$7.weekdayFontSize]: '0.875em',
17332
- [vars$7.weekdayFontWeight]: '500',
17573
+ [vars$8.weekdayFontSize]: '0.875em',
17574
+ [vars$8.weekdayFontWeight]: '500',
17333
17575
 
17334
17576
  // day table cell
17335
- [vars$7.dayHeight]: '3.125em',
17577
+ [vars$8.dayHeight]: '3.125em',
17336
17578
 
17337
17579
  // day value
17338
- [vars$7.daySize]: '2.125em',
17339
- [vars$7.dayFontSize]: '1em',
17340
- [vars$7.dayRadius]: '50%',
17341
- [vars$7.dayTextAlign]: 'center',
17342
- [vars$7.dayPadding]: '0',
17343
- [vars$7.dayTextColor]: globalRefs$5.colors.surface.contrast,
17344
- [vars$7.dayFontWeight]: '500',
17345
- [vars$7.dayBackgroundColor]: 'transparent',
17346
- [vars$7.dayCursor]: 'pointer',
17347
- [vars$7.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
17580
+ [vars$8.daySize]: '2.125em',
17581
+ [vars$8.dayFontSize]: '1em',
17582
+ [vars$8.dayRadius]: '50%',
17583
+ [vars$8.dayTextAlign]: 'center',
17584
+ [vars$8.dayPadding]: '0',
17585
+ [vars$8.dayTextColor]: globalRefs$5.colors.surface.contrast,
17586
+ [vars$8.dayFontWeight]: '500',
17587
+ [vars$8.dayBackgroundColor]: 'transparent',
17588
+ [vars$8.dayCursor]: 'pointer',
17589
+ [vars$8.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
17348
17590
 
17349
17591
  // selected day
17350
- [vars$7.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
17351
- [vars$7.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
17592
+ [vars$8.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
17593
+ [vars$8.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
17352
17594
 
17353
17595
  // disabled day (out of min/max range)
17354
- [vars$7.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
17596
+ [vars$8.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
17355
17597
 
17356
17598
  // today
17357
- [vars$7.currentDayBorderColor]: globalRefs$5.colors.surface.light,
17358
- [vars$7.currentDayBorderWidth]: '1px',
17359
- [vars$7.currentDayBorderStyle]: 'solid',
17599
+ [vars$8.currentDayBorderColor]: globalRefs$5.colors.surface.light,
17600
+ [vars$8.currentDayBorderWidth]: '1px',
17601
+ [vars$8.currentDayBorderStyle]: 'solid',
17360
17602
 
17361
17603
  size: {
17362
- xs: { [vars$7.fontSize]: '12px' },
17363
- sm: { [vars$7.fontSize]: '14px' },
17364
- md: { [vars$7.fontSize]: '16px' },
17365
- lg: { [vars$7.fontSize]: '18px' },
17604
+ xs: { [vars$8.fontSize]: '12px' },
17605
+ sm: { [vars$8.fontSize]: '14px' },
17606
+ md: { [vars$8.fontSize]: '16px' },
17607
+ lg: { [vars$8.fontSize]: '18px' },
17366
17608
  },
17367
17609
 
17368
- [vars$7.navButtonRotation]: 'rotate(180deg)',
17610
+ [vars$8.navButtonRotation]: 'rotate(180deg)',
17369
17611
 
17370
17612
  _disabled: {
17371
- [vars$7.navButtonOpacity]: '0.5',
17372
- [vars$7.dayBackgroundColorHover]: 'none',
17373
- [vars$7.navButtonCursor]: 'default',
17374
- [vars$7.dayCursor]: 'default',
17613
+ [vars$8.navButtonOpacity]: '0.5',
17614
+ [vars$8.dayBackgroundColorHover]: 'none',
17615
+ [vars$8.navButtonCursor]: 'default',
17616
+ [vars$8.dayCursor]: 'default',
17375
17617
  },
17376
17618
 
17377
17619
  _fullWidth: {
17378
- [vars$7.hostWidth]: '100%',
17379
- [vars$7.dayBlockAlign]: '0 auto',
17620
+ [vars$8.hostWidth]: '100%',
17621
+ [vars$8.dayBlockAlign]: '0 auto',
17380
17622
  },
17381
17623
  };
17382
17624
 
17383
17625
  var calendar$1 = /*#__PURE__*/Object.freeze({
17384
17626
  __proto__: null,
17385
17627
  default: calendar,
17386
- vars: vars$7
17628
+ vars: vars$8
17387
17629
  });
17388
17630
 
17389
17631
  const globalRefs$4 = getThemeRefs(globals);
17390
17632
  const shadowColor$1 = '#00000020';
17391
17633
  const { shadow } = globalRefs$4;
17392
17634
 
17393
- const vars$6 = DateFieldClass.cssVarList;
17635
+ const vars$7 = DateFieldClass.cssVarList;
17394
17636
 
17395
17637
  const dateField = {
17396
- [vars$6.hostWidth]: refs.width,
17397
- [vars$6.hostDirection]: refs.direction,
17398
- [vars$6.iconMargin]: '0.375em',
17399
-
17400
- [vars$6.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
17401
- [vars$6.overlay.backgroundColor]: refs.backgroundColor,
17402
- [vars$6.overlay.backdropBackgroundColor]: 'transparent',
17403
- [vars$6.overlay.backdropPointerEvents]: 'all',
17404
- [vars$6.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
17405
- [vars$6.overlay.outlineWidth]: '0',
17406
- [vars$6.overlay.outlineColor]: 'transparent',
17407
- [vars$6.overlay.outlineStyle]: 'none',
17408
- [vars$6.overlay.padding]: '0',
17409
-
17410
- [vars$6.rtlInputDirection]: 'ltr',
17411
- [vars$6.rtlInputAlignment]: 'right',
17638
+ [vars$7.hostWidth]: refs.width,
17639
+ [vars$7.hostDirection]: refs.direction,
17640
+ [vars$7.iconMargin]: '0.375em',
17641
+
17642
+ [vars$7.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
17643
+ [vars$7.overlay.backgroundColor]: refs.backgroundColor,
17644
+ [vars$7.overlay.backdropBackgroundColor]: 'transparent',
17645
+ [vars$7.overlay.backdropPointerEvents]: 'all',
17646
+ [vars$7.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
17647
+ [vars$7.overlay.outlineWidth]: '0',
17648
+ [vars$7.overlay.outlineColor]: 'transparent',
17649
+ [vars$7.overlay.outlineStyle]: 'none',
17650
+ [vars$7.overlay.padding]: '0',
17651
+
17652
+ [vars$7.rtlInputDirection]: 'ltr',
17653
+ [vars$7.rtlInputAlignment]: 'right',
17412
17654
  };
17413
17655
 
17414
17656
  var dateField$1 = /*#__PURE__*/Object.freeze({
17415
17657
  __proto__: null,
17416
17658
  default: dateField,
17417
- vars: vars$6
17659
+ vars: vars$7
17418
17660
  });
17419
17661
 
17420
17662
  const globalRefs$3 = getThemeRefs(globals);
@@ -17423,7 +17665,7 @@ const compVars = ListClass.cssVarList;
17423
17665
 
17424
17666
  const [helperTheme, helperRefs, helperVars] = createHelperVars(
17425
17667
  { shadowColor: '#00000020' },
17426
- componentName$4
17668
+ componentName$5
17427
17669
  );
17428
17670
 
17429
17671
  const { shadowColor } = helperRefs;
@@ -17463,7 +17705,7 @@ const list$1 = {
17463
17705
  },
17464
17706
  };
17465
17707
 
17466
- const vars$5 = {
17708
+ const vars$6 = {
17467
17709
  ...compVars,
17468
17710
  ...helperVars,
17469
17711
  };
@@ -17471,78 +17713,78 @@ const vars$5 = {
17471
17713
  var list$2 = /*#__PURE__*/Object.freeze({
17472
17714
  __proto__: null,
17473
17715
  default: list$1,
17474
- vars: vars$5
17716
+ vars: vars$6
17475
17717
  });
17476
17718
 
17477
17719
  const globalRefs$2 = getThemeRefs(globals);
17478
17720
 
17479
- const vars$4 = ListItemClass.cssVarList;
17721
+ const vars$5 = ListItemClass.cssVarList;
17480
17722
 
17481
17723
  const list = {
17482
- [vars$4.backgroundColor]: globalRefs$2.colors.surface.main,
17483
- [vars$4.padding]: globalRefs$2.spacing.lg,
17484
- [vars$4.gap]: globalRefs$2.spacing.md,
17485
- [vars$4.borderStyle]: 'solid',
17486
- [vars$4.borderWidth]: globalRefs$2.border.xs,
17487
- [vars$4.borderColor]: globalRefs$2.colors.surface.main,
17488
- [vars$4.borderRadius]: globalRefs$2.radius.sm,
17489
- [vars$4.cursor]: 'pointer',
17490
- [vars$4.alignItems]: 'center',
17491
- [vars$4.flexDirection]: 'row',
17492
- [vars$4.transition]: 'border-color 0.2s, background-color 0.2s',
17724
+ [vars$5.backgroundColor]: globalRefs$2.colors.surface.main,
17725
+ [vars$5.padding]: globalRefs$2.spacing.lg,
17726
+ [vars$5.gap]: globalRefs$2.spacing.md,
17727
+ [vars$5.borderStyle]: 'solid',
17728
+ [vars$5.borderWidth]: globalRefs$2.border.xs,
17729
+ [vars$5.borderColor]: globalRefs$2.colors.surface.main,
17730
+ [vars$5.borderRadius]: globalRefs$2.radius.sm,
17731
+ [vars$5.cursor]: 'pointer',
17732
+ [vars$5.alignItems]: 'center',
17733
+ [vars$5.flexDirection]: 'row',
17734
+ [vars$5.transition]: 'border-color 0.2s, background-color 0.2s',
17493
17735
 
17494
17736
  variant: {
17495
17737
  tile: {
17496
- [vars$4.alignItems]: 'flex-start',
17497
- [vars$4.flexDirection]: 'column',
17498
- [vars$4.borderColor]: globalRefs$2.colors.surface.light,
17738
+ [vars$5.alignItems]: 'flex-start',
17739
+ [vars$5.flexDirection]: 'column',
17740
+ [vars$5.borderColor]: globalRefs$2.colors.surface.light,
17499
17741
  },
17500
17742
  },
17501
17743
 
17502
17744
  _hover: {
17503
- [vars$4.backgroundColor]: globalRefs$2.colors.surface.highlight,
17745
+ [vars$5.backgroundColor]: globalRefs$2.colors.surface.highlight,
17504
17746
  },
17505
17747
 
17506
17748
  _active: {
17507
- [vars$4.backgroundColor]: globalRefs$2.colors.surface.main,
17508
- [vars$4.borderColor]: globalRefs$2.colors.primary.light,
17509
- [vars$4.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
17749
+ [vars$5.backgroundColor]: globalRefs$2.colors.surface.main,
17750
+ [vars$5.borderColor]: globalRefs$2.colors.primary.light,
17751
+ [vars$5.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
17510
17752
  },
17511
17753
  };
17512
17754
 
17513
17755
  var listItem = /*#__PURE__*/Object.freeze({
17514
17756
  __proto__: null,
17515
17757
  default: list,
17516
- vars: vars$4
17758
+ vars: vars$5
17517
17759
  });
17518
17760
 
17519
- const vars$3 = AppsListClass.cssVarList;
17761
+ const vars$4 = AppsListClass.cssVarList;
17520
17762
  const globalRefs$1 = getThemeRefs(globals);
17521
17763
 
17522
17764
  const defaultHeight = '400px';
17523
17765
 
17524
17766
  const appsList = {
17525
- [vars$3.itemsFontWeight]: 'normal',
17526
- [vars$3.itemsTextAlign]: 'start',
17527
- [vars$3.hostDirection]: globalRefs$1.direction,
17528
- [vars$3.maxHeight]: defaultHeight,
17767
+ [vars$4.itemsFontWeight]: 'normal',
17768
+ [vars$4.itemsTextAlign]: 'start',
17769
+ [vars$4.hostDirection]: globalRefs$1.direction,
17770
+ [vars$4.maxHeight]: defaultHeight,
17529
17771
 
17530
17772
  _empty: {
17531
- [vars$3.minHeight]: defaultHeight,
17773
+ [vars$4.minHeight]: defaultHeight,
17532
17774
  },
17533
17775
 
17534
17776
  size: {
17535
17777
  xs: {
17536
- [vars$3.itemsFontSize]: '14px',
17778
+ [vars$4.itemsFontSize]: '14px',
17537
17779
  },
17538
17780
  sm: {
17539
- [vars$3.itemsFontSize]: '14px',
17781
+ [vars$4.itemsFontSize]: '14px',
17540
17782
  },
17541
17783
  md: {
17542
- [vars$3.itemsFontSize]: '16px',
17784
+ [vars$4.itemsFontSize]: '16px',
17543
17785
  },
17544
17786
  lg: {
17545
- [vars$3.itemsFontSize]: '20px',
17787
+ [vars$4.itemsFontSize]: '20px',
17546
17788
  },
17547
17789
  },
17548
17790
  };
@@ -17550,52 +17792,52 @@ const appsList = {
17550
17792
  var appsList$1 = /*#__PURE__*/Object.freeze({
17551
17793
  __proto__: null,
17552
17794
  default: appsList,
17553
- vars: vars$3
17795
+ vars: vars$4
17554
17796
  });
17555
17797
 
17556
- const vars$2 = ScopesListClass.cssVarList;
17798
+ const vars$3 = ScopesListClass.cssVarList;
17557
17799
 
17558
- const scopesList = {
17559
- [vars$2.requiredInputBorderColor]: theme$1._disabled[vars$O.borderColor],
17560
- [vars$2.requiredInputValueTextColor]: theme$1._disabled[vars$O.valueTextColor],
17561
- [vars$2.hostWidth]: '280px',
17800
+ const scopesList$1 = {
17801
+ [vars$3.requiredInputBorderColor]: theme$1._disabled[vars$P.borderColor],
17802
+ [vars$3.requiredInputValueTextColor]: theme$1._disabled[vars$P.valueTextColor],
17803
+ [vars$3.hostWidth]: '280px',
17562
17804
  _fullWidth: {
17563
- [vars$2.hostWidth]: '100%',
17805
+ [vars$3.hostWidth]: '100%',
17564
17806
  },
17565
17807
  };
17566
17808
 
17567
- var scopesList$1 = /*#__PURE__*/Object.freeze({
17809
+ var scopesList$2 = /*#__PURE__*/Object.freeze({
17568
17810
  __proto__: null,
17569
- default: scopesList,
17570
- vars: vars$2
17811
+ default: scopesList$1,
17812
+ vars: vars$3
17571
17813
  });
17572
17814
 
17573
17815
  const globalRefs = getThemeRefs(globals);
17574
- const vars$1 = ThirdPartyAppLogoClass.cssVarList;
17816
+ const vars$2 = ThirdPartyAppLogoClass.cssVarList;
17575
17817
 
17576
17818
  const thirdPartyAppLogo = {
17577
- [vars$1.gap]: globalRefs.spacing.lg,
17578
- [vars$1.arrowsColor]: globalRefs.colors.surface.dark,
17579
- [vars$1.thirdPartyAppLogoFallback]:
17819
+ [vars$2.gap]: globalRefs.spacing.lg,
17820
+ [vars$2.arrowsColor]: globalRefs.colors.surface.dark,
17821
+ [vars$2.thirdPartyAppLogoFallback]:
17580
17822
  'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
17581
- [vars$1.companyLogoFallback]:
17823
+ [vars$2.companyLogoFallback]:
17582
17824
  'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
17583
17825
  size: {
17584
17826
  xs: {
17585
- [vars$1.logoMaxHeight]: '30px',
17586
- [vars$1.logoMaxWidth]: '120px',
17827
+ [vars$2.logoMaxHeight]: '30px',
17828
+ [vars$2.logoMaxWidth]: '120px',
17587
17829
  },
17588
17830
  sm: {
17589
- [vars$1.logoMaxHeight]: '40px',
17590
- [vars$1.logoMaxWidth]: '160px',
17831
+ [vars$2.logoMaxHeight]: '40px',
17832
+ [vars$2.logoMaxWidth]: '160px',
17591
17833
  },
17592
17834
  md: {
17593
- [vars$1.logoMaxHeight]: '48px',
17594
- [vars$1.logoMaxWidth]: '200px',
17835
+ [vars$2.logoMaxHeight]: '48px',
17836
+ [vars$2.logoMaxWidth]: '200px',
17595
17837
  },
17596
17838
  lg: {
17597
- [vars$1.logoMaxHeight]: '60px',
17598
- [vars$1.logoMaxWidth]: '240px',
17839
+ [vars$2.logoMaxHeight]: '60px',
17840
+ [vars$2.logoMaxWidth]: '240px',
17599
17841
  },
17600
17842
  },
17601
17843
  };
@@ -17603,6 +17845,21 @@ const thirdPartyAppLogo = {
17603
17845
  var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
17604
17846
  __proto__: null,
17605
17847
  default: thirdPartyAppLogo,
17848
+ vars: vars$2
17849
+ });
17850
+
17851
+ const vars$1 = SecurityQuestionsSetupClass.cssVarList;
17852
+
17853
+ const scopesList = {
17854
+ [vars$1.hostWidth]: 'fit-content',
17855
+ _fullWidth: {
17856
+ [vars$1.hostWidth]: '100%',
17857
+ },
17858
+ };
17859
+
17860
+ var securityQuestionsSetup = /*#__PURE__*/Object.freeze({
17861
+ __proto__: null,
17862
+ default: scopesList,
17606
17863
  vars: vars$1
17607
17864
  });
17608
17865
 
@@ -17656,8 +17913,9 @@ const components = {
17656
17913
  list: list$2,
17657
17914
  listItem,
17658
17915
  appsList: appsList$1,
17659
- scopesList: scopesList$1,
17916
+ scopesList: scopesList$2,
17660
17917
  thirdPartyAppLogo: thirdPartyAppLogo$1,
17918
+ securityQuestionsSetup,
17661
17919
  };
17662
17920
 
17663
17921
  const theme = Object.keys(components).reduce(
@@ -17670,7 +17928,7 @@ const vars = Object.keys(components).reduce(
17670
17928
  );
17671
17929
 
17672
17930
  const defaultTheme = { globals, components: theme };
17673
- const themeVars = { globals: vars$Q, components: vars };
17931
+ const themeVars = { globals: vars$R, components: vars };
17674
17932
 
17675
17933
  const colors = {
17676
17934
  surface: {
@@ -17719,5 +17977,5 @@ const darkTheme = merge({}, defaultTheme, {
17719
17977
  },
17720
17978
  });
17721
17979
 
17722
- export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
17980
+ export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SecurityQuestionsSetupClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
17723
17981
  //# sourceMappingURL=index.esm.js.map