@descope/web-components-ui 1.0.402 → 1.0.404

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.
Files changed (33) hide show
  1. package/dist/cjs/index.cjs.js +1582 -1208
  2. package/dist/cjs/index.cjs.js.map +1 -1
  3. package/dist/index.d.ts +2 -1
  4. package/dist/index.esm.js +1629 -1208
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/umd/1053.js +1 -1
  7. package/dist/umd/4619.js +1 -1
  8. package/dist/umd/6726.js +1 -1
  9. package/dist/umd/7212.js +1 -1
  10. package/dist/umd/DescopeDev.js +1 -1
  11. package/dist/umd/descope-hybrid-field-index-js.js +19 -0
  12. package/dist/umd/descope-hybrid-field-index-js.js.LICENSE.txt +5 -0
  13. package/dist/umd/index.js +1 -1
  14. package/dist/umd/phone-fields-descope-phone-field-descope-phone-field-internal-index-js.js +1 -1
  15. package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
  16. package/dist/umd/phone-fields-descope-phone-input-box-field-descope-phone-input-box-internal-index-js.js +1 -1
  17. package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js +148 -1
  18. package/package.json +1 -1
  19. package/src/components/descope-hybrid-field/HybridFieldClass.js +306 -0
  20. package/src/components/descope-hybrid-field/helpers.js +5 -0
  21. package/src/components/descope-hybrid-field/index.js +9 -0
  22. package/src/components/phone-fields/descope-phone-field/PhoneFieldClass.js +45 -5
  23. package/src/components/phone-fields/descope-phone-field/descope-phone-field-internal/PhoneFieldInternal.js +45 -11
  24. package/src/components/phone-fields/descope-phone-input-box-field/PhoneFieldInputBoxClass.js +21 -12
  25. package/src/components/phone-fields/descope-phone-input-box-field/descope-phone-input-box-internal/PhoneFieldInternalInputBox.js +17 -5
  26. package/src/index.cjs.js +1 -0
  27. package/src/index.d.ts +2 -1
  28. package/src/index.js +1 -0
  29. package/src/mixins/inputEventsDispatchingMixin.js +5 -5
  30. package/src/theme/components/hybridField.js +15 -0
  31. package/src/theme/components/index.js +2 -0
  32. package/dist/umd/4831.js +0 -148
  33. /package/dist/umd/{4831.js.LICENSE.txt → phone-fields-descope-phone-input-box-field-index-js.js.LICENSE.txt} +0 -0
package/dist/index.esm.js CHANGED
@@ -1433,13 +1433,13 @@ const inputEventsDispatchingMixin = (superclass) =>
1433
1433
  handleInputEventDispatching() {
1434
1434
  let previousRootComponentValue = this.value;
1435
1435
 
1436
+ // we are comparing the previous value to the new one,
1437
+ // and if they have the same value, we are blocking the input event
1436
1438
  this.addEventListener('input', (e) => {
1437
- // we are comparing the previous value to the new one,
1438
- // and if they have the same value, we are blocking the input event
1439
- if (previousRootComponentValue === this.value) {
1440
- e.stopImmediatePropagation();
1441
- } else {
1439
+ e.stopImmediatePropagation();
1440
+ if (previousRootComponentValue !== this.value) {
1442
1441
  previousRootComponentValue = this.value;
1442
+ createDispatchEvent.call(this, 'input', { bubbles: true });
1443
1443
  }
1444
1444
  });
1445
1445
  }
@@ -1755,9 +1755,9 @@ const createIcon = async (src) => {
1755
1755
 
1756
1756
  /* eslint-disable no-use-before-define */
1757
1757
 
1758
- const componentName$14 = getComponentName('icon');
1758
+ const componentName$15 = getComponentName('icon');
1759
1759
 
1760
- class RawIcon extends createBaseClass({ componentName: componentName$14, baseSelector: 'slot' }) {
1760
+ class RawIcon extends createBaseClass({ componentName: componentName$15, baseSelector: 'slot' }) {
1761
1761
  static get observedAttributes() {
1762
1762
  return ['src'];
1763
1763
  }
@@ -1842,7 +1842,7 @@ const clickableMixin = (superclass) =>
1842
1842
  }
1843
1843
  };
1844
1844
 
1845
- const componentName$13 = getComponentName('button');
1845
+ const componentName$14 = getComponentName('button');
1846
1846
 
1847
1847
  const resetStyles = `
1848
1848
  :host {
@@ -1958,7 +1958,7 @@ const ButtonClass = compose(
1958
1958
  }
1959
1959
  `,
1960
1960
  excludeAttrsSync: ['tabindex'],
1961
- componentName: componentName$13,
1961
+ componentName: componentName$14,
1962
1962
  })
1963
1963
  );
1964
1964
 
@@ -1995,7 +1995,7 @@ loadingIndicatorStyles = `
1995
1995
  }
1996
1996
  `;
1997
1997
 
1998
- customElements.define(componentName$13, ButtonClass);
1998
+ customElements.define(componentName$14, ButtonClass);
1999
1999
 
2000
2000
  const createBaseInputClass = (...args) =>
2001
2001
  compose(
@@ -2005,11 +2005,11 @@ const createBaseInputClass = (...args) =>
2005
2005
  inputEventsDispatchingMixin
2006
2006
  )(createBaseClass(...args));
2007
2007
 
2008
- const componentName$12 = getComponentName('boolean-field-internal');
2008
+ const componentName$13 = getComponentName('boolean-field-internal');
2009
2009
 
2010
2010
  const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
2011
2011
 
2012
- const BaseInputClass$a = createBaseInputClass({ componentName: componentName$12, baseSelector: 'div' });
2012
+ const BaseInputClass$a = createBaseInputClass({ componentName: componentName$13, baseSelector: 'div' });
2013
2013
 
2014
2014
  class BooleanInputInternal extends BaseInputClass$a {
2015
2015
  static get observedAttributes() {
@@ -2085,14 +2085,14 @@ const booleanFieldMixin = (superclass) =>
2085
2085
 
2086
2086
  const template = document.createElement('template');
2087
2087
  template.innerHTML = `
2088
- <${componentName$12}
2088
+ <${componentName$13}
2089
2089
  tabindex="-1"
2090
2090
  slot="input"
2091
- ></${componentName$12}>
2091
+ ></${componentName$13}>
2092
2092
  `;
2093
2093
 
2094
2094
  this.baseElement.appendChild(template.content.cloneNode(true));
2095
- this.inputElement = this.shadowRoot.querySelector(componentName$12);
2095
+ this.inputElement = this.shadowRoot.querySelector(componentName$13);
2096
2096
  this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
2097
2097
 
2098
2098
  forwardAttrs(this, this.inputElement, {
@@ -2306,7 +2306,7 @@ descope-boolean-field-internal {
2306
2306
  }
2307
2307
  `;
2308
2308
 
2309
- const componentName$11 = getComponentName('checkbox');
2309
+ const componentName$12 = getComponentName('checkbox');
2310
2310
 
2311
2311
  const {
2312
2312
  host: host$n,
@@ -2418,15 +2418,15 @@ const CheckboxClass = compose(
2418
2418
  }
2419
2419
  `,
2420
2420
  excludeAttrsSync: ['label', 'tabindex'],
2421
- componentName: componentName$11,
2421
+ componentName: componentName$12,
2422
2422
  })
2423
2423
  );
2424
2424
 
2425
- customElements.define(componentName$12, BooleanInputInternal);
2425
+ customElements.define(componentName$13, BooleanInputInternal);
2426
2426
 
2427
- customElements.define(componentName$11, CheckboxClass);
2427
+ customElements.define(componentName$12, CheckboxClass);
2428
2428
 
2429
- const componentName$10 = getComponentName('switch-toggle');
2429
+ const componentName$11 = getComponentName('switch-toggle');
2430
2430
 
2431
2431
  const {
2432
2432
  host: host$m,
@@ -2558,17 +2558,17 @@ const SwitchToggleClass = compose(
2558
2558
  }
2559
2559
  `,
2560
2560
  excludeAttrsSync: ['label', 'tabindex'],
2561
- componentName: componentName$10,
2561
+ componentName: componentName$11,
2562
2562
  })
2563
2563
  );
2564
2564
 
2565
- customElements.define(componentName$10, SwitchToggleClass);
2565
+ customElements.define(componentName$11, SwitchToggleClass);
2566
2566
 
2567
- const componentName$$ = getComponentName('loader-linear');
2567
+ const componentName$10 = getComponentName('loader-linear');
2568
2568
 
2569
- class RawLoaderLinear extends createBaseClass({ componentName: componentName$$, baseSelector: ':host > div' }) {
2569
+ class RawLoaderLinear extends createBaseClass({ componentName: componentName$10, baseSelector: ':host > div' }) {
2570
2570
  static get componentName() {
2571
- return componentName$$;
2571
+ return componentName$10;
2572
2572
  }
2573
2573
 
2574
2574
  constructor() {
@@ -2629,11 +2629,11 @@ const LoaderLinearClass = compose(
2629
2629
  componentNameValidationMixin
2630
2630
  )(RawLoaderLinear);
2631
2631
 
2632
- customElements.define(componentName$$, LoaderLinearClass);
2632
+ customElements.define(componentName$10, LoaderLinearClass);
2633
2633
 
2634
- const componentName$_ = getComponentName('loader-radial');
2634
+ const componentName$$ = getComponentName('loader-radial');
2635
2635
 
2636
- class RawLoaderRadial extends createBaseClass({ componentName: componentName$_, baseSelector: ':host > div' }) {
2636
+ class RawLoaderRadial extends createBaseClass({ componentName: componentName$$, baseSelector: ':host > div' }) {
2637
2637
  constructor() {
2638
2638
  super();
2639
2639
 
@@ -2677,11 +2677,11 @@ const LoaderRadialClass = compose(
2677
2677
  componentNameValidationMixin
2678
2678
  )(RawLoaderRadial);
2679
2679
 
2680
- customElements.define(componentName$_, LoaderRadialClass);
2680
+ customElements.define(componentName$$, LoaderRadialClass);
2681
2681
 
2682
- const componentName$Z = getComponentName('container');
2682
+ const componentName$_ = getComponentName('container');
2683
2683
 
2684
- class RawContainer extends createBaseClass({ componentName: componentName$Z, baseSelector: 'slot' }) {
2684
+ class RawContainer extends createBaseClass({ componentName: componentName$_, baseSelector: 'slot' }) {
2685
2685
  constructor() {
2686
2686
  super();
2687
2687
 
@@ -2740,9 +2740,9 @@ const ContainerClass = compose(
2740
2740
  componentNameValidationMixin
2741
2741
  )(RawContainer);
2742
2742
 
2743
- customElements.define(componentName$Z, ContainerClass);
2743
+ customElements.define(componentName$_, ContainerClass);
2744
2744
 
2745
- const componentName$Y = getComponentName('combo-box');
2745
+ const componentName$Z = getComponentName('combo-box');
2746
2746
 
2747
2747
  const ComboBoxMixin = (superclass) =>
2748
2748
  class ComboBoxMixinClass extends superclass {
@@ -3187,14 +3187,14 @@ const ComboBoxClass = compose(
3187
3187
  // and reset items to an empty array, and opening the list box with no items
3188
3188
  // to display.
3189
3189
  excludeAttrsSync: ['tabindex', 'size', 'data'],
3190
- componentName: componentName$Y,
3190
+ componentName: componentName$Z,
3191
3191
  includeForwardProps: ['items', 'renderer', 'selectedItem'],
3192
3192
  })
3193
3193
  );
3194
3194
 
3195
- customElements.define(componentName$Y, ComboBoxClass);
3195
+ customElements.define(componentName$Z, ComboBoxClass);
3196
3196
 
3197
- customElements.define(componentName$14, IconClass);
3197
+ customElements.define(componentName$15, IconClass);
3198
3198
 
3199
3199
  const SUPPORTED_FORMATS = ['MM/DD/YYYY', 'DD/MM/YYYY', 'YYYY/MM/DD'];
3200
3200
 
@@ -3511,7 +3511,7 @@ const nextMonth = (timestamp) => {
3511
3511
  return date;
3512
3512
  };
3513
3513
 
3514
- const componentName$X = getComponentName('calendar');
3514
+ const componentName$Y = getComponentName('calendar');
3515
3515
 
3516
3516
  const observedAttrs$2 = [
3517
3517
  'initial-value',
@@ -3528,7 +3528,7 @@ const observedAttrs$2 = [
3528
3528
 
3529
3529
  const calendarUiAttrs = ['calendar-label-submit', 'calendar-label-cancel'];
3530
3530
 
3531
- const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$X, baseSelector: 'div' });
3531
+ const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$Y, baseSelector: 'div' });
3532
3532
 
3533
3533
  class RawCalendar extends BaseInputClass$9 {
3534
3534
  static get observedAttributes() {
@@ -4141,7 +4141,7 @@ const CalendarClass = compose(
4141
4141
  componentNameValidationMixin
4142
4142
  )(RawCalendar);
4143
4143
 
4144
- customElements.define(componentName$X, CalendarClass);
4144
+ customElements.define(componentName$Y, CalendarClass);
4145
4145
 
4146
4146
  const {
4147
4147
  host: host$j,
@@ -4289,7 +4289,7 @@ var textFieldMappings = {
4289
4289
  inputIconColor: { ...inputIcon, property: 'color' },
4290
4290
  };
4291
4291
 
4292
- const componentName$W = getComponentName('text-field');
4292
+ const componentName$X = getComponentName('text-field');
4293
4293
 
4294
4294
  const observedAttrs$1 = ['type', 'label-type', 'copy-to-clipboard'];
4295
4295
 
@@ -4411,11 +4411,11 @@ const TextFieldClass = compose(
4411
4411
  }
4412
4412
  `,
4413
4413
  excludeAttrsSync: ['tabindex'],
4414
- componentName: componentName$W,
4414
+ componentName: componentName$X,
4415
4415
  })
4416
4416
  );
4417
4417
 
4418
- customElements.define(componentName$W, TextFieldClass);
4418
+ customElements.define(componentName$X, TextFieldClass);
4419
4419
 
4420
4420
  const patterns = {
4421
4421
  MM: '(0?[1-9]|1[0-2])',
@@ -4548,12 +4548,12 @@ class DateCounter {
4548
4548
  }
4549
4549
  }
4550
4550
 
4551
- const componentName$V = getComponentName('date-field');
4551
+ const componentName$W = getComponentName('date-field');
4552
4552
 
4553
4553
  // we set baseSelector to `vaadin-popover` as a temporary hack, so our portalMixin will
4554
4554
  // be able to process this component's overlay. The whole process needs refactoring as soon as possible.
4555
4555
  const BASE_SELECTOR = 'vaadin-popover';
4556
- const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$V, baseSelector: BASE_SELECTOR });
4556
+ const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$W, baseSelector: BASE_SELECTOR });
4557
4557
 
4558
4558
  const dateFieldAttrs = ['format', 'opened', 'initial-value', 'readonly'];
4559
4559
  const calendarAttrs = ['years-range', 'calendar-months', 'calendar-weekdays'];
@@ -5224,11 +5224,11 @@ const DateFieldClass = compose(
5224
5224
  componentNameValidationMixin
5225
5225
  )(RawDateFieldClass);
5226
5226
 
5227
- customElements.define(componentName$V, DateFieldClass);
5227
+ customElements.define(componentName$W, DateFieldClass);
5228
5228
 
5229
- const componentName$U = getComponentName('text');
5229
+ const componentName$V = getComponentName('text');
5230
5230
 
5231
- class RawText extends createBaseClass({ componentName: componentName$U, baseSelector: ':host > slot' }) {
5231
+ class RawText extends createBaseClass({ componentName: componentName$V, baseSelector: ':host > slot' }) {
5232
5232
  constructor() {
5233
5233
  super();
5234
5234
 
@@ -5285,8 +5285,8 @@ const TextClass = compose(
5285
5285
  componentNameValidationMixin
5286
5286
  )(RawText);
5287
5287
 
5288
- const componentName$T = getComponentName('divider');
5289
- class RawDivider extends createBaseClass({ componentName: componentName$T, baseSelector: ':host > div' }) {
5288
+ const componentName$U = getComponentName('divider');
5289
+ class RawDivider extends createBaseClass({ componentName: componentName$U, baseSelector: ':host > div' }) {
5290
5290
  constructor() {
5291
5291
  super();
5292
5292
 
@@ -5385,11 +5385,11 @@ const DividerClass = compose(
5385
5385
  componentNameValidationMixin
5386
5386
  )(RawDivider);
5387
5387
 
5388
- customElements.define(componentName$U, TextClass);
5388
+ customElements.define(componentName$V, TextClass);
5389
5389
 
5390
- customElements.define(componentName$T, DividerClass);
5390
+ customElements.define(componentName$U, DividerClass);
5391
5391
 
5392
- const componentName$S = getComponentName('email-field');
5392
+ const componentName$T = getComponentName('email-field');
5393
5393
 
5394
5394
  const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
5395
5395
  const defaultAutocomplete = 'username';
@@ -5458,15 +5458,15 @@ const EmailFieldClass = compose(
5458
5458
  }
5459
5459
  `,
5460
5460
  excludeAttrsSync: ['tabindex'],
5461
- componentName: componentName$S,
5461
+ componentName: componentName$T,
5462
5462
  })
5463
5463
  );
5464
5464
 
5465
- customElements.define(componentName$S, EmailFieldClass);
5465
+ customElements.define(componentName$T, EmailFieldClass);
5466
5466
 
5467
- const componentName$R = getComponentName('link');
5467
+ const componentName$S = getComponentName('link');
5468
5468
 
5469
- class RawLink extends createBaseClass({ componentName: componentName$R, baseSelector: ':host a' }) {
5469
+ class RawLink extends createBaseClass({ componentName: componentName$S, baseSelector: ':host a' }) {
5470
5470
  constructor() {
5471
5471
  super();
5472
5472
 
@@ -5530,7 +5530,7 @@ const LinkClass = compose(
5530
5530
  componentNameValidationMixin
5531
5531
  )(RawLink);
5532
5532
 
5533
- customElements.define(componentName$R, LinkClass);
5533
+ customElements.define(componentName$S, LinkClass);
5534
5534
 
5535
5535
  const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
5536
5536
  let style;
@@ -5582,37 +5582,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
5582
5582
  return CssVarImageClass;
5583
5583
  };
5584
5584
 
5585
- const componentName$Q = getComponentName('logo');
5585
+ const componentName$R = getComponentName('logo');
5586
5586
 
5587
5587
  const LogoClass = createCssVarImageClass({
5588
- componentName: componentName$Q,
5588
+ componentName: componentName$R,
5589
5589
  varName: 'url',
5590
5590
  fallbackVarName: 'fallbackUrl',
5591
5591
  });
5592
5592
 
5593
- customElements.define(componentName$Q, LogoClass);
5593
+ customElements.define(componentName$R, LogoClass);
5594
5594
 
5595
- const componentName$P = getComponentName('totp-image');
5595
+ const componentName$Q = getComponentName('totp-image');
5596
5596
 
5597
5597
  const TotpImageClass = createCssVarImageClass({
5598
- componentName: componentName$P,
5598
+ componentName: componentName$Q,
5599
5599
  varName: 'url',
5600
5600
  fallbackVarName: 'fallbackUrl',
5601
5601
  });
5602
5602
 
5603
- customElements.define(componentName$P, TotpImageClass);
5603
+ customElements.define(componentName$Q, TotpImageClass);
5604
5604
 
5605
- const componentName$O = getComponentName('notp-image');
5605
+ const componentName$P = getComponentName('notp-image');
5606
5606
 
5607
5607
  const NotpImageClass = createCssVarImageClass({
5608
- componentName: componentName$O,
5608
+ componentName: componentName$P,
5609
5609
  varName: 'url',
5610
5610
  fallbackVarName: 'fallbackUrl',
5611
5611
  });
5612
5612
 
5613
- customElements.define(componentName$O, NotpImageClass);
5613
+ customElements.define(componentName$P, NotpImageClass);
5614
5614
 
5615
- const componentName$N = getComponentName('number-field');
5615
+ const componentName$O = getComponentName('number-field');
5616
5616
 
5617
5617
  const NumberFieldClass = compose(
5618
5618
  createStyleMixin({
@@ -5646,11 +5646,11 @@ const NumberFieldClass = compose(
5646
5646
  }
5647
5647
  `,
5648
5648
  excludeAttrsSync: ['tabindex'],
5649
- componentName: componentName$N,
5649
+ componentName: componentName$O,
5650
5650
  })
5651
5651
  );
5652
5652
 
5653
- customElements.define(componentName$N, NumberFieldClass);
5653
+ customElements.define(componentName$O, NumberFieldClass);
5654
5654
 
5655
5655
  const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
5656
5656
  const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
@@ -5696,13 +5696,13 @@ const toggleMaskVisibility = (input, value) => {
5696
5696
 
5697
5697
  /* eslint-disable no-param-reassign */
5698
5698
 
5699
- const componentName$M = getComponentName('passcode-internal');
5699
+ const componentName$N = getComponentName('passcode-internal');
5700
5700
 
5701
5701
  const observedAttributes$5 = ['digits', 'loading'];
5702
5702
 
5703
5703
  const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
5704
5704
 
5705
- const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$M, baseSelector: 'div' });
5705
+ const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$N, baseSelector: 'div' });
5706
5706
 
5707
5707
  class PasscodeInternal extends BaseInputClass$7 {
5708
5708
  static get observedAttributes() {
@@ -5920,7 +5920,7 @@ class PasscodeInternal extends BaseInputClass$7 {
5920
5920
  }
5921
5921
  }
5922
5922
 
5923
- const componentName$L = getComponentName('passcode');
5923
+ const componentName$M = getComponentName('passcode');
5924
5924
 
5925
5925
  const observedAttributes$4 = ['digits'];
5926
5926
 
@@ -5939,17 +5939,17 @@ const customMixin$a = (superclass) =>
5939
5939
  const template = document.createElement('template');
5940
5940
 
5941
5941
  template.innerHTML = `
5942
- <${componentName$M}
5942
+ <${componentName$N}
5943
5943
  bordered="true"
5944
5944
  name="code"
5945
5945
  tabindex="-1"
5946
5946
  slot="input"
5947
- ><slot></slot></${componentName$M}>
5947
+ ><slot></slot></${componentName$N}>
5948
5948
  `;
5949
5949
 
5950
5950
  this.baseElement.appendChild(template.content.cloneNode(true));
5951
5951
 
5952
- this.inputElement = this.shadowRoot.querySelector(componentName$M);
5952
+ this.inputElement = this.shadowRoot.querySelector(componentName$N);
5953
5953
 
5954
5954
  forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
5955
5955
  }
@@ -6101,13 +6101,13 @@ const PasscodeClass = compose(
6101
6101
  ${resetInputCursor('vaadin-text-field')}
6102
6102
  `,
6103
6103
  excludeAttrsSync: ['tabindex'],
6104
- componentName: componentName$L,
6104
+ componentName: componentName$M,
6105
6105
  })
6106
6106
  );
6107
6107
 
6108
- customElements.define(componentName$M, PasscodeInternal);
6108
+ customElements.define(componentName$N, PasscodeInternal);
6109
6109
 
6110
- customElements.define(componentName$L, PasscodeClass);
6110
+ customElements.define(componentName$M, PasscodeClass);
6111
6111
 
6112
6112
  const passwordDraggableMixin = (superclass) =>
6113
6113
  class PasswordDraggableMixinClass extends superclass {
@@ -6148,7 +6148,7 @@ const passwordDraggableMixin = (superclass) =>
6148
6148
  }
6149
6149
  };
6150
6150
 
6151
- const componentName$K = getComponentName('password');
6151
+ const componentName$L = getComponentName('password');
6152
6152
 
6153
6153
  const customMixin$9 = (superclass) =>
6154
6154
  class PasswordFieldMixinClass extends superclass {
@@ -6424,11 +6424,11 @@ const PasswordClass = compose(
6424
6424
  }
6425
6425
  `,
6426
6426
  excludeAttrsSync: ['tabindex'],
6427
- componentName: componentName$K,
6427
+ componentName: componentName$L,
6428
6428
  })
6429
6429
  );
6430
6430
 
6431
- customElements.define(componentName$K, PasswordClass);
6431
+ customElements.define(componentName$L, PasswordClass);
6432
6432
 
6433
6433
  const disableRules = [
6434
6434
  'blockquote',
@@ -6454,9 +6454,9 @@ const decodeHTML = (html) => {
6454
6454
  /* eslint-disable no-param-reassign */
6455
6455
 
6456
6456
 
6457
- const componentName$J = getComponentName('enriched-text');
6457
+ const componentName$K = getComponentName('enriched-text');
6458
6458
 
6459
- class EnrichedText extends createBaseClass({ componentName: componentName$J, baseSelector: ':host > div' }) {
6459
+ class EnrichedText extends createBaseClass({ componentName: componentName$K, baseSelector: ':host > div' }) {
6460
6460
  #origLinkRenderer;
6461
6461
 
6462
6462
  #origEmRenderer;
@@ -6652,9 +6652,9 @@ const EnrichedTextClass = compose(
6652
6652
  componentNameValidationMixin
6653
6653
  )(EnrichedText);
6654
6654
 
6655
- customElements.define(componentName$J, EnrichedTextClass);
6655
+ customElements.define(componentName$K, EnrichedTextClass);
6656
6656
 
6657
- const componentName$I = getComponentName('text-area');
6657
+ const componentName$J = getComponentName('text-area');
6658
6658
 
6659
6659
  const {
6660
6660
  host: host$d,
@@ -6730,20 +6730,20 @@ const TextAreaClass = compose(
6730
6730
  ${resetInputCursor('vaadin-text-area')}
6731
6731
  `,
6732
6732
  excludeAttrsSync: ['tabindex'],
6733
- componentName: componentName$I,
6733
+ componentName: componentName$J,
6734
6734
  })
6735
6735
  );
6736
6736
 
6737
- customElements.define(componentName$I, TextAreaClass);
6737
+ customElements.define(componentName$J, TextAreaClass);
6738
6738
 
6739
6739
  const observedAttributes$3 = ['src', 'alt'];
6740
6740
 
6741
- const componentName$H = getComponentName('image');
6741
+ const componentName$I = getComponentName('image');
6742
6742
 
6743
- const BaseClass$1 = createBaseClass({ componentName: componentName$H, baseSelector: ':host > img' });
6744
- class RawImage extends BaseClass$1 {
6743
+ const BaseClass$2 = createBaseClass({ componentName: componentName$I, baseSelector: ':host > img' });
6744
+ class RawImage extends BaseClass$2 {
6745
6745
  static get observedAttributes() {
6746
- return observedAttributes$3.concat(BaseClass$1.observedAttributes || []);
6746
+ return observedAttributes$3.concat(BaseClass$2.observedAttributes || []);
6747
6747
  }
6748
6748
 
6749
6749
  constructor() {
@@ -6780,7 +6780,7 @@ const ImageClass = compose(
6780
6780
  draggableMixin
6781
6781
  )(RawImage);
6782
6782
 
6783
- customElements.define(componentName$H, ImageClass);
6783
+ customElements.define(componentName$I, ImageClass);
6784
6784
 
6785
6785
  var CountryCodes = [
6786
6786
  // United States should be the first option
@@ -8049,9 +8049,9 @@ const parsePhoneNumber = (val) => {
8049
8049
  return [countryCode, phoneNumber];
8050
8050
  };
8051
8051
 
8052
- const componentName$G = getComponentName('phone-field-internal');
8052
+ const componentName$H = getComponentName('phone-field-internal');
8053
8053
 
8054
- const commonAttrs$1 = ['disabled', 'size', 'bordered', 'invalid', 'readonly'];
8054
+ const commonAttrs$1 = ['disabled', 'size', 'bordered', 'readonly', 'allow-alphanumeric-input'];
8055
8055
  const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
8056
8056
  const phoneAttrs = ['phone-input-placeholder', 'maxlength', 'autocomplete', 'name'];
8057
8057
  const labelTypeAttrs = ['label-type', 'country-input-label', 'label'];
@@ -8063,7 +8063,7 @@ const mapAttrs$1 = {
8063
8063
 
8064
8064
  const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
8065
8065
 
8066
- const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$G, baseSelector: 'div' });
8066
+ const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$H, baseSelector: 'div' });
8067
8067
 
8068
8068
  let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8069
8069
  static get observedAttributes() {
@@ -8074,7 +8074,7 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8074
8074
  super();
8075
8075
 
8076
8076
  this.innerHTML = `
8077
- <div>
8077
+ <div class="wrapper">
8078
8078
  <descope-combo-box
8079
8079
  item-label-path="data-name"
8080
8080
  item-value-path="data-id"
@@ -8100,6 +8100,14 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8100
8100
  };
8101
8101
  }
8102
8102
 
8103
+ get countryCodeInputData() {
8104
+ return this.countryCodeInput.items;
8105
+ }
8106
+
8107
+ get allowAlphanumericInput() {
8108
+ return this.getAttribute('allow-alphanumeric-input') === 'true';
8109
+ }
8110
+
8103
8111
  get value() {
8104
8112
  if (!this.phoneNumberValue) {
8105
8113
  return '';
@@ -8110,15 +8118,35 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8110
8118
  set value(val) {
8111
8119
  const [countryCode, phoneNumber] = parsePhoneNumber(val);
8112
8120
 
8113
- if (countryCode) {
8114
- const countryCodeItem = this.getCountryByDialCode(countryCode);
8121
+ this.#setCountryCode(countryCode);
8122
+ this.#setPhoneNumber(phoneNumber);
8123
+ }
8124
+
8125
+ setSelectionRange(...args) {
8126
+ this.phoneNumberInput.setSelectionRange(...args);
8127
+ }
8128
+
8129
+ get selectionStart() {
8130
+ return this.phoneNumberInput.selectionStart;
8131
+ }
8132
+
8133
+ #setCountryCode(val) {
8134
+ if (val) {
8135
+ const countryCodeItem = this.getCountryByDialCode(val);
8115
8136
  if (countryCodeItem) {
8116
8137
  this.countryCodeInput.selectedItem = countryCodeItem;
8117
8138
  }
8118
8139
  } else {
8119
8140
  this.countryCodeInput.selectedItem = undefined;
8120
8141
  }
8121
- this.phoneNumberInput.value = this.phoneNumberInput.value || phoneNumber;
8142
+ }
8143
+
8144
+ #setPhoneNumber(val) {
8145
+ if (this.phoneNumberInput.value === val) {
8146
+ return;
8147
+ }
8148
+
8149
+ this.phoneNumberInput.value = val;
8122
8150
  }
8123
8151
 
8124
8152
  get phoneNumberValue() {
@@ -8129,6 +8157,10 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8129
8157
  return this.countryCodeInput.shadowRoot.querySelector('input').value;
8130
8158
  }
8131
8159
 
8160
+ get phoneNumberInputEle() {
8161
+ return this.phoneNumberInput.shadowRoot.querySelector('input');
8162
+ }
8163
+
8132
8164
  get minLength() {
8133
8165
  return parseInt(this.getAttribute('minlength'), 10) || 0;
8134
8166
  }
@@ -8202,12 +8234,14 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8202
8234
  initInputs() {
8203
8235
  // Sanitize phone input value to filter everything but digits
8204
8236
  this.phoneNumberInput.addEventListener('input', (e) => {
8205
- const telDigitsRegExp = /^\d$/;
8206
- const sanitizedInput = e.target.value
8207
- .split('')
8208
- .filter((char) => telDigitsRegExp.test(char))
8209
- .join('');
8210
- e.target.value = sanitizedInput;
8237
+ if (!this.allowAlphanumericInput) {
8238
+ const telDigitsRegExp = /^\d$/;
8239
+ const sanitizedInput = e.target.value
8240
+ .split('')
8241
+ .filter((char) => telDigitsRegExp.test(char))
8242
+ .join('');
8243
+ e.target.value = sanitizedInput;
8244
+ }
8211
8245
  });
8212
8246
 
8213
8247
  this.handleFocusEventsDispatching(this.inputs);
@@ -8280,12 +8314,12 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8280
8314
  }
8281
8315
  };
8282
8316
 
8283
- customElements.define(componentName$G, PhoneFieldInternal$1);
8317
+ customElements.define(componentName$H, PhoneFieldInternal$1);
8284
8318
 
8285
8319
  const textVars$1 = TextFieldClass.cssVarList;
8286
8320
  const comboVars = ComboBoxClass.cssVarList;
8287
8321
 
8288
- const componentName$F = getComponentName('phone-field');
8322
+ const componentName$G = getComponentName('phone-field');
8289
8323
 
8290
8324
  const customMixin$8 = (superclass) =>
8291
8325
  class PhoneFieldMixinClass extends superclass {
@@ -8299,15 +8333,15 @@ const customMixin$8 = (superclass) =>
8299
8333
  const template = document.createElement('template');
8300
8334
 
8301
8335
  template.innerHTML = `
8302
- <${componentName$G}
8336
+ <${componentName$H}
8303
8337
  tabindex="-1"
8304
8338
  slot="input"
8305
- ></${componentName$G}>
8339
+ ></${componentName$H}>
8306
8340
  `;
8307
8341
 
8308
8342
  this.baseElement.appendChild(template.content.cloneNode(true));
8309
8343
 
8310
- this.inputElement = this.shadowRoot.querySelector(componentName$G);
8344
+ this.inputElement = this.shadowRoot.querySelector(componentName$H);
8311
8345
 
8312
8346
  forwardAttrs(this.shadowRoot.host, this.inputElement, {
8313
8347
  includeAttrs: [
@@ -8325,9 +8359,28 @@ const customMixin$8 = (superclass) =>
8325
8359
  'readonly',
8326
8360
  'label',
8327
8361
  'label-type',
8362
+ 'allow-alphanumeric-input',
8328
8363
  ],
8329
8364
  });
8330
8365
  }
8366
+
8367
+ get countryCodeItems() {
8368
+ return this.inputElement?.countryCodeValue;
8369
+ }
8370
+
8371
+ get phoneNumberInputEle() {
8372
+ return this.inputElement?.phoneNumberInputEle;
8373
+ }
8374
+
8375
+ get countryCodeInputData() {
8376
+ return this.inputElement?.countryCodeInputData;
8377
+ }
8378
+
8379
+ get countryCodes() {
8380
+ return Array.from(this.inputElement.countryCodeInputData).map((ele) =>
8381
+ ele.getAttribute('data-country-code')
8382
+ );
8383
+ }
8331
8384
  };
8332
8385
 
8333
8386
  const {
@@ -8335,6 +8388,7 @@ const {
8335
8388
  label: label$4,
8336
8389
  requiredIndicator: requiredIndicator$4,
8337
8390
  inputField: inputField$2,
8391
+ internalAfter,
8338
8392
  countryCodeInput,
8339
8393
  phoneInput: phoneInput$1,
8340
8394
  separator: separator$1,
@@ -8345,6 +8399,7 @@ const {
8345
8399
  label: { selector: '::part(label)' },
8346
8400
  requiredIndicator: { selector: '[required]::part(required-indicator)::after' },
8347
8401
  inputField: { selector: '::part(input-field)' },
8402
+ internalAfter: { selector: 'descope-phone-field-internal::after' },
8348
8403
  phoneInput: { selector: () => 'descope-text-field' },
8349
8404
  countryCodeInput: { selector: () => 'descope-combo-box' },
8350
8405
  separator: { selector: 'descope-phone-field-internal .separator' },
@@ -8384,18 +8439,21 @@ const PhoneFieldClass = compose(
8384
8439
  hostDirection: { ...host$c, property: 'direction' },
8385
8440
 
8386
8441
  inputBorderStyle: [
8387
- { ...inputField$2, property: 'border-style' },
8442
+ { ...internalAfter, property: 'outline-style' },
8388
8443
  { ...separator$1, property: 'border-left-style' },
8389
8444
  ],
8390
8445
  inputBorderWidth: [
8391
- { ...inputField$2, property: 'border-width' },
8446
+ { ...internalAfter, property: 'outline-width' },
8392
8447
  { ...separator$1, property: 'border-left-width' },
8393
8448
  ],
8394
8449
  inputBorderColor: [
8395
- { ...inputField$2, property: 'border-color' },
8450
+ { ...internalAfter, property: 'outline-color' },
8396
8451
  { ...separator$1, property: 'border-left-color' },
8397
8452
  ],
8398
- inputBorderRadius: { ...inputField$2, property: 'border-radius' },
8453
+ inputBorderRadius: [
8454
+ { ...inputField$2, property: 'border-radius' },
8455
+ { ...internalAfter, property: 'border-radius' },
8456
+ ],
8399
8457
 
8400
8458
  countryCodeInputWidth: { ...countryCodeInput, property: comboVars.hostWidth },
8401
8459
  countryCodeDropdownWidth: {
@@ -8477,6 +8535,10 @@ const PhoneFieldClass = compose(
8477
8535
  vaadin-text-field::before {
8478
8536
  height: 0;
8479
8537
  }
8538
+ vaadin-text-field::part(label) {
8539
+ margin-left: 0;
8540
+ margin-right: 0;
8541
+ }
8480
8542
  vaadin-text-field::part(input-field) {
8481
8543
  padding: 0;
8482
8544
  background: transparent;
@@ -8488,7 +8550,19 @@ const PhoneFieldClass = compose(
8488
8550
  width: 100%;
8489
8551
  height: 100%;
8490
8552
  direction: ltr;
8553
+ position: relative;
8491
8554
  }
8555
+ descope-phone-field-internal::after {
8556
+ content: '';
8557
+ position: absolute;
8558
+ width: 100%;
8559
+ height: 100%;
8560
+ top: 0;
8561
+ left: 0;
8562
+ box-sizing: border-box;
8563
+ outline-offset: calc(var(${PhoneFieldClass.cssVarList.inputBorderWidth}) * -1);
8564
+ pointer-events: none;
8565
+ }
8492
8566
  descope-phone-field-internal > div {
8493
8567
  width: 100%;
8494
8568
  height: 100%;
@@ -8499,7 +8573,7 @@ const PhoneFieldClass = compose(
8499
8573
  }
8500
8574
  descope-combo-box {
8501
8575
  flex-shrink: 0;
8502
- min-width: 5.75em;
8576
+ min-width: 5.75em;
8503
8577
  ${comboVars.inputOutlineWidth}: 0;
8504
8578
  ${comboVars.inputOutlineOffset}: 0;
8505
8579
  ${comboVars.inputBorderWidth}: 0;
@@ -8529,17 +8603,17 @@ const PhoneFieldClass = compose(
8529
8603
  ${resetInputLabelPosition('vaadin-text-field')}
8530
8604
  `,
8531
8605
  excludeAttrsSync: ['tabindex'],
8532
- componentName: componentName$F,
8606
+ componentName: componentName$G,
8533
8607
  })
8534
8608
  );
8535
8609
 
8536
- customElements.define(componentName$F, PhoneFieldClass);
8610
+ customElements.define(componentName$G, PhoneFieldClass);
8537
8611
 
8538
8612
  const getCountryByCodeId = (countryCode) => {
8539
8613
  return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
8540
8614
  };
8541
8615
 
8542
- const componentName$E = getComponentName('phone-field-internal-input-box');
8616
+ const componentName$F = getComponentName('phone-field-internal-input-box');
8543
8617
 
8544
8618
  const observedAttributes$2 = [
8545
8619
  'disabled',
@@ -8551,12 +8625,13 @@ const observedAttributes$2 = [
8551
8625
  'name',
8552
8626
  'autocomplete',
8553
8627
  'label-type',
8628
+ 'allow-alphanumeric-input',
8554
8629
  ];
8555
8630
  const mapAttrs = {
8556
8631
  'phone-input-placeholder': 'placeholder',
8557
8632
  };
8558
8633
 
8559
- const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$E, baseSelector: 'div' });
8634
+ const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$F, baseSelector: 'div' });
8560
8635
 
8561
8636
  class PhoneFieldInternal extends BaseInputClass$5 {
8562
8637
  static get observedAttributes() {
@@ -8583,6 +8658,10 @@ class PhoneFieldInternal extends BaseInputClass$5 {
8583
8658
  return !!this.getAttribute('default-code');
8584
8659
  }
8585
8660
 
8661
+ get allowAlphanumericInput() {
8662
+ return this.getAttribute('allow-alphanumeric-input') === 'true';
8663
+ }
8664
+
8586
8665
  get value() {
8587
8666
  if (!this.phoneNumberValue) {
8588
8667
  return '';
@@ -8613,6 +8692,10 @@ class PhoneFieldInternal extends BaseInputClass$5 {
8613
8692
  return this.phoneNumberInput.value;
8614
8693
  }
8615
8694
 
8695
+ get phoneNumberInputEle() {
8696
+ return this.phoneNumberInput.shadowRoot.querySelector('input');
8697
+ }
8698
+
8616
8699
  get minLength() {
8617
8700
  return parseInt(this.getAttribute('minlength'), 10) || 0;
8618
8701
  }
@@ -8672,11 +8755,14 @@ class PhoneFieldInternal extends BaseInputClass$5 {
8672
8755
  .replace('--', '-')
8673
8756
  .replace('+-', '+');
8674
8757
 
8675
- const telDigitsRegExp = /^[+\d-]+$/;
8676
- const sanitizedInput = e.target.value
8677
- .split('')
8678
- .filter((char) => telDigitsRegExp.test(char))
8679
- .join('');
8758
+ let sanitizedInput = e.target.value;
8759
+ if (!this.allowAlphanumericInput) {
8760
+ const telDigitsRegExp = /^[+\d-]+$/;
8761
+ sanitizedInput = e.target.value
8762
+ .split('')
8763
+ .filter((char) => telDigitsRegExp.test(char))
8764
+ .join('');
8765
+ }
8680
8766
 
8681
8767
  e.target.value = sanitizedInput;
8682
8768
  });
@@ -8695,11 +8781,11 @@ class PhoneFieldInternal extends BaseInputClass$5 {
8695
8781
  }
8696
8782
  }
8697
8783
 
8698
- customElements.define(componentName$E, PhoneFieldInternal);
8784
+ customElements.define(componentName$F, PhoneFieldInternal);
8699
8785
 
8700
8786
  const textVars = TextFieldClass.cssVarList;
8701
8787
 
8702
- const componentName$D = getComponentName('phone-input-box-field');
8788
+ const componentName$E = getComponentName('phone-input-box-field');
8703
8789
 
8704
8790
  const customMixin$7 = (superclass) =>
8705
8791
  class PhoneInputBoxFieldMixinClass extends superclass {
@@ -8713,15 +8799,15 @@ const customMixin$7 = (superclass) =>
8713
8799
  const template = document.createElement('template');
8714
8800
 
8715
8801
  template.innerHTML = `
8716
- <${componentName$E}
8802
+ <${componentName$F}
8717
8803
  tabindex="-1"
8718
8804
  slot="input"
8719
- ></${componentName$E}>
8805
+ ></${componentName$F}>
8720
8806
  `;
8721
8807
 
8722
8808
  this.baseElement.appendChild(template.content.cloneNode(true));
8723
8809
 
8724
- this.inputElement = this.shadowRoot.querySelector(componentName$E);
8810
+ this.inputElement = this.shadowRoot.querySelector(componentName$F);
8725
8811
 
8726
8812
  forwardAttrs(this.shadowRoot.host, this.inputElement, {
8727
8813
  includeAttrs: [
@@ -8735,9 +8821,14 @@ const customMixin$7 = (superclass) =>
8735
8821
  'phone-input-placeholder',
8736
8822
  'label',
8737
8823
  'label-type',
8824
+ 'allow-alphanumeric-input',
8738
8825
  ],
8739
8826
  });
8740
8827
  }
8828
+
8829
+ get phoneNumberInputEle() {
8830
+ return this.inputElement?.phoneNumberInputEle;
8831
+ }
8741
8832
  };
8742
8833
 
8743
8834
  const {
@@ -8746,6 +8837,7 @@ const {
8746
8837
  inputElement: inputElement$1,
8747
8838
  requiredIndicator: requiredIndicator$3,
8748
8839
  inputField: inputField$1,
8840
+ inputFieldInternal,
8749
8841
  phoneInput,
8750
8842
  errorMessage: errorMessage$4,
8751
8843
  helperText: helperText$3,
@@ -8755,7 +8847,10 @@ const {
8755
8847
  placeholder: { selector: '> input:placeholder-shown' },
8756
8848
  inputElement: { selector: 'input' },
8757
8849
  requiredIndicator: { selector: '[required]::part(required-indicator)::after' },
8758
- inputField: { selector: '::part(input-field)' },
8850
+ inputField: { selector: () => 'vaadin-text-field::part(input-field)' },
8851
+ inputFieldInternal: {
8852
+ selector: () => 'descope-phone-field-internal-input-box vaadin-text-field::part(input-field)',
8853
+ },
8759
8854
  phoneInput: { selector: () => 'descope-text-field' },
8760
8855
  helperText: { selector: '::part(helper-text)' },
8761
8856
  errorMessage: { selector: '::part(error-message)' },
@@ -8777,10 +8872,13 @@ const PhoneFieldInputBoxClass = compose(
8777
8872
  hostMinWidth: { ...host$b, property: 'min-width' },
8778
8873
  hostDirection: { ...host$b, property: 'direction' },
8779
8874
 
8780
- inputBorderStyle: { ...inputField$1, property: 'border-style' },
8781
- inputBorderWidth: { ...inputField$1, property: 'border-width' },
8782
- inputBorderColor: { ...inputField$1, property: 'border-color' },
8783
- inputBorderRadius: { ...inputField$1, property: 'border-radius' },
8875
+ inputBorderStyle: { ...inputFieldInternal, property: 'border-style' },
8876
+ inputBorderWidth: { ...inputFieldInternal, property: 'border-width' },
8877
+ inputBorderColor: { ...inputFieldInternal, property: 'border-color' },
8878
+ inputBorderRadius: [
8879
+ { ...inputField$1, property: 'border-radius' },
8880
+ { ...inputFieldInternal, property: 'border-radius' },
8881
+ ],
8784
8882
 
8785
8883
  inputHorizontalPadding: [
8786
8884
  { ...phoneInput, property: 'padding-left' },
@@ -8841,7 +8939,6 @@ const PhoneFieldInputBoxClass = compose(
8841
8939
 
8842
8940
  vaadin-text-field {
8843
8941
  width: 100%;
8844
- height: 100%;
8845
8942
  box-sizing: border-box;
8846
8943
  padding: 0;
8847
8944
  }
@@ -8861,23 +8958,21 @@ const PhoneFieldInputBoxClass = compose(
8861
8958
  -webkit-mask-image: none;
8862
8959
  padding: 0;
8863
8960
  width: 100%;
8864
- height: 100%;
8865
8961
  }
8866
8962
  descope-phone-field-internal-input-box > div {
8867
8963
  width: 100%;
8868
- height: 100%;
8869
8964
  }
8870
8965
  descope-phone-field-internal-input-box .separator {
8871
8966
  flex: 0;
8872
8967
  border: none;
8873
8968
  }
8969
+ descope-phone-field-internal-input-box descope-text-field {
8970
+ ${textVars.inputOutlineWidth}: 0;
8971
+ ${textVars.inputOutlineOffset}: 0;
8972
+ }
8874
8973
  descope-text-field {
8875
8974
  flex-grow: 1;
8876
8975
  width: 100%;
8877
- ${textVars.inputOutlineWidth}: 0;
8878
- ${textVars.inputOutlineOffset}: 0;
8879
- ${textVars.inputBorderWidth}: 0;
8880
- ${textVars.inputBorderRadius}: 0;
8881
8976
  direction: ltr;
8882
8977
  }
8883
8978
  vaadin-text-field[readonly] > input:placeholder-shown {
@@ -8898,26 +8993,26 @@ const PhoneFieldInputBoxClass = compose(
8898
8993
  ${inputFloatingLabelStyle()}
8899
8994
  `,
8900
8995
  excludeAttrsSync: ['tabindex'],
8901
- componentName: componentName$D,
8996
+ componentName: componentName$E,
8902
8997
  })
8903
8998
  );
8904
8999
 
8905
- customElements.define(componentName$D, PhoneFieldInputBoxClass);
9000
+ customElements.define(componentName$E, PhoneFieldInputBoxClass);
8906
9001
 
8907
- const componentName$C = getComponentName('new-password-internal');
9002
+ const componentName$D = getComponentName('new-password-internal');
8908
9003
 
8909
9004
  const interpolateString = (template, values) =>
8910
9005
  template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
8911
9006
 
8912
9007
  // eslint-disable-next-line max-classes-per-file
8913
9008
 
8914
- const componentName$B = getComponentName('policy-validation');
9009
+ const componentName$C = getComponentName('policy-validation');
8915
9010
 
8916
9011
  const overrideAttrs = ['data-password-policy-value-minlength'];
8917
9012
  const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
8918
9013
  const policyAttrs = ['label', 'value', ...dataAttrs];
8919
9014
 
8920
- class RawPolicyValidation extends createBaseClass({ componentName: componentName$B, baseSelector: ':host > div' }) {
9015
+ class RawPolicyValidation extends createBaseClass({ componentName: componentName$C, baseSelector: ':host > div' }) {
8921
9016
  #availablePolicies;
8922
9017
 
8923
9018
  #activePolicies = [];
@@ -9125,7 +9220,7 @@ const PolicyValidationClass = compose(
9125
9220
  componentNameValidationMixin
9126
9221
  )(RawPolicyValidation);
9127
9222
 
9128
- const componentName$A = getComponentName('new-password');
9223
+ const componentName$B = getComponentName('new-password');
9129
9224
 
9130
9225
  const policyPreviewVars = PolicyValidationClass.cssVarList;
9131
9226
 
@@ -9139,18 +9234,18 @@ const customMixin$6 = (superclass) =>
9139
9234
  const externalInputAttr = this.getAttribute('external-input');
9140
9235
 
9141
9236
  template.innerHTML = `
9142
- <${componentName$C}
9237
+ <${componentName$D}
9143
9238
  name="new-password"
9144
9239
  tabindex="-1"
9145
9240
  slot="input"
9146
9241
  external-input="${externalInputAttr}"
9147
9242
  >
9148
- </${componentName$C}>
9243
+ </${componentName$D}>
9149
9244
  `;
9150
9245
 
9151
9246
  this.baseElement.appendChild(template.content.cloneNode(true));
9152
9247
 
9153
- this.inputElement = this.shadowRoot.querySelector(componentName$C);
9248
+ this.inputElement = this.shadowRoot.querySelector(componentName$D);
9154
9249
 
9155
9250
  if (this.getAttribute('external-input') === 'true') {
9156
9251
  this.initExternalInput();
@@ -9327,11 +9422,11 @@ const NewPasswordClass = compose(
9327
9422
  }
9328
9423
  `,
9329
9424
  excludeAttrsSync: ['tabindex'],
9330
- componentName: componentName$A,
9425
+ componentName: componentName$B,
9331
9426
  })
9332
9427
  );
9333
9428
 
9334
- customElements.define(componentName$B, PolicyValidationClass);
9429
+ customElements.define(componentName$C, PolicyValidationClass);
9335
9430
 
9336
9431
  const passwordAttrPrefixRegex = /^password-/;
9337
9432
  const confirmAttrPrefixRegex = /^confirm-/;
@@ -9363,7 +9458,7 @@ const inputRelatedAttrs = [].concat(
9363
9458
  policyPanelAttrs
9364
9459
  );
9365
9460
 
9366
- const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$C, baseSelector: 'div' });
9461
+ const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$D, baseSelector: 'div' });
9367
9462
 
9368
9463
  class NewPasswordInternal extends BaseInputClass$4 {
9369
9464
  static get observedAttributes() {
@@ -9573,21 +9668,21 @@ class NewPasswordInternal extends BaseInputClass$4 {
9573
9668
  }
9574
9669
  }
9575
9670
 
9576
- customElements.define(componentName$C, NewPasswordInternal);
9671
+ customElements.define(componentName$D, NewPasswordInternal);
9577
9672
 
9578
- customElements.define(componentName$A, NewPasswordClass);
9673
+ customElements.define(componentName$B, NewPasswordClass);
9579
9674
 
9580
- const componentName$z = getComponentName('recaptcha');
9675
+ const componentName$A = getComponentName('recaptcha');
9581
9676
 
9582
9677
  const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
9583
9678
 
9584
- const BaseClass = createBaseClass({
9585
- componentName: componentName$z,
9679
+ const BaseClass$1 = createBaseClass({
9680
+ componentName: componentName$A,
9586
9681
  baseSelector: ':host > div',
9587
9682
  });
9588
- class RawRecaptcha extends BaseClass {
9683
+ class RawRecaptcha extends BaseClass$1 {
9589
9684
  static get observedAttributes() {
9590
- return observedAttributes$1.concat(BaseClass.observedAttributes || []);
9685
+ return observedAttributes$1.concat(BaseClass$1.observedAttributes || []);
9591
9686
  }
9592
9687
 
9593
9688
  attributeChangedCallback(attrName, oldValue, newValue) {
@@ -9769,7 +9864,7 @@ class RawRecaptcha extends BaseClass {
9769
9864
 
9770
9865
  const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
9771
9866
 
9772
- customElements.define(componentName$z, RecaptchaClass);
9867
+ customElements.define(componentName$A, RecaptchaClass);
9773
9868
 
9774
9869
  const getFileBase64 = (fileObj) => {
9775
9870
  return new Promise((resolve) => {
@@ -9783,7 +9878,7 @@ const getFilename = (fileObj) => {
9783
9878
  return fileObj.name.replace(/^.*\\/, '');
9784
9879
  };
9785
9880
 
9786
- const componentName$y = getComponentName('upload-file');
9881
+ const componentName$z = getComponentName('upload-file');
9787
9882
 
9788
9883
  const observedAttributes = [
9789
9884
  'title',
@@ -9798,7 +9893,7 @@ const observedAttributes = [
9798
9893
  'icon',
9799
9894
  ];
9800
9895
 
9801
- const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$y, baseSelector: ':host > div' });
9896
+ const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$z, baseSelector: ':host > div' });
9802
9897
 
9803
9898
  class RawUploadFile extends BaseInputClass$3 {
9804
9899
  static get observedAttributes() {
@@ -10013,7 +10108,7 @@ const UploadFileClass = compose(
10013
10108
  componentNameValidationMixin
10014
10109
  )(RawUploadFile);
10015
10110
 
10016
- customElements.define(componentName$y, UploadFileClass);
10111
+ customElements.define(componentName$z, UploadFileClass);
10017
10112
 
10018
10113
  const createBaseButtonSelectionGroupInternalClass = (componentName) => {
10019
10114
  class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
@@ -10111,10 +10206,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
10111
10206
  return BaseButtonSelectionGroupInternalClass;
10112
10207
  };
10113
10208
 
10114
- const componentName$x = getComponentName('button-selection-group-internal');
10209
+ const componentName$y = getComponentName('button-selection-group-internal');
10115
10210
 
10116
10211
  class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
10117
- componentName$x
10212
+ componentName$y
10118
10213
  ) {
10119
10214
  getSelectedNode() {
10120
10215
  return this.items.find((item) => item.hasAttribute('selected'));
@@ -10346,7 +10441,7 @@ const buttonSelectionGroupStyles = `
10346
10441
  ${resetInputCursor('vaadin-text-field')}
10347
10442
  `;
10348
10443
 
10349
- const componentName$w = getComponentName('button-selection-group');
10444
+ const componentName$x = getComponentName('button-selection-group');
10350
10445
 
10351
10446
  const buttonSelectionGroupMixin = (superclass) =>
10352
10447
  class ButtonMultiSelectionGroupMixinClass extends superclass {
@@ -10355,19 +10450,19 @@ const buttonSelectionGroupMixin = (superclass) =>
10355
10450
  const template = document.createElement('template');
10356
10451
 
10357
10452
  template.innerHTML = `
10358
- <${componentName$x}
10453
+ <${componentName$y}
10359
10454
  name="button-selection-group"
10360
10455
  slot="input"
10361
10456
  tabindex="-1"
10362
10457
  part="internal-component"
10363
10458
  >
10364
10459
  <slot></slot>
10365
- </${componentName$x}>
10460
+ </${componentName$y}>
10366
10461
  `;
10367
10462
 
10368
10463
  this.baseElement.appendChild(template.content.cloneNode(true));
10369
10464
 
10370
- this.inputElement = this.shadowRoot.querySelector(componentName$x);
10465
+ this.inputElement = this.shadowRoot.querySelector(componentName$y);
10371
10466
 
10372
10467
  forwardAttrs(this, this.inputElement, {
10373
10468
  includeAttrs: ['size', 'default-value', 'allow-deselect'],
@@ -10392,16 +10487,16 @@ const ButtonSelectionGroupClass = compose(
10392
10487
  wrappedEleName: 'vaadin-text-field',
10393
10488
  style: () => buttonSelectionGroupStyles,
10394
10489
  excludeAttrsSync: ['tabindex'],
10395
- componentName: componentName$w,
10490
+ componentName: componentName$x,
10396
10491
  })
10397
10492
  );
10398
10493
 
10399
- customElements.define(componentName$x, ButtonSelectionGroupInternalClass);
10494
+ customElements.define(componentName$y, ButtonSelectionGroupInternalClass);
10400
10495
 
10401
- const componentName$v = getComponentName('button-selection-group-item');
10496
+ const componentName$w = getComponentName('button-selection-group-item');
10402
10497
 
10403
10498
  class RawSelectItem extends createBaseClass({
10404
- componentName: componentName$v,
10499
+ componentName: componentName$w,
10405
10500
  baseSelector: ':host > descope-button',
10406
10501
  }) {
10407
10502
  get size() {
@@ -10508,14 +10603,14 @@ const ButtonSelectionGroupItemClass = compose(
10508
10603
  componentNameValidationMixin
10509
10604
  )(RawSelectItem);
10510
10605
 
10511
- customElements.define(componentName$v, ButtonSelectionGroupItemClass);
10606
+ customElements.define(componentName$w, ButtonSelectionGroupItemClass);
10512
10607
 
10513
- customElements.define(componentName$w, ButtonSelectionGroupClass);
10608
+ customElements.define(componentName$x, ButtonSelectionGroupClass);
10514
10609
 
10515
- const componentName$u = getComponentName('button-multi-selection-group-internal');
10610
+ const componentName$v = getComponentName('button-multi-selection-group-internal');
10516
10611
 
10517
10612
  class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
10518
- componentName$u
10613
+ componentName$v
10519
10614
  ) {
10520
10615
  #getSelectedNodes() {
10521
10616
  return this.items.filter((item) => item.hasAttribute('selected'));
@@ -10618,7 +10713,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
10618
10713
  }
10619
10714
  }
10620
10715
 
10621
- const componentName$t = getComponentName('button-multi-selection-group');
10716
+ const componentName$u = getComponentName('button-multi-selection-group');
10622
10717
 
10623
10718
  const buttonMultiSelectionGroupMixin = (superclass) =>
10624
10719
  class ButtonMultiSelectionGroupMixinClass extends superclass {
@@ -10627,19 +10722,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
10627
10722
  const template = document.createElement('template');
10628
10723
 
10629
10724
  template.innerHTML = `
10630
- <${componentName$u}
10725
+ <${componentName$v}
10631
10726
  name="button-selection-group"
10632
10727
  slot="input"
10633
10728
  tabindex="-1"
10634
10729
  part="internal-component"
10635
10730
  >
10636
10731
  <slot></slot>
10637
- </${componentName$u}>
10732
+ </${componentName$v}>
10638
10733
  `;
10639
10734
 
10640
10735
  this.baseElement.appendChild(template.content.cloneNode(true));
10641
10736
 
10642
- this.inputElement = this.shadowRoot.querySelector(componentName$u);
10737
+ this.inputElement = this.shadowRoot.querySelector(componentName$v);
10643
10738
 
10644
10739
  forwardAttrs(this, this.inputElement, {
10645
10740
  includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
@@ -10664,13 +10759,13 @@ const ButtonMultiSelectionGroupClass = compose(
10664
10759
  wrappedEleName: 'vaadin-text-field',
10665
10760
  style: () => buttonSelectionGroupStyles,
10666
10761
  excludeAttrsSync: ['tabindex'],
10667
- componentName: componentName$t,
10762
+ componentName: componentName$u,
10668
10763
  })
10669
10764
  );
10670
10765
 
10671
- customElements.define(componentName$u, ButtonMultiSelectionGroupInternalClass);
10766
+ customElements.define(componentName$v, ButtonMultiSelectionGroupInternalClass);
10672
10767
 
10673
- customElements.define(componentName$t, ButtonMultiSelectionGroupClass);
10768
+ customElements.define(componentName$u, ButtonMultiSelectionGroupClass);
10674
10769
 
10675
10770
  /* eslint-disable no-param-reassign */
10676
10771
 
@@ -10698,9 +10793,9 @@ class GridTextColumnClass extends GridSortColumn {
10698
10793
  }
10699
10794
  }
10700
10795
 
10701
- const componentName$s = getComponentName('grid-text-column');
10796
+ const componentName$t = getComponentName('grid-text-column');
10702
10797
 
10703
- customElements.define(componentName$s, GridTextColumnClass);
10798
+ customElements.define(componentName$t, GridTextColumnClass);
10704
10799
 
10705
10800
  /* eslint-disable no-param-reassign */
10706
10801
 
@@ -10735,9 +10830,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
10735
10830
 
10736
10831
  /* eslint-disable no-param-reassign */
10737
10832
 
10738
- const componentName$r = getComponentName('grid-custom-column');
10833
+ const componentName$s = getComponentName('grid-custom-column');
10739
10834
 
10740
- customElements.define(componentName$r, GridCustomColumnClass);
10835
+ customElements.define(componentName$s, GridCustomColumnClass);
10741
10836
 
10742
10837
  const createCheckboxEle = () => {
10743
10838
  const checkbox = document.createElement('descope-checkbox');
@@ -10796,9 +10891,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
10796
10891
  }
10797
10892
  }
10798
10893
 
10799
- const componentName$q = getComponentName('grid-selection-column');
10894
+ const componentName$r = getComponentName('grid-selection-column');
10800
10895
 
10801
- customElements.define(componentName$q, GridSelectionColumnClass);
10896
+ customElements.define(componentName$r, GridSelectionColumnClass);
10802
10897
 
10803
10898
  /* eslint-disable no-param-reassign */
10804
10899
 
@@ -10837,9 +10932,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
10837
10932
  }
10838
10933
  }
10839
10934
 
10840
- const componentName$p = getComponentName('grid-item-details-column');
10935
+ const componentName$q = getComponentName('grid-item-details-column');
10841
10936
 
10842
- customElements.define(componentName$p, GridItemDetailsColumnClass);
10937
+ customElements.define(componentName$q, GridItemDetailsColumnClass);
10843
10938
 
10844
10939
  const decode = (input) => {
10845
10940
  const txt = document.createElement('textarea');
@@ -10851,9 +10946,9 @@ const tpl = (input, inline) => {
10851
10946
  return inline ? input : `<pre>${input}</pre>`;
10852
10947
  };
10853
10948
 
10854
- const componentName$o = getComponentName('code-snippet');
10949
+ const componentName$p = getComponentName('code-snippet');
10855
10950
 
10856
- let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$o, baseSelector: ':host > code' }) {
10951
+ let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$p, baseSelector: ':host > code' }) {
10857
10952
  static get observedAttributes() {
10858
10953
  return ['lang', 'inline'];
10859
10954
  }
@@ -11083,7 +11178,7 @@ const CodeSnippetClass = compose(
11083
11178
  componentNameValidationMixin
11084
11179
  )(CodeSnippet$1);
11085
11180
 
11086
- customElements.define(componentName$o, CodeSnippetClass);
11181
+ customElements.define(componentName$p, CodeSnippetClass);
11087
11182
 
11088
11183
  const isValidDataType = (data) => {
11089
11184
  const isValid = Array.isArray(data);
@@ -11158,7 +11253,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
11158
11253
  `;
11159
11254
  };
11160
11255
 
11161
- const componentName$n = getComponentName('grid');
11256
+ const componentName$o = getComponentName('grid');
11162
11257
 
11163
11258
  const GridMixin = (superclass) =>
11164
11259
  class GridMixinClass extends superclass {
@@ -11512,13 +11607,13 @@ const GridClass = compose(
11512
11607
  /*!css*/
11513
11608
  `,
11514
11609
  excludeAttrsSync: ['columns', 'tabindex'],
11515
- componentName: componentName$n,
11610
+ componentName: componentName$o,
11516
11611
  })
11517
11612
  );
11518
11613
 
11519
- customElements.define(componentName$n, GridClass);
11614
+ customElements.define(componentName$o, GridClass);
11520
11615
 
11521
- const componentName$m = getComponentName('multi-select-combo-box');
11616
+ const componentName$n = getComponentName('multi-select-combo-box');
11522
11617
 
11523
11618
  const multiSelectComboBoxMixin = (superclass) =>
11524
11619
  class MultiSelectComboBoxMixinClass extends superclass {
@@ -12160,16 +12255,16 @@ const MultiSelectComboBoxClass = compose(
12160
12255
  // Note: we exclude `placeholder` because the vaadin component observes it and
12161
12256
  // tries to override it, causing us to lose the user set placeholder.
12162
12257
  excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
12163
- componentName: componentName$m,
12258
+ componentName: componentName$n,
12164
12259
  includeForwardProps: ['items', 'renderer', 'selectedItems'],
12165
12260
  })
12166
12261
  );
12167
12262
 
12168
- customElements.define(componentName$m, MultiSelectComboBoxClass);
12263
+ customElements.define(componentName$n, MultiSelectComboBoxClass);
12169
12264
 
12170
- const componentName$l = getComponentName('badge');
12265
+ const componentName$m = getComponentName('badge');
12171
12266
 
12172
- class RawBadge extends createBaseClass({ componentName: componentName$l, baseSelector: ':host > div' }) {
12267
+ class RawBadge extends createBaseClass({ componentName: componentName$m, baseSelector: ':host > div' }) {
12173
12268
  constructor() {
12174
12269
  super();
12175
12270
 
@@ -12220,9 +12315,9 @@ const BadgeClass = compose(
12220
12315
  componentNameValidationMixin
12221
12316
  )(RawBadge);
12222
12317
 
12223
- customElements.define(componentName$l, BadgeClass);
12318
+ customElements.define(componentName$m, BadgeClass);
12224
12319
 
12225
- const componentName$k = getComponentName('modal');
12320
+ const componentName$l = getComponentName('modal');
12226
12321
 
12227
12322
  const customMixin$5 = (superclass) =>
12228
12323
  class ModalMixinClass extends superclass {
@@ -12321,11 +12416,11 @@ const ModalClass = compose(
12321
12416
  wrappedEleName: 'vaadin-dialog',
12322
12417
  style: () => ``,
12323
12418
  excludeAttrsSync: ['tabindex', 'opened'],
12324
- componentName: componentName$k,
12419
+ componentName: componentName$l,
12325
12420
  })
12326
12421
  );
12327
12422
 
12328
- customElements.define(componentName$k, ModalClass);
12423
+ customElements.define(componentName$l, ModalClass);
12329
12424
 
12330
12425
  const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
12331
12426
 
@@ -12336,7 +12431,7 @@ if (!vaadinContainerClass) {
12336
12431
  class NotificationContainerClass extends vaadinContainerClass {}
12337
12432
  customElements.define(getComponentName('notification-container'), NotificationContainerClass);
12338
12433
 
12339
- const componentName$j = getComponentName('notification-card');
12434
+ const componentName$k = getComponentName('notification-card');
12340
12435
 
12341
12436
  const notificationCardMixin = (superclass) =>
12342
12437
  class NotificationCardMixinClass extends superclass {
@@ -12444,13 +12539,13 @@ const NotificationCardClass = compose(
12444
12539
  }
12445
12540
  `,
12446
12541
  excludeAttrsSync: ['tabindex'],
12447
- componentName: componentName$j,
12542
+ componentName: componentName$k,
12448
12543
  })
12449
12544
  );
12450
12545
 
12451
- customElements.define(componentName$j, NotificationCardClass);
12546
+ customElements.define(componentName$k, NotificationCardClass);
12452
12547
 
12453
- const componentName$i = getComponentName('notification');
12548
+ const componentName$j = getComponentName('notification');
12454
12549
 
12455
12550
  const NotificationMixin = (superclass) =>
12456
12551
  class NotificationMixinClass extends superclass {
@@ -12545,14 +12640,14 @@ const NotificationClass = compose(
12545
12640
  createProxy({
12546
12641
  wrappedEleName: 'vaadin-notification',
12547
12642
  excludeAttrsSync: ['tabindex'],
12548
- componentName: componentName$i,
12643
+ componentName: componentName$j,
12549
12644
  })
12550
12645
  );
12551
12646
 
12552
- customElements.define(componentName$i, NotificationClass);
12647
+ customElements.define(componentName$j, NotificationClass);
12553
12648
 
12554
- const componentName$h = getComponentName('avatar');
12555
- class RawAvatar extends createBaseClass({ componentName: componentName$h, baseSelector: ':host > .wrapper' }) {
12649
+ const componentName$i = getComponentName('avatar');
12650
+ class RawAvatar extends createBaseClass({ componentName: componentName$i, baseSelector: ':host > .wrapper' }) {
12556
12651
  constructor() {
12557
12652
  super();
12558
12653
 
@@ -12656,11 +12751,11 @@ const AvatarClass = compose(
12656
12751
  componentNameValidationMixin
12657
12752
  )(RawAvatar);
12658
12753
 
12659
- customElements.define(componentName$h, AvatarClass);
12754
+ customElements.define(componentName$i, AvatarClass);
12660
12755
 
12661
- const componentName$g = getComponentName('mappings-field-internal');
12756
+ const componentName$h = getComponentName('mappings-field-internal');
12662
12757
 
12663
- const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$g, baseSelector: 'div' });
12758
+ const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$h, baseSelector: 'div' });
12664
12759
 
12665
12760
  class MappingsFieldInternal extends BaseInputClass$2 {
12666
12761
  #errorItem;
@@ -12895,7 +12990,7 @@ class MappingsFieldInternal extends BaseInputClass$2 {
12895
12990
  }
12896
12991
  }
12897
12992
 
12898
- const componentName$f = getComponentName('mappings-field');
12993
+ const componentName$g = getComponentName('mappings-field');
12899
12994
 
12900
12995
  const customMixin$4 = (superclass) =>
12901
12996
  class MappingsFieldMixinClass extends superclass {
@@ -12924,14 +13019,14 @@ const customMixin$4 = (superclass) =>
12924
13019
  const template = document.createElement('template');
12925
13020
 
12926
13021
  template.innerHTML = `
12927
- <${componentName$g}
13022
+ <${componentName$h}
12928
13023
  tabindex="-1"
12929
- ></${componentName$g}>
13024
+ ></${componentName$h}>
12930
13025
  `;
12931
13026
 
12932
13027
  this.baseElement.appendChild(template.content.cloneNode(true));
12933
13028
 
12934
- this.inputElement = this.shadowRoot.querySelector(componentName$g);
13029
+ this.inputElement = this.shadowRoot.querySelector(componentName$h);
12935
13030
 
12936
13031
  forwardAttrs(this, this.inputElement, {
12937
13032
  includeAttrs: [
@@ -13063,17 +13158,17 @@ const MappingsFieldClass = compose(
13063
13158
  'options',
13064
13159
  'error-message',
13065
13160
  ],
13066
- componentName: componentName$f,
13161
+ componentName: componentName$g,
13067
13162
  })
13068
13163
  );
13069
13164
 
13070
- customElements.define(componentName$g, MappingsFieldInternal);
13165
+ customElements.define(componentName$h, MappingsFieldInternal);
13071
13166
 
13072
- const componentName$e = getComponentName('mapping-item');
13167
+ const componentName$f = getComponentName('mapping-item');
13073
13168
 
13074
13169
  const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
13075
13170
 
13076
- const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$e, baseSelector: 'div' });
13171
+ const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$f, baseSelector: 'div' });
13077
13172
 
13078
13173
  class MappingItem extends BaseInputClass$1 {
13079
13174
  static get observedAttributes() {
@@ -13223,17 +13318,17 @@ class MappingItem extends BaseInputClass$1 {
13223
13318
  }
13224
13319
  }
13225
13320
 
13226
- customElements.define(componentName$e, MappingItem);
13321
+ customElements.define(componentName$f, MappingItem);
13227
13322
 
13228
- customElements.define(componentName$f, MappingsFieldClass);
13323
+ customElements.define(componentName$g, MappingsFieldClass);
13229
13324
 
13230
13325
  var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
13231
13326
 
13232
13327
  var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
13233
13328
 
13234
- const componentName$d = getComponentName('user-attribute');
13329
+ const componentName$e = getComponentName('user-attribute');
13235
13330
  class RawUserAttribute extends createBaseClass({
13236
- componentName: componentName$d,
13331
+ componentName: componentName$e,
13237
13332
  baseSelector: ':host > .root',
13238
13333
  }) {
13239
13334
  constructor() {
@@ -13467,13 +13562,13 @@ const UserAttributeClass = compose(
13467
13562
  componentNameValidationMixin
13468
13563
  )(RawUserAttribute);
13469
13564
 
13470
- customElements.define(componentName$d, UserAttributeClass);
13565
+ customElements.define(componentName$e, UserAttributeClass);
13471
13566
 
13472
13567
  var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
13473
13568
 
13474
- const componentName$c = getComponentName('user-auth-method');
13569
+ const componentName$d = getComponentName('user-auth-method');
13475
13570
  class RawUserAuthMethod extends createBaseClass({
13476
- componentName: componentName$c,
13571
+ componentName: componentName$d,
13477
13572
  baseSelector: ':host > .root',
13478
13573
  }) {
13479
13574
  constructor() {
@@ -13666,11 +13761,11 @@ const UserAuthMethodClass = compose(
13666
13761
  componentNameValidationMixin
13667
13762
  )(RawUserAuthMethod);
13668
13763
 
13669
- customElements.define(componentName$c, UserAuthMethodClass);
13764
+ customElements.define(componentName$d, UserAuthMethodClass);
13670
13765
 
13671
- const componentName$b = getComponentName('saml-group-mappings-internal');
13766
+ const componentName$c = getComponentName('saml-group-mappings-internal');
13672
13767
 
13673
- const BaseInputClass = createBaseInputClass({ componentName: componentName$b, baseSelector: '' });
13768
+ const BaseInputClass = createBaseInputClass({ componentName: componentName$c, baseSelector: '' });
13674
13769
 
13675
13770
  class SamlGroupMappingsInternal extends BaseInputClass {
13676
13771
  static get observedAttributes() {
@@ -13796,7 +13891,7 @@ class SamlGroupMappingsInternal extends BaseInputClass {
13796
13891
  }
13797
13892
  }
13798
13893
 
13799
- const componentName$a = getComponentName('saml-group-mappings');
13894
+ const componentName$b = getComponentName('saml-group-mappings');
13800
13895
 
13801
13896
  const customMixin$3 = (superclass) =>
13802
13897
  class SamlGroupMappingsMixinClass extends superclass {
@@ -13806,14 +13901,14 @@ const customMixin$3 = (superclass) =>
13806
13901
  const template = document.createElement('template');
13807
13902
 
13808
13903
  template.innerHTML = `
13809
- <${componentName$b}
13904
+ <${componentName$c}
13810
13905
  tabindex="-1"
13811
- ></${componentName$b}>
13906
+ ></${componentName$c}>
13812
13907
  `;
13813
13908
 
13814
13909
  this.baseElement.appendChild(template.content.cloneNode(true));
13815
13910
 
13816
- this.inputElement = this.shadowRoot.querySelector(componentName$b);
13911
+ this.inputElement = this.shadowRoot.querySelector(componentName$c);
13817
13912
 
13818
13913
  forwardAttrs(this, this.inputElement, {
13819
13914
  includeAttrs: [
@@ -13890,15 +13985,15 @@ const SamlGroupMappingsClass = compose(
13890
13985
  'options',
13891
13986
  'error-message',
13892
13987
  ],
13893
- componentName: componentName$a,
13988
+ componentName: componentName$b,
13894
13989
  })
13895
13990
  );
13896
13991
 
13897
- customElements.define(componentName$b, SamlGroupMappingsInternal);
13992
+ customElements.define(componentName$c, SamlGroupMappingsInternal);
13898
13993
 
13899
- customElements.define(componentName$a, SamlGroupMappingsClass);
13994
+ customElements.define(componentName$b, SamlGroupMappingsClass);
13900
13995
 
13901
- const componentName$9 = getComponentName('radio-button');
13996
+ const componentName$a = getComponentName('radio-button');
13902
13997
 
13903
13998
  const customMixin$2 = (superclass) =>
13904
13999
  class CustomMixin extends superclass {
@@ -13963,11 +14058,11 @@ const RadioButtonClass = compose(
13963
14058
  wrappedEleName: 'vaadin-radio-button',
13964
14059
  excludeAttrsSync: ['tabindex', 'data'],
13965
14060
  includeForwardProps: ['checked', 'name', 'disabled'],
13966
- componentName: componentName$9,
14061
+ componentName: componentName$a,
13967
14062
  })
13968
14063
  );
13969
14064
 
13970
- const componentName$8 = getComponentName('radio-group');
14065
+ const componentName$9 = getComponentName('radio-group');
13971
14066
 
13972
14067
  const RadioGroupMixin = (superclass) =>
13973
14068
  class RadioGroupMixinClass extends superclass {
@@ -13982,12 +14077,12 @@ const RadioGroupMixin = (superclass) =>
13982
14077
 
13983
14078
  // we are overriding vaadin children getter so it will run on our custom elements
13984
14079
  Object.defineProperty(this.baseElement, 'children', {
13985
- get: () => this.querySelectorAll(componentName$9),
14080
+ get: () => this.querySelectorAll(componentName$a),
13986
14081
  });
13987
14082
 
13988
14083
  // we are overriding vaadin __filterRadioButtons so it will run on our custom elements
13989
14084
  this.baseElement.__filterRadioButtons = (nodes) => {
13990
- return nodes.filter((node) => node.localName === componentName$9);
14085
+ return nodes.filter((node) => node.localName === componentName$a);
13991
14086
  };
13992
14087
 
13993
14088
  // vaadin radio group missing some input properties
@@ -14137,13 +14232,13 @@ const RadioGroupClass = compose(
14137
14232
  `,
14138
14233
 
14139
14234
  excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
14140
- componentName: componentName$8,
14235
+ componentName: componentName$9,
14141
14236
  includeForwardProps: ['value'],
14142
14237
  })
14143
14238
  );
14144
14239
 
14145
- customElements.define(componentName$8, RadioGroupClass);
14146
- customElements.define(componentName$9, RadioButtonClass);
14240
+ customElements.define(componentName$9, RadioGroupClass);
14241
+ customElements.define(componentName$a, RadioButtonClass);
14147
14242
 
14148
14243
  const activeableMixin = (superclass) =>
14149
14244
  class ActiveableMixinClass extends superclass {
@@ -14160,7 +14255,7 @@ const activeableMixin = (superclass) =>
14160
14255
  }
14161
14256
  };
14162
14257
 
14163
- const componentName$7 = getComponentName('list-item');
14258
+ const componentName$8 = getComponentName('list-item');
14164
14259
 
14165
14260
  const customMixin$1 = (superclass) =>
14166
14261
  class ListItemMixinClass extends superclass {
@@ -14209,11 +14304,11 @@ const ListItemClass = compose(
14209
14304
  componentNameValidationMixin,
14210
14305
  customMixin$1,
14211
14306
  activeableMixin
14212
- )(createBaseClass({ componentName: componentName$7, baseSelector: 'slot' }));
14307
+ )(createBaseClass({ componentName: componentName$8, baseSelector: 'slot' }));
14213
14308
 
14214
- const componentName$6 = getComponentName('list');
14309
+ const componentName$7 = getComponentName('list');
14215
14310
 
14216
- class RawList extends createBaseClass({ componentName: componentName$6, baseSelector: '.wrapper' }) {
14311
+ class RawList extends createBaseClass({ componentName: componentName$7, baseSelector: '.wrapper' }) {
14217
14312
  static get observedAttributes() {
14218
14313
  return ['variant', 'readonly'];
14219
14314
  }
@@ -14360,8 +14455,8 @@ const ListClass = compose(
14360
14455
  componentNameValidationMixin
14361
14456
  )(RawList);
14362
14457
 
14363
- customElements.define(componentName$6, ListClass);
14364
- customElements.define(componentName$7, ListItemClass);
14458
+ customElements.define(componentName$7, ListClass);
14459
+ customElements.define(componentName$8, ListItemClass);
14365
14460
 
14366
14461
  const defaultValidateSchema = () => true;
14367
14462
  const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
@@ -14462,7 +14557,7 @@ const createDynamicDataMixin =
14462
14557
  }
14463
14558
  };
14464
14559
 
14465
- const componentName$5 = getComponentName('apps-list');
14560
+ const componentName$6 = getComponentName('apps-list');
14466
14561
 
14467
14562
  const limitAbbreviation = (str, limit = 2) =>
14468
14563
  str
@@ -14524,7 +14619,7 @@ const AppsListClass = compose(
14524
14619
  slots: ['empty-state'],
14525
14620
  wrappedEleName: 'descope-list',
14526
14621
  excludeAttrsSync: ['tabindex', 'class', 'empty'],
14527
- componentName: componentName$5,
14622
+ componentName: componentName$6,
14528
14623
  style: () => `
14529
14624
  :host {
14530
14625
  width: 100%;
@@ -14549,9 +14644,9 @@ const AppsListClass = compose(
14549
14644
  })
14550
14645
  );
14551
14646
 
14552
- customElements.define(componentName$5, AppsListClass);
14647
+ customElements.define(componentName$6, AppsListClass);
14553
14648
 
14554
- const componentName$4 = getComponentName('scopes-list');
14649
+ const componentName$5 = getComponentName('scopes-list');
14555
14650
  const variants = ['checkbox', 'switch'];
14556
14651
 
14557
14652
  const itemRenderer = ({ id, desc, required = false }, _, ref) => {
@@ -14570,7 +14665,7 @@ const itemRenderer = ({ id, desc, required = false }, _, ref) => {
14570
14665
  `;
14571
14666
  };
14572
14667
 
14573
- class RawScopesList extends createBaseClass({ componentName: componentName$4, baseSelector: 'div' }) {
14668
+ class RawScopesList extends createBaseClass({ componentName: componentName$5, baseSelector: 'div' }) {
14574
14669
  constructor() {
14575
14670
  super();
14576
14671
 
@@ -14675,13 +14770,13 @@ const ScopesListClass = compose(
14675
14770
  componentNameValidationMixin
14676
14771
  )(RawScopesList);
14677
14772
 
14678
- customElements.define(componentName$4, ScopesListClass);
14773
+ customElements.define(componentName$5, ScopesListClass);
14679
14774
 
14680
14775
  var arrowsImg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTQ0OTIgMTUuNjQ1TDcuNDk5OTIgMTRMMi44MzMyNSAxOC42NjY3TDcuNDk5OTIgMjMuMzMzM0w5LjE0NDkyIDIxLjY4ODNMNy4zMDE1OSAxOS44MzMzSDI0Ljk5OTlWMTcuNUg3LjMwMTU5TDkuMTQ0OTIgMTUuNjQ1WiIgZmlsbD0iIzYzNkM3NCIvPgo8cGF0aCBkPSJNMTkuODU1IDEyLjM1NTNMMjEuNSAxNC4wMDAzTDI2LjE2NjcgOS4zMzM2NkwyMS41IDQuNjY2OTlMMTkuODU1IDYuMzExOTlMMjEuNjk4MyA4LjE2Njk5SDRWMTAuNTAwM0gyMS42OTgzTDE5Ljg1NSAxMi4zNTUzWiIgZmlsbD0iIzYzNkM3NCIvPgo8L3N2Zz4K";
14681
14776
 
14682
- const componentName$3 = getComponentName('third-party-app-logo');
14777
+ const componentName$4 = getComponentName('third-party-app-logo');
14683
14778
  class RawThirdPartyAppLogoClass extends createBaseClass({
14684
- componentName: componentName$3,
14779
+ componentName: componentName$4,
14685
14780
  baseSelector: '.wrapper',
14686
14781
  }) {
14687
14782
  constructor() {
@@ -14775,9 +14870,9 @@ const ThirdPartyAppLogoClass = compose(
14775
14870
  componentNameValidationMixin
14776
14871
  )(RawThirdPartyAppLogoClass);
14777
14872
 
14778
- customElements.define(componentName$3, ThirdPartyAppLogoClass);
14873
+ customElements.define(componentName$4, ThirdPartyAppLogoClass);
14779
14874
 
14780
- const componentName$2 = getComponentName('security-questions-setup');
14875
+ const componentName$3 = getComponentName('security-questions-setup');
14781
14876
 
14782
14877
  const attrsToSync$1 = [
14783
14878
  'full-width',
@@ -14793,7 +14888,7 @@ const attrsToSync$1 = [
14793
14888
  ];
14794
14889
 
14795
14890
  const attrsToReRender$1 = ['count', 'questions'];
14796
- class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$2, baseSelector: 'div' }) {
14891
+ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: componentName$3, baseSelector: 'div' }) {
14797
14892
  constructor() {
14798
14893
  super();
14799
14894
 
@@ -14900,7 +14995,7 @@ class RawSecurityQuestionsSetup extends createBaseClass({ componentName: compone
14900
14995
  return JSON.parse(this.getAttribute('questions')) || [];
14901
14996
  } catch (e) {
14902
14997
  // eslint-disable-next-line no-console
14903
- console.error(componentName$2, 'Error parsing questions attribute', e);
14998
+ console.error(componentName$3, 'Error parsing questions attribute', e);
14904
14999
  return [];
14905
15000
  }
14906
15001
  }
@@ -15008,9 +15103,9 @@ const SecurityQuestionsSetupClass = compose(
15008
15103
  componentNameValidationMixin
15009
15104
  )(RawSecurityQuestionsSetup);
15010
15105
 
15011
- customElements.define(componentName$2, SecurityQuestionsSetupClass);
15106
+ customElements.define(componentName$3, SecurityQuestionsSetupClass);
15012
15107
 
15013
- const componentName$1 = getComponentName('security-questions-verify');
15108
+ const componentName$2 = getComponentName('security-questions-verify');
15014
15109
 
15015
15110
  const textFieldsAttrs = [
15016
15111
  'full-width',
@@ -15031,7 +15126,7 @@ const attrMappings = {
15031
15126
  const attrsToSync = [...textFieldsAttrs, ...textsAttrs];
15032
15127
 
15033
15128
  const attrsToReRender = ['questions'];
15034
- class RawSecurityQuestionsVerify extends createBaseClass({ componentName: componentName$1, baseSelector: 'div' }) {
15129
+ class RawSecurityQuestionsVerify extends createBaseClass({ componentName: componentName$2, baseSelector: 'div' }) {
15035
15130
  constructor() {
15036
15131
  super();
15037
15132
 
@@ -15102,7 +15197,7 @@ class RawSecurityQuestionsVerify extends createBaseClass({ componentName: compon
15102
15197
  return JSON.parse(this.getAttribute('questions')) || [];
15103
15198
  } catch (e) {
15104
15199
  // eslint-disable-next-line no-console
15105
- console.error(componentName$1, 'Error parsing questions attribute', e);
15200
+ console.error(componentName$2, 'Error parsing questions attribute', e);
15106
15201
  return [];
15107
15202
  }
15108
15203
  }
@@ -15212,7 +15307,316 @@ const SecurityQuestionsVerifyClass = compose(
15212
15307
  componentNameValidationMixin
15213
15308
  )(RawSecurityQuestionsVerify);
15214
15309
 
15215
- customElements.define(componentName$1, SecurityQuestionsVerifyClass);
15310
+ customElements.define(componentName$2, SecurityQuestionsVerifyClass);
15311
+
15312
+ const NUMERIC_RE = /^\d+$/;
15313
+
15314
+ const isNumericValue = (val) => NUMERIC_RE.test(val.replaceAll('+', '').replaceAll('-', ''));
15315
+
15316
+ const sanitizeCountryCodePrefix = (val) => val.replace(/\+\d+-/, '');
15317
+
15318
+ const componentName$1 = getComponentName('hybrid-field');
15319
+
15320
+ const attrs = {
15321
+ shared: [
15322
+ 'label',
15323
+ 'placeholder',
15324
+ 'bordered',
15325
+ 'full-width',
15326
+ 'label-type',
15327
+ 'size',
15328
+ 'disabled',
15329
+ 'readonly',
15330
+ 'required',
15331
+ 'st-host-direction',
15332
+ ],
15333
+ email: [
15334
+ 'data-errormessage-value-missing-email',
15335
+ 'data-errormessage-pattern-mismatch-email',
15336
+ 'external-input',
15337
+ ],
15338
+ phone: {
15339
+ countryCode: [
15340
+ 'country-input-label',
15341
+ 'country-input-placeholder',
15342
+ 'restrict-countries',
15343
+ 'default-code',
15344
+ 'phone-minlength',
15345
+ 'data-errormessage-value-missing-phone',
15346
+ ],
15347
+ inputBox: [
15348
+ 'restrict-countries',
15349
+ 'default-code',
15350
+ 'phone-minlength',
15351
+ 'data-errormessage-value-missing-phone',
15352
+ ],
15353
+ },
15354
+ };
15355
+
15356
+ const attrMap = {
15357
+ email: {
15358
+ 'data-errormessage-value-missing-email': 'data-errormessage-value-missing',
15359
+ 'data-errormessage-pattern-mismatch-email': 'data-errormessage-pattern-mismatch',
15360
+ },
15361
+ phone: {
15362
+ placeholder: 'phone-input-placeholder',
15363
+ 'phone-minlength': 'minlength',
15364
+ 'data-errormessage-value-missing-phone': 'data-errormessage-value-missing',
15365
+ },
15366
+ };
15367
+
15368
+ const EMAIL_FIELD = 'descope-email-field';
15369
+ const PHONE_FIELD = 'descope-phone-field';
15370
+ const PHONE_INPUT_BOX_FIELD = 'descope-phone-input-box-field';
15371
+
15372
+ const BaseClass = createBaseClass({
15373
+ componentName: componentName$1,
15374
+ baseSelector: 'div',
15375
+ });
15376
+
15377
+ class RawHybridField extends BaseClass {
15378
+ #isReportedValidity = false;
15379
+
15380
+ #selectionStart;
15381
+
15382
+ constructor() {
15383
+ super();
15384
+
15385
+ this.attachShadow({ mode: 'open' }).innerHTML = `
15386
+ <style>
15387
+ :host {
15388
+ display: inline-flex;
15389
+ box-sizing: border-box;
15390
+ padding: 0;
15391
+ gap: 0;
15392
+ }
15393
+ .wrapper {
15394
+ display: grid;
15395
+ place-content: center;
15396
+ }
15397
+ descope-email-field,
15398
+ descope-phone-field,
15399
+ descope-phone-input-box-field {
15400
+ grid-area: 1/1;
15401
+ width: 100%;
15402
+ height: 100%;
15403
+ }
15404
+ .hidden {
15405
+ visibility: hidden;
15406
+ }
15407
+ </style>
15408
+ <div class="wrapper">
15409
+ <descope-email-field external-input="${this.isExternalInput}"></descope-email-field>
15410
+ <descope-phone-field allow-alphanumeric-input="true"></descope-phone-field>
15411
+ <descope-phone-input-box-field allow-alphanumeric-input="true"></descope-phone-input-box-field>
15412
+ </div>
15413
+ `;
15414
+ }
15415
+
15416
+ get isExternalInput() {
15417
+ return this.getAttribute('external-input') === 'true';
15418
+ }
15419
+
15420
+ get emailInputEle() {
15421
+ return this.isExternalInput ? this.emailInput.externalInput : this.emailInput.inputElement;
15422
+ }
15423
+
15424
+ get phoneVariant() {
15425
+ const isInputBox = this.getAttribute('phone-variant') === 'inputBox';
15426
+ return isInputBox ? this.phoneInputBoxInput : this.phoneCountryCodeInput;
15427
+ }
15428
+
15429
+ get defaultCode() {
15430
+ const firstItem = this.phoneCountryCodeInput.countryCodes?.[0] || '';
15431
+ return this.getAttribute('default-code') || firstItem;
15432
+ }
15433
+
15434
+ get activeInputEle() {
15435
+ if (this.activeInput === this.emailInput) {
15436
+ return this.emailInputEle;
15437
+ }
15438
+ return this.phoneVariant.phoneNumberInputEle;
15439
+ }
15440
+
15441
+ get value() {
15442
+ return this.activeInput?.value || '';
15443
+ }
15444
+
15445
+ set value(val) {
15446
+ this.handleActiveInput(val);
15447
+ this.activeInput.value = val;
15448
+ }
15449
+
15450
+ async init() {
15451
+ super.init?.();
15452
+
15453
+ this.initInputs();
15454
+ this.updateAttrs();
15455
+ this.toggleInputVisibility();
15456
+
15457
+ await this.waitForInputs();
15458
+
15459
+ this.initInputEles();
15460
+ this.overrideEmailInputType();
15461
+ this.overrideEmailSetAttribute();
15462
+ }
15463
+
15464
+ waitForInputs() {
15465
+ return new Promise((resolve) => {
15466
+ const check = setInterval(() => {
15467
+ if (this.emailInputEle) {
15468
+ clearInterval(check);
15469
+ resolve();
15470
+ }
15471
+ });
15472
+ });
15473
+ }
15474
+
15475
+ initInputs() {
15476
+ this.emailInput = this.shadowRoot.querySelector(EMAIL_FIELD);
15477
+ this.phoneCountryCodeInput = this.shadowRoot.querySelector(PHONE_FIELD);
15478
+ this.phoneInputBoxInput = this.shadowRoot.querySelector(PHONE_INPUT_BOX_FIELD);
15479
+
15480
+ this.inputs = [this.emailInput, this.phoneCountryCodeInput, this.phoneInputBoxInput];
15481
+
15482
+ this.activeInput = this.emailInput;
15483
+ }
15484
+
15485
+ // we need to listen on the inner `input` element itself, otherwise we don't always get an `input` event
15486
+ initInputEles() {
15487
+ const inputEles = [
15488
+ this.emailInputEle,
15489
+ this.phoneCountryCodeInput.phoneNumberInputEle,
15490
+ this.phoneInputBoxInput.phoneNumberInputEle,
15491
+ ];
15492
+
15493
+ inputEles.forEach((ele) => {
15494
+ ele.addEventListener('input', this.onValueChange.bind(this));
15495
+ });
15496
+ }
15497
+
15498
+ overrideEmailInputType() {
15499
+ this.emailInputEle.addEventListener('focus', () => {
15500
+ this.emailInputEle.setAttribute('type', 'text');
15501
+ });
15502
+ this.emailInputEle.addEventListener('blur', () => {
15503
+ setTimeout(() => {
15504
+ this.emailInputEle.setAttribute('type', 'email');
15505
+ });
15506
+ });
15507
+ }
15508
+
15509
+ // We want to prevent Vaadin from changing the input type to `email`
15510
+ // otherwise, we cannot get the selectionStart from the input.
15511
+ overrideEmailSetAttribute() {
15512
+ const origEmailSetAttr = this.emailInput.setAttribute.bind(this.emailInputEle);
15513
+ this.emailInputEle.setAttribute = (name, value) => {
15514
+ if (name !== 'type' || value !== 'email' || !this.emailInput.hasAttribute('focused')) {
15515
+ return origEmailSetAttr(name, value);
15516
+ }
15517
+ return false;
15518
+ };
15519
+ }
15520
+
15521
+ updateAttrs() {
15522
+ this.inputs.forEach((input) => forwardAttrs(this, input, { includeAttrs: attrs.shared }));
15523
+
15524
+ forwardAttrs(this, this.emailInput, { includeAttrs: attrs.email, mapAttrs: attrMap.email });
15525
+
15526
+ forwardAttrs(this, this.phoneCountryCodeInput, {
15527
+ includeAttrs: attrs.phone.countryCode,
15528
+ mapAttrs: attrMap.phone,
15529
+ });
15530
+
15531
+ forwardAttrs(this, this.phoneInputBoxInput, {
15532
+ includeAttrs: attrs.phone.inputBox,
15533
+ mapAttrs: attrMap.phone,
15534
+ });
15535
+
15536
+ setTimeout(() => this.phoneCountryCodeInput.setAttribute('default-code', this.defaultCode));
15537
+ }
15538
+
15539
+ onValueChange() {
15540
+ this.#selectionStart = this.activeInputEle.selectionStart;
15541
+ this.handleActiveInput(this.activeInput.value);
15542
+ }
15543
+
15544
+ handleActiveInput(val) {
15545
+ const expectedActiveInput = isNumericValue(val) ? this.phoneVariant : this.emailInput;
15546
+
15547
+ if (this.activeInput !== expectedActiveInput) {
15548
+ this.setActiveInput(expectedActiveInput);
15549
+ }
15550
+ }
15551
+
15552
+ setActiveInput(expectedActiveInput) {
15553
+ const val = this.activeInput.value;
15554
+ this.activeInput = expectedActiveInput;
15555
+ this.setActiveInputValue(val);
15556
+ if (this.#isReportedValidity) this.activeInput.reportValidity();
15557
+ this.setActiveInputSelectionStart();
15558
+ this.toggleInputVisibility();
15559
+ }
15560
+
15561
+ setActiveInputSelectionStart() {
15562
+ setTimeout(() => {
15563
+ this.activeInputEle.focus();
15564
+ this.activeInputEle.setSelectionRange?.(this.#selectionStart, this.#selectionStart);
15565
+ });
15566
+ }
15567
+
15568
+ setActiveInputValue(val) {
15569
+ const sanitizedVal = sanitizeCountryCodePrefix(val);
15570
+ const isPhoneField = this.activeInput.localName === PHONE_FIELD;
15571
+ const value = isPhoneField
15572
+ ? `${this.phoneCountryCodeInput.countryCodeItems}-${sanitizedVal}`
15573
+ : sanitizedVal;
15574
+ this.activeInput.value = value;
15575
+ }
15576
+
15577
+ toggleInputVisibility() {
15578
+ this.inputs.forEach((input) => {
15579
+ input !== this.activeInput ? input.classList.add('hidden') : input.classList.remove('hidden');
15580
+ });
15581
+ }
15582
+
15583
+ reportValidity() {
15584
+ this.#isReportedValidity = true;
15585
+
15586
+ const ele = this.activeInputEle;
15587
+
15588
+ // On reportValidity we want to set the caret at the end of the input value.
15589
+ // Since checkValidity triggers `focus` on the input, it sets the caret at the start of the input,
15590
+ // regardless the existing value.
15591
+ setTimeout(() => {
15592
+ ele.setSelectionRange?.(ele.value.length, ele.value.length);
15593
+ });
15594
+
15595
+ return this.activeInput.reportValidity();
15596
+ }
15597
+
15598
+ checkValidity() {
15599
+ return this.activeInput.checkValidity();
15600
+ }
15601
+ }
15602
+
15603
+ const HybridFieldClass = compose(
15604
+ createStyleMixin({ componentNameOverride: getComponentName('input-wrapper') }),
15605
+ createStyleMixin({
15606
+ mappings: {
15607
+ hostWidth: { selector: () => ':host', property: 'width' },
15608
+ hostDirection: [
15609
+ { selector: () => 'descope-email-field', property: 'direction' },
15610
+ { selector: () => 'descope-phone-field', property: 'direction' },
15611
+ { selector: () => 'descope-phone-input-box-field', property: 'direction' },
15612
+ ],
15613
+ },
15614
+ }),
15615
+ draggableMixin,
15616
+ componentNameValidationMixin
15617
+ )(RawHybridField);
15618
+
15619
+ customElements.define(componentName$1, HybridFieldClass);
15216
15620
 
15217
15621
  const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
15218
15622
 
@@ -15651,7 +16055,7 @@ const globals = {
15651
16055
  fonts,
15652
16056
  direction,
15653
16057
  };
15654
- const vars$S = getThemeVars(globals);
16058
+ const vars$T = getThemeVars(globals);
15655
16059
 
15656
16060
  const globalRefs$y = getThemeRefs(globals);
15657
16061
  const compVars$6 = ButtonClass.cssVarList;
@@ -15664,7 +16068,7 @@ const mode = {
15664
16068
  surface: globalRefs$y.colors.surface,
15665
16069
  };
15666
16070
 
15667
- const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$13);
16071
+ const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$14);
15668
16072
 
15669
16073
  const button = {
15670
16074
  ...helperTheme$4,
@@ -15776,7 +16180,7 @@ const button = {
15776
16180
  },
15777
16181
  };
15778
16182
 
15779
- const vars$R = {
16183
+ const vars$S = {
15780
16184
  ...compVars$6,
15781
16185
  ...helperVars$4,
15782
16186
  };
@@ -15784,13 +16188,13 @@ const vars$R = {
15784
16188
  var button$1 = /*#__PURE__*/Object.freeze({
15785
16189
  __proto__: null,
15786
16190
  default: button,
15787
- vars: vars$R
16191
+ vars: vars$S
15788
16192
  });
15789
16193
 
15790
16194
  const componentName = getComponentName('input-wrapper');
15791
16195
  const globalRefs$x = getThemeRefs(globals);
15792
16196
 
15793
- const [theme$1, refs, vars$Q] = createHelperVars(
16197
+ const [theme$1, refs, vars$R] = createHelperVars(
15794
16198
  {
15795
16199
  labelTextColor: globalRefs$x.colors.surface.dark,
15796
16200
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
@@ -15909,13 +16313,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
15909
16313
  __proto__: null,
15910
16314
  default: theme$1,
15911
16315
  refs: refs,
15912
- vars: vars$Q
16316
+ vars: vars$R
15913
16317
  });
15914
16318
 
15915
16319
  const globalRefs$w = getThemeRefs(globals);
15916
- const vars$P = TextFieldClass.cssVarList;
16320
+ const vars$Q = TextFieldClass.cssVarList;
15917
16321
 
15918
16322
  const textField = {
16323
+ [vars$Q.hostWidth]: refs.width,
16324
+ [vars$Q.hostMinWidth]: refs.minWidth,
16325
+ [vars$Q.hostDirection]: refs.direction,
16326
+ [vars$Q.fontSize]: refs.fontSize,
16327
+ [vars$Q.fontFamily]: refs.fontFamily,
16328
+ [vars$Q.labelFontSize]: refs.labelFontSize,
16329
+ [vars$Q.labelFontWeight]: refs.labelFontWeight,
16330
+ [vars$Q.labelTextColor]: refs.labelTextColor,
16331
+ [vars$Q.labelRequiredIndicator]: refs.requiredIndicator,
16332
+ [vars$Q.errorMessageTextColor]: refs.errorMessageTextColor,
16333
+ [vars$Q.inputValueTextColor]: refs.valueTextColor,
16334
+ [vars$Q.inputPlaceholderColor]: refs.placeholderTextColor,
16335
+ [vars$Q.inputBorderWidth]: refs.borderWidth,
16336
+ [vars$Q.inputBorderStyle]: refs.borderStyle,
16337
+ [vars$Q.inputBorderColor]: refs.borderColor,
16338
+ [vars$Q.inputBorderRadius]: refs.borderRadius,
16339
+ [vars$Q.inputOutlineWidth]: refs.outlineWidth,
16340
+ [vars$Q.inputOutlineStyle]: refs.outlineStyle,
16341
+ [vars$Q.inputOutlineColor]: refs.outlineColor,
16342
+ [vars$Q.inputOutlineOffset]: refs.outlineOffset,
16343
+ [vars$Q.inputBackgroundColor]: refs.backgroundColor,
16344
+ [vars$Q.inputHeight]: refs.inputHeight,
16345
+ [vars$Q.inputHorizontalPadding]: refs.horizontalPadding,
16346
+ [vars$Q.helperTextColor]: refs.helperTextColor,
16347
+ [vars$Q.textAlign]: refs.textAlign,
16348
+ textAlign: {
16349
+ right: { [vars$Q.inputTextAlign]: 'right' },
16350
+ left: { [vars$Q.inputTextAlign]: 'left' },
16351
+ center: { [vars$Q.inputTextAlign]: 'center' },
16352
+ },
16353
+ [vars$Q.labelPosition]: refs.labelPosition,
16354
+ [vars$Q.labelTopPosition]: refs.labelTopPosition,
16355
+ [vars$Q.labelHorizontalPosition]: refs.labelHorizontalPosition,
16356
+ [vars$Q.inputTransformY]: refs.inputTransformY,
16357
+ [vars$Q.inputTransition]: refs.inputTransition,
16358
+ [vars$Q.marginInlineStart]: refs.marginInlineStart,
16359
+ [vars$Q.placeholderOpacity]: refs.placeholderOpacity,
16360
+ [vars$Q.inputVerticalAlignment]: refs.inputVerticalAlignment,
16361
+ [vars$Q.valueInputHeight]: refs.valueInputHeight,
16362
+ [vars$Q.valueInputMarginBottom]: refs.valueInputMarginBottom,
16363
+ [vars$Q.inputIconOffset]: globalRefs$w.spacing.md,
16364
+ [vars$Q.inputIconSize]: refs.inputIconSize,
16365
+ [vars$Q.inputIconColor]: refs.placeholderTextColor,
16366
+ };
16367
+
16368
+ var textField$1 = /*#__PURE__*/Object.freeze({
16369
+ __proto__: null,
16370
+ default: textField,
16371
+ textField: textField,
16372
+ vars: vars$Q
16373
+ });
16374
+
16375
+ const globalRefs$v = getThemeRefs(globals);
16376
+ const vars$P = PasswordClass.cssVarList;
16377
+
16378
+ const password = {
15919
16379
  [vars$P.hostWidth]: refs.width,
15920
16380
  [vars$P.hostMinWidth]: refs.minWidth,
15921
16381
  [vars$P.hostDirection]: refs.direction,
@@ -15924,10 +16384,13 @@ const textField = {
15924
16384
  [vars$P.labelFontSize]: refs.labelFontSize,
15925
16385
  [vars$P.labelFontWeight]: refs.labelFontWeight,
15926
16386
  [vars$P.labelTextColor]: refs.labelTextColor,
15927
- [vars$P.labelRequiredIndicator]: refs.requiredIndicator,
15928
16387
  [vars$P.errorMessageTextColor]: refs.errorMessageTextColor,
16388
+ [vars$P.inputHorizontalPadding]: refs.horizontalPadding,
16389
+ [vars$P.inputHeight]: refs.inputHeight,
16390
+ [vars$P.inputBackgroundColor]: refs.backgroundColor,
16391
+ [vars$P.labelRequiredIndicator]: refs.requiredIndicator,
15929
16392
  [vars$P.inputValueTextColor]: refs.valueTextColor,
15930
- [vars$P.inputPlaceholderColor]: refs.placeholderTextColor,
16393
+ [vars$P.inputPlaceholderTextColor]: refs.placeholderTextColor,
15931
16394
  [vars$P.inputBorderWidth]: refs.borderWidth,
15932
16395
  [vars$P.inputBorderStyle]: refs.borderStyle,
15933
16396
  [vars$P.inputBorderColor]: refs.borderColor,
@@ -15936,16 +16399,9 @@ const textField = {
15936
16399
  [vars$P.inputOutlineStyle]: refs.outlineStyle,
15937
16400
  [vars$P.inputOutlineColor]: refs.outlineColor,
15938
16401
  [vars$P.inputOutlineOffset]: refs.outlineOffset,
15939
- [vars$P.inputBackgroundColor]: refs.backgroundColor,
15940
- [vars$P.inputHeight]: refs.inputHeight,
15941
- [vars$P.inputHorizontalPadding]: refs.horizontalPadding,
15942
- [vars$P.helperTextColor]: refs.helperTextColor,
15943
- [vars$P.textAlign]: refs.textAlign,
15944
- textAlign: {
15945
- right: { [vars$P.inputTextAlign]: 'right' },
15946
- left: { [vars$P.inputTextAlign]: 'left' },
15947
- center: { [vars$P.inputTextAlign]: 'center' },
15948
- },
16402
+ [vars$P.revealButtonOffset]: globalRefs$v.spacing.md,
16403
+ [vars$P.revealButtonSize]: refs.toggleButtonSize,
16404
+ [vars$P.revealButtonColor]: refs.placeholderTextColor,
15949
16405
  [vars$P.labelPosition]: refs.labelPosition,
15950
16406
  [vars$P.labelTopPosition]: refs.labelTopPosition,
15951
16407
  [vars$P.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15955,23 +16411,17 @@ const textField = {
15955
16411
  [vars$P.placeholderOpacity]: refs.placeholderOpacity,
15956
16412
  [vars$P.inputVerticalAlignment]: refs.inputVerticalAlignment,
15957
16413
  [vars$P.valueInputHeight]: refs.valueInputHeight,
15958
- [vars$P.valueInputMarginBottom]: refs.valueInputMarginBottom,
15959
- [vars$P.inputIconOffset]: globalRefs$w.spacing.md,
15960
- [vars$P.inputIconSize]: refs.inputIconSize,
15961
- [vars$P.inputIconColor]: refs.placeholderTextColor,
15962
16414
  };
15963
16415
 
15964
- var textField$1 = /*#__PURE__*/Object.freeze({
16416
+ var password$1 = /*#__PURE__*/Object.freeze({
15965
16417
  __proto__: null,
15966
- default: textField,
15967
- textField: textField,
16418
+ default: password,
15968
16419
  vars: vars$P
15969
16420
  });
15970
16421
 
15971
- const globalRefs$v = getThemeRefs(globals);
15972
- const vars$O = PasswordClass.cssVarList;
16422
+ const vars$O = NumberFieldClass.cssVarList;
15973
16423
 
15974
- const password = {
16424
+ const numberField = {
15975
16425
  [vars$O.hostWidth]: refs.width,
15976
16426
  [vars$O.hostMinWidth]: refs.minWidth,
15977
16427
  [vars$O.hostDirection]: refs.direction,
@@ -15981,12 +16431,8 @@ const password = {
15981
16431
  [vars$O.labelFontWeight]: refs.labelFontWeight,
15982
16432
  [vars$O.labelTextColor]: refs.labelTextColor,
15983
16433
  [vars$O.errorMessageTextColor]: refs.errorMessageTextColor,
15984
- [vars$O.inputHorizontalPadding]: refs.horizontalPadding,
15985
- [vars$O.inputHeight]: refs.inputHeight,
15986
- [vars$O.inputBackgroundColor]: refs.backgroundColor,
15987
- [vars$O.labelRequiredIndicator]: refs.requiredIndicator,
15988
16434
  [vars$O.inputValueTextColor]: refs.valueTextColor,
15989
- [vars$O.inputPlaceholderTextColor]: refs.placeholderTextColor,
16435
+ [vars$O.inputPlaceholderColor]: refs.placeholderTextColor,
15990
16436
  [vars$O.inputBorderWidth]: refs.borderWidth,
15991
16437
  [vars$O.inputBorderStyle]: refs.borderStyle,
15992
16438
  [vars$O.inputBorderColor]: refs.borderColor,
@@ -15995,9 +16441,10 @@ const password = {
15995
16441
  [vars$O.inputOutlineStyle]: refs.outlineStyle,
15996
16442
  [vars$O.inputOutlineColor]: refs.outlineColor,
15997
16443
  [vars$O.inputOutlineOffset]: refs.outlineOffset,
15998
- [vars$O.revealButtonOffset]: globalRefs$v.spacing.md,
15999
- [vars$O.revealButtonSize]: refs.toggleButtonSize,
16000
- [vars$O.revealButtonColor]: refs.placeholderTextColor,
16444
+ [vars$O.inputBackgroundColor]: refs.backgroundColor,
16445
+ [vars$O.labelRequiredIndicator]: refs.requiredIndicator,
16446
+ [vars$O.inputHorizontalPadding]: refs.horizontalPadding,
16447
+ [vars$O.inputHeight]: refs.inputHeight,
16001
16448
  [vars$O.labelPosition]: refs.labelPosition,
16002
16449
  [vars$O.labelTopPosition]: refs.labelTopPosition,
16003
16450
  [vars$O.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -16007,17 +16454,18 @@ const password = {
16007
16454
  [vars$O.placeholderOpacity]: refs.placeholderOpacity,
16008
16455
  [vars$O.inputVerticalAlignment]: refs.inputVerticalAlignment,
16009
16456
  [vars$O.valueInputHeight]: refs.valueInputHeight,
16457
+ [vars$O.valueInputMarginBottom]: refs.valueInputMarginBottom,
16010
16458
  };
16011
16459
 
16012
- var password$1 = /*#__PURE__*/Object.freeze({
16460
+ var numberField$1 = /*#__PURE__*/Object.freeze({
16013
16461
  __proto__: null,
16014
- default: password,
16462
+ default: numberField,
16015
16463
  vars: vars$O
16016
16464
  });
16017
16465
 
16018
- const vars$N = NumberFieldClass.cssVarList;
16466
+ const vars$N = EmailFieldClass.cssVarList;
16019
16467
 
16020
- const numberField = {
16468
+ const emailField = {
16021
16469
  [vars$N.hostWidth]: refs.width,
16022
16470
  [vars$N.hostMinWidth]: refs.minWidth,
16023
16471
  [vars$N.hostDirection]: refs.direction,
@@ -16028,6 +16476,7 @@ const numberField = {
16028
16476
  [vars$N.labelTextColor]: refs.labelTextColor,
16029
16477
  [vars$N.errorMessageTextColor]: refs.errorMessageTextColor,
16030
16478
  [vars$N.inputValueTextColor]: refs.valueTextColor,
16479
+ [vars$N.labelRequiredIndicator]: refs.requiredIndicator,
16031
16480
  [vars$N.inputPlaceholderColor]: refs.placeholderTextColor,
16032
16481
  [vars$N.inputBorderWidth]: refs.borderWidth,
16033
16482
  [vars$N.inputBorderStyle]: refs.borderStyle,
@@ -16038,7 +16487,6 @@ const numberField = {
16038
16487
  [vars$N.inputOutlineColor]: refs.outlineColor,
16039
16488
  [vars$N.inputOutlineOffset]: refs.outlineOffset,
16040
16489
  [vars$N.inputBackgroundColor]: refs.backgroundColor,
16041
- [vars$N.labelRequiredIndicator]: refs.requiredIndicator,
16042
16490
  [vars$N.inputHorizontalPadding]: refs.horizontalPadding,
16043
16491
  [vars$N.inputHeight]: refs.inputHeight,
16044
16492
  [vars$N.labelPosition]: refs.labelPosition,
@@ -16053,197 +16501,153 @@ const numberField = {
16053
16501
  [vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
16054
16502
  };
16055
16503
 
16056
- var numberField$1 = /*#__PURE__*/Object.freeze({
16504
+ var emailField$1 = /*#__PURE__*/Object.freeze({
16057
16505
  __proto__: null,
16058
- default: numberField,
16506
+ default: emailField,
16059
16507
  vars: vars$N
16060
16508
  });
16061
16509
 
16062
- const vars$M = EmailFieldClass.cssVarList;
16510
+ const vars$M = TextAreaClass.cssVarList;
16063
16511
 
16064
- const emailField = {
16512
+ const textArea = {
16065
16513
  [vars$M.hostWidth]: refs.width,
16066
16514
  [vars$M.hostMinWidth]: refs.minWidth,
16067
16515
  [vars$M.hostDirection]: refs.direction,
16068
16516
  [vars$M.fontSize]: refs.fontSize,
16069
16517
  [vars$M.fontFamily]: refs.fontFamily,
16070
- [vars$M.labelFontSize]: refs.labelFontSize,
16071
- [vars$M.labelFontWeight]: refs.labelFontWeight,
16072
16518
  [vars$M.labelTextColor]: refs.labelTextColor,
16519
+ [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
16073
16520
  [vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
16521
+ [vars$M.inputBackgroundColor]: refs.backgroundColor,
16074
16522
  [vars$M.inputValueTextColor]: refs.valueTextColor,
16075
- [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
16076
- [vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
16523
+ [vars$M.inputPlaceholderTextColor]: refs.placeholderTextColor,
16524
+ [vars$M.inputBorderRadius]: refs.borderRadius,
16077
16525
  [vars$M.inputBorderWidth]: refs.borderWidth,
16078
16526
  [vars$M.inputBorderStyle]: refs.borderStyle,
16079
16527
  [vars$M.inputBorderColor]: refs.borderColor,
16080
- [vars$M.inputBorderRadius]: refs.borderRadius,
16081
16528
  [vars$M.inputOutlineWidth]: refs.outlineWidth,
16082
16529
  [vars$M.inputOutlineStyle]: refs.outlineStyle,
16083
16530
  [vars$M.inputOutlineColor]: refs.outlineColor,
16084
16531
  [vars$M.inputOutlineOffset]: refs.outlineOffset,
16085
- [vars$M.inputBackgroundColor]: refs.backgroundColor,
16086
- [vars$M.inputHorizontalPadding]: refs.horizontalPadding,
16087
- [vars$M.inputHeight]: refs.inputHeight,
16088
- [vars$M.labelPosition]: refs.labelPosition,
16089
- [vars$M.labelTopPosition]: refs.labelTopPosition,
16090
- [vars$M.labelHorizontalPosition]: refs.labelHorizontalPosition,
16091
- [vars$M.inputTransformY]: refs.inputTransformY,
16092
- [vars$M.inputTransition]: refs.inputTransition,
16093
- [vars$M.marginInlineStart]: refs.marginInlineStart,
16094
- [vars$M.placeholderOpacity]: refs.placeholderOpacity,
16095
- [vars$M.inputVerticalAlignment]: refs.inputVerticalAlignment,
16096
- [vars$M.valueInputHeight]: refs.valueInputHeight,
16097
- [vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
16532
+ [vars$M.inputResizeType]: 'vertical',
16533
+ [vars$M.inputMinHeight]: '5em',
16534
+ textAlign: {
16535
+ right: { [vars$M.inputTextAlign]: 'right' },
16536
+ left: { [vars$M.inputTextAlign]: 'left' },
16537
+ center: { [vars$M.inputTextAlign]: 'center' },
16538
+ },
16539
+
16540
+ _readonly: {
16541
+ [vars$M.inputResizeType]: 'none',
16542
+ },
16098
16543
  };
16099
16544
 
16100
- var emailField$1 = /*#__PURE__*/Object.freeze({
16545
+ var textArea$1 = /*#__PURE__*/Object.freeze({
16101
16546
  __proto__: null,
16102
- default: emailField,
16547
+ default: textArea,
16103
16548
  vars: vars$M
16104
16549
  });
16105
16550
 
16106
- const vars$L = TextAreaClass.cssVarList;
16551
+ const vars$L = CheckboxClass.cssVarList;
16552
+ const checkboxSize = '1.35em';
16107
16553
 
16108
- const textArea = {
16554
+ const checkbox = {
16109
16555
  [vars$L.hostWidth]: refs.width,
16110
- [vars$L.hostMinWidth]: refs.minWidth,
16111
16556
  [vars$L.hostDirection]: refs.direction,
16112
16557
  [vars$L.fontSize]: refs.fontSize,
16113
16558
  [vars$L.fontFamily]: refs.fontFamily,
16114
16559
  [vars$L.labelTextColor]: refs.labelTextColor,
16115
16560
  [vars$L.labelRequiredIndicator]: refs.requiredIndicator,
16561
+ [vars$L.labelFontWeight]: '400',
16562
+ [vars$L.labelLineHeight]: checkboxSize,
16563
+ [vars$L.labelSpacing]: '1em',
16116
16564
  [vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
16117
- [vars$L.inputBackgroundColor]: refs.backgroundColor,
16118
- [vars$L.inputValueTextColor]: refs.valueTextColor,
16119
- [vars$L.inputPlaceholderTextColor]: refs.placeholderTextColor,
16565
+ [vars$L.inputOutlineWidth]: refs.outlineWidth,
16566
+ [vars$L.inputOutlineOffset]: refs.outlineOffset,
16567
+ [vars$L.inputOutlineColor]: refs.outlineColor,
16568
+ [vars$L.inputOutlineStyle]: refs.outlineStyle,
16120
16569
  [vars$L.inputBorderRadius]: refs.borderRadius,
16570
+ [vars$L.inputBorderColor]: refs.borderColor,
16121
16571
  [vars$L.inputBorderWidth]: refs.borderWidth,
16122
16572
  [vars$L.inputBorderStyle]: refs.borderStyle,
16123
- [vars$L.inputBorderColor]: refs.borderColor,
16124
- [vars$L.inputOutlineWidth]: refs.outlineWidth,
16125
- [vars$L.inputOutlineStyle]: refs.outlineStyle,
16126
- [vars$L.inputOutlineColor]: refs.outlineColor,
16127
- [vars$L.inputOutlineOffset]: refs.outlineOffset,
16128
- [vars$L.inputResizeType]: 'vertical',
16129
- [vars$L.inputMinHeight]: '5em',
16130
- textAlign: {
16131
- right: { [vars$L.inputTextAlign]: 'right' },
16132
- left: { [vars$L.inputTextAlign]: 'left' },
16133
- center: { [vars$L.inputTextAlign]: 'center' },
16134
- },
16135
-
16136
- _readonly: {
16137
- [vars$L.inputResizeType]: 'none',
16138
- },
16573
+ [vars$L.inputBackgroundColor]: refs.backgroundColor,
16574
+ [vars$L.inputSize]: checkboxSize,
16575
+ [vars$L.inputValueTextColor]: refs.valueTextColor,
16139
16576
  };
16140
16577
 
16141
- var textArea$1 = /*#__PURE__*/Object.freeze({
16578
+ var checkbox$1 = /*#__PURE__*/Object.freeze({
16142
16579
  __proto__: null,
16143
- default: textArea,
16580
+ default: checkbox,
16144
16581
  vars: vars$L
16145
16582
  });
16146
16583
 
16147
- const vars$K = CheckboxClass.cssVarList;
16148
- const checkboxSize = '1.35em';
16584
+ const knobMargin = '2px';
16585
+ const checkboxHeight = '1.25em';
16149
16586
 
16150
- const checkbox = {
16587
+ const globalRefs$u = getThemeRefs(globals);
16588
+ const vars$K = SwitchToggleClass.cssVarList;
16589
+
16590
+ const switchToggle = {
16151
16591
  [vars$K.hostWidth]: refs.width,
16152
16592
  [vars$K.hostDirection]: refs.direction,
16153
16593
  [vars$K.fontSize]: refs.fontSize,
16154
16594
  [vars$K.fontFamily]: refs.fontFamily,
16155
- [vars$K.labelTextColor]: refs.labelTextColor,
16156
- [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
16157
- [vars$K.labelFontWeight]: '400',
16158
- [vars$K.labelLineHeight]: checkboxSize,
16159
- [vars$K.labelSpacing]: '1em',
16160
- [vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
16595
+
16161
16596
  [vars$K.inputOutlineWidth]: refs.outlineWidth,
16162
16597
  [vars$K.inputOutlineOffset]: refs.outlineOffset,
16163
16598
  [vars$K.inputOutlineColor]: refs.outlineColor,
16164
16599
  [vars$K.inputOutlineStyle]: refs.outlineStyle,
16165
- [vars$K.inputBorderRadius]: refs.borderRadius,
16166
- [vars$K.inputBorderColor]: refs.borderColor,
16167
- [vars$K.inputBorderWidth]: refs.borderWidth,
16168
- [vars$K.inputBorderStyle]: refs.borderStyle,
16169
- [vars$K.inputBackgroundColor]: refs.backgroundColor,
16170
- [vars$K.inputSize]: checkboxSize,
16171
- [vars$K.inputValueTextColor]: refs.valueTextColor,
16172
- };
16173
16600
 
16174
- var checkbox$1 = /*#__PURE__*/Object.freeze({
16175
- __proto__: null,
16176
- default: checkbox,
16177
- vars: vars$K
16178
- });
16179
-
16180
- const knobMargin = '2px';
16181
- const checkboxHeight = '1.25em';
16182
-
16183
- const globalRefs$u = getThemeRefs(globals);
16184
- const vars$J = SwitchToggleClass.cssVarList;
16601
+ [vars$K.trackBorderStyle]: refs.borderStyle,
16602
+ [vars$K.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
16603
+ [vars$K.trackBorderColor]: refs.borderColor,
16604
+ [vars$K.trackBackgroundColor]: refs.backgroundColor,
16605
+ [vars$K.trackBorderRadius]: globalRefs$u.radius.md,
16606
+ [vars$K.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
16607
+ [vars$K.trackHeight]: checkboxHeight,
16608
+
16609
+ [vars$K.knobSize]: `calc(1em - ${knobMargin})`,
16610
+ [vars$K.knobRadius]: '50%',
16611
+ [vars$K.knobTopOffset]: '1px',
16612
+ [vars$K.knobLeftOffset]: knobMargin,
16613
+ [vars$K.knobColor]: refs.labelTextColor,
16614
+ [vars$K.knobTransitionDuration]: '0.3s',
16185
16615
 
16186
- const switchToggle = {
16187
- [vars$J.hostWidth]: refs.width,
16188
- [vars$J.hostDirection]: refs.direction,
16189
- [vars$J.fontSize]: refs.fontSize,
16190
- [vars$J.fontFamily]: refs.fontFamily,
16191
-
16192
- [vars$J.inputOutlineWidth]: refs.outlineWidth,
16193
- [vars$J.inputOutlineOffset]: refs.outlineOffset,
16194
- [vars$J.inputOutlineColor]: refs.outlineColor,
16195
- [vars$J.inputOutlineStyle]: refs.outlineStyle,
16196
-
16197
- [vars$J.trackBorderStyle]: refs.borderStyle,
16198
- [vars$J.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
16199
- [vars$J.trackBorderColor]: refs.borderColor,
16200
- [vars$J.trackBackgroundColor]: refs.backgroundColor,
16201
- [vars$J.trackBorderRadius]: globalRefs$u.radius.md,
16202
- [vars$J.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
16203
- [vars$J.trackHeight]: checkboxHeight,
16204
-
16205
- [vars$J.knobSize]: `calc(1em - ${knobMargin})`,
16206
- [vars$J.knobRadius]: '50%',
16207
- [vars$J.knobTopOffset]: '1px',
16208
- [vars$J.knobLeftOffset]: knobMargin,
16209
- [vars$J.knobColor]: refs.labelTextColor,
16210
- [vars$J.knobTransitionDuration]: '0.3s',
16211
-
16212
- [vars$J.labelTextColor]: refs.labelTextColor,
16213
- [vars$J.labelFontWeight]: '400',
16214
- [vars$J.labelLineHeight]: '1.35em',
16215
- [vars$J.labelSpacing]: '1em',
16216
- [vars$J.labelRequiredIndicator]: refs.requiredIndicator,
16217
- [vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
16616
+ [vars$K.labelTextColor]: refs.labelTextColor,
16617
+ [vars$K.labelFontWeight]: '400',
16618
+ [vars$K.labelLineHeight]: '1.35em',
16619
+ [vars$K.labelSpacing]: '1em',
16620
+ [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
16621
+ [vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
16218
16622
 
16219
16623
  _checked: {
16220
- [vars$J.trackBorderColor]: refs.borderColor,
16221
- [vars$J.knobLeftOffset]: `calc(100% - var(${vars$J.knobSize}) - ${knobMargin})`,
16222
- [vars$J.knobColor]: refs.valueTextColor,
16223
- [vars$J.knobTextColor]: refs.valueTextColor,
16624
+ [vars$K.trackBorderColor]: refs.borderColor,
16625
+ [vars$K.knobLeftOffset]: `calc(100% - var(${vars$K.knobSize}) - ${knobMargin})`,
16626
+ [vars$K.knobColor]: refs.valueTextColor,
16627
+ [vars$K.knobTextColor]: refs.valueTextColor,
16224
16628
  },
16225
16629
 
16226
16630
  _disabled: {
16227
- [vars$J.knobColor]: globalRefs$u.colors.surface.light,
16228
- [vars$J.trackBorderColor]: globalRefs$u.colors.surface.light,
16229
- [vars$J.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16230
- [vars$J.labelTextColor]: refs.labelTextColor,
16631
+ [vars$K.knobColor]: globalRefs$u.colors.surface.light,
16632
+ [vars$K.trackBorderColor]: globalRefs$u.colors.surface.light,
16633
+ [vars$K.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16634
+ [vars$K.labelTextColor]: refs.labelTextColor,
16231
16635
  _checked: {
16232
- [vars$J.knobColor]: globalRefs$u.colors.surface.light,
16233
- [vars$J.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16636
+ [vars$K.knobColor]: globalRefs$u.colors.surface.light,
16637
+ [vars$K.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16234
16638
  },
16235
16639
  },
16236
16640
 
16237
16641
  _invalid: {
16238
- [vars$J.trackBorderColor]: globalRefs$u.colors.error.main,
16239
- [vars$J.knobColor]: globalRefs$u.colors.error.main,
16642
+ [vars$K.trackBorderColor]: globalRefs$u.colors.error.main,
16643
+ [vars$K.knobColor]: globalRefs$u.colors.error.main,
16240
16644
  },
16241
16645
  };
16242
16646
 
16243
16647
  var switchToggle$1 = /*#__PURE__*/Object.freeze({
16244
16648
  __proto__: null,
16245
16649
  default: switchToggle,
16246
- vars: vars$J
16650
+ vars: vars$K
16247
16651
  });
16248
16652
 
16249
16653
  const globalRefs$t = getThemeRefs(globals);
@@ -16268,7 +16672,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
16268
16672
  horizontalAlignment,
16269
16673
  shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
16270
16674
  },
16271
- componentName$Z
16675
+ componentName$_
16272
16676
  );
16273
16677
 
16274
16678
  const { shadowColor: shadowColor$3 } = helperRefs$3;
@@ -16363,7 +16767,7 @@ const container = {
16363
16767
  },
16364
16768
  };
16365
16769
 
16366
- const vars$I = {
16770
+ const vars$J = {
16367
16771
  ...compVars$5,
16368
16772
  ...helperVars$3,
16369
16773
  };
@@ -16371,168 +16775,168 @@ const vars$I = {
16371
16775
  var container$1 = /*#__PURE__*/Object.freeze({
16372
16776
  __proto__: null,
16373
16777
  default: container,
16374
- vars: vars$I
16778
+ vars: vars$J
16375
16779
  });
16376
16780
 
16377
- const vars$H = LogoClass.cssVarList;
16781
+ const vars$I = LogoClass.cssVarList;
16378
16782
 
16379
16783
  const logo$2 = {
16380
- [vars$H.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
16784
+ [vars$I.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
16381
16785
  };
16382
16786
 
16383
16787
  var logo$3 = /*#__PURE__*/Object.freeze({
16384
16788
  __proto__: null,
16385
16789
  default: logo$2,
16386
- vars: vars$H
16790
+ vars: vars$I
16387
16791
  });
16388
16792
 
16389
- const vars$G = TotpImageClass.cssVarList;
16793
+ const vars$H = TotpImageClass.cssVarList;
16390
16794
 
16391
16795
  const logo$1 = {
16392
- [vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
16796
+ [vars$H.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
16393
16797
  };
16394
16798
 
16395
16799
  var totpImage = /*#__PURE__*/Object.freeze({
16396
16800
  __proto__: null,
16397
16801
  default: logo$1,
16398
- vars: vars$G
16802
+ vars: vars$H
16399
16803
  });
16400
16804
 
16401
- const vars$F = NotpImageClass.cssVarList;
16805
+ const vars$G = NotpImageClass.cssVarList;
16402
16806
 
16403
16807
  const logo = {
16404
- [vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
16808
+ [vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
16405
16809
  };
16406
16810
 
16407
16811
  var notpImage = /*#__PURE__*/Object.freeze({
16408
16812
  __proto__: null,
16409
16813
  default: logo,
16410
- vars: vars$F
16814
+ vars: vars$G
16411
16815
  });
16412
16816
 
16413
16817
  const globalRefs$s = getThemeRefs(globals);
16414
- const vars$E = TextClass.cssVarList;
16818
+ const vars$F = TextClass.cssVarList;
16415
16819
 
16416
16820
  const text = {
16417
- [vars$E.hostDirection]: globalRefs$s.direction,
16418
- [vars$E.textLineHeight]: '1.35em',
16419
- [vars$E.textAlign]: 'left',
16420
- [vars$E.textColor]: globalRefs$s.colors.surface.dark,
16821
+ [vars$F.hostDirection]: globalRefs$s.direction,
16822
+ [vars$F.textLineHeight]: '1.35em',
16823
+ [vars$F.textAlign]: 'left',
16824
+ [vars$F.textColor]: globalRefs$s.colors.surface.dark,
16421
16825
 
16422
16826
  variant: {
16423
16827
  h1: {
16424
- [vars$E.fontSize]: globalRefs$s.typography.h1.size,
16425
- [vars$E.fontWeight]: globalRefs$s.typography.h1.weight,
16426
- [vars$E.fontFamily]: globalRefs$s.typography.h1.font,
16828
+ [vars$F.fontSize]: globalRefs$s.typography.h1.size,
16829
+ [vars$F.fontWeight]: globalRefs$s.typography.h1.weight,
16830
+ [vars$F.fontFamily]: globalRefs$s.typography.h1.font,
16427
16831
  },
16428
16832
  h2: {
16429
- [vars$E.fontSize]: globalRefs$s.typography.h2.size,
16430
- [vars$E.fontWeight]: globalRefs$s.typography.h2.weight,
16431
- [vars$E.fontFamily]: globalRefs$s.typography.h2.font,
16833
+ [vars$F.fontSize]: globalRefs$s.typography.h2.size,
16834
+ [vars$F.fontWeight]: globalRefs$s.typography.h2.weight,
16835
+ [vars$F.fontFamily]: globalRefs$s.typography.h2.font,
16432
16836
  },
16433
16837
  h3: {
16434
- [vars$E.fontSize]: globalRefs$s.typography.h3.size,
16435
- [vars$E.fontWeight]: globalRefs$s.typography.h3.weight,
16436
- [vars$E.fontFamily]: globalRefs$s.typography.h3.font,
16838
+ [vars$F.fontSize]: globalRefs$s.typography.h3.size,
16839
+ [vars$F.fontWeight]: globalRefs$s.typography.h3.weight,
16840
+ [vars$F.fontFamily]: globalRefs$s.typography.h3.font,
16437
16841
  },
16438
16842
  subtitle1: {
16439
- [vars$E.fontSize]: globalRefs$s.typography.subtitle1.size,
16440
- [vars$E.fontWeight]: globalRefs$s.typography.subtitle1.weight,
16441
- [vars$E.fontFamily]: globalRefs$s.typography.subtitle1.font,
16843
+ [vars$F.fontSize]: globalRefs$s.typography.subtitle1.size,
16844
+ [vars$F.fontWeight]: globalRefs$s.typography.subtitle1.weight,
16845
+ [vars$F.fontFamily]: globalRefs$s.typography.subtitle1.font,
16442
16846
  },
16443
16847
  subtitle2: {
16444
- [vars$E.fontSize]: globalRefs$s.typography.subtitle2.size,
16445
- [vars$E.fontWeight]: globalRefs$s.typography.subtitle2.weight,
16446
- [vars$E.fontFamily]: globalRefs$s.typography.subtitle2.font,
16848
+ [vars$F.fontSize]: globalRefs$s.typography.subtitle2.size,
16849
+ [vars$F.fontWeight]: globalRefs$s.typography.subtitle2.weight,
16850
+ [vars$F.fontFamily]: globalRefs$s.typography.subtitle2.font,
16447
16851
  },
16448
16852
  body1: {
16449
- [vars$E.fontSize]: globalRefs$s.typography.body1.size,
16450
- [vars$E.fontWeight]: globalRefs$s.typography.body1.weight,
16451
- [vars$E.fontFamily]: globalRefs$s.typography.body1.font,
16853
+ [vars$F.fontSize]: globalRefs$s.typography.body1.size,
16854
+ [vars$F.fontWeight]: globalRefs$s.typography.body1.weight,
16855
+ [vars$F.fontFamily]: globalRefs$s.typography.body1.font,
16452
16856
  },
16453
16857
  body2: {
16454
- [vars$E.fontSize]: globalRefs$s.typography.body2.size,
16455
- [vars$E.fontWeight]: globalRefs$s.typography.body2.weight,
16456
- [vars$E.fontFamily]: globalRefs$s.typography.body2.font,
16858
+ [vars$F.fontSize]: globalRefs$s.typography.body2.size,
16859
+ [vars$F.fontWeight]: globalRefs$s.typography.body2.weight,
16860
+ [vars$F.fontFamily]: globalRefs$s.typography.body2.font,
16457
16861
  },
16458
16862
  },
16459
16863
 
16460
16864
  mode: {
16461
16865
  primary: {
16462
- [vars$E.textColor]: globalRefs$s.colors.surface.contrast,
16866
+ [vars$F.textColor]: globalRefs$s.colors.surface.contrast,
16463
16867
  },
16464
16868
  secondary: {
16465
- [vars$E.textColor]: globalRefs$s.colors.surface.dark,
16869
+ [vars$F.textColor]: globalRefs$s.colors.surface.dark,
16466
16870
  },
16467
16871
  error: {
16468
- [vars$E.textColor]: globalRefs$s.colors.error.main,
16872
+ [vars$F.textColor]: globalRefs$s.colors.error.main,
16469
16873
  },
16470
16874
  success: {
16471
- [vars$E.textColor]: globalRefs$s.colors.success.main,
16875
+ [vars$F.textColor]: globalRefs$s.colors.success.main,
16472
16876
  },
16473
16877
  },
16474
16878
 
16475
16879
  textAlign: {
16476
- right: { [vars$E.textAlign]: 'right' },
16477
- left: { [vars$E.textAlign]: 'left' },
16478
- center: { [vars$E.textAlign]: 'center' },
16880
+ right: { [vars$F.textAlign]: 'right' },
16881
+ left: { [vars$F.textAlign]: 'left' },
16882
+ center: { [vars$F.textAlign]: 'center' },
16479
16883
  },
16480
16884
 
16481
16885
  _fullWidth: {
16482
- [vars$E.hostWidth]: '100%',
16886
+ [vars$F.hostWidth]: '100%',
16483
16887
  },
16484
16888
 
16485
16889
  _italic: {
16486
- [vars$E.fontStyle]: 'italic',
16890
+ [vars$F.fontStyle]: 'italic',
16487
16891
  },
16488
16892
 
16489
16893
  _uppercase: {
16490
- [vars$E.textTransform]: 'uppercase',
16894
+ [vars$F.textTransform]: 'uppercase',
16491
16895
  },
16492
16896
 
16493
16897
  _lowercase: {
16494
- [vars$E.textTransform]: 'lowercase',
16898
+ [vars$F.textTransform]: 'lowercase',
16495
16899
  },
16496
16900
  };
16497
16901
 
16498
16902
  var text$1 = /*#__PURE__*/Object.freeze({
16499
16903
  __proto__: null,
16500
16904
  default: text,
16501
- vars: vars$E
16905
+ vars: vars$F
16502
16906
  });
16503
16907
 
16504
16908
  const globalRefs$r = getThemeRefs(globals);
16505
- const vars$D = LinkClass.cssVarList;
16909
+ const vars$E = LinkClass.cssVarList;
16506
16910
 
16507
16911
  const link = {
16508
- [vars$D.hostDirection]: globalRefs$r.direction,
16509
- [vars$D.cursor]: 'pointer',
16912
+ [vars$E.hostDirection]: globalRefs$r.direction,
16913
+ [vars$E.cursor]: 'pointer',
16510
16914
 
16511
- [vars$D.textColor]: globalRefs$r.colors.primary.main,
16915
+ [vars$E.textColor]: globalRefs$r.colors.primary.main,
16512
16916
 
16513
16917
  textAlign: {
16514
- right: { [vars$D.textAlign]: 'right' },
16515
- left: { [vars$D.textAlign]: 'left' },
16516
- center: { [vars$D.textAlign]: 'center' },
16918
+ right: { [vars$E.textAlign]: 'right' },
16919
+ left: { [vars$E.textAlign]: 'left' },
16920
+ center: { [vars$E.textAlign]: 'center' },
16517
16921
  },
16518
16922
 
16519
16923
  _fullWidth: {
16520
- [vars$D.hostWidth]: '100%',
16924
+ [vars$E.hostWidth]: '100%',
16521
16925
  },
16522
16926
 
16523
16927
  _hover: {
16524
- [vars$D.textDecoration]: 'underline',
16928
+ [vars$E.textDecoration]: 'underline',
16525
16929
  },
16526
16930
 
16527
16931
  mode: {
16528
16932
  secondary: {
16529
- [vars$D.textColor]: globalRefs$r.colors.secondary.main,
16933
+ [vars$E.textColor]: globalRefs$r.colors.secondary.main,
16530
16934
  },
16531
16935
  error: {
16532
- [vars$D.textColor]: globalRefs$r.colors.error.main,
16936
+ [vars$E.textColor]: globalRefs$r.colors.error.main,
16533
16937
  },
16534
16938
  success: {
16535
- [vars$D.textColor]: globalRefs$r.colors.success.main,
16939
+ [vars$E.textColor]: globalRefs$r.colors.success.main,
16536
16940
  },
16537
16941
  },
16538
16942
  };
@@ -16540,37 +16944,37 @@ const link = {
16540
16944
  var link$1 = /*#__PURE__*/Object.freeze({
16541
16945
  __proto__: null,
16542
16946
  default: link,
16543
- vars: vars$D
16947
+ vars: vars$E
16544
16948
  });
16545
16949
 
16546
16950
  const globalRefs$q = getThemeRefs(globals);
16547
- const vars$C = EnrichedTextClass.cssVarList;
16951
+ const vars$D = EnrichedTextClass.cssVarList;
16548
16952
 
16549
16953
  const enrichedText = {
16550
- [vars$C.hostDirection]: globalRefs$q.direction,
16551
- [vars$C.hostWidth]: useVar(vars$E.hostWidth),
16954
+ [vars$D.hostDirection]: globalRefs$q.direction,
16955
+ [vars$D.hostWidth]: useVar(vars$F.hostWidth),
16552
16956
 
16553
- [vars$C.textLineHeight]: useVar(vars$E.textLineHeight),
16554
- [vars$C.textColor]: useVar(vars$E.textColor),
16555
- [vars$C.textAlign]: useVar(vars$E.textAlign),
16957
+ [vars$D.textLineHeight]: useVar(vars$F.textLineHeight),
16958
+ [vars$D.textColor]: useVar(vars$F.textColor),
16959
+ [vars$D.textAlign]: useVar(vars$F.textAlign),
16556
16960
 
16557
- [vars$C.fontSize]: useVar(vars$E.fontSize),
16558
- [vars$C.fontWeight]: useVar(vars$E.fontWeight),
16559
- [vars$C.fontFamily]: useVar(vars$E.fontFamily),
16961
+ [vars$D.fontSize]: useVar(vars$F.fontSize),
16962
+ [vars$D.fontWeight]: useVar(vars$F.fontWeight),
16963
+ [vars$D.fontFamily]: useVar(vars$F.fontFamily),
16560
16964
 
16561
- [vars$C.linkColor]: useVar(vars$D.textColor),
16562
- [vars$C.linkTextDecoration]: 'none',
16563
- [vars$C.linkHoverTextDecoration]: 'underline',
16965
+ [vars$D.linkColor]: useVar(vars$E.textColor),
16966
+ [vars$D.linkTextDecoration]: 'none',
16967
+ [vars$D.linkHoverTextDecoration]: 'underline',
16564
16968
 
16565
- [vars$C.fontWeightBold]: '900',
16566
- [vars$C.minWidth]: '0.25em',
16567
- [vars$C.minHeight]: '1.35em',
16969
+ [vars$D.fontWeightBold]: '900',
16970
+ [vars$D.minWidth]: '0.25em',
16971
+ [vars$D.minHeight]: '1.35em',
16568
16972
 
16569
- [vars$C.hostDisplay]: 'inline-block',
16973
+ [vars$D.hostDisplay]: 'inline-block',
16570
16974
 
16571
16975
  _empty: {
16572
16976
  _hideWhenEmpty: {
16573
- [vars$C.hostDisplay]: 'none',
16977
+ [vars$D.hostDisplay]: 'none',
16574
16978
  },
16575
16979
  },
16576
16980
  };
@@ -16578,7 +16982,7 @@ const enrichedText = {
16578
16982
  var enrichedText$1 = /*#__PURE__*/Object.freeze({
16579
16983
  __proto__: null,
16580
16984
  default: enrichedText,
16581
- vars: vars$C
16985
+ vars: vars$D
16582
16986
  });
16583
16987
 
16584
16988
  const globalRefs$p = getThemeRefs(globals);
@@ -16589,7 +16993,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
16589
16993
  thickness: '2px',
16590
16994
  spacing: '10px',
16591
16995
  },
16592
- componentName$T
16996
+ componentName$U
16593
16997
  );
16594
16998
 
16595
16999
  const divider = {
@@ -16620,7 +17024,7 @@ const divider = {
16620
17024
  },
16621
17025
  };
16622
17026
 
16623
- const vars$B = {
17027
+ const vars$C = {
16624
17028
  ...compVars$4,
16625
17029
  ...helperVars$2,
16626
17030
  };
@@ -16628,93 +17032,93 @@ const vars$B = {
16628
17032
  var divider$1 = /*#__PURE__*/Object.freeze({
16629
17033
  __proto__: null,
16630
17034
  default: divider,
16631
- vars: vars$B
17035
+ vars: vars$C
16632
17036
  });
16633
17037
 
16634
- const vars$A = PasscodeClass.cssVarList;
17038
+ const vars$B = PasscodeClass.cssVarList;
16635
17039
 
16636
17040
  const passcode = {
16637
- [vars$A.hostDirection]: refs.direction,
16638
- [vars$A.fontFamily]: refs.fontFamily,
16639
- [vars$A.fontSize]: refs.fontSize,
16640
- [vars$A.labelTextColor]: refs.labelTextColor,
16641
- [vars$A.labelRequiredIndicator]: refs.requiredIndicator,
16642
- [vars$A.errorMessageTextColor]: refs.errorMessageTextColor,
16643
- [vars$A.digitValueTextColor]: refs.valueTextColor,
16644
- [vars$A.digitPadding]: '0',
16645
- [vars$A.digitTextAlign]: 'center',
16646
- [vars$A.digitSpacing]: '4px',
16647
- [vars$A.hostWidth]: refs.width,
16648
- [vars$A.digitOutlineColor]: 'transparent',
16649
- [vars$A.digitOutlineWidth]: refs.outlineWidth,
16650
- [vars$A.focusedDigitFieldOutlineColor]: refs.outlineColor,
16651
- [vars$A.digitSize]: refs.inputHeight,
17041
+ [vars$B.hostDirection]: refs.direction,
17042
+ [vars$B.fontFamily]: refs.fontFamily,
17043
+ [vars$B.fontSize]: refs.fontSize,
17044
+ [vars$B.labelTextColor]: refs.labelTextColor,
17045
+ [vars$B.labelRequiredIndicator]: refs.requiredIndicator,
17046
+ [vars$B.errorMessageTextColor]: refs.errorMessageTextColor,
17047
+ [vars$B.digitValueTextColor]: refs.valueTextColor,
17048
+ [vars$B.digitPadding]: '0',
17049
+ [vars$B.digitTextAlign]: 'center',
17050
+ [vars$B.digitSpacing]: '4px',
17051
+ [vars$B.hostWidth]: refs.width,
17052
+ [vars$B.digitOutlineColor]: 'transparent',
17053
+ [vars$B.digitOutlineWidth]: refs.outlineWidth,
17054
+ [vars$B.focusedDigitFieldOutlineColor]: refs.outlineColor,
17055
+ [vars$B.digitSize]: refs.inputHeight,
16652
17056
 
16653
17057
  size: {
16654
- xs: { [vars$A.spinnerSize]: '15px' },
16655
- sm: { [vars$A.spinnerSize]: '20px' },
16656
- md: { [vars$A.spinnerSize]: '20px' },
16657
- lg: { [vars$A.spinnerSize]: '20px' },
17058
+ xs: { [vars$B.spinnerSize]: '15px' },
17059
+ sm: { [vars$B.spinnerSize]: '20px' },
17060
+ md: { [vars$B.spinnerSize]: '20px' },
17061
+ lg: { [vars$B.spinnerSize]: '20px' },
16658
17062
  },
16659
17063
 
16660
17064
  _hideCursor: {
16661
- [vars$A.digitCaretTextColor]: 'transparent',
17065
+ [vars$B.digitCaretTextColor]: 'transparent',
16662
17066
  },
16663
17067
 
16664
17068
  _loading: {
16665
- [vars$A.overlayOpacity]: refs.overlayOpacity,
17069
+ [vars$B.overlayOpacity]: refs.overlayOpacity,
16666
17070
  },
16667
17071
  };
16668
17072
 
16669
17073
  var passcode$1 = /*#__PURE__*/Object.freeze({
16670
17074
  __proto__: null,
16671
17075
  default: passcode,
16672
- vars: vars$A
17076
+ vars: vars$B
16673
17077
  });
16674
17078
 
16675
17079
  const globalRefs$o = getThemeRefs(globals);
16676
- const vars$z = LoaderLinearClass.cssVarList;
17080
+ const vars$A = LoaderLinearClass.cssVarList;
16677
17081
 
16678
17082
  const loaderLinear = {
16679
- [vars$z.hostDisplay]: 'inline-block',
16680
- [vars$z.hostWidth]: '100%',
17083
+ [vars$A.hostDisplay]: 'inline-block',
17084
+ [vars$A.hostWidth]: '100%',
16681
17085
 
16682
- [vars$z.barColor]: globalRefs$o.colors.surface.contrast,
16683
- [vars$z.barWidth]: '20%',
17086
+ [vars$A.barColor]: globalRefs$o.colors.surface.contrast,
17087
+ [vars$A.barWidth]: '20%',
16684
17088
 
16685
- [vars$z.barBackgroundColor]: globalRefs$o.colors.surface.light,
16686
- [vars$z.barBorderRadius]: '4px',
17089
+ [vars$A.barBackgroundColor]: globalRefs$o.colors.surface.light,
17090
+ [vars$A.barBorderRadius]: '4px',
16687
17091
 
16688
- [vars$z.animationDuration]: '2s',
16689
- [vars$z.animationTimingFunction]: 'linear',
16690
- [vars$z.animationIterationCount]: 'infinite',
16691
- [vars$z.verticalPadding]: '0.25em',
17092
+ [vars$A.animationDuration]: '2s',
17093
+ [vars$A.animationTimingFunction]: 'linear',
17094
+ [vars$A.animationIterationCount]: 'infinite',
17095
+ [vars$A.verticalPadding]: '0.25em',
16692
17096
 
16693
17097
  size: {
16694
- xs: { [vars$z.barHeight]: '2px' },
16695
- sm: { [vars$z.barHeight]: '4px' },
16696
- md: { [vars$z.barHeight]: '6px' },
16697
- lg: { [vars$z.barHeight]: '8px' },
17098
+ xs: { [vars$A.barHeight]: '2px' },
17099
+ sm: { [vars$A.barHeight]: '4px' },
17100
+ md: { [vars$A.barHeight]: '6px' },
17101
+ lg: { [vars$A.barHeight]: '8px' },
16698
17102
  },
16699
17103
 
16700
17104
  mode: {
16701
17105
  primary: {
16702
- [vars$z.barColor]: globalRefs$o.colors.primary.main,
17106
+ [vars$A.barColor]: globalRefs$o.colors.primary.main,
16703
17107
  },
16704
17108
  secondary: {
16705
- [vars$z.barColor]: globalRefs$o.colors.secondary.main,
17109
+ [vars$A.barColor]: globalRefs$o.colors.secondary.main,
16706
17110
  },
16707
17111
  },
16708
17112
 
16709
17113
  _hidden: {
16710
- [vars$z.hostDisplay]: 'none',
17114
+ [vars$A.hostDisplay]: 'none',
16711
17115
  },
16712
17116
  };
16713
17117
 
16714
17118
  var loaderLinear$1 = /*#__PURE__*/Object.freeze({
16715
17119
  __proto__: null,
16716
17120
  default: loaderLinear,
16717
- vars: vars$z
17121
+ vars: vars$A
16718
17122
  });
16719
17123
 
16720
17124
  const globalRefs$n = getThemeRefs(globals);
@@ -16732,7 +17136,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
16732
17136
  },
16733
17137
  },
16734
17138
  },
16735
- componentName$_
17139
+ componentName$$
16736
17140
  );
16737
17141
 
16738
17142
  const loaderRadial = {
@@ -16761,7 +17165,7 @@ const loaderRadial = {
16761
17165
  [compVars$3.hostDisplay]: 'none',
16762
17166
  },
16763
17167
  };
16764
- const vars$y = {
17168
+ const vars$z = {
16765
17169
  ...compVars$3,
16766
17170
  ...helperVars$1,
16767
17171
  };
@@ -16769,93 +17173,134 @@ const vars$y = {
16769
17173
  var loaderRadial$1 = /*#__PURE__*/Object.freeze({
16770
17174
  __proto__: null,
16771
17175
  default: loaderRadial,
16772
- vars: vars$y
17176
+ vars: vars$z
16773
17177
  });
16774
17178
 
16775
17179
  const globalRefs$m = getThemeRefs(globals);
16776
- const vars$x = ComboBoxClass.cssVarList;
17180
+ const vars$y = ComboBoxClass.cssVarList;
16777
17181
 
16778
17182
  const comboBox = {
16779
- [vars$x.hostWidth]: refs.width,
16780
- [vars$x.hostDirection]: refs.direction,
16781
- [vars$x.fontSize]: refs.fontSize,
16782
- [vars$x.fontFamily]: refs.fontFamily,
16783
- [vars$x.labelFontSize]: refs.labelFontSize,
16784
- [vars$x.labelFontWeight]: refs.labelFontWeight,
16785
- [vars$x.labelTextColor]: refs.labelTextColor,
16786
- [vars$x.errorMessageTextColor]: refs.errorMessageTextColor,
16787
- [vars$x.inputBorderColor]: refs.borderColor,
16788
- [vars$x.inputBorderWidth]: refs.borderWidth,
16789
- [vars$x.inputBorderStyle]: refs.borderStyle,
16790
- [vars$x.inputBorderRadius]: refs.borderRadius,
16791
- [vars$x.inputOutlineColor]: refs.outlineColor,
16792
- [vars$x.inputOutlineOffset]: refs.outlineOffset,
16793
- [vars$x.inputOutlineWidth]: refs.outlineWidth,
16794
- [vars$x.inputOutlineStyle]: refs.outlineStyle,
16795
- [vars$x.labelRequiredIndicator]: refs.requiredIndicator,
16796
- [vars$x.inputValueTextColor]: refs.valueTextColor,
16797
- [vars$x.inputPlaceholderTextColor]: refs.placeholderTextColor,
16798
- [vars$x.inputBackgroundColor]: refs.backgroundColor,
16799
- [vars$x.inputHorizontalPadding]: refs.horizontalPadding,
16800
- [vars$x.inputHeight]: refs.inputHeight,
16801
- [vars$x.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
16802
- [vars$x.inputDropdownButtonCursor]: 'pointer',
16803
- [vars$x.inputDropdownButtonSize]: refs.toggleButtonSize,
16804
- [vars$x.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
16805
- [vars$x.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
16806
- [vars$x.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
16807
- [vars$x.labelPosition]: refs.labelPosition,
16808
- [vars$x.labelTopPosition]: refs.labelTopPosition,
16809
- [vars$x.labelHorizontalPosition]: refs.labelHorizontalPosition,
16810
- [vars$x.inputTransformY]: refs.inputTransformY,
16811
- [vars$x.inputTransition]: refs.inputTransition,
16812
- [vars$x.marginInlineStart]: refs.marginInlineStart,
16813
- [vars$x.placeholderOpacity]: refs.placeholderOpacity,
16814
- [vars$x.inputVerticalAlignment]: refs.inputVerticalAlignment,
16815
- [vars$x.valueInputHeight]: refs.valueInputHeight,
16816
- [vars$x.valueInputMarginBottom]: refs.valueInputMarginBottom,
17183
+ [vars$y.hostWidth]: refs.width,
17184
+ [vars$y.hostDirection]: refs.direction,
17185
+ [vars$y.fontSize]: refs.fontSize,
17186
+ [vars$y.fontFamily]: refs.fontFamily,
17187
+ [vars$y.labelFontSize]: refs.labelFontSize,
17188
+ [vars$y.labelFontWeight]: refs.labelFontWeight,
17189
+ [vars$y.labelTextColor]: refs.labelTextColor,
17190
+ [vars$y.errorMessageTextColor]: refs.errorMessageTextColor,
17191
+ [vars$y.inputBorderColor]: refs.borderColor,
17192
+ [vars$y.inputBorderWidth]: refs.borderWidth,
17193
+ [vars$y.inputBorderStyle]: refs.borderStyle,
17194
+ [vars$y.inputBorderRadius]: refs.borderRadius,
17195
+ [vars$y.inputOutlineColor]: refs.outlineColor,
17196
+ [vars$y.inputOutlineOffset]: refs.outlineOffset,
17197
+ [vars$y.inputOutlineWidth]: refs.outlineWidth,
17198
+ [vars$y.inputOutlineStyle]: refs.outlineStyle,
17199
+ [vars$y.labelRequiredIndicator]: refs.requiredIndicator,
17200
+ [vars$y.inputValueTextColor]: refs.valueTextColor,
17201
+ [vars$y.inputPlaceholderTextColor]: refs.placeholderTextColor,
17202
+ [vars$y.inputBackgroundColor]: refs.backgroundColor,
17203
+ [vars$y.inputHorizontalPadding]: refs.horizontalPadding,
17204
+ [vars$y.inputHeight]: refs.inputHeight,
17205
+ [vars$y.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
17206
+ [vars$y.inputDropdownButtonCursor]: 'pointer',
17207
+ [vars$y.inputDropdownButtonSize]: refs.toggleButtonSize,
17208
+ [vars$y.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
17209
+ [vars$y.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
17210
+ [vars$y.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
17211
+ [vars$y.labelPosition]: refs.labelPosition,
17212
+ [vars$y.labelTopPosition]: refs.labelTopPosition,
17213
+ [vars$y.labelHorizontalPosition]: refs.labelHorizontalPosition,
17214
+ [vars$y.inputTransformY]: refs.inputTransformY,
17215
+ [vars$y.inputTransition]: refs.inputTransition,
17216
+ [vars$y.marginInlineStart]: refs.marginInlineStart,
17217
+ [vars$y.placeholderOpacity]: refs.placeholderOpacity,
17218
+ [vars$y.inputVerticalAlignment]: refs.inputVerticalAlignment,
17219
+ [vars$y.valueInputHeight]: refs.valueInputHeight,
17220
+ [vars$y.valueInputMarginBottom]: refs.valueInputMarginBottom,
16817
17221
 
16818
17222
  _readonly: {
16819
- [vars$x.inputDropdownButtonCursor]: 'default',
17223
+ [vars$y.inputDropdownButtonCursor]: 'default',
16820
17224
  },
16821
17225
 
16822
17226
  // Overlay theme exposed via the component:
16823
- [vars$x.overlayFontSize]: refs.fontSize,
16824
- [vars$x.overlayFontFamily]: refs.fontFamily,
16825
- [vars$x.overlayCursor]: 'pointer',
16826
- [vars$x.overlayItemBoxShadow]: 'none',
16827
- [vars$x.overlayBackground]: refs.backgroundColor,
16828
- [vars$x.overlayTextColor]: refs.valueTextColor,
17227
+ [vars$y.overlayFontSize]: refs.fontSize,
17228
+ [vars$y.overlayFontFamily]: refs.fontFamily,
17229
+ [vars$y.overlayCursor]: 'pointer',
17230
+ [vars$y.overlayItemBoxShadow]: 'none',
17231
+ [vars$y.overlayBackground]: refs.backgroundColor,
17232
+ [vars$y.overlayTextColor]: refs.valueTextColor,
16829
17233
 
16830
17234
  // Overlay direct theme:
16831
- [vars$x.overlay.minHeight]: '400px',
16832
- [vars$x.overlay.margin]: '0',
17235
+ [vars$y.overlay.minHeight]: '400px',
17236
+ [vars$y.overlay.margin]: '0',
16833
17237
  };
16834
17238
 
16835
17239
  var comboBox$1 = /*#__PURE__*/Object.freeze({
16836
17240
  __proto__: null,
16837
17241
  comboBox: comboBox,
16838
17242
  default: comboBox,
16839
- vars: vars$x
17243
+ vars: vars$y
16840
17244
  });
16841
17245
 
16842
- const vars$w = ImageClass.cssVarList;
17246
+ const vars$x = ImageClass.cssVarList;
16843
17247
 
16844
17248
  const image = {};
16845
17249
 
16846
17250
  var image$1 = /*#__PURE__*/Object.freeze({
16847
17251
  __proto__: null,
16848
17252
  default: image,
16849
- vars: vars$w
17253
+ vars: vars$x
16850
17254
  });
16851
17255
 
16852
- const vars$v = PhoneFieldClass.cssVarList;
17256
+ const vars$w = PhoneFieldClass.cssVarList;
16853
17257
 
16854
17258
  const phoneField = {
16855
- [vars$v.hostWidth]: refs.width,
17259
+ [vars$w.hostWidth]: refs.width,
17260
+ [vars$w.hostDirection]: refs.direction,
17261
+ [vars$w.fontSize]: refs.fontSize,
17262
+ [vars$w.fontFamily]: refs.fontFamily,
17263
+ [vars$w.labelTextColor]: refs.labelTextColor,
17264
+ [vars$w.labelRequiredIndicator]: refs.requiredIndicator,
17265
+ [vars$w.errorMessageTextColor]: refs.errorMessageTextColor,
17266
+ [vars$w.inputValueTextColor]: refs.valueTextColor,
17267
+ [vars$w.inputPlaceholderTextColor]: refs.placeholderTextColor,
17268
+ [vars$w.inputBorderStyle]: refs.borderStyle,
17269
+ [vars$w.inputBorderWidth]: refs.borderWidth,
17270
+ [vars$w.inputBorderColor]: refs.borderColor,
17271
+ [vars$w.inputBorderRadius]: refs.borderRadius,
17272
+ [vars$w.inputOutlineStyle]: refs.outlineStyle,
17273
+ [vars$w.inputOutlineWidth]: refs.outlineWidth,
17274
+ [vars$w.inputOutlineColor]: refs.outlineColor,
17275
+ [vars$w.inputOutlineOffset]: refs.outlineOffset,
17276
+ [vars$w.phoneInputWidth]: refs.minWidth,
17277
+ [vars$w.countryCodeInputWidth]: '5em',
17278
+ [vars$w.countryCodeDropdownWidth]: '20em',
17279
+ [vars$w.marginInlineStart]: '-0.25em',
17280
+ [vars$w.valueInputHeight]: refs.valueInputHeight,
17281
+ [vars$w.valueInputMarginBottom]: refs.valueInputMarginBottom,
17282
+
17283
+ // '@overlay': {
17284
+ // overlayItemBackgroundColor: 'red'
17285
+ // }
17286
+ };
17287
+
17288
+ var phoneField$1 = /*#__PURE__*/Object.freeze({
17289
+ __proto__: null,
17290
+ default: phoneField,
17291
+ vars: vars$w
17292
+ });
17293
+
17294
+ const vars$v = PhoneFieldInputBoxClass.cssVarList;
17295
+
17296
+ const phoneInputBoxField = {
17297
+ [vars$v.hostWidth]: '16em',
17298
+ [vars$v.hostMinWidth]: refs.minWidth,
16856
17299
  [vars$v.hostDirection]: refs.direction,
16857
17300
  [vars$v.fontSize]: refs.fontSize,
16858
17301
  [vars$v.fontFamily]: refs.fontFamily,
17302
+ [vars$v.labelFontSize]: refs.labelFontSize,
17303
+ [vars$v.labelFontWeight]: refs.labelFontWeight,
16859
17304
  [vars$v.labelTextColor]: refs.labelTextColor,
16860
17305
  [vars$v.labelRequiredIndicator]: refs.requiredIndicator,
16861
17306
  [vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -16869,28 +17314,32 @@ const phoneField = {
16869
17314
  [vars$v.inputOutlineWidth]: refs.outlineWidth,
16870
17315
  [vars$v.inputOutlineColor]: refs.outlineColor,
16871
17316
  [vars$v.inputOutlineOffset]: refs.outlineOffset,
16872
- [vars$v.phoneInputWidth]: refs.minWidth,
16873
- [vars$v.countryCodeInputWidth]: '5em',
16874
- [vars$v.countryCodeDropdownWidth]: '20em',
16875
- [vars$v.marginInlineStart]: '-0.25em',
17317
+ [vars$v.labelPosition]: refs.labelPosition,
17318
+ [vars$v.labelTopPosition]: refs.labelTopPosition,
17319
+ [vars$v.labelHorizontalPosition]: refs.labelHorizontalPosition,
17320
+ [vars$v.inputTransformY]: refs.inputTransformY,
17321
+ [vars$v.inputTransition]: refs.inputTransition,
17322
+ [vars$v.marginInlineStart]: refs.marginInlineStart,
16876
17323
  [vars$v.valueInputHeight]: refs.valueInputHeight,
16877
17324
  [vars$v.valueInputMarginBottom]: refs.valueInputMarginBottom,
17325
+ [vars$v.inputHorizontalPadding]: '0',
16878
17326
 
16879
- // '@overlay': {
16880
- // overlayItemBackgroundColor: 'red'
16881
- // }
17327
+ _fullWidth: {
17328
+ [vars$v.hostWidth]: refs.width,
17329
+ },
16882
17330
  };
16883
17331
 
16884
- var phoneField$1 = /*#__PURE__*/Object.freeze({
17332
+ var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16885
17333
  __proto__: null,
16886
- default: phoneField,
17334
+ default: phoneInputBoxField,
16887
17335
  vars: vars$v
16888
17336
  });
16889
17337
 
16890
- const vars$u = PhoneFieldInputBoxClass.cssVarList;
17338
+ const globalRefs$l = getThemeRefs(globals);
17339
+ const vars$u = NewPasswordClass.cssVarList;
16891
17340
 
16892
- const phoneInputBoxField = {
16893
- [vars$u.hostWidth]: '16em',
17341
+ const newPassword = {
17342
+ [vars$u.hostWidth]: refs.width,
16894
17343
  [vars$u.hostMinWidth]: refs.minWidth,
16895
17344
  [vars$u.hostDirection]: refs.direction,
16896
17345
  [vars$u.fontSize]: refs.fontSize,
@@ -16898,171 +17347,126 @@ const phoneInputBoxField = {
16898
17347
  [vars$u.labelFontSize]: refs.labelFontSize,
16899
17348
  [vars$u.labelFontWeight]: refs.labelFontWeight,
16900
17349
  [vars$u.labelTextColor]: refs.labelTextColor,
16901
- [vars$u.labelRequiredIndicator]: refs.requiredIndicator,
17350
+ [vars$u.spaceBetweenInputs]: '1em',
16902
17351
  [vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
16903
- [vars$u.inputValueTextColor]: refs.valueTextColor,
16904
- [vars$u.inputPlaceholderTextColor]: refs.placeholderTextColor,
16905
- [vars$u.inputBorderStyle]: refs.borderStyle,
16906
- [vars$u.inputBorderWidth]: refs.borderWidth,
16907
- [vars$u.inputBorderColor]: refs.borderColor,
16908
- [vars$u.inputBorderRadius]: refs.borderRadius,
16909
- [vars$u.inputOutlineStyle]: refs.outlineStyle,
16910
- [vars$u.inputOutlineWidth]: refs.outlineWidth,
16911
- [vars$u.inputOutlineColor]: refs.outlineColor,
16912
- [vars$u.inputOutlineOffset]: refs.outlineOffset,
16913
- [vars$u.labelPosition]: refs.labelPosition,
16914
- [vars$u.labelTopPosition]: refs.labelTopPosition,
16915
- [vars$u.labelHorizontalPosition]: refs.labelHorizontalPosition,
16916
- [vars$u.inputTransformY]: refs.inputTransformY,
16917
- [vars$u.inputTransition]: refs.inputTransition,
16918
- [vars$u.marginInlineStart]: refs.marginInlineStart,
17352
+ [vars$u.policyPreviewBackgroundColor]: 'none',
17353
+ [vars$u.policyPreviewPadding]: globalRefs$l.spacing.lg,
16919
17354
  [vars$u.valueInputHeight]: refs.valueInputHeight,
16920
- [vars$u.valueInputMarginBottom]: refs.valueInputMarginBottom,
16921
- [vars$u.inputHorizontalPadding]: '0',
16922
-
16923
- _fullWidth: {
16924
- [vars$u.hostWidth]: refs.width,
16925
- },
16926
- };
16927
-
16928
- var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16929
- __proto__: null,
16930
- default: phoneInputBoxField,
16931
- vars: vars$u
16932
- });
16933
-
16934
- const globalRefs$l = getThemeRefs(globals);
16935
- const vars$t = NewPasswordClass.cssVarList;
16936
-
16937
- const newPassword = {
16938
- [vars$t.hostWidth]: refs.width,
16939
- [vars$t.hostMinWidth]: refs.minWidth,
16940
- [vars$t.hostDirection]: refs.direction,
16941
- [vars$t.fontSize]: refs.fontSize,
16942
- [vars$t.fontFamily]: refs.fontFamily,
16943
- [vars$t.labelFontSize]: refs.labelFontSize,
16944
- [vars$t.labelFontWeight]: refs.labelFontWeight,
16945
- [vars$t.labelTextColor]: refs.labelTextColor,
16946
- [vars$t.spaceBetweenInputs]: '1em',
16947
- [vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
16948
- [vars$t.policyPreviewBackgroundColor]: 'none',
16949
- [vars$t.policyPreviewPadding]: globalRefs$l.spacing.lg,
16950
- [vars$t.valueInputHeight]: refs.valueInputHeight,
16951
17355
 
16952
17356
  _required: {
16953
17357
  // NewPassword doesn't pass `required` attribute to its Password components.
16954
17358
  // That's why we fake the required indicator on each input.
16955
17359
  // We do that by injecting `::after` element, and populating it with requiredIndicator content.
16956
- [vars$t.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
17360
+ [vars$u.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16957
17361
  },
16958
17362
  };
16959
17363
 
16960
17364
  var newPassword$1 = /*#__PURE__*/Object.freeze({
16961
17365
  __proto__: null,
16962
17366
  default: newPassword,
16963
- vars: vars$t
17367
+ vars: vars$u
16964
17368
  });
16965
17369
 
16966
- const vars$s = UploadFileClass.cssVarList;
17370
+ const vars$t = UploadFileClass.cssVarList;
16967
17371
 
16968
17372
  const uploadFile = {
16969
- [vars$s.hostDirection]: refs.direction,
16970
- [vars$s.labelTextColor]: refs.labelTextColor,
16971
- [vars$s.fontFamily]: refs.fontFamily,
17373
+ [vars$t.hostDirection]: refs.direction,
17374
+ [vars$t.labelTextColor]: refs.labelTextColor,
17375
+ [vars$t.fontFamily]: refs.fontFamily,
16972
17376
 
16973
- [vars$s.iconSize]: '2em',
17377
+ [vars$t.iconSize]: '2em',
16974
17378
 
16975
- [vars$s.hostPadding]: '0.75em',
16976
- [vars$s.gap]: '0.5em',
17379
+ [vars$t.hostPadding]: '0.75em',
17380
+ [vars$t.gap]: '0.5em',
16977
17381
 
16978
- [vars$s.fontSize]: '16px',
16979
- [vars$s.titleFontWeight]: '500',
16980
- [vars$s.lineHeight]: '1em',
17382
+ [vars$t.fontSize]: '16px',
17383
+ [vars$t.titleFontWeight]: '500',
17384
+ [vars$t.lineHeight]: '1em',
16981
17385
 
16982
- [vars$s.borderWidth]: refs.borderWidth,
16983
- [vars$s.borderColor]: refs.borderColor,
16984
- [vars$s.borderRadius]: refs.borderRadius,
16985
- [vars$s.borderStyle]: 'dashed',
17386
+ [vars$t.borderWidth]: refs.borderWidth,
17387
+ [vars$t.borderColor]: refs.borderColor,
17388
+ [vars$t.borderRadius]: refs.borderRadius,
17389
+ [vars$t.borderStyle]: 'dashed',
16986
17390
 
16987
17391
  _required: {
16988
- [vars$s.requiredIndicator]: refs.requiredIndicator,
17392
+ [vars$t.requiredIndicator]: refs.requiredIndicator,
16989
17393
  },
16990
17394
 
16991
17395
  size: {
16992
17396
  xs: {
16993
- [vars$s.hostHeight]: '196px',
16994
- [vars$s.hostWidth]: '200px',
16995
- [vars$s.titleFontSize]: '0.875em',
16996
- [vars$s.descriptionFontSize]: '0.875em',
16997
- [vars$s.lineHeight]: '1.25em',
17397
+ [vars$t.hostHeight]: '196px',
17398
+ [vars$t.hostWidth]: '200px',
17399
+ [vars$t.titleFontSize]: '0.875em',
17400
+ [vars$t.descriptionFontSize]: '0.875em',
17401
+ [vars$t.lineHeight]: '1.25em',
16998
17402
  },
16999
17403
  sm: {
17000
- [vars$s.hostHeight]: '216px',
17001
- [vars$s.hostWidth]: '230px',
17002
- [vars$s.titleFontSize]: '1em',
17003
- [vars$s.descriptionFontSize]: '0.875em',
17004
- [vars$s.lineHeight]: '1.25em',
17404
+ [vars$t.hostHeight]: '216px',
17405
+ [vars$t.hostWidth]: '230px',
17406
+ [vars$t.titleFontSize]: '1em',
17407
+ [vars$t.descriptionFontSize]: '0.875em',
17408
+ [vars$t.lineHeight]: '1.25em',
17005
17409
  },
17006
17410
  md: {
17007
- [vars$s.hostHeight]: '256px',
17008
- [vars$s.hostWidth]: '312px',
17009
- [vars$s.titleFontSize]: '1.125em',
17010
- [vars$s.descriptionFontSize]: '1em',
17011
- [vars$s.lineHeight]: '1.5em',
17411
+ [vars$t.hostHeight]: '256px',
17412
+ [vars$t.hostWidth]: '312px',
17413
+ [vars$t.titleFontSize]: '1.125em',
17414
+ [vars$t.descriptionFontSize]: '1em',
17415
+ [vars$t.lineHeight]: '1.5em',
17012
17416
  },
17013
17417
  lg: {
17014
- [vars$s.hostHeight]: '280px',
17015
- [vars$s.hostWidth]: '336px',
17016
- [vars$s.titleFontSize]: '1.125em',
17017
- [vars$s.descriptionFontSize]: '1.125em',
17018
- [vars$s.lineHeight]: '1.75em',
17418
+ [vars$t.hostHeight]: '280px',
17419
+ [vars$t.hostWidth]: '336px',
17420
+ [vars$t.titleFontSize]: '1.125em',
17421
+ [vars$t.descriptionFontSize]: '1.125em',
17422
+ [vars$t.lineHeight]: '1.75em',
17019
17423
  },
17020
17424
  },
17021
17425
 
17022
17426
  _fullWidth: {
17023
- [vars$s.hostWidth]: refs.width,
17427
+ [vars$t.hostWidth]: refs.width,
17024
17428
  },
17025
17429
  };
17026
17430
 
17027
17431
  var uploadFile$1 = /*#__PURE__*/Object.freeze({
17028
17432
  __proto__: null,
17029
17433
  default: uploadFile,
17030
- vars: vars$s
17434
+ vars: vars$t
17031
17435
  });
17032
17436
 
17033
17437
  const globalRefs$k = getThemeRefs(globals);
17034
17438
 
17035
- const vars$r = ButtonSelectionGroupItemClass.cssVarList;
17439
+ const vars$s = ButtonSelectionGroupItemClass.cssVarList;
17036
17440
 
17037
17441
  const buttonSelectionGroupItem = {
17038
- [vars$r.hostDirection]: 'inherit',
17039
- [vars$r.backgroundColor]: globalRefs$k.colors.surface.main,
17040
- [vars$r.labelTextColor]: globalRefs$k.colors.surface.contrast,
17041
- [vars$r.borderColor]: globalRefs$k.colors.surface.light,
17042
- [vars$r.borderStyle]: 'solid',
17043
- [vars$r.borderRadius]: globalRefs$k.radius.sm,
17044
- [vars$r.outlineColor]: 'transparent',
17045
- [vars$r.borderWidth]: globalRefs$k.border.xs,
17442
+ [vars$s.hostDirection]: 'inherit',
17443
+ [vars$s.backgroundColor]: globalRefs$k.colors.surface.main,
17444
+ [vars$s.labelTextColor]: globalRefs$k.colors.surface.contrast,
17445
+ [vars$s.borderColor]: globalRefs$k.colors.surface.light,
17446
+ [vars$s.borderStyle]: 'solid',
17447
+ [vars$s.borderRadius]: globalRefs$k.radius.sm,
17448
+ [vars$s.outlineColor]: 'transparent',
17449
+ [vars$s.borderWidth]: globalRefs$k.border.xs,
17046
17450
 
17047
17451
  _hover: {
17048
- [vars$r.backgroundColor]: globalRefs$k.colors.surface.highlight,
17452
+ [vars$s.backgroundColor]: globalRefs$k.colors.surface.highlight,
17049
17453
  },
17050
17454
 
17051
17455
  _focused: {
17052
- [vars$r.outlineColor]: globalRefs$k.colors.surface.light,
17456
+ [vars$s.outlineColor]: globalRefs$k.colors.surface.light,
17053
17457
  },
17054
17458
 
17055
17459
  _selected: {
17056
- [vars$r.borderColor]: globalRefs$k.colors.surface.contrast,
17057
- [vars$r.backgroundColor]: globalRefs$k.colors.surface.contrast,
17058
- [vars$r.labelTextColor]: globalRefs$k.colors.surface.main,
17460
+ [vars$s.borderColor]: globalRefs$k.colors.surface.contrast,
17461
+ [vars$s.backgroundColor]: globalRefs$k.colors.surface.contrast,
17462
+ [vars$s.labelTextColor]: globalRefs$k.colors.surface.main,
17059
17463
  },
17060
17464
  };
17061
17465
 
17062
17466
  var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
17063
17467
  __proto__: null,
17064
17468
  default: buttonSelectionGroupItem,
17065
- vars: vars$r
17469
+ vars: vars$s
17066
17470
  });
17067
17471
 
17068
17472
  const globalRefs$j = getThemeRefs(globals);
@@ -17077,28 +17481,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
17077
17481
  [vars.hostWidth]: refs.width,
17078
17482
  });
17079
17483
 
17080
- const vars$q = ButtonSelectionGroupClass.cssVarList;
17484
+ const vars$r = ButtonSelectionGroupClass.cssVarList;
17081
17485
 
17082
17486
  const buttonSelectionGroup = {
17083
- ...createBaseButtonSelectionGroupMappings(vars$q),
17487
+ ...createBaseButtonSelectionGroupMappings(vars$r),
17084
17488
  };
17085
17489
 
17086
17490
  var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
17087
17491
  __proto__: null,
17088
17492
  default: buttonSelectionGroup,
17089
- vars: vars$q
17493
+ vars: vars$r
17090
17494
  });
17091
17495
 
17092
- const vars$p = ButtonMultiSelectionGroupClass.cssVarList;
17496
+ const vars$q = ButtonMultiSelectionGroupClass.cssVarList;
17093
17497
 
17094
17498
  const buttonMultiSelectionGroup = {
17095
- ...createBaseButtonSelectionGroupMappings(vars$p),
17499
+ ...createBaseButtonSelectionGroupMappings(vars$q),
17096
17500
  };
17097
17501
 
17098
17502
  var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
17099
17503
  __proto__: null,
17100
17504
  default: buttonMultiSelectionGroup,
17101
- vars: vars$p
17505
+ vars: vars$q
17102
17506
  });
17103
17507
 
17104
17508
  const globalRefs$i = getThemeRefs(globals);
@@ -17111,58 +17515,58 @@ const modal = {
17111
17515
  [compVars$2.overlayWidth]: '540px',
17112
17516
  };
17113
17517
 
17114
- const vars$o = {
17518
+ const vars$p = {
17115
17519
  ...compVars$2,
17116
17520
  };
17117
17521
 
17118
17522
  var modal$1 = /*#__PURE__*/Object.freeze({
17119
17523
  __proto__: null,
17120
17524
  default: modal,
17121
- vars: vars$o
17525
+ vars: vars$p
17122
17526
  });
17123
17527
 
17124
17528
  const globalRefs$h = getThemeRefs(globals);
17125
- const vars$n = GridClass.cssVarList;
17529
+ const vars$o = GridClass.cssVarList;
17126
17530
 
17127
17531
  const grid = {
17128
- [vars$n.hostWidth]: '100%',
17129
- [vars$n.hostHeight]: '100%',
17130
- [vars$n.hostMinHeight]: '400px',
17131
- [vars$n.fontWeight]: '400',
17132
- [vars$n.backgroundColor]: globalRefs$h.colors.surface.main,
17133
-
17134
- [vars$n.fontSize]: refs.fontSize,
17135
- [vars$n.fontFamily]: refs.fontFamily,
17136
-
17137
- [vars$n.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
17138
- [vars$n.activeSortIndicator]: globalRefs$h.colors.surface.dark,
17139
- [vars$n.resizeHandleColor]: globalRefs$h.colors.surface.light,
17140
-
17141
- [vars$n.borderWidth]: refs.borderWidth,
17142
- [vars$n.borderStyle]: refs.borderStyle,
17143
- [vars$n.borderRadius]: refs.borderRadius,
17144
- [vars$n.borderColor]: 'transparent',
17145
-
17146
- [vars$n.headerRowTextColor]: globalRefs$h.colors.surface.dark,
17147
- [vars$n.separatorColor]: globalRefs$h.colors.surface.light,
17148
-
17149
- [vars$n.valueTextColor]: globalRefs$h.colors.surface.contrast,
17150
- [vars$n.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
17151
- [vars$n.hostDirection]: globalRefs$h.direction,
17152
-
17153
- [vars$n.toggleDetailsPanelButtonSize]: '1em',
17154
- [vars$n.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
17155
- [vars$n.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
17156
- [vars$n.toggleDetailsPanelButtonCursor]: 'pointer',
17157
- [vars$n.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
17158
- [vars$n.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
17159
- [vars$n.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
17160
- [vars$n.detailsPanelLabelsFontSize]: '0.8em',
17161
- [vars$n.detailsPanelItemsGap]: '2em',
17162
- [vars$n.detailsPanelPadding]: '12px 0',
17532
+ [vars$o.hostWidth]: '100%',
17533
+ [vars$o.hostHeight]: '100%',
17534
+ [vars$o.hostMinHeight]: '400px',
17535
+ [vars$o.fontWeight]: '400',
17536
+ [vars$o.backgroundColor]: globalRefs$h.colors.surface.main,
17537
+
17538
+ [vars$o.fontSize]: refs.fontSize,
17539
+ [vars$o.fontFamily]: refs.fontFamily,
17540
+
17541
+ [vars$o.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
17542
+ [vars$o.activeSortIndicator]: globalRefs$h.colors.surface.dark,
17543
+ [vars$o.resizeHandleColor]: globalRefs$h.colors.surface.light,
17544
+
17545
+ [vars$o.borderWidth]: refs.borderWidth,
17546
+ [vars$o.borderStyle]: refs.borderStyle,
17547
+ [vars$o.borderRadius]: refs.borderRadius,
17548
+ [vars$o.borderColor]: 'transparent',
17549
+
17550
+ [vars$o.headerRowTextColor]: globalRefs$h.colors.surface.dark,
17551
+ [vars$o.separatorColor]: globalRefs$h.colors.surface.light,
17552
+
17553
+ [vars$o.valueTextColor]: globalRefs$h.colors.surface.contrast,
17554
+ [vars$o.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
17555
+ [vars$o.hostDirection]: globalRefs$h.direction,
17556
+
17557
+ [vars$o.toggleDetailsPanelButtonSize]: '1em',
17558
+ [vars$o.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
17559
+ [vars$o.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
17560
+ [vars$o.toggleDetailsPanelButtonCursor]: 'pointer',
17561
+ [vars$o.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
17562
+ [vars$o.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
17563
+ [vars$o.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
17564
+ [vars$o.detailsPanelLabelsFontSize]: '0.8em',
17565
+ [vars$o.detailsPanelItemsGap]: '2em',
17566
+ [vars$o.detailsPanelPadding]: '12px 0',
17163
17567
 
17164
17568
  _bordered: {
17165
- [vars$n.borderColor]: refs.borderColor,
17569
+ [vars$o.borderColor]: refs.borderColor,
17166
17570
  },
17167
17571
  };
17168
17572
 
@@ -17170,53 +17574,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
17170
17574
  __proto__: null,
17171
17575
  default: grid,
17172
17576
  grid: grid,
17173
- vars: vars$n
17577
+ vars: vars$o
17174
17578
  });
17175
17579
 
17176
17580
  const globalRefs$g = getThemeRefs(globals);
17177
- const vars$m = NotificationCardClass.cssVarList;
17581
+ const vars$n = NotificationCardClass.cssVarList;
17178
17582
 
17179
17583
  const shadowColor$2 = '#00000020';
17180
17584
 
17181
17585
  const notification = {
17182
- [vars$m.hostMinWidth]: '415px',
17183
- [vars$m.fontFamily]: globalRefs$g.fonts.font1.family,
17184
- [vars$m.fontSize]: globalRefs$g.typography.body1.size,
17185
- [vars$m.backgroundColor]: globalRefs$g.colors.surface.main,
17186
- [vars$m.textColor]: globalRefs$g.colors.surface.contrast,
17187
- [vars$m.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
17188
- [vars$m.verticalPadding]: '0.625em',
17189
- [vars$m.horizontalPadding]: '1.5em',
17190
- [vars$m.borderRadius]: globalRefs$g.radius.xs,
17586
+ [vars$n.hostMinWidth]: '415px',
17587
+ [vars$n.fontFamily]: globalRefs$g.fonts.font1.family,
17588
+ [vars$n.fontSize]: globalRefs$g.typography.body1.size,
17589
+ [vars$n.backgroundColor]: globalRefs$g.colors.surface.main,
17590
+ [vars$n.textColor]: globalRefs$g.colors.surface.contrast,
17591
+ [vars$n.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
17592
+ [vars$n.verticalPadding]: '0.625em',
17593
+ [vars$n.horizontalPadding]: '1.5em',
17594
+ [vars$n.borderRadius]: globalRefs$g.radius.xs,
17191
17595
 
17192
17596
  _bordered: {
17193
- [vars$m.borderWidth]: globalRefs$g.border.sm,
17194
- [vars$m.borderStyle]: 'solid',
17195
- [vars$m.borderColor]: 'transparent',
17597
+ [vars$n.borderWidth]: globalRefs$g.border.sm,
17598
+ [vars$n.borderStyle]: 'solid',
17599
+ [vars$n.borderColor]: 'transparent',
17196
17600
  },
17197
17601
 
17198
17602
  size: {
17199
- xs: { [vars$m.fontSize]: '12px' },
17200
- sm: { [vars$m.fontSize]: '14px' },
17201
- md: { [vars$m.fontSize]: '16px' },
17202
- lg: { [vars$m.fontSize]: '18px' },
17603
+ xs: { [vars$n.fontSize]: '12px' },
17604
+ sm: { [vars$n.fontSize]: '14px' },
17605
+ md: { [vars$n.fontSize]: '16px' },
17606
+ lg: { [vars$n.fontSize]: '18px' },
17203
17607
  },
17204
17608
 
17205
17609
  mode: {
17206
17610
  primary: {
17207
- [vars$m.backgroundColor]: globalRefs$g.colors.primary.main,
17208
- [vars$m.textColor]: globalRefs$g.colors.primary.contrast,
17209
- [vars$m.borderColor]: globalRefs$g.colors.primary.light,
17611
+ [vars$n.backgroundColor]: globalRefs$g.colors.primary.main,
17612
+ [vars$n.textColor]: globalRefs$g.colors.primary.contrast,
17613
+ [vars$n.borderColor]: globalRefs$g.colors.primary.light,
17210
17614
  },
17211
17615
  success: {
17212
- [vars$m.backgroundColor]: globalRefs$g.colors.success.main,
17213
- [vars$m.textColor]: globalRefs$g.colors.success.contrast,
17214
- [vars$m.borderColor]: globalRefs$g.colors.success.light,
17616
+ [vars$n.backgroundColor]: globalRefs$g.colors.success.main,
17617
+ [vars$n.textColor]: globalRefs$g.colors.success.contrast,
17618
+ [vars$n.borderColor]: globalRefs$g.colors.success.light,
17215
17619
  },
17216
17620
  error: {
17217
- [vars$m.backgroundColor]: globalRefs$g.colors.error.main,
17218
- [vars$m.textColor]: globalRefs$g.colors.error.contrast,
17219
- [vars$m.borderColor]: globalRefs$g.colors.error.light,
17621
+ [vars$n.backgroundColor]: globalRefs$g.colors.error.main,
17622
+ [vars$n.textColor]: globalRefs$g.colors.error.contrast,
17623
+ [vars$n.borderColor]: globalRefs$g.colors.error.light,
17220
17624
  },
17221
17625
  },
17222
17626
  };
@@ -17224,148 +17628,148 @@ const notification = {
17224
17628
  var notificationCard = /*#__PURE__*/Object.freeze({
17225
17629
  __proto__: null,
17226
17630
  default: notification,
17227
- vars: vars$m
17631
+ vars: vars$n
17228
17632
  });
17229
17633
 
17230
17634
  const globalRefs$f = getThemeRefs(globals);
17231
- const vars$l = MultiSelectComboBoxClass.cssVarList;
17635
+ const vars$m = MultiSelectComboBoxClass.cssVarList;
17232
17636
 
17233
17637
  const multiSelectComboBox = {
17234
- [vars$l.hostWidth]: refs.width,
17235
- [vars$l.hostDirection]: refs.direction,
17236
- [vars$l.fontSize]: refs.fontSize,
17237
- [vars$l.fontFamily]: refs.fontFamily,
17238
- [vars$l.labelFontSize]: refs.labelFontSize,
17239
- [vars$l.labelFontWeight]: refs.labelFontWeight,
17240
- [vars$l.labelTextColor]: refs.labelTextColor,
17241
- [vars$l.errorMessageTextColor]: refs.errorMessageTextColor,
17242
- [vars$l.inputBorderColor]: refs.borderColor,
17243
- [vars$l.inputBorderWidth]: refs.borderWidth,
17244
- [vars$l.inputBorderStyle]: refs.borderStyle,
17245
- [vars$l.inputBorderRadius]: refs.borderRadius,
17246
- [vars$l.inputOutlineColor]: refs.outlineColor,
17247
- [vars$l.inputOutlineOffset]: refs.outlineOffset,
17248
- [vars$l.inputOutlineWidth]: refs.outlineWidth,
17249
- [vars$l.inputOutlineStyle]: refs.outlineStyle,
17250
- [vars$l.labelRequiredIndicator]: refs.requiredIndicator,
17251
- [vars$l.inputValueTextColor]: refs.valueTextColor,
17252
- [vars$l.inputPlaceholderTextColor]: refs.placeholderTextColor,
17253
- [vars$l.inputBackgroundColor]: refs.backgroundColor,
17254
- [vars$l.inputHorizontalPadding]: refs.horizontalPadding,
17255
- [vars$l.inputVerticalPadding]: refs.verticalPadding,
17256
- [vars$l.inputHeight]: refs.inputHeight,
17257
- [vars$l.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
17258
- [vars$l.inputDropdownButtonCursor]: 'pointer',
17259
- [vars$l.inputDropdownButtonSize]: refs.toggleButtonSize,
17260
- [vars$l.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
17261
- [vars$l.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
17262
- [vars$l.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
17263
- [vars$l.chipFontSize]: refs.chipFontSize,
17264
- [vars$l.chipTextColor]: globalRefs$f.colors.surface.contrast,
17265
- [vars$l.chipBackgroundColor]: globalRefs$f.colors.surface.light,
17266
- [vars$l.labelPosition]: refs.labelPosition,
17267
- [vars$l.labelTopPosition]: refs.labelTopPosition,
17268
- [vars$l.labelLeftPosition]: refs.labelLeftPosition,
17269
- [vars$l.labelHorizontalPosition]: refs.labelHorizontalPosition,
17270
- [vars$l.inputTransformY]: refs.inputTransformY,
17271
- [vars$l.inputTransition]: refs.inputTransition,
17272
- [vars$l.marginInlineStart]: refs.marginInlineStart,
17273
- [vars$l.placeholderOpacity]: refs.placeholderOpacity,
17274
- [vars$l.inputVerticalAlignment]: refs.inputVerticalAlignment,
17638
+ [vars$m.hostWidth]: refs.width,
17639
+ [vars$m.hostDirection]: refs.direction,
17640
+ [vars$m.fontSize]: refs.fontSize,
17641
+ [vars$m.fontFamily]: refs.fontFamily,
17642
+ [vars$m.labelFontSize]: refs.labelFontSize,
17643
+ [vars$m.labelFontWeight]: refs.labelFontWeight,
17644
+ [vars$m.labelTextColor]: refs.labelTextColor,
17645
+ [vars$m.errorMessageTextColor]: refs.errorMessageTextColor,
17646
+ [vars$m.inputBorderColor]: refs.borderColor,
17647
+ [vars$m.inputBorderWidth]: refs.borderWidth,
17648
+ [vars$m.inputBorderStyle]: refs.borderStyle,
17649
+ [vars$m.inputBorderRadius]: refs.borderRadius,
17650
+ [vars$m.inputOutlineColor]: refs.outlineColor,
17651
+ [vars$m.inputOutlineOffset]: refs.outlineOffset,
17652
+ [vars$m.inputOutlineWidth]: refs.outlineWidth,
17653
+ [vars$m.inputOutlineStyle]: refs.outlineStyle,
17654
+ [vars$m.labelRequiredIndicator]: refs.requiredIndicator,
17655
+ [vars$m.inputValueTextColor]: refs.valueTextColor,
17656
+ [vars$m.inputPlaceholderTextColor]: refs.placeholderTextColor,
17657
+ [vars$m.inputBackgroundColor]: refs.backgroundColor,
17658
+ [vars$m.inputHorizontalPadding]: refs.horizontalPadding,
17659
+ [vars$m.inputVerticalPadding]: refs.verticalPadding,
17660
+ [vars$m.inputHeight]: refs.inputHeight,
17661
+ [vars$m.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
17662
+ [vars$m.inputDropdownButtonCursor]: 'pointer',
17663
+ [vars$m.inputDropdownButtonSize]: refs.toggleButtonSize,
17664
+ [vars$m.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
17665
+ [vars$m.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
17666
+ [vars$m.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
17667
+ [vars$m.chipFontSize]: refs.chipFontSize,
17668
+ [vars$m.chipTextColor]: globalRefs$f.colors.surface.contrast,
17669
+ [vars$m.chipBackgroundColor]: globalRefs$f.colors.surface.light,
17670
+ [vars$m.labelPosition]: refs.labelPosition,
17671
+ [vars$m.labelTopPosition]: refs.labelTopPosition,
17672
+ [vars$m.labelLeftPosition]: refs.labelLeftPosition,
17673
+ [vars$m.labelHorizontalPosition]: refs.labelHorizontalPosition,
17674
+ [vars$m.inputTransformY]: refs.inputTransformY,
17675
+ [vars$m.inputTransition]: refs.inputTransition,
17676
+ [vars$m.marginInlineStart]: refs.marginInlineStart,
17677
+ [vars$m.placeholderOpacity]: refs.placeholderOpacity,
17678
+ [vars$m.inputVerticalAlignment]: refs.inputVerticalAlignment,
17275
17679
 
17276
17680
  labelType: {
17277
17681
  floating: {
17278
- [vars$l.inputHorizontalPadding]: '0.25em',
17682
+ [vars$m.inputHorizontalPadding]: '0.25em',
17279
17683
  _hasValue: {
17280
- [vars$l.inputHorizontalPadding]: '0.45em',
17684
+ [vars$m.inputHorizontalPadding]: '0.45em',
17281
17685
  },
17282
17686
  },
17283
17687
  },
17284
17688
 
17285
17689
  _readonly: {
17286
- [vars$l.inputDropdownButtonCursor]: 'default',
17690
+ [vars$m.inputDropdownButtonCursor]: 'default',
17287
17691
  },
17288
17692
 
17289
17693
  // Overlay theme exposed via the component:
17290
- [vars$l.overlayFontSize]: refs.fontSize,
17291
- [vars$l.overlayFontFamily]: refs.fontFamily,
17292
- [vars$l.overlayCursor]: 'pointer',
17293
- [vars$l.overlayItemBoxShadow]: 'none',
17294
- [vars$l.overlayBackground]: refs.backgroundColor,
17295
- [vars$l.overlayTextColor]: refs.valueTextColor,
17694
+ [vars$m.overlayFontSize]: refs.fontSize,
17695
+ [vars$m.overlayFontFamily]: refs.fontFamily,
17696
+ [vars$m.overlayCursor]: 'pointer',
17697
+ [vars$m.overlayItemBoxShadow]: 'none',
17698
+ [vars$m.overlayBackground]: refs.backgroundColor,
17699
+ [vars$m.overlayTextColor]: refs.valueTextColor,
17296
17700
 
17297
17701
  // Overlay direct theme:
17298
- [vars$l.overlay.minHeight]: '400px',
17299
- [vars$l.overlay.margin]: '0',
17702
+ [vars$m.overlay.minHeight]: '400px',
17703
+ [vars$m.overlay.margin]: '0',
17300
17704
  };
17301
17705
 
17302
17706
  var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
17303
17707
  __proto__: null,
17304
17708
  default: multiSelectComboBox,
17305
17709
  multiSelectComboBox: multiSelectComboBox,
17306
- vars: vars$l
17710
+ vars: vars$m
17307
17711
  });
17308
17712
 
17309
17713
  const globalRefs$e = getThemeRefs(globals);
17310
- const vars$k = BadgeClass.cssVarList;
17714
+ const vars$l = BadgeClass.cssVarList;
17311
17715
 
17312
17716
  const badge = {
17313
- [vars$k.hostWidth]: 'fit-content',
17314
- [vars$k.hostDirection]: globalRefs$e.direction,
17717
+ [vars$l.hostWidth]: 'fit-content',
17718
+ [vars$l.hostDirection]: globalRefs$e.direction,
17315
17719
 
17316
- [vars$k.textAlign]: 'center',
17720
+ [vars$l.textAlign]: 'center',
17317
17721
 
17318
- [vars$k.fontFamily]: globalRefs$e.fonts.font1.family,
17319
- [vars$k.fontWeight]: '400',
17722
+ [vars$l.fontFamily]: globalRefs$e.fonts.font1.family,
17723
+ [vars$l.fontWeight]: '400',
17320
17724
 
17321
- [vars$k.verticalPadding]: '0.25em',
17322
- [vars$k.horizontalPadding]: '0.5em',
17725
+ [vars$l.verticalPadding]: '0.25em',
17726
+ [vars$l.horizontalPadding]: '0.5em',
17323
17727
 
17324
- [vars$k.borderWidth]: globalRefs$e.border.xs,
17325
- [vars$k.borderRadius]: globalRefs$e.radius.xs,
17326
- [vars$k.borderColor]: 'transparent',
17327
- [vars$k.borderStyle]: 'solid',
17728
+ [vars$l.borderWidth]: globalRefs$e.border.xs,
17729
+ [vars$l.borderRadius]: globalRefs$e.radius.xs,
17730
+ [vars$l.borderColor]: 'transparent',
17731
+ [vars$l.borderStyle]: 'solid',
17328
17732
 
17329
17733
  _fullWidth: {
17330
- [vars$k.hostWidth]: '100%',
17734
+ [vars$l.hostWidth]: '100%',
17331
17735
  },
17332
17736
 
17333
17737
  size: {
17334
- xs: { [vars$k.fontSize]: '12px' },
17335
- sm: { [vars$k.fontSize]: '14px' },
17336
- md: { [vars$k.fontSize]: '16px' },
17337
- lg: { [vars$k.fontSize]: '18px' },
17738
+ xs: { [vars$l.fontSize]: '12px' },
17739
+ sm: { [vars$l.fontSize]: '14px' },
17740
+ md: { [vars$l.fontSize]: '16px' },
17741
+ lg: { [vars$l.fontSize]: '18px' },
17338
17742
  },
17339
17743
 
17340
17744
  mode: {
17341
17745
  default: {
17342
- [vars$k.textColor]: globalRefs$e.colors.surface.dark,
17746
+ [vars$l.textColor]: globalRefs$e.colors.surface.dark,
17343
17747
  _bordered: {
17344
- [vars$k.borderColor]: globalRefs$e.colors.surface.light,
17748
+ [vars$l.borderColor]: globalRefs$e.colors.surface.light,
17345
17749
  },
17346
17750
  },
17347
17751
  primary: {
17348
- [vars$k.textColor]: globalRefs$e.colors.primary.main,
17752
+ [vars$l.textColor]: globalRefs$e.colors.primary.main,
17349
17753
  _bordered: {
17350
- [vars$k.borderColor]: globalRefs$e.colors.primary.light,
17754
+ [vars$l.borderColor]: globalRefs$e.colors.primary.light,
17351
17755
  },
17352
17756
  },
17353
17757
  secondary: {
17354
- [vars$k.textColor]: globalRefs$e.colors.secondary.main,
17758
+ [vars$l.textColor]: globalRefs$e.colors.secondary.main,
17355
17759
  _bordered: {
17356
- [vars$k.borderColor]: globalRefs$e.colors.secondary.light,
17760
+ [vars$l.borderColor]: globalRefs$e.colors.secondary.light,
17357
17761
  },
17358
17762
  },
17359
17763
  error: {
17360
- [vars$k.textColor]: globalRefs$e.colors.error.main,
17764
+ [vars$l.textColor]: globalRefs$e.colors.error.main,
17361
17765
  _bordered: {
17362
- [vars$k.borderColor]: globalRefs$e.colors.error.light,
17766
+ [vars$l.borderColor]: globalRefs$e.colors.error.light,
17363
17767
  },
17364
17768
  },
17365
17769
  success: {
17366
- [vars$k.textColor]: globalRefs$e.colors.success.main,
17770
+ [vars$l.textColor]: globalRefs$e.colors.success.main,
17367
17771
  _bordered: {
17368
- [vars$k.borderColor]: globalRefs$e.colors.success.light,
17772
+ [vars$l.borderColor]: globalRefs$e.colors.success.light,
17369
17773
  },
17370
17774
  },
17371
17775
  },
@@ -17374,7 +17778,7 @@ const badge = {
17374
17778
  var badge$1 = /*#__PURE__*/Object.freeze({
17375
17779
  __proto__: null,
17376
17780
  default: badge,
17377
- vars: vars$k
17781
+ vars: vars$l
17378
17782
  });
17379
17783
 
17380
17784
  const globalRefs$d = getThemeRefs(globals);
@@ -17412,144 +17816,144 @@ const avatar = {
17412
17816
  },
17413
17817
  };
17414
17818
 
17415
- const vars$j = {
17819
+ const vars$k = {
17416
17820
  ...compVars$1,
17417
17821
  };
17418
17822
 
17419
17823
  var avatar$1 = /*#__PURE__*/Object.freeze({
17420
17824
  __proto__: null,
17421
17825
  default: avatar,
17422
- vars: vars$j
17826
+ vars: vars$k
17423
17827
  });
17424
17828
 
17425
17829
  const globalRefs$c = getThemeRefs(globals);
17426
17830
 
17427
- const vars$i = MappingsFieldClass.cssVarList;
17831
+ const vars$j = MappingsFieldClass.cssVarList;
17428
17832
 
17429
17833
  const mappingsField = {
17430
- [vars$i.hostWidth]: refs.width,
17431
- [vars$i.hostDirection]: refs.direction,
17432
- [vars$i.fontSize]: refs.fontSize,
17433
- [vars$i.fontFamily]: refs.fontFamily,
17434
- [vars$i.separatorFontSize]: '14px',
17435
- [vars$i.labelsFontSize]: '14px',
17436
- [vars$i.labelsLineHeight]: '1',
17437
- [vars$i.labelsMarginBottom]: '6px',
17438
- [vars$i.labelTextColor]: refs.labelTextColor,
17439
- [vars$i.itemMarginBottom]: '1em',
17834
+ [vars$j.hostWidth]: refs.width,
17835
+ [vars$j.hostDirection]: refs.direction,
17836
+ [vars$j.fontSize]: refs.fontSize,
17837
+ [vars$j.fontFamily]: refs.fontFamily,
17838
+ [vars$j.separatorFontSize]: '14px',
17839
+ [vars$j.labelsFontSize]: '14px',
17840
+ [vars$j.labelsLineHeight]: '1',
17841
+ [vars$j.labelsMarginBottom]: '6px',
17842
+ [vars$j.labelTextColor]: refs.labelTextColor,
17843
+ [vars$j.itemMarginBottom]: '1em',
17440
17844
  // To be positioned correctly, the min width has to match the text field min width
17441
- [vars$i.valueLabelMinWidth]: refs.minWidth,
17845
+ [vars$j.valueLabelMinWidth]: refs.minWidth,
17442
17846
  // To be positioned correctly, the min width has to match the combo box field min width
17443
- [vars$i.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
17444
- [vars$i.separatorWidth]: '70px',
17445
- [vars$i.removeButtonWidth]: '60px',
17847
+ [vars$j.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
17848
+ [vars$j.separatorWidth]: '70px',
17849
+ [vars$j.removeButtonWidth]: '60px',
17446
17850
  };
17447
17851
 
17448
17852
  var mappingsField$1 = /*#__PURE__*/Object.freeze({
17449
17853
  __proto__: null,
17450
17854
  default: mappingsField,
17451
17855
  mappingsField: mappingsField,
17452
- vars: vars$i
17856
+ vars: vars$j
17453
17857
  });
17454
17858
 
17455
17859
  const globalRefs$b = getThemeRefs(globals);
17456
- const vars$h = UserAttributeClass.cssVarList;
17860
+ const vars$i = UserAttributeClass.cssVarList;
17457
17861
 
17458
17862
  const userAttribute = {
17459
- [vars$h.hostDirection]: globalRefs$b.direction,
17460
- [vars$h.labelTextWidth]: '150px',
17461
- [vars$h.valueTextWidth]: '200px',
17462
- [vars$h.badgeMaxWidth]: '85px',
17463
- [vars$h.itemsGap]: '16px',
17464
- [vars$h.hostMinWidth]: '530px',
17863
+ [vars$i.hostDirection]: globalRefs$b.direction,
17864
+ [vars$i.labelTextWidth]: '150px',
17865
+ [vars$i.valueTextWidth]: '200px',
17866
+ [vars$i.badgeMaxWidth]: '85px',
17867
+ [vars$i.itemsGap]: '16px',
17868
+ [vars$i.hostMinWidth]: '530px',
17465
17869
  _fullWidth: {
17466
- [vars$h.hostWidth]: '100%',
17870
+ [vars$i.hostWidth]: '100%',
17467
17871
  },
17468
17872
  };
17469
17873
 
17470
17874
  var userAttribute$1 = /*#__PURE__*/Object.freeze({
17471
17875
  __proto__: null,
17472
17876
  default: userAttribute,
17473
- vars: vars$h
17877
+ vars: vars$i
17474
17878
  });
17475
17879
 
17476
17880
  const globalRefs$a = getThemeRefs(globals);
17477
- const vars$g = UserAuthMethodClass.cssVarList;
17881
+ const vars$h = UserAuthMethodClass.cssVarList;
17478
17882
 
17479
17883
  const userAuthMethod = {
17480
- [vars$g.hostDirection]: globalRefs$a.direction,
17481
- [vars$g.labelTextWidth]: '200px',
17482
- [vars$g.itemsGap]: '16px',
17483
- [vars$g.hostMinWidth]: '530px',
17484
- [vars$g.iconSize]: '24px',
17485
- [vars$g.iconColor]: 'currentcolor',
17884
+ [vars$h.hostDirection]: globalRefs$a.direction,
17885
+ [vars$h.labelTextWidth]: '200px',
17886
+ [vars$h.itemsGap]: '16px',
17887
+ [vars$h.hostMinWidth]: '530px',
17888
+ [vars$h.iconSize]: '24px',
17889
+ [vars$h.iconColor]: 'currentcolor',
17486
17890
  _fullWidth: {
17487
- [vars$g.hostWidth]: '100%',
17891
+ [vars$h.hostWidth]: '100%',
17488
17892
  },
17489
17893
  };
17490
17894
 
17491
17895
  var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
17492
17896
  __proto__: null,
17493
17897
  default: userAuthMethod,
17494
- vars: vars$g
17898
+ vars: vars$h
17495
17899
  });
17496
17900
 
17497
- const vars$f = SamlGroupMappingsClass.cssVarList;
17901
+ const vars$g = SamlGroupMappingsClass.cssVarList;
17498
17902
 
17499
17903
  const samlGroupMappings = {
17500
- [vars$f.hostWidth]: refs.width,
17501
- [vars$f.hostDirection]: refs.direction,
17502
- [vars$f.groupNameInputMarginBottom]: '1em',
17904
+ [vars$g.hostWidth]: refs.width,
17905
+ [vars$g.hostDirection]: refs.direction,
17906
+ [vars$g.groupNameInputMarginBottom]: '1em',
17503
17907
  };
17504
17908
 
17505
17909
  var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
17506
17910
  __proto__: null,
17507
17911
  default: samlGroupMappings,
17508
17912
  samlGroupMappings: samlGroupMappings,
17509
- vars: vars$f
17913
+ vars: vars$g
17510
17914
  });
17511
17915
 
17512
17916
  const globalRefs$9 = getThemeRefs(globals);
17513
- const vars$e = PolicyValidationClass.cssVarList;
17917
+ const vars$f = PolicyValidationClass.cssVarList;
17514
17918
 
17515
17919
  const policyValidation = {
17516
- [vars$e.fontFamily]: refs.fontFamily,
17517
- [vars$e.fontSize]: refs.labelFontSize,
17518
- [vars$e.textColor]: refs.labelTextColor,
17519
- [vars$e.borderWidth]: refs.borderWidth,
17520
- [vars$e.borderStyle]: refs.borderStyle,
17521
- [vars$e.borderColor]: refs.borderColor,
17522
- [vars$e.borderRadius]: globalRefs$9.radius.sm,
17523
- [vars$e.backgroundColor]: 'none',
17524
- [vars$e.padding]: '0px',
17525
- [vars$e.labelMargin]: globalRefs$9.spacing.sm,
17526
- [vars$e.itemsSpacing]: globalRefs$9.spacing.lg,
17527
- [vars$e.itemSymbolDefault]: "'\\2022'", // "•"
17528
- [vars$e.itemSymbolSuccess]: "'\\2713'", // "✓"
17529
- [vars$e.itemSymbolError]: "'\\2A09'", // "⨉"
17530
- [vars$e.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
17531
- [vars$e.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
17920
+ [vars$f.fontFamily]: refs.fontFamily,
17921
+ [vars$f.fontSize]: refs.labelFontSize,
17922
+ [vars$f.textColor]: refs.labelTextColor,
17923
+ [vars$f.borderWidth]: refs.borderWidth,
17924
+ [vars$f.borderStyle]: refs.borderStyle,
17925
+ [vars$f.borderColor]: refs.borderColor,
17926
+ [vars$f.borderRadius]: globalRefs$9.radius.sm,
17927
+ [vars$f.backgroundColor]: 'none',
17928
+ [vars$f.padding]: '0px',
17929
+ [vars$f.labelMargin]: globalRefs$9.spacing.sm,
17930
+ [vars$f.itemsSpacing]: globalRefs$9.spacing.lg,
17931
+ [vars$f.itemSymbolDefault]: "'\\2022'", // "•"
17932
+ [vars$f.itemSymbolSuccess]: "'\\2713'", // "✓"
17933
+ [vars$f.itemSymbolError]: "'\\2A09'", // "⨉"
17934
+ [vars$f.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
17935
+ [vars$f.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
17532
17936
  };
17533
17937
 
17534
17938
  var policyValidation$1 = /*#__PURE__*/Object.freeze({
17535
17939
  __proto__: null,
17536
17940
  default: policyValidation,
17537
- vars: vars$e
17941
+ vars: vars$f
17538
17942
  });
17539
17943
 
17540
- const vars$d = IconClass.cssVarList;
17944
+ const vars$e = IconClass.cssVarList;
17541
17945
 
17542
17946
  const icon = {};
17543
17947
 
17544
17948
  var icon$1 = /*#__PURE__*/Object.freeze({
17545
17949
  __proto__: null,
17546
17950
  default: icon,
17547
- vars: vars$d
17951
+ vars: vars$e
17548
17952
  });
17549
17953
 
17550
17954
  const globalRefs$8 = getThemeRefs(globals);
17551
17955
 
17552
- const vars$c = CodeSnippetClass.cssVarList;
17956
+ const vars$d = CodeSnippetClass.cssVarList;
17553
17957
 
17554
17958
  const light = {
17555
17959
  color1: '#fa0',
@@ -17584,50 +17988,50 @@ const dark = {
17584
17988
  };
17585
17989
 
17586
17990
  const CodeSnippet = {
17587
- [vars$c.rootBgColor]: globalRefs$8.colors.surface.main,
17588
- [vars$c.rootTextColor]: globalRefs$8.colors.surface.contrast,
17589
- [vars$c.docTagTextColor]: light.color2,
17590
- [vars$c.keywordTextColor]: light.color2,
17591
- [vars$c.metaKeywordTextColor]: light.color2,
17592
- [vars$c.templateTagTextColor]: light.color2,
17593
- [vars$c.templateVariableTextColor]: light.color2,
17594
- [vars$c.typeTextColor]: light.color2,
17595
- [vars$c.variableLanguageTextColor]: light.color2,
17596
- [vars$c.titleTextColor]: light.color3,
17597
- [vars$c.titleClassTextColor]: light.color3,
17598
- [vars$c.titleClassInheritedTextColor]: light.color3,
17599
- [vars$c.titleFunctionTextColor]: light.color3,
17600
- [vars$c.attrTextColor]: light.color4,
17601
- [vars$c.attributeTextColor]: light.color4,
17602
- [vars$c.literalTextColor]: light.color4,
17603
- [vars$c.metaTextColor]: light.color4,
17604
- [vars$c.numberTextColor]: light.color4,
17605
- [vars$c.operatorTextColor]: light.color4,
17606
- [vars$c.variableTextColor]: light.color4,
17607
- [vars$c.selectorAttrTextColor]: light.color4,
17608
- [vars$c.selectorClassTextColor]: light.color4,
17609
- [vars$c.selectorIdTextColor]: light.color4,
17610
- [vars$c.regexpTextColor]: light.color13,
17611
- [vars$c.stringTextColor]: light.color13,
17612
- [vars$c.metaStringTextColor]: light.color13,
17613
- [vars$c.builtInTextColor]: light.color5,
17614
- [vars$c.symbolTextColor]: light.color5,
17615
- [vars$c.commentTextColor]: light.color6,
17616
- [vars$c.codeTextColor]: light.color6,
17617
- [vars$c.formulaTextColor]: light.color6,
17618
- [vars$c.nameTextColor]: light.color7,
17619
- [vars$c.quoteTextColor]: light.color7,
17620
- [vars$c.selectorTagTextColor]: light.color7,
17621
- [vars$c.selectorPseudoTextColor]: light.color7,
17622
- [vars$c.substTextColor]: light.color8,
17623
- [vars$c.sectionTextColor]: light.color4,
17624
- [vars$c.bulletTextColor]: light.color9,
17625
- [vars$c.emphasisTextColor]: light.color8,
17626
- [vars$c.strongTextColor]: light.color8,
17627
- [vars$c.additionTextColor]: light.color7,
17628
- [vars$c.additionBgColor]: light.color10,
17629
- [vars$c.deletionTextColor]: light.color2,
17630
- [vars$c.deletionBgColor]: light.color10,
17991
+ [vars$d.rootBgColor]: globalRefs$8.colors.surface.main,
17992
+ [vars$d.rootTextColor]: globalRefs$8.colors.surface.contrast,
17993
+ [vars$d.docTagTextColor]: light.color2,
17994
+ [vars$d.keywordTextColor]: light.color2,
17995
+ [vars$d.metaKeywordTextColor]: light.color2,
17996
+ [vars$d.templateTagTextColor]: light.color2,
17997
+ [vars$d.templateVariableTextColor]: light.color2,
17998
+ [vars$d.typeTextColor]: light.color2,
17999
+ [vars$d.variableLanguageTextColor]: light.color2,
18000
+ [vars$d.titleTextColor]: light.color3,
18001
+ [vars$d.titleClassTextColor]: light.color3,
18002
+ [vars$d.titleClassInheritedTextColor]: light.color3,
18003
+ [vars$d.titleFunctionTextColor]: light.color3,
18004
+ [vars$d.attrTextColor]: light.color4,
18005
+ [vars$d.attributeTextColor]: light.color4,
18006
+ [vars$d.literalTextColor]: light.color4,
18007
+ [vars$d.metaTextColor]: light.color4,
18008
+ [vars$d.numberTextColor]: light.color4,
18009
+ [vars$d.operatorTextColor]: light.color4,
18010
+ [vars$d.variableTextColor]: light.color4,
18011
+ [vars$d.selectorAttrTextColor]: light.color4,
18012
+ [vars$d.selectorClassTextColor]: light.color4,
18013
+ [vars$d.selectorIdTextColor]: light.color4,
18014
+ [vars$d.regexpTextColor]: light.color13,
18015
+ [vars$d.stringTextColor]: light.color13,
18016
+ [vars$d.metaStringTextColor]: light.color13,
18017
+ [vars$d.builtInTextColor]: light.color5,
18018
+ [vars$d.symbolTextColor]: light.color5,
18019
+ [vars$d.commentTextColor]: light.color6,
18020
+ [vars$d.codeTextColor]: light.color6,
18021
+ [vars$d.formulaTextColor]: light.color6,
18022
+ [vars$d.nameTextColor]: light.color7,
18023
+ [vars$d.quoteTextColor]: light.color7,
18024
+ [vars$d.selectorTagTextColor]: light.color7,
18025
+ [vars$d.selectorPseudoTextColor]: light.color7,
18026
+ [vars$d.substTextColor]: light.color8,
18027
+ [vars$d.sectionTextColor]: light.color4,
18028
+ [vars$d.bulletTextColor]: light.color9,
18029
+ [vars$d.emphasisTextColor]: light.color8,
18030
+ [vars$d.strongTextColor]: light.color8,
18031
+ [vars$d.additionTextColor]: light.color7,
18032
+ [vars$d.additionBgColor]: light.color10,
18033
+ [vars$d.deletionTextColor]: light.color2,
18034
+ [vars$d.deletionBgColor]: light.color10,
17631
18035
  /* purposely ignored */
17632
18036
  // [vars.charEscapeTextColor]: '',
17633
18037
  // [vars.linkTextColor]: '',
@@ -17639,50 +18043,50 @@ const CodeSnippet = {
17639
18043
 
17640
18044
  const codeSnippetDarkThemeOverrides = {
17641
18045
  codeSnippet: {
17642
- [vars$c.rootBgColor]: globalRefs$8.colors.surface.main,
17643
- [vars$c.rootTextColor]: globalRefs$8.colors.surface.contrast,
17644
- [vars$c.docTagTextColor]: dark.color2,
17645
- [vars$c.keywordTextColor]: dark.color2,
17646
- [vars$c.metaKeywordTextColor]: dark.color2,
17647
- [vars$c.templateTagTextColor]: dark.color2,
17648
- [vars$c.templateVariableTextColor]: dark.color2,
17649
- [vars$c.typeTextColor]: dark.color2,
17650
- [vars$c.variableLanguageTextColor]: dark.color2,
17651
- [vars$c.titleTextColor]: dark.color3,
17652
- [vars$c.titleClassTextColor]: dark.color3,
17653
- [vars$c.titleClassInheritedTextColor]: dark.color3,
17654
- [vars$c.titleFunctionTextColor]: dark.color3,
17655
- [vars$c.attrTextColor]: dark.color4,
17656
- [vars$c.attributeTextColor]: dark.color4,
17657
- [vars$c.literalTextColor]: dark.color4,
17658
- [vars$c.metaTextColor]: dark.color4,
17659
- [vars$c.numberTextColor]: dark.color4,
17660
- [vars$c.operatorTextColor]: dark.color4,
17661
- [vars$c.variableTextColor]: dark.color4,
17662
- [vars$c.selectorAttrTextColor]: dark.color4,
17663
- [vars$c.selectorClassTextColor]: dark.color4,
17664
- [vars$c.selectorIdTextColor]: dark.color4,
17665
- [vars$c.regexpTextColor]: dark.color13,
17666
- [vars$c.stringTextColor]: dark.color13,
17667
- [vars$c.metaStringTextColor]: dark.color13,
17668
- [vars$c.builtInTextColor]: dark.color5,
17669
- [vars$c.symbolTextColor]: dark.color5,
17670
- [vars$c.commentTextColor]: dark.color6,
17671
- [vars$c.codeTextColor]: dark.color6,
17672
- [vars$c.formulaTextColor]: dark.color6,
17673
- [vars$c.nameTextColor]: dark.color7,
17674
- [vars$c.quoteTextColor]: dark.color7,
17675
- [vars$c.selectorTagTextColor]: dark.color7,
17676
- [vars$c.selectorPseudoTextColor]: dark.color7,
17677
- [vars$c.substTextColor]: dark.color8,
17678
- [vars$c.sectionTextColor]: dark.color4,
17679
- [vars$c.bulletTextColor]: dark.color9,
17680
- [vars$c.emphasisTextColor]: dark.color8,
17681
- [vars$c.strongTextColor]: dark.color8,
17682
- [vars$c.additionTextColor]: dark.color7,
17683
- [vars$c.additionBgColor]: dark.color10,
17684
- [vars$c.deletionTextColor]: dark.color2,
17685
- [vars$c.deletionBgColor]: dark.color10,
18046
+ [vars$d.rootBgColor]: globalRefs$8.colors.surface.main,
18047
+ [vars$d.rootTextColor]: globalRefs$8.colors.surface.contrast,
18048
+ [vars$d.docTagTextColor]: dark.color2,
18049
+ [vars$d.keywordTextColor]: dark.color2,
18050
+ [vars$d.metaKeywordTextColor]: dark.color2,
18051
+ [vars$d.templateTagTextColor]: dark.color2,
18052
+ [vars$d.templateVariableTextColor]: dark.color2,
18053
+ [vars$d.typeTextColor]: dark.color2,
18054
+ [vars$d.variableLanguageTextColor]: dark.color2,
18055
+ [vars$d.titleTextColor]: dark.color3,
18056
+ [vars$d.titleClassTextColor]: dark.color3,
18057
+ [vars$d.titleClassInheritedTextColor]: dark.color3,
18058
+ [vars$d.titleFunctionTextColor]: dark.color3,
18059
+ [vars$d.attrTextColor]: dark.color4,
18060
+ [vars$d.attributeTextColor]: dark.color4,
18061
+ [vars$d.literalTextColor]: dark.color4,
18062
+ [vars$d.metaTextColor]: dark.color4,
18063
+ [vars$d.numberTextColor]: dark.color4,
18064
+ [vars$d.operatorTextColor]: dark.color4,
18065
+ [vars$d.variableTextColor]: dark.color4,
18066
+ [vars$d.selectorAttrTextColor]: dark.color4,
18067
+ [vars$d.selectorClassTextColor]: dark.color4,
18068
+ [vars$d.selectorIdTextColor]: dark.color4,
18069
+ [vars$d.regexpTextColor]: dark.color13,
18070
+ [vars$d.stringTextColor]: dark.color13,
18071
+ [vars$d.metaStringTextColor]: dark.color13,
18072
+ [vars$d.builtInTextColor]: dark.color5,
18073
+ [vars$d.symbolTextColor]: dark.color5,
18074
+ [vars$d.commentTextColor]: dark.color6,
18075
+ [vars$d.codeTextColor]: dark.color6,
18076
+ [vars$d.formulaTextColor]: dark.color6,
18077
+ [vars$d.nameTextColor]: dark.color7,
18078
+ [vars$d.quoteTextColor]: dark.color7,
18079
+ [vars$d.selectorTagTextColor]: dark.color7,
18080
+ [vars$d.selectorPseudoTextColor]: dark.color7,
18081
+ [vars$d.substTextColor]: dark.color8,
18082
+ [vars$d.sectionTextColor]: dark.color4,
18083
+ [vars$d.bulletTextColor]: dark.color9,
18084
+ [vars$d.emphasisTextColor]: dark.color8,
18085
+ [vars$d.strongTextColor]: dark.color8,
18086
+ [vars$d.additionTextColor]: dark.color7,
18087
+ [vars$d.additionBgColor]: dark.color10,
18088
+ [vars$d.deletionTextColor]: dark.color2,
18089
+ [vars$d.deletionBgColor]: dark.color10,
17686
18090
  },
17687
18091
  };
17688
18092
 
@@ -17690,36 +18094,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
17690
18094
  __proto__: null,
17691
18095
  codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
17692
18096
  default: CodeSnippet,
17693
- vars: vars$c
18097
+ vars: vars$d
17694
18098
  });
17695
18099
 
17696
- const vars$b = RadioGroupClass.cssVarList;
18100
+ const vars$c = RadioGroupClass.cssVarList;
17697
18101
  const globalRefs$7 = getThemeRefs(globals);
17698
18102
 
17699
18103
  const radioGroup = {
17700
- [vars$b.buttonsRowGap]: '9px',
17701
- [vars$b.hostWidth]: refs.width,
17702
- [vars$b.hostDirection]: refs.direction,
17703
- [vars$b.fontSize]: refs.fontSize,
17704
- [vars$b.fontFamily]: refs.fontFamily,
17705
- [vars$b.labelTextColor]: refs.labelTextColor,
17706
- [vars$b.labelRequiredIndicator]: refs.requiredIndicator,
17707
- [vars$b.errorMessageTextColor]: refs.errorMessageTextColor,
17708
- [vars$b.helperTextColor]: refs.helperTextColor,
17709
- [vars$b.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
18104
+ [vars$c.buttonsRowGap]: '9px',
18105
+ [vars$c.hostWidth]: refs.width,
18106
+ [vars$c.hostDirection]: refs.direction,
18107
+ [vars$c.fontSize]: refs.fontSize,
18108
+ [vars$c.fontFamily]: refs.fontFamily,
18109
+ [vars$c.labelTextColor]: refs.labelTextColor,
18110
+ [vars$c.labelRequiredIndicator]: refs.requiredIndicator,
18111
+ [vars$c.errorMessageTextColor]: refs.errorMessageTextColor,
18112
+ [vars$c.helperTextColor]: refs.helperTextColor,
18113
+ [vars$c.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
17710
18114
 
17711
18115
  textAlign: {
17712
- right: { [vars$b.inputTextAlign]: 'right' },
17713
- left: { [vars$b.inputTextAlign]: 'left' },
17714
- center: { [vars$b.inputTextAlign]: 'center' },
18116
+ right: { [vars$c.inputTextAlign]: 'right' },
18117
+ left: { [vars$c.inputTextAlign]: 'left' },
18118
+ center: { [vars$c.inputTextAlign]: 'center' },
17715
18119
  },
17716
18120
 
17717
18121
  _fullWidth: {
17718
- [vars$b.buttonsSpacing]: 'space-between',
18122
+ [vars$c.buttonsSpacing]: 'space-between',
17719
18123
  },
17720
18124
 
17721
18125
  _disabled: {
17722
- [vars$b.itemsLabelColor]: globalRefs$7.colors.surface.light,
18126
+ [vars$c.itemsLabelColor]: globalRefs$7.colors.surface.light,
17723
18127
  },
17724
18128
  };
17725
18129
 
@@ -17727,24 +18131,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
17727
18131
  __proto__: null,
17728
18132
  default: radioGroup,
17729
18133
  radioGroup: radioGroup,
17730
- vars: vars$b
18134
+ vars: vars$c
17731
18135
  });
17732
18136
 
17733
- const vars$a = RadioButtonClass.cssVarList;
18137
+ const vars$b = RadioButtonClass.cssVarList;
17734
18138
  const globalRefs$6 = getThemeRefs(globals);
17735
18139
 
17736
18140
  const radioButton = {
17737
- [vars$a.fontFamily]: refs.fontFamily,
17738
- [vars$a.radioSize]: 'calc(1em + 6px)',
17739
- [vars$a.radioMargin]: 'auto 4px',
17740
- [vars$a.radioCheckedSize]: `calc(var(${vars$a.radioSize})/5)`,
17741
- [vars$a.radioCheckedColor]: globalRefs$6.colors.surface.light,
17742
- [vars$a.radioBackgroundColor]: globalRefs$6.colors.surface.light,
17743
- [vars$a.radioBorderColor]: 'none',
17744
- [vars$a.radioBorderWidth]: 0,
18141
+ [vars$b.fontFamily]: refs.fontFamily,
18142
+ [vars$b.radioSize]: 'calc(1em + 6px)',
18143
+ [vars$b.radioMargin]: 'auto 4px',
18144
+ [vars$b.radioCheckedSize]: `calc(var(${vars$b.radioSize})/5)`,
18145
+ [vars$b.radioCheckedColor]: globalRefs$6.colors.surface.light,
18146
+ [vars$b.radioBackgroundColor]: globalRefs$6.colors.surface.light,
18147
+ [vars$b.radioBorderColor]: 'none',
18148
+ [vars$b.radioBorderWidth]: 0,
17745
18149
 
17746
18150
  _checked: {
17747
- [vars$a.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
18151
+ [vars$b.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
17748
18152
  },
17749
18153
 
17750
18154
  _hover: {
@@ -17753,16 +18157,16 @@ const radioButton = {
17753
18157
 
17754
18158
  size: {
17755
18159
  xs: {
17756
- [vars$a.fontSize]: '12px',
18160
+ [vars$b.fontSize]: '12px',
17757
18161
  },
17758
18162
  sm: {
17759
- [vars$a.fontSize]: '14px',
18163
+ [vars$b.fontSize]: '14px',
17760
18164
  },
17761
18165
  md: {
17762
- [vars$a.fontSize]: '16px',
18166
+ [vars$b.fontSize]: '16px',
17763
18167
  },
17764
18168
  lg: {
17765
- [vars$a.fontSize]: '18px',
18169
+ [vars$b.fontSize]: '18px',
17766
18170
  },
17767
18171
  },
17768
18172
  };
@@ -17771,128 +18175,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
17771
18175
  __proto__: null,
17772
18176
  default: radioButton,
17773
18177
  radioButton: radioButton,
17774
- vars: vars$a
18178
+ vars: vars$b
17775
18179
  });
17776
18180
 
17777
18181
  const globalRefs$5 = getThemeRefs(globals);
17778
18182
 
17779
- const vars$9 = CalendarClass.cssVarList;
18183
+ const vars$a = CalendarClass.cssVarList;
17780
18184
 
17781
18185
  const calendar = {
17782
- [vars$9.fontFamily]: refs.fontFamily,
17783
- [vars$9.fontSize]: refs.fontSize,
17784
- [vars$9.hostDirection]: refs.direction,
18186
+ [vars$a.fontFamily]: refs.fontFamily,
18187
+ [vars$a.fontSize]: refs.fontSize,
18188
+ [vars$a.hostDirection]: refs.direction,
17785
18189
 
17786
- [vars$9.calendarPadding]: '1em',
18190
+ [vars$a.calendarPadding]: '1em',
17787
18191
 
17788
- [vars$9.topNavVerticalPadding]: '1em',
17789
- [vars$9.topNavAlignment]: 'space-between',
17790
- [vars$9.topNavGap]: '0',
17791
- [vars$9.topNavSelectorsGap]: '0.5em',
18192
+ [vars$a.topNavVerticalPadding]: '1em',
18193
+ [vars$a.topNavAlignment]: 'space-between',
18194
+ [vars$a.topNavGap]: '0',
18195
+ [vars$a.topNavSelectorsGap]: '0.5em',
17792
18196
 
17793
- [vars$9.bottomNavVerticalPadding]: '0.75em',
17794
- [vars$9.bottomNavHorizontalPadding]: '1.5em',
17795
- [vars$9.bottomNavAlignment]: 'space-between',
17796
- [vars$9.bottomNavGap]: '0.5em',
18197
+ [vars$a.bottomNavVerticalPadding]: '0.75em',
18198
+ [vars$a.bottomNavHorizontalPadding]: '1.5em',
18199
+ [vars$a.bottomNavAlignment]: 'space-between',
18200
+ [vars$a.bottomNavGap]: '0.5em',
17797
18201
 
17798
- [vars$9.navMarginBottom]: '0.75em',
17799
- [vars$9.navBorderBottomWidth]: '1px',
17800
- [vars$9.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
17801
- [vars$9.navBorderBottomStyle]: 'solid',
18202
+ [vars$a.navMarginBottom]: '0.75em',
18203
+ [vars$a.navBorderBottomWidth]: '1px',
18204
+ [vars$a.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
18205
+ [vars$a.navBorderBottomStyle]: 'solid',
17802
18206
 
17803
- [vars$9.yearInputWidth]: '6em',
17804
- [vars$9.monthInputWidth]: '8em',
18207
+ [vars$a.yearInputWidth]: '6em',
18208
+ [vars$a.monthInputWidth]: '8em',
17805
18209
 
17806
- [vars$9.navButtonSize]: '24px',
17807
- [vars$9.navButtonCursor]: 'pointer',
18210
+ [vars$a.navButtonSize]: '24px',
18211
+ [vars$a.navButtonCursor]: 'pointer',
17808
18212
 
17809
- [vars$9.weekdayFontSize]: '0.875em',
17810
- [vars$9.weekdayFontWeight]: '500',
18213
+ [vars$a.weekdayFontSize]: '0.875em',
18214
+ [vars$a.weekdayFontWeight]: '500',
17811
18215
 
17812
18216
  // day table cell
17813
- [vars$9.dayHeight]: '3.125em',
18217
+ [vars$a.dayHeight]: '3.125em',
17814
18218
 
17815
18219
  // day value
17816
- [vars$9.daySize]: '2.125em',
17817
- [vars$9.dayFontSize]: '1em',
17818
- [vars$9.dayRadius]: '50%',
17819
- [vars$9.dayTextAlign]: 'center',
17820
- [vars$9.dayPadding]: '0',
17821
- [vars$9.dayTextColor]: globalRefs$5.colors.surface.contrast,
17822
- [vars$9.dayFontWeight]: '500',
17823
- [vars$9.dayBackgroundColor]: 'transparent',
17824
- [vars$9.dayCursor]: 'pointer',
17825
- [vars$9.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
18220
+ [vars$a.daySize]: '2.125em',
18221
+ [vars$a.dayFontSize]: '1em',
18222
+ [vars$a.dayRadius]: '50%',
18223
+ [vars$a.dayTextAlign]: 'center',
18224
+ [vars$a.dayPadding]: '0',
18225
+ [vars$a.dayTextColor]: globalRefs$5.colors.surface.contrast,
18226
+ [vars$a.dayFontWeight]: '500',
18227
+ [vars$a.dayBackgroundColor]: 'transparent',
18228
+ [vars$a.dayCursor]: 'pointer',
18229
+ [vars$a.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
17826
18230
 
17827
18231
  // selected day
17828
- [vars$9.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
17829
- [vars$9.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
18232
+ [vars$a.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
18233
+ [vars$a.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
17830
18234
 
17831
18235
  // disabled day (out of min/max range)
17832
- [vars$9.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
18236
+ [vars$a.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
17833
18237
 
17834
18238
  // today
17835
- [vars$9.currentDayBorderColor]: globalRefs$5.colors.surface.light,
17836
- [vars$9.currentDayBorderWidth]: '1px',
17837
- [vars$9.currentDayBorderStyle]: 'solid',
18239
+ [vars$a.currentDayBorderColor]: globalRefs$5.colors.surface.light,
18240
+ [vars$a.currentDayBorderWidth]: '1px',
18241
+ [vars$a.currentDayBorderStyle]: 'solid',
17838
18242
 
17839
18243
  size: {
17840
- xs: { [vars$9.fontSize]: '12px' },
17841
- sm: { [vars$9.fontSize]: '14px' },
17842
- md: { [vars$9.fontSize]: '16px' },
17843
- lg: { [vars$9.fontSize]: '18px' },
18244
+ xs: { [vars$a.fontSize]: '12px' },
18245
+ sm: { [vars$a.fontSize]: '14px' },
18246
+ md: { [vars$a.fontSize]: '16px' },
18247
+ lg: { [vars$a.fontSize]: '18px' },
17844
18248
  },
17845
18249
 
17846
- [vars$9.navButtonRotation]: 'rotate(180deg)',
18250
+ [vars$a.navButtonRotation]: 'rotate(180deg)',
17847
18251
 
17848
18252
  _disabled: {
17849
- [vars$9.navButtonOpacity]: '0.5',
17850
- [vars$9.dayBackgroundColorHover]: 'none',
17851
- [vars$9.navButtonCursor]: 'default',
17852
- [vars$9.dayCursor]: 'default',
18253
+ [vars$a.navButtonOpacity]: '0.5',
18254
+ [vars$a.dayBackgroundColorHover]: 'none',
18255
+ [vars$a.navButtonCursor]: 'default',
18256
+ [vars$a.dayCursor]: 'default',
17853
18257
  },
17854
18258
 
17855
18259
  _fullWidth: {
17856
- [vars$9.hostWidth]: '100%',
17857
- [vars$9.dayBlockAlign]: '0 auto',
18260
+ [vars$a.hostWidth]: '100%',
18261
+ [vars$a.dayBlockAlign]: '0 auto',
17858
18262
  },
17859
18263
  };
17860
18264
 
17861
18265
  var calendar$1 = /*#__PURE__*/Object.freeze({
17862
18266
  __proto__: null,
17863
18267
  default: calendar,
17864
- vars: vars$9
18268
+ vars: vars$a
17865
18269
  });
17866
18270
 
17867
18271
  const globalRefs$4 = getThemeRefs(globals);
17868
18272
  const shadowColor$1 = '#00000020';
17869
18273
  const { shadow } = globalRefs$4;
17870
18274
 
17871
- const vars$8 = DateFieldClass.cssVarList;
18275
+ const vars$9 = DateFieldClass.cssVarList;
17872
18276
 
17873
18277
  const dateField = {
17874
- [vars$8.hostWidth]: refs.width,
17875
- [vars$8.hostDirection]: refs.direction,
17876
- [vars$8.iconMargin]: '0.375em',
17877
-
17878
- [vars$8.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
17879
- [vars$8.overlay.backgroundColor]: refs.backgroundColor,
17880
- [vars$8.overlay.backdropBackgroundColor]: 'transparent',
17881
- [vars$8.overlay.backdropPointerEvents]: 'all',
17882
- [vars$8.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
17883
- [vars$8.overlay.outlineWidth]: '0',
17884
- [vars$8.overlay.outlineColor]: 'transparent',
17885
- [vars$8.overlay.outlineStyle]: 'none',
17886
- [vars$8.overlay.padding]: '0',
17887
-
17888
- [vars$8.rtlInputDirection]: 'ltr',
17889
- [vars$8.rtlInputAlignment]: 'right',
18278
+ [vars$9.hostWidth]: refs.width,
18279
+ [vars$9.hostDirection]: refs.direction,
18280
+ [vars$9.iconMargin]: '0.375em',
18281
+
18282
+ [vars$9.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
18283
+ [vars$9.overlay.backgroundColor]: refs.backgroundColor,
18284
+ [vars$9.overlay.backdropBackgroundColor]: 'transparent',
18285
+ [vars$9.overlay.backdropPointerEvents]: 'all',
18286
+ [vars$9.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
18287
+ [vars$9.overlay.outlineWidth]: '0',
18288
+ [vars$9.overlay.outlineColor]: 'transparent',
18289
+ [vars$9.overlay.outlineStyle]: 'none',
18290
+ [vars$9.overlay.padding]: '0',
18291
+
18292
+ [vars$9.rtlInputDirection]: 'ltr',
18293
+ [vars$9.rtlInputAlignment]: 'right',
17890
18294
  };
17891
18295
 
17892
18296
  var dateField$1 = /*#__PURE__*/Object.freeze({
17893
18297
  __proto__: null,
17894
18298
  default: dateField,
17895
- vars: vars$8
18299
+ vars: vars$9
17896
18300
  });
17897
18301
 
17898
18302
  const globalRefs$3 = getThemeRefs(globals);
@@ -17901,7 +18305,7 @@ const compVars = ListClass.cssVarList;
17901
18305
 
17902
18306
  const [helperTheme, helperRefs, helperVars] = createHelperVars(
17903
18307
  { shadowColor: '#00000020' },
17904
- componentName$6
18308
+ componentName$7
17905
18309
  );
17906
18310
 
17907
18311
  const { shadowColor } = helperRefs;
@@ -17941,7 +18345,7 @@ const list$1 = {
17941
18345
  },
17942
18346
  };
17943
18347
 
17944
- const vars$7 = {
18348
+ const vars$8 = {
17945
18349
  ...compVars,
17946
18350
  ...helperVars,
17947
18351
  };
@@ -17949,78 +18353,78 @@ const vars$7 = {
17949
18353
  var list$2 = /*#__PURE__*/Object.freeze({
17950
18354
  __proto__: null,
17951
18355
  default: list$1,
17952
- vars: vars$7
18356
+ vars: vars$8
17953
18357
  });
17954
18358
 
17955
18359
  const globalRefs$2 = getThemeRefs(globals);
17956
18360
 
17957
- const vars$6 = ListItemClass.cssVarList;
18361
+ const vars$7 = ListItemClass.cssVarList;
17958
18362
 
17959
18363
  const list = {
17960
- [vars$6.backgroundColor]: globalRefs$2.colors.surface.main,
17961
- [vars$6.padding]: globalRefs$2.spacing.lg,
17962
- [vars$6.gap]: globalRefs$2.spacing.md,
17963
- [vars$6.borderStyle]: 'solid',
17964
- [vars$6.borderWidth]: globalRefs$2.border.xs,
17965
- [vars$6.borderColor]: globalRefs$2.colors.surface.main,
17966
- [vars$6.borderRadius]: globalRefs$2.radius.sm,
17967
- [vars$6.cursor]: 'pointer',
17968
- [vars$6.alignItems]: 'center',
17969
- [vars$6.flexDirection]: 'row',
17970
- [vars$6.transition]: 'border-color 0.2s, background-color 0.2s',
18364
+ [vars$7.backgroundColor]: globalRefs$2.colors.surface.main,
18365
+ [vars$7.padding]: globalRefs$2.spacing.lg,
18366
+ [vars$7.gap]: globalRefs$2.spacing.md,
18367
+ [vars$7.borderStyle]: 'solid',
18368
+ [vars$7.borderWidth]: globalRefs$2.border.xs,
18369
+ [vars$7.borderColor]: globalRefs$2.colors.surface.main,
18370
+ [vars$7.borderRadius]: globalRefs$2.radius.sm,
18371
+ [vars$7.cursor]: 'pointer',
18372
+ [vars$7.alignItems]: 'center',
18373
+ [vars$7.flexDirection]: 'row',
18374
+ [vars$7.transition]: 'border-color 0.2s, background-color 0.2s',
17971
18375
 
17972
18376
  variant: {
17973
18377
  tile: {
17974
- [vars$6.alignItems]: 'flex-start',
17975
- [vars$6.flexDirection]: 'column',
17976
- [vars$6.borderColor]: globalRefs$2.colors.surface.light,
18378
+ [vars$7.alignItems]: 'flex-start',
18379
+ [vars$7.flexDirection]: 'column',
18380
+ [vars$7.borderColor]: globalRefs$2.colors.surface.light,
17977
18381
  },
17978
18382
  },
17979
18383
 
17980
18384
  _hover: {
17981
- [vars$6.backgroundColor]: globalRefs$2.colors.surface.highlight,
18385
+ [vars$7.backgroundColor]: globalRefs$2.colors.surface.highlight,
17982
18386
  },
17983
18387
 
17984
18388
  _active: {
17985
- [vars$6.backgroundColor]: globalRefs$2.colors.surface.main,
17986
- [vars$6.borderColor]: globalRefs$2.colors.primary.light,
17987
- [vars$6.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
18389
+ [vars$7.backgroundColor]: globalRefs$2.colors.surface.main,
18390
+ [vars$7.borderColor]: globalRefs$2.colors.primary.light,
18391
+ [vars$7.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
17988
18392
  },
17989
18393
  };
17990
18394
 
17991
18395
  var listItem = /*#__PURE__*/Object.freeze({
17992
18396
  __proto__: null,
17993
18397
  default: list,
17994
- vars: vars$6
18398
+ vars: vars$7
17995
18399
  });
17996
18400
 
17997
- const vars$5 = AppsListClass.cssVarList;
18401
+ const vars$6 = AppsListClass.cssVarList;
17998
18402
  const globalRefs$1 = getThemeRefs(globals);
17999
18403
 
18000
18404
  const defaultHeight = '400px';
18001
18405
 
18002
18406
  const appsList = {
18003
- [vars$5.itemsFontWeight]: 'normal',
18004
- [vars$5.itemsTextAlign]: 'start',
18005
- [vars$5.hostDirection]: globalRefs$1.direction,
18006
- [vars$5.maxHeight]: defaultHeight,
18407
+ [vars$6.itemsFontWeight]: 'normal',
18408
+ [vars$6.itemsTextAlign]: 'start',
18409
+ [vars$6.hostDirection]: globalRefs$1.direction,
18410
+ [vars$6.maxHeight]: defaultHeight,
18007
18411
 
18008
18412
  _empty: {
18009
- [vars$5.minHeight]: defaultHeight,
18413
+ [vars$6.minHeight]: defaultHeight,
18010
18414
  },
18011
18415
 
18012
18416
  size: {
18013
18417
  xs: {
18014
- [vars$5.itemsFontSize]: '14px',
18418
+ [vars$6.itemsFontSize]: '14px',
18015
18419
  },
18016
18420
  sm: {
18017
- [vars$5.itemsFontSize]: '14px',
18421
+ [vars$6.itemsFontSize]: '14px',
18018
18422
  },
18019
18423
  md: {
18020
- [vars$5.itemsFontSize]: '16px',
18424
+ [vars$6.itemsFontSize]: '16px',
18021
18425
  },
18022
18426
  lg: {
18023
- [vars$5.itemsFontSize]: '20px',
18427
+ [vars$6.itemsFontSize]: '20px',
18024
18428
  },
18025
18429
  },
18026
18430
  };
@@ -18028,52 +18432,52 @@ const appsList = {
18028
18432
  var appsList$1 = /*#__PURE__*/Object.freeze({
18029
18433
  __proto__: null,
18030
18434
  default: appsList,
18031
- vars: vars$5
18435
+ vars: vars$6
18032
18436
  });
18033
18437
 
18034
- const vars$4 = ScopesListClass.cssVarList;
18438
+ const vars$5 = ScopesListClass.cssVarList;
18035
18439
 
18036
18440
  const scopesList = {
18037
- [vars$4.requiredInputBorderColor]: theme$1._disabled[vars$Q.borderColor],
18038
- [vars$4.requiredInputValueTextColor]: theme$1._disabled[vars$Q.valueTextColor],
18039
- [vars$4.hostWidth]: '280px',
18441
+ [vars$5.requiredInputBorderColor]: theme$1._disabled[vars$R.borderColor],
18442
+ [vars$5.requiredInputValueTextColor]: theme$1._disabled[vars$R.valueTextColor],
18443
+ [vars$5.hostWidth]: '280px',
18040
18444
  _fullWidth: {
18041
- [vars$4.hostWidth]: '100%',
18445
+ [vars$5.hostWidth]: '100%',
18042
18446
  },
18043
18447
  };
18044
18448
 
18045
18449
  var scopesList$1 = /*#__PURE__*/Object.freeze({
18046
18450
  __proto__: null,
18047
18451
  default: scopesList,
18048
- vars: vars$4
18452
+ vars: vars$5
18049
18453
  });
18050
18454
 
18051
18455
  const globalRefs = getThemeRefs(globals);
18052
- const vars$3 = ThirdPartyAppLogoClass.cssVarList;
18456
+ const vars$4 = ThirdPartyAppLogoClass.cssVarList;
18053
18457
 
18054
18458
  const thirdPartyAppLogo = {
18055
- [vars$3.gap]: globalRefs.spacing.lg,
18056
- [vars$3.arrowsColor]: globalRefs.colors.surface.dark,
18057
- [vars$3.thirdPartyAppLogoFallback]:
18459
+ [vars$4.gap]: globalRefs.spacing.lg,
18460
+ [vars$4.arrowsColor]: globalRefs.colors.surface.dark,
18461
+ [vars$4.thirdPartyAppLogoFallback]:
18058
18462
  'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
18059
- [vars$3.companyLogoFallback]:
18463
+ [vars$4.companyLogoFallback]:
18060
18464
  'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
18061
18465
  size: {
18062
18466
  xs: {
18063
- [vars$3.logoMaxHeight]: '30px',
18064
- [vars$3.logoMaxWidth]: '120px',
18467
+ [vars$4.logoMaxHeight]: '30px',
18468
+ [vars$4.logoMaxWidth]: '120px',
18065
18469
  },
18066
18470
  sm: {
18067
- [vars$3.logoMaxHeight]: '40px',
18068
- [vars$3.logoMaxWidth]: '160px',
18471
+ [vars$4.logoMaxHeight]: '40px',
18472
+ [vars$4.logoMaxWidth]: '160px',
18069
18473
  },
18070
18474
  md: {
18071
- [vars$3.logoMaxHeight]: '48px',
18072
- [vars$3.logoMaxWidth]: '200px',
18475
+ [vars$4.logoMaxHeight]: '48px',
18476
+ [vars$4.logoMaxWidth]: '200px',
18073
18477
  },
18074
18478
  lg: {
18075
- [vars$3.logoMaxHeight]: '60px',
18076
- [vars$3.logoMaxWidth]: '240px',
18479
+ [vars$4.logoMaxHeight]: '60px',
18480
+ [vars$4.logoMaxWidth]: '240px',
18077
18481
  },
18078
18482
  },
18079
18483
  };
@@ -18081,39 +18485,55 @@ const thirdPartyAppLogo = {
18081
18485
  var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
18082
18486
  __proto__: null,
18083
18487
  default: thirdPartyAppLogo,
18084
- vars: vars$3
18488
+ vars: vars$4
18085
18489
  });
18086
18490
 
18087
- const vars$2 = SecurityQuestionsSetupClass.cssVarList;
18491
+ const vars$3 = SecurityQuestionsSetupClass.cssVarList;
18088
18492
 
18089
18493
  const securityQuestionsSetup = {
18090
- [vars$2.hostWidth]: 'fit-content',
18494
+ [vars$3.hostWidth]: 'fit-content',
18091
18495
  _fullWidth: {
18092
- [vars$2.hostWidth]: '100%',
18496
+ [vars$3.hostWidth]: '100%',
18093
18497
  },
18094
18498
  };
18095
18499
 
18096
18500
  var securityQuestionsSetup$1 = /*#__PURE__*/Object.freeze({
18097
18501
  __proto__: null,
18098
18502
  default: securityQuestionsSetup,
18099
- vars: vars$2
18503
+ vars: vars$3
18100
18504
  });
18101
18505
 
18102
- const vars$1 = SecurityQuestionsVerifyClass.cssVarList;
18506
+ const vars$2 = SecurityQuestionsVerifyClass.cssVarList;
18103
18507
 
18104
18508
  const securityQuestionsVerify = {
18105
- [vars$1.hostWidth]: 'min-content',
18106
- [vars$1.questionCursor]: 'pointer',
18509
+ [vars$2.hostWidth]: 'min-content',
18510
+ [vars$2.questionCursor]: 'pointer',
18107
18511
  _fullWidth: {
18108
- [vars$1.hostWidth]: '100%',
18512
+ [vars$2.hostWidth]: '100%',
18109
18513
  },
18110
- [vars$1.questionFontSize]: refs.fontSize,
18111
- [vars$1.questionFontFamily]: refs.fontFamily,
18514
+ [vars$2.questionFontSize]: refs.fontSize,
18515
+ [vars$2.questionFontFamily]: refs.fontFamily,
18112
18516
  };
18113
18517
 
18114
18518
  var securityQuestionsVerify$1 = /*#__PURE__*/Object.freeze({
18115
18519
  __proto__: null,
18116
18520
  default: securityQuestionsVerify,
18521
+ vars: vars$2
18522
+ });
18523
+
18524
+ const vars$1 = HybridFieldClass.cssVarList;
18525
+
18526
+ const hybridField = {
18527
+ [vars$1.hostDirection]: refs.direction,
18528
+
18529
+ _fullWidth: {
18530
+ [vars$1.hostWidth]: '100%',
18531
+ },
18532
+ };
18533
+
18534
+ var hybridField$1 = /*#__PURE__*/Object.freeze({
18535
+ __proto__: null,
18536
+ default: hybridField,
18117
18537
  vars: vars$1
18118
18538
  });
18119
18539
 
@@ -18171,6 +18591,7 @@ const components = {
18171
18591
  thirdPartyAppLogo: thirdPartyAppLogo$1,
18172
18592
  securityQuestionsSetup: securityQuestionsSetup$1,
18173
18593
  securityQuestionsVerify: securityQuestionsVerify$1,
18594
+ hybridField: hybridField$1,
18174
18595
  };
18175
18596
 
18176
18597
  const theme = Object.keys(components).reduce(
@@ -18183,7 +18604,7 @@ const vars = Object.keys(components).reduce(
18183
18604
  );
18184
18605
 
18185
18606
  const defaultTheme = { globals, components: theme };
18186
- const themeVars = { globals: vars$S, components: vars };
18607
+ const themeVars = { globals: vars$T, components: vars };
18187
18608
 
18188
18609
  const colors = {
18189
18610
  surface: {
@@ -18232,5 +18653,5 @@ const darkTheme = merge({}, defaultTheme, {
18232
18653
  },
18233
18654
  });
18234
18655
 
18235
- 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, SecurityQuestionsVerifyClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
18656
+ export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, HybridFieldClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SecurityQuestionsSetupClass, SecurityQuestionsVerifyClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
18236
18657
  //# sourceMappingURL=index.esm.js.map