@descope/web-components-ui 1.0.402 → 1.0.403

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 (31) hide show
  1. package/dist/cjs/index.cjs.js +1565 -1208
  2. package/dist/cjs/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +1612 -1208
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/umd/1053.js +1 -1
  6. package/dist/umd/4619.js +1 -1
  7. package/dist/umd/6726.js +1 -1
  8. package/dist/umd/7212.js +1 -1
  9. package/dist/umd/DescopeDev.js +1 -1
  10. package/dist/umd/descope-hybrid-field-index-js.js +19 -0
  11. package/dist/umd/descope-hybrid-field-index-js.js.LICENSE.txt +5 -0
  12. package/dist/umd/index.js +1 -1
  13. package/dist/umd/phone-fields-descope-phone-field-descope-phone-field-internal-index-js.js +1 -1
  14. package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
  15. package/dist/umd/phone-fields-descope-phone-input-box-field-descope-phone-input-box-internal-index-js.js +1 -1
  16. package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js +148 -1
  17. package/package.json +1 -1
  18. package/src/components/descope-hybrid-field/HybridFieldClass.js +289 -0
  19. package/src/components/descope-hybrid-field/helpers.js +5 -0
  20. package/src/components/descope-hybrid-field/index.js +9 -0
  21. package/src/components/phone-fields/descope-phone-field/PhoneFieldClass.js +45 -5
  22. package/src/components/phone-fields/descope-phone-field/descope-phone-field-internal/PhoneFieldInternal.js +45 -11
  23. package/src/components/phone-fields/descope-phone-input-box-field/PhoneFieldInputBoxClass.js +21 -12
  24. package/src/components/phone-fields/descope-phone-input-box-field/descope-phone-input-box-internal/PhoneFieldInternalInputBox.js +17 -5
  25. package/src/index.cjs.js +1 -0
  26. package/src/index.js +1 -0
  27. package/src/mixins/inputEventsDispatchingMixin.js +5 -5
  28. package/src/theme/components/hybridField.js +15 -0
  29. package/src/theme/components/index.js +2 -0
  30. package/dist/umd/4831.js +0 -148
  31. /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,299 @@ 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
+ init() {
15451
+ super.init?.();
15452
+ this.initInputs();
15453
+ this.updateAttrs();
15454
+ this.toggleInputVisibility();
15455
+ }
15456
+
15457
+ initInputs() {
15458
+ this.emailInput = this.shadowRoot.querySelector(EMAIL_FIELD);
15459
+ this.phoneCountryCodeInput = this.shadowRoot.querySelector(PHONE_FIELD);
15460
+ this.phoneInputBoxInput = this.shadowRoot.querySelector(PHONE_INPUT_BOX_FIELD);
15461
+
15462
+ this.inputs = [this.emailInput, this.phoneCountryCodeInput, this.phoneInputBoxInput];
15463
+
15464
+ this.activeInput = this.emailInput;
15465
+
15466
+ this.initInputEles();
15467
+ this.overrideEmailInputType();
15468
+
15469
+ // We want to prevent Vaadin from changing the input type to `email`
15470
+ // otherwise, we cannot get the selectionStart from the input.
15471
+ const origEmailSetAttr = this.emailInput.setAttribute.bind(this.emailInputEle);
15472
+ this.emailInputEle.setAttribute = (name, value) => {
15473
+ if (name !== 'type' || value !== 'email' || !this.emailInput.hasAttribute('focused')) {
15474
+ return origEmailSetAttr(name, value);
15475
+ }
15476
+ return false;
15477
+ };
15478
+ }
15479
+
15480
+ // we need to listen on the inner `input` element itself, otherwise we don't always get an `input` event
15481
+ initInputEles() {
15482
+ const inputEles = [
15483
+ this.emailInputEle,
15484
+ this.phoneCountryCodeInput.phoneNumberInputEle,
15485
+ this.phoneInputBoxInput.phoneNumberInputEle,
15486
+ ];
15487
+
15488
+ inputEles.forEach((ele) => {
15489
+ ele?.addEventListener('input', this.onValueChange.bind(this));
15490
+ });
15491
+ }
15492
+
15493
+ overrideEmailInputType() {
15494
+ this.emailInputEle.addEventListener('focus', () => {
15495
+ this.emailInputEle.setAttribute('type', 'text');
15496
+ });
15497
+ this.emailInputEle.addEventListener('blur', () => {
15498
+ setTimeout(() => {
15499
+ this.emailInputEle?.setAttribute('type', 'email');
15500
+ });
15501
+ });
15502
+ }
15503
+
15504
+ updateAttrs() {
15505
+ this.inputs.forEach((input) => forwardAttrs(this, input, { includeAttrs: attrs.shared }));
15506
+
15507
+ forwardAttrs(this, this.emailInput, { includeAttrs: attrs.email, mapAttrs: attrMap.email });
15508
+
15509
+ forwardAttrs(this, this.phoneCountryCodeInput, {
15510
+ includeAttrs: attrs.phone.countryCode,
15511
+ mapAttrs: attrMap.phone,
15512
+ });
15513
+
15514
+ forwardAttrs(this, this.phoneInputBoxInput, {
15515
+ includeAttrs: attrs.phone.inputBox,
15516
+ mapAttrs: attrMap.phone,
15517
+ });
15518
+
15519
+ setTimeout(() => this.phoneCountryCodeInput.setAttribute('default-code', this.defaultCode));
15520
+ }
15521
+
15522
+ onValueChange() {
15523
+ this.#selectionStart = this.activeInputEle.selectionStart;
15524
+ this.handleActiveInput(this.activeInput.value);
15525
+ }
15526
+
15527
+ handleActiveInput(val) {
15528
+ const expectedActiveInput = isNumericValue(val) ? this.phoneVariant : this.emailInput;
15529
+
15530
+ if (this.activeInput !== expectedActiveInput) {
15531
+ this.setActiveInput(expectedActiveInput);
15532
+ }
15533
+ }
15534
+
15535
+ setActiveInput(expectedActiveInput) {
15536
+ const val = this.activeInput.value;
15537
+ this.activeInput = expectedActiveInput;
15538
+ this.setActiveInputValue(val);
15539
+ if (this.#isReportedValidity) this.activeInput.reportValidity();
15540
+ this.setActiveInputSelectionStart();
15541
+ this.toggleInputVisibility();
15542
+ }
15543
+
15544
+ setActiveInputSelectionStart() {
15545
+ setTimeout(() => {
15546
+ this.activeInputEle.focus();
15547
+ this.activeInputEle.setSelectionRange?.(this.#selectionStart, this.#selectionStart);
15548
+ });
15549
+ }
15550
+
15551
+ setActiveInputValue(val) {
15552
+ const sanitizedVal = sanitizeCountryCodePrefix(val);
15553
+ const isPhoneField = this.activeInput.localName === PHONE_FIELD;
15554
+ const value = isPhoneField
15555
+ ? `${this.phoneCountryCodeInput.countryCodeItems}-${sanitizedVal}`
15556
+ : sanitizedVal;
15557
+ this.activeInput.value = value;
15558
+ }
15559
+
15560
+ toggleInputVisibility() {
15561
+ this.inputs.forEach((input) => {
15562
+ input !== this.activeInput ? input.classList.add('hidden') : input.classList.remove('hidden');
15563
+ });
15564
+ }
15565
+
15566
+ reportValidity() {
15567
+ this.#isReportedValidity = true;
15568
+
15569
+ const ele = this.activeInputEle;
15570
+
15571
+ // On reportValidity we want to set the caret at the end of the input value.
15572
+ // Since checkValidity triggers `focus` on the input, it sets the caret at the start of the input,
15573
+ // regardless the existing value.
15574
+ setTimeout(() => {
15575
+ ele.setSelectionRange?.(ele.value.length, ele.value.length);
15576
+ });
15577
+
15578
+ return this.activeInput.reportValidity();
15579
+ }
15580
+
15581
+ checkValidity() {
15582
+ return this.activeInput.checkValidity();
15583
+ }
15584
+ }
15585
+
15586
+ const HybridFieldClass = compose(
15587
+ createStyleMixin({ componentNameOverride: getComponentName('input-wrapper') }),
15588
+ createStyleMixin({
15589
+ mappings: {
15590
+ hostWidth: { selector: () => ':host', property: 'width' },
15591
+ hostDirection: [
15592
+ { selector: () => 'descope-email-field', property: 'direction' },
15593
+ { selector: () => 'descope-phone-field', property: 'direction' },
15594
+ { selector: () => 'descope-phone-input-box-field', property: 'direction' },
15595
+ ],
15596
+ },
15597
+ }),
15598
+ draggableMixin,
15599
+ componentNameValidationMixin
15600
+ )(RawHybridField);
15601
+
15602
+ customElements.define(componentName$1, HybridFieldClass);
15216
15603
 
15217
15604
  const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
15218
15605
 
@@ -15651,7 +16038,7 @@ const globals = {
15651
16038
  fonts,
15652
16039
  direction,
15653
16040
  };
15654
- const vars$S = getThemeVars(globals);
16041
+ const vars$T = getThemeVars(globals);
15655
16042
 
15656
16043
  const globalRefs$y = getThemeRefs(globals);
15657
16044
  const compVars$6 = ButtonClass.cssVarList;
@@ -15664,7 +16051,7 @@ const mode = {
15664
16051
  surface: globalRefs$y.colors.surface,
15665
16052
  };
15666
16053
 
15667
- const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$13);
16054
+ const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$14);
15668
16055
 
15669
16056
  const button = {
15670
16057
  ...helperTheme$4,
@@ -15776,7 +16163,7 @@ const button = {
15776
16163
  },
15777
16164
  };
15778
16165
 
15779
- const vars$R = {
16166
+ const vars$S = {
15780
16167
  ...compVars$6,
15781
16168
  ...helperVars$4,
15782
16169
  };
@@ -15784,13 +16171,13 @@ const vars$R = {
15784
16171
  var button$1 = /*#__PURE__*/Object.freeze({
15785
16172
  __proto__: null,
15786
16173
  default: button,
15787
- vars: vars$R
16174
+ vars: vars$S
15788
16175
  });
15789
16176
 
15790
16177
  const componentName = getComponentName('input-wrapper');
15791
16178
  const globalRefs$x = getThemeRefs(globals);
15792
16179
 
15793
- const [theme$1, refs, vars$Q] = createHelperVars(
16180
+ const [theme$1, refs, vars$R] = createHelperVars(
15794
16181
  {
15795
16182
  labelTextColor: globalRefs$x.colors.surface.dark,
15796
16183
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
@@ -15909,13 +16296,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
15909
16296
  __proto__: null,
15910
16297
  default: theme$1,
15911
16298
  refs: refs,
15912
- vars: vars$Q
16299
+ vars: vars$R
15913
16300
  });
15914
16301
 
15915
16302
  const globalRefs$w = getThemeRefs(globals);
15916
- const vars$P = TextFieldClass.cssVarList;
16303
+ const vars$Q = TextFieldClass.cssVarList;
15917
16304
 
15918
16305
  const textField = {
16306
+ [vars$Q.hostWidth]: refs.width,
16307
+ [vars$Q.hostMinWidth]: refs.minWidth,
16308
+ [vars$Q.hostDirection]: refs.direction,
16309
+ [vars$Q.fontSize]: refs.fontSize,
16310
+ [vars$Q.fontFamily]: refs.fontFamily,
16311
+ [vars$Q.labelFontSize]: refs.labelFontSize,
16312
+ [vars$Q.labelFontWeight]: refs.labelFontWeight,
16313
+ [vars$Q.labelTextColor]: refs.labelTextColor,
16314
+ [vars$Q.labelRequiredIndicator]: refs.requiredIndicator,
16315
+ [vars$Q.errorMessageTextColor]: refs.errorMessageTextColor,
16316
+ [vars$Q.inputValueTextColor]: refs.valueTextColor,
16317
+ [vars$Q.inputPlaceholderColor]: refs.placeholderTextColor,
16318
+ [vars$Q.inputBorderWidth]: refs.borderWidth,
16319
+ [vars$Q.inputBorderStyle]: refs.borderStyle,
16320
+ [vars$Q.inputBorderColor]: refs.borderColor,
16321
+ [vars$Q.inputBorderRadius]: refs.borderRadius,
16322
+ [vars$Q.inputOutlineWidth]: refs.outlineWidth,
16323
+ [vars$Q.inputOutlineStyle]: refs.outlineStyle,
16324
+ [vars$Q.inputOutlineColor]: refs.outlineColor,
16325
+ [vars$Q.inputOutlineOffset]: refs.outlineOffset,
16326
+ [vars$Q.inputBackgroundColor]: refs.backgroundColor,
16327
+ [vars$Q.inputHeight]: refs.inputHeight,
16328
+ [vars$Q.inputHorizontalPadding]: refs.horizontalPadding,
16329
+ [vars$Q.helperTextColor]: refs.helperTextColor,
16330
+ [vars$Q.textAlign]: refs.textAlign,
16331
+ textAlign: {
16332
+ right: { [vars$Q.inputTextAlign]: 'right' },
16333
+ left: { [vars$Q.inputTextAlign]: 'left' },
16334
+ center: { [vars$Q.inputTextAlign]: 'center' },
16335
+ },
16336
+ [vars$Q.labelPosition]: refs.labelPosition,
16337
+ [vars$Q.labelTopPosition]: refs.labelTopPosition,
16338
+ [vars$Q.labelHorizontalPosition]: refs.labelHorizontalPosition,
16339
+ [vars$Q.inputTransformY]: refs.inputTransformY,
16340
+ [vars$Q.inputTransition]: refs.inputTransition,
16341
+ [vars$Q.marginInlineStart]: refs.marginInlineStart,
16342
+ [vars$Q.placeholderOpacity]: refs.placeholderOpacity,
16343
+ [vars$Q.inputVerticalAlignment]: refs.inputVerticalAlignment,
16344
+ [vars$Q.valueInputHeight]: refs.valueInputHeight,
16345
+ [vars$Q.valueInputMarginBottom]: refs.valueInputMarginBottom,
16346
+ [vars$Q.inputIconOffset]: globalRefs$w.spacing.md,
16347
+ [vars$Q.inputIconSize]: refs.inputIconSize,
16348
+ [vars$Q.inputIconColor]: refs.placeholderTextColor,
16349
+ };
16350
+
16351
+ var textField$1 = /*#__PURE__*/Object.freeze({
16352
+ __proto__: null,
16353
+ default: textField,
16354
+ textField: textField,
16355
+ vars: vars$Q
16356
+ });
16357
+
16358
+ const globalRefs$v = getThemeRefs(globals);
16359
+ const vars$P = PasswordClass.cssVarList;
16360
+
16361
+ const password = {
15919
16362
  [vars$P.hostWidth]: refs.width,
15920
16363
  [vars$P.hostMinWidth]: refs.minWidth,
15921
16364
  [vars$P.hostDirection]: refs.direction,
@@ -15924,10 +16367,13 @@ const textField = {
15924
16367
  [vars$P.labelFontSize]: refs.labelFontSize,
15925
16368
  [vars$P.labelFontWeight]: refs.labelFontWeight,
15926
16369
  [vars$P.labelTextColor]: refs.labelTextColor,
15927
- [vars$P.labelRequiredIndicator]: refs.requiredIndicator,
15928
16370
  [vars$P.errorMessageTextColor]: refs.errorMessageTextColor,
16371
+ [vars$P.inputHorizontalPadding]: refs.horizontalPadding,
16372
+ [vars$P.inputHeight]: refs.inputHeight,
16373
+ [vars$P.inputBackgroundColor]: refs.backgroundColor,
16374
+ [vars$P.labelRequiredIndicator]: refs.requiredIndicator,
15929
16375
  [vars$P.inputValueTextColor]: refs.valueTextColor,
15930
- [vars$P.inputPlaceholderColor]: refs.placeholderTextColor,
16376
+ [vars$P.inputPlaceholderTextColor]: refs.placeholderTextColor,
15931
16377
  [vars$P.inputBorderWidth]: refs.borderWidth,
15932
16378
  [vars$P.inputBorderStyle]: refs.borderStyle,
15933
16379
  [vars$P.inputBorderColor]: refs.borderColor,
@@ -15936,16 +16382,9 @@ const textField = {
15936
16382
  [vars$P.inputOutlineStyle]: refs.outlineStyle,
15937
16383
  [vars$P.inputOutlineColor]: refs.outlineColor,
15938
16384
  [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
- },
16385
+ [vars$P.revealButtonOffset]: globalRefs$v.spacing.md,
16386
+ [vars$P.revealButtonSize]: refs.toggleButtonSize,
16387
+ [vars$P.revealButtonColor]: refs.placeholderTextColor,
15949
16388
  [vars$P.labelPosition]: refs.labelPosition,
15950
16389
  [vars$P.labelTopPosition]: refs.labelTopPosition,
15951
16390
  [vars$P.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15955,23 +16394,17 @@ const textField = {
15955
16394
  [vars$P.placeholderOpacity]: refs.placeholderOpacity,
15956
16395
  [vars$P.inputVerticalAlignment]: refs.inputVerticalAlignment,
15957
16396
  [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
16397
  };
15963
16398
 
15964
- var textField$1 = /*#__PURE__*/Object.freeze({
16399
+ var password$1 = /*#__PURE__*/Object.freeze({
15965
16400
  __proto__: null,
15966
- default: textField,
15967
- textField: textField,
16401
+ default: password,
15968
16402
  vars: vars$P
15969
16403
  });
15970
16404
 
15971
- const globalRefs$v = getThemeRefs(globals);
15972
- const vars$O = PasswordClass.cssVarList;
16405
+ const vars$O = NumberFieldClass.cssVarList;
15973
16406
 
15974
- const password = {
16407
+ const numberField = {
15975
16408
  [vars$O.hostWidth]: refs.width,
15976
16409
  [vars$O.hostMinWidth]: refs.minWidth,
15977
16410
  [vars$O.hostDirection]: refs.direction,
@@ -15981,12 +16414,8 @@ const password = {
15981
16414
  [vars$O.labelFontWeight]: refs.labelFontWeight,
15982
16415
  [vars$O.labelTextColor]: refs.labelTextColor,
15983
16416
  [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
16417
  [vars$O.inputValueTextColor]: refs.valueTextColor,
15989
- [vars$O.inputPlaceholderTextColor]: refs.placeholderTextColor,
16418
+ [vars$O.inputPlaceholderColor]: refs.placeholderTextColor,
15990
16419
  [vars$O.inputBorderWidth]: refs.borderWidth,
15991
16420
  [vars$O.inputBorderStyle]: refs.borderStyle,
15992
16421
  [vars$O.inputBorderColor]: refs.borderColor,
@@ -15995,9 +16424,10 @@ const password = {
15995
16424
  [vars$O.inputOutlineStyle]: refs.outlineStyle,
15996
16425
  [vars$O.inputOutlineColor]: refs.outlineColor,
15997
16426
  [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,
16427
+ [vars$O.inputBackgroundColor]: refs.backgroundColor,
16428
+ [vars$O.labelRequiredIndicator]: refs.requiredIndicator,
16429
+ [vars$O.inputHorizontalPadding]: refs.horizontalPadding,
16430
+ [vars$O.inputHeight]: refs.inputHeight,
16001
16431
  [vars$O.labelPosition]: refs.labelPosition,
16002
16432
  [vars$O.labelTopPosition]: refs.labelTopPosition,
16003
16433
  [vars$O.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -16007,17 +16437,18 @@ const password = {
16007
16437
  [vars$O.placeholderOpacity]: refs.placeholderOpacity,
16008
16438
  [vars$O.inputVerticalAlignment]: refs.inputVerticalAlignment,
16009
16439
  [vars$O.valueInputHeight]: refs.valueInputHeight,
16440
+ [vars$O.valueInputMarginBottom]: refs.valueInputMarginBottom,
16010
16441
  };
16011
16442
 
16012
- var password$1 = /*#__PURE__*/Object.freeze({
16443
+ var numberField$1 = /*#__PURE__*/Object.freeze({
16013
16444
  __proto__: null,
16014
- default: password,
16445
+ default: numberField,
16015
16446
  vars: vars$O
16016
16447
  });
16017
16448
 
16018
- const vars$N = NumberFieldClass.cssVarList;
16449
+ const vars$N = EmailFieldClass.cssVarList;
16019
16450
 
16020
- const numberField = {
16451
+ const emailField = {
16021
16452
  [vars$N.hostWidth]: refs.width,
16022
16453
  [vars$N.hostMinWidth]: refs.minWidth,
16023
16454
  [vars$N.hostDirection]: refs.direction,
@@ -16028,6 +16459,7 @@ const numberField = {
16028
16459
  [vars$N.labelTextColor]: refs.labelTextColor,
16029
16460
  [vars$N.errorMessageTextColor]: refs.errorMessageTextColor,
16030
16461
  [vars$N.inputValueTextColor]: refs.valueTextColor,
16462
+ [vars$N.labelRequiredIndicator]: refs.requiredIndicator,
16031
16463
  [vars$N.inputPlaceholderColor]: refs.placeholderTextColor,
16032
16464
  [vars$N.inputBorderWidth]: refs.borderWidth,
16033
16465
  [vars$N.inputBorderStyle]: refs.borderStyle,
@@ -16038,7 +16470,6 @@ const numberField = {
16038
16470
  [vars$N.inputOutlineColor]: refs.outlineColor,
16039
16471
  [vars$N.inputOutlineOffset]: refs.outlineOffset,
16040
16472
  [vars$N.inputBackgroundColor]: refs.backgroundColor,
16041
- [vars$N.labelRequiredIndicator]: refs.requiredIndicator,
16042
16473
  [vars$N.inputHorizontalPadding]: refs.horizontalPadding,
16043
16474
  [vars$N.inputHeight]: refs.inputHeight,
16044
16475
  [vars$N.labelPosition]: refs.labelPosition,
@@ -16053,197 +16484,153 @@ const numberField = {
16053
16484
  [vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
16054
16485
  };
16055
16486
 
16056
- var numberField$1 = /*#__PURE__*/Object.freeze({
16487
+ var emailField$1 = /*#__PURE__*/Object.freeze({
16057
16488
  __proto__: null,
16058
- default: numberField,
16489
+ default: emailField,
16059
16490
  vars: vars$N
16060
16491
  });
16061
16492
 
16062
- const vars$M = EmailFieldClass.cssVarList;
16493
+ const vars$M = TextAreaClass.cssVarList;
16063
16494
 
16064
- const emailField = {
16495
+ const textArea = {
16065
16496
  [vars$M.hostWidth]: refs.width,
16066
16497
  [vars$M.hostMinWidth]: refs.minWidth,
16067
16498
  [vars$M.hostDirection]: refs.direction,
16068
16499
  [vars$M.fontSize]: refs.fontSize,
16069
16500
  [vars$M.fontFamily]: refs.fontFamily,
16070
- [vars$M.labelFontSize]: refs.labelFontSize,
16071
- [vars$M.labelFontWeight]: refs.labelFontWeight,
16072
16501
  [vars$M.labelTextColor]: refs.labelTextColor,
16502
+ [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
16073
16503
  [vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
16504
+ [vars$M.inputBackgroundColor]: refs.backgroundColor,
16074
16505
  [vars$M.inputValueTextColor]: refs.valueTextColor,
16075
- [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
16076
- [vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
16506
+ [vars$M.inputPlaceholderTextColor]: refs.placeholderTextColor,
16507
+ [vars$M.inputBorderRadius]: refs.borderRadius,
16077
16508
  [vars$M.inputBorderWidth]: refs.borderWidth,
16078
16509
  [vars$M.inputBorderStyle]: refs.borderStyle,
16079
16510
  [vars$M.inputBorderColor]: refs.borderColor,
16080
- [vars$M.inputBorderRadius]: refs.borderRadius,
16081
16511
  [vars$M.inputOutlineWidth]: refs.outlineWidth,
16082
16512
  [vars$M.inputOutlineStyle]: refs.outlineStyle,
16083
16513
  [vars$M.inputOutlineColor]: refs.outlineColor,
16084
16514
  [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,
16515
+ [vars$M.inputResizeType]: 'vertical',
16516
+ [vars$M.inputMinHeight]: '5em',
16517
+ textAlign: {
16518
+ right: { [vars$M.inputTextAlign]: 'right' },
16519
+ left: { [vars$M.inputTextAlign]: 'left' },
16520
+ center: { [vars$M.inputTextAlign]: 'center' },
16521
+ },
16522
+
16523
+ _readonly: {
16524
+ [vars$M.inputResizeType]: 'none',
16525
+ },
16098
16526
  };
16099
16527
 
16100
- var emailField$1 = /*#__PURE__*/Object.freeze({
16528
+ var textArea$1 = /*#__PURE__*/Object.freeze({
16101
16529
  __proto__: null,
16102
- default: emailField,
16530
+ default: textArea,
16103
16531
  vars: vars$M
16104
16532
  });
16105
16533
 
16106
- const vars$L = TextAreaClass.cssVarList;
16534
+ const vars$L = CheckboxClass.cssVarList;
16535
+ const checkboxSize = '1.35em';
16107
16536
 
16108
- const textArea = {
16537
+ const checkbox = {
16109
16538
  [vars$L.hostWidth]: refs.width,
16110
- [vars$L.hostMinWidth]: refs.minWidth,
16111
16539
  [vars$L.hostDirection]: refs.direction,
16112
16540
  [vars$L.fontSize]: refs.fontSize,
16113
16541
  [vars$L.fontFamily]: refs.fontFamily,
16114
16542
  [vars$L.labelTextColor]: refs.labelTextColor,
16115
16543
  [vars$L.labelRequiredIndicator]: refs.requiredIndicator,
16544
+ [vars$L.labelFontWeight]: '400',
16545
+ [vars$L.labelLineHeight]: checkboxSize,
16546
+ [vars$L.labelSpacing]: '1em',
16116
16547
  [vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
16117
- [vars$L.inputBackgroundColor]: refs.backgroundColor,
16118
- [vars$L.inputValueTextColor]: refs.valueTextColor,
16119
- [vars$L.inputPlaceholderTextColor]: refs.placeholderTextColor,
16548
+ [vars$L.inputOutlineWidth]: refs.outlineWidth,
16549
+ [vars$L.inputOutlineOffset]: refs.outlineOffset,
16550
+ [vars$L.inputOutlineColor]: refs.outlineColor,
16551
+ [vars$L.inputOutlineStyle]: refs.outlineStyle,
16120
16552
  [vars$L.inputBorderRadius]: refs.borderRadius,
16553
+ [vars$L.inputBorderColor]: refs.borderColor,
16121
16554
  [vars$L.inputBorderWidth]: refs.borderWidth,
16122
16555
  [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
- },
16556
+ [vars$L.inputBackgroundColor]: refs.backgroundColor,
16557
+ [vars$L.inputSize]: checkboxSize,
16558
+ [vars$L.inputValueTextColor]: refs.valueTextColor,
16139
16559
  };
16140
16560
 
16141
- var textArea$1 = /*#__PURE__*/Object.freeze({
16561
+ var checkbox$1 = /*#__PURE__*/Object.freeze({
16142
16562
  __proto__: null,
16143
- default: textArea,
16563
+ default: checkbox,
16144
16564
  vars: vars$L
16145
16565
  });
16146
16566
 
16147
- const vars$K = CheckboxClass.cssVarList;
16148
- const checkboxSize = '1.35em';
16567
+ const knobMargin = '2px';
16568
+ const checkboxHeight = '1.25em';
16149
16569
 
16150
- const checkbox = {
16570
+ const globalRefs$u = getThemeRefs(globals);
16571
+ const vars$K = SwitchToggleClass.cssVarList;
16572
+
16573
+ const switchToggle = {
16151
16574
  [vars$K.hostWidth]: refs.width,
16152
16575
  [vars$K.hostDirection]: refs.direction,
16153
16576
  [vars$K.fontSize]: refs.fontSize,
16154
16577
  [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,
16578
+
16161
16579
  [vars$K.inputOutlineWidth]: refs.outlineWidth,
16162
16580
  [vars$K.inputOutlineOffset]: refs.outlineOffset,
16163
16581
  [vars$K.inputOutlineColor]: refs.outlineColor,
16164
16582
  [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
-
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
16583
 
16183
- const globalRefs$u = getThemeRefs(globals);
16184
- const vars$J = SwitchToggleClass.cssVarList;
16584
+ [vars$K.trackBorderStyle]: refs.borderStyle,
16585
+ [vars$K.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
16586
+ [vars$K.trackBorderColor]: refs.borderColor,
16587
+ [vars$K.trackBackgroundColor]: refs.backgroundColor,
16588
+ [vars$K.trackBorderRadius]: globalRefs$u.radius.md,
16589
+ [vars$K.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
16590
+ [vars$K.trackHeight]: checkboxHeight,
16591
+
16592
+ [vars$K.knobSize]: `calc(1em - ${knobMargin})`,
16593
+ [vars$K.knobRadius]: '50%',
16594
+ [vars$K.knobTopOffset]: '1px',
16595
+ [vars$K.knobLeftOffset]: knobMargin,
16596
+ [vars$K.knobColor]: refs.labelTextColor,
16597
+ [vars$K.knobTransitionDuration]: '0.3s',
16185
16598
 
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,
16599
+ [vars$K.labelTextColor]: refs.labelTextColor,
16600
+ [vars$K.labelFontWeight]: '400',
16601
+ [vars$K.labelLineHeight]: '1.35em',
16602
+ [vars$K.labelSpacing]: '1em',
16603
+ [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
16604
+ [vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
16218
16605
 
16219
16606
  _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,
16607
+ [vars$K.trackBorderColor]: refs.borderColor,
16608
+ [vars$K.knobLeftOffset]: `calc(100% - var(${vars$K.knobSize}) - ${knobMargin})`,
16609
+ [vars$K.knobColor]: refs.valueTextColor,
16610
+ [vars$K.knobTextColor]: refs.valueTextColor,
16224
16611
  },
16225
16612
 
16226
16613
  _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,
16614
+ [vars$K.knobColor]: globalRefs$u.colors.surface.light,
16615
+ [vars$K.trackBorderColor]: globalRefs$u.colors.surface.light,
16616
+ [vars$K.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16617
+ [vars$K.labelTextColor]: refs.labelTextColor,
16231
16618
  _checked: {
16232
- [vars$J.knobColor]: globalRefs$u.colors.surface.light,
16233
- [vars$J.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16619
+ [vars$K.knobColor]: globalRefs$u.colors.surface.light,
16620
+ [vars$K.trackBackgroundColor]: globalRefs$u.colors.surface.main,
16234
16621
  },
16235
16622
  },
16236
16623
 
16237
16624
  _invalid: {
16238
- [vars$J.trackBorderColor]: globalRefs$u.colors.error.main,
16239
- [vars$J.knobColor]: globalRefs$u.colors.error.main,
16625
+ [vars$K.trackBorderColor]: globalRefs$u.colors.error.main,
16626
+ [vars$K.knobColor]: globalRefs$u.colors.error.main,
16240
16627
  },
16241
16628
  };
16242
16629
 
16243
16630
  var switchToggle$1 = /*#__PURE__*/Object.freeze({
16244
16631
  __proto__: null,
16245
16632
  default: switchToggle,
16246
- vars: vars$J
16633
+ vars: vars$K
16247
16634
  });
16248
16635
 
16249
16636
  const globalRefs$t = getThemeRefs(globals);
@@ -16268,7 +16655,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
16268
16655
  horizontalAlignment,
16269
16656
  shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
16270
16657
  },
16271
- componentName$Z
16658
+ componentName$_
16272
16659
  );
16273
16660
 
16274
16661
  const { shadowColor: shadowColor$3 } = helperRefs$3;
@@ -16363,7 +16750,7 @@ const container = {
16363
16750
  },
16364
16751
  };
16365
16752
 
16366
- const vars$I = {
16753
+ const vars$J = {
16367
16754
  ...compVars$5,
16368
16755
  ...helperVars$3,
16369
16756
  };
@@ -16371,168 +16758,168 @@ const vars$I = {
16371
16758
  var container$1 = /*#__PURE__*/Object.freeze({
16372
16759
  __proto__: null,
16373
16760
  default: container,
16374
- vars: vars$I
16761
+ vars: vars$J
16375
16762
  });
16376
16763
 
16377
- const vars$H = LogoClass.cssVarList;
16764
+ const vars$I = LogoClass.cssVarList;
16378
16765
 
16379
16766
  const logo$2 = {
16380
- [vars$H.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
16767
+ [vars$I.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
16381
16768
  };
16382
16769
 
16383
16770
  var logo$3 = /*#__PURE__*/Object.freeze({
16384
16771
  __proto__: null,
16385
16772
  default: logo$2,
16386
- vars: vars$H
16773
+ vars: vars$I
16387
16774
  });
16388
16775
 
16389
- const vars$G = TotpImageClass.cssVarList;
16776
+ const vars$H = TotpImageClass.cssVarList;
16390
16777
 
16391
16778
  const logo$1 = {
16392
- [vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
16779
+ [vars$H.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
16393
16780
  };
16394
16781
 
16395
16782
  var totpImage = /*#__PURE__*/Object.freeze({
16396
16783
  __proto__: null,
16397
16784
  default: logo$1,
16398
- vars: vars$G
16785
+ vars: vars$H
16399
16786
  });
16400
16787
 
16401
- const vars$F = NotpImageClass.cssVarList;
16788
+ const vars$G = NotpImageClass.cssVarList;
16402
16789
 
16403
16790
  const logo = {
16404
- [vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
16791
+ [vars$G.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
16405
16792
  };
16406
16793
 
16407
16794
  var notpImage = /*#__PURE__*/Object.freeze({
16408
16795
  __proto__: null,
16409
16796
  default: logo,
16410
- vars: vars$F
16797
+ vars: vars$G
16411
16798
  });
16412
16799
 
16413
16800
  const globalRefs$s = getThemeRefs(globals);
16414
- const vars$E = TextClass.cssVarList;
16801
+ const vars$F = TextClass.cssVarList;
16415
16802
 
16416
16803
  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,
16804
+ [vars$F.hostDirection]: globalRefs$s.direction,
16805
+ [vars$F.textLineHeight]: '1.35em',
16806
+ [vars$F.textAlign]: 'left',
16807
+ [vars$F.textColor]: globalRefs$s.colors.surface.dark,
16421
16808
 
16422
16809
  variant: {
16423
16810
  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,
16811
+ [vars$F.fontSize]: globalRefs$s.typography.h1.size,
16812
+ [vars$F.fontWeight]: globalRefs$s.typography.h1.weight,
16813
+ [vars$F.fontFamily]: globalRefs$s.typography.h1.font,
16427
16814
  },
16428
16815
  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,
16816
+ [vars$F.fontSize]: globalRefs$s.typography.h2.size,
16817
+ [vars$F.fontWeight]: globalRefs$s.typography.h2.weight,
16818
+ [vars$F.fontFamily]: globalRefs$s.typography.h2.font,
16432
16819
  },
16433
16820
  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,
16821
+ [vars$F.fontSize]: globalRefs$s.typography.h3.size,
16822
+ [vars$F.fontWeight]: globalRefs$s.typography.h3.weight,
16823
+ [vars$F.fontFamily]: globalRefs$s.typography.h3.font,
16437
16824
  },
16438
16825
  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,
16826
+ [vars$F.fontSize]: globalRefs$s.typography.subtitle1.size,
16827
+ [vars$F.fontWeight]: globalRefs$s.typography.subtitle1.weight,
16828
+ [vars$F.fontFamily]: globalRefs$s.typography.subtitle1.font,
16442
16829
  },
16443
16830
  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,
16831
+ [vars$F.fontSize]: globalRefs$s.typography.subtitle2.size,
16832
+ [vars$F.fontWeight]: globalRefs$s.typography.subtitle2.weight,
16833
+ [vars$F.fontFamily]: globalRefs$s.typography.subtitle2.font,
16447
16834
  },
16448
16835
  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,
16836
+ [vars$F.fontSize]: globalRefs$s.typography.body1.size,
16837
+ [vars$F.fontWeight]: globalRefs$s.typography.body1.weight,
16838
+ [vars$F.fontFamily]: globalRefs$s.typography.body1.font,
16452
16839
  },
16453
16840
  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,
16841
+ [vars$F.fontSize]: globalRefs$s.typography.body2.size,
16842
+ [vars$F.fontWeight]: globalRefs$s.typography.body2.weight,
16843
+ [vars$F.fontFamily]: globalRefs$s.typography.body2.font,
16457
16844
  },
16458
16845
  },
16459
16846
 
16460
16847
  mode: {
16461
16848
  primary: {
16462
- [vars$E.textColor]: globalRefs$s.colors.surface.contrast,
16849
+ [vars$F.textColor]: globalRefs$s.colors.surface.contrast,
16463
16850
  },
16464
16851
  secondary: {
16465
- [vars$E.textColor]: globalRefs$s.colors.surface.dark,
16852
+ [vars$F.textColor]: globalRefs$s.colors.surface.dark,
16466
16853
  },
16467
16854
  error: {
16468
- [vars$E.textColor]: globalRefs$s.colors.error.main,
16855
+ [vars$F.textColor]: globalRefs$s.colors.error.main,
16469
16856
  },
16470
16857
  success: {
16471
- [vars$E.textColor]: globalRefs$s.colors.success.main,
16858
+ [vars$F.textColor]: globalRefs$s.colors.success.main,
16472
16859
  },
16473
16860
  },
16474
16861
 
16475
16862
  textAlign: {
16476
- right: { [vars$E.textAlign]: 'right' },
16477
- left: { [vars$E.textAlign]: 'left' },
16478
- center: { [vars$E.textAlign]: 'center' },
16863
+ right: { [vars$F.textAlign]: 'right' },
16864
+ left: { [vars$F.textAlign]: 'left' },
16865
+ center: { [vars$F.textAlign]: 'center' },
16479
16866
  },
16480
16867
 
16481
16868
  _fullWidth: {
16482
- [vars$E.hostWidth]: '100%',
16869
+ [vars$F.hostWidth]: '100%',
16483
16870
  },
16484
16871
 
16485
16872
  _italic: {
16486
- [vars$E.fontStyle]: 'italic',
16873
+ [vars$F.fontStyle]: 'italic',
16487
16874
  },
16488
16875
 
16489
16876
  _uppercase: {
16490
- [vars$E.textTransform]: 'uppercase',
16877
+ [vars$F.textTransform]: 'uppercase',
16491
16878
  },
16492
16879
 
16493
16880
  _lowercase: {
16494
- [vars$E.textTransform]: 'lowercase',
16881
+ [vars$F.textTransform]: 'lowercase',
16495
16882
  },
16496
16883
  };
16497
16884
 
16498
16885
  var text$1 = /*#__PURE__*/Object.freeze({
16499
16886
  __proto__: null,
16500
16887
  default: text,
16501
- vars: vars$E
16888
+ vars: vars$F
16502
16889
  });
16503
16890
 
16504
16891
  const globalRefs$r = getThemeRefs(globals);
16505
- const vars$D = LinkClass.cssVarList;
16892
+ const vars$E = LinkClass.cssVarList;
16506
16893
 
16507
16894
  const link = {
16508
- [vars$D.hostDirection]: globalRefs$r.direction,
16509
- [vars$D.cursor]: 'pointer',
16895
+ [vars$E.hostDirection]: globalRefs$r.direction,
16896
+ [vars$E.cursor]: 'pointer',
16510
16897
 
16511
- [vars$D.textColor]: globalRefs$r.colors.primary.main,
16898
+ [vars$E.textColor]: globalRefs$r.colors.primary.main,
16512
16899
 
16513
16900
  textAlign: {
16514
- right: { [vars$D.textAlign]: 'right' },
16515
- left: { [vars$D.textAlign]: 'left' },
16516
- center: { [vars$D.textAlign]: 'center' },
16901
+ right: { [vars$E.textAlign]: 'right' },
16902
+ left: { [vars$E.textAlign]: 'left' },
16903
+ center: { [vars$E.textAlign]: 'center' },
16517
16904
  },
16518
16905
 
16519
16906
  _fullWidth: {
16520
- [vars$D.hostWidth]: '100%',
16907
+ [vars$E.hostWidth]: '100%',
16521
16908
  },
16522
16909
 
16523
16910
  _hover: {
16524
- [vars$D.textDecoration]: 'underline',
16911
+ [vars$E.textDecoration]: 'underline',
16525
16912
  },
16526
16913
 
16527
16914
  mode: {
16528
16915
  secondary: {
16529
- [vars$D.textColor]: globalRefs$r.colors.secondary.main,
16916
+ [vars$E.textColor]: globalRefs$r.colors.secondary.main,
16530
16917
  },
16531
16918
  error: {
16532
- [vars$D.textColor]: globalRefs$r.colors.error.main,
16919
+ [vars$E.textColor]: globalRefs$r.colors.error.main,
16533
16920
  },
16534
16921
  success: {
16535
- [vars$D.textColor]: globalRefs$r.colors.success.main,
16922
+ [vars$E.textColor]: globalRefs$r.colors.success.main,
16536
16923
  },
16537
16924
  },
16538
16925
  };
@@ -16540,37 +16927,37 @@ const link = {
16540
16927
  var link$1 = /*#__PURE__*/Object.freeze({
16541
16928
  __proto__: null,
16542
16929
  default: link,
16543
- vars: vars$D
16930
+ vars: vars$E
16544
16931
  });
16545
16932
 
16546
16933
  const globalRefs$q = getThemeRefs(globals);
16547
- const vars$C = EnrichedTextClass.cssVarList;
16934
+ const vars$D = EnrichedTextClass.cssVarList;
16548
16935
 
16549
16936
  const enrichedText = {
16550
- [vars$C.hostDirection]: globalRefs$q.direction,
16551
- [vars$C.hostWidth]: useVar(vars$E.hostWidth),
16937
+ [vars$D.hostDirection]: globalRefs$q.direction,
16938
+ [vars$D.hostWidth]: useVar(vars$F.hostWidth),
16552
16939
 
16553
- [vars$C.textLineHeight]: useVar(vars$E.textLineHeight),
16554
- [vars$C.textColor]: useVar(vars$E.textColor),
16555
- [vars$C.textAlign]: useVar(vars$E.textAlign),
16940
+ [vars$D.textLineHeight]: useVar(vars$F.textLineHeight),
16941
+ [vars$D.textColor]: useVar(vars$F.textColor),
16942
+ [vars$D.textAlign]: useVar(vars$F.textAlign),
16556
16943
 
16557
- [vars$C.fontSize]: useVar(vars$E.fontSize),
16558
- [vars$C.fontWeight]: useVar(vars$E.fontWeight),
16559
- [vars$C.fontFamily]: useVar(vars$E.fontFamily),
16944
+ [vars$D.fontSize]: useVar(vars$F.fontSize),
16945
+ [vars$D.fontWeight]: useVar(vars$F.fontWeight),
16946
+ [vars$D.fontFamily]: useVar(vars$F.fontFamily),
16560
16947
 
16561
- [vars$C.linkColor]: useVar(vars$D.textColor),
16562
- [vars$C.linkTextDecoration]: 'none',
16563
- [vars$C.linkHoverTextDecoration]: 'underline',
16948
+ [vars$D.linkColor]: useVar(vars$E.textColor),
16949
+ [vars$D.linkTextDecoration]: 'none',
16950
+ [vars$D.linkHoverTextDecoration]: 'underline',
16564
16951
 
16565
- [vars$C.fontWeightBold]: '900',
16566
- [vars$C.minWidth]: '0.25em',
16567
- [vars$C.minHeight]: '1.35em',
16952
+ [vars$D.fontWeightBold]: '900',
16953
+ [vars$D.minWidth]: '0.25em',
16954
+ [vars$D.minHeight]: '1.35em',
16568
16955
 
16569
- [vars$C.hostDisplay]: 'inline-block',
16956
+ [vars$D.hostDisplay]: 'inline-block',
16570
16957
 
16571
16958
  _empty: {
16572
16959
  _hideWhenEmpty: {
16573
- [vars$C.hostDisplay]: 'none',
16960
+ [vars$D.hostDisplay]: 'none',
16574
16961
  },
16575
16962
  },
16576
16963
  };
@@ -16578,7 +16965,7 @@ const enrichedText = {
16578
16965
  var enrichedText$1 = /*#__PURE__*/Object.freeze({
16579
16966
  __proto__: null,
16580
16967
  default: enrichedText,
16581
- vars: vars$C
16968
+ vars: vars$D
16582
16969
  });
16583
16970
 
16584
16971
  const globalRefs$p = getThemeRefs(globals);
@@ -16589,7 +16976,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
16589
16976
  thickness: '2px',
16590
16977
  spacing: '10px',
16591
16978
  },
16592
- componentName$T
16979
+ componentName$U
16593
16980
  );
16594
16981
 
16595
16982
  const divider = {
@@ -16620,7 +17007,7 @@ const divider = {
16620
17007
  },
16621
17008
  };
16622
17009
 
16623
- const vars$B = {
17010
+ const vars$C = {
16624
17011
  ...compVars$4,
16625
17012
  ...helperVars$2,
16626
17013
  };
@@ -16628,93 +17015,93 @@ const vars$B = {
16628
17015
  var divider$1 = /*#__PURE__*/Object.freeze({
16629
17016
  __proto__: null,
16630
17017
  default: divider,
16631
- vars: vars$B
17018
+ vars: vars$C
16632
17019
  });
16633
17020
 
16634
- const vars$A = PasscodeClass.cssVarList;
17021
+ const vars$B = PasscodeClass.cssVarList;
16635
17022
 
16636
17023
  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,
17024
+ [vars$B.hostDirection]: refs.direction,
17025
+ [vars$B.fontFamily]: refs.fontFamily,
17026
+ [vars$B.fontSize]: refs.fontSize,
17027
+ [vars$B.labelTextColor]: refs.labelTextColor,
17028
+ [vars$B.labelRequiredIndicator]: refs.requiredIndicator,
17029
+ [vars$B.errorMessageTextColor]: refs.errorMessageTextColor,
17030
+ [vars$B.digitValueTextColor]: refs.valueTextColor,
17031
+ [vars$B.digitPadding]: '0',
17032
+ [vars$B.digitTextAlign]: 'center',
17033
+ [vars$B.digitSpacing]: '4px',
17034
+ [vars$B.hostWidth]: refs.width,
17035
+ [vars$B.digitOutlineColor]: 'transparent',
17036
+ [vars$B.digitOutlineWidth]: refs.outlineWidth,
17037
+ [vars$B.focusedDigitFieldOutlineColor]: refs.outlineColor,
17038
+ [vars$B.digitSize]: refs.inputHeight,
16652
17039
 
16653
17040
  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' },
17041
+ xs: { [vars$B.spinnerSize]: '15px' },
17042
+ sm: { [vars$B.spinnerSize]: '20px' },
17043
+ md: { [vars$B.spinnerSize]: '20px' },
17044
+ lg: { [vars$B.spinnerSize]: '20px' },
16658
17045
  },
16659
17046
 
16660
17047
  _hideCursor: {
16661
- [vars$A.digitCaretTextColor]: 'transparent',
17048
+ [vars$B.digitCaretTextColor]: 'transparent',
16662
17049
  },
16663
17050
 
16664
17051
  _loading: {
16665
- [vars$A.overlayOpacity]: refs.overlayOpacity,
17052
+ [vars$B.overlayOpacity]: refs.overlayOpacity,
16666
17053
  },
16667
17054
  };
16668
17055
 
16669
17056
  var passcode$1 = /*#__PURE__*/Object.freeze({
16670
17057
  __proto__: null,
16671
17058
  default: passcode,
16672
- vars: vars$A
17059
+ vars: vars$B
16673
17060
  });
16674
17061
 
16675
17062
  const globalRefs$o = getThemeRefs(globals);
16676
- const vars$z = LoaderLinearClass.cssVarList;
17063
+ const vars$A = LoaderLinearClass.cssVarList;
16677
17064
 
16678
17065
  const loaderLinear = {
16679
- [vars$z.hostDisplay]: 'inline-block',
16680
- [vars$z.hostWidth]: '100%',
17066
+ [vars$A.hostDisplay]: 'inline-block',
17067
+ [vars$A.hostWidth]: '100%',
16681
17068
 
16682
- [vars$z.barColor]: globalRefs$o.colors.surface.contrast,
16683
- [vars$z.barWidth]: '20%',
17069
+ [vars$A.barColor]: globalRefs$o.colors.surface.contrast,
17070
+ [vars$A.barWidth]: '20%',
16684
17071
 
16685
- [vars$z.barBackgroundColor]: globalRefs$o.colors.surface.light,
16686
- [vars$z.barBorderRadius]: '4px',
17072
+ [vars$A.barBackgroundColor]: globalRefs$o.colors.surface.light,
17073
+ [vars$A.barBorderRadius]: '4px',
16687
17074
 
16688
- [vars$z.animationDuration]: '2s',
16689
- [vars$z.animationTimingFunction]: 'linear',
16690
- [vars$z.animationIterationCount]: 'infinite',
16691
- [vars$z.verticalPadding]: '0.25em',
17075
+ [vars$A.animationDuration]: '2s',
17076
+ [vars$A.animationTimingFunction]: 'linear',
17077
+ [vars$A.animationIterationCount]: 'infinite',
17078
+ [vars$A.verticalPadding]: '0.25em',
16692
17079
 
16693
17080
  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' },
17081
+ xs: { [vars$A.barHeight]: '2px' },
17082
+ sm: { [vars$A.barHeight]: '4px' },
17083
+ md: { [vars$A.barHeight]: '6px' },
17084
+ lg: { [vars$A.barHeight]: '8px' },
16698
17085
  },
16699
17086
 
16700
17087
  mode: {
16701
17088
  primary: {
16702
- [vars$z.barColor]: globalRefs$o.colors.primary.main,
17089
+ [vars$A.barColor]: globalRefs$o.colors.primary.main,
16703
17090
  },
16704
17091
  secondary: {
16705
- [vars$z.barColor]: globalRefs$o.colors.secondary.main,
17092
+ [vars$A.barColor]: globalRefs$o.colors.secondary.main,
16706
17093
  },
16707
17094
  },
16708
17095
 
16709
17096
  _hidden: {
16710
- [vars$z.hostDisplay]: 'none',
17097
+ [vars$A.hostDisplay]: 'none',
16711
17098
  },
16712
17099
  };
16713
17100
 
16714
17101
  var loaderLinear$1 = /*#__PURE__*/Object.freeze({
16715
17102
  __proto__: null,
16716
17103
  default: loaderLinear,
16717
- vars: vars$z
17104
+ vars: vars$A
16718
17105
  });
16719
17106
 
16720
17107
  const globalRefs$n = getThemeRefs(globals);
@@ -16732,7 +17119,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
16732
17119
  },
16733
17120
  },
16734
17121
  },
16735
- componentName$_
17122
+ componentName$$
16736
17123
  );
16737
17124
 
16738
17125
  const loaderRadial = {
@@ -16761,7 +17148,7 @@ const loaderRadial = {
16761
17148
  [compVars$3.hostDisplay]: 'none',
16762
17149
  },
16763
17150
  };
16764
- const vars$y = {
17151
+ const vars$z = {
16765
17152
  ...compVars$3,
16766
17153
  ...helperVars$1,
16767
17154
  };
@@ -16769,93 +17156,134 @@ const vars$y = {
16769
17156
  var loaderRadial$1 = /*#__PURE__*/Object.freeze({
16770
17157
  __proto__: null,
16771
17158
  default: loaderRadial,
16772
- vars: vars$y
17159
+ vars: vars$z
16773
17160
  });
16774
17161
 
16775
17162
  const globalRefs$m = getThemeRefs(globals);
16776
- const vars$x = ComboBoxClass.cssVarList;
17163
+ const vars$y = ComboBoxClass.cssVarList;
16777
17164
 
16778
17165
  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,
17166
+ [vars$y.hostWidth]: refs.width,
17167
+ [vars$y.hostDirection]: refs.direction,
17168
+ [vars$y.fontSize]: refs.fontSize,
17169
+ [vars$y.fontFamily]: refs.fontFamily,
17170
+ [vars$y.labelFontSize]: refs.labelFontSize,
17171
+ [vars$y.labelFontWeight]: refs.labelFontWeight,
17172
+ [vars$y.labelTextColor]: refs.labelTextColor,
17173
+ [vars$y.errorMessageTextColor]: refs.errorMessageTextColor,
17174
+ [vars$y.inputBorderColor]: refs.borderColor,
17175
+ [vars$y.inputBorderWidth]: refs.borderWidth,
17176
+ [vars$y.inputBorderStyle]: refs.borderStyle,
17177
+ [vars$y.inputBorderRadius]: refs.borderRadius,
17178
+ [vars$y.inputOutlineColor]: refs.outlineColor,
17179
+ [vars$y.inputOutlineOffset]: refs.outlineOffset,
17180
+ [vars$y.inputOutlineWidth]: refs.outlineWidth,
17181
+ [vars$y.inputOutlineStyle]: refs.outlineStyle,
17182
+ [vars$y.labelRequiredIndicator]: refs.requiredIndicator,
17183
+ [vars$y.inputValueTextColor]: refs.valueTextColor,
17184
+ [vars$y.inputPlaceholderTextColor]: refs.placeholderTextColor,
17185
+ [vars$y.inputBackgroundColor]: refs.backgroundColor,
17186
+ [vars$y.inputHorizontalPadding]: refs.horizontalPadding,
17187
+ [vars$y.inputHeight]: refs.inputHeight,
17188
+ [vars$y.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
17189
+ [vars$y.inputDropdownButtonCursor]: 'pointer',
17190
+ [vars$y.inputDropdownButtonSize]: refs.toggleButtonSize,
17191
+ [vars$y.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
17192
+ [vars$y.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
17193
+ [vars$y.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
17194
+ [vars$y.labelPosition]: refs.labelPosition,
17195
+ [vars$y.labelTopPosition]: refs.labelTopPosition,
17196
+ [vars$y.labelHorizontalPosition]: refs.labelHorizontalPosition,
17197
+ [vars$y.inputTransformY]: refs.inputTransformY,
17198
+ [vars$y.inputTransition]: refs.inputTransition,
17199
+ [vars$y.marginInlineStart]: refs.marginInlineStart,
17200
+ [vars$y.placeholderOpacity]: refs.placeholderOpacity,
17201
+ [vars$y.inputVerticalAlignment]: refs.inputVerticalAlignment,
17202
+ [vars$y.valueInputHeight]: refs.valueInputHeight,
17203
+ [vars$y.valueInputMarginBottom]: refs.valueInputMarginBottom,
16817
17204
 
16818
17205
  _readonly: {
16819
- [vars$x.inputDropdownButtonCursor]: 'default',
17206
+ [vars$y.inputDropdownButtonCursor]: 'default',
16820
17207
  },
16821
17208
 
16822
17209
  // 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,
17210
+ [vars$y.overlayFontSize]: refs.fontSize,
17211
+ [vars$y.overlayFontFamily]: refs.fontFamily,
17212
+ [vars$y.overlayCursor]: 'pointer',
17213
+ [vars$y.overlayItemBoxShadow]: 'none',
17214
+ [vars$y.overlayBackground]: refs.backgroundColor,
17215
+ [vars$y.overlayTextColor]: refs.valueTextColor,
16829
17216
 
16830
17217
  // Overlay direct theme:
16831
- [vars$x.overlay.minHeight]: '400px',
16832
- [vars$x.overlay.margin]: '0',
17218
+ [vars$y.overlay.minHeight]: '400px',
17219
+ [vars$y.overlay.margin]: '0',
16833
17220
  };
16834
17221
 
16835
17222
  var comboBox$1 = /*#__PURE__*/Object.freeze({
16836
17223
  __proto__: null,
16837
17224
  comboBox: comboBox,
16838
17225
  default: comboBox,
16839
- vars: vars$x
17226
+ vars: vars$y
16840
17227
  });
16841
17228
 
16842
- const vars$w = ImageClass.cssVarList;
17229
+ const vars$x = ImageClass.cssVarList;
16843
17230
 
16844
17231
  const image = {};
16845
17232
 
16846
17233
  var image$1 = /*#__PURE__*/Object.freeze({
16847
17234
  __proto__: null,
16848
17235
  default: image,
16849
- vars: vars$w
17236
+ vars: vars$x
16850
17237
  });
16851
17238
 
16852
- const vars$v = PhoneFieldClass.cssVarList;
17239
+ const vars$w = PhoneFieldClass.cssVarList;
16853
17240
 
16854
17241
  const phoneField = {
16855
- [vars$v.hostWidth]: refs.width,
17242
+ [vars$w.hostWidth]: refs.width,
17243
+ [vars$w.hostDirection]: refs.direction,
17244
+ [vars$w.fontSize]: refs.fontSize,
17245
+ [vars$w.fontFamily]: refs.fontFamily,
17246
+ [vars$w.labelTextColor]: refs.labelTextColor,
17247
+ [vars$w.labelRequiredIndicator]: refs.requiredIndicator,
17248
+ [vars$w.errorMessageTextColor]: refs.errorMessageTextColor,
17249
+ [vars$w.inputValueTextColor]: refs.valueTextColor,
17250
+ [vars$w.inputPlaceholderTextColor]: refs.placeholderTextColor,
17251
+ [vars$w.inputBorderStyle]: refs.borderStyle,
17252
+ [vars$w.inputBorderWidth]: refs.borderWidth,
17253
+ [vars$w.inputBorderColor]: refs.borderColor,
17254
+ [vars$w.inputBorderRadius]: refs.borderRadius,
17255
+ [vars$w.inputOutlineStyle]: refs.outlineStyle,
17256
+ [vars$w.inputOutlineWidth]: refs.outlineWidth,
17257
+ [vars$w.inputOutlineColor]: refs.outlineColor,
17258
+ [vars$w.inputOutlineOffset]: refs.outlineOffset,
17259
+ [vars$w.phoneInputWidth]: refs.minWidth,
17260
+ [vars$w.countryCodeInputWidth]: '5em',
17261
+ [vars$w.countryCodeDropdownWidth]: '20em',
17262
+ [vars$w.marginInlineStart]: '-0.25em',
17263
+ [vars$w.valueInputHeight]: refs.valueInputHeight,
17264
+ [vars$w.valueInputMarginBottom]: refs.valueInputMarginBottom,
17265
+
17266
+ // '@overlay': {
17267
+ // overlayItemBackgroundColor: 'red'
17268
+ // }
17269
+ };
17270
+
17271
+ var phoneField$1 = /*#__PURE__*/Object.freeze({
17272
+ __proto__: null,
17273
+ default: phoneField,
17274
+ vars: vars$w
17275
+ });
17276
+
17277
+ const vars$v = PhoneFieldInputBoxClass.cssVarList;
17278
+
17279
+ const phoneInputBoxField = {
17280
+ [vars$v.hostWidth]: '16em',
17281
+ [vars$v.hostMinWidth]: refs.minWidth,
16856
17282
  [vars$v.hostDirection]: refs.direction,
16857
17283
  [vars$v.fontSize]: refs.fontSize,
16858
17284
  [vars$v.fontFamily]: refs.fontFamily,
17285
+ [vars$v.labelFontSize]: refs.labelFontSize,
17286
+ [vars$v.labelFontWeight]: refs.labelFontWeight,
16859
17287
  [vars$v.labelTextColor]: refs.labelTextColor,
16860
17288
  [vars$v.labelRequiredIndicator]: refs.requiredIndicator,
16861
17289
  [vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -16869,28 +17297,32 @@ const phoneField = {
16869
17297
  [vars$v.inputOutlineWidth]: refs.outlineWidth,
16870
17298
  [vars$v.inputOutlineColor]: refs.outlineColor,
16871
17299
  [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',
17300
+ [vars$v.labelPosition]: refs.labelPosition,
17301
+ [vars$v.labelTopPosition]: refs.labelTopPosition,
17302
+ [vars$v.labelHorizontalPosition]: refs.labelHorizontalPosition,
17303
+ [vars$v.inputTransformY]: refs.inputTransformY,
17304
+ [vars$v.inputTransition]: refs.inputTransition,
17305
+ [vars$v.marginInlineStart]: refs.marginInlineStart,
16876
17306
  [vars$v.valueInputHeight]: refs.valueInputHeight,
16877
17307
  [vars$v.valueInputMarginBottom]: refs.valueInputMarginBottom,
17308
+ [vars$v.inputHorizontalPadding]: '0',
16878
17309
 
16879
- // '@overlay': {
16880
- // overlayItemBackgroundColor: 'red'
16881
- // }
17310
+ _fullWidth: {
17311
+ [vars$v.hostWidth]: refs.width,
17312
+ },
16882
17313
  };
16883
17314
 
16884
- var phoneField$1 = /*#__PURE__*/Object.freeze({
17315
+ var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16885
17316
  __proto__: null,
16886
- default: phoneField,
17317
+ default: phoneInputBoxField,
16887
17318
  vars: vars$v
16888
17319
  });
16889
17320
 
16890
- const vars$u = PhoneFieldInputBoxClass.cssVarList;
17321
+ const globalRefs$l = getThemeRefs(globals);
17322
+ const vars$u = NewPasswordClass.cssVarList;
16891
17323
 
16892
- const phoneInputBoxField = {
16893
- [vars$u.hostWidth]: '16em',
17324
+ const newPassword = {
17325
+ [vars$u.hostWidth]: refs.width,
16894
17326
  [vars$u.hostMinWidth]: refs.minWidth,
16895
17327
  [vars$u.hostDirection]: refs.direction,
16896
17328
  [vars$u.fontSize]: refs.fontSize,
@@ -16898,171 +17330,126 @@ const phoneInputBoxField = {
16898
17330
  [vars$u.labelFontSize]: refs.labelFontSize,
16899
17331
  [vars$u.labelFontWeight]: refs.labelFontWeight,
16900
17332
  [vars$u.labelTextColor]: refs.labelTextColor,
16901
- [vars$u.labelRequiredIndicator]: refs.requiredIndicator,
17333
+ [vars$u.spaceBetweenInputs]: '1em',
16902
17334
  [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,
17335
+ [vars$u.policyPreviewBackgroundColor]: 'none',
17336
+ [vars$u.policyPreviewPadding]: globalRefs$l.spacing.lg,
16919
17337
  [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
17338
 
16952
17339
  _required: {
16953
17340
  // NewPassword doesn't pass `required` attribute to its Password components.
16954
17341
  // That's why we fake the required indicator on each input.
16955
17342
  // 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
17343
+ [vars$u.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16957
17344
  },
16958
17345
  };
16959
17346
 
16960
17347
  var newPassword$1 = /*#__PURE__*/Object.freeze({
16961
17348
  __proto__: null,
16962
17349
  default: newPassword,
16963
- vars: vars$t
17350
+ vars: vars$u
16964
17351
  });
16965
17352
 
16966
- const vars$s = UploadFileClass.cssVarList;
17353
+ const vars$t = UploadFileClass.cssVarList;
16967
17354
 
16968
17355
  const uploadFile = {
16969
- [vars$s.hostDirection]: refs.direction,
16970
- [vars$s.labelTextColor]: refs.labelTextColor,
16971
- [vars$s.fontFamily]: refs.fontFamily,
17356
+ [vars$t.hostDirection]: refs.direction,
17357
+ [vars$t.labelTextColor]: refs.labelTextColor,
17358
+ [vars$t.fontFamily]: refs.fontFamily,
16972
17359
 
16973
- [vars$s.iconSize]: '2em',
17360
+ [vars$t.iconSize]: '2em',
16974
17361
 
16975
- [vars$s.hostPadding]: '0.75em',
16976
- [vars$s.gap]: '0.5em',
17362
+ [vars$t.hostPadding]: '0.75em',
17363
+ [vars$t.gap]: '0.5em',
16977
17364
 
16978
- [vars$s.fontSize]: '16px',
16979
- [vars$s.titleFontWeight]: '500',
16980
- [vars$s.lineHeight]: '1em',
17365
+ [vars$t.fontSize]: '16px',
17366
+ [vars$t.titleFontWeight]: '500',
17367
+ [vars$t.lineHeight]: '1em',
16981
17368
 
16982
- [vars$s.borderWidth]: refs.borderWidth,
16983
- [vars$s.borderColor]: refs.borderColor,
16984
- [vars$s.borderRadius]: refs.borderRadius,
16985
- [vars$s.borderStyle]: 'dashed',
17369
+ [vars$t.borderWidth]: refs.borderWidth,
17370
+ [vars$t.borderColor]: refs.borderColor,
17371
+ [vars$t.borderRadius]: refs.borderRadius,
17372
+ [vars$t.borderStyle]: 'dashed',
16986
17373
 
16987
17374
  _required: {
16988
- [vars$s.requiredIndicator]: refs.requiredIndicator,
17375
+ [vars$t.requiredIndicator]: refs.requiredIndicator,
16989
17376
  },
16990
17377
 
16991
17378
  size: {
16992
17379
  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',
17380
+ [vars$t.hostHeight]: '196px',
17381
+ [vars$t.hostWidth]: '200px',
17382
+ [vars$t.titleFontSize]: '0.875em',
17383
+ [vars$t.descriptionFontSize]: '0.875em',
17384
+ [vars$t.lineHeight]: '1.25em',
16998
17385
  },
16999
17386
  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',
17387
+ [vars$t.hostHeight]: '216px',
17388
+ [vars$t.hostWidth]: '230px',
17389
+ [vars$t.titleFontSize]: '1em',
17390
+ [vars$t.descriptionFontSize]: '0.875em',
17391
+ [vars$t.lineHeight]: '1.25em',
17005
17392
  },
17006
17393
  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',
17394
+ [vars$t.hostHeight]: '256px',
17395
+ [vars$t.hostWidth]: '312px',
17396
+ [vars$t.titleFontSize]: '1.125em',
17397
+ [vars$t.descriptionFontSize]: '1em',
17398
+ [vars$t.lineHeight]: '1.5em',
17012
17399
  },
17013
17400
  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',
17401
+ [vars$t.hostHeight]: '280px',
17402
+ [vars$t.hostWidth]: '336px',
17403
+ [vars$t.titleFontSize]: '1.125em',
17404
+ [vars$t.descriptionFontSize]: '1.125em',
17405
+ [vars$t.lineHeight]: '1.75em',
17019
17406
  },
17020
17407
  },
17021
17408
 
17022
17409
  _fullWidth: {
17023
- [vars$s.hostWidth]: refs.width,
17410
+ [vars$t.hostWidth]: refs.width,
17024
17411
  },
17025
17412
  };
17026
17413
 
17027
17414
  var uploadFile$1 = /*#__PURE__*/Object.freeze({
17028
17415
  __proto__: null,
17029
17416
  default: uploadFile,
17030
- vars: vars$s
17417
+ vars: vars$t
17031
17418
  });
17032
17419
 
17033
17420
  const globalRefs$k = getThemeRefs(globals);
17034
17421
 
17035
- const vars$r = ButtonSelectionGroupItemClass.cssVarList;
17422
+ const vars$s = ButtonSelectionGroupItemClass.cssVarList;
17036
17423
 
17037
17424
  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,
17425
+ [vars$s.hostDirection]: 'inherit',
17426
+ [vars$s.backgroundColor]: globalRefs$k.colors.surface.main,
17427
+ [vars$s.labelTextColor]: globalRefs$k.colors.surface.contrast,
17428
+ [vars$s.borderColor]: globalRefs$k.colors.surface.light,
17429
+ [vars$s.borderStyle]: 'solid',
17430
+ [vars$s.borderRadius]: globalRefs$k.radius.sm,
17431
+ [vars$s.outlineColor]: 'transparent',
17432
+ [vars$s.borderWidth]: globalRefs$k.border.xs,
17046
17433
 
17047
17434
  _hover: {
17048
- [vars$r.backgroundColor]: globalRefs$k.colors.surface.highlight,
17435
+ [vars$s.backgroundColor]: globalRefs$k.colors.surface.highlight,
17049
17436
  },
17050
17437
 
17051
17438
  _focused: {
17052
- [vars$r.outlineColor]: globalRefs$k.colors.surface.light,
17439
+ [vars$s.outlineColor]: globalRefs$k.colors.surface.light,
17053
17440
  },
17054
17441
 
17055
17442
  _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,
17443
+ [vars$s.borderColor]: globalRefs$k.colors.surface.contrast,
17444
+ [vars$s.backgroundColor]: globalRefs$k.colors.surface.contrast,
17445
+ [vars$s.labelTextColor]: globalRefs$k.colors.surface.main,
17059
17446
  },
17060
17447
  };
17061
17448
 
17062
17449
  var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
17063
17450
  __proto__: null,
17064
17451
  default: buttonSelectionGroupItem,
17065
- vars: vars$r
17452
+ vars: vars$s
17066
17453
  });
17067
17454
 
17068
17455
  const globalRefs$j = getThemeRefs(globals);
@@ -17077,28 +17464,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
17077
17464
  [vars.hostWidth]: refs.width,
17078
17465
  });
17079
17466
 
17080
- const vars$q = ButtonSelectionGroupClass.cssVarList;
17467
+ const vars$r = ButtonSelectionGroupClass.cssVarList;
17081
17468
 
17082
17469
  const buttonSelectionGroup = {
17083
- ...createBaseButtonSelectionGroupMappings(vars$q),
17470
+ ...createBaseButtonSelectionGroupMappings(vars$r),
17084
17471
  };
17085
17472
 
17086
17473
  var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
17087
17474
  __proto__: null,
17088
17475
  default: buttonSelectionGroup,
17089
- vars: vars$q
17476
+ vars: vars$r
17090
17477
  });
17091
17478
 
17092
- const vars$p = ButtonMultiSelectionGroupClass.cssVarList;
17479
+ const vars$q = ButtonMultiSelectionGroupClass.cssVarList;
17093
17480
 
17094
17481
  const buttonMultiSelectionGroup = {
17095
- ...createBaseButtonSelectionGroupMappings(vars$p),
17482
+ ...createBaseButtonSelectionGroupMappings(vars$q),
17096
17483
  };
17097
17484
 
17098
17485
  var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
17099
17486
  __proto__: null,
17100
17487
  default: buttonMultiSelectionGroup,
17101
- vars: vars$p
17488
+ vars: vars$q
17102
17489
  });
17103
17490
 
17104
17491
  const globalRefs$i = getThemeRefs(globals);
@@ -17111,58 +17498,58 @@ const modal = {
17111
17498
  [compVars$2.overlayWidth]: '540px',
17112
17499
  };
17113
17500
 
17114
- const vars$o = {
17501
+ const vars$p = {
17115
17502
  ...compVars$2,
17116
17503
  };
17117
17504
 
17118
17505
  var modal$1 = /*#__PURE__*/Object.freeze({
17119
17506
  __proto__: null,
17120
17507
  default: modal,
17121
- vars: vars$o
17508
+ vars: vars$p
17122
17509
  });
17123
17510
 
17124
17511
  const globalRefs$h = getThemeRefs(globals);
17125
- const vars$n = GridClass.cssVarList;
17512
+ const vars$o = GridClass.cssVarList;
17126
17513
 
17127
17514
  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',
17515
+ [vars$o.hostWidth]: '100%',
17516
+ [vars$o.hostHeight]: '100%',
17517
+ [vars$o.hostMinHeight]: '400px',
17518
+ [vars$o.fontWeight]: '400',
17519
+ [vars$o.backgroundColor]: globalRefs$h.colors.surface.main,
17520
+
17521
+ [vars$o.fontSize]: refs.fontSize,
17522
+ [vars$o.fontFamily]: refs.fontFamily,
17523
+
17524
+ [vars$o.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
17525
+ [vars$o.activeSortIndicator]: globalRefs$h.colors.surface.dark,
17526
+ [vars$o.resizeHandleColor]: globalRefs$h.colors.surface.light,
17527
+
17528
+ [vars$o.borderWidth]: refs.borderWidth,
17529
+ [vars$o.borderStyle]: refs.borderStyle,
17530
+ [vars$o.borderRadius]: refs.borderRadius,
17531
+ [vars$o.borderColor]: 'transparent',
17532
+
17533
+ [vars$o.headerRowTextColor]: globalRefs$h.colors.surface.dark,
17534
+ [vars$o.separatorColor]: globalRefs$h.colors.surface.light,
17535
+
17536
+ [vars$o.valueTextColor]: globalRefs$h.colors.surface.contrast,
17537
+ [vars$o.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
17538
+ [vars$o.hostDirection]: globalRefs$h.direction,
17539
+
17540
+ [vars$o.toggleDetailsPanelButtonSize]: '1em',
17541
+ [vars$o.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
17542
+ [vars$o.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
17543
+ [vars$o.toggleDetailsPanelButtonCursor]: 'pointer',
17544
+ [vars$o.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
17545
+ [vars$o.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
17546
+ [vars$o.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
17547
+ [vars$o.detailsPanelLabelsFontSize]: '0.8em',
17548
+ [vars$o.detailsPanelItemsGap]: '2em',
17549
+ [vars$o.detailsPanelPadding]: '12px 0',
17163
17550
 
17164
17551
  _bordered: {
17165
- [vars$n.borderColor]: refs.borderColor,
17552
+ [vars$o.borderColor]: refs.borderColor,
17166
17553
  },
17167
17554
  };
17168
17555
 
@@ -17170,53 +17557,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
17170
17557
  __proto__: null,
17171
17558
  default: grid,
17172
17559
  grid: grid,
17173
- vars: vars$n
17560
+ vars: vars$o
17174
17561
  });
17175
17562
 
17176
17563
  const globalRefs$g = getThemeRefs(globals);
17177
- const vars$m = NotificationCardClass.cssVarList;
17564
+ const vars$n = NotificationCardClass.cssVarList;
17178
17565
 
17179
17566
  const shadowColor$2 = '#00000020';
17180
17567
 
17181
17568
  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,
17569
+ [vars$n.hostMinWidth]: '415px',
17570
+ [vars$n.fontFamily]: globalRefs$g.fonts.font1.family,
17571
+ [vars$n.fontSize]: globalRefs$g.typography.body1.size,
17572
+ [vars$n.backgroundColor]: globalRefs$g.colors.surface.main,
17573
+ [vars$n.textColor]: globalRefs$g.colors.surface.contrast,
17574
+ [vars$n.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
17575
+ [vars$n.verticalPadding]: '0.625em',
17576
+ [vars$n.horizontalPadding]: '1.5em',
17577
+ [vars$n.borderRadius]: globalRefs$g.radius.xs,
17191
17578
 
17192
17579
  _bordered: {
17193
- [vars$m.borderWidth]: globalRefs$g.border.sm,
17194
- [vars$m.borderStyle]: 'solid',
17195
- [vars$m.borderColor]: 'transparent',
17580
+ [vars$n.borderWidth]: globalRefs$g.border.sm,
17581
+ [vars$n.borderStyle]: 'solid',
17582
+ [vars$n.borderColor]: 'transparent',
17196
17583
  },
17197
17584
 
17198
17585
  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' },
17586
+ xs: { [vars$n.fontSize]: '12px' },
17587
+ sm: { [vars$n.fontSize]: '14px' },
17588
+ md: { [vars$n.fontSize]: '16px' },
17589
+ lg: { [vars$n.fontSize]: '18px' },
17203
17590
  },
17204
17591
 
17205
17592
  mode: {
17206
17593
  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,
17594
+ [vars$n.backgroundColor]: globalRefs$g.colors.primary.main,
17595
+ [vars$n.textColor]: globalRefs$g.colors.primary.contrast,
17596
+ [vars$n.borderColor]: globalRefs$g.colors.primary.light,
17210
17597
  },
17211
17598
  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,
17599
+ [vars$n.backgroundColor]: globalRefs$g.colors.success.main,
17600
+ [vars$n.textColor]: globalRefs$g.colors.success.contrast,
17601
+ [vars$n.borderColor]: globalRefs$g.colors.success.light,
17215
17602
  },
17216
17603
  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,
17604
+ [vars$n.backgroundColor]: globalRefs$g.colors.error.main,
17605
+ [vars$n.textColor]: globalRefs$g.colors.error.contrast,
17606
+ [vars$n.borderColor]: globalRefs$g.colors.error.light,
17220
17607
  },
17221
17608
  },
17222
17609
  };
@@ -17224,148 +17611,148 @@ const notification = {
17224
17611
  var notificationCard = /*#__PURE__*/Object.freeze({
17225
17612
  __proto__: null,
17226
17613
  default: notification,
17227
- vars: vars$m
17614
+ vars: vars$n
17228
17615
  });
17229
17616
 
17230
17617
  const globalRefs$f = getThemeRefs(globals);
17231
- const vars$l = MultiSelectComboBoxClass.cssVarList;
17618
+ const vars$m = MultiSelectComboBoxClass.cssVarList;
17232
17619
 
17233
17620
  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,
17621
+ [vars$m.hostWidth]: refs.width,
17622
+ [vars$m.hostDirection]: refs.direction,
17623
+ [vars$m.fontSize]: refs.fontSize,
17624
+ [vars$m.fontFamily]: refs.fontFamily,
17625
+ [vars$m.labelFontSize]: refs.labelFontSize,
17626
+ [vars$m.labelFontWeight]: refs.labelFontWeight,
17627
+ [vars$m.labelTextColor]: refs.labelTextColor,
17628
+ [vars$m.errorMessageTextColor]: refs.errorMessageTextColor,
17629
+ [vars$m.inputBorderColor]: refs.borderColor,
17630
+ [vars$m.inputBorderWidth]: refs.borderWidth,
17631
+ [vars$m.inputBorderStyle]: refs.borderStyle,
17632
+ [vars$m.inputBorderRadius]: refs.borderRadius,
17633
+ [vars$m.inputOutlineColor]: refs.outlineColor,
17634
+ [vars$m.inputOutlineOffset]: refs.outlineOffset,
17635
+ [vars$m.inputOutlineWidth]: refs.outlineWidth,
17636
+ [vars$m.inputOutlineStyle]: refs.outlineStyle,
17637
+ [vars$m.labelRequiredIndicator]: refs.requiredIndicator,
17638
+ [vars$m.inputValueTextColor]: refs.valueTextColor,
17639
+ [vars$m.inputPlaceholderTextColor]: refs.placeholderTextColor,
17640
+ [vars$m.inputBackgroundColor]: refs.backgroundColor,
17641
+ [vars$m.inputHorizontalPadding]: refs.horizontalPadding,
17642
+ [vars$m.inputVerticalPadding]: refs.verticalPadding,
17643
+ [vars$m.inputHeight]: refs.inputHeight,
17644
+ [vars$m.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
17645
+ [vars$m.inputDropdownButtonCursor]: 'pointer',
17646
+ [vars$m.inputDropdownButtonSize]: refs.toggleButtonSize,
17647
+ [vars$m.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
17648
+ [vars$m.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
17649
+ [vars$m.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
17650
+ [vars$m.chipFontSize]: refs.chipFontSize,
17651
+ [vars$m.chipTextColor]: globalRefs$f.colors.surface.contrast,
17652
+ [vars$m.chipBackgroundColor]: globalRefs$f.colors.surface.light,
17653
+ [vars$m.labelPosition]: refs.labelPosition,
17654
+ [vars$m.labelTopPosition]: refs.labelTopPosition,
17655
+ [vars$m.labelLeftPosition]: refs.labelLeftPosition,
17656
+ [vars$m.labelHorizontalPosition]: refs.labelHorizontalPosition,
17657
+ [vars$m.inputTransformY]: refs.inputTransformY,
17658
+ [vars$m.inputTransition]: refs.inputTransition,
17659
+ [vars$m.marginInlineStart]: refs.marginInlineStart,
17660
+ [vars$m.placeholderOpacity]: refs.placeholderOpacity,
17661
+ [vars$m.inputVerticalAlignment]: refs.inputVerticalAlignment,
17275
17662
 
17276
17663
  labelType: {
17277
17664
  floating: {
17278
- [vars$l.inputHorizontalPadding]: '0.25em',
17665
+ [vars$m.inputHorizontalPadding]: '0.25em',
17279
17666
  _hasValue: {
17280
- [vars$l.inputHorizontalPadding]: '0.45em',
17667
+ [vars$m.inputHorizontalPadding]: '0.45em',
17281
17668
  },
17282
17669
  },
17283
17670
  },
17284
17671
 
17285
17672
  _readonly: {
17286
- [vars$l.inputDropdownButtonCursor]: 'default',
17673
+ [vars$m.inputDropdownButtonCursor]: 'default',
17287
17674
  },
17288
17675
 
17289
17676
  // 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,
17677
+ [vars$m.overlayFontSize]: refs.fontSize,
17678
+ [vars$m.overlayFontFamily]: refs.fontFamily,
17679
+ [vars$m.overlayCursor]: 'pointer',
17680
+ [vars$m.overlayItemBoxShadow]: 'none',
17681
+ [vars$m.overlayBackground]: refs.backgroundColor,
17682
+ [vars$m.overlayTextColor]: refs.valueTextColor,
17296
17683
 
17297
17684
  // Overlay direct theme:
17298
- [vars$l.overlay.minHeight]: '400px',
17299
- [vars$l.overlay.margin]: '0',
17685
+ [vars$m.overlay.minHeight]: '400px',
17686
+ [vars$m.overlay.margin]: '0',
17300
17687
  };
17301
17688
 
17302
17689
  var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
17303
17690
  __proto__: null,
17304
17691
  default: multiSelectComboBox,
17305
17692
  multiSelectComboBox: multiSelectComboBox,
17306
- vars: vars$l
17693
+ vars: vars$m
17307
17694
  });
17308
17695
 
17309
17696
  const globalRefs$e = getThemeRefs(globals);
17310
- const vars$k = BadgeClass.cssVarList;
17697
+ const vars$l = BadgeClass.cssVarList;
17311
17698
 
17312
17699
  const badge = {
17313
- [vars$k.hostWidth]: 'fit-content',
17314
- [vars$k.hostDirection]: globalRefs$e.direction,
17700
+ [vars$l.hostWidth]: 'fit-content',
17701
+ [vars$l.hostDirection]: globalRefs$e.direction,
17315
17702
 
17316
- [vars$k.textAlign]: 'center',
17703
+ [vars$l.textAlign]: 'center',
17317
17704
 
17318
- [vars$k.fontFamily]: globalRefs$e.fonts.font1.family,
17319
- [vars$k.fontWeight]: '400',
17705
+ [vars$l.fontFamily]: globalRefs$e.fonts.font1.family,
17706
+ [vars$l.fontWeight]: '400',
17320
17707
 
17321
- [vars$k.verticalPadding]: '0.25em',
17322
- [vars$k.horizontalPadding]: '0.5em',
17708
+ [vars$l.verticalPadding]: '0.25em',
17709
+ [vars$l.horizontalPadding]: '0.5em',
17323
17710
 
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',
17711
+ [vars$l.borderWidth]: globalRefs$e.border.xs,
17712
+ [vars$l.borderRadius]: globalRefs$e.radius.xs,
17713
+ [vars$l.borderColor]: 'transparent',
17714
+ [vars$l.borderStyle]: 'solid',
17328
17715
 
17329
17716
  _fullWidth: {
17330
- [vars$k.hostWidth]: '100%',
17717
+ [vars$l.hostWidth]: '100%',
17331
17718
  },
17332
17719
 
17333
17720
  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' },
17721
+ xs: { [vars$l.fontSize]: '12px' },
17722
+ sm: { [vars$l.fontSize]: '14px' },
17723
+ md: { [vars$l.fontSize]: '16px' },
17724
+ lg: { [vars$l.fontSize]: '18px' },
17338
17725
  },
17339
17726
 
17340
17727
  mode: {
17341
17728
  default: {
17342
- [vars$k.textColor]: globalRefs$e.colors.surface.dark,
17729
+ [vars$l.textColor]: globalRefs$e.colors.surface.dark,
17343
17730
  _bordered: {
17344
- [vars$k.borderColor]: globalRefs$e.colors.surface.light,
17731
+ [vars$l.borderColor]: globalRefs$e.colors.surface.light,
17345
17732
  },
17346
17733
  },
17347
17734
  primary: {
17348
- [vars$k.textColor]: globalRefs$e.colors.primary.main,
17735
+ [vars$l.textColor]: globalRefs$e.colors.primary.main,
17349
17736
  _bordered: {
17350
- [vars$k.borderColor]: globalRefs$e.colors.primary.light,
17737
+ [vars$l.borderColor]: globalRefs$e.colors.primary.light,
17351
17738
  },
17352
17739
  },
17353
17740
  secondary: {
17354
- [vars$k.textColor]: globalRefs$e.colors.secondary.main,
17741
+ [vars$l.textColor]: globalRefs$e.colors.secondary.main,
17355
17742
  _bordered: {
17356
- [vars$k.borderColor]: globalRefs$e.colors.secondary.light,
17743
+ [vars$l.borderColor]: globalRefs$e.colors.secondary.light,
17357
17744
  },
17358
17745
  },
17359
17746
  error: {
17360
- [vars$k.textColor]: globalRefs$e.colors.error.main,
17747
+ [vars$l.textColor]: globalRefs$e.colors.error.main,
17361
17748
  _bordered: {
17362
- [vars$k.borderColor]: globalRefs$e.colors.error.light,
17749
+ [vars$l.borderColor]: globalRefs$e.colors.error.light,
17363
17750
  },
17364
17751
  },
17365
17752
  success: {
17366
- [vars$k.textColor]: globalRefs$e.colors.success.main,
17753
+ [vars$l.textColor]: globalRefs$e.colors.success.main,
17367
17754
  _bordered: {
17368
- [vars$k.borderColor]: globalRefs$e.colors.success.light,
17755
+ [vars$l.borderColor]: globalRefs$e.colors.success.light,
17369
17756
  },
17370
17757
  },
17371
17758
  },
@@ -17374,7 +17761,7 @@ const badge = {
17374
17761
  var badge$1 = /*#__PURE__*/Object.freeze({
17375
17762
  __proto__: null,
17376
17763
  default: badge,
17377
- vars: vars$k
17764
+ vars: vars$l
17378
17765
  });
17379
17766
 
17380
17767
  const globalRefs$d = getThemeRefs(globals);
@@ -17412,144 +17799,144 @@ const avatar = {
17412
17799
  },
17413
17800
  };
17414
17801
 
17415
- const vars$j = {
17802
+ const vars$k = {
17416
17803
  ...compVars$1,
17417
17804
  };
17418
17805
 
17419
17806
  var avatar$1 = /*#__PURE__*/Object.freeze({
17420
17807
  __proto__: null,
17421
17808
  default: avatar,
17422
- vars: vars$j
17809
+ vars: vars$k
17423
17810
  });
17424
17811
 
17425
17812
  const globalRefs$c = getThemeRefs(globals);
17426
17813
 
17427
- const vars$i = MappingsFieldClass.cssVarList;
17814
+ const vars$j = MappingsFieldClass.cssVarList;
17428
17815
 
17429
17816
  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',
17817
+ [vars$j.hostWidth]: refs.width,
17818
+ [vars$j.hostDirection]: refs.direction,
17819
+ [vars$j.fontSize]: refs.fontSize,
17820
+ [vars$j.fontFamily]: refs.fontFamily,
17821
+ [vars$j.separatorFontSize]: '14px',
17822
+ [vars$j.labelsFontSize]: '14px',
17823
+ [vars$j.labelsLineHeight]: '1',
17824
+ [vars$j.labelsMarginBottom]: '6px',
17825
+ [vars$j.labelTextColor]: refs.labelTextColor,
17826
+ [vars$j.itemMarginBottom]: '1em',
17440
17827
  // To be positioned correctly, the min width has to match the text field min width
17441
- [vars$i.valueLabelMinWidth]: refs.minWidth,
17828
+ [vars$j.valueLabelMinWidth]: refs.minWidth,
17442
17829
  // 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',
17830
+ [vars$j.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
17831
+ [vars$j.separatorWidth]: '70px',
17832
+ [vars$j.removeButtonWidth]: '60px',
17446
17833
  };
17447
17834
 
17448
17835
  var mappingsField$1 = /*#__PURE__*/Object.freeze({
17449
17836
  __proto__: null,
17450
17837
  default: mappingsField,
17451
17838
  mappingsField: mappingsField,
17452
- vars: vars$i
17839
+ vars: vars$j
17453
17840
  });
17454
17841
 
17455
17842
  const globalRefs$b = getThemeRefs(globals);
17456
- const vars$h = UserAttributeClass.cssVarList;
17843
+ const vars$i = UserAttributeClass.cssVarList;
17457
17844
 
17458
17845
  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',
17846
+ [vars$i.hostDirection]: globalRefs$b.direction,
17847
+ [vars$i.labelTextWidth]: '150px',
17848
+ [vars$i.valueTextWidth]: '200px',
17849
+ [vars$i.badgeMaxWidth]: '85px',
17850
+ [vars$i.itemsGap]: '16px',
17851
+ [vars$i.hostMinWidth]: '530px',
17465
17852
  _fullWidth: {
17466
- [vars$h.hostWidth]: '100%',
17853
+ [vars$i.hostWidth]: '100%',
17467
17854
  },
17468
17855
  };
17469
17856
 
17470
17857
  var userAttribute$1 = /*#__PURE__*/Object.freeze({
17471
17858
  __proto__: null,
17472
17859
  default: userAttribute,
17473
- vars: vars$h
17860
+ vars: vars$i
17474
17861
  });
17475
17862
 
17476
17863
  const globalRefs$a = getThemeRefs(globals);
17477
- const vars$g = UserAuthMethodClass.cssVarList;
17864
+ const vars$h = UserAuthMethodClass.cssVarList;
17478
17865
 
17479
17866
  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',
17867
+ [vars$h.hostDirection]: globalRefs$a.direction,
17868
+ [vars$h.labelTextWidth]: '200px',
17869
+ [vars$h.itemsGap]: '16px',
17870
+ [vars$h.hostMinWidth]: '530px',
17871
+ [vars$h.iconSize]: '24px',
17872
+ [vars$h.iconColor]: 'currentcolor',
17486
17873
  _fullWidth: {
17487
- [vars$g.hostWidth]: '100%',
17874
+ [vars$h.hostWidth]: '100%',
17488
17875
  },
17489
17876
  };
17490
17877
 
17491
17878
  var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
17492
17879
  __proto__: null,
17493
17880
  default: userAuthMethod,
17494
- vars: vars$g
17881
+ vars: vars$h
17495
17882
  });
17496
17883
 
17497
- const vars$f = SamlGroupMappingsClass.cssVarList;
17884
+ const vars$g = SamlGroupMappingsClass.cssVarList;
17498
17885
 
17499
17886
  const samlGroupMappings = {
17500
- [vars$f.hostWidth]: refs.width,
17501
- [vars$f.hostDirection]: refs.direction,
17502
- [vars$f.groupNameInputMarginBottom]: '1em',
17887
+ [vars$g.hostWidth]: refs.width,
17888
+ [vars$g.hostDirection]: refs.direction,
17889
+ [vars$g.groupNameInputMarginBottom]: '1em',
17503
17890
  };
17504
17891
 
17505
17892
  var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
17506
17893
  __proto__: null,
17507
17894
  default: samlGroupMappings,
17508
17895
  samlGroupMappings: samlGroupMappings,
17509
- vars: vars$f
17896
+ vars: vars$g
17510
17897
  });
17511
17898
 
17512
17899
  const globalRefs$9 = getThemeRefs(globals);
17513
- const vars$e = PolicyValidationClass.cssVarList;
17900
+ const vars$f = PolicyValidationClass.cssVarList;
17514
17901
 
17515
17902
  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,
17903
+ [vars$f.fontFamily]: refs.fontFamily,
17904
+ [vars$f.fontSize]: refs.labelFontSize,
17905
+ [vars$f.textColor]: refs.labelTextColor,
17906
+ [vars$f.borderWidth]: refs.borderWidth,
17907
+ [vars$f.borderStyle]: refs.borderStyle,
17908
+ [vars$f.borderColor]: refs.borderColor,
17909
+ [vars$f.borderRadius]: globalRefs$9.radius.sm,
17910
+ [vars$f.backgroundColor]: 'none',
17911
+ [vars$f.padding]: '0px',
17912
+ [vars$f.labelMargin]: globalRefs$9.spacing.sm,
17913
+ [vars$f.itemsSpacing]: globalRefs$9.spacing.lg,
17914
+ [vars$f.itemSymbolDefault]: "'\\2022'", // "•"
17915
+ [vars$f.itemSymbolSuccess]: "'\\2713'", // "✓"
17916
+ [vars$f.itemSymbolError]: "'\\2A09'", // "⨉"
17917
+ [vars$f.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
17918
+ [vars$f.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
17532
17919
  };
17533
17920
 
17534
17921
  var policyValidation$1 = /*#__PURE__*/Object.freeze({
17535
17922
  __proto__: null,
17536
17923
  default: policyValidation,
17537
- vars: vars$e
17924
+ vars: vars$f
17538
17925
  });
17539
17926
 
17540
- const vars$d = IconClass.cssVarList;
17927
+ const vars$e = IconClass.cssVarList;
17541
17928
 
17542
17929
  const icon = {};
17543
17930
 
17544
17931
  var icon$1 = /*#__PURE__*/Object.freeze({
17545
17932
  __proto__: null,
17546
17933
  default: icon,
17547
- vars: vars$d
17934
+ vars: vars$e
17548
17935
  });
17549
17936
 
17550
17937
  const globalRefs$8 = getThemeRefs(globals);
17551
17938
 
17552
- const vars$c = CodeSnippetClass.cssVarList;
17939
+ const vars$d = CodeSnippetClass.cssVarList;
17553
17940
 
17554
17941
  const light = {
17555
17942
  color1: '#fa0',
@@ -17584,50 +17971,50 @@ const dark = {
17584
17971
  };
17585
17972
 
17586
17973
  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,
17974
+ [vars$d.rootBgColor]: globalRefs$8.colors.surface.main,
17975
+ [vars$d.rootTextColor]: globalRefs$8.colors.surface.contrast,
17976
+ [vars$d.docTagTextColor]: light.color2,
17977
+ [vars$d.keywordTextColor]: light.color2,
17978
+ [vars$d.metaKeywordTextColor]: light.color2,
17979
+ [vars$d.templateTagTextColor]: light.color2,
17980
+ [vars$d.templateVariableTextColor]: light.color2,
17981
+ [vars$d.typeTextColor]: light.color2,
17982
+ [vars$d.variableLanguageTextColor]: light.color2,
17983
+ [vars$d.titleTextColor]: light.color3,
17984
+ [vars$d.titleClassTextColor]: light.color3,
17985
+ [vars$d.titleClassInheritedTextColor]: light.color3,
17986
+ [vars$d.titleFunctionTextColor]: light.color3,
17987
+ [vars$d.attrTextColor]: light.color4,
17988
+ [vars$d.attributeTextColor]: light.color4,
17989
+ [vars$d.literalTextColor]: light.color4,
17990
+ [vars$d.metaTextColor]: light.color4,
17991
+ [vars$d.numberTextColor]: light.color4,
17992
+ [vars$d.operatorTextColor]: light.color4,
17993
+ [vars$d.variableTextColor]: light.color4,
17994
+ [vars$d.selectorAttrTextColor]: light.color4,
17995
+ [vars$d.selectorClassTextColor]: light.color4,
17996
+ [vars$d.selectorIdTextColor]: light.color4,
17997
+ [vars$d.regexpTextColor]: light.color13,
17998
+ [vars$d.stringTextColor]: light.color13,
17999
+ [vars$d.metaStringTextColor]: light.color13,
18000
+ [vars$d.builtInTextColor]: light.color5,
18001
+ [vars$d.symbolTextColor]: light.color5,
18002
+ [vars$d.commentTextColor]: light.color6,
18003
+ [vars$d.codeTextColor]: light.color6,
18004
+ [vars$d.formulaTextColor]: light.color6,
18005
+ [vars$d.nameTextColor]: light.color7,
18006
+ [vars$d.quoteTextColor]: light.color7,
18007
+ [vars$d.selectorTagTextColor]: light.color7,
18008
+ [vars$d.selectorPseudoTextColor]: light.color7,
18009
+ [vars$d.substTextColor]: light.color8,
18010
+ [vars$d.sectionTextColor]: light.color4,
18011
+ [vars$d.bulletTextColor]: light.color9,
18012
+ [vars$d.emphasisTextColor]: light.color8,
18013
+ [vars$d.strongTextColor]: light.color8,
18014
+ [vars$d.additionTextColor]: light.color7,
18015
+ [vars$d.additionBgColor]: light.color10,
18016
+ [vars$d.deletionTextColor]: light.color2,
18017
+ [vars$d.deletionBgColor]: light.color10,
17631
18018
  /* purposely ignored */
17632
18019
  // [vars.charEscapeTextColor]: '',
17633
18020
  // [vars.linkTextColor]: '',
@@ -17639,50 +18026,50 @@ const CodeSnippet = {
17639
18026
 
17640
18027
  const codeSnippetDarkThemeOverrides = {
17641
18028
  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,
18029
+ [vars$d.rootBgColor]: globalRefs$8.colors.surface.main,
18030
+ [vars$d.rootTextColor]: globalRefs$8.colors.surface.contrast,
18031
+ [vars$d.docTagTextColor]: dark.color2,
18032
+ [vars$d.keywordTextColor]: dark.color2,
18033
+ [vars$d.metaKeywordTextColor]: dark.color2,
18034
+ [vars$d.templateTagTextColor]: dark.color2,
18035
+ [vars$d.templateVariableTextColor]: dark.color2,
18036
+ [vars$d.typeTextColor]: dark.color2,
18037
+ [vars$d.variableLanguageTextColor]: dark.color2,
18038
+ [vars$d.titleTextColor]: dark.color3,
18039
+ [vars$d.titleClassTextColor]: dark.color3,
18040
+ [vars$d.titleClassInheritedTextColor]: dark.color3,
18041
+ [vars$d.titleFunctionTextColor]: dark.color3,
18042
+ [vars$d.attrTextColor]: dark.color4,
18043
+ [vars$d.attributeTextColor]: dark.color4,
18044
+ [vars$d.literalTextColor]: dark.color4,
18045
+ [vars$d.metaTextColor]: dark.color4,
18046
+ [vars$d.numberTextColor]: dark.color4,
18047
+ [vars$d.operatorTextColor]: dark.color4,
18048
+ [vars$d.variableTextColor]: dark.color4,
18049
+ [vars$d.selectorAttrTextColor]: dark.color4,
18050
+ [vars$d.selectorClassTextColor]: dark.color4,
18051
+ [vars$d.selectorIdTextColor]: dark.color4,
18052
+ [vars$d.regexpTextColor]: dark.color13,
18053
+ [vars$d.stringTextColor]: dark.color13,
18054
+ [vars$d.metaStringTextColor]: dark.color13,
18055
+ [vars$d.builtInTextColor]: dark.color5,
18056
+ [vars$d.symbolTextColor]: dark.color5,
18057
+ [vars$d.commentTextColor]: dark.color6,
18058
+ [vars$d.codeTextColor]: dark.color6,
18059
+ [vars$d.formulaTextColor]: dark.color6,
18060
+ [vars$d.nameTextColor]: dark.color7,
18061
+ [vars$d.quoteTextColor]: dark.color7,
18062
+ [vars$d.selectorTagTextColor]: dark.color7,
18063
+ [vars$d.selectorPseudoTextColor]: dark.color7,
18064
+ [vars$d.substTextColor]: dark.color8,
18065
+ [vars$d.sectionTextColor]: dark.color4,
18066
+ [vars$d.bulletTextColor]: dark.color9,
18067
+ [vars$d.emphasisTextColor]: dark.color8,
18068
+ [vars$d.strongTextColor]: dark.color8,
18069
+ [vars$d.additionTextColor]: dark.color7,
18070
+ [vars$d.additionBgColor]: dark.color10,
18071
+ [vars$d.deletionTextColor]: dark.color2,
18072
+ [vars$d.deletionBgColor]: dark.color10,
17686
18073
  },
17687
18074
  };
17688
18075
 
@@ -17690,36 +18077,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
17690
18077
  __proto__: null,
17691
18078
  codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
17692
18079
  default: CodeSnippet,
17693
- vars: vars$c
18080
+ vars: vars$d
17694
18081
  });
17695
18082
 
17696
- const vars$b = RadioGroupClass.cssVarList;
18083
+ const vars$c = RadioGroupClass.cssVarList;
17697
18084
  const globalRefs$7 = getThemeRefs(globals);
17698
18085
 
17699
18086
  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,
18087
+ [vars$c.buttonsRowGap]: '9px',
18088
+ [vars$c.hostWidth]: refs.width,
18089
+ [vars$c.hostDirection]: refs.direction,
18090
+ [vars$c.fontSize]: refs.fontSize,
18091
+ [vars$c.fontFamily]: refs.fontFamily,
18092
+ [vars$c.labelTextColor]: refs.labelTextColor,
18093
+ [vars$c.labelRequiredIndicator]: refs.requiredIndicator,
18094
+ [vars$c.errorMessageTextColor]: refs.errorMessageTextColor,
18095
+ [vars$c.helperTextColor]: refs.helperTextColor,
18096
+ [vars$c.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
17710
18097
 
17711
18098
  textAlign: {
17712
- right: { [vars$b.inputTextAlign]: 'right' },
17713
- left: { [vars$b.inputTextAlign]: 'left' },
17714
- center: { [vars$b.inputTextAlign]: 'center' },
18099
+ right: { [vars$c.inputTextAlign]: 'right' },
18100
+ left: { [vars$c.inputTextAlign]: 'left' },
18101
+ center: { [vars$c.inputTextAlign]: 'center' },
17715
18102
  },
17716
18103
 
17717
18104
  _fullWidth: {
17718
- [vars$b.buttonsSpacing]: 'space-between',
18105
+ [vars$c.buttonsSpacing]: 'space-between',
17719
18106
  },
17720
18107
 
17721
18108
  _disabled: {
17722
- [vars$b.itemsLabelColor]: globalRefs$7.colors.surface.light,
18109
+ [vars$c.itemsLabelColor]: globalRefs$7.colors.surface.light,
17723
18110
  },
17724
18111
  };
17725
18112
 
@@ -17727,24 +18114,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
17727
18114
  __proto__: null,
17728
18115
  default: radioGroup,
17729
18116
  radioGroup: radioGroup,
17730
- vars: vars$b
18117
+ vars: vars$c
17731
18118
  });
17732
18119
 
17733
- const vars$a = RadioButtonClass.cssVarList;
18120
+ const vars$b = RadioButtonClass.cssVarList;
17734
18121
  const globalRefs$6 = getThemeRefs(globals);
17735
18122
 
17736
18123
  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,
18124
+ [vars$b.fontFamily]: refs.fontFamily,
18125
+ [vars$b.radioSize]: 'calc(1em + 6px)',
18126
+ [vars$b.radioMargin]: 'auto 4px',
18127
+ [vars$b.radioCheckedSize]: `calc(var(${vars$b.radioSize})/5)`,
18128
+ [vars$b.radioCheckedColor]: globalRefs$6.colors.surface.light,
18129
+ [vars$b.radioBackgroundColor]: globalRefs$6.colors.surface.light,
18130
+ [vars$b.radioBorderColor]: 'none',
18131
+ [vars$b.radioBorderWidth]: 0,
17745
18132
 
17746
18133
  _checked: {
17747
- [vars$a.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
18134
+ [vars$b.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
17748
18135
  },
17749
18136
 
17750
18137
  _hover: {
@@ -17753,16 +18140,16 @@ const radioButton = {
17753
18140
 
17754
18141
  size: {
17755
18142
  xs: {
17756
- [vars$a.fontSize]: '12px',
18143
+ [vars$b.fontSize]: '12px',
17757
18144
  },
17758
18145
  sm: {
17759
- [vars$a.fontSize]: '14px',
18146
+ [vars$b.fontSize]: '14px',
17760
18147
  },
17761
18148
  md: {
17762
- [vars$a.fontSize]: '16px',
18149
+ [vars$b.fontSize]: '16px',
17763
18150
  },
17764
18151
  lg: {
17765
- [vars$a.fontSize]: '18px',
18152
+ [vars$b.fontSize]: '18px',
17766
18153
  },
17767
18154
  },
17768
18155
  };
@@ -17771,128 +18158,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
17771
18158
  __proto__: null,
17772
18159
  default: radioButton,
17773
18160
  radioButton: radioButton,
17774
- vars: vars$a
18161
+ vars: vars$b
17775
18162
  });
17776
18163
 
17777
18164
  const globalRefs$5 = getThemeRefs(globals);
17778
18165
 
17779
- const vars$9 = CalendarClass.cssVarList;
18166
+ const vars$a = CalendarClass.cssVarList;
17780
18167
 
17781
18168
  const calendar = {
17782
- [vars$9.fontFamily]: refs.fontFamily,
17783
- [vars$9.fontSize]: refs.fontSize,
17784
- [vars$9.hostDirection]: refs.direction,
18169
+ [vars$a.fontFamily]: refs.fontFamily,
18170
+ [vars$a.fontSize]: refs.fontSize,
18171
+ [vars$a.hostDirection]: refs.direction,
17785
18172
 
17786
- [vars$9.calendarPadding]: '1em',
18173
+ [vars$a.calendarPadding]: '1em',
17787
18174
 
17788
- [vars$9.topNavVerticalPadding]: '1em',
17789
- [vars$9.topNavAlignment]: 'space-between',
17790
- [vars$9.topNavGap]: '0',
17791
- [vars$9.topNavSelectorsGap]: '0.5em',
18175
+ [vars$a.topNavVerticalPadding]: '1em',
18176
+ [vars$a.topNavAlignment]: 'space-between',
18177
+ [vars$a.topNavGap]: '0',
18178
+ [vars$a.topNavSelectorsGap]: '0.5em',
17792
18179
 
17793
- [vars$9.bottomNavVerticalPadding]: '0.75em',
17794
- [vars$9.bottomNavHorizontalPadding]: '1.5em',
17795
- [vars$9.bottomNavAlignment]: 'space-between',
17796
- [vars$9.bottomNavGap]: '0.5em',
18180
+ [vars$a.bottomNavVerticalPadding]: '0.75em',
18181
+ [vars$a.bottomNavHorizontalPadding]: '1.5em',
18182
+ [vars$a.bottomNavAlignment]: 'space-between',
18183
+ [vars$a.bottomNavGap]: '0.5em',
17797
18184
 
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',
18185
+ [vars$a.navMarginBottom]: '0.75em',
18186
+ [vars$a.navBorderBottomWidth]: '1px',
18187
+ [vars$a.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
18188
+ [vars$a.navBorderBottomStyle]: 'solid',
17802
18189
 
17803
- [vars$9.yearInputWidth]: '6em',
17804
- [vars$9.monthInputWidth]: '8em',
18190
+ [vars$a.yearInputWidth]: '6em',
18191
+ [vars$a.monthInputWidth]: '8em',
17805
18192
 
17806
- [vars$9.navButtonSize]: '24px',
17807
- [vars$9.navButtonCursor]: 'pointer',
18193
+ [vars$a.navButtonSize]: '24px',
18194
+ [vars$a.navButtonCursor]: 'pointer',
17808
18195
 
17809
- [vars$9.weekdayFontSize]: '0.875em',
17810
- [vars$9.weekdayFontWeight]: '500',
18196
+ [vars$a.weekdayFontSize]: '0.875em',
18197
+ [vars$a.weekdayFontWeight]: '500',
17811
18198
 
17812
18199
  // day table cell
17813
- [vars$9.dayHeight]: '3.125em',
18200
+ [vars$a.dayHeight]: '3.125em',
17814
18201
 
17815
18202
  // 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,
18203
+ [vars$a.daySize]: '2.125em',
18204
+ [vars$a.dayFontSize]: '1em',
18205
+ [vars$a.dayRadius]: '50%',
18206
+ [vars$a.dayTextAlign]: 'center',
18207
+ [vars$a.dayPadding]: '0',
18208
+ [vars$a.dayTextColor]: globalRefs$5.colors.surface.contrast,
18209
+ [vars$a.dayFontWeight]: '500',
18210
+ [vars$a.dayBackgroundColor]: 'transparent',
18211
+ [vars$a.dayCursor]: 'pointer',
18212
+ [vars$a.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
17826
18213
 
17827
18214
  // selected day
17828
- [vars$9.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
17829
- [vars$9.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
18215
+ [vars$a.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
18216
+ [vars$a.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
17830
18217
 
17831
18218
  // disabled day (out of min/max range)
17832
- [vars$9.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
18219
+ [vars$a.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
17833
18220
 
17834
18221
  // today
17835
- [vars$9.currentDayBorderColor]: globalRefs$5.colors.surface.light,
17836
- [vars$9.currentDayBorderWidth]: '1px',
17837
- [vars$9.currentDayBorderStyle]: 'solid',
18222
+ [vars$a.currentDayBorderColor]: globalRefs$5.colors.surface.light,
18223
+ [vars$a.currentDayBorderWidth]: '1px',
18224
+ [vars$a.currentDayBorderStyle]: 'solid',
17838
18225
 
17839
18226
  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' },
18227
+ xs: { [vars$a.fontSize]: '12px' },
18228
+ sm: { [vars$a.fontSize]: '14px' },
18229
+ md: { [vars$a.fontSize]: '16px' },
18230
+ lg: { [vars$a.fontSize]: '18px' },
17844
18231
  },
17845
18232
 
17846
- [vars$9.navButtonRotation]: 'rotate(180deg)',
18233
+ [vars$a.navButtonRotation]: 'rotate(180deg)',
17847
18234
 
17848
18235
  _disabled: {
17849
- [vars$9.navButtonOpacity]: '0.5',
17850
- [vars$9.dayBackgroundColorHover]: 'none',
17851
- [vars$9.navButtonCursor]: 'default',
17852
- [vars$9.dayCursor]: 'default',
18236
+ [vars$a.navButtonOpacity]: '0.5',
18237
+ [vars$a.dayBackgroundColorHover]: 'none',
18238
+ [vars$a.navButtonCursor]: 'default',
18239
+ [vars$a.dayCursor]: 'default',
17853
18240
  },
17854
18241
 
17855
18242
  _fullWidth: {
17856
- [vars$9.hostWidth]: '100%',
17857
- [vars$9.dayBlockAlign]: '0 auto',
18243
+ [vars$a.hostWidth]: '100%',
18244
+ [vars$a.dayBlockAlign]: '0 auto',
17858
18245
  },
17859
18246
  };
17860
18247
 
17861
18248
  var calendar$1 = /*#__PURE__*/Object.freeze({
17862
18249
  __proto__: null,
17863
18250
  default: calendar,
17864
- vars: vars$9
18251
+ vars: vars$a
17865
18252
  });
17866
18253
 
17867
18254
  const globalRefs$4 = getThemeRefs(globals);
17868
18255
  const shadowColor$1 = '#00000020';
17869
18256
  const { shadow } = globalRefs$4;
17870
18257
 
17871
- const vars$8 = DateFieldClass.cssVarList;
18258
+ const vars$9 = DateFieldClass.cssVarList;
17872
18259
 
17873
18260
  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',
18261
+ [vars$9.hostWidth]: refs.width,
18262
+ [vars$9.hostDirection]: refs.direction,
18263
+ [vars$9.iconMargin]: '0.375em',
18264
+
18265
+ [vars$9.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
18266
+ [vars$9.overlay.backgroundColor]: refs.backgroundColor,
18267
+ [vars$9.overlay.backdropBackgroundColor]: 'transparent',
18268
+ [vars$9.overlay.backdropPointerEvents]: 'all',
18269
+ [vars$9.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
18270
+ [vars$9.overlay.outlineWidth]: '0',
18271
+ [vars$9.overlay.outlineColor]: 'transparent',
18272
+ [vars$9.overlay.outlineStyle]: 'none',
18273
+ [vars$9.overlay.padding]: '0',
18274
+
18275
+ [vars$9.rtlInputDirection]: 'ltr',
18276
+ [vars$9.rtlInputAlignment]: 'right',
17890
18277
  };
17891
18278
 
17892
18279
  var dateField$1 = /*#__PURE__*/Object.freeze({
17893
18280
  __proto__: null,
17894
18281
  default: dateField,
17895
- vars: vars$8
18282
+ vars: vars$9
17896
18283
  });
17897
18284
 
17898
18285
  const globalRefs$3 = getThemeRefs(globals);
@@ -17901,7 +18288,7 @@ const compVars = ListClass.cssVarList;
17901
18288
 
17902
18289
  const [helperTheme, helperRefs, helperVars] = createHelperVars(
17903
18290
  { shadowColor: '#00000020' },
17904
- componentName$6
18291
+ componentName$7
17905
18292
  );
17906
18293
 
17907
18294
  const { shadowColor } = helperRefs;
@@ -17941,7 +18328,7 @@ const list$1 = {
17941
18328
  },
17942
18329
  };
17943
18330
 
17944
- const vars$7 = {
18331
+ const vars$8 = {
17945
18332
  ...compVars,
17946
18333
  ...helperVars,
17947
18334
  };
@@ -17949,78 +18336,78 @@ const vars$7 = {
17949
18336
  var list$2 = /*#__PURE__*/Object.freeze({
17950
18337
  __proto__: null,
17951
18338
  default: list$1,
17952
- vars: vars$7
18339
+ vars: vars$8
17953
18340
  });
17954
18341
 
17955
18342
  const globalRefs$2 = getThemeRefs(globals);
17956
18343
 
17957
- const vars$6 = ListItemClass.cssVarList;
18344
+ const vars$7 = ListItemClass.cssVarList;
17958
18345
 
17959
18346
  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',
18347
+ [vars$7.backgroundColor]: globalRefs$2.colors.surface.main,
18348
+ [vars$7.padding]: globalRefs$2.spacing.lg,
18349
+ [vars$7.gap]: globalRefs$2.spacing.md,
18350
+ [vars$7.borderStyle]: 'solid',
18351
+ [vars$7.borderWidth]: globalRefs$2.border.xs,
18352
+ [vars$7.borderColor]: globalRefs$2.colors.surface.main,
18353
+ [vars$7.borderRadius]: globalRefs$2.radius.sm,
18354
+ [vars$7.cursor]: 'pointer',
18355
+ [vars$7.alignItems]: 'center',
18356
+ [vars$7.flexDirection]: 'row',
18357
+ [vars$7.transition]: 'border-color 0.2s, background-color 0.2s',
17971
18358
 
17972
18359
  variant: {
17973
18360
  tile: {
17974
- [vars$6.alignItems]: 'flex-start',
17975
- [vars$6.flexDirection]: 'column',
17976
- [vars$6.borderColor]: globalRefs$2.colors.surface.light,
18361
+ [vars$7.alignItems]: 'flex-start',
18362
+ [vars$7.flexDirection]: 'column',
18363
+ [vars$7.borderColor]: globalRefs$2.colors.surface.light,
17977
18364
  },
17978
18365
  },
17979
18366
 
17980
18367
  _hover: {
17981
- [vars$6.backgroundColor]: globalRefs$2.colors.surface.highlight,
18368
+ [vars$7.backgroundColor]: globalRefs$2.colors.surface.highlight,
17982
18369
  },
17983
18370
 
17984
18371
  _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}`,
18372
+ [vars$7.backgroundColor]: globalRefs$2.colors.surface.main,
18373
+ [vars$7.borderColor]: globalRefs$2.colors.primary.light,
18374
+ [vars$7.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
17988
18375
  },
17989
18376
  };
17990
18377
 
17991
18378
  var listItem = /*#__PURE__*/Object.freeze({
17992
18379
  __proto__: null,
17993
18380
  default: list,
17994
- vars: vars$6
18381
+ vars: vars$7
17995
18382
  });
17996
18383
 
17997
- const vars$5 = AppsListClass.cssVarList;
18384
+ const vars$6 = AppsListClass.cssVarList;
17998
18385
  const globalRefs$1 = getThemeRefs(globals);
17999
18386
 
18000
18387
  const defaultHeight = '400px';
18001
18388
 
18002
18389
  const appsList = {
18003
- [vars$5.itemsFontWeight]: 'normal',
18004
- [vars$5.itemsTextAlign]: 'start',
18005
- [vars$5.hostDirection]: globalRefs$1.direction,
18006
- [vars$5.maxHeight]: defaultHeight,
18390
+ [vars$6.itemsFontWeight]: 'normal',
18391
+ [vars$6.itemsTextAlign]: 'start',
18392
+ [vars$6.hostDirection]: globalRefs$1.direction,
18393
+ [vars$6.maxHeight]: defaultHeight,
18007
18394
 
18008
18395
  _empty: {
18009
- [vars$5.minHeight]: defaultHeight,
18396
+ [vars$6.minHeight]: defaultHeight,
18010
18397
  },
18011
18398
 
18012
18399
  size: {
18013
18400
  xs: {
18014
- [vars$5.itemsFontSize]: '14px',
18401
+ [vars$6.itemsFontSize]: '14px',
18015
18402
  },
18016
18403
  sm: {
18017
- [vars$5.itemsFontSize]: '14px',
18404
+ [vars$6.itemsFontSize]: '14px',
18018
18405
  },
18019
18406
  md: {
18020
- [vars$5.itemsFontSize]: '16px',
18407
+ [vars$6.itemsFontSize]: '16px',
18021
18408
  },
18022
18409
  lg: {
18023
- [vars$5.itemsFontSize]: '20px',
18410
+ [vars$6.itemsFontSize]: '20px',
18024
18411
  },
18025
18412
  },
18026
18413
  };
@@ -18028,52 +18415,52 @@ const appsList = {
18028
18415
  var appsList$1 = /*#__PURE__*/Object.freeze({
18029
18416
  __proto__: null,
18030
18417
  default: appsList,
18031
- vars: vars$5
18418
+ vars: vars$6
18032
18419
  });
18033
18420
 
18034
- const vars$4 = ScopesListClass.cssVarList;
18421
+ const vars$5 = ScopesListClass.cssVarList;
18035
18422
 
18036
18423
  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',
18424
+ [vars$5.requiredInputBorderColor]: theme$1._disabled[vars$R.borderColor],
18425
+ [vars$5.requiredInputValueTextColor]: theme$1._disabled[vars$R.valueTextColor],
18426
+ [vars$5.hostWidth]: '280px',
18040
18427
  _fullWidth: {
18041
- [vars$4.hostWidth]: '100%',
18428
+ [vars$5.hostWidth]: '100%',
18042
18429
  },
18043
18430
  };
18044
18431
 
18045
18432
  var scopesList$1 = /*#__PURE__*/Object.freeze({
18046
18433
  __proto__: null,
18047
18434
  default: scopesList,
18048
- vars: vars$4
18435
+ vars: vars$5
18049
18436
  });
18050
18437
 
18051
18438
  const globalRefs = getThemeRefs(globals);
18052
- const vars$3 = ThirdPartyAppLogoClass.cssVarList;
18439
+ const vars$4 = ThirdPartyAppLogoClass.cssVarList;
18053
18440
 
18054
18441
  const thirdPartyAppLogo = {
18055
- [vars$3.gap]: globalRefs.spacing.lg,
18056
- [vars$3.arrowsColor]: globalRefs.colors.surface.dark,
18057
- [vars$3.thirdPartyAppLogoFallback]:
18442
+ [vars$4.gap]: globalRefs.spacing.lg,
18443
+ [vars$4.arrowsColor]: globalRefs.colors.surface.dark,
18444
+ [vars$4.thirdPartyAppLogoFallback]:
18058
18445
  'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
18059
- [vars$3.companyLogoFallback]:
18446
+ [vars$4.companyLogoFallback]:
18060
18447
  'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
18061
18448
  size: {
18062
18449
  xs: {
18063
- [vars$3.logoMaxHeight]: '30px',
18064
- [vars$3.logoMaxWidth]: '120px',
18450
+ [vars$4.logoMaxHeight]: '30px',
18451
+ [vars$4.logoMaxWidth]: '120px',
18065
18452
  },
18066
18453
  sm: {
18067
- [vars$3.logoMaxHeight]: '40px',
18068
- [vars$3.logoMaxWidth]: '160px',
18454
+ [vars$4.logoMaxHeight]: '40px',
18455
+ [vars$4.logoMaxWidth]: '160px',
18069
18456
  },
18070
18457
  md: {
18071
- [vars$3.logoMaxHeight]: '48px',
18072
- [vars$3.logoMaxWidth]: '200px',
18458
+ [vars$4.logoMaxHeight]: '48px',
18459
+ [vars$4.logoMaxWidth]: '200px',
18073
18460
  },
18074
18461
  lg: {
18075
- [vars$3.logoMaxHeight]: '60px',
18076
- [vars$3.logoMaxWidth]: '240px',
18462
+ [vars$4.logoMaxHeight]: '60px',
18463
+ [vars$4.logoMaxWidth]: '240px',
18077
18464
  },
18078
18465
  },
18079
18466
  };
@@ -18081,39 +18468,55 @@ const thirdPartyAppLogo = {
18081
18468
  var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
18082
18469
  __proto__: null,
18083
18470
  default: thirdPartyAppLogo,
18084
- vars: vars$3
18471
+ vars: vars$4
18085
18472
  });
18086
18473
 
18087
- const vars$2 = SecurityQuestionsSetupClass.cssVarList;
18474
+ const vars$3 = SecurityQuestionsSetupClass.cssVarList;
18088
18475
 
18089
18476
  const securityQuestionsSetup = {
18090
- [vars$2.hostWidth]: 'fit-content',
18477
+ [vars$3.hostWidth]: 'fit-content',
18091
18478
  _fullWidth: {
18092
- [vars$2.hostWidth]: '100%',
18479
+ [vars$3.hostWidth]: '100%',
18093
18480
  },
18094
18481
  };
18095
18482
 
18096
18483
  var securityQuestionsSetup$1 = /*#__PURE__*/Object.freeze({
18097
18484
  __proto__: null,
18098
18485
  default: securityQuestionsSetup,
18099
- vars: vars$2
18486
+ vars: vars$3
18100
18487
  });
18101
18488
 
18102
- const vars$1 = SecurityQuestionsVerifyClass.cssVarList;
18489
+ const vars$2 = SecurityQuestionsVerifyClass.cssVarList;
18103
18490
 
18104
18491
  const securityQuestionsVerify = {
18105
- [vars$1.hostWidth]: 'min-content',
18106
- [vars$1.questionCursor]: 'pointer',
18492
+ [vars$2.hostWidth]: 'min-content',
18493
+ [vars$2.questionCursor]: 'pointer',
18107
18494
  _fullWidth: {
18108
- [vars$1.hostWidth]: '100%',
18495
+ [vars$2.hostWidth]: '100%',
18109
18496
  },
18110
- [vars$1.questionFontSize]: refs.fontSize,
18111
- [vars$1.questionFontFamily]: refs.fontFamily,
18497
+ [vars$2.questionFontSize]: refs.fontSize,
18498
+ [vars$2.questionFontFamily]: refs.fontFamily,
18112
18499
  };
18113
18500
 
18114
18501
  var securityQuestionsVerify$1 = /*#__PURE__*/Object.freeze({
18115
18502
  __proto__: null,
18116
18503
  default: securityQuestionsVerify,
18504
+ vars: vars$2
18505
+ });
18506
+
18507
+ const vars$1 = HybridFieldClass.cssVarList;
18508
+
18509
+ const hybridField = {
18510
+ [vars$1.hostDirection]: refs.direction,
18511
+
18512
+ _fullWidth: {
18513
+ [vars$1.hostWidth]: '100%',
18514
+ },
18515
+ };
18516
+
18517
+ var hybridField$1 = /*#__PURE__*/Object.freeze({
18518
+ __proto__: null,
18519
+ default: hybridField,
18117
18520
  vars: vars$1
18118
18521
  });
18119
18522
 
@@ -18171,6 +18574,7 @@ const components = {
18171
18574
  thirdPartyAppLogo: thirdPartyAppLogo$1,
18172
18575
  securityQuestionsSetup: securityQuestionsSetup$1,
18173
18576
  securityQuestionsVerify: securityQuestionsVerify$1,
18577
+ hybridField: hybridField$1,
18174
18578
  };
18175
18579
 
18176
18580
  const theme = Object.keys(components).reduce(
@@ -18183,7 +18587,7 @@ const vars = Object.keys(components).reduce(
18183
18587
  );
18184
18588
 
18185
18589
  const defaultTheme = { globals, components: theme };
18186
- const themeVars = { globals: vars$S, components: vars };
18590
+ const themeVars = { globals: vars$T, components: vars };
18187
18591
 
18188
18592
  const colors = {
18189
18593
  surface: {
@@ -18232,5 +18636,5 @@ const darkTheme = merge({}, defaultTheme, {
18232
18636
  },
18233
18637
  });
18234
18638
 
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 };
18639
+ 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
18640
  //# sourceMappingURL=index.esm.js.map