@descope/web-components-ui 1.0.387 → 1.0.389

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 (36) hide show
  1. package/dist/cjs/index.cjs.js +1318 -1209
  2. package/dist/cjs/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +1267 -1157
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/umd/5459.js +1 -1
  6. package/dist/umd/DescopeDev.js +1 -1
  7. package/dist/umd/boolean-fields-descope-checkbox-index-js.js +1 -1
  8. package/dist/umd/boolean-fields-descope-switch-toggle-index-js.js +1 -1
  9. package/dist/umd/descope-apps-list-index-js.js +1 -1
  10. package/dist/umd/descope-date-field-index-js.js +1 -1
  11. package/dist/umd/descope-email-field-index-js.js +1 -1
  12. package/dist/umd/descope-grid-descope-grid-selection-column-index-js.js +1 -1
  13. package/dist/umd/descope-grid-index-js.js +1 -1
  14. package/dist/umd/descope-new-password-index-js.js +1 -1
  15. package/dist/umd/descope-number-field-index-js.js +1 -1
  16. package/dist/umd/descope-passcode-index-js.js +1 -1
  17. package/dist/umd/descope-radio-group-index-js.js +1 -1
  18. package/dist/umd/descope-scopes-list-index-js.js +2 -0
  19. package/dist/umd/descope-scopes-list-index-js.js.LICENSE.txt +5 -0
  20. package/dist/umd/descope-text-field-index-js.js +1 -1
  21. package/dist/umd/index.js +1 -1
  22. package/dist/umd/mapping-fields-descope-mappings-field-index-js.js +1 -1
  23. package/package.json +1 -1
  24. package/src/components/boolean-fields/commonStyles.js +1 -2
  25. package/src/components/boolean-fields/descope-checkbox/CheckboxClass.js +6 -0
  26. package/src/components/descope-date-field/DateFieldClass.js +6 -1
  27. package/src/components/descope-scopes-list/ScopesListClass.js +111 -0
  28. package/src/components/descope-scopes-list/index.js +7 -0
  29. package/src/components/descope-text-field/textFieldMappings.js +1 -0
  30. package/src/index.cjs.js +1 -0
  31. package/src/index.js +1 -0
  32. package/src/mixins/createDynamicDataMixin.js +9 -28
  33. package/src/theme/components/checkbox.js +1 -8
  34. package/src/theme/components/dateField.js +3 -1
  35. package/src/theme/components/index.js +2 -0
  36. package/src/theme/components/scopesList.js +15 -0
package/dist/index.esm.js CHANGED
@@ -1715,9 +1715,9 @@ const createIcon = async (src) => {
1715
1715
 
1716
1716
  /* eslint-disable no-use-before-define */
1717
1717
 
1718
- const componentName$10 = getComponentName('icon');
1718
+ const componentName$11 = getComponentName('icon');
1719
1719
 
1720
- class RawIcon extends createBaseClass({ componentName: componentName$10, baseSelector: 'slot' }) {
1720
+ class RawIcon extends createBaseClass({ componentName: componentName$11, baseSelector: 'slot' }) {
1721
1721
  static get observedAttributes() {
1722
1722
  return ['src'];
1723
1723
  }
@@ -1802,7 +1802,7 @@ const clickableMixin = (superclass) =>
1802
1802
  }
1803
1803
  };
1804
1804
 
1805
- const componentName$$ = getComponentName('button');
1805
+ const componentName$10 = getComponentName('button');
1806
1806
 
1807
1807
  const resetStyles = `
1808
1808
  :host {
@@ -1918,7 +1918,7 @@ const ButtonClass = compose(
1918
1918
  }
1919
1919
  `,
1920
1920
  excludeAttrsSync: ['tabindex'],
1921
- componentName: componentName$$,
1921
+ componentName: componentName$10,
1922
1922
  })
1923
1923
  );
1924
1924
 
@@ -1955,7 +1955,7 @@ loadingIndicatorStyles = `
1955
1955
  }
1956
1956
  `;
1957
1957
 
1958
- customElements.define(componentName$$, ButtonClass);
1958
+ customElements.define(componentName$10, ButtonClass);
1959
1959
 
1960
1960
  const createBaseInputClass = (...args) =>
1961
1961
  compose(
@@ -1965,11 +1965,11 @@ const createBaseInputClass = (...args) =>
1965
1965
  inputEventsDispatchingMixin
1966
1966
  )(createBaseClass(...args));
1967
1967
 
1968
- const componentName$_ = getComponentName('boolean-field-internal');
1968
+ const componentName$$ = getComponentName('boolean-field-internal');
1969
1969
 
1970
1970
  const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
1971
1971
 
1972
- const BaseInputClass$a = createBaseInputClass({ componentName: componentName$_, baseSelector: 'div' });
1972
+ const BaseInputClass$a = createBaseInputClass({ componentName: componentName$$, baseSelector: 'div' });
1973
1973
 
1974
1974
  class BooleanInputInternal extends BaseInputClass$a {
1975
1975
  static get observedAttributes() {
@@ -2045,14 +2045,14 @@ const booleanFieldMixin = (superclass) =>
2045
2045
 
2046
2046
  const template = document.createElement('template');
2047
2047
  template.innerHTML = `
2048
- <${componentName$_}
2048
+ <${componentName$$}
2049
2049
  tabindex="-1"
2050
2050
  slot="input"
2051
- ></${componentName$_}>
2051
+ ></${componentName$$}>
2052
2052
  `;
2053
2053
 
2054
2054
  this.baseElement.appendChild(template.content.cloneNode(true));
2055
- this.inputElement = this.shadowRoot.querySelector(componentName$_);
2055
+ this.inputElement = this.shadowRoot.querySelector(componentName$$);
2056
2056
  this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
2057
2057
 
2058
2058
  forwardAttrs(this, this.inputElement, {
@@ -2235,8 +2235,7 @@ vaadin-text-field {
2235
2235
  align-items: flex-start;
2236
2236
  }
2237
2237
  vaadin-text-field::before {
2238
- height: 0;
2239
- margin: 0;
2238
+ content: unset;
2240
2239
  }
2241
2240
  vaadin-text-field::part(label) {
2242
2241
  position: absolute;
@@ -2267,7 +2266,7 @@ descope-boolean-field-internal {
2267
2266
  }
2268
2267
  `;
2269
2268
 
2270
- const componentName$Z = getComponentName('checkbox');
2269
+ const componentName$_ = getComponentName('checkbox');
2271
2270
 
2272
2271
  const {
2273
2272
  host: host$n,
@@ -2343,6 +2342,7 @@ const CheckboxClass = compose(
2343
2342
  :host {
2344
2343
  display: inline-flex;
2345
2344
  max-width: 100%;
2345
+ margin: 1px;
2346
2346
  }
2347
2347
 
2348
2348
  :host ::part(error-message) {
@@ -2366,6 +2366,11 @@ const CheckboxClass = compose(
2366
2366
  vaadin-checkbox::part(checkbox)::after {
2367
2367
  top: 0;
2368
2368
  left: 0;
2369
+ -webkit-text-fill-color: initial;
2370
+ }
2371
+
2372
+ vaadin-checkbox label {
2373
+ -webkit-text-fill-color: initial;
2369
2374
  }
2370
2375
 
2371
2376
  vaadin-text-field::part(input-field)::after {
@@ -2373,15 +2378,15 @@ const CheckboxClass = compose(
2373
2378
  }
2374
2379
  `,
2375
2380
  excludeAttrsSync: ['label', 'tabindex'],
2376
- componentName: componentName$Z,
2381
+ componentName: componentName$_,
2377
2382
  })
2378
2383
  );
2379
2384
 
2380
- customElements.define(componentName$_, BooleanInputInternal);
2385
+ customElements.define(componentName$$, BooleanInputInternal);
2381
2386
 
2382
- customElements.define(componentName$Z, CheckboxClass);
2387
+ customElements.define(componentName$_, CheckboxClass);
2383
2388
 
2384
- const componentName$Y = getComponentName('switch-toggle');
2389
+ const componentName$Z = getComponentName('switch-toggle');
2385
2390
 
2386
2391
  const {
2387
2392
  host: host$m,
@@ -2513,17 +2518,17 @@ const SwitchToggleClass = compose(
2513
2518
  }
2514
2519
  `,
2515
2520
  excludeAttrsSync: ['label', 'tabindex'],
2516
- componentName: componentName$Y,
2521
+ componentName: componentName$Z,
2517
2522
  })
2518
2523
  );
2519
2524
 
2520
- customElements.define(componentName$Y, SwitchToggleClass);
2525
+ customElements.define(componentName$Z, SwitchToggleClass);
2521
2526
 
2522
- const componentName$X = getComponentName('loader-linear');
2527
+ const componentName$Y = getComponentName('loader-linear');
2523
2528
 
2524
- class RawLoaderLinear extends createBaseClass({ componentName: componentName$X, baseSelector: ':host > div' }) {
2529
+ class RawLoaderLinear extends createBaseClass({ componentName: componentName$Y, baseSelector: ':host > div' }) {
2525
2530
  static get componentName() {
2526
- return componentName$X;
2531
+ return componentName$Y;
2527
2532
  }
2528
2533
 
2529
2534
  constructor() {
@@ -2584,11 +2589,11 @@ const LoaderLinearClass = compose(
2584
2589
  componentNameValidationMixin
2585
2590
  )(RawLoaderLinear);
2586
2591
 
2587
- customElements.define(componentName$X, LoaderLinearClass);
2592
+ customElements.define(componentName$Y, LoaderLinearClass);
2588
2593
 
2589
- const componentName$W = getComponentName('loader-radial');
2594
+ const componentName$X = getComponentName('loader-radial');
2590
2595
 
2591
- class RawLoaderRadial extends createBaseClass({ componentName: componentName$W, baseSelector: ':host > div' }) {
2596
+ class RawLoaderRadial extends createBaseClass({ componentName: componentName$X, baseSelector: ':host > div' }) {
2592
2597
  constructor() {
2593
2598
  super();
2594
2599
 
@@ -2632,11 +2637,11 @@ const LoaderRadialClass = compose(
2632
2637
  componentNameValidationMixin
2633
2638
  )(RawLoaderRadial);
2634
2639
 
2635
- customElements.define(componentName$W, LoaderRadialClass);
2640
+ customElements.define(componentName$X, LoaderRadialClass);
2636
2641
 
2637
- const componentName$V = getComponentName('container');
2642
+ const componentName$W = getComponentName('container');
2638
2643
 
2639
- class RawContainer extends createBaseClass({ componentName: componentName$V, baseSelector: 'slot' }) {
2644
+ class RawContainer extends createBaseClass({ componentName: componentName$W, baseSelector: 'slot' }) {
2640
2645
  constructor() {
2641
2646
  super();
2642
2647
 
@@ -2689,9 +2694,9 @@ const ContainerClass = compose(
2689
2694
  componentNameValidationMixin
2690
2695
  )(RawContainer);
2691
2696
 
2692
- customElements.define(componentName$V, ContainerClass);
2697
+ customElements.define(componentName$W, ContainerClass);
2693
2698
 
2694
- const componentName$U = getComponentName('combo-box');
2699
+ const componentName$V = getComponentName('combo-box');
2695
2700
 
2696
2701
  const ComboBoxMixin = (superclass) =>
2697
2702
  class ComboBoxMixinClass extends superclass {
@@ -3136,14 +3141,14 @@ const ComboBoxClass = compose(
3136
3141
  // and reset items to an empty array, and opening the list box with no items
3137
3142
  // to display.
3138
3143
  excludeAttrsSync: ['tabindex', 'size', 'data'],
3139
- componentName: componentName$U,
3144
+ componentName: componentName$V,
3140
3145
  includeForwardProps: ['items', 'renderer', 'selectedItem'],
3141
3146
  })
3142
3147
  );
3143
3148
 
3144
- customElements.define(componentName$U, ComboBoxClass);
3149
+ customElements.define(componentName$V, ComboBoxClass);
3145
3150
 
3146
- customElements.define(componentName$10, IconClass);
3151
+ customElements.define(componentName$11, IconClass);
3147
3152
 
3148
3153
  const SUPPORTED_FORMATS = ['MM/DD/YYYY', 'DD/MM/YYYY', 'YYYY/MM/DD'];
3149
3154
 
@@ -3460,7 +3465,7 @@ const nextMonth = (timestamp) => {
3460
3465
  return date;
3461
3466
  };
3462
3467
 
3463
- const componentName$T = getComponentName('calendar');
3468
+ const componentName$U = getComponentName('calendar');
3464
3469
 
3465
3470
  const observedAttrs$2 = [
3466
3471
  'initial-value',
@@ -3477,7 +3482,7 @@ const observedAttrs$2 = [
3477
3482
 
3478
3483
  const calendarUiAttrs = ['calendar-label-submit', 'calendar-label-cancel'];
3479
3484
 
3480
- const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$T, baseSelector: 'div' });
3485
+ const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$U, baseSelector: 'div' });
3481
3486
 
3482
3487
  class RawCalendar extends BaseInputClass$9 {
3483
3488
  static get observedAttributes() {
@@ -4090,7 +4095,7 @@ const CalendarClass = compose(
4090
4095
  componentNameValidationMixin
4091
4096
  )(RawCalendar);
4092
4097
 
4093
- customElements.define(componentName$T, CalendarClass);
4098
+ customElements.define(componentName$U, CalendarClass);
4094
4099
 
4095
4100
  const {
4096
4101
  host: host$j,
@@ -4149,6 +4154,7 @@ var textFieldMappings = {
4149
4154
  hostWidth: { ...host$j, property: 'width' },
4150
4155
  hostMinWidth: { ...host$j, property: 'min-width' },
4151
4156
  hostDirection: { ...host$j, property: 'direction' },
4157
+ inputDirection: { ...input$1, property: 'direction' },
4152
4158
 
4153
4159
  inputBackgroundColor: [
4154
4160
  { ...inputField$5, property: 'background-color' },
@@ -4237,7 +4243,7 @@ var textFieldMappings = {
4237
4243
  inputIconColor: { ...inputIcon, property: 'color' },
4238
4244
  };
4239
4245
 
4240
- const componentName$S = getComponentName('text-field');
4246
+ const componentName$T = getComponentName('text-field');
4241
4247
 
4242
4248
  const observedAttrs$1 = ['type', 'label-type', 'copy-to-clipboard'];
4243
4249
 
@@ -4359,11 +4365,11 @@ const TextFieldClass = compose(
4359
4365
  }
4360
4366
  `,
4361
4367
  excludeAttrsSync: ['tabindex'],
4362
- componentName: componentName$S,
4368
+ componentName: componentName$T,
4363
4369
  })
4364
4370
  );
4365
4371
 
4366
- customElements.define(componentName$S, TextFieldClass);
4372
+ customElements.define(componentName$T, TextFieldClass);
4367
4373
 
4368
4374
  const patterns = {
4369
4375
  MM: '(0?[1-9]|1[0-2])',
@@ -4496,12 +4502,12 @@ class DateCounter {
4496
4502
  }
4497
4503
  }
4498
4504
 
4499
- const componentName$R = getComponentName('date-field');
4505
+ const componentName$S = getComponentName('date-field');
4500
4506
 
4501
4507
  // we set baseSelector to `vaadin-popover` as a temporary hack, so our portalMixin will
4502
4508
  // be able to process this component's overlay. The whole process needs refactoring as soon as possible.
4503
4509
  const BASE_SELECTOR = 'vaadin-popover';
4504
- const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$R, baseSelector: BASE_SELECTOR });
4510
+ const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$S, baseSelector: BASE_SELECTOR });
4505
4511
 
4506
4512
  const dateFieldAttrs = ['format', 'opened', 'initial-value', 'readonly'];
4507
4513
  const calendarAttrs = ['years-range', 'calendar-months', 'calendar-weekdays'];
@@ -5112,9 +5118,11 @@ class RawDateFieldClass extends BaseInputClass$8 {
5112
5118
  }
5113
5119
  }
5114
5120
 
5115
- const { host: host$i, input, toggleButton, overlay, backdrop } = {
5121
+ const textVars$4 = TextFieldClass.cssVarList;
5122
+ const { host: host$i, input, inputEleRTL, toggleButton, overlay, backdrop } = {
5116
5123
  host: { selector: () => ':host' },
5117
5124
  input: { selector: () => 'descope-text-field' },
5125
+ inputEleRTL: { selector: () => ':host([st-host-direction="rtl"]) descope-text-field' },
5118
5126
  toggleButton: { selector: () => '.toggle-calendar' },
5119
5127
  overlay: { selector: 'vaadin-popover-overlay::part(overlay)' },
5120
5128
  backdrop: { selector: 'vaadin-popover-overlay::part(backdrop)' },
@@ -5128,6 +5136,8 @@ const DateFieldClass = compose(
5128
5136
  hostWidth: { ...host$i, property: 'width' },
5129
5137
  hostDirection: { ...host$i, property: 'direction' },
5130
5138
  textAlign: { ...input, property: 'text-align' },
5139
+ rtlInputDirection: { ...inputEleRTL, property: textVars$4.inputDirection },
5140
+ rtlInputAlignment: { ...inputEleRTL, property: textVars$4.inputTextAlign },
5131
5141
  overlayGap: {
5132
5142
  property: () => DateFieldClass.cssVarList.overlayGap,
5133
5143
  },
@@ -5168,11 +5178,11 @@ const DateFieldClass = compose(
5168
5178
  componentNameValidationMixin
5169
5179
  )(RawDateFieldClass);
5170
5180
 
5171
- customElements.define(componentName$R, DateFieldClass);
5181
+ customElements.define(componentName$S, DateFieldClass);
5172
5182
 
5173
- const componentName$Q = getComponentName('text');
5183
+ const componentName$R = getComponentName('text');
5174
5184
 
5175
- class RawText extends createBaseClass({ componentName: componentName$Q, baseSelector: ':host > slot' }) {
5185
+ class RawText extends createBaseClass({ componentName: componentName$R, baseSelector: ':host > slot' }) {
5176
5186
  constructor() {
5177
5187
  super();
5178
5188
 
@@ -5229,8 +5239,8 @@ const TextClass = compose(
5229
5239
  componentNameValidationMixin
5230
5240
  )(RawText);
5231
5241
 
5232
- const componentName$P = getComponentName('divider');
5233
- class RawDivider extends createBaseClass({ componentName: componentName$P, baseSelector: ':host > div' }) {
5242
+ const componentName$Q = getComponentName('divider');
5243
+ class RawDivider extends createBaseClass({ componentName: componentName$Q, baseSelector: ':host > div' }) {
5234
5244
  constructor() {
5235
5245
  super();
5236
5246
 
@@ -5329,11 +5339,11 @@ const DividerClass = compose(
5329
5339
  componentNameValidationMixin
5330
5340
  )(RawDivider);
5331
5341
 
5332
- customElements.define(componentName$Q, TextClass);
5342
+ customElements.define(componentName$R, TextClass);
5333
5343
 
5334
- customElements.define(componentName$P, DividerClass);
5344
+ customElements.define(componentName$Q, DividerClass);
5335
5345
 
5336
- const componentName$O = getComponentName('email-field');
5346
+ const componentName$P = getComponentName('email-field');
5337
5347
 
5338
5348
  const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
5339
5349
  const defaultAutocomplete = 'username';
@@ -5401,15 +5411,15 @@ const EmailFieldClass = compose(
5401
5411
  }
5402
5412
  `,
5403
5413
  excludeAttrsSync: ['tabindex'],
5404
- componentName: componentName$O,
5414
+ componentName: componentName$P,
5405
5415
  })
5406
5416
  );
5407
5417
 
5408
- customElements.define(componentName$O, EmailFieldClass);
5418
+ customElements.define(componentName$P, EmailFieldClass);
5409
5419
 
5410
- const componentName$N = getComponentName('link');
5420
+ const componentName$O = getComponentName('link');
5411
5421
 
5412
- class RawLink extends createBaseClass({ componentName: componentName$N, baseSelector: ':host a' }) {
5422
+ class RawLink extends createBaseClass({ componentName: componentName$O, baseSelector: ':host a' }) {
5413
5423
  constructor() {
5414
5424
  super();
5415
5425
 
@@ -5473,7 +5483,7 @@ const LinkClass = compose(
5473
5483
  componentNameValidationMixin
5474
5484
  )(RawLink);
5475
5485
 
5476
- customElements.define(componentName$N, LinkClass);
5486
+ customElements.define(componentName$O, LinkClass);
5477
5487
 
5478
5488
  const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
5479
5489
  let style;
@@ -5525,37 +5535,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
5525
5535
  return CssVarImageClass;
5526
5536
  };
5527
5537
 
5528
- const componentName$M = getComponentName('logo');
5538
+ const componentName$N = getComponentName('logo');
5529
5539
 
5530
5540
  const LogoClass = createCssVarImageClass({
5531
- componentName: componentName$M,
5541
+ componentName: componentName$N,
5532
5542
  varName: 'url',
5533
5543
  fallbackVarName: 'fallbackUrl',
5534
5544
  });
5535
5545
 
5536
- customElements.define(componentName$M, LogoClass);
5546
+ customElements.define(componentName$N, LogoClass);
5537
5547
 
5538
- const componentName$L = getComponentName('totp-image');
5548
+ const componentName$M = getComponentName('totp-image');
5539
5549
 
5540
5550
  const TotpImageClass = createCssVarImageClass({
5541
- componentName: componentName$L,
5551
+ componentName: componentName$M,
5542
5552
  varName: 'url',
5543
5553
  fallbackVarName: 'fallbackUrl',
5544
5554
  });
5545
5555
 
5546
- customElements.define(componentName$L, TotpImageClass);
5556
+ customElements.define(componentName$M, TotpImageClass);
5547
5557
 
5548
- const componentName$K = getComponentName('notp-image');
5558
+ const componentName$L = getComponentName('notp-image');
5549
5559
 
5550
5560
  const NotpImageClass = createCssVarImageClass({
5551
- componentName: componentName$K,
5561
+ componentName: componentName$L,
5552
5562
  varName: 'url',
5553
5563
  fallbackVarName: 'fallbackUrl',
5554
5564
  });
5555
5565
 
5556
- customElements.define(componentName$K, NotpImageClass);
5566
+ customElements.define(componentName$L, NotpImageClass);
5557
5567
 
5558
- const componentName$J = getComponentName('number-field');
5568
+ const componentName$K = getComponentName('number-field');
5559
5569
 
5560
5570
  const NumberFieldClass = compose(
5561
5571
  createStyleMixin({
@@ -5589,11 +5599,11 @@ const NumberFieldClass = compose(
5589
5599
  }
5590
5600
  `,
5591
5601
  excludeAttrsSync: ['tabindex'],
5592
- componentName: componentName$J,
5602
+ componentName: componentName$K,
5593
5603
  })
5594
5604
  );
5595
5605
 
5596
- customElements.define(componentName$J, NumberFieldClass);
5606
+ customElements.define(componentName$K, NumberFieldClass);
5597
5607
 
5598
5608
  const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
5599
5609
  const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
@@ -5639,13 +5649,13 @@ const toggleMaskVisibility = (input, value) => {
5639
5649
 
5640
5650
  /* eslint-disable no-param-reassign */
5641
5651
 
5642
- const componentName$I = getComponentName('passcode-internal');
5652
+ const componentName$J = getComponentName('passcode-internal');
5643
5653
 
5644
5654
  const observedAttributes$5 = ['digits', 'loading'];
5645
5655
 
5646
5656
  const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
5647
5657
 
5648
- const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$I, baseSelector: 'div' });
5658
+ const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$J, baseSelector: 'div' });
5649
5659
 
5650
5660
  class PasscodeInternal extends BaseInputClass$7 {
5651
5661
  static get observedAttributes() {
@@ -5863,7 +5873,7 @@ class PasscodeInternal extends BaseInputClass$7 {
5863
5873
  }
5864
5874
  }
5865
5875
 
5866
- const componentName$H = getComponentName('passcode');
5876
+ const componentName$I = getComponentName('passcode');
5867
5877
 
5868
5878
  const observedAttributes$4 = ['digits'];
5869
5879
 
@@ -5882,17 +5892,17 @@ const customMixin$a = (superclass) =>
5882
5892
  const template = document.createElement('template');
5883
5893
 
5884
5894
  template.innerHTML = `
5885
- <${componentName$I}
5895
+ <${componentName$J}
5886
5896
  bordered="true"
5887
5897
  name="code"
5888
5898
  tabindex="-1"
5889
5899
  slot="input"
5890
- ><slot></slot></${componentName$I}>
5900
+ ><slot></slot></${componentName$J}>
5891
5901
  `;
5892
5902
 
5893
5903
  this.baseElement.appendChild(template.content.cloneNode(true));
5894
5904
 
5895
- this.inputElement = this.shadowRoot.querySelector(componentName$I);
5905
+ this.inputElement = this.shadowRoot.querySelector(componentName$J);
5896
5906
 
5897
5907
  forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
5898
5908
  }
@@ -6044,13 +6054,13 @@ const PasscodeClass = compose(
6044
6054
  ${resetInputCursor('vaadin-text-field')}
6045
6055
  `,
6046
6056
  excludeAttrsSync: ['tabindex'],
6047
- componentName: componentName$H,
6057
+ componentName: componentName$I,
6048
6058
  })
6049
6059
  );
6050
6060
 
6051
- customElements.define(componentName$I, PasscodeInternal);
6061
+ customElements.define(componentName$J, PasscodeInternal);
6052
6062
 
6053
- customElements.define(componentName$H, PasscodeClass);
6063
+ customElements.define(componentName$I, PasscodeClass);
6054
6064
 
6055
6065
  const passwordDraggableMixin = (superclass) =>
6056
6066
  class PasswordDraggableMixinClass extends superclass {
@@ -6091,7 +6101,7 @@ const passwordDraggableMixin = (superclass) =>
6091
6101
  }
6092
6102
  };
6093
6103
 
6094
- const componentName$G = getComponentName('password');
6104
+ const componentName$H = getComponentName('password');
6095
6105
 
6096
6106
  const customMixin$9 = (superclass) =>
6097
6107
  class PasswordFieldMixinClass extends superclass {
@@ -6366,11 +6376,11 @@ const PasswordClass = compose(
6366
6376
  }
6367
6377
  `,
6368
6378
  excludeAttrsSync: ['tabindex'],
6369
- componentName: componentName$G,
6379
+ componentName: componentName$H,
6370
6380
  })
6371
6381
  );
6372
6382
 
6373
- customElements.define(componentName$G, PasswordClass);
6383
+ customElements.define(componentName$H, PasswordClass);
6374
6384
 
6375
6385
  const disableRules = [
6376
6386
  'blockquote',
@@ -6396,9 +6406,9 @@ const decodeHTML = (html) => {
6396
6406
  /* eslint-disable no-param-reassign */
6397
6407
 
6398
6408
 
6399
- const componentName$F = getComponentName('enriched-text');
6409
+ const componentName$G = getComponentName('enriched-text');
6400
6410
 
6401
- class EnrichedText extends createBaseClass({ componentName: componentName$F, baseSelector: ':host > div' }) {
6411
+ class EnrichedText extends createBaseClass({ componentName: componentName$G, baseSelector: ':host > div' }) {
6402
6412
  #origLinkRenderer;
6403
6413
 
6404
6414
  #origEmRenderer;
@@ -6594,9 +6604,9 @@ const EnrichedTextClass = compose(
6594
6604
  componentNameValidationMixin
6595
6605
  )(EnrichedText);
6596
6606
 
6597
- customElements.define(componentName$F, EnrichedTextClass);
6607
+ customElements.define(componentName$G, EnrichedTextClass);
6598
6608
 
6599
- const componentName$E = getComponentName('text-area');
6609
+ const componentName$F = getComponentName('text-area');
6600
6610
 
6601
6611
  const {
6602
6612
  host: host$d,
@@ -6672,17 +6682,17 @@ const TextAreaClass = compose(
6672
6682
  ${resetInputCursor('vaadin-text-area')}
6673
6683
  `,
6674
6684
  excludeAttrsSync: ['tabindex'],
6675
- componentName: componentName$E,
6685
+ componentName: componentName$F,
6676
6686
  })
6677
6687
  );
6678
6688
 
6679
- customElements.define(componentName$E, TextAreaClass);
6689
+ customElements.define(componentName$F, TextAreaClass);
6680
6690
 
6681
6691
  const observedAttributes$3 = ['src', 'alt'];
6682
6692
 
6683
- const componentName$D = getComponentName('image');
6693
+ const componentName$E = getComponentName('image');
6684
6694
 
6685
- const BaseClass$1 = createBaseClass({ componentName: componentName$D, baseSelector: ':host > img' });
6695
+ const BaseClass$1 = createBaseClass({ componentName: componentName$E, baseSelector: ':host > img' });
6686
6696
  class RawImage extends BaseClass$1 {
6687
6697
  static get observedAttributes() {
6688
6698
  return observedAttributes$3.concat(BaseClass$1.observedAttributes || []);
@@ -6722,7 +6732,7 @@ const ImageClass = compose(
6722
6732
  draggableMixin
6723
6733
  )(RawImage);
6724
6734
 
6725
- customElements.define(componentName$D, ImageClass);
6735
+ customElements.define(componentName$E, ImageClass);
6726
6736
 
6727
6737
  var CountryCodes = [
6728
6738
  // United States should be the first option
@@ -7991,7 +8001,7 @@ const parsePhoneNumber = (val) => {
7991
8001
  return [countryCode, phoneNumber];
7992
8002
  };
7993
8003
 
7994
- const componentName$C = getComponentName('phone-field-internal');
8004
+ const componentName$D = getComponentName('phone-field-internal');
7995
8005
 
7996
8006
  const commonAttrs$1 = ['disabled', 'size', 'bordered', 'invalid', 'readonly'];
7997
8007
  const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
@@ -8005,7 +8015,7 @@ const mapAttrs$1 = {
8005
8015
 
8006
8016
  const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
8007
8017
 
8008
- const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$C, baseSelector: 'div' });
8018
+ const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$D, baseSelector: 'div' });
8009
8019
 
8010
8020
  let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8011
8021
  static get observedAttributes() {
@@ -8222,12 +8232,12 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8222
8232
  }
8223
8233
  };
8224
8234
 
8225
- customElements.define(componentName$C, PhoneFieldInternal$1);
8235
+ customElements.define(componentName$D, PhoneFieldInternal$1);
8226
8236
 
8227
8237
  const textVars$1 = TextFieldClass.cssVarList;
8228
8238
  const comboVars = ComboBoxClass.cssVarList;
8229
8239
 
8230
- const componentName$B = getComponentName('phone-field');
8240
+ const componentName$C = getComponentName('phone-field');
8231
8241
 
8232
8242
  const customMixin$8 = (superclass) =>
8233
8243
  class PhoneFieldMixinClass extends superclass {
@@ -8241,15 +8251,15 @@ const customMixin$8 = (superclass) =>
8241
8251
  const template = document.createElement('template');
8242
8252
 
8243
8253
  template.innerHTML = `
8244
- <${componentName$C}
8254
+ <${componentName$D}
8245
8255
  tabindex="-1"
8246
8256
  slot="input"
8247
- ></${componentName$C}>
8257
+ ></${componentName$D}>
8248
8258
  `;
8249
8259
 
8250
8260
  this.baseElement.appendChild(template.content.cloneNode(true));
8251
8261
 
8252
- this.inputElement = this.shadowRoot.querySelector(componentName$C);
8262
+ this.inputElement = this.shadowRoot.querySelector(componentName$D);
8253
8263
 
8254
8264
  forwardAttrs(this.shadowRoot.host, this.inputElement, {
8255
8265
  includeAttrs: [
@@ -8471,17 +8481,17 @@ const PhoneFieldClass = compose(
8471
8481
  ${resetInputLabelPosition('vaadin-text-field')}
8472
8482
  `,
8473
8483
  excludeAttrsSync: ['tabindex'],
8474
- componentName: componentName$B,
8484
+ componentName: componentName$C,
8475
8485
  })
8476
8486
  );
8477
8487
 
8478
- customElements.define(componentName$B, PhoneFieldClass);
8488
+ customElements.define(componentName$C, PhoneFieldClass);
8479
8489
 
8480
8490
  const getCountryByCodeId = (countryCode) => {
8481
8491
  return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
8482
8492
  };
8483
8493
 
8484
- const componentName$A = getComponentName('phone-field-internal-input-box');
8494
+ const componentName$B = getComponentName('phone-field-internal-input-box');
8485
8495
 
8486
8496
  const observedAttributes$2 = [
8487
8497
  'disabled',
@@ -8498,7 +8508,7 @@ const mapAttrs = {
8498
8508
  'phone-input-placeholder': 'placeholder',
8499
8509
  };
8500
8510
 
8501
- const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$A, baseSelector: 'div' });
8511
+ const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$B, baseSelector: 'div' });
8502
8512
 
8503
8513
  class PhoneFieldInternal extends BaseInputClass$5 {
8504
8514
  static get observedAttributes() {
@@ -8637,11 +8647,11 @@ class PhoneFieldInternal extends BaseInputClass$5 {
8637
8647
  }
8638
8648
  }
8639
8649
 
8640
- customElements.define(componentName$A, PhoneFieldInternal);
8650
+ customElements.define(componentName$B, PhoneFieldInternal);
8641
8651
 
8642
8652
  const textVars = TextFieldClass.cssVarList;
8643
8653
 
8644
- const componentName$z = getComponentName('phone-input-box-field');
8654
+ const componentName$A = getComponentName('phone-input-box-field');
8645
8655
 
8646
8656
  const customMixin$7 = (superclass) =>
8647
8657
  class PhoneInputBoxFieldMixinClass extends superclass {
@@ -8655,15 +8665,15 @@ const customMixin$7 = (superclass) =>
8655
8665
  const template = document.createElement('template');
8656
8666
 
8657
8667
  template.innerHTML = `
8658
- <${componentName$A}
8668
+ <${componentName$B}
8659
8669
  tabindex="-1"
8660
8670
  slot="input"
8661
- ></${componentName$A}>
8671
+ ></${componentName$B}>
8662
8672
  `;
8663
8673
 
8664
8674
  this.baseElement.appendChild(template.content.cloneNode(true));
8665
8675
 
8666
- this.inputElement = this.shadowRoot.querySelector(componentName$A);
8676
+ this.inputElement = this.shadowRoot.querySelector(componentName$B);
8667
8677
 
8668
8678
  forwardAttrs(this.shadowRoot.host, this.inputElement, {
8669
8679
  includeAttrs: [
@@ -8840,26 +8850,26 @@ const PhoneFieldInputBoxClass = compose(
8840
8850
  ${inputFloatingLabelStyle()}
8841
8851
  `,
8842
8852
  excludeAttrsSync: ['tabindex'],
8843
- componentName: componentName$z,
8853
+ componentName: componentName$A,
8844
8854
  })
8845
8855
  );
8846
8856
 
8847
- customElements.define(componentName$z, PhoneFieldInputBoxClass);
8857
+ customElements.define(componentName$A, PhoneFieldInputBoxClass);
8848
8858
 
8849
- const componentName$y = getComponentName('new-password-internal');
8859
+ const componentName$z = getComponentName('new-password-internal');
8850
8860
 
8851
8861
  const interpolateString = (template, values) =>
8852
8862
  template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
8853
8863
 
8854
8864
  // eslint-disable-next-line max-classes-per-file
8855
8865
 
8856
- const componentName$x = getComponentName('policy-validation');
8866
+ const componentName$y = getComponentName('policy-validation');
8857
8867
 
8858
8868
  const overrideAttrs = ['data-password-policy-value-minlength'];
8859
8869
  const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
8860
8870
  const policyAttrs = ['label', 'value', ...dataAttrs];
8861
8871
 
8862
- class RawPolicyValidation extends createBaseClass({ componentName: componentName$x, baseSelector: ':host > div' }) {
8872
+ class RawPolicyValidation extends createBaseClass({ componentName: componentName$y, baseSelector: ':host > div' }) {
8863
8873
  #availablePolicies;
8864
8874
 
8865
8875
  #activePolicies = [];
@@ -9067,7 +9077,7 @@ const PolicyValidationClass = compose(
9067
9077
  componentNameValidationMixin
9068
9078
  )(RawPolicyValidation);
9069
9079
 
9070
- const componentName$w = getComponentName('new-password');
9080
+ const componentName$x = getComponentName('new-password');
9071
9081
 
9072
9082
  const policyPreviewVars = PolicyValidationClass.cssVarList;
9073
9083
 
@@ -9081,18 +9091,18 @@ const customMixin$6 = (superclass) =>
9081
9091
  const externalInputAttr = this.getAttribute('external-input');
9082
9092
 
9083
9093
  template.innerHTML = `
9084
- <${componentName$y}
9094
+ <${componentName$z}
9085
9095
  name="new-password"
9086
9096
  tabindex="-1"
9087
9097
  slot="input"
9088
9098
  external-input="${externalInputAttr}"
9089
9099
  >
9090
- </${componentName$y}>
9100
+ </${componentName$z}>
9091
9101
  `;
9092
9102
 
9093
9103
  this.baseElement.appendChild(template.content.cloneNode(true));
9094
9104
 
9095
- this.inputElement = this.shadowRoot.querySelector(componentName$y);
9105
+ this.inputElement = this.shadowRoot.querySelector(componentName$z);
9096
9106
 
9097
9107
  if (this.getAttribute('external-input') === 'true') {
9098
9108
  this.initExternalInput();
@@ -9268,11 +9278,11 @@ const NewPasswordClass = compose(
9268
9278
  }
9269
9279
  `,
9270
9280
  excludeAttrsSync: ['tabindex'],
9271
- componentName: componentName$w,
9281
+ componentName: componentName$x,
9272
9282
  })
9273
9283
  );
9274
9284
 
9275
- customElements.define(componentName$x, PolicyValidationClass);
9285
+ customElements.define(componentName$y, PolicyValidationClass);
9276
9286
 
9277
9287
  const passwordAttrPrefixRegex = /^password-/;
9278
9288
  const confirmAttrPrefixRegex = /^confirm-/;
@@ -9304,7 +9314,7 @@ const inputRelatedAttrs = [].concat(
9304
9314
  policyPanelAttrs
9305
9315
  );
9306
9316
 
9307
- const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$y, baseSelector: 'div' });
9317
+ const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$z, baseSelector: 'div' });
9308
9318
 
9309
9319
  class NewPasswordInternal extends BaseInputClass$4 {
9310
9320
  static get observedAttributes() {
@@ -9514,16 +9524,16 @@ class NewPasswordInternal extends BaseInputClass$4 {
9514
9524
  }
9515
9525
  }
9516
9526
 
9517
- customElements.define(componentName$y, NewPasswordInternal);
9527
+ customElements.define(componentName$z, NewPasswordInternal);
9518
9528
 
9519
- customElements.define(componentName$w, NewPasswordClass);
9529
+ customElements.define(componentName$x, NewPasswordClass);
9520
9530
 
9521
- const componentName$v = getComponentName('recaptcha');
9531
+ const componentName$w = getComponentName('recaptcha');
9522
9532
 
9523
9533
  const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
9524
9534
 
9525
9535
  const BaseClass = createBaseClass({
9526
- componentName: componentName$v,
9536
+ componentName: componentName$w,
9527
9537
  baseSelector: ':host > div',
9528
9538
  });
9529
9539
  class RawRecaptcha extends BaseClass {
@@ -9710,7 +9720,7 @@ class RawRecaptcha extends BaseClass {
9710
9720
 
9711
9721
  const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
9712
9722
 
9713
- customElements.define(componentName$v, RecaptchaClass);
9723
+ customElements.define(componentName$w, RecaptchaClass);
9714
9724
 
9715
9725
  const getFileBase64 = (fileObj) => {
9716
9726
  return new Promise((resolve) => {
@@ -9724,7 +9734,7 @@ const getFilename = (fileObj) => {
9724
9734
  return fileObj.name.replace(/^.*\\/, '');
9725
9735
  };
9726
9736
 
9727
- const componentName$u = getComponentName('upload-file');
9737
+ const componentName$v = getComponentName('upload-file');
9728
9738
 
9729
9739
  const observedAttributes = [
9730
9740
  'title',
@@ -9739,7 +9749,7 @@ const observedAttributes = [
9739
9749
  'icon',
9740
9750
  ];
9741
9751
 
9742
- const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$u, baseSelector: ':host > div' });
9752
+ const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$v, baseSelector: ':host > div' });
9743
9753
 
9744
9754
  class RawUploadFile extends BaseInputClass$3 {
9745
9755
  static get observedAttributes() {
@@ -9954,7 +9964,7 @@ const UploadFileClass = compose(
9954
9964
  componentNameValidationMixin
9955
9965
  )(RawUploadFile);
9956
9966
 
9957
- customElements.define(componentName$u, UploadFileClass);
9967
+ customElements.define(componentName$v, UploadFileClass);
9958
9968
 
9959
9969
  const createBaseButtonSelectionGroupInternalClass = (componentName) => {
9960
9970
  class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
@@ -10052,10 +10062,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
10052
10062
  return BaseButtonSelectionGroupInternalClass;
10053
10063
  };
10054
10064
 
10055
- const componentName$t = getComponentName('button-selection-group-internal');
10065
+ const componentName$u = getComponentName('button-selection-group-internal');
10056
10066
 
10057
10067
  class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
10058
- componentName$t
10068
+ componentName$u
10059
10069
  ) {
10060
10070
  getSelectedNode() {
10061
10071
  return this.items.find((item) => item.hasAttribute('selected'));
@@ -10287,7 +10297,7 @@ const buttonSelectionGroupStyles = `
10287
10297
  ${resetInputCursor('vaadin-text-field')}
10288
10298
  `;
10289
10299
 
10290
- const componentName$s = getComponentName('button-selection-group');
10300
+ const componentName$t = getComponentName('button-selection-group');
10291
10301
 
10292
10302
  const buttonSelectionGroupMixin = (superclass) =>
10293
10303
  class ButtonMultiSelectionGroupMixinClass extends superclass {
@@ -10296,19 +10306,19 @@ const buttonSelectionGroupMixin = (superclass) =>
10296
10306
  const template = document.createElement('template');
10297
10307
 
10298
10308
  template.innerHTML = `
10299
- <${componentName$t}
10309
+ <${componentName$u}
10300
10310
  name="button-selection-group"
10301
10311
  slot="input"
10302
10312
  tabindex="-1"
10303
10313
  part="internal-component"
10304
10314
  >
10305
10315
  <slot></slot>
10306
- </${componentName$t}>
10316
+ </${componentName$u}>
10307
10317
  `;
10308
10318
 
10309
10319
  this.baseElement.appendChild(template.content.cloneNode(true));
10310
10320
 
10311
- this.inputElement = this.shadowRoot.querySelector(componentName$t);
10321
+ this.inputElement = this.shadowRoot.querySelector(componentName$u);
10312
10322
 
10313
10323
  forwardAttrs(this, this.inputElement, {
10314
10324
  includeAttrs: ['size', 'default-value', 'allow-deselect'],
@@ -10333,16 +10343,16 @@ const ButtonSelectionGroupClass = compose(
10333
10343
  wrappedEleName: 'vaadin-text-field',
10334
10344
  style: () => buttonSelectionGroupStyles,
10335
10345
  excludeAttrsSync: ['tabindex'],
10336
- componentName: componentName$s,
10346
+ componentName: componentName$t,
10337
10347
  })
10338
10348
  );
10339
10349
 
10340
- customElements.define(componentName$t, ButtonSelectionGroupInternalClass);
10350
+ customElements.define(componentName$u, ButtonSelectionGroupInternalClass);
10341
10351
 
10342
- const componentName$r = getComponentName('button-selection-group-item');
10352
+ const componentName$s = getComponentName('button-selection-group-item');
10343
10353
 
10344
10354
  class RawSelectItem extends createBaseClass({
10345
- componentName: componentName$r,
10355
+ componentName: componentName$s,
10346
10356
  baseSelector: ':host > descope-button',
10347
10357
  }) {
10348
10358
  get size() {
@@ -10449,14 +10459,14 @@ const ButtonSelectionGroupItemClass = compose(
10449
10459
  componentNameValidationMixin
10450
10460
  )(RawSelectItem);
10451
10461
 
10452
- customElements.define(componentName$r, ButtonSelectionGroupItemClass);
10462
+ customElements.define(componentName$s, ButtonSelectionGroupItemClass);
10453
10463
 
10454
- customElements.define(componentName$s, ButtonSelectionGroupClass);
10464
+ customElements.define(componentName$t, ButtonSelectionGroupClass);
10455
10465
 
10456
- const componentName$q = getComponentName('button-multi-selection-group-internal');
10466
+ const componentName$r = getComponentName('button-multi-selection-group-internal');
10457
10467
 
10458
10468
  class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
10459
- componentName$q
10469
+ componentName$r
10460
10470
  ) {
10461
10471
  #getSelectedNodes() {
10462
10472
  return this.items.filter((item) => item.hasAttribute('selected'));
@@ -10559,7 +10569,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
10559
10569
  }
10560
10570
  }
10561
10571
 
10562
- const componentName$p = getComponentName('button-multi-selection-group');
10572
+ const componentName$q = getComponentName('button-multi-selection-group');
10563
10573
 
10564
10574
  const buttonMultiSelectionGroupMixin = (superclass) =>
10565
10575
  class ButtonMultiSelectionGroupMixinClass extends superclass {
@@ -10568,19 +10578,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
10568
10578
  const template = document.createElement('template');
10569
10579
 
10570
10580
  template.innerHTML = `
10571
- <${componentName$q}
10581
+ <${componentName$r}
10572
10582
  name="button-selection-group"
10573
10583
  slot="input"
10574
10584
  tabindex="-1"
10575
10585
  part="internal-component"
10576
10586
  >
10577
10587
  <slot></slot>
10578
- </${componentName$q}>
10588
+ </${componentName$r}>
10579
10589
  `;
10580
10590
 
10581
10591
  this.baseElement.appendChild(template.content.cloneNode(true));
10582
10592
 
10583
- this.inputElement = this.shadowRoot.querySelector(componentName$q);
10593
+ this.inputElement = this.shadowRoot.querySelector(componentName$r);
10584
10594
 
10585
10595
  forwardAttrs(this, this.inputElement, {
10586
10596
  includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
@@ -10605,13 +10615,13 @@ const ButtonMultiSelectionGroupClass = compose(
10605
10615
  wrappedEleName: 'vaadin-text-field',
10606
10616
  style: () => buttonSelectionGroupStyles,
10607
10617
  excludeAttrsSync: ['tabindex'],
10608
- componentName: componentName$p,
10618
+ componentName: componentName$q,
10609
10619
  })
10610
10620
  );
10611
10621
 
10612
- customElements.define(componentName$q, ButtonMultiSelectionGroupInternalClass);
10622
+ customElements.define(componentName$r, ButtonMultiSelectionGroupInternalClass);
10613
10623
 
10614
- customElements.define(componentName$p, ButtonMultiSelectionGroupClass);
10624
+ customElements.define(componentName$q, ButtonMultiSelectionGroupClass);
10615
10625
 
10616
10626
  /* eslint-disable no-param-reassign */
10617
10627
 
@@ -10639,9 +10649,9 @@ class GridTextColumnClass extends GridSortColumn {
10639
10649
  }
10640
10650
  }
10641
10651
 
10642
- const componentName$o = getComponentName('grid-text-column');
10652
+ const componentName$p = getComponentName('grid-text-column');
10643
10653
 
10644
- customElements.define(componentName$o, GridTextColumnClass);
10654
+ customElements.define(componentName$p, GridTextColumnClass);
10645
10655
 
10646
10656
  /* eslint-disable no-param-reassign */
10647
10657
 
@@ -10676,9 +10686,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
10676
10686
 
10677
10687
  /* eslint-disable no-param-reassign */
10678
10688
 
10679
- const componentName$n = getComponentName('grid-custom-column');
10689
+ const componentName$o = getComponentName('grid-custom-column');
10680
10690
 
10681
- customElements.define(componentName$n, GridCustomColumnClass);
10691
+ customElements.define(componentName$o, GridCustomColumnClass);
10682
10692
 
10683
10693
  const createCheckboxEle = () => {
10684
10694
  const checkbox = document.createElement('descope-checkbox');
@@ -10737,9 +10747,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
10737
10747
  }
10738
10748
  }
10739
10749
 
10740
- const componentName$m = getComponentName('grid-selection-column');
10750
+ const componentName$n = getComponentName('grid-selection-column');
10741
10751
 
10742
- customElements.define(componentName$m, GridSelectionColumnClass);
10752
+ customElements.define(componentName$n, GridSelectionColumnClass);
10743
10753
 
10744
10754
  /* eslint-disable no-param-reassign */
10745
10755
 
@@ -10778,9 +10788,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
10778
10788
  }
10779
10789
  }
10780
10790
 
10781
- const componentName$l = getComponentName('grid-item-details-column');
10791
+ const componentName$m = getComponentName('grid-item-details-column');
10782
10792
 
10783
- customElements.define(componentName$l, GridItemDetailsColumnClass);
10793
+ customElements.define(componentName$m, GridItemDetailsColumnClass);
10784
10794
 
10785
10795
  const decode = (input) => {
10786
10796
  const txt = document.createElement('textarea');
@@ -10792,9 +10802,9 @@ const tpl = (input, inline) => {
10792
10802
  return inline ? input : `<pre>${input}</pre>`;
10793
10803
  };
10794
10804
 
10795
- const componentName$k = getComponentName('code-snippet');
10805
+ const componentName$l = getComponentName('code-snippet');
10796
10806
 
10797
- let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$k, baseSelector: ':host > code' }) {
10807
+ let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$l, baseSelector: ':host > code' }) {
10798
10808
  static get observedAttributes() {
10799
10809
  return ['lang', 'inline'];
10800
10810
  }
@@ -11024,7 +11034,7 @@ const CodeSnippetClass = compose(
11024
11034
  componentNameValidationMixin
11025
11035
  )(CodeSnippet$1);
11026
11036
 
11027
- customElements.define(componentName$k, CodeSnippetClass);
11037
+ customElements.define(componentName$l, CodeSnippetClass);
11028
11038
 
11029
11039
  const isValidDataType = (data) => {
11030
11040
  const isValid = Array.isArray(data);
@@ -11099,7 +11109,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
11099
11109
  `;
11100
11110
  };
11101
11111
 
11102
- const componentName$j = getComponentName('grid');
11112
+ const componentName$k = getComponentName('grid');
11103
11113
 
11104
11114
  const GridMixin = (superclass) =>
11105
11115
  class GridMixinClass extends superclass {
@@ -11453,13 +11463,13 @@ const GridClass = compose(
11453
11463
  /*!css*/
11454
11464
  `,
11455
11465
  excludeAttrsSync: ['columns', 'tabindex'],
11456
- componentName: componentName$j,
11466
+ componentName: componentName$k,
11457
11467
  })
11458
11468
  );
11459
11469
 
11460
- customElements.define(componentName$j, GridClass);
11470
+ customElements.define(componentName$k, GridClass);
11461
11471
 
11462
- const componentName$i = getComponentName('multi-select-combo-box');
11472
+ const componentName$j = getComponentName('multi-select-combo-box');
11463
11473
 
11464
11474
  const multiSelectComboBoxMixin = (superclass) =>
11465
11475
  class MultiSelectComboBoxMixinClass extends superclass {
@@ -12093,16 +12103,16 @@ const MultiSelectComboBoxClass = compose(
12093
12103
  // Note: we exclude `placeholder` because the vaadin component observes it and
12094
12104
  // tries to override it, causing us to lose the user set placeholder.
12095
12105
  excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
12096
- componentName: componentName$i,
12106
+ componentName: componentName$j,
12097
12107
  includeForwardProps: ['items', 'renderer', 'selectedItems'],
12098
12108
  })
12099
12109
  );
12100
12110
 
12101
- customElements.define(componentName$i, MultiSelectComboBoxClass);
12111
+ customElements.define(componentName$j, MultiSelectComboBoxClass);
12102
12112
 
12103
- const componentName$h = getComponentName('badge');
12113
+ const componentName$i = getComponentName('badge');
12104
12114
 
12105
- class RawBadge extends createBaseClass({ componentName: componentName$h, baseSelector: ':host > div' }) {
12115
+ class RawBadge extends createBaseClass({ componentName: componentName$i, baseSelector: ':host > div' }) {
12106
12116
  constructor() {
12107
12117
  super();
12108
12118
 
@@ -12153,9 +12163,9 @@ const BadgeClass = compose(
12153
12163
  componentNameValidationMixin
12154
12164
  )(RawBadge);
12155
12165
 
12156
- customElements.define(componentName$h, BadgeClass);
12166
+ customElements.define(componentName$i, BadgeClass);
12157
12167
 
12158
- const componentName$g = getComponentName('modal');
12168
+ const componentName$h = getComponentName('modal');
12159
12169
 
12160
12170
  const customMixin$5 = (superclass) =>
12161
12171
  class ModalMixinClass extends superclass {
@@ -12254,11 +12264,11 @@ const ModalClass = compose(
12254
12264
  wrappedEleName: 'vaadin-dialog',
12255
12265
  style: () => ``,
12256
12266
  excludeAttrsSync: ['tabindex', 'opened'],
12257
- componentName: componentName$g,
12267
+ componentName: componentName$h,
12258
12268
  })
12259
12269
  );
12260
12270
 
12261
- customElements.define(componentName$g, ModalClass);
12271
+ customElements.define(componentName$h, ModalClass);
12262
12272
 
12263
12273
  const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
12264
12274
 
@@ -12269,7 +12279,7 @@ if (!vaadinContainerClass) {
12269
12279
  class NotificationContainerClass extends vaadinContainerClass {}
12270
12280
  customElements.define(getComponentName('notification-container'), NotificationContainerClass);
12271
12281
 
12272
- const componentName$f = getComponentName('notification-card');
12282
+ const componentName$g = getComponentName('notification-card');
12273
12283
 
12274
12284
  const notificationCardMixin = (superclass) =>
12275
12285
  class NotificationCardMixinClass extends superclass {
@@ -12377,13 +12387,13 @@ const NotificationCardClass = compose(
12377
12387
  }
12378
12388
  `,
12379
12389
  excludeAttrsSync: ['tabindex'],
12380
- componentName: componentName$f,
12390
+ componentName: componentName$g,
12381
12391
  })
12382
12392
  );
12383
12393
 
12384
- customElements.define(componentName$f, NotificationCardClass);
12394
+ customElements.define(componentName$g, NotificationCardClass);
12385
12395
 
12386
- const componentName$e = getComponentName('notification');
12396
+ const componentName$f = getComponentName('notification');
12387
12397
 
12388
12398
  const NotificationMixin = (superclass) =>
12389
12399
  class NotificationMixinClass extends superclass {
@@ -12478,14 +12488,14 @@ const NotificationClass = compose(
12478
12488
  createProxy({
12479
12489
  wrappedEleName: 'vaadin-notification',
12480
12490
  excludeAttrsSync: ['tabindex'],
12481
- componentName: componentName$e,
12491
+ componentName: componentName$f,
12482
12492
  })
12483
12493
  );
12484
12494
 
12485
- customElements.define(componentName$e, NotificationClass);
12495
+ customElements.define(componentName$f, NotificationClass);
12486
12496
 
12487
- const componentName$d = getComponentName('avatar');
12488
- class RawAvatar extends createBaseClass({ componentName: componentName$d, baseSelector: ':host > .wrapper' }) {
12497
+ const componentName$e = getComponentName('avatar');
12498
+ class RawAvatar extends createBaseClass({ componentName: componentName$e, baseSelector: ':host > .wrapper' }) {
12489
12499
  constructor() {
12490
12500
  super();
12491
12501
 
@@ -12589,11 +12599,11 @@ const AvatarClass = compose(
12589
12599
  componentNameValidationMixin
12590
12600
  )(RawAvatar);
12591
12601
 
12592
- customElements.define(componentName$d, AvatarClass);
12602
+ customElements.define(componentName$e, AvatarClass);
12593
12603
 
12594
- const componentName$c = getComponentName('mappings-field-internal');
12604
+ const componentName$d = getComponentName('mappings-field-internal');
12595
12605
 
12596
- const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$c, baseSelector: 'div' });
12606
+ const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$d, baseSelector: 'div' });
12597
12607
 
12598
12608
  class MappingsFieldInternal extends BaseInputClass$2 {
12599
12609
  #errorItem;
@@ -12828,7 +12838,7 @@ class MappingsFieldInternal extends BaseInputClass$2 {
12828
12838
  }
12829
12839
  }
12830
12840
 
12831
- const componentName$b = getComponentName('mappings-field');
12841
+ const componentName$c = getComponentName('mappings-field');
12832
12842
 
12833
12843
  const customMixin$4 = (superclass) =>
12834
12844
  class MappingsFieldMixinClass extends superclass {
@@ -12857,14 +12867,14 @@ const customMixin$4 = (superclass) =>
12857
12867
  const template = document.createElement('template');
12858
12868
 
12859
12869
  template.innerHTML = `
12860
- <${componentName$c}
12870
+ <${componentName$d}
12861
12871
  tabindex="-1"
12862
- ></${componentName$c}>
12872
+ ></${componentName$d}>
12863
12873
  `;
12864
12874
 
12865
12875
  this.baseElement.appendChild(template.content.cloneNode(true));
12866
12876
 
12867
- this.inputElement = this.shadowRoot.querySelector(componentName$c);
12877
+ this.inputElement = this.shadowRoot.querySelector(componentName$d);
12868
12878
 
12869
12879
  forwardAttrs(this, this.inputElement, {
12870
12880
  includeAttrs: [
@@ -12996,17 +13006,17 @@ const MappingsFieldClass = compose(
12996
13006
  'options',
12997
13007
  'error-message',
12998
13008
  ],
12999
- componentName: componentName$b,
13009
+ componentName: componentName$c,
13000
13010
  })
13001
13011
  );
13002
13012
 
13003
- customElements.define(componentName$c, MappingsFieldInternal);
13013
+ customElements.define(componentName$d, MappingsFieldInternal);
13004
13014
 
13005
- const componentName$a = getComponentName('mapping-item');
13015
+ const componentName$b = getComponentName('mapping-item');
13006
13016
 
13007
13017
  const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
13008
13018
 
13009
- const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$a, baseSelector: 'div' });
13019
+ const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$b, baseSelector: 'div' });
13010
13020
 
13011
13021
  class MappingItem extends BaseInputClass$1 {
13012
13022
  static get observedAttributes() {
@@ -13156,17 +13166,17 @@ class MappingItem extends BaseInputClass$1 {
13156
13166
  }
13157
13167
  }
13158
13168
 
13159
- customElements.define(componentName$a, MappingItem);
13169
+ customElements.define(componentName$b, MappingItem);
13160
13170
 
13161
- customElements.define(componentName$b, MappingsFieldClass);
13171
+ customElements.define(componentName$c, MappingsFieldClass);
13162
13172
 
13163
13173
  var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
13164
13174
 
13165
13175
  var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
13166
13176
 
13167
- const componentName$9 = getComponentName('user-attribute');
13177
+ const componentName$a = getComponentName('user-attribute');
13168
13178
  class RawUserAttribute extends createBaseClass({
13169
- componentName: componentName$9,
13179
+ componentName: componentName$a,
13170
13180
  baseSelector: ':host > .root',
13171
13181
  }) {
13172
13182
  constructor() {
@@ -13400,13 +13410,13 @@ const UserAttributeClass = compose(
13400
13410
  componentNameValidationMixin
13401
13411
  )(RawUserAttribute);
13402
13412
 
13403
- customElements.define(componentName$9, UserAttributeClass);
13413
+ customElements.define(componentName$a, UserAttributeClass);
13404
13414
 
13405
13415
  var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
13406
13416
 
13407
- const componentName$8 = getComponentName('user-auth-method');
13417
+ const componentName$9 = getComponentName('user-auth-method');
13408
13418
  class RawUserAuthMethod extends createBaseClass({
13409
- componentName: componentName$8,
13419
+ componentName: componentName$9,
13410
13420
  baseSelector: ':host > .root',
13411
13421
  }) {
13412
13422
  constructor() {
@@ -13598,11 +13608,11 @@ const UserAuthMethodClass = compose(
13598
13608
  componentNameValidationMixin
13599
13609
  )(RawUserAuthMethod);
13600
13610
 
13601
- customElements.define(componentName$8, UserAuthMethodClass);
13611
+ customElements.define(componentName$9, UserAuthMethodClass);
13602
13612
 
13603
- const componentName$7 = getComponentName('saml-group-mappings-internal');
13613
+ const componentName$8 = getComponentName('saml-group-mappings-internal');
13604
13614
 
13605
- const BaseInputClass = createBaseInputClass({ componentName: componentName$7, baseSelector: '' });
13615
+ const BaseInputClass = createBaseInputClass({ componentName: componentName$8, baseSelector: '' });
13606
13616
 
13607
13617
  class SamlGroupMappingsInternal extends BaseInputClass {
13608
13618
  static get observedAttributes() {
@@ -13728,7 +13738,7 @@ class SamlGroupMappingsInternal extends BaseInputClass {
13728
13738
  }
13729
13739
  }
13730
13740
 
13731
- const componentName$6 = getComponentName('saml-group-mappings');
13741
+ const componentName$7 = getComponentName('saml-group-mappings');
13732
13742
 
13733
13743
  const customMixin$3 = (superclass) =>
13734
13744
  class SamlGroupMappingsMixinClass extends superclass {
@@ -13738,14 +13748,14 @@ const customMixin$3 = (superclass) =>
13738
13748
  const template = document.createElement('template');
13739
13749
 
13740
13750
  template.innerHTML = `
13741
- <${componentName$7}
13751
+ <${componentName$8}
13742
13752
  tabindex="-1"
13743
- ></${componentName$7}>
13753
+ ></${componentName$8}>
13744
13754
  `;
13745
13755
 
13746
13756
  this.baseElement.appendChild(template.content.cloneNode(true));
13747
13757
 
13748
- this.inputElement = this.shadowRoot.querySelector(componentName$7);
13758
+ this.inputElement = this.shadowRoot.querySelector(componentName$8);
13749
13759
 
13750
13760
  forwardAttrs(this, this.inputElement, {
13751
13761
  includeAttrs: [
@@ -13822,15 +13832,15 @@ const SamlGroupMappingsClass = compose(
13822
13832
  'options',
13823
13833
  'error-message',
13824
13834
  ],
13825
- componentName: componentName$6,
13835
+ componentName: componentName$7,
13826
13836
  })
13827
13837
  );
13828
13838
 
13829
- customElements.define(componentName$7, SamlGroupMappingsInternal);
13839
+ customElements.define(componentName$8, SamlGroupMappingsInternal);
13830
13840
 
13831
- customElements.define(componentName$6, SamlGroupMappingsClass);
13841
+ customElements.define(componentName$7, SamlGroupMappingsClass);
13832
13842
 
13833
- const componentName$5 = getComponentName('radio-button');
13843
+ const componentName$6 = getComponentName('radio-button');
13834
13844
 
13835
13845
  const customMixin$2 = (superclass) =>
13836
13846
  class CustomMixin extends superclass {
@@ -13895,11 +13905,11 @@ const RadioButtonClass = compose(
13895
13905
  wrappedEleName: 'vaadin-radio-button',
13896
13906
  excludeAttrsSync: ['tabindex', 'data'],
13897
13907
  includeForwardProps: ['checked', 'name', 'disabled'],
13898
- componentName: componentName$5,
13908
+ componentName: componentName$6,
13899
13909
  })
13900
13910
  );
13901
13911
 
13902
- const componentName$4 = getComponentName('radio-group');
13912
+ const componentName$5 = getComponentName('radio-group');
13903
13913
 
13904
13914
  const RadioGroupMixin = (superclass) =>
13905
13915
  class RadioGroupMixinClass extends superclass {
@@ -13914,12 +13924,12 @@ const RadioGroupMixin = (superclass) =>
13914
13924
 
13915
13925
  // we are overriding vaadin children getter so it will run on our custom elements
13916
13926
  Object.defineProperty(this.baseElement, 'children', {
13917
- get: () => this.querySelectorAll(componentName$5),
13927
+ get: () => this.querySelectorAll(componentName$6),
13918
13928
  });
13919
13929
 
13920
13930
  // we are overriding vaadin __filterRadioButtons so it will run on our custom elements
13921
13931
  this.baseElement.__filterRadioButtons = (nodes) => {
13922
- return nodes.filter((node) => node.localName === componentName$5);
13932
+ return nodes.filter((node) => node.localName === componentName$6);
13923
13933
  };
13924
13934
 
13925
13935
  // vaadin radio group missing some input properties
@@ -14069,13 +14079,13 @@ const RadioGroupClass = compose(
14069
14079
  `,
14070
14080
 
14071
14081
  excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
14072
- componentName: componentName$4,
14082
+ componentName: componentName$5,
14073
14083
  includeForwardProps: ['value'],
14074
14084
  })
14075
14085
  );
14076
14086
 
14077
- customElements.define(componentName$4, RadioGroupClass);
14078
- customElements.define(componentName$5, RadioButtonClass);
14087
+ customElements.define(componentName$5, RadioGroupClass);
14088
+ customElements.define(componentName$6, RadioButtonClass);
14079
14089
 
14080
14090
  const activeableMixin = (superclass) =>
14081
14091
  class ActiveableMixinClass extends superclass {
@@ -14092,7 +14102,7 @@ const activeableMixin = (superclass) =>
14092
14102
  }
14093
14103
  };
14094
14104
 
14095
- const componentName$3 = getComponentName('list-item');
14105
+ const componentName$4 = getComponentName('list-item');
14096
14106
 
14097
14107
  const customMixin$1 = (superclass) =>
14098
14108
  class ListItemMixinClass extends superclass {
@@ -14141,11 +14151,11 @@ const ListItemClass = compose(
14141
14151
  componentNameValidationMixin,
14142
14152
  customMixin$1,
14143
14153
  activeableMixin
14144
- )(createBaseClass({ componentName: componentName$3, baseSelector: 'slot' }));
14154
+ )(createBaseClass({ componentName: componentName$4, baseSelector: 'slot' }));
14145
14155
 
14146
- const componentName$2 = getComponentName('list');
14156
+ const componentName$3 = getComponentName('list');
14147
14157
 
14148
- class RawList extends createBaseClass({ componentName: componentName$2, baseSelector: '.wrapper' }) {
14158
+ class RawList extends createBaseClass({ componentName: componentName$3, baseSelector: '.wrapper' }) {
14149
14159
  static get observedAttributes() {
14150
14160
  return ['variant', 'readonly'];
14151
14161
  }
@@ -14292,8 +14302,8 @@ const ListClass = compose(
14292
14302
  componentNameValidationMixin
14293
14303
  )(RawList);
14294
14304
 
14295
- customElements.define(componentName$2, ListClass);
14296
- customElements.define(componentName$3, ListItemClass);
14305
+ customElements.define(componentName$3, ListClass);
14306
+ customElements.define(componentName$4, ListItemClass);
14297
14307
 
14298
14308
  const defaultValidateSchema = () => true;
14299
14309
  const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
@@ -14370,18 +14380,14 @@ const createDynamicDataMixin =
14370
14380
  init() {
14371
14381
  super.init?.();
14372
14382
 
14373
- if (rerenderAttrsList.length) {
14374
- observeAttributes(
14375
- this,
14376
- (attrs) => {
14377
- if (attrs.includes('data')) this.#handleDataAttr();
14378
- if (attrs.some((attr) => attr !== 'data')) this.#renderItems();
14379
- },
14380
- { includeAttrs: [...rerenderAttrsList, 'data'] }
14381
- );
14382
- } else {
14383
- this.#renderItems();
14384
- }
14383
+ observeAttributes(
14384
+ this,
14385
+ (attrs) => {
14386
+ if (attrs.includes('data')) this.#handleDataAttr();
14387
+ else this.#renderItems();
14388
+ },
14389
+ { includeAttrs: [...rerenderAttrsList, 'data'] }
14390
+ );
14385
14391
  }
14386
14392
 
14387
14393
  #handleDataAttr() {
@@ -14390,30 +14396,15 @@ const createDynamicDataMixin =
14390
14396
  if (!dataAttr) return;
14391
14397
 
14392
14398
  try {
14393
- this.#data = JSON.parse(dataAttr);
14399
+ this.data = JSON.parse(dataAttr);
14394
14400
  } catch (e) {
14395
14401
  // eslint-disable-next-line no-console
14396
14402
  console.warn('Invalid JSON data', dataAttr);
14397
14403
  }
14398
14404
  }
14399
-
14400
- attributeChangedCallback(name, oldValue, newValue) {
14401
- super.attributeChangedCallback?.(name, oldValue, newValue);
14402
-
14403
- if (newValue === oldValue) return;
14404
-
14405
- if (name === 'data') {
14406
- try {
14407
- this.data = JSON.parse(newValue);
14408
- } catch (e) {
14409
- // eslint-disable-next-line no-console
14410
- console.warn('Invalid JSON data', newValue);
14411
- }
14412
- }
14413
- }
14414
14405
  };
14415
14406
 
14416
- const componentName$1 = getComponentName('apps-list');
14407
+ const componentName$2 = getComponentName('apps-list');
14417
14408
 
14418
14409
  const limitAbbreviation = (str, limit = 2) =>
14419
14410
  str
@@ -14423,7 +14414,7 @@ const limitAbbreviation = (str, limit = 2) =>
14423
14414
  .map((s) => s[0]?.toUpperCase())
14424
14415
  .join('');
14425
14416
 
14426
- const itemRenderer = ({ name, icon, url }, _, ref) => `
14417
+ const itemRenderer$1 = ({ name, icon, url }, _, ref) => `
14427
14418
  <a ${url ? `href="${url}" title="${url}"` : ''} target="_blank">
14428
14419
  <descope-list-item>
14429
14420
  <descope-avatar
@@ -14466,7 +14457,7 @@ const AppsListClass = compose(
14466
14457
  },
14467
14458
  },
14468
14459
  }),
14469
- createDynamicDataMixin({ itemRenderer, rerenderAttrsList: ['size'] }),
14460
+ createDynamicDataMixin({ itemRenderer: itemRenderer$1, rerenderAttrsList: ['size'] }),
14470
14461
  draggableMixin,
14471
14462
  componentNameValidationMixin,
14472
14463
  customMixin
@@ -14475,7 +14466,7 @@ const AppsListClass = compose(
14475
14466
  slots: ['empty-state'],
14476
14467
  wrappedEleName: 'descope-list',
14477
14468
  excludeAttrsSync: ['tabindex', 'class', 'empty'],
14478
- componentName: componentName$1,
14469
+ componentName: componentName$2,
14479
14470
  style: () => `
14480
14471
  :host {
14481
14472
  width: 100%;
@@ -14500,7 +14491,113 @@ const AppsListClass = compose(
14500
14491
  })
14501
14492
  );
14502
14493
 
14503
- customElements.define(componentName$1, AppsListClass);
14494
+ customElements.define(componentName$2, AppsListClass);
14495
+
14496
+ const componentName$1 = getComponentName('scopes-list');
14497
+ const variants = ['checkbox', 'switch'];
14498
+
14499
+ const itemRenderer = ({ id, desc, required = false }, _, ref) => {
14500
+ const ComponentClass = ref.variant === 'checkbox' ? CheckboxClass : SwitchToggleClass;
14501
+
14502
+ return `
14503
+ <${ComponentClass.componentName}
14504
+ bordered="true"
14505
+ size=${ref.size}
14506
+ label="${desc}"
14507
+ data-id="${id}"
14508
+ readonly="${required || ref.isReadOnly}"
14509
+ required="${required}"
14510
+ checked="true"
14511
+ ></${ComponentClass.componentName}>
14512
+ `;
14513
+ };
14514
+
14515
+ class RawScopesList extends createBaseClass({ componentName: componentName$1, baseSelector: 'div' }) {
14516
+ constructor() {
14517
+ super();
14518
+
14519
+ this.attachShadow({ mode: 'open' }).innerHTML = `
14520
+ <style>
14521
+ :host {
14522
+ display: inline-flex;
14523
+ }
14524
+
14525
+ div {
14526
+ display: flex;
14527
+ flex-direction: column;
14528
+ }
14529
+
14530
+ </style>
14531
+ <div></div>
14532
+ `;
14533
+ }
14534
+
14535
+ get isReadOnly() {
14536
+ return this.getAttribute('readonly') === 'true';
14537
+ }
14538
+
14539
+ get size() {
14540
+ return this.getAttribute('size') || 'sm';
14541
+ }
14542
+
14543
+ get value() {
14544
+ return Array.from(this.shadowRoot.querySelector('div').children).reduce(
14545
+ (acc, el) => ({ ...acc, [el.getAttribute('data-id')]: el.checked }),
14546
+ {}
14547
+ );
14548
+ }
14549
+
14550
+ get variant() {
14551
+ const variant = this.getAttribute('variant');
14552
+
14553
+ return variants.includes(variant) ? variant : variants[0];
14554
+ }
14555
+ }
14556
+
14557
+ const ScopesListClass = compose(
14558
+ createStyleMixin({
14559
+ mappings: {
14560
+ hostWidth: { selector: () => ':host', property: 'width' },
14561
+ hostDirection: [
14562
+ { selector: () => ':host', property: 'direction' },
14563
+ {
14564
+ selector: () => CheckboxClass.componentName,
14565
+ property: CheckboxClass.cssVarList.hostDirection,
14566
+ },
14567
+ {
14568
+ selector: () => SwitchToggleClass.componentName,
14569
+ property: SwitchToggleClass.cssVarList.hostDirection,
14570
+ },
14571
+ ],
14572
+ gap: { selector: () => 'div', property: 'gap' },
14573
+ requiredInputBorderColor: [
14574
+ {
14575
+ selector: `${CheckboxClass.componentName}[required="true"]`,
14576
+ property: CheckboxClass.cssVarList.inputBorderColor,
14577
+ },
14578
+ {
14579
+ selector: `${SwitchToggleClass.componentName}[required="true"]`,
14580
+ property: SwitchToggleClass.cssVarList.inputBorderColor,
14581
+ },
14582
+ ],
14583
+ requiredInputValueTextColor: [
14584
+ {
14585
+ selector: `${CheckboxClass.componentName}[required="true"]`,
14586
+ property: CheckboxClass.cssVarList.inputValueTextColor,
14587
+ },
14588
+ {
14589
+ selector: `${SwitchToggleClass.componentName}[required="true"]`,
14590
+ property: SwitchToggleClass.cssVarList.knobColor,
14591
+ },
14592
+ ],
14593
+ },
14594
+ }),
14595
+ createDynamicDataMixin({ itemRenderer, rerenderAttrsList: ['size', 'variant'] }),
14596
+ draggableMixin,
14597
+ componentNameValidationMixin
14598
+ )(RawScopesList);
14599
+
14600
+ customElements.define(componentName$1, ScopesListClass);
14504
14601
 
14505
14602
  const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
14506
14603
 
@@ -14932,7 +15029,7 @@ const globals = {
14932
15029
  fonts,
14933
15030
  direction,
14934
15031
  };
14935
- const vars$O = getThemeVars(globals);
15032
+ const vars$P = getThemeVars(globals);
14936
15033
 
14937
15034
  const globalRefs$x = getThemeRefs(globals);
14938
15035
  const compVars$6 = ButtonClass.cssVarList;
@@ -14945,7 +15042,7 @@ const mode = {
14945
15042
  surface: globalRefs$x.colors.surface,
14946
15043
  };
14947
15044
 
14948
- const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$$);
15045
+ const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$10);
14949
15046
 
14950
15047
  const button = {
14951
15048
  ...helperTheme$4,
@@ -15057,7 +15154,7 @@ const button = {
15057
15154
  },
15058
15155
  };
15059
15156
 
15060
- const vars$N = {
15157
+ const vars$O = {
15061
15158
  ...compVars$6,
15062
15159
  ...helperVars$4,
15063
15160
  };
@@ -15065,13 +15162,13 @@ const vars$N = {
15065
15162
  var button$1 = /*#__PURE__*/Object.freeze({
15066
15163
  __proto__: null,
15067
15164
  default: button,
15068
- vars: vars$N
15165
+ vars: vars$O
15069
15166
  });
15070
15167
 
15071
15168
  const componentName = getComponentName('input-wrapper');
15072
15169
  const globalRefs$w = getThemeRefs(globals);
15073
15170
 
15074
- const [theme$1, refs, vars$M] = createHelperVars(
15171
+ const [theme$1, refs, vars$N] = createHelperVars(
15075
15172
  {
15076
15173
  labelTextColor: globalRefs$w.colors.surface.dark,
15077
15174
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
@@ -15190,13 +15287,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
15190
15287
  __proto__: null,
15191
15288
  default: theme$1,
15192
15289
  refs: refs,
15193
- vars: vars$M
15290
+ vars: vars$N
15194
15291
  });
15195
15292
 
15196
15293
  const globalRefs$v = getThemeRefs(globals);
15197
- const vars$L = TextFieldClass.cssVarList;
15294
+ const vars$M = TextFieldClass.cssVarList;
15198
15295
 
15199
15296
  const textField = {
15297
+ [vars$M.hostWidth]: refs.width,
15298
+ [vars$M.hostMinWidth]: refs.minWidth,
15299
+ [vars$M.hostDirection]: refs.direction,
15300
+ [vars$M.fontSize]: refs.fontSize,
15301
+ [vars$M.fontFamily]: refs.fontFamily,
15302
+ [vars$M.labelFontSize]: refs.labelFontSize,
15303
+ [vars$M.labelFontWeight]: refs.labelFontWeight,
15304
+ [vars$M.labelTextColor]: refs.labelTextColor,
15305
+ [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
15306
+ [vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
15307
+ [vars$M.inputValueTextColor]: refs.valueTextColor,
15308
+ [vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
15309
+ [vars$M.inputBorderWidth]: refs.borderWidth,
15310
+ [vars$M.inputBorderStyle]: refs.borderStyle,
15311
+ [vars$M.inputBorderColor]: refs.borderColor,
15312
+ [vars$M.inputBorderRadius]: refs.borderRadius,
15313
+ [vars$M.inputOutlineWidth]: refs.outlineWidth,
15314
+ [vars$M.inputOutlineStyle]: refs.outlineStyle,
15315
+ [vars$M.inputOutlineColor]: refs.outlineColor,
15316
+ [vars$M.inputOutlineOffset]: refs.outlineOffset,
15317
+ [vars$M.inputBackgroundColor]: refs.backgroundColor,
15318
+ [vars$M.inputHeight]: refs.inputHeight,
15319
+ [vars$M.inputHorizontalPadding]: refs.horizontalPadding,
15320
+ [vars$M.helperTextColor]: refs.helperTextColor,
15321
+ [vars$M.textAlign]: refs.textAlign,
15322
+ textAlign: {
15323
+ right: { [vars$M.inputTextAlign]: 'right' },
15324
+ left: { [vars$M.inputTextAlign]: 'left' },
15325
+ center: { [vars$M.inputTextAlign]: 'center' },
15326
+ },
15327
+ [vars$M.labelPosition]: refs.labelPosition,
15328
+ [vars$M.labelTopPosition]: refs.labelTopPosition,
15329
+ [vars$M.labelHorizontalPosition]: refs.labelHorizontalPosition,
15330
+ [vars$M.inputTransformY]: refs.inputTransformY,
15331
+ [vars$M.inputTransition]: refs.inputTransition,
15332
+ [vars$M.marginInlineStart]: refs.marginInlineStart,
15333
+ [vars$M.placeholderOpacity]: refs.placeholderOpacity,
15334
+ [vars$M.inputVerticalAlignment]: refs.inputVerticalAlignment,
15335
+ [vars$M.valueInputHeight]: refs.valueInputHeight,
15336
+ [vars$M.valueInputMarginBottom]: refs.valueInputMarginBottom,
15337
+ [vars$M.inputIconOffset]: globalRefs$v.spacing.md,
15338
+ [vars$M.inputIconSize]: refs.inputIconSize,
15339
+ [vars$M.inputIconColor]: refs.placeholderTextColor,
15340
+ };
15341
+
15342
+ var textField$1 = /*#__PURE__*/Object.freeze({
15343
+ __proto__: null,
15344
+ default: textField,
15345
+ textField: textField,
15346
+ vars: vars$M
15347
+ });
15348
+
15349
+ const globalRefs$u = getThemeRefs(globals);
15350
+ const vars$L = PasswordClass.cssVarList;
15351
+
15352
+ const password = {
15200
15353
  [vars$L.hostWidth]: refs.width,
15201
15354
  [vars$L.hostMinWidth]: refs.minWidth,
15202
15355
  [vars$L.hostDirection]: refs.direction,
@@ -15205,10 +15358,13 @@ const textField = {
15205
15358
  [vars$L.labelFontSize]: refs.labelFontSize,
15206
15359
  [vars$L.labelFontWeight]: refs.labelFontWeight,
15207
15360
  [vars$L.labelTextColor]: refs.labelTextColor,
15208
- [vars$L.labelRequiredIndicator]: refs.requiredIndicator,
15209
15361
  [vars$L.errorMessageTextColor]: refs.errorMessageTextColor,
15362
+ [vars$L.inputHorizontalPadding]: refs.horizontalPadding,
15363
+ [vars$L.inputHeight]: refs.inputHeight,
15364
+ [vars$L.inputBackgroundColor]: refs.backgroundColor,
15365
+ [vars$L.labelRequiredIndicator]: refs.requiredIndicator,
15210
15366
  [vars$L.inputValueTextColor]: refs.valueTextColor,
15211
- [vars$L.inputPlaceholderColor]: refs.placeholderTextColor,
15367
+ [vars$L.inputPlaceholderTextColor]: refs.placeholderTextColor,
15212
15368
  [vars$L.inputBorderWidth]: refs.borderWidth,
15213
15369
  [vars$L.inputBorderStyle]: refs.borderStyle,
15214
15370
  [vars$L.inputBorderColor]: refs.borderColor,
@@ -15217,16 +15373,9 @@ const textField = {
15217
15373
  [vars$L.inputOutlineStyle]: refs.outlineStyle,
15218
15374
  [vars$L.inputOutlineColor]: refs.outlineColor,
15219
15375
  [vars$L.inputOutlineOffset]: refs.outlineOffset,
15220
- [vars$L.inputBackgroundColor]: refs.backgroundColor,
15221
- [vars$L.inputHeight]: refs.inputHeight,
15222
- [vars$L.inputHorizontalPadding]: refs.horizontalPadding,
15223
- [vars$L.helperTextColor]: refs.helperTextColor,
15224
- [vars$L.textAlign]: refs.textAlign,
15225
- textAlign: {
15226
- right: { [vars$L.inputTextAlign]: 'right' },
15227
- left: { [vars$L.inputTextAlign]: 'left' },
15228
- center: { [vars$L.inputTextAlign]: 'center' },
15229
- },
15376
+ [vars$L.revealButtonOffset]: globalRefs$u.spacing.md,
15377
+ [vars$L.revealButtonSize]: refs.toggleButtonSize,
15378
+ [vars$L.revealButtonColor]: refs.placeholderTextColor,
15230
15379
  [vars$L.labelPosition]: refs.labelPosition,
15231
15380
  [vars$L.labelTopPosition]: refs.labelTopPosition,
15232
15381
  [vars$L.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15236,23 +15385,17 @@ const textField = {
15236
15385
  [vars$L.placeholderOpacity]: refs.placeholderOpacity,
15237
15386
  [vars$L.inputVerticalAlignment]: refs.inputVerticalAlignment,
15238
15387
  [vars$L.valueInputHeight]: refs.valueInputHeight,
15239
- [vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
15240
- [vars$L.inputIconOffset]: globalRefs$v.spacing.md,
15241
- [vars$L.inputIconSize]: refs.inputIconSize,
15242
- [vars$L.inputIconColor]: refs.placeholderTextColor,
15243
15388
  };
15244
15389
 
15245
- var textField$1 = /*#__PURE__*/Object.freeze({
15390
+ var password$1 = /*#__PURE__*/Object.freeze({
15246
15391
  __proto__: null,
15247
- default: textField,
15248
- textField: textField,
15392
+ default: password,
15249
15393
  vars: vars$L
15250
15394
  });
15251
15395
 
15252
- const globalRefs$u = getThemeRefs(globals);
15253
- const vars$K = PasswordClass.cssVarList;
15396
+ const vars$K = NumberFieldClass.cssVarList;
15254
15397
 
15255
- const password = {
15398
+ const numberField = {
15256
15399
  [vars$K.hostWidth]: refs.width,
15257
15400
  [vars$K.hostMinWidth]: refs.minWidth,
15258
15401
  [vars$K.hostDirection]: refs.direction,
@@ -15262,12 +15405,8 @@ const password = {
15262
15405
  [vars$K.labelFontWeight]: refs.labelFontWeight,
15263
15406
  [vars$K.labelTextColor]: refs.labelTextColor,
15264
15407
  [vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
15265
- [vars$K.inputHorizontalPadding]: refs.horizontalPadding,
15266
- [vars$K.inputHeight]: refs.inputHeight,
15267
- [vars$K.inputBackgroundColor]: refs.backgroundColor,
15268
- [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
15269
15408
  [vars$K.inputValueTextColor]: refs.valueTextColor,
15270
- [vars$K.inputPlaceholderTextColor]: refs.placeholderTextColor,
15409
+ [vars$K.inputPlaceholderColor]: refs.placeholderTextColor,
15271
15410
  [vars$K.inputBorderWidth]: refs.borderWidth,
15272
15411
  [vars$K.inputBorderStyle]: refs.borderStyle,
15273
15412
  [vars$K.inputBorderColor]: refs.borderColor,
@@ -15276,9 +15415,10 @@ const password = {
15276
15415
  [vars$K.inputOutlineStyle]: refs.outlineStyle,
15277
15416
  [vars$K.inputOutlineColor]: refs.outlineColor,
15278
15417
  [vars$K.inputOutlineOffset]: refs.outlineOffset,
15279
- [vars$K.revealButtonOffset]: globalRefs$u.spacing.md,
15280
- [vars$K.revealButtonSize]: refs.toggleButtonSize,
15281
- [vars$K.revealButtonColor]: refs.placeholderTextColor,
15418
+ [vars$K.inputBackgroundColor]: refs.backgroundColor,
15419
+ [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
15420
+ [vars$K.inputHorizontalPadding]: refs.horizontalPadding,
15421
+ [vars$K.inputHeight]: refs.inputHeight,
15282
15422
  [vars$K.labelPosition]: refs.labelPosition,
15283
15423
  [vars$K.labelTopPosition]: refs.labelTopPosition,
15284
15424
  [vars$K.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15288,17 +15428,18 @@ const password = {
15288
15428
  [vars$K.placeholderOpacity]: refs.placeholderOpacity,
15289
15429
  [vars$K.inputVerticalAlignment]: refs.inputVerticalAlignment,
15290
15430
  [vars$K.valueInputHeight]: refs.valueInputHeight,
15431
+ [vars$K.valueInputMarginBottom]: refs.valueInputMarginBottom,
15291
15432
  };
15292
15433
 
15293
- var password$1 = /*#__PURE__*/Object.freeze({
15434
+ var numberField$1 = /*#__PURE__*/Object.freeze({
15294
15435
  __proto__: null,
15295
- default: password,
15436
+ default: numberField,
15296
15437
  vars: vars$K
15297
15438
  });
15298
15439
 
15299
- const vars$J = NumberFieldClass.cssVarList;
15440
+ const vars$J = EmailFieldClass.cssVarList;
15300
15441
 
15301
- const numberField = {
15442
+ const emailField = {
15302
15443
  [vars$J.hostWidth]: refs.width,
15303
15444
  [vars$J.hostMinWidth]: refs.minWidth,
15304
15445
  [vars$J.hostDirection]: refs.direction,
@@ -15309,6 +15450,7 @@ const numberField = {
15309
15450
  [vars$J.labelTextColor]: refs.labelTextColor,
15310
15451
  [vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
15311
15452
  [vars$J.inputValueTextColor]: refs.valueTextColor,
15453
+ [vars$J.labelRequiredIndicator]: refs.requiredIndicator,
15312
15454
  [vars$J.inputPlaceholderColor]: refs.placeholderTextColor,
15313
15455
  [vars$J.inputBorderWidth]: refs.borderWidth,
15314
15456
  [vars$J.inputBorderStyle]: refs.borderStyle,
@@ -15319,7 +15461,6 @@ const numberField = {
15319
15461
  [vars$J.inputOutlineColor]: refs.outlineColor,
15320
15462
  [vars$J.inputOutlineOffset]: refs.outlineOffset,
15321
15463
  [vars$J.inputBackgroundColor]: refs.backgroundColor,
15322
- [vars$J.labelRequiredIndicator]: refs.requiredIndicator,
15323
15464
  [vars$J.inputHorizontalPadding]: refs.horizontalPadding,
15324
15465
  [vars$J.inputHeight]: refs.inputHeight,
15325
15466
  [vars$J.labelPosition]: refs.labelPosition,
@@ -15334,204 +15475,153 @@ const numberField = {
15334
15475
  [vars$J.valueInputMarginBottom]: refs.valueInputMarginBottom,
15335
15476
  };
15336
15477
 
15337
- var numberField$1 = /*#__PURE__*/Object.freeze({
15478
+ var emailField$1 = /*#__PURE__*/Object.freeze({
15338
15479
  __proto__: null,
15339
- default: numberField,
15480
+ default: emailField,
15340
15481
  vars: vars$J
15341
15482
  });
15342
15483
 
15343
- const vars$I = EmailFieldClass.cssVarList;
15484
+ const vars$I = TextAreaClass.cssVarList;
15344
15485
 
15345
- const emailField = {
15486
+ const textArea = {
15346
15487
  [vars$I.hostWidth]: refs.width,
15347
15488
  [vars$I.hostMinWidth]: refs.minWidth,
15348
15489
  [vars$I.hostDirection]: refs.direction,
15349
15490
  [vars$I.fontSize]: refs.fontSize,
15350
15491
  [vars$I.fontFamily]: refs.fontFamily,
15351
- [vars$I.labelFontSize]: refs.labelFontSize,
15352
- [vars$I.labelFontWeight]: refs.labelFontWeight,
15353
15492
  [vars$I.labelTextColor]: refs.labelTextColor,
15493
+ [vars$I.labelRequiredIndicator]: refs.requiredIndicator,
15354
15494
  [vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
15495
+ [vars$I.inputBackgroundColor]: refs.backgroundColor,
15355
15496
  [vars$I.inputValueTextColor]: refs.valueTextColor,
15356
- [vars$I.labelRequiredIndicator]: refs.requiredIndicator,
15357
- [vars$I.inputPlaceholderColor]: refs.placeholderTextColor,
15497
+ [vars$I.inputPlaceholderTextColor]: refs.placeholderTextColor,
15498
+ [vars$I.inputBorderRadius]: refs.borderRadius,
15358
15499
  [vars$I.inputBorderWidth]: refs.borderWidth,
15359
15500
  [vars$I.inputBorderStyle]: refs.borderStyle,
15360
15501
  [vars$I.inputBorderColor]: refs.borderColor,
15361
- [vars$I.inputBorderRadius]: refs.borderRadius,
15362
15502
  [vars$I.inputOutlineWidth]: refs.outlineWidth,
15363
15503
  [vars$I.inputOutlineStyle]: refs.outlineStyle,
15364
15504
  [vars$I.inputOutlineColor]: refs.outlineColor,
15365
15505
  [vars$I.inputOutlineOffset]: refs.outlineOffset,
15366
- [vars$I.inputBackgroundColor]: refs.backgroundColor,
15367
- [vars$I.inputHorizontalPadding]: refs.horizontalPadding,
15368
- [vars$I.inputHeight]: refs.inputHeight,
15369
- [vars$I.labelPosition]: refs.labelPosition,
15370
- [vars$I.labelTopPosition]: refs.labelTopPosition,
15371
- [vars$I.labelHorizontalPosition]: refs.labelHorizontalPosition,
15372
- [vars$I.inputTransformY]: refs.inputTransformY,
15373
- [vars$I.inputTransition]: refs.inputTransition,
15374
- [vars$I.marginInlineStart]: refs.marginInlineStart,
15375
- [vars$I.placeholderOpacity]: refs.placeholderOpacity,
15376
- [vars$I.inputVerticalAlignment]: refs.inputVerticalAlignment,
15377
- [vars$I.valueInputHeight]: refs.valueInputHeight,
15378
- [vars$I.valueInputMarginBottom]: refs.valueInputMarginBottom,
15506
+ [vars$I.inputResizeType]: 'vertical',
15507
+ [vars$I.inputMinHeight]: '5em',
15508
+ textAlign: {
15509
+ right: { [vars$I.inputTextAlign]: 'right' },
15510
+ left: { [vars$I.inputTextAlign]: 'left' },
15511
+ center: { [vars$I.inputTextAlign]: 'center' },
15512
+ },
15513
+
15514
+ _readonly: {
15515
+ [vars$I.inputResizeType]: 'none',
15516
+ },
15379
15517
  };
15380
15518
 
15381
- var emailField$1 = /*#__PURE__*/Object.freeze({
15519
+ var textArea$1 = /*#__PURE__*/Object.freeze({
15382
15520
  __proto__: null,
15383
- default: emailField,
15521
+ default: textArea,
15384
15522
  vars: vars$I
15385
15523
  });
15386
15524
 
15387
- const vars$H = TextAreaClass.cssVarList;
15525
+ const vars$H = CheckboxClass.cssVarList;
15526
+ const checkboxSize = '1.35em';
15388
15527
 
15389
- const textArea = {
15528
+ const checkbox = {
15390
15529
  [vars$H.hostWidth]: refs.width,
15391
- [vars$H.hostMinWidth]: refs.minWidth,
15392
15530
  [vars$H.hostDirection]: refs.direction,
15393
15531
  [vars$H.fontSize]: refs.fontSize,
15394
15532
  [vars$H.fontFamily]: refs.fontFamily,
15395
15533
  [vars$H.labelTextColor]: refs.labelTextColor,
15396
15534
  [vars$H.labelRequiredIndicator]: refs.requiredIndicator,
15535
+ [vars$H.labelFontWeight]: '400',
15536
+ [vars$H.labelLineHeight]: checkboxSize,
15537
+ [vars$H.labelSpacing]: '1em',
15397
15538
  [vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
15398
- [vars$H.inputBackgroundColor]: refs.backgroundColor,
15399
- [vars$H.inputValueTextColor]: refs.valueTextColor,
15400
- [vars$H.inputPlaceholderTextColor]: refs.placeholderTextColor,
15539
+ [vars$H.inputOutlineWidth]: refs.outlineWidth,
15540
+ [vars$H.inputOutlineOffset]: refs.outlineOffset,
15541
+ [vars$H.inputOutlineColor]: refs.outlineColor,
15542
+ [vars$H.inputOutlineStyle]: refs.outlineStyle,
15401
15543
  [vars$H.inputBorderRadius]: refs.borderRadius,
15544
+ [vars$H.inputBorderColor]: refs.borderColor,
15402
15545
  [vars$H.inputBorderWidth]: refs.borderWidth,
15403
15546
  [vars$H.inputBorderStyle]: refs.borderStyle,
15404
- [vars$H.inputBorderColor]: refs.borderColor,
15405
- [vars$H.inputOutlineWidth]: refs.outlineWidth,
15406
- [vars$H.inputOutlineStyle]: refs.outlineStyle,
15407
- [vars$H.inputOutlineColor]: refs.outlineColor,
15408
- [vars$H.inputOutlineOffset]: refs.outlineOffset,
15409
- [vars$H.inputResizeType]: 'vertical',
15410
- [vars$H.inputMinHeight]: '5em',
15411
- textAlign: {
15412
- right: { [vars$H.inputTextAlign]: 'right' },
15413
- left: { [vars$H.inputTextAlign]: 'left' },
15414
- center: { [vars$H.inputTextAlign]: 'center' },
15415
- },
15416
-
15417
- _readonly: {
15418
- [vars$H.inputResizeType]: 'none',
15419
- },
15547
+ [vars$H.inputBackgroundColor]: refs.backgroundColor,
15548
+ [vars$H.inputSize]: checkboxSize,
15549
+ [vars$H.inputValueTextColor]: refs.valueTextColor,
15420
15550
  };
15421
15551
 
15422
- var textArea$1 = /*#__PURE__*/Object.freeze({
15552
+ var checkbox$1 = /*#__PURE__*/Object.freeze({
15423
15553
  __proto__: null,
15424
- default: textArea,
15554
+ default: checkbox,
15425
15555
  vars: vars$H
15426
15556
  });
15427
15557
 
15428
- const vars$G = CheckboxClass.cssVarList;
15429
- const checkboxSize = '1.35em';
15558
+ const knobMargin = '2px';
15559
+ const checkboxHeight = '1.25em';
15430
15560
 
15431
- const checkbox = {
15561
+ const globalRefs$t = getThemeRefs(globals);
15562
+ const vars$G = SwitchToggleClass.cssVarList;
15563
+
15564
+ const switchToggle = {
15432
15565
  [vars$G.hostWidth]: refs.width,
15433
15566
  [vars$G.hostDirection]: refs.direction,
15434
15567
  [vars$G.fontSize]: refs.fontSize,
15435
15568
  [vars$G.fontFamily]: refs.fontFamily,
15436
- [vars$G.labelTextColor]: refs.labelTextColor,
15437
- [vars$G.labelRequiredIndicator]: refs.requiredIndicator,
15438
- [vars$G.labelFontWeight]: '400',
15439
- [vars$G.labelLineHeight]: checkboxSize,
15440
- [vars$G.labelSpacing]: '1em',
15441
- [vars$G.errorMessageTextColor]: refs.errorMessageTextColor,
15569
+
15442
15570
  [vars$G.inputOutlineWidth]: refs.outlineWidth,
15443
15571
  [vars$G.inputOutlineOffset]: refs.outlineOffset,
15444
15572
  [vars$G.inputOutlineColor]: refs.outlineColor,
15445
15573
  [vars$G.inputOutlineStyle]: refs.outlineStyle,
15446
- [vars$G.inputBorderRadius]: refs.borderRadius,
15447
- [vars$G.inputBorderColor]: refs.borderColor,
15448
- [vars$G.inputBorderWidth]: refs.borderWidth,
15449
- [vars$G.inputBorderStyle]: refs.borderStyle,
15450
- [vars$G.inputBackgroundColor]: refs.backgroundColor,
15451
- [vars$G.inputSize]: checkboxSize,
15452
-
15453
- _checked: {
15454
- [vars$G.inputValueTextColor]: refs.valueTextColor,
15455
- },
15456
-
15457
- _disabled: {
15458
- [vars$G.labelTextColor]: refs.labelTextColor,
15459
- },
15460
- };
15461
15574
 
15462
- var checkbox$1 = /*#__PURE__*/Object.freeze({
15463
- __proto__: null,
15464
- default: checkbox,
15465
- vars: vars$G
15466
- });
15575
+ [vars$G.trackBorderStyle]: refs.borderStyle,
15576
+ [vars$G.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
15577
+ [vars$G.trackBorderColor]: refs.borderColor,
15578
+ [vars$G.trackBackgroundColor]: refs.backgroundColor,
15579
+ [vars$G.trackBorderRadius]: globalRefs$t.radius.md,
15580
+ [vars$G.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
15581
+ [vars$G.trackHeight]: checkboxHeight,
15582
+
15583
+ [vars$G.knobSize]: `calc(1em - ${knobMargin})`,
15584
+ [vars$G.knobRadius]: '50%',
15585
+ [vars$G.knobTopOffset]: '1px',
15586
+ [vars$G.knobLeftOffset]: knobMargin,
15587
+ [vars$G.knobColor]: refs.labelTextColor,
15588
+ [vars$G.knobTransitionDuration]: '0.3s',
15467
15589
 
15468
- const knobMargin = '2px';
15469
- const checkboxHeight = '1.25em';
15470
-
15471
- const globalRefs$t = getThemeRefs(globals);
15472
- const vars$F = SwitchToggleClass.cssVarList;
15473
-
15474
- const switchToggle = {
15475
- [vars$F.hostWidth]: refs.width,
15476
- [vars$F.hostDirection]: refs.direction,
15477
- [vars$F.fontSize]: refs.fontSize,
15478
- [vars$F.fontFamily]: refs.fontFamily,
15479
-
15480
- [vars$F.inputOutlineWidth]: refs.outlineWidth,
15481
- [vars$F.inputOutlineOffset]: refs.outlineOffset,
15482
- [vars$F.inputOutlineColor]: refs.outlineColor,
15483
- [vars$F.inputOutlineStyle]: refs.outlineStyle,
15484
-
15485
- [vars$F.trackBorderStyle]: refs.borderStyle,
15486
- [vars$F.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
15487
- [vars$F.trackBorderColor]: refs.borderColor,
15488
- [vars$F.trackBackgroundColor]: refs.backgroundColor,
15489
- [vars$F.trackBorderRadius]: globalRefs$t.radius.md,
15490
- [vars$F.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
15491
- [vars$F.trackHeight]: checkboxHeight,
15492
-
15493
- [vars$F.knobSize]: `calc(1em - ${knobMargin})`,
15494
- [vars$F.knobRadius]: '50%',
15495
- [vars$F.knobTopOffset]: '1px',
15496
- [vars$F.knobLeftOffset]: knobMargin,
15497
- [vars$F.knobColor]: refs.labelTextColor,
15498
- [vars$F.knobTransitionDuration]: '0.3s',
15499
-
15500
- [vars$F.labelTextColor]: refs.labelTextColor,
15501
- [vars$F.labelFontWeight]: '400',
15502
- [vars$F.labelLineHeight]: '1.35em',
15503
- [vars$F.labelSpacing]: '1em',
15504
- [vars$F.labelRequiredIndicator]: refs.requiredIndicator,
15505
- [vars$F.errorMessageTextColor]: refs.errorMessageTextColor,
15590
+ [vars$G.labelTextColor]: refs.labelTextColor,
15591
+ [vars$G.labelFontWeight]: '400',
15592
+ [vars$G.labelLineHeight]: '1.35em',
15593
+ [vars$G.labelSpacing]: '1em',
15594
+ [vars$G.labelRequiredIndicator]: refs.requiredIndicator,
15595
+ [vars$G.errorMessageTextColor]: refs.errorMessageTextColor,
15506
15596
 
15507
15597
  _checked: {
15508
- [vars$F.trackBorderColor]: refs.borderColor,
15509
- [vars$F.knobLeftOffset]: `calc(100% - var(${vars$F.knobSize}) - ${knobMargin})`,
15510
- [vars$F.knobColor]: refs.valueTextColor,
15511
- [vars$F.knobTextColor]: refs.valueTextColor,
15598
+ [vars$G.trackBorderColor]: refs.borderColor,
15599
+ [vars$G.knobLeftOffset]: `calc(100% - var(${vars$G.knobSize}) - ${knobMargin})`,
15600
+ [vars$G.knobColor]: refs.valueTextColor,
15601
+ [vars$G.knobTextColor]: refs.valueTextColor,
15512
15602
  },
15513
15603
 
15514
15604
  _disabled: {
15515
- [vars$F.knobColor]: globalRefs$t.colors.surface.light,
15516
- [vars$F.trackBorderColor]: globalRefs$t.colors.surface.light,
15517
- [vars$F.trackBackgroundColor]: globalRefs$t.colors.surface.main,
15518
- [vars$F.labelTextColor]: refs.labelTextColor,
15605
+ [vars$G.knobColor]: globalRefs$t.colors.surface.light,
15606
+ [vars$G.trackBorderColor]: globalRefs$t.colors.surface.light,
15607
+ [vars$G.trackBackgroundColor]: globalRefs$t.colors.surface.main,
15608
+ [vars$G.labelTextColor]: refs.labelTextColor,
15519
15609
  _checked: {
15520
- [vars$F.knobColor]: globalRefs$t.colors.surface.light,
15521
- [vars$F.trackBackgroundColor]: globalRefs$t.colors.surface.main,
15610
+ [vars$G.knobColor]: globalRefs$t.colors.surface.light,
15611
+ [vars$G.trackBackgroundColor]: globalRefs$t.colors.surface.main,
15522
15612
  },
15523
15613
  },
15524
15614
 
15525
15615
  _invalid: {
15526
- [vars$F.trackBorderColor]: globalRefs$t.colors.error.main,
15527
- [vars$F.knobColor]: globalRefs$t.colors.error.main,
15616
+ [vars$G.trackBorderColor]: globalRefs$t.colors.error.main,
15617
+ [vars$G.knobColor]: globalRefs$t.colors.error.main,
15528
15618
  },
15529
15619
  };
15530
15620
 
15531
15621
  var switchToggle$1 = /*#__PURE__*/Object.freeze({
15532
15622
  __proto__: null,
15533
15623
  default: switchToggle,
15534
- vars: vars$F
15624
+ vars: vars$G
15535
15625
  });
15536
15626
 
15537
15627
  const globalRefs$s = getThemeRefs(globals);
@@ -15556,7 +15646,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
15556
15646
  horizontalAlignment,
15557
15647
  shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
15558
15648
  },
15559
- componentName$V
15649
+ componentName$W
15560
15650
  );
15561
15651
 
15562
15652
  const { shadowColor: shadowColor$3 } = helperRefs$3;
@@ -15643,7 +15733,7 @@ const container = {
15643
15733
  },
15644
15734
  };
15645
15735
 
15646
- const vars$E = {
15736
+ const vars$F = {
15647
15737
  ...compVars$5,
15648
15738
  ...helperVars$3,
15649
15739
  };
@@ -15651,168 +15741,168 @@ const vars$E = {
15651
15741
  var container$1 = /*#__PURE__*/Object.freeze({
15652
15742
  __proto__: null,
15653
15743
  default: container,
15654
- vars: vars$E
15744
+ vars: vars$F
15655
15745
  });
15656
15746
 
15657
- const vars$D = LogoClass.cssVarList;
15747
+ const vars$E = LogoClass.cssVarList;
15658
15748
 
15659
15749
  const logo$2 = {
15660
- [vars$D.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
15750
+ [vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
15661
15751
  };
15662
15752
 
15663
15753
  var logo$3 = /*#__PURE__*/Object.freeze({
15664
15754
  __proto__: null,
15665
15755
  default: logo$2,
15666
- vars: vars$D
15756
+ vars: vars$E
15667
15757
  });
15668
15758
 
15669
- const vars$C = TotpImageClass.cssVarList;
15759
+ const vars$D = TotpImageClass.cssVarList;
15670
15760
 
15671
15761
  const logo$1 = {
15672
- [vars$C.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
15762
+ [vars$D.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
15673
15763
  };
15674
15764
 
15675
15765
  var totpImage = /*#__PURE__*/Object.freeze({
15676
15766
  __proto__: null,
15677
15767
  default: logo$1,
15678
- vars: vars$C
15768
+ vars: vars$D
15679
15769
  });
15680
15770
 
15681
- const vars$B = NotpImageClass.cssVarList;
15771
+ const vars$C = NotpImageClass.cssVarList;
15682
15772
 
15683
15773
  const logo = {
15684
- [vars$B.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
15774
+ [vars$C.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
15685
15775
  };
15686
15776
 
15687
15777
  var notpImage = /*#__PURE__*/Object.freeze({
15688
15778
  __proto__: null,
15689
15779
  default: logo,
15690
- vars: vars$B
15780
+ vars: vars$C
15691
15781
  });
15692
15782
 
15693
15783
  const globalRefs$r = getThemeRefs(globals);
15694
- const vars$A = TextClass.cssVarList;
15784
+ const vars$B = TextClass.cssVarList;
15695
15785
 
15696
15786
  const text = {
15697
- [vars$A.hostDirection]: globalRefs$r.direction,
15698
- [vars$A.textLineHeight]: '1.35em',
15699
- [vars$A.textAlign]: 'left',
15700
- [vars$A.textColor]: globalRefs$r.colors.surface.dark,
15787
+ [vars$B.hostDirection]: globalRefs$r.direction,
15788
+ [vars$B.textLineHeight]: '1.35em',
15789
+ [vars$B.textAlign]: 'left',
15790
+ [vars$B.textColor]: globalRefs$r.colors.surface.dark,
15701
15791
 
15702
15792
  variant: {
15703
15793
  h1: {
15704
- [vars$A.fontSize]: globalRefs$r.typography.h1.size,
15705
- [vars$A.fontWeight]: globalRefs$r.typography.h1.weight,
15706
- [vars$A.fontFamily]: globalRefs$r.typography.h1.font,
15794
+ [vars$B.fontSize]: globalRefs$r.typography.h1.size,
15795
+ [vars$B.fontWeight]: globalRefs$r.typography.h1.weight,
15796
+ [vars$B.fontFamily]: globalRefs$r.typography.h1.font,
15707
15797
  },
15708
15798
  h2: {
15709
- [vars$A.fontSize]: globalRefs$r.typography.h2.size,
15710
- [vars$A.fontWeight]: globalRefs$r.typography.h2.weight,
15711
- [vars$A.fontFamily]: globalRefs$r.typography.h2.font,
15799
+ [vars$B.fontSize]: globalRefs$r.typography.h2.size,
15800
+ [vars$B.fontWeight]: globalRefs$r.typography.h2.weight,
15801
+ [vars$B.fontFamily]: globalRefs$r.typography.h2.font,
15712
15802
  },
15713
15803
  h3: {
15714
- [vars$A.fontSize]: globalRefs$r.typography.h3.size,
15715
- [vars$A.fontWeight]: globalRefs$r.typography.h3.weight,
15716
- [vars$A.fontFamily]: globalRefs$r.typography.h3.font,
15804
+ [vars$B.fontSize]: globalRefs$r.typography.h3.size,
15805
+ [vars$B.fontWeight]: globalRefs$r.typography.h3.weight,
15806
+ [vars$B.fontFamily]: globalRefs$r.typography.h3.font,
15717
15807
  },
15718
15808
  subtitle1: {
15719
- [vars$A.fontSize]: globalRefs$r.typography.subtitle1.size,
15720
- [vars$A.fontWeight]: globalRefs$r.typography.subtitle1.weight,
15721
- [vars$A.fontFamily]: globalRefs$r.typography.subtitle1.font,
15809
+ [vars$B.fontSize]: globalRefs$r.typography.subtitle1.size,
15810
+ [vars$B.fontWeight]: globalRefs$r.typography.subtitle1.weight,
15811
+ [vars$B.fontFamily]: globalRefs$r.typography.subtitle1.font,
15722
15812
  },
15723
15813
  subtitle2: {
15724
- [vars$A.fontSize]: globalRefs$r.typography.subtitle2.size,
15725
- [vars$A.fontWeight]: globalRefs$r.typography.subtitle2.weight,
15726
- [vars$A.fontFamily]: globalRefs$r.typography.subtitle2.font,
15814
+ [vars$B.fontSize]: globalRefs$r.typography.subtitle2.size,
15815
+ [vars$B.fontWeight]: globalRefs$r.typography.subtitle2.weight,
15816
+ [vars$B.fontFamily]: globalRefs$r.typography.subtitle2.font,
15727
15817
  },
15728
15818
  body1: {
15729
- [vars$A.fontSize]: globalRefs$r.typography.body1.size,
15730
- [vars$A.fontWeight]: globalRefs$r.typography.body1.weight,
15731
- [vars$A.fontFamily]: globalRefs$r.typography.body1.font,
15819
+ [vars$B.fontSize]: globalRefs$r.typography.body1.size,
15820
+ [vars$B.fontWeight]: globalRefs$r.typography.body1.weight,
15821
+ [vars$B.fontFamily]: globalRefs$r.typography.body1.font,
15732
15822
  },
15733
15823
  body2: {
15734
- [vars$A.fontSize]: globalRefs$r.typography.body2.size,
15735
- [vars$A.fontWeight]: globalRefs$r.typography.body2.weight,
15736
- [vars$A.fontFamily]: globalRefs$r.typography.body2.font,
15824
+ [vars$B.fontSize]: globalRefs$r.typography.body2.size,
15825
+ [vars$B.fontWeight]: globalRefs$r.typography.body2.weight,
15826
+ [vars$B.fontFamily]: globalRefs$r.typography.body2.font,
15737
15827
  },
15738
15828
  },
15739
15829
 
15740
15830
  mode: {
15741
15831
  primary: {
15742
- [vars$A.textColor]: globalRefs$r.colors.surface.contrast,
15832
+ [vars$B.textColor]: globalRefs$r.colors.surface.contrast,
15743
15833
  },
15744
15834
  secondary: {
15745
- [vars$A.textColor]: globalRefs$r.colors.surface.dark,
15835
+ [vars$B.textColor]: globalRefs$r.colors.surface.dark,
15746
15836
  },
15747
15837
  error: {
15748
- [vars$A.textColor]: globalRefs$r.colors.error.main,
15838
+ [vars$B.textColor]: globalRefs$r.colors.error.main,
15749
15839
  },
15750
15840
  success: {
15751
- [vars$A.textColor]: globalRefs$r.colors.success.main,
15841
+ [vars$B.textColor]: globalRefs$r.colors.success.main,
15752
15842
  },
15753
15843
  },
15754
15844
 
15755
15845
  textAlign: {
15756
- right: { [vars$A.textAlign]: 'right' },
15757
- left: { [vars$A.textAlign]: 'left' },
15758
- center: { [vars$A.textAlign]: 'center' },
15846
+ right: { [vars$B.textAlign]: 'right' },
15847
+ left: { [vars$B.textAlign]: 'left' },
15848
+ center: { [vars$B.textAlign]: 'center' },
15759
15849
  },
15760
15850
 
15761
15851
  _fullWidth: {
15762
- [vars$A.hostWidth]: '100%',
15852
+ [vars$B.hostWidth]: '100%',
15763
15853
  },
15764
15854
 
15765
15855
  _italic: {
15766
- [vars$A.fontStyle]: 'italic',
15856
+ [vars$B.fontStyle]: 'italic',
15767
15857
  },
15768
15858
 
15769
15859
  _uppercase: {
15770
- [vars$A.textTransform]: 'uppercase',
15860
+ [vars$B.textTransform]: 'uppercase',
15771
15861
  },
15772
15862
 
15773
15863
  _lowercase: {
15774
- [vars$A.textTransform]: 'lowercase',
15864
+ [vars$B.textTransform]: 'lowercase',
15775
15865
  },
15776
15866
  };
15777
15867
 
15778
15868
  var text$1 = /*#__PURE__*/Object.freeze({
15779
15869
  __proto__: null,
15780
15870
  default: text,
15781
- vars: vars$A
15871
+ vars: vars$B
15782
15872
  });
15783
15873
 
15784
15874
  const globalRefs$q = getThemeRefs(globals);
15785
- const vars$z = LinkClass.cssVarList;
15875
+ const vars$A = LinkClass.cssVarList;
15786
15876
 
15787
15877
  const link = {
15788
- [vars$z.hostDirection]: globalRefs$q.direction,
15789
- [vars$z.cursor]: 'pointer',
15878
+ [vars$A.hostDirection]: globalRefs$q.direction,
15879
+ [vars$A.cursor]: 'pointer',
15790
15880
 
15791
- [vars$z.textColor]: globalRefs$q.colors.primary.main,
15881
+ [vars$A.textColor]: globalRefs$q.colors.primary.main,
15792
15882
 
15793
15883
  textAlign: {
15794
- right: { [vars$z.textAlign]: 'right' },
15795
- left: { [vars$z.textAlign]: 'left' },
15796
- center: { [vars$z.textAlign]: 'center' },
15884
+ right: { [vars$A.textAlign]: 'right' },
15885
+ left: { [vars$A.textAlign]: 'left' },
15886
+ center: { [vars$A.textAlign]: 'center' },
15797
15887
  },
15798
15888
 
15799
15889
  _fullWidth: {
15800
- [vars$z.hostWidth]: '100%',
15890
+ [vars$A.hostWidth]: '100%',
15801
15891
  },
15802
15892
 
15803
15893
  _hover: {
15804
- [vars$z.textDecoration]: 'underline',
15894
+ [vars$A.textDecoration]: 'underline',
15805
15895
  },
15806
15896
 
15807
15897
  mode: {
15808
15898
  secondary: {
15809
- [vars$z.textColor]: globalRefs$q.colors.secondary.main,
15899
+ [vars$A.textColor]: globalRefs$q.colors.secondary.main,
15810
15900
  },
15811
15901
  error: {
15812
- [vars$z.textColor]: globalRefs$q.colors.error.main,
15902
+ [vars$A.textColor]: globalRefs$q.colors.error.main,
15813
15903
  },
15814
15904
  success: {
15815
- [vars$z.textColor]: globalRefs$q.colors.success.main,
15905
+ [vars$A.textColor]: globalRefs$q.colors.success.main,
15816
15906
  },
15817
15907
  },
15818
15908
  };
@@ -15820,37 +15910,37 @@ const link = {
15820
15910
  var link$1 = /*#__PURE__*/Object.freeze({
15821
15911
  __proto__: null,
15822
15912
  default: link,
15823
- vars: vars$z
15913
+ vars: vars$A
15824
15914
  });
15825
15915
 
15826
15916
  const globalRefs$p = getThemeRefs(globals);
15827
- const vars$y = EnrichedTextClass.cssVarList;
15917
+ const vars$z = EnrichedTextClass.cssVarList;
15828
15918
 
15829
15919
  const enrichedText = {
15830
- [vars$y.hostDirection]: globalRefs$p.direction,
15831
- [vars$y.hostWidth]: useVar(vars$A.hostWidth),
15920
+ [vars$z.hostDirection]: globalRefs$p.direction,
15921
+ [vars$z.hostWidth]: useVar(vars$B.hostWidth),
15832
15922
 
15833
- [vars$y.textLineHeight]: useVar(vars$A.textLineHeight),
15834
- [vars$y.textColor]: useVar(vars$A.textColor),
15835
- [vars$y.textAlign]: useVar(vars$A.textAlign),
15923
+ [vars$z.textLineHeight]: useVar(vars$B.textLineHeight),
15924
+ [vars$z.textColor]: useVar(vars$B.textColor),
15925
+ [vars$z.textAlign]: useVar(vars$B.textAlign),
15836
15926
 
15837
- [vars$y.fontSize]: useVar(vars$A.fontSize),
15838
- [vars$y.fontWeight]: useVar(vars$A.fontWeight),
15839
- [vars$y.fontFamily]: useVar(vars$A.fontFamily),
15927
+ [vars$z.fontSize]: useVar(vars$B.fontSize),
15928
+ [vars$z.fontWeight]: useVar(vars$B.fontWeight),
15929
+ [vars$z.fontFamily]: useVar(vars$B.fontFamily),
15840
15930
 
15841
- [vars$y.linkColor]: useVar(vars$z.textColor),
15842
- [vars$y.linkTextDecoration]: 'none',
15843
- [vars$y.linkHoverTextDecoration]: 'underline',
15931
+ [vars$z.linkColor]: useVar(vars$A.textColor),
15932
+ [vars$z.linkTextDecoration]: 'none',
15933
+ [vars$z.linkHoverTextDecoration]: 'underline',
15844
15934
 
15845
- [vars$y.fontWeightBold]: '900',
15846
- [vars$y.minWidth]: '0.25em',
15847
- [vars$y.minHeight]: '1.35em',
15935
+ [vars$z.fontWeightBold]: '900',
15936
+ [vars$z.minWidth]: '0.25em',
15937
+ [vars$z.minHeight]: '1.35em',
15848
15938
 
15849
- [vars$y.hostDisplay]: 'inline-block',
15939
+ [vars$z.hostDisplay]: 'inline-block',
15850
15940
 
15851
15941
  _empty: {
15852
15942
  _hideWhenEmpty: {
15853
- [vars$y.hostDisplay]: 'none',
15943
+ [vars$z.hostDisplay]: 'none',
15854
15944
  },
15855
15945
  },
15856
15946
  };
@@ -15858,7 +15948,7 @@ const enrichedText = {
15858
15948
  var enrichedText$1 = /*#__PURE__*/Object.freeze({
15859
15949
  __proto__: null,
15860
15950
  default: enrichedText,
15861
- vars: vars$y
15951
+ vars: vars$z
15862
15952
  });
15863
15953
 
15864
15954
  const globalRefs$o = getThemeRefs(globals);
@@ -15869,7 +15959,7 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
15869
15959
  thickness: '2px',
15870
15960
  spacing: '10px',
15871
15961
  },
15872
- componentName$P
15962
+ componentName$Q
15873
15963
  );
15874
15964
 
15875
15965
  const divider = {
@@ -15900,7 +15990,7 @@ const divider = {
15900
15990
  },
15901
15991
  };
15902
15992
 
15903
- const vars$x = {
15993
+ const vars$y = {
15904
15994
  ...compVars$4,
15905
15995
  ...helperVars$2,
15906
15996
  };
@@ -15908,93 +15998,93 @@ const vars$x = {
15908
15998
  var divider$1 = /*#__PURE__*/Object.freeze({
15909
15999
  __proto__: null,
15910
16000
  default: divider,
15911
- vars: vars$x
16001
+ vars: vars$y
15912
16002
  });
15913
16003
 
15914
- const vars$w = PasscodeClass.cssVarList;
16004
+ const vars$x = PasscodeClass.cssVarList;
15915
16005
 
15916
16006
  const passcode = {
15917
- [vars$w.hostDirection]: refs.direction,
15918
- [vars$w.fontFamily]: refs.fontFamily,
15919
- [vars$w.fontSize]: refs.fontSize,
15920
- [vars$w.labelTextColor]: refs.labelTextColor,
15921
- [vars$w.labelRequiredIndicator]: refs.requiredIndicator,
15922
- [vars$w.errorMessageTextColor]: refs.errorMessageTextColor,
15923
- [vars$w.digitValueTextColor]: refs.valueTextColor,
15924
- [vars$w.digitPadding]: '0',
15925
- [vars$w.digitTextAlign]: 'center',
15926
- [vars$w.digitSpacing]: '4px',
15927
- [vars$w.hostWidth]: refs.width,
15928
- [vars$w.digitOutlineColor]: 'transparent',
15929
- [vars$w.digitOutlineWidth]: refs.outlineWidth,
15930
- [vars$w.focusedDigitFieldOutlineColor]: refs.outlineColor,
15931
- [vars$w.digitSize]: refs.inputHeight,
16007
+ [vars$x.hostDirection]: refs.direction,
16008
+ [vars$x.fontFamily]: refs.fontFamily,
16009
+ [vars$x.fontSize]: refs.fontSize,
16010
+ [vars$x.labelTextColor]: refs.labelTextColor,
16011
+ [vars$x.labelRequiredIndicator]: refs.requiredIndicator,
16012
+ [vars$x.errorMessageTextColor]: refs.errorMessageTextColor,
16013
+ [vars$x.digitValueTextColor]: refs.valueTextColor,
16014
+ [vars$x.digitPadding]: '0',
16015
+ [vars$x.digitTextAlign]: 'center',
16016
+ [vars$x.digitSpacing]: '4px',
16017
+ [vars$x.hostWidth]: refs.width,
16018
+ [vars$x.digitOutlineColor]: 'transparent',
16019
+ [vars$x.digitOutlineWidth]: refs.outlineWidth,
16020
+ [vars$x.focusedDigitFieldOutlineColor]: refs.outlineColor,
16021
+ [vars$x.digitSize]: refs.inputHeight,
15932
16022
 
15933
16023
  size: {
15934
- xs: { [vars$w.spinnerSize]: '15px' },
15935
- sm: { [vars$w.spinnerSize]: '20px' },
15936
- md: { [vars$w.spinnerSize]: '20px' },
15937
- lg: { [vars$w.spinnerSize]: '20px' },
16024
+ xs: { [vars$x.spinnerSize]: '15px' },
16025
+ sm: { [vars$x.spinnerSize]: '20px' },
16026
+ md: { [vars$x.spinnerSize]: '20px' },
16027
+ lg: { [vars$x.spinnerSize]: '20px' },
15938
16028
  },
15939
16029
 
15940
16030
  _hideCursor: {
15941
- [vars$w.digitCaretTextColor]: 'transparent',
16031
+ [vars$x.digitCaretTextColor]: 'transparent',
15942
16032
  },
15943
16033
 
15944
16034
  _loading: {
15945
- [vars$w.overlayOpacity]: refs.overlayOpacity,
16035
+ [vars$x.overlayOpacity]: refs.overlayOpacity,
15946
16036
  },
15947
16037
  };
15948
16038
 
15949
16039
  var passcode$1 = /*#__PURE__*/Object.freeze({
15950
16040
  __proto__: null,
15951
16041
  default: passcode,
15952
- vars: vars$w
16042
+ vars: vars$x
15953
16043
  });
15954
16044
 
15955
16045
  const globalRefs$n = getThemeRefs(globals);
15956
- const vars$v = LoaderLinearClass.cssVarList;
16046
+ const vars$w = LoaderLinearClass.cssVarList;
15957
16047
 
15958
16048
  const loaderLinear = {
15959
- [vars$v.hostDisplay]: 'inline-block',
15960
- [vars$v.hostWidth]: '100%',
16049
+ [vars$w.hostDisplay]: 'inline-block',
16050
+ [vars$w.hostWidth]: '100%',
15961
16051
 
15962
- [vars$v.barColor]: globalRefs$n.colors.surface.contrast,
15963
- [vars$v.barWidth]: '20%',
16052
+ [vars$w.barColor]: globalRefs$n.colors.surface.contrast,
16053
+ [vars$w.barWidth]: '20%',
15964
16054
 
15965
- [vars$v.barBackgroundColor]: globalRefs$n.colors.surface.light,
15966
- [vars$v.barBorderRadius]: '4px',
16055
+ [vars$w.barBackgroundColor]: globalRefs$n.colors.surface.light,
16056
+ [vars$w.barBorderRadius]: '4px',
15967
16057
 
15968
- [vars$v.animationDuration]: '2s',
15969
- [vars$v.animationTimingFunction]: 'linear',
15970
- [vars$v.animationIterationCount]: 'infinite',
15971
- [vars$v.verticalPadding]: '0.25em',
16058
+ [vars$w.animationDuration]: '2s',
16059
+ [vars$w.animationTimingFunction]: 'linear',
16060
+ [vars$w.animationIterationCount]: 'infinite',
16061
+ [vars$w.verticalPadding]: '0.25em',
15972
16062
 
15973
16063
  size: {
15974
- xs: { [vars$v.barHeight]: '2px' },
15975
- sm: { [vars$v.barHeight]: '4px' },
15976
- md: { [vars$v.barHeight]: '6px' },
15977
- lg: { [vars$v.barHeight]: '8px' },
16064
+ xs: { [vars$w.barHeight]: '2px' },
16065
+ sm: { [vars$w.barHeight]: '4px' },
16066
+ md: { [vars$w.barHeight]: '6px' },
16067
+ lg: { [vars$w.barHeight]: '8px' },
15978
16068
  },
15979
16069
 
15980
16070
  mode: {
15981
16071
  primary: {
15982
- [vars$v.barColor]: globalRefs$n.colors.primary.main,
16072
+ [vars$w.barColor]: globalRefs$n.colors.primary.main,
15983
16073
  },
15984
16074
  secondary: {
15985
- [vars$v.barColor]: globalRefs$n.colors.secondary.main,
16075
+ [vars$w.barColor]: globalRefs$n.colors.secondary.main,
15986
16076
  },
15987
16077
  },
15988
16078
 
15989
16079
  _hidden: {
15990
- [vars$v.hostDisplay]: 'none',
16080
+ [vars$w.hostDisplay]: 'none',
15991
16081
  },
15992
16082
  };
15993
16083
 
15994
16084
  var loaderLinear$1 = /*#__PURE__*/Object.freeze({
15995
16085
  __proto__: null,
15996
16086
  default: loaderLinear,
15997
- vars: vars$v
16087
+ vars: vars$w
15998
16088
  });
15999
16089
 
16000
16090
  const globalRefs$m = getThemeRefs(globals);
@@ -16012,7 +16102,7 @@ const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
16012
16102
  },
16013
16103
  },
16014
16104
  },
16015
- componentName$W
16105
+ componentName$X
16016
16106
  );
16017
16107
 
16018
16108
  const loaderRadial = {
@@ -16041,7 +16131,7 @@ const loaderRadial = {
16041
16131
  [compVars$3.hostDisplay]: 'none',
16042
16132
  },
16043
16133
  };
16044
- const vars$u = {
16134
+ const vars$v = {
16045
16135
  ...compVars$3,
16046
16136
  ...helperVars$1,
16047
16137
  };
@@ -16049,93 +16139,134 @@ const vars$u = {
16049
16139
  var loaderRadial$1 = /*#__PURE__*/Object.freeze({
16050
16140
  __proto__: null,
16051
16141
  default: loaderRadial,
16052
- vars: vars$u
16142
+ vars: vars$v
16053
16143
  });
16054
16144
 
16055
16145
  const globalRefs$l = getThemeRefs(globals);
16056
- const vars$t = ComboBoxClass.cssVarList;
16146
+ const vars$u = ComboBoxClass.cssVarList;
16057
16147
 
16058
16148
  const comboBox = {
16059
- [vars$t.hostWidth]: refs.width,
16060
- [vars$t.hostDirection]: refs.direction,
16061
- [vars$t.fontSize]: refs.fontSize,
16062
- [vars$t.fontFamily]: refs.fontFamily,
16063
- [vars$t.labelFontSize]: refs.labelFontSize,
16064
- [vars$t.labelFontWeight]: refs.labelFontWeight,
16065
- [vars$t.labelTextColor]: refs.labelTextColor,
16066
- [vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
16067
- [vars$t.inputBorderColor]: refs.borderColor,
16068
- [vars$t.inputBorderWidth]: refs.borderWidth,
16069
- [vars$t.inputBorderStyle]: refs.borderStyle,
16070
- [vars$t.inputBorderRadius]: refs.borderRadius,
16071
- [vars$t.inputOutlineColor]: refs.outlineColor,
16072
- [vars$t.inputOutlineOffset]: refs.outlineOffset,
16073
- [vars$t.inputOutlineWidth]: refs.outlineWidth,
16074
- [vars$t.inputOutlineStyle]: refs.outlineStyle,
16075
- [vars$t.labelRequiredIndicator]: refs.requiredIndicator,
16076
- [vars$t.inputValueTextColor]: refs.valueTextColor,
16077
- [vars$t.inputPlaceholderTextColor]: refs.placeholderTextColor,
16078
- [vars$t.inputBackgroundColor]: refs.backgroundColor,
16079
- [vars$t.inputHorizontalPadding]: refs.horizontalPadding,
16080
- [vars$t.inputHeight]: refs.inputHeight,
16081
- [vars$t.inputDropdownButtonColor]: globalRefs$l.colors.surface.dark,
16082
- [vars$t.inputDropdownButtonCursor]: 'pointer',
16083
- [vars$t.inputDropdownButtonSize]: refs.toggleButtonSize,
16084
- [vars$t.inputDropdownButtonOffset]: globalRefs$l.spacing.xs,
16085
- [vars$t.overlayItemPaddingInlineStart]: globalRefs$l.spacing.xs,
16086
- [vars$t.overlayItemPaddingInlineEnd]: globalRefs$l.spacing.lg,
16087
- [vars$t.labelPosition]: refs.labelPosition,
16088
- [vars$t.labelTopPosition]: refs.labelTopPosition,
16089
- [vars$t.labelHorizontalPosition]: refs.labelHorizontalPosition,
16090
- [vars$t.inputTransformY]: refs.inputTransformY,
16091
- [vars$t.inputTransition]: refs.inputTransition,
16092
- [vars$t.marginInlineStart]: refs.marginInlineStart,
16093
- [vars$t.placeholderOpacity]: refs.placeholderOpacity,
16094
- [vars$t.inputVerticalAlignment]: refs.inputVerticalAlignment,
16095
- [vars$t.valueInputHeight]: refs.valueInputHeight,
16096
- [vars$t.valueInputMarginBottom]: refs.valueInputMarginBottom,
16149
+ [vars$u.hostWidth]: refs.width,
16150
+ [vars$u.hostDirection]: refs.direction,
16151
+ [vars$u.fontSize]: refs.fontSize,
16152
+ [vars$u.fontFamily]: refs.fontFamily,
16153
+ [vars$u.labelFontSize]: refs.labelFontSize,
16154
+ [vars$u.labelFontWeight]: refs.labelFontWeight,
16155
+ [vars$u.labelTextColor]: refs.labelTextColor,
16156
+ [vars$u.errorMessageTextColor]: refs.errorMessageTextColor,
16157
+ [vars$u.inputBorderColor]: refs.borderColor,
16158
+ [vars$u.inputBorderWidth]: refs.borderWidth,
16159
+ [vars$u.inputBorderStyle]: refs.borderStyle,
16160
+ [vars$u.inputBorderRadius]: refs.borderRadius,
16161
+ [vars$u.inputOutlineColor]: refs.outlineColor,
16162
+ [vars$u.inputOutlineOffset]: refs.outlineOffset,
16163
+ [vars$u.inputOutlineWidth]: refs.outlineWidth,
16164
+ [vars$u.inputOutlineStyle]: refs.outlineStyle,
16165
+ [vars$u.labelRequiredIndicator]: refs.requiredIndicator,
16166
+ [vars$u.inputValueTextColor]: refs.valueTextColor,
16167
+ [vars$u.inputPlaceholderTextColor]: refs.placeholderTextColor,
16168
+ [vars$u.inputBackgroundColor]: refs.backgroundColor,
16169
+ [vars$u.inputHorizontalPadding]: refs.horizontalPadding,
16170
+ [vars$u.inputHeight]: refs.inputHeight,
16171
+ [vars$u.inputDropdownButtonColor]: globalRefs$l.colors.surface.dark,
16172
+ [vars$u.inputDropdownButtonCursor]: 'pointer',
16173
+ [vars$u.inputDropdownButtonSize]: refs.toggleButtonSize,
16174
+ [vars$u.inputDropdownButtonOffset]: globalRefs$l.spacing.xs,
16175
+ [vars$u.overlayItemPaddingInlineStart]: globalRefs$l.spacing.xs,
16176
+ [vars$u.overlayItemPaddingInlineEnd]: globalRefs$l.spacing.lg,
16177
+ [vars$u.labelPosition]: refs.labelPosition,
16178
+ [vars$u.labelTopPosition]: refs.labelTopPosition,
16179
+ [vars$u.labelHorizontalPosition]: refs.labelHorizontalPosition,
16180
+ [vars$u.inputTransformY]: refs.inputTransformY,
16181
+ [vars$u.inputTransition]: refs.inputTransition,
16182
+ [vars$u.marginInlineStart]: refs.marginInlineStart,
16183
+ [vars$u.placeholderOpacity]: refs.placeholderOpacity,
16184
+ [vars$u.inputVerticalAlignment]: refs.inputVerticalAlignment,
16185
+ [vars$u.valueInputHeight]: refs.valueInputHeight,
16186
+ [vars$u.valueInputMarginBottom]: refs.valueInputMarginBottom,
16097
16187
 
16098
16188
  _readonly: {
16099
- [vars$t.inputDropdownButtonCursor]: 'default',
16189
+ [vars$u.inputDropdownButtonCursor]: 'default',
16100
16190
  },
16101
16191
 
16102
16192
  // Overlay theme exposed via the component:
16103
- [vars$t.overlayFontSize]: refs.fontSize,
16104
- [vars$t.overlayFontFamily]: refs.fontFamily,
16105
- [vars$t.overlayCursor]: 'pointer',
16106
- [vars$t.overlayItemBoxShadow]: 'none',
16107
- [vars$t.overlayBackground]: refs.backgroundColor,
16108
- [vars$t.overlayTextColor]: refs.valueTextColor,
16193
+ [vars$u.overlayFontSize]: refs.fontSize,
16194
+ [vars$u.overlayFontFamily]: refs.fontFamily,
16195
+ [vars$u.overlayCursor]: 'pointer',
16196
+ [vars$u.overlayItemBoxShadow]: 'none',
16197
+ [vars$u.overlayBackground]: refs.backgroundColor,
16198
+ [vars$u.overlayTextColor]: refs.valueTextColor,
16109
16199
 
16110
16200
  // Overlay direct theme:
16111
- [vars$t.overlay.minHeight]: '400px',
16112
- [vars$t.overlay.margin]: '0',
16201
+ [vars$u.overlay.minHeight]: '400px',
16202
+ [vars$u.overlay.margin]: '0',
16113
16203
  };
16114
16204
 
16115
16205
  var comboBox$1 = /*#__PURE__*/Object.freeze({
16116
16206
  __proto__: null,
16117
16207
  comboBox: comboBox,
16118
16208
  default: comboBox,
16119
- vars: vars$t
16209
+ vars: vars$u
16120
16210
  });
16121
16211
 
16122
- const vars$s = ImageClass.cssVarList;
16212
+ const vars$t = ImageClass.cssVarList;
16123
16213
 
16124
16214
  const image = {};
16125
16215
 
16126
16216
  var image$1 = /*#__PURE__*/Object.freeze({
16127
16217
  __proto__: null,
16128
16218
  default: image,
16129
- vars: vars$s
16219
+ vars: vars$t
16130
16220
  });
16131
16221
 
16132
- const vars$r = PhoneFieldClass.cssVarList;
16222
+ const vars$s = PhoneFieldClass.cssVarList;
16133
16223
 
16134
16224
  const phoneField = {
16135
- [vars$r.hostWidth]: refs.width,
16225
+ [vars$s.hostWidth]: refs.width,
16226
+ [vars$s.hostDirection]: refs.direction,
16227
+ [vars$s.fontSize]: refs.fontSize,
16228
+ [vars$s.fontFamily]: refs.fontFamily,
16229
+ [vars$s.labelTextColor]: refs.labelTextColor,
16230
+ [vars$s.labelRequiredIndicator]: refs.requiredIndicator,
16231
+ [vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
16232
+ [vars$s.inputValueTextColor]: refs.valueTextColor,
16233
+ [vars$s.inputPlaceholderTextColor]: refs.placeholderTextColor,
16234
+ [vars$s.inputBorderStyle]: refs.borderStyle,
16235
+ [vars$s.inputBorderWidth]: refs.borderWidth,
16236
+ [vars$s.inputBorderColor]: refs.borderColor,
16237
+ [vars$s.inputBorderRadius]: refs.borderRadius,
16238
+ [vars$s.inputOutlineStyle]: refs.outlineStyle,
16239
+ [vars$s.inputOutlineWidth]: refs.outlineWidth,
16240
+ [vars$s.inputOutlineColor]: refs.outlineColor,
16241
+ [vars$s.inputOutlineOffset]: refs.outlineOffset,
16242
+ [vars$s.phoneInputWidth]: refs.minWidth,
16243
+ [vars$s.countryCodeInputWidth]: '5em',
16244
+ [vars$s.countryCodeDropdownWidth]: '20em',
16245
+ [vars$s.marginInlineStart]: '-0.25em',
16246
+ [vars$s.valueInputHeight]: refs.valueInputHeight,
16247
+ [vars$s.valueInputMarginBottom]: refs.valueInputMarginBottom,
16248
+
16249
+ // '@overlay': {
16250
+ // overlayItemBackgroundColor: 'red'
16251
+ // }
16252
+ };
16253
+
16254
+ var phoneField$1 = /*#__PURE__*/Object.freeze({
16255
+ __proto__: null,
16256
+ default: phoneField,
16257
+ vars: vars$s
16258
+ });
16259
+
16260
+ const vars$r = PhoneFieldInputBoxClass.cssVarList;
16261
+
16262
+ const phoneInputBoxField = {
16263
+ [vars$r.hostWidth]: '16em',
16264
+ [vars$r.hostMinWidth]: refs.minWidth,
16136
16265
  [vars$r.hostDirection]: refs.direction,
16137
16266
  [vars$r.fontSize]: refs.fontSize,
16138
16267
  [vars$r.fontFamily]: refs.fontFamily,
16268
+ [vars$r.labelFontSize]: refs.labelFontSize,
16269
+ [vars$r.labelFontWeight]: refs.labelFontWeight,
16139
16270
  [vars$r.labelTextColor]: refs.labelTextColor,
16140
16271
  [vars$r.labelRequiredIndicator]: refs.requiredIndicator,
16141
16272
  [vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -16149,28 +16280,32 @@ const phoneField = {
16149
16280
  [vars$r.inputOutlineWidth]: refs.outlineWidth,
16150
16281
  [vars$r.inputOutlineColor]: refs.outlineColor,
16151
16282
  [vars$r.inputOutlineOffset]: refs.outlineOffset,
16152
- [vars$r.phoneInputWidth]: refs.minWidth,
16153
- [vars$r.countryCodeInputWidth]: '5em',
16154
- [vars$r.countryCodeDropdownWidth]: '20em',
16155
- [vars$r.marginInlineStart]: '-0.25em',
16283
+ [vars$r.labelPosition]: refs.labelPosition,
16284
+ [vars$r.labelTopPosition]: refs.labelTopPosition,
16285
+ [vars$r.labelHorizontalPosition]: refs.labelHorizontalPosition,
16286
+ [vars$r.inputTransformY]: refs.inputTransformY,
16287
+ [vars$r.inputTransition]: refs.inputTransition,
16288
+ [vars$r.marginInlineStart]: refs.marginInlineStart,
16156
16289
  [vars$r.valueInputHeight]: refs.valueInputHeight,
16157
16290
  [vars$r.valueInputMarginBottom]: refs.valueInputMarginBottom,
16291
+ [vars$r.inputHorizontalPadding]: '0',
16158
16292
 
16159
- // '@overlay': {
16160
- // overlayItemBackgroundColor: 'red'
16161
- // }
16293
+ _fullWidth: {
16294
+ [vars$r.hostWidth]: refs.width,
16295
+ },
16162
16296
  };
16163
16297
 
16164
- var phoneField$1 = /*#__PURE__*/Object.freeze({
16298
+ var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16165
16299
  __proto__: null,
16166
- default: phoneField,
16300
+ default: phoneInputBoxField,
16167
16301
  vars: vars$r
16168
16302
  });
16169
16303
 
16170
- const vars$q = PhoneFieldInputBoxClass.cssVarList;
16304
+ const globalRefs$k = getThemeRefs(globals);
16305
+ const vars$q = NewPasswordClass.cssVarList;
16171
16306
 
16172
- const phoneInputBoxField = {
16173
- [vars$q.hostWidth]: '16em',
16307
+ const newPassword = {
16308
+ [vars$q.hostWidth]: refs.width,
16174
16309
  [vars$q.hostMinWidth]: refs.minWidth,
16175
16310
  [vars$q.hostDirection]: refs.direction,
16176
16311
  [vars$q.fontSize]: refs.fontSize,
@@ -16178,171 +16313,126 @@ const phoneInputBoxField = {
16178
16313
  [vars$q.labelFontSize]: refs.labelFontSize,
16179
16314
  [vars$q.labelFontWeight]: refs.labelFontWeight,
16180
16315
  [vars$q.labelTextColor]: refs.labelTextColor,
16181
- [vars$q.labelRequiredIndicator]: refs.requiredIndicator,
16316
+ [vars$q.spaceBetweenInputs]: '1em',
16182
16317
  [vars$q.errorMessageTextColor]: refs.errorMessageTextColor,
16183
- [vars$q.inputValueTextColor]: refs.valueTextColor,
16184
- [vars$q.inputPlaceholderTextColor]: refs.placeholderTextColor,
16185
- [vars$q.inputBorderStyle]: refs.borderStyle,
16186
- [vars$q.inputBorderWidth]: refs.borderWidth,
16187
- [vars$q.inputBorderColor]: refs.borderColor,
16188
- [vars$q.inputBorderRadius]: refs.borderRadius,
16189
- [vars$q.inputOutlineStyle]: refs.outlineStyle,
16190
- [vars$q.inputOutlineWidth]: refs.outlineWidth,
16191
- [vars$q.inputOutlineColor]: refs.outlineColor,
16192
- [vars$q.inputOutlineOffset]: refs.outlineOffset,
16193
- [vars$q.labelPosition]: refs.labelPosition,
16194
- [vars$q.labelTopPosition]: refs.labelTopPosition,
16195
- [vars$q.labelHorizontalPosition]: refs.labelHorizontalPosition,
16196
- [vars$q.inputTransformY]: refs.inputTransformY,
16197
- [vars$q.inputTransition]: refs.inputTransition,
16198
- [vars$q.marginInlineStart]: refs.marginInlineStart,
16318
+ [vars$q.policyPreviewBackgroundColor]: 'none',
16319
+ [vars$q.policyPreviewPadding]: globalRefs$k.spacing.lg,
16199
16320
  [vars$q.valueInputHeight]: refs.valueInputHeight,
16200
- [vars$q.valueInputMarginBottom]: refs.valueInputMarginBottom,
16201
- [vars$q.inputHorizontalPadding]: '0',
16202
-
16203
- _fullWidth: {
16204
- [vars$q.hostWidth]: refs.width,
16205
- },
16206
- };
16207
-
16208
- var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16209
- __proto__: null,
16210
- default: phoneInputBoxField,
16211
- vars: vars$q
16212
- });
16213
-
16214
- const globalRefs$k = getThemeRefs(globals);
16215
- const vars$p = NewPasswordClass.cssVarList;
16216
-
16217
- const newPassword = {
16218
- [vars$p.hostWidth]: refs.width,
16219
- [vars$p.hostMinWidth]: refs.minWidth,
16220
- [vars$p.hostDirection]: refs.direction,
16221
- [vars$p.fontSize]: refs.fontSize,
16222
- [vars$p.fontFamily]: refs.fontFamily,
16223
- [vars$p.labelFontSize]: refs.labelFontSize,
16224
- [vars$p.labelFontWeight]: refs.labelFontWeight,
16225
- [vars$p.labelTextColor]: refs.labelTextColor,
16226
- [vars$p.spaceBetweenInputs]: '1em',
16227
- [vars$p.errorMessageTextColor]: refs.errorMessageTextColor,
16228
- [vars$p.policyPreviewBackgroundColor]: 'none',
16229
- [vars$p.policyPreviewPadding]: globalRefs$k.spacing.lg,
16230
- [vars$p.valueInputHeight]: refs.valueInputHeight,
16231
16321
 
16232
16322
  _required: {
16233
16323
  // NewPassword doesn't pass `required` attribute to its Password components.
16234
16324
  // That's why we fake the required indicator on each input.
16235
16325
  // We do that by injecting `::after` element, and populating it with requiredIndicator content.
16236
- [vars$p.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16326
+ [vars$q.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16237
16327
  },
16238
16328
  };
16239
16329
 
16240
16330
  var newPassword$1 = /*#__PURE__*/Object.freeze({
16241
16331
  __proto__: null,
16242
16332
  default: newPassword,
16243
- vars: vars$p
16333
+ vars: vars$q
16244
16334
  });
16245
16335
 
16246
- const vars$o = UploadFileClass.cssVarList;
16336
+ const vars$p = UploadFileClass.cssVarList;
16247
16337
 
16248
16338
  const uploadFile = {
16249
- [vars$o.hostDirection]: refs.direction,
16250
- [vars$o.labelTextColor]: refs.labelTextColor,
16251
- [vars$o.fontFamily]: refs.fontFamily,
16339
+ [vars$p.hostDirection]: refs.direction,
16340
+ [vars$p.labelTextColor]: refs.labelTextColor,
16341
+ [vars$p.fontFamily]: refs.fontFamily,
16252
16342
 
16253
- [vars$o.iconSize]: '2em',
16343
+ [vars$p.iconSize]: '2em',
16254
16344
 
16255
- [vars$o.hostPadding]: '0.75em',
16256
- [vars$o.gap]: '0.5em',
16345
+ [vars$p.hostPadding]: '0.75em',
16346
+ [vars$p.gap]: '0.5em',
16257
16347
 
16258
- [vars$o.fontSize]: '16px',
16259
- [vars$o.titleFontWeight]: '500',
16260
- [vars$o.lineHeight]: '1em',
16348
+ [vars$p.fontSize]: '16px',
16349
+ [vars$p.titleFontWeight]: '500',
16350
+ [vars$p.lineHeight]: '1em',
16261
16351
 
16262
- [vars$o.borderWidth]: refs.borderWidth,
16263
- [vars$o.borderColor]: refs.borderColor,
16264
- [vars$o.borderRadius]: refs.borderRadius,
16265
- [vars$o.borderStyle]: 'dashed',
16352
+ [vars$p.borderWidth]: refs.borderWidth,
16353
+ [vars$p.borderColor]: refs.borderColor,
16354
+ [vars$p.borderRadius]: refs.borderRadius,
16355
+ [vars$p.borderStyle]: 'dashed',
16266
16356
 
16267
16357
  _required: {
16268
- [vars$o.requiredIndicator]: refs.requiredIndicator,
16358
+ [vars$p.requiredIndicator]: refs.requiredIndicator,
16269
16359
  },
16270
16360
 
16271
16361
  size: {
16272
16362
  xs: {
16273
- [vars$o.hostHeight]: '196px',
16274
- [vars$o.hostWidth]: '200px',
16275
- [vars$o.titleFontSize]: '0.875em',
16276
- [vars$o.descriptionFontSize]: '0.875em',
16277
- [vars$o.lineHeight]: '1.25em',
16363
+ [vars$p.hostHeight]: '196px',
16364
+ [vars$p.hostWidth]: '200px',
16365
+ [vars$p.titleFontSize]: '0.875em',
16366
+ [vars$p.descriptionFontSize]: '0.875em',
16367
+ [vars$p.lineHeight]: '1.25em',
16278
16368
  },
16279
16369
  sm: {
16280
- [vars$o.hostHeight]: '216px',
16281
- [vars$o.hostWidth]: '230px',
16282
- [vars$o.titleFontSize]: '1em',
16283
- [vars$o.descriptionFontSize]: '0.875em',
16284
- [vars$o.lineHeight]: '1.25em',
16370
+ [vars$p.hostHeight]: '216px',
16371
+ [vars$p.hostWidth]: '230px',
16372
+ [vars$p.titleFontSize]: '1em',
16373
+ [vars$p.descriptionFontSize]: '0.875em',
16374
+ [vars$p.lineHeight]: '1.25em',
16285
16375
  },
16286
16376
  md: {
16287
- [vars$o.hostHeight]: '256px',
16288
- [vars$o.hostWidth]: '312px',
16289
- [vars$o.titleFontSize]: '1.125em',
16290
- [vars$o.descriptionFontSize]: '1em',
16291
- [vars$o.lineHeight]: '1.5em',
16377
+ [vars$p.hostHeight]: '256px',
16378
+ [vars$p.hostWidth]: '312px',
16379
+ [vars$p.titleFontSize]: '1.125em',
16380
+ [vars$p.descriptionFontSize]: '1em',
16381
+ [vars$p.lineHeight]: '1.5em',
16292
16382
  },
16293
16383
  lg: {
16294
- [vars$o.hostHeight]: '280px',
16295
- [vars$o.hostWidth]: '336px',
16296
- [vars$o.titleFontSize]: '1.125em',
16297
- [vars$o.descriptionFontSize]: '1.125em',
16298
- [vars$o.lineHeight]: '1.75em',
16384
+ [vars$p.hostHeight]: '280px',
16385
+ [vars$p.hostWidth]: '336px',
16386
+ [vars$p.titleFontSize]: '1.125em',
16387
+ [vars$p.descriptionFontSize]: '1.125em',
16388
+ [vars$p.lineHeight]: '1.75em',
16299
16389
  },
16300
16390
  },
16301
16391
 
16302
16392
  _fullWidth: {
16303
- [vars$o.hostWidth]: refs.width,
16393
+ [vars$p.hostWidth]: refs.width,
16304
16394
  },
16305
16395
  };
16306
16396
 
16307
16397
  var uploadFile$1 = /*#__PURE__*/Object.freeze({
16308
16398
  __proto__: null,
16309
16399
  default: uploadFile,
16310
- vars: vars$o
16400
+ vars: vars$p
16311
16401
  });
16312
16402
 
16313
16403
  const globalRefs$j = getThemeRefs(globals);
16314
16404
 
16315
- const vars$n = ButtonSelectionGroupItemClass.cssVarList;
16405
+ const vars$o = ButtonSelectionGroupItemClass.cssVarList;
16316
16406
 
16317
16407
  const buttonSelectionGroupItem = {
16318
- [vars$n.hostDirection]: 'inherit',
16319
- [vars$n.backgroundColor]: globalRefs$j.colors.surface.main,
16320
- [vars$n.labelTextColor]: globalRefs$j.colors.surface.contrast,
16321
- [vars$n.borderColor]: globalRefs$j.colors.surface.light,
16322
- [vars$n.borderStyle]: 'solid',
16323
- [vars$n.borderRadius]: globalRefs$j.radius.sm,
16324
- [vars$n.outlineColor]: 'transparent',
16325
- [vars$n.borderWidth]: globalRefs$j.border.xs,
16408
+ [vars$o.hostDirection]: 'inherit',
16409
+ [vars$o.backgroundColor]: globalRefs$j.colors.surface.main,
16410
+ [vars$o.labelTextColor]: globalRefs$j.colors.surface.contrast,
16411
+ [vars$o.borderColor]: globalRefs$j.colors.surface.light,
16412
+ [vars$o.borderStyle]: 'solid',
16413
+ [vars$o.borderRadius]: globalRefs$j.radius.sm,
16414
+ [vars$o.outlineColor]: 'transparent',
16415
+ [vars$o.borderWidth]: globalRefs$j.border.xs,
16326
16416
 
16327
16417
  _hover: {
16328
- [vars$n.backgroundColor]: globalRefs$j.colors.surface.highlight,
16418
+ [vars$o.backgroundColor]: globalRefs$j.colors.surface.highlight,
16329
16419
  },
16330
16420
 
16331
16421
  _focused: {
16332
- [vars$n.outlineColor]: globalRefs$j.colors.surface.light,
16422
+ [vars$o.outlineColor]: globalRefs$j.colors.surface.light,
16333
16423
  },
16334
16424
 
16335
16425
  _selected: {
16336
- [vars$n.borderColor]: globalRefs$j.colors.surface.contrast,
16337
- [vars$n.backgroundColor]: globalRefs$j.colors.surface.contrast,
16338
- [vars$n.labelTextColor]: globalRefs$j.colors.surface.main,
16426
+ [vars$o.borderColor]: globalRefs$j.colors.surface.contrast,
16427
+ [vars$o.backgroundColor]: globalRefs$j.colors.surface.contrast,
16428
+ [vars$o.labelTextColor]: globalRefs$j.colors.surface.main,
16339
16429
  },
16340
16430
  };
16341
16431
 
16342
16432
  var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
16343
16433
  __proto__: null,
16344
16434
  default: buttonSelectionGroupItem,
16345
- vars: vars$n
16435
+ vars: vars$o
16346
16436
  });
16347
16437
 
16348
16438
  const globalRefs$i = getThemeRefs(globals);
@@ -16357,28 +16447,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
16357
16447
  [vars.hostWidth]: refs.width,
16358
16448
  });
16359
16449
 
16360
- const vars$m = ButtonSelectionGroupClass.cssVarList;
16450
+ const vars$n = ButtonSelectionGroupClass.cssVarList;
16361
16451
 
16362
16452
  const buttonSelectionGroup = {
16363
- ...createBaseButtonSelectionGroupMappings(vars$m),
16453
+ ...createBaseButtonSelectionGroupMappings(vars$n),
16364
16454
  };
16365
16455
 
16366
16456
  var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
16367
16457
  __proto__: null,
16368
16458
  default: buttonSelectionGroup,
16369
- vars: vars$m
16459
+ vars: vars$n
16370
16460
  });
16371
16461
 
16372
- const vars$l = ButtonMultiSelectionGroupClass.cssVarList;
16462
+ const vars$m = ButtonMultiSelectionGroupClass.cssVarList;
16373
16463
 
16374
16464
  const buttonMultiSelectionGroup = {
16375
- ...createBaseButtonSelectionGroupMappings(vars$l),
16465
+ ...createBaseButtonSelectionGroupMappings(vars$m),
16376
16466
  };
16377
16467
 
16378
16468
  var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
16379
16469
  __proto__: null,
16380
16470
  default: buttonMultiSelectionGroup,
16381
- vars: vars$l
16471
+ vars: vars$m
16382
16472
  });
16383
16473
 
16384
16474
  const globalRefs$h = getThemeRefs(globals);
@@ -16391,58 +16481,58 @@ const modal = {
16391
16481
  [compVars$2.overlayWidth]: '540px',
16392
16482
  };
16393
16483
 
16394
- const vars$k = {
16484
+ const vars$l = {
16395
16485
  ...compVars$2,
16396
16486
  };
16397
16487
 
16398
16488
  var modal$1 = /*#__PURE__*/Object.freeze({
16399
16489
  __proto__: null,
16400
16490
  default: modal,
16401
- vars: vars$k
16491
+ vars: vars$l
16402
16492
  });
16403
16493
 
16404
16494
  const globalRefs$g = getThemeRefs(globals);
16405
- const vars$j = GridClass.cssVarList;
16495
+ const vars$k = GridClass.cssVarList;
16406
16496
 
16407
16497
  const grid = {
16408
- [vars$j.hostWidth]: '100%',
16409
- [vars$j.hostHeight]: '100%',
16410
- [vars$j.hostMinHeight]: '400px',
16411
- [vars$j.fontWeight]: '400',
16412
- [vars$j.backgroundColor]: globalRefs$g.colors.surface.main,
16413
-
16414
- [vars$j.fontSize]: refs.fontSize,
16415
- [vars$j.fontFamily]: refs.fontFamily,
16416
-
16417
- [vars$j.sortIndicatorsColor]: globalRefs$g.colors.surface.light,
16418
- [vars$j.activeSortIndicator]: globalRefs$g.colors.surface.dark,
16419
- [vars$j.resizeHandleColor]: globalRefs$g.colors.surface.light,
16420
-
16421
- [vars$j.borderWidth]: refs.borderWidth,
16422
- [vars$j.borderStyle]: refs.borderStyle,
16423
- [vars$j.borderRadius]: refs.borderRadius,
16424
- [vars$j.borderColor]: 'transparent',
16425
-
16426
- [vars$j.headerRowTextColor]: globalRefs$g.colors.surface.dark,
16427
- [vars$j.separatorColor]: globalRefs$g.colors.surface.light,
16428
-
16429
- [vars$j.valueTextColor]: globalRefs$g.colors.surface.contrast,
16430
- [vars$j.selectedBackgroundColor]: globalRefs$g.colors.surface.highlight,
16431
- [vars$j.hostDirection]: globalRefs$g.direction,
16432
-
16433
- [vars$j.toggleDetailsPanelButtonSize]: '1em',
16434
- [vars$j.toggleDetailsPanelButtonOpenedColor]: globalRefs$g.colors.surface.contrast,
16435
- [vars$j.toggleDetailsPanelButtonClosedColor]: globalRefs$g.colors.surface.light,
16436
- [vars$j.toggleDetailsPanelButtonCursor]: 'pointer',
16437
- [vars$j.detailsPanelBackgroundColor]: globalRefs$g.colors.surface.highlight,
16438
- [vars$j.detailsPanelBorderTopColor]: globalRefs$g.colors.surface.light,
16439
- [vars$j.detailsPanelLabelsColor]: globalRefs$g.colors.surface.dark,
16440
- [vars$j.detailsPanelLabelsFontSize]: '0.8em',
16441
- [vars$j.detailsPanelItemsGap]: '2em',
16442
- [vars$j.detailsPanelPadding]: '12px 0',
16498
+ [vars$k.hostWidth]: '100%',
16499
+ [vars$k.hostHeight]: '100%',
16500
+ [vars$k.hostMinHeight]: '400px',
16501
+ [vars$k.fontWeight]: '400',
16502
+ [vars$k.backgroundColor]: globalRefs$g.colors.surface.main,
16503
+
16504
+ [vars$k.fontSize]: refs.fontSize,
16505
+ [vars$k.fontFamily]: refs.fontFamily,
16506
+
16507
+ [vars$k.sortIndicatorsColor]: globalRefs$g.colors.surface.light,
16508
+ [vars$k.activeSortIndicator]: globalRefs$g.colors.surface.dark,
16509
+ [vars$k.resizeHandleColor]: globalRefs$g.colors.surface.light,
16510
+
16511
+ [vars$k.borderWidth]: refs.borderWidth,
16512
+ [vars$k.borderStyle]: refs.borderStyle,
16513
+ [vars$k.borderRadius]: refs.borderRadius,
16514
+ [vars$k.borderColor]: 'transparent',
16515
+
16516
+ [vars$k.headerRowTextColor]: globalRefs$g.colors.surface.dark,
16517
+ [vars$k.separatorColor]: globalRefs$g.colors.surface.light,
16518
+
16519
+ [vars$k.valueTextColor]: globalRefs$g.colors.surface.contrast,
16520
+ [vars$k.selectedBackgroundColor]: globalRefs$g.colors.surface.highlight,
16521
+ [vars$k.hostDirection]: globalRefs$g.direction,
16522
+
16523
+ [vars$k.toggleDetailsPanelButtonSize]: '1em',
16524
+ [vars$k.toggleDetailsPanelButtonOpenedColor]: globalRefs$g.colors.surface.contrast,
16525
+ [vars$k.toggleDetailsPanelButtonClosedColor]: globalRefs$g.colors.surface.light,
16526
+ [vars$k.toggleDetailsPanelButtonCursor]: 'pointer',
16527
+ [vars$k.detailsPanelBackgroundColor]: globalRefs$g.colors.surface.highlight,
16528
+ [vars$k.detailsPanelBorderTopColor]: globalRefs$g.colors.surface.light,
16529
+ [vars$k.detailsPanelLabelsColor]: globalRefs$g.colors.surface.dark,
16530
+ [vars$k.detailsPanelLabelsFontSize]: '0.8em',
16531
+ [vars$k.detailsPanelItemsGap]: '2em',
16532
+ [vars$k.detailsPanelPadding]: '12px 0',
16443
16533
 
16444
16534
  _bordered: {
16445
- [vars$j.borderColor]: refs.borderColor,
16535
+ [vars$k.borderColor]: refs.borderColor,
16446
16536
  },
16447
16537
  };
16448
16538
 
@@ -16450,53 +16540,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
16450
16540
  __proto__: null,
16451
16541
  default: grid,
16452
16542
  grid: grid,
16453
- vars: vars$j
16543
+ vars: vars$k
16454
16544
  });
16455
16545
 
16456
16546
  const globalRefs$f = getThemeRefs(globals);
16457
- const vars$i = NotificationCardClass.cssVarList;
16547
+ const vars$j = NotificationCardClass.cssVarList;
16458
16548
 
16459
16549
  const shadowColor$2 = '#00000020';
16460
16550
 
16461
16551
  const notification = {
16462
- [vars$i.hostMinWidth]: '415px',
16463
- [vars$i.fontFamily]: globalRefs$f.fonts.font1.family,
16464
- [vars$i.fontSize]: globalRefs$f.typography.body1.size,
16465
- [vars$i.backgroundColor]: globalRefs$f.colors.surface.main,
16466
- [vars$i.textColor]: globalRefs$f.colors.surface.contrast,
16467
- [vars$i.boxShadow]: `${globalRefs$f.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$f.shadow.narrow.xl} ${shadowColor$2}`,
16468
- [vars$i.verticalPadding]: '0.625em',
16469
- [vars$i.horizontalPadding]: '1.5em',
16470
- [vars$i.borderRadius]: globalRefs$f.radius.xs,
16552
+ [vars$j.hostMinWidth]: '415px',
16553
+ [vars$j.fontFamily]: globalRefs$f.fonts.font1.family,
16554
+ [vars$j.fontSize]: globalRefs$f.typography.body1.size,
16555
+ [vars$j.backgroundColor]: globalRefs$f.colors.surface.main,
16556
+ [vars$j.textColor]: globalRefs$f.colors.surface.contrast,
16557
+ [vars$j.boxShadow]: `${globalRefs$f.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$f.shadow.narrow.xl} ${shadowColor$2}`,
16558
+ [vars$j.verticalPadding]: '0.625em',
16559
+ [vars$j.horizontalPadding]: '1.5em',
16560
+ [vars$j.borderRadius]: globalRefs$f.radius.xs,
16471
16561
 
16472
16562
  _bordered: {
16473
- [vars$i.borderWidth]: globalRefs$f.border.sm,
16474
- [vars$i.borderStyle]: 'solid',
16475
- [vars$i.borderColor]: 'transparent',
16563
+ [vars$j.borderWidth]: globalRefs$f.border.sm,
16564
+ [vars$j.borderStyle]: 'solid',
16565
+ [vars$j.borderColor]: 'transparent',
16476
16566
  },
16477
16567
 
16478
16568
  size: {
16479
- xs: { [vars$i.fontSize]: '12px' },
16480
- sm: { [vars$i.fontSize]: '14px' },
16481
- md: { [vars$i.fontSize]: '16px' },
16482
- lg: { [vars$i.fontSize]: '18px' },
16569
+ xs: { [vars$j.fontSize]: '12px' },
16570
+ sm: { [vars$j.fontSize]: '14px' },
16571
+ md: { [vars$j.fontSize]: '16px' },
16572
+ lg: { [vars$j.fontSize]: '18px' },
16483
16573
  },
16484
16574
 
16485
16575
  mode: {
16486
16576
  primary: {
16487
- [vars$i.backgroundColor]: globalRefs$f.colors.primary.main,
16488
- [vars$i.textColor]: globalRefs$f.colors.primary.contrast,
16489
- [vars$i.borderColor]: globalRefs$f.colors.primary.light,
16577
+ [vars$j.backgroundColor]: globalRefs$f.colors.primary.main,
16578
+ [vars$j.textColor]: globalRefs$f.colors.primary.contrast,
16579
+ [vars$j.borderColor]: globalRefs$f.colors.primary.light,
16490
16580
  },
16491
16581
  success: {
16492
- [vars$i.backgroundColor]: globalRefs$f.colors.success.main,
16493
- [vars$i.textColor]: globalRefs$f.colors.success.contrast,
16494
- [vars$i.borderColor]: globalRefs$f.colors.success.light,
16582
+ [vars$j.backgroundColor]: globalRefs$f.colors.success.main,
16583
+ [vars$j.textColor]: globalRefs$f.colors.success.contrast,
16584
+ [vars$j.borderColor]: globalRefs$f.colors.success.light,
16495
16585
  },
16496
16586
  error: {
16497
- [vars$i.backgroundColor]: globalRefs$f.colors.error.main,
16498
- [vars$i.textColor]: globalRefs$f.colors.error.contrast,
16499
- [vars$i.borderColor]: globalRefs$f.colors.error.light,
16587
+ [vars$j.backgroundColor]: globalRefs$f.colors.error.main,
16588
+ [vars$j.textColor]: globalRefs$f.colors.error.contrast,
16589
+ [vars$j.borderColor]: globalRefs$f.colors.error.light,
16500
16590
  },
16501
16591
  },
16502
16592
  };
@@ -16504,148 +16594,148 @@ const notification = {
16504
16594
  var notificationCard = /*#__PURE__*/Object.freeze({
16505
16595
  __proto__: null,
16506
16596
  default: notification,
16507
- vars: vars$i
16597
+ vars: vars$j
16508
16598
  });
16509
16599
 
16510
16600
  const globalRefs$e = getThemeRefs(globals);
16511
- const vars$h = MultiSelectComboBoxClass.cssVarList;
16601
+ const vars$i = MultiSelectComboBoxClass.cssVarList;
16512
16602
 
16513
16603
  const multiSelectComboBox = {
16514
- [vars$h.hostWidth]: refs.width,
16515
- [vars$h.hostDirection]: refs.direction,
16516
- [vars$h.fontSize]: refs.fontSize,
16517
- [vars$h.fontFamily]: refs.fontFamily,
16518
- [vars$h.labelFontSize]: refs.labelFontSize,
16519
- [vars$h.labelFontWeight]: refs.labelFontWeight,
16520
- [vars$h.labelTextColor]: refs.labelTextColor,
16521
- [vars$h.errorMessageTextColor]: refs.errorMessageTextColor,
16522
- [vars$h.inputBorderColor]: refs.borderColor,
16523
- [vars$h.inputBorderWidth]: refs.borderWidth,
16524
- [vars$h.inputBorderStyle]: refs.borderStyle,
16525
- [vars$h.inputBorderRadius]: refs.borderRadius,
16526
- [vars$h.inputOutlineColor]: refs.outlineColor,
16527
- [vars$h.inputOutlineOffset]: refs.outlineOffset,
16528
- [vars$h.inputOutlineWidth]: refs.outlineWidth,
16529
- [vars$h.inputOutlineStyle]: refs.outlineStyle,
16530
- [vars$h.labelRequiredIndicator]: refs.requiredIndicator,
16531
- [vars$h.inputValueTextColor]: refs.valueTextColor,
16532
- [vars$h.inputPlaceholderTextColor]: refs.placeholderTextColor,
16533
- [vars$h.inputBackgroundColor]: refs.backgroundColor,
16534
- [vars$h.inputHorizontalPadding]: refs.horizontalPadding,
16535
- [vars$h.inputVerticalPadding]: refs.verticalPadding,
16536
- [vars$h.inputHeight]: refs.inputHeight,
16537
- [vars$h.inputDropdownButtonColor]: globalRefs$e.colors.surface.dark,
16538
- [vars$h.inputDropdownButtonCursor]: 'pointer',
16539
- [vars$h.inputDropdownButtonSize]: refs.toggleButtonSize,
16540
- [vars$h.inputDropdownButtonOffset]: globalRefs$e.spacing.xs,
16541
- [vars$h.overlayItemPaddingInlineStart]: globalRefs$e.spacing.xs,
16542
- [vars$h.overlayItemPaddingInlineEnd]: globalRefs$e.spacing.lg,
16543
- [vars$h.chipFontSize]: refs.chipFontSize,
16544
- [vars$h.chipTextColor]: globalRefs$e.colors.surface.contrast,
16545
- [vars$h.chipBackgroundColor]: globalRefs$e.colors.surface.light,
16546
- [vars$h.labelPosition]: refs.labelPosition,
16547
- [vars$h.labelTopPosition]: refs.labelTopPosition,
16548
- [vars$h.labelLeftPosition]: refs.labelLeftPosition,
16549
- [vars$h.labelHorizontalPosition]: refs.labelHorizontalPosition,
16550
- [vars$h.inputTransformY]: refs.inputTransformY,
16551
- [vars$h.inputTransition]: refs.inputTransition,
16552
- [vars$h.marginInlineStart]: refs.marginInlineStart,
16553
- [vars$h.placeholderOpacity]: refs.placeholderOpacity,
16554
- [vars$h.inputVerticalAlignment]: refs.inputVerticalAlignment,
16604
+ [vars$i.hostWidth]: refs.width,
16605
+ [vars$i.hostDirection]: refs.direction,
16606
+ [vars$i.fontSize]: refs.fontSize,
16607
+ [vars$i.fontFamily]: refs.fontFamily,
16608
+ [vars$i.labelFontSize]: refs.labelFontSize,
16609
+ [vars$i.labelFontWeight]: refs.labelFontWeight,
16610
+ [vars$i.labelTextColor]: refs.labelTextColor,
16611
+ [vars$i.errorMessageTextColor]: refs.errorMessageTextColor,
16612
+ [vars$i.inputBorderColor]: refs.borderColor,
16613
+ [vars$i.inputBorderWidth]: refs.borderWidth,
16614
+ [vars$i.inputBorderStyle]: refs.borderStyle,
16615
+ [vars$i.inputBorderRadius]: refs.borderRadius,
16616
+ [vars$i.inputOutlineColor]: refs.outlineColor,
16617
+ [vars$i.inputOutlineOffset]: refs.outlineOffset,
16618
+ [vars$i.inputOutlineWidth]: refs.outlineWidth,
16619
+ [vars$i.inputOutlineStyle]: refs.outlineStyle,
16620
+ [vars$i.labelRequiredIndicator]: refs.requiredIndicator,
16621
+ [vars$i.inputValueTextColor]: refs.valueTextColor,
16622
+ [vars$i.inputPlaceholderTextColor]: refs.placeholderTextColor,
16623
+ [vars$i.inputBackgroundColor]: refs.backgroundColor,
16624
+ [vars$i.inputHorizontalPadding]: refs.horizontalPadding,
16625
+ [vars$i.inputVerticalPadding]: refs.verticalPadding,
16626
+ [vars$i.inputHeight]: refs.inputHeight,
16627
+ [vars$i.inputDropdownButtonColor]: globalRefs$e.colors.surface.dark,
16628
+ [vars$i.inputDropdownButtonCursor]: 'pointer',
16629
+ [vars$i.inputDropdownButtonSize]: refs.toggleButtonSize,
16630
+ [vars$i.inputDropdownButtonOffset]: globalRefs$e.spacing.xs,
16631
+ [vars$i.overlayItemPaddingInlineStart]: globalRefs$e.spacing.xs,
16632
+ [vars$i.overlayItemPaddingInlineEnd]: globalRefs$e.spacing.lg,
16633
+ [vars$i.chipFontSize]: refs.chipFontSize,
16634
+ [vars$i.chipTextColor]: globalRefs$e.colors.surface.contrast,
16635
+ [vars$i.chipBackgroundColor]: globalRefs$e.colors.surface.light,
16636
+ [vars$i.labelPosition]: refs.labelPosition,
16637
+ [vars$i.labelTopPosition]: refs.labelTopPosition,
16638
+ [vars$i.labelLeftPosition]: refs.labelLeftPosition,
16639
+ [vars$i.labelHorizontalPosition]: refs.labelHorizontalPosition,
16640
+ [vars$i.inputTransformY]: refs.inputTransformY,
16641
+ [vars$i.inputTransition]: refs.inputTransition,
16642
+ [vars$i.marginInlineStart]: refs.marginInlineStart,
16643
+ [vars$i.placeholderOpacity]: refs.placeholderOpacity,
16644
+ [vars$i.inputVerticalAlignment]: refs.inputVerticalAlignment,
16555
16645
 
16556
16646
  labelType: {
16557
16647
  floating: {
16558
- [vars$h.inputHorizontalPadding]: '0.25em',
16648
+ [vars$i.inputHorizontalPadding]: '0.25em',
16559
16649
  _hasValue: {
16560
- [vars$h.inputHorizontalPadding]: '0.45em',
16650
+ [vars$i.inputHorizontalPadding]: '0.45em',
16561
16651
  },
16562
16652
  },
16563
16653
  },
16564
16654
 
16565
16655
  _readonly: {
16566
- [vars$h.inputDropdownButtonCursor]: 'default',
16656
+ [vars$i.inputDropdownButtonCursor]: 'default',
16567
16657
  },
16568
16658
 
16569
16659
  // Overlay theme exposed via the component:
16570
- [vars$h.overlayFontSize]: refs.fontSize,
16571
- [vars$h.overlayFontFamily]: refs.fontFamily,
16572
- [vars$h.overlayCursor]: 'pointer',
16573
- [vars$h.overlayItemBoxShadow]: 'none',
16574
- [vars$h.overlayBackground]: refs.backgroundColor,
16575
- [vars$h.overlayTextColor]: refs.valueTextColor,
16660
+ [vars$i.overlayFontSize]: refs.fontSize,
16661
+ [vars$i.overlayFontFamily]: refs.fontFamily,
16662
+ [vars$i.overlayCursor]: 'pointer',
16663
+ [vars$i.overlayItemBoxShadow]: 'none',
16664
+ [vars$i.overlayBackground]: refs.backgroundColor,
16665
+ [vars$i.overlayTextColor]: refs.valueTextColor,
16576
16666
 
16577
16667
  // Overlay direct theme:
16578
- [vars$h.overlay.minHeight]: '400px',
16579
- [vars$h.overlay.margin]: '0',
16668
+ [vars$i.overlay.minHeight]: '400px',
16669
+ [vars$i.overlay.margin]: '0',
16580
16670
  };
16581
16671
 
16582
16672
  var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
16583
16673
  __proto__: null,
16584
16674
  default: multiSelectComboBox,
16585
16675
  multiSelectComboBox: multiSelectComboBox,
16586
- vars: vars$h
16676
+ vars: vars$i
16587
16677
  });
16588
16678
 
16589
16679
  const globalRefs$d = getThemeRefs(globals);
16590
- const vars$g = BadgeClass.cssVarList;
16680
+ const vars$h = BadgeClass.cssVarList;
16591
16681
 
16592
16682
  const badge = {
16593
- [vars$g.hostWidth]: 'fit-content',
16594
- [vars$g.hostDirection]: globalRefs$d.direction,
16683
+ [vars$h.hostWidth]: 'fit-content',
16684
+ [vars$h.hostDirection]: globalRefs$d.direction,
16595
16685
 
16596
- [vars$g.textAlign]: 'center',
16686
+ [vars$h.textAlign]: 'center',
16597
16687
 
16598
- [vars$g.fontFamily]: globalRefs$d.fonts.font1.family,
16599
- [vars$g.fontWeight]: '400',
16688
+ [vars$h.fontFamily]: globalRefs$d.fonts.font1.family,
16689
+ [vars$h.fontWeight]: '400',
16600
16690
 
16601
- [vars$g.verticalPadding]: '0.25em',
16602
- [vars$g.horizontalPadding]: '0.5em',
16691
+ [vars$h.verticalPadding]: '0.25em',
16692
+ [vars$h.horizontalPadding]: '0.5em',
16603
16693
 
16604
- [vars$g.borderWidth]: globalRefs$d.border.xs,
16605
- [vars$g.borderRadius]: globalRefs$d.radius.xs,
16606
- [vars$g.borderColor]: 'transparent',
16607
- [vars$g.borderStyle]: 'solid',
16694
+ [vars$h.borderWidth]: globalRefs$d.border.xs,
16695
+ [vars$h.borderRadius]: globalRefs$d.radius.xs,
16696
+ [vars$h.borderColor]: 'transparent',
16697
+ [vars$h.borderStyle]: 'solid',
16608
16698
 
16609
16699
  _fullWidth: {
16610
- [vars$g.hostWidth]: '100%',
16700
+ [vars$h.hostWidth]: '100%',
16611
16701
  },
16612
16702
 
16613
16703
  size: {
16614
- xs: { [vars$g.fontSize]: '12px' },
16615
- sm: { [vars$g.fontSize]: '14px' },
16616
- md: { [vars$g.fontSize]: '16px' },
16617
- lg: { [vars$g.fontSize]: '18px' },
16704
+ xs: { [vars$h.fontSize]: '12px' },
16705
+ sm: { [vars$h.fontSize]: '14px' },
16706
+ md: { [vars$h.fontSize]: '16px' },
16707
+ lg: { [vars$h.fontSize]: '18px' },
16618
16708
  },
16619
16709
 
16620
16710
  mode: {
16621
16711
  default: {
16622
- [vars$g.textColor]: globalRefs$d.colors.surface.dark,
16712
+ [vars$h.textColor]: globalRefs$d.colors.surface.dark,
16623
16713
  _bordered: {
16624
- [vars$g.borderColor]: globalRefs$d.colors.surface.light,
16714
+ [vars$h.borderColor]: globalRefs$d.colors.surface.light,
16625
16715
  },
16626
16716
  },
16627
16717
  primary: {
16628
- [vars$g.textColor]: globalRefs$d.colors.primary.main,
16718
+ [vars$h.textColor]: globalRefs$d.colors.primary.main,
16629
16719
  _bordered: {
16630
- [vars$g.borderColor]: globalRefs$d.colors.primary.light,
16720
+ [vars$h.borderColor]: globalRefs$d.colors.primary.light,
16631
16721
  },
16632
16722
  },
16633
16723
  secondary: {
16634
- [vars$g.textColor]: globalRefs$d.colors.secondary.main,
16724
+ [vars$h.textColor]: globalRefs$d.colors.secondary.main,
16635
16725
  _bordered: {
16636
- [vars$g.borderColor]: globalRefs$d.colors.secondary.light,
16726
+ [vars$h.borderColor]: globalRefs$d.colors.secondary.light,
16637
16727
  },
16638
16728
  },
16639
16729
  error: {
16640
- [vars$g.textColor]: globalRefs$d.colors.error.main,
16730
+ [vars$h.textColor]: globalRefs$d.colors.error.main,
16641
16731
  _bordered: {
16642
- [vars$g.borderColor]: globalRefs$d.colors.error.light,
16732
+ [vars$h.borderColor]: globalRefs$d.colors.error.light,
16643
16733
  },
16644
16734
  },
16645
16735
  success: {
16646
- [vars$g.textColor]: globalRefs$d.colors.success.main,
16736
+ [vars$h.textColor]: globalRefs$d.colors.success.main,
16647
16737
  _bordered: {
16648
- [vars$g.borderColor]: globalRefs$d.colors.success.light,
16738
+ [vars$h.borderColor]: globalRefs$d.colors.success.light,
16649
16739
  },
16650
16740
  },
16651
16741
  },
@@ -16654,7 +16744,7 @@ const badge = {
16654
16744
  var badge$1 = /*#__PURE__*/Object.freeze({
16655
16745
  __proto__: null,
16656
16746
  default: badge,
16657
- vars: vars$g
16747
+ vars: vars$h
16658
16748
  });
16659
16749
 
16660
16750
  const globalRefs$c = getThemeRefs(globals);
@@ -16692,143 +16782,143 @@ const avatar = {
16692
16782
  },
16693
16783
  };
16694
16784
 
16695
- const vars$f = {
16785
+ const vars$g = {
16696
16786
  ...compVars$1,
16697
16787
  };
16698
16788
 
16699
16789
  var avatar$1 = /*#__PURE__*/Object.freeze({
16700
16790
  __proto__: null,
16701
16791
  default: avatar,
16702
- vars: vars$f
16792
+ vars: vars$g
16703
16793
  });
16704
16794
 
16705
16795
  const globalRefs$b = getThemeRefs(globals);
16706
16796
 
16707
- const vars$e = MappingsFieldClass.cssVarList;
16797
+ const vars$f = MappingsFieldClass.cssVarList;
16708
16798
 
16709
16799
  const mappingsField = {
16710
- [vars$e.hostWidth]: refs.width,
16711
- [vars$e.hostDirection]: refs.direction,
16712
- [vars$e.fontSize]: refs.fontSize,
16713
- [vars$e.fontFamily]: refs.fontFamily,
16714
- [vars$e.separatorFontSize]: '14px',
16715
- [vars$e.labelsFontSize]: '14px',
16716
- [vars$e.labelsLineHeight]: '1',
16717
- [vars$e.labelsMarginBottom]: '6px',
16718
- [vars$e.labelTextColor]: refs.labelTextColor,
16719
- [vars$e.itemMarginBottom]: '1em',
16800
+ [vars$f.hostWidth]: refs.width,
16801
+ [vars$f.hostDirection]: refs.direction,
16802
+ [vars$f.fontSize]: refs.fontSize,
16803
+ [vars$f.fontFamily]: refs.fontFamily,
16804
+ [vars$f.separatorFontSize]: '14px',
16805
+ [vars$f.labelsFontSize]: '14px',
16806
+ [vars$f.labelsLineHeight]: '1',
16807
+ [vars$f.labelsMarginBottom]: '6px',
16808
+ [vars$f.labelTextColor]: refs.labelTextColor,
16809
+ [vars$f.itemMarginBottom]: '1em',
16720
16810
  // To be positioned correctly, the min width has to match the text field min width
16721
- [vars$e.valueLabelMinWidth]: refs.minWidth,
16811
+ [vars$f.valueLabelMinWidth]: refs.minWidth,
16722
16812
  // To be positioned correctly, the min width has to match the combo box field min width
16723
- [vars$e.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$b.border.xs})`,
16724
- [vars$e.separatorWidth]: '70px',
16725
- [vars$e.removeButtonWidth]: '60px',
16813
+ [vars$f.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$b.border.xs})`,
16814
+ [vars$f.separatorWidth]: '70px',
16815
+ [vars$f.removeButtonWidth]: '60px',
16726
16816
  };
16727
16817
 
16728
16818
  var mappingsField$1 = /*#__PURE__*/Object.freeze({
16729
16819
  __proto__: null,
16730
16820
  default: mappingsField,
16731
16821
  mappingsField: mappingsField,
16732
- vars: vars$e
16822
+ vars: vars$f
16733
16823
  });
16734
16824
 
16735
16825
  const globalRefs$a = getThemeRefs(globals);
16736
- const vars$d = UserAttributeClass.cssVarList;
16826
+ const vars$e = UserAttributeClass.cssVarList;
16737
16827
 
16738
16828
  const userAttribute = {
16739
- [vars$d.hostDirection]: globalRefs$a.direction,
16740
- [vars$d.labelTextWidth]: '150px',
16741
- [vars$d.valueTextWidth]: '200px',
16742
- [vars$d.badgeMaxWidth]: '85px',
16743
- [vars$d.itemsGap]: '16px',
16744
- [vars$d.hostMinWidth]: '530px',
16829
+ [vars$e.hostDirection]: globalRefs$a.direction,
16830
+ [vars$e.labelTextWidth]: '150px',
16831
+ [vars$e.valueTextWidth]: '200px',
16832
+ [vars$e.badgeMaxWidth]: '85px',
16833
+ [vars$e.itemsGap]: '16px',
16834
+ [vars$e.hostMinWidth]: '530px',
16745
16835
  _fullWidth: {
16746
- [vars$d.hostWidth]: '100%',
16836
+ [vars$e.hostWidth]: '100%',
16747
16837
  },
16748
16838
  };
16749
16839
 
16750
16840
  var userAttribute$1 = /*#__PURE__*/Object.freeze({
16751
16841
  __proto__: null,
16752
16842
  default: userAttribute,
16753
- vars: vars$d
16843
+ vars: vars$e
16754
16844
  });
16755
16845
 
16756
16846
  const globalRefs$9 = getThemeRefs(globals);
16757
- const vars$c = UserAuthMethodClass.cssVarList;
16847
+ const vars$d = UserAuthMethodClass.cssVarList;
16758
16848
 
16759
16849
  const userAuthMethod = {
16760
- [vars$c.hostDirection]: globalRefs$9.direction,
16761
- [vars$c.labelTextWidth]: '200px',
16762
- [vars$c.itemsGap]: '16px',
16763
- [vars$c.hostMinWidth]: '530px',
16764
- [vars$c.iconSize]: '24px',
16850
+ [vars$d.hostDirection]: globalRefs$9.direction,
16851
+ [vars$d.labelTextWidth]: '200px',
16852
+ [vars$d.itemsGap]: '16px',
16853
+ [vars$d.hostMinWidth]: '530px',
16854
+ [vars$d.iconSize]: '24px',
16765
16855
  _fullWidth: {
16766
- [vars$c.hostWidth]: '100%',
16856
+ [vars$d.hostWidth]: '100%',
16767
16857
  },
16768
16858
  };
16769
16859
 
16770
16860
  var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
16771
16861
  __proto__: null,
16772
16862
  default: userAuthMethod,
16773
- vars: vars$c
16863
+ vars: vars$d
16774
16864
  });
16775
16865
 
16776
- const vars$b = SamlGroupMappingsClass.cssVarList;
16866
+ const vars$c = SamlGroupMappingsClass.cssVarList;
16777
16867
 
16778
16868
  const samlGroupMappings = {
16779
- [vars$b.hostWidth]: refs.width,
16780
- [vars$b.hostDirection]: refs.direction,
16781
- [vars$b.groupNameInputMarginBottom]: '1em',
16869
+ [vars$c.hostWidth]: refs.width,
16870
+ [vars$c.hostDirection]: refs.direction,
16871
+ [vars$c.groupNameInputMarginBottom]: '1em',
16782
16872
  };
16783
16873
 
16784
16874
  var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
16785
16875
  __proto__: null,
16786
16876
  default: samlGroupMappings,
16787
16877
  samlGroupMappings: samlGroupMappings,
16788
- vars: vars$b
16878
+ vars: vars$c
16789
16879
  });
16790
16880
 
16791
16881
  const globalRefs$8 = getThemeRefs(globals);
16792
- const vars$a = PolicyValidationClass.cssVarList;
16882
+ const vars$b = PolicyValidationClass.cssVarList;
16793
16883
 
16794
16884
  const policyValidation = {
16795
- [vars$a.fontFamily]: refs.fontFamily,
16796
- [vars$a.fontSize]: refs.labelFontSize,
16797
- [vars$a.textColor]: refs.labelTextColor,
16798
- [vars$a.borderWidth]: refs.borderWidth,
16799
- [vars$a.borderStyle]: refs.borderStyle,
16800
- [vars$a.borderColor]: refs.borderColor,
16801
- [vars$a.borderRadius]: globalRefs$8.radius.sm,
16802
- [vars$a.backgroundColor]: 'none',
16803
- [vars$a.padding]: '0px',
16804
- [vars$a.labelMargin]: globalRefs$8.spacing.sm,
16805
- [vars$a.itemsSpacing]: globalRefs$8.spacing.lg,
16806
- [vars$a.itemSymbolDefault]: "'\\2022'", // "•"
16807
- [vars$a.itemSymbolSuccess]: "'\\2713'", // "✓"
16808
- [vars$a.itemSymbolError]: "'\\2A09'", // "⨉"
16809
- [vars$a.itemSymbolSuccessColor]: globalRefs$8.colors.success.main,
16810
- [vars$a.itemSymbolErrorColor]: globalRefs$8.colors.error.main,
16885
+ [vars$b.fontFamily]: refs.fontFamily,
16886
+ [vars$b.fontSize]: refs.labelFontSize,
16887
+ [vars$b.textColor]: refs.labelTextColor,
16888
+ [vars$b.borderWidth]: refs.borderWidth,
16889
+ [vars$b.borderStyle]: refs.borderStyle,
16890
+ [vars$b.borderColor]: refs.borderColor,
16891
+ [vars$b.borderRadius]: globalRefs$8.radius.sm,
16892
+ [vars$b.backgroundColor]: 'none',
16893
+ [vars$b.padding]: '0px',
16894
+ [vars$b.labelMargin]: globalRefs$8.spacing.sm,
16895
+ [vars$b.itemsSpacing]: globalRefs$8.spacing.lg,
16896
+ [vars$b.itemSymbolDefault]: "'\\2022'", // "•"
16897
+ [vars$b.itemSymbolSuccess]: "'\\2713'", // "✓"
16898
+ [vars$b.itemSymbolError]: "'\\2A09'", // "⨉"
16899
+ [vars$b.itemSymbolSuccessColor]: globalRefs$8.colors.success.main,
16900
+ [vars$b.itemSymbolErrorColor]: globalRefs$8.colors.error.main,
16811
16901
  };
16812
16902
 
16813
16903
  var policyValidation$1 = /*#__PURE__*/Object.freeze({
16814
16904
  __proto__: null,
16815
16905
  default: policyValidation,
16816
- vars: vars$a
16906
+ vars: vars$b
16817
16907
  });
16818
16908
 
16819
- const vars$9 = IconClass.cssVarList;
16909
+ const vars$a = IconClass.cssVarList;
16820
16910
 
16821
16911
  const icon = {};
16822
16912
 
16823
16913
  var icon$1 = /*#__PURE__*/Object.freeze({
16824
16914
  __proto__: null,
16825
16915
  default: icon,
16826
- vars: vars$9
16916
+ vars: vars$a
16827
16917
  });
16828
16918
 
16829
16919
  const globalRefs$7 = getThemeRefs(globals);
16830
16920
 
16831
- const vars$8 = CodeSnippetClass.cssVarList;
16921
+ const vars$9 = CodeSnippetClass.cssVarList;
16832
16922
 
16833
16923
  const light = {
16834
16924
  color1: '#fa0',
@@ -16863,50 +16953,50 @@ const dark = {
16863
16953
  };
16864
16954
 
16865
16955
  const CodeSnippet = {
16866
- [vars$8.rootBgColor]: globalRefs$7.colors.surface.main,
16867
- [vars$8.rootTextColor]: globalRefs$7.colors.surface.contrast,
16868
- [vars$8.docTagTextColor]: light.color2,
16869
- [vars$8.keywordTextColor]: light.color2,
16870
- [vars$8.metaKeywordTextColor]: light.color2,
16871
- [vars$8.templateTagTextColor]: light.color2,
16872
- [vars$8.templateVariableTextColor]: light.color2,
16873
- [vars$8.typeTextColor]: light.color2,
16874
- [vars$8.variableLanguageTextColor]: light.color2,
16875
- [vars$8.titleTextColor]: light.color3,
16876
- [vars$8.titleClassTextColor]: light.color3,
16877
- [vars$8.titleClassInheritedTextColor]: light.color3,
16878
- [vars$8.titleFunctionTextColor]: light.color3,
16879
- [vars$8.attrTextColor]: light.color4,
16880
- [vars$8.attributeTextColor]: light.color4,
16881
- [vars$8.literalTextColor]: light.color4,
16882
- [vars$8.metaTextColor]: light.color4,
16883
- [vars$8.numberTextColor]: light.color4,
16884
- [vars$8.operatorTextColor]: light.color4,
16885
- [vars$8.variableTextColor]: light.color4,
16886
- [vars$8.selectorAttrTextColor]: light.color4,
16887
- [vars$8.selectorClassTextColor]: light.color4,
16888
- [vars$8.selectorIdTextColor]: light.color4,
16889
- [vars$8.regexpTextColor]: light.color13,
16890
- [vars$8.stringTextColor]: light.color13,
16891
- [vars$8.metaStringTextColor]: light.color13,
16892
- [vars$8.builtInTextColor]: light.color5,
16893
- [vars$8.symbolTextColor]: light.color5,
16894
- [vars$8.commentTextColor]: light.color6,
16895
- [vars$8.codeTextColor]: light.color6,
16896
- [vars$8.formulaTextColor]: light.color6,
16897
- [vars$8.nameTextColor]: light.color7,
16898
- [vars$8.quoteTextColor]: light.color7,
16899
- [vars$8.selectorTagTextColor]: light.color7,
16900
- [vars$8.selectorPseudoTextColor]: light.color7,
16901
- [vars$8.substTextColor]: light.color8,
16902
- [vars$8.sectionTextColor]: light.color4,
16903
- [vars$8.bulletTextColor]: light.color9,
16904
- [vars$8.emphasisTextColor]: light.color8,
16905
- [vars$8.strongTextColor]: light.color8,
16906
- [vars$8.additionTextColor]: light.color7,
16907
- [vars$8.additionBgColor]: light.color10,
16908
- [vars$8.deletionTextColor]: light.color2,
16909
- [vars$8.deletionBgColor]: light.color10,
16956
+ [vars$9.rootBgColor]: globalRefs$7.colors.surface.main,
16957
+ [vars$9.rootTextColor]: globalRefs$7.colors.surface.contrast,
16958
+ [vars$9.docTagTextColor]: light.color2,
16959
+ [vars$9.keywordTextColor]: light.color2,
16960
+ [vars$9.metaKeywordTextColor]: light.color2,
16961
+ [vars$9.templateTagTextColor]: light.color2,
16962
+ [vars$9.templateVariableTextColor]: light.color2,
16963
+ [vars$9.typeTextColor]: light.color2,
16964
+ [vars$9.variableLanguageTextColor]: light.color2,
16965
+ [vars$9.titleTextColor]: light.color3,
16966
+ [vars$9.titleClassTextColor]: light.color3,
16967
+ [vars$9.titleClassInheritedTextColor]: light.color3,
16968
+ [vars$9.titleFunctionTextColor]: light.color3,
16969
+ [vars$9.attrTextColor]: light.color4,
16970
+ [vars$9.attributeTextColor]: light.color4,
16971
+ [vars$9.literalTextColor]: light.color4,
16972
+ [vars$9.metaTextColor]: light.color4,
16973
+ [vars$9.numberTextColor]: light.color4,
16974
+ [vars$9.operatorTextColor]: light.color4,
16975
+ [vars$9.variableTextColor]: light.color4,
16976
+ [vars$9.selectorAttrTextColor]: light.color4,
16977
+ [vars$9.selectorClassTextColor]: light.color4,
16978
+ [vars$9.selectorIdTextColor]: light.color4,
16979
+ [vars$9.regexpTextColor]: light.color13,
16980
+ [vars$9.stringTextColor]: light.color13,
16981
+ [vars$9.metaStringTextColor]: light.color13,
16982
+ [vars$9.builtInTextColor]: light.color5,
16983
+ [vars$9.symbolTextColor]: light.color5,
16984
+ [vars$9.commentTextColor]: light.color6,
16985
+ [vars$9.codeTextColor]: light.color6,
16986
+ [vars$9.formulaTextColor]: light.color6,
16987
+ [vars$9.nameTextColor]: light.color7,
16988
+ [vars$9.quoteTextColor]: light.color7,
16989
+ [vars$9.selectorTagTextColor]: light.color7,
16990
+ [vars$9.selectorPseudoTextColor]: light.color7,
16991
+ [vars$9.substTextColor]: light.color8,
16992
+ [vars$9.sectionTextColor]: light.color4,
16993
+ [vars$9.bulletTextColor]: light.color9,
16994
+ [vars$9.emphasisTextColor]: light.color8,
16995
+ [vars$9.strongTextColor]: light.color8,
16996
+ [vars$9.additionTextColor]: light.color7,
16997
+ [vars$9.additionBgColor]: light.color10,
16998
+ [vars$9.deletionTextColor]: light.color2,
16999
+ [vars$9.deletionBgColor]: light.color10,
16910
17000
  /* purposely ignored */
16911
17001
  // [vars.charEscapeTextColor]: '',
16912
17002
  // [vars.linkTextColor]: '',
@@ -16918,50 +17008,50 @@ const CodeSnippet = {
16918
17008
 
16919
17009
  const codeSnippetDarkThemeOverrides = {
16920
17010
  codeSnippet: {
16921
- [vars$8.rootBgColor]: globalRefs$7.colors.surface.main,
16922
- [vars$8.rootTextColor]: globalRefs$7.colors.surface.contrast,
16923
- [vars$8.docTagTextColor]: dark.color2,
16924
- [vars$8.keywordTextColor]: dark.color2,
16925
- [vars$8.metaKeywordTextColor]: dark.color2,
16926
- [vars$8.templateTagTextColor]: dark.color2,
16927
- [vars$8.templateVariableTextColor]: dark.color2,
16928
- [vars$8.typeTextColor]: dark.color2,
16929
- [vars$8.variableLanguageTextColor]: dark.color2,
16930
- [vars$8.titleTextColor]: dark.color3,
16931
- [vars$8.titleClassTextColor]: dark.color3,
16932
- [vars$8.titleClassInheritedTextColor]: dark.color3,
16933
- [vars$8.titleFunctionTextColor]: dark.color3,
16934
- [vars$8.attrTextColor]: dark.color4,
16935
- [vars$8.attributeTextColor]: dark.color4,
16936
- [vars$8.literalTextColor]: dark.color4,
16937
- [vars$8.metaTextColor]: dark.color4,
16938
- [vars$8.numberTextColor]: dark.color4,
16939
- [vars$8.operatorTextColor]: dark.color4,
16940
- [vars$8.variableTextColor]: dark.color4,
16941
- [vars$8.selectorAttrTextColor]: dark.color4,
16942
- [vars$8.selectorClassTextColor]: dark.color4,
16943
- [vars$8.selectorIdTextColor]: dark.color4,
16944
- [vars$8.regexpTextColor]: dark.color13,
16945
- [vars$8.stringTextColor]: dark.color13,
16946
- [vars$8.metaStringTextColor]: dark.color13,
16947
- [vars$8.builtInTextColor]: dark.color5,
16948
- [vars$8.symbolTextColor]: dark.color5,
16949
- [vars$8.commentTextColor]: dark.color6,
16950
- [vars$8.codeTextColor]: dark.color6,
16951
- [vars$8.formulaTextColor]: dark.color6,
16952
- [vars$8.nameTextColor]: dark.color7,
16953
- [vars$8.quoteTextColor]: dark.color7,
16954
- [vars$8.selectorTagTextColor]: dark.color7,
16955
- [vars$8.selectorPseudoTextColor]: dark.color7,
16956
- [vars$8.substTextColor]: dark.color8,
16957
- [vars$8.sectionTextColor]: dark.color4,
16958
- [vars$8.bulletTextColor]: dark.color9,
16959
- [vars$8.emphasisTextColor]: dark.color8,
16960
- [vars$8.strongTextColor]: dark.color8,
16961
- [vars$8.additionTextColor]: dark.color7,
16962
- [vars$8.additionBgColor]: dark.color10,
16963
- [vars$8.deletionTextColor]: dark.color2,
16964
- [vars$8.deletionBgColor]: dark.color10,
17011
+ [vars$9.rootBgColor]: globalRefs$7.colors.surface.main,
17012
+ [vars$9.rootTextColor]: globalRefs$7.colors.surface.contrast,
17013
+ [vars$9.docTagTextColor]: dark.color2,
17014
+ [vars$9.keywordTextColor]: dark.color2,
17015
+ [vars$9.metaKeywordTextColor]: dark.color2,
17016
+ [vars$9.templateTagTextColor]: dark.color2,
17017
+ [vars$9.templateVariableTextColor]: dark.color2,
17018
+ [vars$9.typeTextColor]: dark.color2,
17019
+ [vars$9.variableLanguageTextColor]: dark.color2,
17020
+ [vars$9.titleTextColor]: dark.color3,
17021
+ [vars$9.titleClassTextColor]: dark.color3,
17022
+ [vars$9.titleClassInheritedTextColor]: dark.color3,
17023
+ [vars$9.titleFunctionTextColor]: dark.color3,
17024
+ [vars$9.attrTextColor]: dark.color4,
17025
+ [vars$9.attributeTextColor]: dark.color4,
17026
+ [vars$9.literalTextColor]: dark.color4,
17027
+ [vars$9.metaTextColor]: dark.color4,
17028
+ [vars$9.numberTextColor]: dark.color4,
17029
+ [vars$9.operatorTextColor]: dark.color4,
17030
+ [vars$9.variableTextColor]: dark.color4,
17031
+ [vars$9.selectorAttrTextColor]: dark.color4,
17032
+ [vars$9.selectorClassTextColor]: dark.color4,
17033
+ [vars$9.selectorIdTextColor]: dark.color4,
17034
+ [vars$9.regexpTextColor]: dark.color13,
17035
+ [vars$9.stringTextColor]: dark.color13,
17036
+ [vars$9.metaStringTextColor]: dark.color13,
17037
+ [vars$9.builtInTextColor]: dark.color5,
17038
+ [vars$9.symbolTextColor]: dark.color5,
17039
+ [vars$9.commentTextColor]: dark.color6,
17040
+ [vars$9.codeTextColor]: dark.color6,
17041
+ [vars$9.formulaTextColor]: dark.color6,
17042
+ [vars$9.nameTextColor]: dark.color7,
17043
+ [vars$9.quoteTextColor]: dark.color7,
17044
+ [vars$9.selectorTagTextColor]: dark.color7,
17045
+ [vars$9.selectorPseudoTextColor]: dark.color7,
17046
+ [vars$9.substTextColor]: dark.color8,
17047
+ [vars$9.sectionTextColor]: dark.color4,
17048
+ [vars$9.bulletTextColor]: dark.color9,
17049
+ [vars$9.emphasisTextColor]: dark.color8,
17050
+ [vars$9.strongTextColor]: dark.color8,
17051
+ [vars$9.additionTextColor]: dark.color7,
17052
+ [vars$9.additionBgColor]: dark.color10,
17053
+ [vars$9.deletionTextColor]: dark.color2,
17054
+ [vars$9.deletionBgColor]: dark.color10,
16965
17055
  },
16966
17056
  };
16967
17057
 
@@ -16969,36 +17059,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
16969
17059
  __proto__: null,
16970
17060
  codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
16971
17061
  default: CodeSnippet,
16972
- vars: vars$8
17062
+ vars: vars$9
16973
17063
  });
16974
17064
 
16975
- const vars$7 = RadioGroupClass.cssVarList;
17065
+ const vars$8 = RadioGroupClass.cssVarList;
16976
17066
  const globalRefs$6 = getThemeRefs(globals);
16977
17067
 
16978
17068
  const radioGroup = {
16979
- [vars$7.buttonsRowGap]: '9px',
16980
- [vars$7.hostWidth]: refs.width,
16981
- [vars$7.hostDirection]: refs.direction,
16982
- [vars$7.fontSize]: refs.fontSize,
16983
- [vars$7.fontFamily]: refs.fontFamily,
16984
- [vars$7.labelTextColor]: refs.labelTextColor,
16985
- [vars$7.labelRequiredIndicator]: refs.requiredIndicator,
16986
- [vars$7.errorMessageTextColor]: refs.errorMessageTextColor,
16987
- [vars$7.helperTextColor]: refs.helperTextColor,
16988
- [vars$7.itemsLabelColor]: globalRefs$6.colors.surface.contrast,
17069
+ [vars$8.buttonsRowGap]: '9px',
17070
+ [vars$8.hostWidth]: refs.width,
17071
+ [vars$8.hostDirection]: refs.direction,
17072
+ [vars$8.fontSize]: refs.fontSize,
17073
+ [vars$8.fontFamily]: refs.fontFamily,
17074
+ [vars$8.labelTextColor]: refs.labelTextColor,
17075
+ [vars$8.labelRequiredIndicator]: refs.requiredIndicator,
17076
+ [vars$8.errorMessageTextColor]: refs.errorMessageTextColor,
17077
+ [vars$8.helperTextColor]: refs.helperTextColor,
17078
+ [vars$8.itemsLabelColor]: globalRefs$6.colors.surface.contrast,
16989
17079
 
16990
17080
  textAlign: {
16991
- right: { [vars$7.inputTextAlign]: 'right' },
16992
- left: { [vars$7.inputTextAlign]: 'left' },
16993
- center: { [vars$7.inputTextAlign]: 'center' },
17081
+ right: { [vars$8.inputTextAlign]: 'right' },
17082
+ left: { [vars$8.inputTextAlign]: 'left' },
17083
+ center: { [vars$8.inputTextAlign]: 'center' },
16994
17084
  },
16995
17085
 
16996
17086
  _fullWidth: {
16997
- [vars$7.buttonsSpacing]: 'space-between',
17087
+ [vars$8.buttonsSpacing]: 'space-between',
16998
17088
  },
16999
17089
 
17000
17090
  _disabled: {
17001
- [vars$7.itemsLabelColor]: globalRefs$6.colors.surface.light,
17091
+ [vars$8.itemsLabelColor]: globalRefs$6.colors.surface.light,
17002
17092
  },
17003
17093
  };
17004
17094
 
@@ -17006,24 +17096,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
17006
17096
  __proto__: null,
17007
17097
  default: radioGroup,
17008
17098
  radioGroup: radioGroup,
17009
- vars: vars$7
17099
+ vars: vars$8
17010
17100
  });
17011
17101
 
17012
- const vars$6 = RadioButtonClass.cssVarList;
17102
+ const vars$7 = RadioButtonClass.cssVarList;
17013
17103
  const globalRefs$5 = getThemeRefs(globals);
17014
17104
 
17015
17105
  const radioButton = {
17016
- [vars$6.fontFamily]: refs.fontFamily,
17017
- [vars$6.radioSize]: 'calc(1em + 6px)',
17018
- [vars$6.radioMargin]: 'auto 4px',
17019
- [vars$6.radioCheckedSize]: `calc(var(${vars$6.radioSize})/5)`,
17020
- [vars$6.radioCheckedColor]: globalRefs$5.colors.surface.light,
17021
- [vars$6.radioBackgroundColor]: globalRefs$5.colors.surface.light,
17022
- [vars$6.radioBorderColor]: 'none',
17023
- [vars$6.radioBorderWidth]: 0,
17106
+ [vars$7.fontFamily]: refs.fontFamily,
17107
+ [vars$7.radioSize]: 'calc(1em + 6px)',
17108
+ [vars$7.radioMargin]: 'auto 4px',
17109
+ [vars$7.radioCheckedSize]: `calc(var(${vars$7.radioSize})/5)`,
17110
+ [vars$7.radioCheckedColor]: globalRefs$5.colors.surface.light,
17111
+ [vars$7.radioBackgroundColor]: globalRefs$5.colors.surface.light,
17112
+ [vars$7.radioBorderColor]: 'none',
17113
+ [vars$7.radioBorderWidth]: 0,
17024
17114
 
17025
17115
  _checked: {
17026
- [vars$6.radioBackgroundColor]: globalRefs$5.colors.surface.contrast,
17116
+ [vars$7.radioBackgroundColor]: globalRefs$5.colors.surface.contrast,
17027
17117
  },
17028
17118
 
17029
17119
  _hover: {
@@ -17032,16 +17122,16 @@ const radioButton = {
17032
17122
 
17033
17123
  size: {
17034
17124
  xs: {
17035
- [vars$6.fontSize]: '12px',
17125
+ [vars$7.fontSize]: '12px',
17036
17126
  },
17037
17127
  sm: {
17038
- [vars$6.fontSize]: '14px',
17128
+ [vars$7.fontSize]: '14px',
17039
17129
  },
17040
17130
  md: {
17041
- [vars$6.fontSize]: '16px',
17131
+ [vars$7.fontSize]: '16px',
17042
17132
  },
17043
17133
  lg: {
17044
- [vars$6.fontSize]: '18px',
17134
+ [vars$7.fontSize]: '18px',
17045
17135
  },
17046
17136
  },
17047
17137
  };
@@ -17050,126 +17140,128 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
17050
17140
  __proto__: null,
17051
17141
  default: radioButton,
17052
17142
  radioButton: radioButton,
17053
- vars: vars$6
17143
+ vars: vars$7
17054
17144
  });
17055
17145
 
17056
17146
  const globalRefs$4 = getThemeRefs(globals);
17057
17147
 
17058
- const vars$5 = CalendarClass.cssVarList;
17148
+ const vars$6 = CalendarClass.cssVarList;
17059
17149
 
17060
17150
  const calendar = {
17061
- [vars$5.fontFamily]: refs.fontFamily,
17062
- [vars$5.fontSize]: refs.fontSize,
17063
- [vars$5.hostDirection]: refs.direction,
17151
+ [vars$6.fontFamily]: refs.fontFamily,
17152
+ [vars$6.fontSize]: refs.fontSize,
17153
+ [vars$6.hostDirection]: refs.direction,
17064
17154
 
17065
- [vars$5.calendarPadding]: '1em',
17155
+ [vars$6.calendarPadding]: '1em',
17066
17156
 
17067
- [vars$5.topNavVerticalPadding]: '1em',
17068
- [vars$5.topNavAlignment]: 'space-between',
17069
- [vars$5.topNavGap]: '0',
17070
- [vars$5.topNavSelectorsGap]: '0.5em',
17157
+ [vars$6.topNavVerticalPadding]: '1em',
17158
+ [vars$6.topNavAlignment]: 'space-between',
17159
+ [vars$6.topNavGap]: '0',
17160
+ [vars$6.topNavSelectorsGap]: '0.5em',
17071
17161
 
17072
- [vars$5.bottomNavVerticalPadding]: '0.75em',
17073
- [vars$5.bottomNavHorizontalPadding]: '1.5em',
17074
- [vars$5.bottomNavAlignment]: 'space-between',
17075
- [vars$5.bottomNavGap]: '0.5em',
17162
+ [vars$6.bottomNavVerticalPadding]: '0.75em',
17163
+ [vars$6.bottomNavHorizontalPadding]: '1.5em',
17164
+ [vars$6.bottomNavAlignment]: 'space-between',
17165
+ [vars$6.bottomNavGap]: '0.5em',
17076
17166
 
17077
- [vars$5.navMarginBottom]: '0.75em',
17078
- [vars$5.navBorderBottomWidth]: '1px',
17079
- [vars$5.navBorderBottomColor]: globalRefs$4.colors.surface.highlight,
17080
- [vars$5.navBorderBottomStyle]: 'solid',
17167
+ [vars$6.navMarginBottom]: '0.75em',
17168
+ [vars$6.navBorderBottomWidth]: '1px',
17169
+ [vars$6.navBorderBottomColor]: globalRefs$4.colors.surface.highlight,
17170
+ [vars$6.navBorderBottomStyle]: 'solid',
17081
17171
 
17082
- [vars$5.yearInputWidth]: '6em',
17083
- [vars$5.monthInputWidth]: '8em',
17172
+ [vars$6.yearInputWidth]: '6em',
17173
+ [vars$6.monthInputWidth]: '8em',
17084
17174
 
17085
- [vars$5.navButtonSize]: '24px',
17086
- [vars$5.navButtonCursor]: 'pointer',
17175
+ [vars$6.navButtonSize]: '24px',
17176
+ [vars$6.navButtonCursor]: 'pointer',
17087
17177
 
17088
- [vars$5.weekdayFontSize]: '0.875em',
17089
- [vars$5.weekdayFontWeight]: '500',
17178
+ [vars$6.weekdayFontSize]: '0.875em',
17179
+ [vars$6.weekdayFontWeight]: '500',
17090
17180
 
17091
17181
  // day table cell
17092
- [vars$5.dayHeight]: '3.125em',
17182
+ [vars$6.dayHeight]: '3.125em',
17093
17183
 
17094
17184
  // day value
17095
- [vars$5.daySize]: '2.125em',
17096
- [vars$5.dayFontSize]: '1em',
17097
- [vars$5.dayRadius]: '50%',
17098
- [vars$5.dayTextAlign]: 'center',
17099
- [vars$5.dayPadding]: '0',
17100
- [vars$5.dayTextColor]: globalRefs$4.colors.surface.contrast,
17101
- [vars$5.dayFontWeight]: '500',
17102
- [vars$5.dayBackgroundColor]: 'transparent',
17103
- [vars$5.dayCursor]: 'pointer',
17104
- [vars$5.dayBackgroundColorHover]: globalRefs$4.colors.primary.highlight,
17185
+ [vars$6.daySize]: '2.125em',
17186
+ [vars$6.dayFontSize]: '1em',
17187
+ [vars$6.dayRadius]: '50%',
17188
+ [vars$6.dayTextAlign]: 'center',
17189
+ [vars$6.dayPadding]: '0',
17190
+ [vars$6.dayTextColor]: globalRefs$4.colors.surface.contrast,
17191
+ [vars$6.dayFontWeight]: '500',
17192
+ [vars$6.dayBackgroundColor]: 'transparent',
17193
+ [vars$6.dayCursor]: 'pointer',
17194
+ [vars$6.dayBackgroundColorHover]: globalRefs$4.colors.primary.highlight,
17105
17195
 
17106
17196
  // selected day
17107
- [vars$5.daySelectedBackgroundColor]: globalRefs$4.colors.primary.main,
17108
- [vars$5.daySelectedTextdColor]: globalRefs$4.colors.primary.contrast,
17197
+ [vars$6.daySelectedBackgroundColor]: globalRefs$4.colors.primary.main,
17198
+ [vars$6.daySelectedTextdColor]: globalRefs$4.colors.primary.contrast,
17109
17199
 
17110
17200
  // disabled day (out of min/max range)
17111
- [vars$5.dayDisabledTextdColor]: globalRefs$4.colors.surface.light,
17201
+ [vars$6.dayDisabledTextdColor]: globalRefs$4.colors.surface.light,
17112
17202
 
17113
17203
  // today
17114
- [vars$5.currentDayBorderColor]: globalRefs$4.colors.surface.light,
17115
- [vars$5.currentDayBorderWidth]: '1px',
17116
- [vars$5.currentDayBorderStyle]: 'solid',
17204
+ [vars$6.currentDayBorderColor]: globalRefs$4.colors.surface.light,
17205
+ [vars$6.currentDayBorderWidth]: '1px',
17206
+ [vars$6.currentDayBorderStyle]: 'solid',
17117
17207
 
17118
17208
  size: {
17119
- xs: { [vars$5.fontSize]: '12px' },
17120
- sm: { [vars$5.fontSize]: '14px' },
17121
- md: { [vars$5.fontSize]: '16px' },
17122
- lg: { [vars$5.fontSize]: '18px' },
17209
+ xs: { [vars$6.fontSize]: '12px' },
17210
+ sm: { [vars$6.fontSize]: '14px' },
17211
+ md: { [vars$6.fontSize]: '16px' },
17212
+ lg: { [vars$6.fontSize]: '18px' },
17123
17213
  },
17124
17214
 
17125
- [vars$5.navButtonRotation]: 'rotate(180deg)',
17215
+ [vars$6.navButtonRotation]: 'rotate(180deg)',
17126
17216
 
17127
17217
  _disabled: {
17128
- [vars$5.navButtonOpacity]: '0.5',
17129
- [vars$5.dayBackgroundColorHover]: 'none',
17130
- [vars$5.navButtonCursor]: 'default',
17131
- [vars$5.dayCursor]: 'default',
17218
+ [vars$6.navButtonOpacity]: '0.5',
17219
+ [vars$6.dayBackgroundColorHover]: 'none',
17220
+ [vars$6.navButtonCursor]: 'default',
17221
+ [vars$6.dayCursor]: 'default',
17132
17222
  },
17133
17223
 
17134
17224
  _fullWidth: {
17135
- [vars$5.hostWidth]: '100%',
17136
- [vars$5.dayBlockAlign]: '0 auto',
17225
+ [vars$6.hostWidth]: '100%',
17226
+ [vars$6.dayBlockAlign]: '0 auto',
17137
17227
  },
17138
17228
  };
17139
17229
 
17140
17230
  var calendar$1 = /*#__PURE__*/Object.freeze({
17141
17231
  __proto__: null,
17142
17232
  default: calendar,
17143
- vars: vars$5
17233
+ vars: vars$6
17144
17234
  });
17145
17235
 
17146
17236
  const globalRefs$3 = getThemeRefs(globals);
17147
-
17148
17237
  const shadowColor$1 = '#00000020';
17149
17238
  const { shadow } = globalRefs$3;
17150
17239
 
17151
- const vars$4 = DateFieldClass.cssVarList;
17240
+ const vars$5 = DateFieldClass.cssVarList;
17152
17241
 
17153
17242
  const dateField = {
17154
- [vars$4.hostWidth]: refs.width,
17155
- [vars$4.hostDirection]: refs.direction,
17156
- [vars$4.iconMargin]: '0.375em',
17157
-
17158
- [vars$4.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
17159
- [vars$4.overlay.backgroundColor]: refs.backgroundColor,
17160
- [vars$4.overlay.backdropBackgroundColor]: 'transparent',
17161
- [vars$4.overlay.backdropPointerEvents]: 'all',
17162
- [vars$4.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
17163
- [vars$4.overlay.outlineWidth]: '0',
17164
- [vars$4.overlay.outlineColor]: 'transparent',
17165
- [vars$4.overlay.outlineStyle]: 'none',
17166
- [vars$4.overlay.padding]: '0',
17243
+ [vars$5.hostWidth]: refs.width,
17244
+ [vars$5.hostDirection]: refs.direction,
17245
+ [vars$5.iconMargin]: '0.375em',
17246
+
17247
+ [vars$5.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
17248
+ [vars$5.overlay.backgroundColor]: refs.backgroundColor,
17249
+ [vars$5.overlay.backdropBackgroundColor]: 'transparent',
17250
+ [vars$5.overlay.backdropPointerEvents]: 'all',
17251
+ [vars$5.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
17252
+ [vars$5.overlay.outlineWidth]: '0',
17253
+ [vars$5.overlay.outlineColor]: 'transparent',
17254
+ [vars$5.overlay.outlineStyle]: 'none',
17255
+ [vars$5.overlay.padding]: '0',
17256
+
17257
+ [vars$5.rtlInputDirection]: 'ltr',
17258
+ [vars$5.rtlInputAlignment]: 'right',
17167
17259
  };
17168
17260
 
17169
17261
  var dateField$1 = /*#__PURE__*/Object.freeze({
17170
17262
  __proto__: null,
17171
17263
  default: dateField,
17172
- vars: vars$4
17264
+ vars: vars$5
17173
17265
  });
17174
17266
 
17175
17267
  const globalRefs$2 = getThemeRefs(globals);
@@ -17178,7 +17270,7 @@ const compVars = ListClass.cssVarList;
17178
17270
 
17179
17271
  const [helperTheme, helperRefs, helperVars] = createHelperVars(
17180
17272
  { shadowColor: '#00000020' },
17181
- componentName$2
17273
+ componentName$3
17182
17274
  );
17183
17275
 
17184
17276
  const { shadowColor } = helperRefs;
@@ -17218,7 +17310,7 @@ const list$1 = {
17218
17310
  },
17219
17311
  };
17220
17312
 
17221
- const vars$3 = {
17313
+ const vars$4 = {
17222
17314
  ...compVars,
17223
17315
  ...helperVars,
17224
17316
  };
@@ -17226,78 +17318,78 @@ const vars$3 = {
17226
17318
  var list$2 = /*#__PURE__*/Object.freeze({
17227
17319
  __proto__: null,
17228
17320
  default: list$1,
17229
- vars: vars$3
17321
+ vars: vars$4
17230
17322
  });
17231
17323
 
17232
17324
  const globalRefs$1 = getThemeRefs(globals);
17233
17325
 
17234
- const vars$2 = ListItemClass.cssVarList;
17326
+ const vars$3 = ListItemClass.cssVarList;
17235
17327
 
17236
17328
  const list = {
17237
- [vars$2.backgroundColor]: globalRefs$1.colors.surface.main,
17238
- [vars$2.padding]: globalRefs$1.spacing.lg,
17239
- [vars$2.gap]: globalRefs$1.spacing.md,
17240
- [vars$2.borderStyle]: 'solid',
17241
- [vars$2.borderWidth]: globalRefs$1.border.xs,
17242
- [vars$2.borderColor]: globalRefs$1.colors.surface.main,
17243
- [vars$2.borderRadius]: globalRefs$1.radius.sm,
17244
- [vars$2.cursor]: 'pointer',
17245
- [vars$2.alignItems]: 'center',
17246
- [vars$2.flexDirection]: 'row',
17247
- [vars$2.transition]: 'border-color 0.2s, background-color 0.2s',
17329
+ [vars$3.backgroundColor]: globalRefs$1.colors.surface.main,
17330
+ [vars$3.padding]: globalRefs$1.spacing.lg,
17331
+ [vars$3.gap]: globalRefs$1.spacing.md,
17332
+ [vars$3.borderStyle]: 'solid',
17333
+ [vars$3.borderWidth]: globalRefs$1.border.xs,
17334
+ [vars$3.borderColor]: globalRefs$1.colors.surface.main,
17335
+ [vars$3.borderRadius]: globalRefs$1.radius.sm,
17336
+ [vars$3.cursor]: 'pointer',
17337
+ [vars$3.alignItems]: 'center',
17338
+ [vars$3.flexDirection]: 'row',
17339
+ [vars$3.transition]: 'border-color 0.2s, background-color 0.2s',
17248
17340
 
17249
17341
  variant: {
17250
17342
  tile: {
17251
- [vars$2.alignItems]: 'flex-start',
17252
- [vars$2.flexDirection]: 'column',
17253
- [vars$2.borderColor]: globalRefs$1.colors.surface.light,
17343
+ [vars$3.alignItems]: 'flex-start',
17344
+ [vars$3.flexDirection]: 'column',
17345
+ [vars$3.borderColor]: globalRefs$1.colors.surface.light,
17254
17346
  },
17255
17347
  },
17256
17348
 
17257
17349
  _hover: {
17258
- [vars$2.backgroundColor]: globalRefs$1.colors.surface.highlight,
17350
+ [vars$3.backgroundColor]: globalRefs$1.colors.surface.highlight,
17259
17351
  },
17260
17352
 
17261
17353
  _active: {
17262
- [vars$2.backgroundColor]: globalRefs$1.colors.surface.main,
17263
- [vars$2.borderColor]: globalRefs$1.colors.primary.light,
17264
- [vars$2.outline]: `1px solid ${globalRefs$1.colors.primary.light}`,
17354
+ [vars$3.backgroundColor]: globalRefs$1.colors.surface.main,
17355
+ [vars$3.borderColor]: globalRefs$1.colors.primary.light,
17356
+ [vars$3.outline]: `1px solid ${globalRefs$1.colors.primary.light}`,
17265
17357
  },
17266
17358
  };
17267
17359
 
17268
17360
  var listItem = /*#__PURE__*/Object.freeze({
17269
17361
  __proto__: null,
17270
17362
  default: list,
17271
- vars: vars$2
17363
+ vars: vars$3
17272
17364
  });
17273
17365
 
17274
- const vars$1 = AppsListClass.cssVarList;
17366
+ const vars$2 = AppsListClass.cssVarList;
17275
17367
  const globalRefs = getThemeRefs(globals);
17276
17368
 
17277
17369
  const defaultHeight = '400px';
17278
17370
 
17279
17371
  const appsList = {
17280
- [vars$1.itemsFontWeight]: 'normal',
17281
- [vars$1.itemsTextAlign]: 'start',
17282
- [vars$1.hostDirection]: globalRefs.direction,
17283
- [vars$1.maxHeight]: defaultHeight,
17372
+ [vars$2.itemsFontWeight]: 'normal',
17373
+ [vars$2.itemsTextAlign]: 'start',
17374
+ [vars$2.hostDirection]: globalRefs.direction,
17375
+ [vars$2.maxHeight]: defaultHeight,
17284
17376
 
17285
17377
  _empty: {
17286
- [vars$1.minHeight]: defaultHeight,
17378
+ [vars$2.minHeight]: defaultHeight,
17287
17379
  },
17288
17380
 
17289
17381
  size: {
17290
17382
  xs: {
17291
- [vars$1.itemsFontSize]: '14px',
17383
+ [vars$2.itemsFontSize]: '14px',
17292
17384
  },
17293
17385
  sm: {
17294
- [vars$1.itemsFontSize]: '14px',
17386
+ [vars$2.itemsFontSize]: '14px',
17295
17387
  },
17296
17388
  md: {
17297
- [vars$1.itemsFontSize]: '16px',
17389
+ [vars$2.itemsFontSize]: '16px',
17298
17390
  },
17299
17391
  lg: {
17300
- [vars$1.itemsFontSize]: '20px',
17392
+ [vars$2.itemsFontSize]: '20px',
17301
17393
  },
17302
17394
  },
17303
17395
  };
@@ -17305,6 +17397,23 @@ const appsList = {
17305
17397
  var appsList$1 = /*#__PURE__*/Object.freeze({
17306
17398
  __proto__: null,
17307
17399
  default: appsList,
17400
+ vars: vars$2
17401
+ });
17402
+
17403
+ const vars$1 = ScopesListClass.cssVarList;
17404
+
17405
+ const scopesList = {
17406
+ [vars$1.requiredInputBorderColor]: theme$1._disabled[vars$N.borderColor],
17407
+ [vars$1.requiredInputValueTextColor]: theme$1._disabled[vars$N.valueTextColor],
17408
+ [vars$1.hostWidth]: '280px',
17409
+ _fullWidth: {
17410
+ [vars$1.hostWidth]: '100%',
17411
+ },
17412
+ };
17413
+
17414
+ var scopesList$1 = /*#__PURE__*/Object.freeze({
17415
+ __proto__: null,
17416
+ default: scopesList,
17308
17417
  vars: vars$1
17309
17418
  });
17310
17419
 
@@ -17358,6 +17467,7 @@ const components = {
17358
17467
  list: list$2,
17359
17468
  listItem,
17360
17469
  appsList: appsList$1,
17470
+ scopesList: scopesList$1,
17361
17471
  };
17362
17472
 
17363
17473
  const theme = Object.keys(components).reduce(
@@ -17370,7 +17480,7 @@ const vars = Object.keys(components).reduce(
17370
17480
  );
17371
17481
 
17372
17482
  const defaultTheme = { globals, components: theme };
17373
- const themeVars = { globals: vars$O, components: vars };
17483
+ const themeVars = { globals: vars$P, components: vars };
17374
17484
 
17375
17485
  const colors = {
17376
17486
  surface: {
@@ -17419,5 +17529,5 @@ const darkTheme = merge({}, defaultTheme, {
17419
17529
  },
17420
17530
  });
17421
17531
 
17422
- 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, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
17532
+ export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
17423
17533
  //# sourceMappingURL=index.esm.js.map