@descope/web-components-ui 1.0.389 → 1.0.391

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. package/dist/cjs/index.cjs.js +1448 -1279
  2. package/dist/cjs/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +1415 -1245
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/umd/4619.js +1 -1
  6. package/dist/umd/DescopeDev.js +1 -1
  7. package/dist/umd/button-selection-group-fields-descope-button-multi-selection-group-index-js.js +1 -1
  8. package/dist/umd/button-selection-group-fields-descope-button-selection-group-index-js.js +1 -1
  9. package/dist/umd/button-selection-group-fields-descope-button-selection-group-item-index-js.js +1 -1
  10. package/dist/umd/descope-button-index-js.js +1 -1
  11. package/dist/umd/descope-date-field-descope-calendar-index-js.js +1 -1
  12. package/dist/umd/descope-email-field-index-js.js +1 -1
  13. package/dist/umd/descope-grid-descope-grid-custom-column-index-js.js +1 -1
  14. package/dist/umd/descope-grid-descope-grid-item-details-column-index-js.js +3 -3
  15. package/dist/umd/descope-grid-descope-grid-text-column-index-js.js +1 -1
  16. package/dist/umd/descope-icon-index-js.js +1 -1
  17. package/dist/umd/descope-logo-index-js.js +1 -1
  18. package/dist/umd/descope-third-party-app-logo-index-js.js +1 -0
  19. package/dist/umd/descope-upload-file-index-js.js +1 -1
  20. package/dist/umd/descope-user-attribute-index-js.js +1 -1
  21. package/dist/umd/descope-user-auth-method-index-js.js +1 -1
  22. package/dist/umd/index.js +1 -1
  23. package/dist/umd/mapping-fields-descope-mappings-field-index-js.js +1 -1
  24. package/package.json +1 -1
  25. package/src/components/descope-email-field/EmailFieldClass.js +1 -1
  26. package/src/components/descope-icon/helpers.js +2 -2
  27. package/src/components/descope-third-party-app-logo/ThirdPartyAppLogoClass.js +102 -0
  28. package/src/components/descope-third-party-app-logo/arrows.svg +4 -0
  29. package/src/components/descope-third-party-app-logo/index.js +7 -0
  30. package/src/helpers/index.js +8 -2
  31. package/src/index.cjs.js +1 -0
  32. package/src/index.js +1 -0
  33. package/src/mixins/createStyleMixin/helpers.js +32 -6
  34. package/src/mixins/createStyleMixin/index.js +1 -1
  35. package/src/theme/components/index.js +2 -0
  36. package/src/theme/components/thirdPartyAppLogo.js +36 -0
package/dist/index.esm.js CHANGED
@@ -35,6 +35,14 @@ const kebabCase = (str) =>
35
35
 
36
36
  const kebabCaseJoin = (...args) => kebabCase(args.filter((arg) => !!arg).join('-'));
37
37
 
38
+ const upperFirst = (str) => str.charAt(0).toUpperCase() + str.slice(1);
39
+
40
+ const camelCaseJoin = (...args) =>
41
+ args
42
+ .filter(Boolean)
43
+ .map((arg, index) => (index === 0 ? arg : upperFirst(arg)))
44
+ .join('');
45
+
38
46
  const compose =
39
47
  (...fns) =>
40
48
  (val) =>
@@ -277,8 +285,17 @@ const normalizeConfig = (attr, config) => {
277
285
  return [{ ...defaultMapping, ...config }];
278
286
  };
279
287
 
288
+ const getFallbackVarName = (origVarName, suffix = 'fallback') => kebabCaseJoin(origVarName, suffix);
289
+
280
290
  const createStyle = (componentName, baseSelector, mappings) => {
281
291
  const style = new StyleBuilder();
292
+ const createFallbackVar = (fallback, origVarName) => {
293
+ if (!fallback) return '';
294
+ if (typeof fallback === 'string') return fallback;
295
+
296
+ const fallbackVarName = getFallbackVarName(origVarName, fallback?.suffix);
297
+ return createCssVar(fallbackVarName, createFallbackVar(fallback.fallback, fallbackVarName));
298
+ };
282
299
 
283
300
  Object.keys(mappings).forEach((attr) => {
284
301
  const attrConfig = normalizeConfig(attr, mappings[attr]);
@@ -287,10 +304,11 @@ const createStyle = (componentName, baseSelector, mappings) => {
287
304
 
288
305
  attrConfig.forEach(
289
306
  ({ selector: relativeSelectorOrSelectorFn, property, important, fallback }) => {
307
+ const fallbackValue = createFallbackVar(fallback, cssVarName);
290
308
  style.add(
291
309
  createCssSelector(baseSelector, relativeSelectorOrSelectorFn),
292
310
  isFunction(property) ? property() : property,
293
- createCssVar(cssVarName, fallback) + (important ? '!important' : '')
311
+ createCssVar(cssVarName, fallbackValue) + (important ? '!important' : '')
294
312
  );
295
313
  }
296
314
  );
@@ -299,11 +317,27 @@ const createStyle = (componentName, baseSelector, mappings) => {
299
317
  return style.toString();
300
318
  };
301
319
 
320
+ const getFallbackVarsNames = (attr, origVarName, { fallback }) => {
321
+ if (!fallback) return {};
322
+
323
+ const fallbackVarName = getFallbackVarName(origVarName, fallback.suffix);
324
+ const fallbackAttrName = camelCaseJoin(attr, fallback.suffix || 'fallback');
325
+ return {
326
+ [fallbackAttrName]: fallbackVarName,
327
+ ...getFallbackVarsNames(fallbackAttrName, fallbackVarName, fallback),
328
+ };
329
+ };
330
+
302
331
  const createCssVarsList = (componentName, mappings) =>
303
- Object.keys(mappings).reduce(
304
- (acc, attr) => Object.assign(acc, { [attr]: getCssVarName(componentName, attr) }),
305
- {}
306
- );
332
+ Object.keys(mappings).reduce((acc, attr) => {
333
+ const varName = getCssVarName(componentName, attr);
334
+
335
+ return Object.assign(
336
+ acc,
337
+ { [attr]: varName },
338
+ getFallbackVarsNames(attr, varName, mappings[attr])
339
+ );
340
+ }, {});
307
341
 
308
342
  // on some cases we need a selector to be more specific than another
309
343
  // for this we have this fn that generate a class selector multiple times
@@ -360,7 +394,7 @@ const createStyleMixin =
360
394
  this.#baseSelector = baseSelector ?? this.baseSelector;
361
395
  this.#getRootElement = getRootElement;
362
396
 
363
- this.#styleAttributes = Object.keys(mappings).map((key) =>
397
+ this.#styleAttributes = Object.keys(CustomStyleMixinClass.cssVarList).map((key) =>
364
398
  kebabCaseJoin(STYLE_OVERRIDE_ATTR_PREFIX, componentNameSuffix, key)
365
399
  );
366
400
  }
@@ -1704,8 +1738,8 @@ const createIcon = async (src) => {
1704
1738
  ele = createImgEle(src);
1705
1739
  }
1706
1740
 
1707
- ele.style.setProperty('width', '100%');
1708
- ele.style.setProperty('height', '100%');
1741
+ ele.style.setProperty('max-width', '100%');
1742
+ ele.style.setProperty('max-height', '100%');
1709
1743
 
1710
1744
  return ele;
1711
1745
  } catch {
@@ -1715,9 +1749,9 @@ const createIcon = async (src) => {
1715
1749
 
1716
1750
  /* eslint-disable no-use-before-define */
1717
1751
 
1718
- const componentName$11 = getComponentName('icon');
1752
+ const componentName$12 = getComponentName('icon');
1719
1753
 
1720
- class RawIcon extends createBaseClass({ componentName: componentName$11, baseSelector: 'slot' }) {
1754
+ class RawIcon extends createBaseClass({ componentName: componentName$12, baseSelector: 'slot' }) {
1721
1755
  static get observedAttributes() {
1722
1756
  return ['src'];
1723
1757
  }
@@ -1802,7 +1836,7 @@ const clickableMixin = (superclass) =>
1802
1836
  }
1803
1837
  };
1804
1838
 
1805
- const componentName$10 = getComponentName('button');
1839
+ const componentName$11 = getComponentName('button');
1806
1840
 
1807
1841
  const resetStyles = `
1808
1842
  :host {
@@ -1918,7 +1952,7 @@ const ButtonClass = compose(
1918
1952
  }
1919
1953
  `,
1920
1954
  excludeAttrsSync: ['tabindex'],
1921
- componentName: componentName$10,
1955
+ componentName: componentName$11,
1922
1956
  })
1923
1957
  );
1924
1958
 
@@ -1955,7 +1989,7 @@ loadingIndicatorStyles = `
1955
1989
  }
1956
1990
  `;
1957
1991
 
1958
- customElements.define(componentName$10, ButtonClass);
1992
+ customElements.define(componentName$11, ButtonClass);
1959
1993
 
1960
1994
  const createBaseInputClass = (...args) =>
1961
1995
  compose(
@@ -1965,11 +1999,11 @@ const createBaseInputClass = (...args) =>
1965
1999
  inputEventsDispatchingMixin
1966
2000
  )(createBaseClass(...args));
1967
2001
 
1968
- const componentName$$ = getComponentName('boolean-field-internal');
2002
+ const componentName$10 = getComponentName('boolean-field-internal');
1969
2003
 
1970
2004
  const forwardAttributes$1 = ['disabled', 'label', 'invalid', 'readonly'];
1971
2005
 
1972
- const BaseInputClass$a = createBaseInputClass({ componentName: componentName$$, baseSelector: 'div' });
2006
+ const BaseInputClass$a = createBaseInputClass({ componentName: componentName$10, baseSelector: 'div' });
1973
2007
 
1974
2008
  class BooleanInputInternal extends BaseInputClass$a {
1975
2009
  static get observedAttributes() {
@@ -2045,14 +2079,14 @@ const booleanFieldMixin = (superclass) =>
2045
2079
 
2046
2080
  const template = document.createElement('template');
2047
2081
  template.innerHTML = `
2048
- <${componentName$$}
2082
+ <${componentName$10}
2049
2083
  tabindex="-1"
2050
2084
  slot="input"
2051
- ></${componentName$$}>
2085
+ ></${componentName$10}>
2052
2086
  `;
2053
2087
 
2054
2088
  this.baseElement.appendChild(template.content.cloneNode(true));
2055
- this.inputElement = this.shadowRoot.querySelector(componentName$$);
2089
+ this.inputElement = this.shadowRoot.querySelector(componentName$10);
2056
2090
  this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
2057
2091
 
2058
2092
  forwardAttrs(this, this.inputElement, {
@@ -2266,7 +2300,7 @@ descope-boolean-field-internal {
2266
2300
  }
2267
2301
  `;
2268
2302
 
2269
- const componentName$_ = getComponentName('checkbox');
2303
+ const componentName$$ = getComponentName('checkbox');
2270
2304
 
2271
2305
  const {
2272
2306
  host: host$n,
@@ -2378,15 +2412,15 @@ const CheckboxClass = compose(
2378
2412
  }
2379
2413
  `,
2380
2414
  excludeAttrsSync: ['label', 'tabindex'],
2381
- componentName: componentName$_,
2415
+ componentName: componentName$$,
2382
2416
  })
2383
2417
  );
2384
2418
 
2385
- customElements.define(componentName$$, BooleanInputInternal);
2419
+ customElements.define(componentName$10, BooleanInputInternal);
2386
2420
 
2387
- customElements.define(componentName$_, CheckboxClass);
2421
+ customElements.define(componentName$$, CheckboxClass);
2388
2422
 
2389
- const componentName$Z = getComponentName('switch-toggle');
2423
+ const componentName$_ = getComponentName('switch-toggle');
2390
2424
 
2391
2425
  const {
2392
2426
  host: host$m,
@@ -2518,17 +2552,17 @@ const SwitchToggleClass = compose(
2518
2552
  }
2519
2553
  `,
2520
2554
  excludeAttrsSync: ['label', 'tabindex'],
2521
- componentName: componentName$Z,
2555
+ componentName: componentName$_,
2522
2556
  })
2523
2557
  );
2524
2558
 
2525
- customElements.define(componentName$Z, SwitchToggleClass);
2559
+ customElements.define(componentName$_, SwitchToggleClass);
2526
2560
 
2527
- const componentName$Y = getComponentName('loader-linear');
2561
+ const componentName$Z = getComponentName('loader-linear');
2528
2562
 
2529
- class RawLoaderLinear extends createBaseClass({ componentName: componentName$Y, baseSelector: ':host > div' }) {
2563
+ class RawLoaderLinear extends createBaseClass({ componentName: componentName$Z, baseSelector: ':host > div' }) {
2530
2564
  static get componentName() {
2531
- return componentName$Y;
2565
+ return componentName$Z;
2532
2566
  }
2533
2567
 
2534
2568
  constructor() {
@@ -2589,11 +2623,11 @@ const LoaderLinearClass = compose(
2589
2623
  componentNameValidationMixin
2590
2624
  )(RawLoaderLinear);
2591
2625
 
2592
- customElements.define(componentName$Y, LoaderLinearClass);
2626
+ customElements.define(componentName$Z, LoaderLinearClass);
2593
2627
 
2594
- const componentName$X = getComponentName('loader-radial');
2628
+ const componentName$Y = getComponentName('loader-radial');
2595
2629
 
2596
- class RawLoaderRadial extends createBaseClass({ componentName: componentName$X, baseSelector: ':host > div' }) {
2630
+ class RawLoaderRadial extends createBaseClass({ componentName: componentName$Y, baseSelector: ':host > div' }) {
2597
2631
  constructor() {
2598
2632
  super();
2599
2633
 
@@ -2637,11 +2671,11 @@ const LoaderRadialClass = compose(
2637
2671
  componentNameValidationMixin
2638
2672
  )(RawLoaderRadial);
2639
2673
 
2640
- customElements.define(componentName$X, LoaderRadialClass);
2674
+ customElements.define(componentName$Y, LoaderRadialClass);
2641
2675
 
2642
- const componentName$W = getComponentName('container');
2676
+ const componentName$X = getComponentName('container');
2643
2677
 
2644
- class RawContainer extends createBaseClass({ componentName: componentName$W, baseSelector: 'slot' }) {
2678
+ class RawContainer extends createBaseClass({ componentName: componentName$X, baseSelector: 'slot' }) {
2645
2679
  constructor() {
2646
2680
  super();
2647
2681
 
@@ -2694,9 +2728,9 @@ const ContainerClass = compose(
2694
2728
  componentNameValidationMixin
2695
2729
  )(RawContainer);
2696
2730
 
2697
- customElements.define(componentName$W, ContainerClass);
2731
+ customElements.define(componentName$X, ContainerClass);
2698
2732
 
2699
- const componentName$V = getComponentName('combo-box');
2733
+ const componentName$W = getComponentName('combo-box');
2700
2734
 
2701
2735
  const ComboBoxMixin = (superclass) =>
2702
2736
  class ComboBoxMixinClass extends superclass {
@@ -3141,14 +3175,14 @@ const ComboBoxClass = compose(
3141
3175
  // and reset items to an empty array, and opening the list box with no items
3142
3176
  // to display.
3143
3177
  excludeAttrsSync: ['tabindex', 'size', 'data'],
3144
- componentName: componentName$V,
3178
+ componentName: componentName$W,
3145
3179
  includeForwardProps: ['items', 'renderer', 'selectedItem'],
3146
3180
  })
3147
3181
  );
3148
3182
 
3149
- customElements.define(componentName$V, ComboBoxClass);
3183
+ customElements.define(componentName$W, ComboBoxClass);
3150
3184
 
3151
- customElements.define(componentName$11, IconClass);
3185
+ customElements.define(componentName$12, IconClass);
3152
3186
 
3153
3187
  const SUPPORTED_FORMATS = ['MM/DD/YYYY', 'DD/MM/YYYY', 'YYYY/MM/DD'];
3154
3188
 
@@ -3465,7 +3499,7 @@ const nextMonth = (timestamp) => {
3465
3499
  return date;
3466
3500
  };
3467
3501
 
3468
- const componentName$U = getComponentName('calendar');
3502
+ const componentName$V = getComponentName('calendar');
3469
3503
 
3470
3504
  const observedAttrs$2 = [
3471
3505
  'initial-value',
@@ -3482,7 +3516,7 @@ const observedAttrs$2 = [
3482
3516
 
3483
3517
  const calendarUiAttrs = ['calendar-label-submit', 'calendar-label-cancel'];
3484
3518
 
3485
- const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$U, baseSelector: 'div' });
3519
+ const BaseInputClass$9 = createBaseInputClass({ componentName: componentName$V, baseSelector: 'div' });
3486
3520
 
3487
3521
  class RawCalendar extends BaseInputClass$9 {
3488
3522
  static get observedAttributes() {
@@ -4095,7 +4129,7 @@ const CalendarClass = compose(
4095
4129
  componentNameValidationMixin
4096
4130
  )(RawCalendar);
4097
4131
 
4098
- customElements.define(componentName$U, CalendarClass);
4132
+ customElements.define(componentName$V, CalendarClass);
4099
4133
 
4100
4134
  const {
4101
4135
  host: host$j,
@@ -4243,7 +4277,7 @@ var textFieldMappings = {
4243
4277
  inputIconColor: { ...inputIcon, property: 'color' },
4244
4278
  };
4245
4279
 
4246
- const componentName$T = getComponentName('text-field');
4280
+ const componentName$U = getComponentName('text-field');
4247
4281
 
4248
4282
  const observedAttrs$1 = ['type', 'label-type', 'copy-to-clipboard'];
4249
4283
 
@@ -4365,11 +4399,11 @@ const TextFieldClass = compose(
4365
4399
  }
4366
4400
  `,
4367
4401
  excludeAttrsSync: ['tabindex'],
4368
- componentName: componentName$T,
4402
+ componentName: componentName$U,
4369
4403
  })
4370
4404
  );
4371
4405
 
4372
- customElements.define(componentName$T, TextFieldClass);
4406
+ customElements.define(componentName$U, TextFieldClass);
4373
4407
 
4374
4408
  const patterns = {
4375
4409
  MM: '(0?[1-9]|1[0-2])',
@@ -4502,12 +4536,12 @@ class DateCounter {
4502
4536
  }
4503
4537
  }
4504
4538
 
4505
- const componentName$S = getComponentName('date-field');
4539
+ const componentName$T = getComponentName('date-field');
4506
4540
 
4507
4541
  // we set baseSelector to `vaadin-popover` as a temporary hack, so our portalMixin will
4508
4542
  // be able to process this component's overlay. The whole process needs refactoring as soon as possible.
4509
4543
  const BASE_SELECTOR = 'vaadin-popover';
4510
- const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$S, baseSelector: BASE_SELECTOR });
4544
+ const BaseInputClass$8 = createBaseInputClass({ componentName: componentName$T, baseSelector: BASE_SELECTOR });
4511
4545
 
4512
4546
  const dateFieldAttrs = ['format', 'opened', 'initial-value', 'readonly'];
4513
4547
  const calendarAttrs = ['years-range', 'calendar-months', 'calendar-weekdays'];
@@ -5178,11 +5212,11 @@ const DateFieldClass = compose(
5178
5212
  componentNameValidationMixin
5179
5213
  )(RawDateFieldClass);
5180
5214
 
5181
- customElements.define(componentName$S, DateFieldClass);
5215
+ customElements.define(componentName$T, DateFieldClass);
5182
5216
 
5183
- const componentName$R = getComponentName('text');
5217
+ const componentName$S = getComponentName('text');
5184
5218
 
5185
- class RawText extends createBaseClass({ componentName: componentName$R, baseSelector: ':host > slot' }) {
5219
+ class RawText extends createBaseClass({ componentName: componentName$S, baseSelector: ':host > slot' }) {
5186
5220
  constructor() {
5187
5221
  super();
5188
5222
 
@@ -5239,8 +5273,8 @@ const TextClass = compose(
5239
5273
  componentNameValidationMixin
5240
5274
  )(RawText);
5241
5275
 
5242
- const componentName$Q = getComponentName('divider');
5243
- class RawDivider extends createBaseClass({ componentName: componentName$Q, baseSelector: ':host > div' }) {
5276
+ const componentName$R = getComponentName('divider');
5277
+ class RawDivider extends createBaseClass({ componentName: componentName$R, baseSelector: ':host > div' }) {
5244
5278
  constructor() {
5245
5279
  super();
5246
5280
 
@@ -5339,11 +5373,11 @@ const DividerClass = compose(
5339
5373
  componentNameValidationMixin
5340
5374
  )(RawDivider);
5341
5375
 
5342
- customElements.define(componentName$R, TextClass);
5376
+ customElements.define(componentName$S, TextClass);
5343
5377
 
5344
- customElements.define(componentName$Q, DividerClass);
5378
+ customElements.define(componentName$R, DividerClass);
5345
5379
 
5346
- const componentName$P = getComponentName('email-field');
5380
+ const componentName$Q = getComponentName('email-field');
5347
5381
 
5348
5382
  const defaultPattern = "^[\\w\\.\\%\\+\\-']+@[\\w\\.\\-]+\\.[A-Za-z]{2,}$";
5349
5383
  const defaultAutocomplete = 'username';
@@ -5370,7 +5404,7 @@ const EmailFieldClass = compose(
5370
5404
  }),
5371
5405
  draggableMixin,
5372
5406
  externalInputMixin({
5373
- inputType: 'text',
5407
+ inputType: 'email',
5374
5408
  autocompleteType: 'username',
5375
5409
  includeAttrs: ['disabled', 'readonly', 'pattern'],
5376
5410
  }),
@@ -5411,15 +5445,15 @@ const EmailFieldClass = compose(
5411
5445
  }
5412
5446
  `,
5413
5447
  excludeAttrsSync: ['tabindex'],
5414
- componentName: componentName$P,
5448
+ componentName: componentName$Q,
5415
5449
  })
5416
5450
  );
5417
5451
 
5418
- customElements.define(componentName$P, EmailFieldClass);
5452
+ customElements.define(componentName$Q, EmailFieldClass);
5419
5453
 
5420
- const componentName$O = getComponentName('link');
5454
+ const componentName$P = getComponentName('link');
5421
5455
 
5422
- class RawLink extends createBaseClass({ componentName: componentName$O, baseSelector: ':host a' }) {
5456
+ class RawLink extends createBaseClass({ componentName: componentName$P, baseSelector: ':host a' }) {
5423
5457
  constructor() {
5424
5458
  super();
5425
5459
 
@@ -5483,7 +5517,7 @@ const LinkClass = compose(
5483
5517
  componentNameValidationMixin
5484
5518
  )(RawLink);
5485
5519
 
5486
- customElements.define(componentName$O, LinkClass);
5520
+ customElements.define(componentName$P, LinkClass);
5487
5521
 
5488
5522
  const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) => {
5489
5523
  let style;
@@ -5535,37 +5569,37 @@ const createCssVarImageClass = ({ componentName, varName, fallbackVarName }) =>
5535
5569
  return CssVarImageClass;
5536
5570
  };
5537
5571
 
5538
- const componentName$N = getComponentName('logo');
5572
+ const componentName$O = getComponentName('logo');
5539
5573
 
5540
5574
  const LogoClass = createCssVarImageClass({
5541
- componentName: componentName$N,
5575
+ componentName: componentName$O,
5542
5576
  varName: 'url',
5543
5577
  fallbackVarName: 'fallbackUrl',
5544
5578
  });
5545
5579
 
5546
- customElements.define(componentName$N, LogoClass);
5580
+ customElements.define(componentName$O, LogoClass);
5547
5581
 
5548
- const componentName$M = getComponentName('totp-image');
5582
+ const componentName$N = getComponentName('totp-image');
5549
5583
 
5550
5584
  const TotpImageClass = createCssVarImageClass({
5551
- componentName: componentName$M,
5585
+ componentName: componentName$N,
5552
5586
  varName: 'url',
5553
5587
  fallbackVarName: 'fallbackUrl',
5554
5588
  });
5555
5589
 
5556
- customElements.define(componentName$M, TotpImageClass);
5590
+ customElements.define(componentName$N, TotpImageClass);
5557
5591
 
5558
- const componentName$L = getComponentName('notp-image');
5592
+ const componentName$M = getComponentName('notp-image');
5559
5593
 
5560
5594
  const NotpImageClass = createCssVarImageClass({
5561
- componentName: componentName$L,
5595
+ componentName: componentName$M,
5562
5596
  varName: 'url',
5563
5597
  fallbackVarName: 'fallbackUrl',
5564
5598
  });
5565
5599
 
5566
- customElements.define(componentName$L, NotpImageClass);
5600
+ customElements.define(componentName$M, NotpImageClass);
5567
5601
 
5568
- const componentName$K = getComponentName('number-field');
5602
+ const componentName$L = getComponentName('number-field');
5569
5603
 
5570
5604
  const NumberFieldClass = compose(
5571
5605
  createStyleMixin({
@@ -5599,11 +5633,11 @@ const NumberFieldClass = compose(
5599
5633
  }
5600
5634
  `,
5601
5635
  excludeAttrsSync: ['tabindex'],
5602
- componentName: componentName$K,
5636
+ componentName: componentName$L,
5603
5637
  })
5604
5638
  );
5605
5639
 
5606
- customElements.define(componentName$K, NumberFieldClass);
5640
+ customElements.define(componentName$L, NumberFieldClass);
5607
5641
 
5608
5642
  const INPUT_MASK_TEXT_PROP = '--descope-input-mask-content';
5609
5643
  const INPUT_MASK_DISPLAY_PROP = '--descope-input-mask-display';
@@ -5649,13 +5683,13 @@ const toggleMaskVisibility = (input, value) => {
5649
5683
 
5650
5684
  /* eslint-disable no-param-reassign */
5651
5685
 
5652
- const componentName$J = getComponentName('passcode-internal');
5686
+ const componentName$K = getComponentName('passcode-internal');
5653
5687
 
5654
5688
  const observedAttributes$5 = ['digits', 'loading'];
5655
5689
 
5656
5690
  const forwardAttributes = ['disabled', 'bordered', 'size', 'invalid', 'readonly'];
5657
5691
 
5658
- const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$J, baseSelector: 'div' });
5692
+ const BaseInputClass$7 = createBaseInputClass({ componentName: componentName$K, baseSelector: 'div' });
5659
5693
 
5660
5694
  class PasscodeInternal extends BaseInputClass$7 {
5661
5695
  static get observedAttributes() {
@@ -5873,7 +5907,7 @@ class PasscodeInternal extends BaseInputClass$7 {
5873
5907
  }
5874
5908
  }
5875
5909
 
5876
- const componentName$I = getComponentName('passcode');
5910
+ const componentName$J = getComponentName('passcode');
5877
5911
 
5878
5912
  const observedAttributes$4 = ['digits'];
5879
5913
 
@@ -5892,17 +5926,17 @@ const customMixin$a = (superclass) =>
5892
5926
  const template = document.createElement('template');
5893
5927
 
5894
5928
  template.innerHTML = `
5895
- <${componentName$J}
5929
+ <${componentName$K}
5896
5930
  bordered="true"
5897
5931
  name="code"
5898
5932
  tabindex="-1"
5899
5933
  slot="input"
5900
- ><slot></slot></${componentName$J}>
5934
+ ><slot></slot></${componentName$K}>
5901
5935
  `;
5902
5936
 
5903
5937
  this.baseElement.appendChild(template.content.cloneNode(true));
5904
5938
 
5905
- this.inputElement = this.shadowRoot.querySelector(componentName$J);
5939
+ this.inputElement = this.shadowRoot.querySelector(componentName$K);
5906
5940
 
5907
5941
  forwardAttrs(this, this.inputElement, { includeAttrs: ['digits', 'size', 'loading'] });
5908
5942
  }
@@ -6054,13 +6088,13 @@ const PasscodeClass = compose(
6054
6088
  ${resetInputCursor('vaadin-text-field')}
6055
6089
  `,
6056
6090
  excludeAttrsSync: ['tabindex'],
6057
- componentName: componentName$I,
6091
+ componentName: componentName$J,
6058
6092
  })
6059
6093
  );
6060
6094
 
6061
- customElements.define(componentName$J, PasscodeInternal);
6095
+ customElements.define(componentName$K, PasscodeInternal);
6062
6096
 
6063
- customElements.define(componentName$I, PasscodeClass);
6097
+ customElements.define(componentName$J, PasscodeClass);
6064
6098
 
6065
6099
  const passwordDraggableMixin = (superclass) =>
6066
6100
  class PasswordDraggableMixinClass extends superclass {
@@ -6101,7 +6135,7 @@ const passwordDraggableMixin = (superclass) =>
6101
6135
  }
6102
6136
  };
6103
6137
 
6104
- const componentName$H = getComponentName('password');
6138
+ const componentName$I = getComponentName('password');
6105
6139
 
6106
6140
  const customMixin$9 = (superclass) =>
6107
6141
  class PasswordFieldMixinClass extends superclass {
@@ -6376,11 +6410,11 @@ const PasswordClass = compose(
6376
6410
  }
6377
6411
  `,
6378
6412
  excludeAttrsSync: ['tabindex'],
6379
- componentName: componentName$H,
6413
+ componentName: componentName$I,
6380
6414
  })
6381
6415
  );
6382
6416
 
6383
- customElements.define(componentName$H, PasswordClass);
6417
+ customElements.define(componentName$I, PasswordClass);
6384
6418
 
6385
6419
  const disableRules = [
6386
6420
  'blockquote',
@@ -6406,9 +6440,9 @@ const decodeHTML = (html) => {
6406
6440
  /* eslint-disable no-param-reassign */
6407
6441
 
6408
6442
 
6409
- const componentName$G = getComponentName('enriched-text');
6443
+ const componentName$H = getComponentName('enriched-text');
6410
6444
 
6411
- class EnrichedText extends createBaseClass({ componentName: componentName$G, baseSelector: ':host > div' }) {
6445
+ class EnrichedText extends createBaseClass({ componentName: componentName$H, baseSelector: ':host > div' }) {
6412
6446
  #origLinkRenderer;
6413
6447
 
6414
6448
  #origEmRenderer;
@@ -6604,9 +6638,9 @@ const EnrichedTextClass = compose(
6604
6638
  componentNameValidationMixin
6605
6639
  )(EnrichedText);
6606
6640
 
6607
- customElements.define(componentName$G, EnrichedTextClass);
6641
+ customElements.define(componentName$H, EnrichedTextClass);
6608
6642
 
6609
- const componentName$F = getComponentName('text-area');
6643
+ const componentName$G = getComponentName('text-area');
6610
6644
 
6611
6645
  const {
6612
6646
  host: host$d,
@@ -6682,17 +6716,17 @@ const TextAreaClass = compose(
6682
6716
  ${resetInputCursor('vaadin-text-area')}
6683
6717
  `,
6684
6718
  excludeAttrsSync: ['tabindex'],
6685
- componentName: componentName$F,
6719
+ componentName: componentName$G,
6686
6720
  })
6687
6721
  );
6688
6722
 
6689
- customElements.define(componentName$F, TextAreaClass);
6723
+ customElements.define(componentName$G, TextAreaClass);
6690
6724
 
6691
6725
  const observedAttributes$3 = ['src', 'alt'];
6692
6726
 
6693
- const componentName$E = getComponentName('image');
6727
+ const componentName$F = getComponentName('image');
6694
6728
 
6695
- const BaseClass$1 = createBaseClass({ componentName: componentName$E, baseSelector: ':host > img' });
6729
+ const BaseClass$1 = createBaseClass({ componentName: componentName$F, baseSelector: ':host > img' });
6696
6730
  class RawImage extends BaseClass$1 {
6697
6731
  static get observedAttributes() {
6698
6732
  return observedAttributes$3.concat(BaseClass$1.observedAttributes || []);
@@ -6732,7 +6766,7 @@ const ImageClass = compose(
6732
6766
  draggableMixin
6733
6767
  )(RawImage);
6734
6768
 
6735
- customElements.define(componentName$E, ImageClass);
6769
+ customElements.define(componentName$F, ImageClass);
6736
6770
 
6737
6771
  var CountryCodes = [
6738
6772
  // United States should be the first option
@@ -8001,7 +8035,7 @@ const parsePhoneNumber = (val) => {
8001
8035
  return [countryCode, phoneNumber];
8002
8036
  };
8003
8037
 
8004
- const componentName$D = getComponentName('phone-field-internal');
8038
+ const componentName$E = getComponentName('phone-field-internal');
8005
8039
 
8006
8040
  const commonAttrs$1 = ['disabled', 'size', 'bordered', 'invalid', 'readonly'];
8007
8041
  const countryAttrs = ['country-input-placeholder', 'default-code', 'restrict-countries'];
@@ -8015,7 +8049,7 @@ const mapAttrs$1 = {
8015
8049
 
8016
8050
  const inputRelatedAttrs$1 = [].concat(commonAttrs$1, countryAttrs, phoneAttrs, labelTypeAttrs);
8017
8051
 
8018
- const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$D, baseSelector: 'div' });
8052
+ const BaseInputClass$6 = createBaseInputClass({ componentName: componentName$E, baseSelector: 'div' });
8019
8053
 
8020
8054
  let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8021
8055
  static get observedAttributes() {
@@ -8232,12 +8266,12 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$6 {
8232
8266
  }
8233
8267
  };
8234
8268
 
8235
- customElements.define(componentName$D, PhoneFieldInternal$1);
8269
+ customElements.define(componentName$E, PhoneFieldInternal$1);
8236
8270
 
8237
8271
  const textVars$1 = TextFieldClass.cssVarList;
8238
8272
  const comboVars = ComboBoxClass.cssVarList;
8239
8273
 
8240
- const componentName$C = getComponentName('phone-field');
8274
+ const componentName$D = getComponentName('phone-field');
8241
8275
 
8242
8276
  const customMixin$8 = (superclass) =>
8243
8277
  class PhoneFieldMixinClass extends superclass {
@@ -8251,15 +8285,15 @@ const customMixin$8 = (superclass) =>
8251
8285
  const template = document.createElement('template');
8252
8286
 
8253
8287
  template.innerHTML = `
8254
- <${componentName$D}
8288
+ <${componentName$E}
8255
8289
  tabindex="-1"
8256
8290
  slot="input"
8257
- ></${componentName$D}>
8291
+ ></${componentName$E}>
8258
8292
  `;
8259
8293
 
8260
8294
  this.baseElement.appendChild(template.content.cloneNode(true));
8261
8295
 
8262
- this.inputElement = this.shadowRoot.querySelector(componentName$D);
8296
+ this.inputElement = this.shadowRoot.querySelector(componentName$E);
8263
8297
 
8264
8298
  forwardAttrs(this.shadowRoot.host, this.inputElement, {
8265
8299
  includeAttrs: [
@@ -8481,17 +8515,17 @@ const PhoneFieldClass = compose(
8481
8515
  ${resetInputLabelPosition('vaadin-text-field')}
8482
8516
  `,
8483
8517
  excludeAttrsSync: ['tabindex'],
8484
- componentName: componentName$C,
8518
+ componentName: componentName$D,
8485
8519
  })
8486
8520
  );
8487
8521
 
8488
- customElements.define(componentName$C, PhoneFieldClass);
8522
+ customElements.define(componentName$D, PhoneFieldClass);
8489
8523
 
8490
8524
  const getCountryByCodeId = (countryCode) => {
8491
8525
  return CountryCodes.find((c) => c.code === countryCode)?.dialCode;
8492
8526
  };
8493
8527
 
8494
- const componentName$B = getComponentName('phone-field-internal-input-box');
8528
+ const componentName$C = getComponentName('phone-field-internal-input-box');
8495
8529
 
8496
8530
  const observedAttributes$2 = [
8497
8531
  'disabled',
@@ -8508,7 +8542,7 @@ const mapAttrs = {
8508
8542
  'phone-input-placeholder': 'placeholder',
8509
8543
  };
8510
8544
 
8511
- const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$B, baseSelector: 'div' });
8545
+ const BaseInputClass$5 = createBaseInputClass({ componentName: componentName$C, baseSelector: 'div' });
8512
8546
 
8513
8547
  class PhoneFieldInternal extends BaseInputClass$5 {
8514
8548
  static get observedAttributes() {
@@ -8647,11 +8681,11 @@ class PhoneFieldInternal extends BaseInputClass$5 {
8647
8681
  }
8648
8682
  }
8649
8683
 
8650
- customElements.define(componentName$B, PhoneFieldInternal);
8684
+ customElements.define(componentName$C, PhoneFieldInternal);
8651
8685
 
8652
8686
  const textVars = TextFieldClass.cssVarList;
8653
8687
 
8654
- const componentName$A = getComponentName('phone-input-box-field');
8688
+ const componentName$B = getComponentName('phone-input-box-field');
8655
8689
 
8656
8690
  const customMixin$7 = (superclass) =>
8657
8691
  class PhoneInputBoxFieldMixinClass extends superclass {
@@ -8665,15 +8699,15 @@ const customMixin$7 = (superclass) =>
8665
8699
  const template = document.createElement('template');
8666
8700
 
8667
8701
  template.innerHTML = `
8668
- <${componentName$B}
8702
+ <${componentName$C}
8669
8703
  tabindex="-1"
8670
8704
  slot="input"
8671
- ></${componentName$B}>
8705
+ ></${componentName$C}>
8672
8706
  `;
8673
8707
 
8674
8708
  this.baseElement.appendChild(template.content.cloneNode(true));
8675
8709
 
8676
- this.inputElement = this.shadowRoot.querySelector(componentName$B);
8710
+ this.inputElement = this.shadowRoot.querySelector(componentName$C);
8677
8711
 
8678
8712
  forwardAttrs(this.shadowRoot.host, this.inputElement, {
8679
8713
  includeAttrs: [
@@ -8850,26 +8884,26 @@ const PhoneFieldInputBoxClass = compose(
8850
8884
  ${inputFloatingLabelStyle()}
8851
8885
  `,
8852
8886
  excludeAttrsSync: ['tabindex'],
8853
- componentName: componentName$A,
8887
+ componentName: componentName$B,
8854
8888
  })
8855
8889
  );
8856
8890
 
8857
- customElements.define(componentName$A, PhoneFieldInputBoxClass);
8891
+ customElements.define(componentName$B, PhoneFieldInputBoxClass);
8858
8892
 
8859
- const componentName$z = getComponentName('new-password-internal');
8893
+ const componentName$A = getComponentName('new-password-internal');
8860
8894
 
8861
8895
  const interpolateString = (template, values) =>
8862
8896
  template.replace(/{{(\w+)+}}/g, (match, key) => values?.[key] || match);
8863
8897
 
8864
8898
  // eslint-disable-next-line max-classes-per-file
8865
8899
 
8866
- const componentName$y = getComponentName('policy-validation');
8900
+ const componentName$z = getComponentName('policy-validation');
8867
8901
 
8868
8902
  const overrideAttrs = ['data-password-policy-value-minlength'];
8869
8903
  const dataAttrs = ['data', 'active-policies', 'overrides', ...overrideAttrs];
8870
8904
  const policyAttrs = ['label', 'value', ...dataAttrs];
8871
8905
 
8872
- class RawPolicyValidation extends createBaseClass({ componentName: componentName$y, baseSelector: ':host > div' }) {
8906
+ class RawPolicyValidation extends createBaseClass({ componentName: componentName$z, baseSelector: ':host > div' }) {
8873
8907
  #availablePolicies;
8874
8908
 
8875
8909
  #activePolicies = [];
@@ -9077,7 +9111,7 @@ const PolicyValidationClass = compose(
9077
9111
  componentNameValidationMixin
9078
9112
  )(RawPolicyValidation);
9079
9113
 
9080
- const componentName$x = getComponentName('new-password');
9114
+ const componentName$y = getComponentName('new-password');
9081
9115
 
9082
9116
  const policyPreviewVars = PolicyValidationClass.cssVarList;
9083
9117
 
@@ -9091,18 +9125,18 @@ const customMixin$6 = (superclass) =>
9091
9125
  const externalInputAttr = this.getAttribute('external-input');
9092
9126
 
9093
9127
  template.innerHTML = `
9094
- <${componentName$z}
9128
+ <${componentName$A}
9095
9129
  name="new-password"
9096
9130
  tabindex="-1"
9097
9131
  slot="input"
9098
9132
  external-input="${externalInputAttr}"
9099
9133
  >
9100
- </${componentName$z}>
9134
+ </${componentName$A}>
9101
9135
  `;
9102
9136
 
9103
9137
  this.baseElement.appendChild(template.content.cloneNode(true));
9104
9138
 
9105
- this.inputElement = this.shadowRoot.querySelector(componentName$z);
9139
+ this.inputElement = this.shadowRoot.querySelector(componentName$A);
9106
9140
 
9107
9141
  if (this.getAttribute('external-input') === 'true') {
9108
9142
  this.initExternalInput();
@@ -9278,11 +9312,11 @@ const NewPasswordClass = compose(
9278
9312
  }
9279
9313
  `,
9280
9314
  excludeAttrsSync: ['tabindex'],
9281
- componentName: componentName$x,
9315
+ componentName: componentName$y,
9282
9316
  })
9283
9317
  );
9284
9318
 
9285
- customElements.define(componentName$y, PolicyValidationClass);
9319
+ customElements.define(componentName$z, PolicyValidationClass);
9286
9320
 
9287
9321
  const passwordAttrPrefixRegex = /^password-/;
9288
9322
  const confirmAttrPrefixRegex = /^confirm-/;
@@ -9314,7 +9348,7 @@ const inputRelatedAttrs = [].concat(
9314
9348
  policyPanelAttrs
9315
9349
  );
9316
9350
 
9317
- const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$z, baseSelector: 'div' });
9351
+ const BaseInputClass$4 = createBaseInputClass({ componentName: componentName$A, baseSelector: 'div' });
9318
9352
 
9319
9353
  class NewPasswordInternal extends BaseInputClass$4 {
9320
9354
  static get observedAttributes() {
@@ -9524,16 +9558,16 @@ class NewPasswordInternal extends BaseInputClass$4 {
9524
9558
  }
9525
9559
  }
9526
9560
 
9527
- customElements.define(componentName$z, NewPasswordInternal);
9561
+ customElements.define(componentName$A, NewPasswordInternal);
9528
9562
 
9529
- customElements.define(componentName$x, NewPasswordClass);
9563
+ customElements.define(componentName$y, NewPasswordClass);
9530
9564
 
9531
- const componentName$w = getComponentName('recaptcha');
9565
+ const componentName$x = getComponentName('recaptcha');
9532
9566
 
9533
9567
  const observedAttributes$1 = ['enabled', 'site-key', 'action', 'enterprise'];
9534
9568
 
9535
9569
  const BaseClass = createBaseClass({
9536
- componentName: componentName$w,
9570
+ componentName: componentName$x,
9537
9571
  baseSelector: ':host > div',
9538
9572
  });
9539
9573
  class RawRecaptcha extends BaseClass {
@@ -9720,7 +9754,7 @@ class RawRecaptcha extends BaseClass {
9720
9754
 
9721
9755
  const RecaptchaClass = compose(draggableMixin)(RawRecaptcha);
9722
9756
 
9723
- customElements.define(componentName$w, RecaptchaClass);
9757
+ customElements.define(componentName$x, RecaptchaClass);
9724
9758
 
9725
9759
  const getFileBase64 = (fileObj) => {
9726
9760
  return new Promise((resolve) => {
@@ -9734,7 +9768,7 @@ const getFilename = (fileObj) => {
9734
9768
  return fileObj.name.replace(/^.*\\/, '');
9735
9769
  };
9736
9770
 
9737
- const componentName$v = getComponentName('upload-file');
9771
+ const componentName$w = getComponentName('upload-file');
9738
9772
 
9739
9773
  const observedAttributes = [
9740
9774
  'title',
@@ -9749,7 +9783,7 @@ const observedAttributes = [
9749
9783
  'icon',
9750
9784
  ];
9751
9785
 
9752
- const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$v, baseSelector: ':host > div' });
9786
+ const BaseInputClass$3 = createBaseInputClass({ componentName: componentName$w, baseSelector: ':host > div' });
9753
9787
 
9754
9788
  class RawUploadFile extends BaseInputClass$3 {
9755
9789
  static get observedAttributes() {
@@ -9964,7 +9998,7 @@ const UploadFileClass = compose(
9964
9998
  componentNameValidationMixin
9965
9999
  )(RawUploadFile);
9966
10000
 
9967
- customElements.define(componentName$v, UploadFileClass);
10001
+ customElements.define(componentName$w, UploadFileClass);
9968
10002
 
9969
10003
  const createBaseButtonSelectionGroupInternalClass = (componentName) => {
9970
10004
  class BaseButtonSelectionGroupInternalClass extends createBaseInputClass({
@@ -10062,10 +10096,10 @@ const createBaseButtonSelectionGroupInternalClass = (componentName) => {
10062
10096
  return BaseButtonSelectionGroupInternalClass;
10063
10097
  };
10064
10098
 
10065
- const componentName$u = getComponentName('button-selection-group-internal');
10099
+ const componentName$v = getComponentName('button-selection-group-internal');
10066
10100
 
10067
10101
  class ButtonSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
10068
- componentName$u
10102
+ componentName$v
10069
10103
  ) {
10070
10104
  getSelectedNode() {
10071
10105
  return this.items.find((item) => item.hasAttribute('selected'));
@@ -10297,7 +10331,7 @@ const buttonSelectionGroupStyles = `
10297
10331
  ${resetInputCursor('vaadin-text-field')}
10298
10332
  `;
10299
10333
 
10300
- const componentName$t = getComponentName('button-selection-group');
10334
+ const componentName$u = getComponentName('button-selection-group');
10301
10335
 
10302
10336
  const buttonSelectionGroupMixin = (superclass) =>
10303
10337
  class ButtonMultiSelectionGroupMixinClass extends superclass {
@@ -10306,19 +10340,19 @@ const buttonSelectionGroupMixin = (superclass) =>
10306
10340
  const template = document.createElement('template');
10307
10341
 
10308
10342
  template.innerHTML = `
10309
- <${componentName$u}
10343
+ <${componentName$v}
10310
10344
  name="button-selection-group"
10311
10345
  slot="input"
10312
10346
  tabindex="-1"
10313
10347
  part="internal-component"
10314
10348
  >
10315
10349
  <slot></slot>
10316
- </${componentName$u}>
10350
+ </${componentName$v}>
10317
10351
  `;
10318
10352
 
10319
10353
  this.baseElement.appendChild(template.content.cloneNode(true));
10320
10354
 
10321
- this.inputElement = this.shadowRoot.querySelector(componentName$u);
10355
+ this.inputElement = this.shadowRoot.querySelector(componentName$v);
10322
10356
 
10323
10357
  forwardAttrs(this, this.inputElement, {
10324
10358
  includeAttrs: ['size', 'default-value', 'allow-deselect'],
@@ -10343,16 +10377,16 @@ const ButtonSelectionGroupClass = compose(
10343
10377
  wrappedEleName: 'vaadin-text-field',
10344
10378
  style: () => buttonSelectionGroupStyles,
10345
10379
  excludeAttrsSync: ['tabindex'],
10346
- componentName: componentName$t,
10380
+ componentName: componentName$u,
10347
10381
  })
10348
10382
  );
10349
10383
 
10350
- customElements.define(componentName$u, ButtonSelectionGroupInternalClass);
10384
+ customElements.define(componentName$v, ButtonSelectionGroupInternalClass);
10351
10385
 
10352
- const componentName$s = getComponentName('button-selection-group-item');
10386
+ const componentName$t = getComponentName('button-selection-group-item');
10353
10387
 
10354
10388
  class RawSelectItem extends createBaseClass({
10355
- componentName: componentName$s,
10389
+ componentName: componentName$t,
10356
10390
  baseSelector: ':host > descope-button',
10357
10391
  }) {
10358
10392
  get size() {
@@ -10459,14 +10493,14 @@ const ButtonSelectionGroupItemClass = compose(
10459
10493
  componentNameValidationMixin
10460
10494
  )(RawSelectItem);
10461
10495
 
10462
- customElements.define(componentName$s, ButtonSelectionGroupItemClass);
10496
+ customElements.define(componentName$t, ButtonSelectionGroupItemClass);
10463
10497
 
10464
- customElements.define(componentName$t, ButtonSelectionGroupClass);
10498
+ customElements.define(componentName$u, ButtonSelectionGroupClass);
10465
10499
 
10466
- const componentName$r = getComponentName('button-multi-selection-group-internal');
10500
+ const componentName$s = getComponentName('button-multi-selection-group-internal');
10467
10501
 
10468
10502
  class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGroupInternalClass(
10469
- componentName$r
10503
+ componentName$s
10470
10504
  ) {
10471
10505
  #getSelectedNodes() {
10472
10506
  return this.items.filter((item) => item.hasAttribute('selected'));
@@ -10569,7 +10603,7 @@ class ButtonMultiSelectionGroupInternalClass extends createBaseButtonSelectionGr
10569
10603
  }
10570
10604
  }
10571
10605
 
10572
- const componentName$q = getComponentName('button-multi-selection-group');
10606
+ const componentName$r = getComponentName('button-multi-selection-group');
10573
10607
 
10574
10608
  const buttonMultiSelectionGroupMixin = (superclass) =>
10575
10609
  class ButtonMultiSelectionGroupMixinClass extends superclass {
@@ -10578,19 +10612,19 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
10578
10612
  const template = document.createElement('template');
10579
10613
 
10580
10614
  template.innerHTML = `
10581
- <${componentName$r}
10615
+ <${componentName$s}
10582
10616
  name="button-selection-group"
10583
10617
  slot="input"
10584
10618
  tabindex="-1"
10585
10619
  part="internal-component"
10586
10620
  >
10587
10621
  <slot></slot>
10588
- </${componentName$r}>
10622
+ </${componentName$s}>
10589
10623
  `;
10590
10624
 
10591
10625
  this.baseElement.appendChild(template.content.cloneNode(true));
10592
10626
 
10593
- this.inputElement = this.shadowRoot.querySelector(componentName$r);
10627
+ this.inputElement = this.shadowRoot.querySelector(componentName$s);
10594
10628
 
10595
10629
  forwardAttrs(this, this.inputElement, {
10596
10630
  includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
@@ -10615,13 +10649,13 @@ const ButtonMultiSelectionGroupClass = compose(
10615
10649
  wrappedEleName: 'vaadin-text-field',
10616
10650
  style: () => buttonSelectionGroupStyles,
10617
10651
  excludeAttrsSync: ['tabindex'],
10618
- componentName: componentName$q,
10652
+ componentName: componentName$r,
10619
10653
  })
10620
10654
  );
10621
10655
 
10622
- customElements.define(componentName$r, ButtonMultiSelectionGroupInternalClass);
10656
+ customElements.define(componentName$s, ButtonMultiSelectionGroupInternalClass);
10623
10657
 
10624
- customElements.define(componentName$q, ButtonMultiSelectionGroupClass);
10658
+ customElements.define(componentName$r, ButtonMultiSelectionGroupClass);
10625
10659
 
10626
10660
  /* eslint-disable no-param-reassign */
10627
10661
 
@@ -10649,9 +10683,9 @@ class GridTextColumnClass extends GridSortColumn {
10649
10683
  }
10650
10684
  }
10651
10685
 
10652
- const componentName$p = getComponentName('grid-text-column');
10686
+ const componentName$q = getComponentName('grid-text-column');
10653
10687
 
10654
- customElements.define(componentName$p, GridTextColumnClass);
10688
+ customElements.define(componentName$q, GridTextColumnClass);
10655
10689
 
10656
10690
  /* eslint-disable no-param-reassign */
10657
10691
 
@@ -10686,9 +10720,9 @@ class GridCustomColumnClass extends GridTextColumnClass {
10686
10720
 
10687
10721
  /* eslint-disable no-param-reassign */
10688
10722
 
10689
- const componentName$o = getComponentName('grid-custom-column');
10723
+ const componentName$p = getComponentName('grid-custom-column');
10690
10724
 
10691
- customElements.define(componentName$o, GridCustomColumnClass);
10725
+ customElements.define(componentName$p, GridCustomColumnClass);
10692
10726
 
10693
10727
  const createCheckboxEle = () => {
10694
10728
  const checkbox = document.createElement('descope-checkbox');
@@ -10747,9 +10781,9 @@ class GridSelectionColumnClass extends GridSelectionColumn {
10747
10781
  }
10748
10782
  }
10749
10783
 
10750
- const componentName$n = getComponentName('grid-selection-column');
10784
+ const componentName$o = getComponentName('grid-selection-column');
10751
10785
 
10752
- customElements.define(componentName$n, GridSelectionColumnClass);
10786
+ customElements.define(componentName$o, GridSelectionColumnClass);
10753
10787
 
10754
10788
  /* eslint-disable no-param-reassign */
10755
10789
 
@@ -10788,9 +10822,9 @@ class GridItemDetailsColumnClass extends GridSortColumn {
10788
10822
  }
10789
10823
  }
10790
10824
 
10791
- const componentName$m = getComponentName('grid-item-details-column');
10825
+ const componentName$n = getComponentName('grid-item-details-column');
10792
10826
 
10793
- customElements.define(componentName$m, GridItemDetailsColumnClass);
10827
+ customElements.define(componentName$n, GridItemDetailsColumnClass);
10794
10828
 
10795
10829
  const decode = (input) => {
10796
10830
  const txt = document.createElement('textarea');
@@ -10802,9 +10836,9 @@ const tpl = (input, inline) => {
10802
10836
  return inline ? input : `<pre>${input}</pre>`;
10803
10837
  };
10804
10838
 
10805
- const componentName$l = getComponentName('code-snippet');
10839
+ const componentName$m = getComponentName('code-snippet');
10806
10840
 
10807
- let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$l, baseSelector: ':host > code' }) {
10841
+ let CodeSnippet$1 = class CodeSnippet extends createBaseClass({ componentName: componentName$m, baseSelector: ':host > code' }) {
10808
10842
  static get observedAttributes() {
10809
10843
  return ['lang', 'inline'];
10810
10844
  }
@@ -11034,7 +11068,7 @@ const CodeSnippetClass = compose(
11034
11068
  componentNameValidationMixin
11035
11069
  )(CodeSnippet$1);
11036
11070
 
11037
- customElements.define(componentName$l, CodeSnippetClass);
11071
+ customElements.define(componentName$m, CodeSnippetClass);
11038
11072
 
11039
11073
  const isValidDataType = (data) => {
11040
11074
  const isValid = Array.isArray(data);
@@ -11109,7 +11143,7 @@ const defaultRowDetailsRenderer = (item, itemLabelsMapping) => {
11109
11143
  `;
11110
11144
  };
11111
11145
 
11112
- const componentName$k = getComponentName('grid');
11146
+ const componentName$l = getComponentName('grid');
11113
11147
 
11114
11148
  const GridMixin = (superclass) =>
11115
11149
  class GridMixinClass extends superclass {
@@ -11463,13 +11497,13 @@ const GridClass = compose(
11463
11497
  /*!css*/
11464
11498
  `,
11465
11499
  excludeAttrsSync: ['columns', 'tabindex'],
11466
- componentName: componentName$k,
11500
+ componentName: componentName$l,
11467
11501
  })
11468
11502
  );
11469
11503
 
11470
- customElements.define(componentName$k, GridClass);
11504
+ customElements.define(componentName$l, GridClass);
11471
11505
 
11472
- const componentName$j = getComponentName('multi-select-combo-box');
11506
+ const componentName$k = getComponentName('multi-select-combo-box');
11473
11507
 
11474
11508
  const multiSelectComboBoxMixin = (superclass) =>
11475
11509
  class MultiSelectComboBoxMixinClass extends superclass {
@@ -12103,16 +12137,16 @@ const MultiSelectComboBoxClass = compose(
12103
12137
  // Note: we exclude `placeholder` because the vaadin component observes it and
12104
12138
  // tries to override it, causing us to lose the user set placeholder.
12105
12139
  excludeAttrsSync: ['tabindex', 'size', 'data', 'placeholder'],
12106
- componentName: componentName$j,
12140
+ componentName: componentName$k,
12107
12141
  includeForwardProps: ['items', 'renderer', 'selectedItems'],
12108
12142
  })
12109
12143
  );
12110
12144
 
12111
- customElements.define(componentName$j, MultiSelectComboBoxClass);
12145
+ customElements.define(componentName$k, MultiSelectComboBoxClass);
12112
12146
 
12113
- const componentName$i = getComponentName('badge');
12147
+ const componentName$j = getComponentName('badge');
12114
12148
 
12115
- class RawBadge extends createBaseClass({ componentName: componentName$i, baseSelector: ':host > div' }) {
12149
+ class RawBadge extends createBaseClass({ componentName: componentName$j, baseSelector: ':host > div' }) {
12116
12150
  constructor() {
12117
12151
  super();
12118
12152
 
@@ -12163,9 +12197,9 @@ const BadgeClass = compose(
12163
12197
  componentNameValidationMixin
12164
12198
  )(RawBadge);
12165
12199
 
12166
- customElements.define(componentName$i, BadgeClass);
12200
+ customElements.define(componentName$j, BadgeClass);
12167
12201
 
12168
- const componentName$h = getComponentName('modal');
12202
+ const componentName$i = getComponentName('modal');
12169
12203
 
12170
12204
  const customMixin$5 = (superclass) =>
12171
12205
  class ModalMixinClass extends superclass {
@@ -12264,11 +12298,11 @@ const ModalClass = compose(
12264
12298
  wrappedEleName: 'vaadin-dialog',
12265
12299
  style: () => ``,
12266
12300
  excludeAttrsSync: ['tabindex', 'opened'],
12267
- componentName: componentName$h,
12301
+ componentName: componentName$i,
12268
12302
  })
12269
12303
  );
12270
12304
 
12271
- customElements.define(componentName$h, ModalClass);
12305
+ customElements.define(componentName$i, ModalClass);
12272
12306
 
12273
12307
  const vaadinContainerClass = window.customElements.get('vaadin-notification-container');
12274
12308
 
@@ -12279,7 +12313,7 @@ if (!vaadinContainerClass) {
12279
12313
  class NotificationContainerClass extends vaadinContainerClass {}
12280
12314
  customElements.define(getComponentName('notification-container'), NotificationContainerClass);
12281
12315
 
12282
- const componentName$g = getComponentName('notification-card');
12316
+ const componentName$h = getComponentName('notification-card');
12283
12317
 
12284
12318
  const notificationCardMixin = (superclass) =>
12285
12319
  class NotificationCardMixinClass extends superclass {
@@ -12387,13 +12421,13 @@ const NotificationCardClass = compose(
12387
12421
  }
12388
12422
  `,
12389
12423
  excludeAttrsSync: ['tabindex'],
12390
- componentName: componentName$g,
12424
+ componentName: componentName$h,
12391
12425
  })
12392
12426
  );
12393
12427
 
12394
- customElements.define(componentName$g, NotificationCardClass);
12428
+ customElements.define(componentName$h, NotificationCardClass);
12395
12429
 
12396
- const componentName$f = getComponentName('notification');
12430
+ const componentName$g = getComponentName('notification');
12397
12431
 
12398
12432
  const NotificationMixin = (superclass) =>
12399
12433
  class NotificationMixinClass extends superclass {
@@ -12488,14 +12522,14 @@ const NotificationClass = compose(
12488
12522
  createProxy({
12489
12523
  wrappedEleName: 'vaadin-notification',
12490
12524
  excludeAttrsSync: ['tabindex'],
12491
- componentName: componentName$f,
12525
+ componentName: componentName$g,
12492
12526
  })
12493
12527
  );
12494
12528
 
12495
- customElements.define(componentName$f, NotificationClass);
12529
+ customElements.define(componentName$g, NotificationClass);
12496
12530
 
12497
- const componentName$e = getComponentName('avatar');
12498
- class RawAvatar extends createBaseClass({ componentName: componentName$e, baseSelector: ':host > .wrapper' }) {
12531
+ const componentName$f = getComponentName('avatar');
12532
+ class RawAvatar extends createBaseClass({ componentName: componentName$f, baseSelector: ':host > .wrapper' }) {
12499
12533
  constructor() {
12500
12534
  super();
12501
12535
 
@@ -12599,11 +12633,11 @@ const AvatarClass = compose(
12599
12633
  componentNameValidationMixin
12600
12634
  )(RawAvatar);
12601
12635
 
12602
- customElements.define(componentName$e, AvatarClass);
12636
+ customElements.define(componentName$f, AvatarClass);
12603
12637
 
12604
- const componentName$d = getComponentName('mappings-field-internal');
12638
+ const componentName$e = getComponentName('mappings-field-internal');
12605
12639
 
12606
- const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$d, baseSelector: 'div' });
12640
+ const BaseInputClass$2 = createBaseInputClass({ componentName: componentName$e, baseSelector: 'div' });
12607
12641
 
12608
12642
  class MappingsFieldInternal extends BaseInputClass$2 {
12609
12643
  #errorItem;
@@ -12838,7 +12872,7 @@ class MappingsFieldInternal extends BaseInputClass$2 {
12838
12872
  }
12839
12873
  }
12840
12874
 
12841
- const componentName$c = getComponentName('mappings-field');
12875
+ const componentName$d = getComponentName('mappings-field');
12842
12876
 
12843
12877
  const customMixin$4 = (superclass) =>
12844
12878
  class MappingsFieldMixinClass extends superclass {
@@ -12867,14 +12901,14 @@ const customMixin$4 = (superclass) =>
12867
12901
  const template = document.createElement('template');
12868
12902
 
12869
12903
  template.innerHTML = `
12870
- <${componentName$d}
12904
+ <${componentName$e}
12871
12905
  tabindex="-1"
12872
- ></${componentName$d}>
12906
+ ></${componentName$e}>
12873
12907
  `;
12874
12908
 
12875
12909
  this.baseElement.appendChild(template.content.cloneNode(true));
12876
12910
 
12877
- this.inputElement = this.shadowRoot.querySelector(componentName$d);
12911
+ this.inputElement = this.shadowRoot.querySelector(componentName$e);
12878
12912
 
12879
12913
  forwardAttrs(this, this.inputElement, {
12880
12914
  includeAttrs: [
@@ -13006,17 +13040,17 @@ const MappingsFieldClass = compose(
13006
13040
  'options',
13007
13041
  'error-message',
13008
13042
  ],
13009
- componentName: componentName$c,
13043
+ componentName: componentName$d,
13010
13044
  })
13011
13045
  );
13012
13046
 
13013
- customElements.define(componentName$d, MappingsFieldInternal);
13047
+ customElements.define(componentName$e, MappingsFieldInternal);
13014
13048
 
13015
- const componentName$b = getComponentName('mapping-item');
13049
+ const componentName$c = getComponentName('mapping-item');
13016
13050
 
13017
13051
  const inputAttrs = ['size', 'bordered', 'readonly', 'full-width', 'disabled'];
13018
13052
 
13019
- const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$b, baseSelector: 'div' });
13053
+ const BaseInputClass$1 = createBaseInputClass({ componentName: componentName$c, baseSelector: 'div' });
13020
13054
 
13021
13055
  class MappingItem extends BaseInputClass$1 {
13022
13056
  static get observedAttributes() {
@@ -13166,17 +13200,17 @@ class MappingItem extends BaseInputClass$1 {
13166
13200
  }
13167
13201
  }
13168
13202
 
13169
- customElements.define(componentName$b, MappingItem);
13203
+ customElements.define(componentName$c, MappingItem);
13170
13204
 
13171
- customElements.define(componentName$c, MappingsFieldClass);
13205
+ customElements.define(componentName$d, MappingsFieldClass);
13172
13206
 
13173
13207
  var deleteIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTZDMSAxNy4xIDEuOSAxOCAzIDE4SDExQzEyLjEgMTggMTMgMTcuMSAxMyAxNlY0SDFWMTZaTTMgNkgxMVYxNkgzVjZaTTEwLjUgMUw5LjUgMEg0LjVMMy41IDFIMFYzSDE0VjFIMTAuNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
13174
13208
 
13175
13209
  var editIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjAwMDIgMC45OTIxNDlDMTAuMDAwMiAxLjAxNjE1IDEwLjAwMDIgMS4wMTYxNSAxMC4wMDAyIDEuMDE2MTVMOC4yMjQxOSAzLjAwODE1SDIuOTkyMTlDMi40NjQxOSAzLjAwODE1IDIuMDA4MTkgMy40NDAxNSAyLjAwODE5IDMuOTkyMTVWMTIuMDA4MkMyLjAwODE5IDEyLjUzNjIgMi40NDAxOSAxMi45OTIyIDIuOTkyMTkgMTIuOTkyMkg1LjUzNjE5QzUuODQ4MTkgMTMuMDQwMiA2LjE2MDE5IDEzLjA0MDIgNi40NzIxOSAxMi45OTIySDExLjAwODJDMTEuNTM2MiAxMi45OTIyIDExLjk5MjIgMTIuNTYwMiAxMS45OTIyIDEyLjAwODJWNy43ODQxNkwxMy45MzYyIDUuNjI0MTVMMTQuMDA4MiA1LjY3MjE1VjExLjk4NDJDMTQuMDA4MiAxMy42NjQyIDEyLjY2NDIgMTUuMDA4MiAxMS4wMDgyIDE1LjAwODJIMy4wMTYxOUMxLjMzNjE5IDE1LjAwODIgLTAuMDA3ODEyNSAxMy42NjQyIC0wLjAwNzgxMjUgMTEuOTg0MlYzLjk5MjE1Qy0wLjAwNzgxMjUgMi4zMzYxNSAxLjMzNjE5IDAuOTkyMTQ5IDMuMDE2MTkgMC45OTIxNDlIMTAuMDAwMlpNMTEuMjcyMiAyLjYyNDE1TDEyLjYxNjIgNC4xMTIxNUw3LjcyMDE5IDkuNjgwMTZDNy41MDQxOSA5LjkyMDE2IDYuODMyMTkgMTAuMjMyMiA1LjY4MDE5IDEwLjYxNjJDNS42NTYxOSAxMC42NDAyIDUuNjA4MTkgMTAuNjQwMiA1LjU2MDE5IDEwLjYxNjJDNS40NjQxOSAxMC41OTIyIDUuMzkyMTkgMTAuNDcyMiA1LjQ0MDE5IDEwLjM3NjJDNS43NTIxOSA5LjI0ODE2IDYuMDQwMTkgOC41NTIxNiA2LjI1NjE5IDguMzEyMTZMMTEuMjcyMiAyLjYyNDE1Wk0xMS45MjAyIDEuODU2MTVMMTMuMjg4MiAwLjMyMDE0OUMxMy42NDgyIC0wLjA4Nzg1MTYgMTQuMjcyMiAtMC4xMTE4NTIgMTQuNjgwMiAwLjI3MjE0OUMxNS4wODgyIDAuNjMyMTQ5IDE1LjExMjIgMS4yODAxNSAxNC43NTIyIDEuNjg4MTVMMTMuMjY0MiAzLjM2ODE1TDExLjkyMDIgMS44NTYxNVoiIGZpbGw9ImN1cnJlbnRjb2xvciIvPgo8L3N2Zz4K";
13176
13210
 
13177
- const componentName$a = getComponentName('user-attribute');
13211
+ const componentName$b = getComponentName('user-attribute');
13178
13212
  class RawUserAttribute extends createBaseClass({
13179
- componentName: componentName$a,
13213
+ componentName: componentName$b,
13180
13214
  baseSelector: ':host > .root',
13181
13215
  }) {
13182
13216
  constructor() {
@@ -13410,13 +13444,13 @@ const UserAttributeClass = compose(
13410
13444
  componentNameValidationMixin
13411
13445
  )(RawUserAttribute);
13412
13446
 
13413
- customElements.define(componentName$a, UserAttributeClass);
13447
+ customElements.define(componentName$b, UserAttributeClass);
13414
13448
 
13415
13449
  var greenVIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMEMzLjYgMCAwIDMuNiAwIDhDMCAxMi40IDMuNiAxNiA4IDE2QzEyLjQgMTYgMTYgMTIuNCAxNiA4QzE2IDMuNiAxMi40IDAgOCAwWk03LjEgMTEuN0wyLjkgNy42TDQuMyA2LjJMNyA4LjlMMTIgNEwxMy40IDUuNEw3LjEgMTEuN1oiIGZpbGw9IiM0Q0FGNTAiLz4KPC9zdmc+Cg==";
13416
13450
 
13417
- const componentName$9 = getComponentName('user-auth-method');
13451
+ const componentName$a = getComponentName('user-auth-method');
13418
13452
  class RawUserAuthMethod extends createBaseClass({
13419
- componentName: componentName$9,
13453
+ componentName: componentName$a,
13420
13454
  baseSelector: ':host > .root',
13421
13455
  }) {
13422
13456
  constructor() {
@@ -13608,11 +13642,11 @@ const UserAuthMethodClass = compose(
13608
13642
  componentNameValidationMixin
13609
13643
  )(RawUserAuthMethod);
13610
13644
 
13611
- customElements.define(componentName$9, UserAuthMethodClass);
13645
+ customElements.define(componentName$a, UserAuthMethodClass);
13612
13646
 
13613
- const componentName$8 = getComponentName('saml-group-mappings-internal');
13647
+ const componentName$9 = getComponentName('saml-group-mappings-internal');
13614
13648
 
13615
- const BaseInputClass = createBaseInputClass({ componentName: componentName$8, baseSelector: '' });
13649
+ const BaseInputClass = createBaseInputClass({ componentName: componentName$9, baseSelector: '' });
13616
13650
 
13617
13651
  class SamlGroupMappingsInternal extends BaseInputClass {
13618
13652
  static get observedAttributes() {
@@ -13738,7 +13772,7 @@ class SamlGroupMappingsInternal extends BaseInputClass {
13738
13772
  }
13739
13773
  }
13740
13774
 
13741
- const componentName$7 = getComponentName('saml-group-mappings');
13775
+ const componentName$8 = getComponentName('saml-group-mappings');
13742
13776
 
13743
13777
  const customMixin$3 = (superclass) =>
13744
13778
  class SamlGroupMappingsMixinClass extends superclass {
@@ -13748,14 +13782,14 @@ const customMixin$3 = (superclass) =>
13748
13782
  const template = document.createElement('template');
13749
13783
 
13750
13784
  template.innerHTML = `
13751
- <${componentName$8}
13785
+ <${componentName$9}
13752
13786
  tabindex="-1"
13753
- ></${componentName$8}>
13787
+ ></${componentName$9}>
13754
13788
  `;
13755
13789
 
13756
13790
  this.baseElement.appendChild(template.content.cloneNode(true));
13757
13791
 
13758
- this.inputElement = this.shadowRoot.querySelector(componentName$8);
13792
+ this.inputElement = this.shadowRoot.querySelector(componentName$9);
13759
13793
 
13760
13794
  forwardAttrs(this, this.inputElement, {
13761
13795
  includeAttrs: [
@@ -13832,15 +13866,15 @@ const SamlGroupMappingsClass = compose(
13832
13866
  'options',
13833
13867
  'error-message',
13834
13868
  ],
13835
- componentName: componentName$7,
13869
+ componentName: componentName$8,
13836
13870
  })
13837
13871
  );
13838
13872
 
13839
- customElements.define(componentName$8, SamlGroupMappingsInternal);
13873
+ customElements.define(componentName$9, SamlGroupMappingsInternal);
13840
13874
 
13841
- customElements.define(componentName$7, SamlGroupMappingsClass);
13875
+ customElements.define(componentName$8, SamlGroupMappingsClass);
13842
13876
 
13843
- const componentName$6 = getComponentName('radio-button');
13877
+ const componentName$7 = getComponentName('radio-button');
13844
13878
 
13845
13879
  const customMixin$2 = (superclass) =>
13846
13880
  class CustomMixin extends superclass {
@@ -13905,11 +13939,11 @@ const RadioButtonClass = compose(
13905
13939
  wrappedEleName: 'vaadin-radio-button',
13906
13940
  excludeAttrsSync: ['tabindex', 'data'],
13907
13941
  includeForwardProps: ['checked', 'name', 'disabled'],
13908
- componentName: componentName$6,
13942
+ componentName: componentName$7,
13909
13943
  })
13910
13944
  );
13911
13945
 
13912
- const componentName$5 = getComponentName('radio-group');
13946
+ const componentName$6 = getComponentName('radio-group');
13913
13947
 
13914
13948
  const RadioGroupMixin = (superclass) =>
13915
13949
  class RadioGroupMixinClass extends superclass {
@@ -13924,12 +13958,12 @@ const RadioGroupMixin = (superclass) =>
13924
13958
 
13925
13959
  // we are overriding vaadin children getter so it will run on our custom elements
13926
13960
  Object.defineProperty(this.baseElement, 'children', {
13927
- get: () => this.querySelectorAll(componentName$6),
13961
+ get: () => this.querySelectorAll(componentName$7),
13928
13962
  });
13929
13963
 
13930
13964
  // we are overriding vaadin __filterRadioButtons so it will run on our custom elements
13931
13965
  this.baseElement.__filterRadioButtons = (nodes) => {
13932
- return nodes.filter((node) => node.localName === componentName$6);
13966
+ return nodes.filter((node) => node.localName === componentName$7);
13933
13967
  };
13934
13968
 
13935
13969
  // vaadin radio group missing some input properties
@@ -14079,13 +14113,13 @@ const RadioGroupClass = compose(
14079
14113
  `,
14080
14114
 
14081
14115
  excludeAttrsSync: ['tabindex', 'size', 'data', 'direction'],
14082
- componentName: componentName$5,
14116
+ componentName: componentName$6,
14083
14117
  includeForwardProps: ['value'],
14084
14118
  })
14085
14119
  );
14086
14120
 
14087
- customElements.define(componentName$5, RadioGroupClass);
14088
- customElements.define(componentName$6, RadioButtonClass);
14121
+ customElements.define(componentName$6, RadioGroupClass);
14122
+ customElements.define(componentName$7, RadioButtonClass);
14089
14123
 
14090
14124
  const activeableMixin = (superclass) =>
14091
14125
  class ActiveableMixinClass extends superclass {
@@ -14102,7 +14136,7 @@ const activeableMixin = (superclass) =>
14102
14136
  }
14103
14137
  };
14104
14138
 
14105
- const componentName$4 = getComponentName('list-item');
14139
+ const componentName$5 = getComponentName('list-item');
14106
14140
 
14107
14141
  const customMixin$1 = (superclass) =>
14108
14142
  class ListItemMixinClass extends superclass {
@@ -14151,11 +14185,11 @@ const ListItemClass = compose(
14151
14185
  componentNameValidationMixin,
14152
14186
  customMixin$1,
14153
14187
  activeableMixin
14154
- )(createBaseClass({ componentName: componentName$4, baseSelector: 'slot' }));
14188
+ )(createBaseClass({ componentName: componentName$5, baseSelector: 'slot' }));
14155
14189
 
14156
- const componentName$3 = getComponentName('list');
14190
+ const componentName$4 = getComponentName('list');
14157
14191
 
14158
- class RawList extends createBaseClass({ componentName: componentName$3, baseSelector: '.wrapper' }) {
14192
+ class RawList extends createBaseClass({ componentName: componentName$4, baseSelector: '.wrapper' }) {
14159
14193
  static get observedAttributes() {
14160
14194
  return ['variant', 'readonly'];
14161
14195
  }
@@ -14302,8 +14336,8 @@ const ListClass = compose(
14302
14336
  componentNameValidationMixin
14303
14337
  )(RawList);
14304
14338
 
14305
- customElements.define(componentName$3, ListClass);
14306
- customElements.define(componentName$4, ListItemClass);
14339
+ customElements.define(componentName$4, ListClass);
14340
+ customElements.define(componentName$5, ListItemClass);
14307
14341
 
14308
14342
  const defaultValidateSchema = () => true;
14309
14343
  const defaultItemRenderer = (item) => `<pre>${JSON.stringify(item, null, 4)}</pre>`;
@@ -14404,7 +14438,7 @@ const createDynamicDataMixin =
14404
14438
  }
14405
14439
  };
14406
14440
 
14407
- const componentName$2 = getComponentName('apps-list');
14441
+ const componentName$3 = getComponentName('apps-list');
14408
14442
 
14409
14443
  const limitAbbreviation = (str, limit = 2) =>
14410
14444
  str
@@ -14466,7 +14500,7 @@ const AppsListClass = compose(
14466
14500
  slots: ['empty-state'],
14467
14501
  wrappedEleName: 'descope-list',
14468
14502
  excludeAttrsSync: ['tabindex', 'class', 'empty'],
14469
- componentName: componentName$2,
14503
+ componentName: componentName$3,
14470
14504
  style: () => `
14471
14505
  :host {
14472
14506
  width: 100%;
@@ -14491,9 +14525,9 @@ const AppsListClass = compose(
14491
14525
  })
14492
14526
  );
14493
14527
 
14494
- customElements.define(componentName$2, AppsListClass);
14528
+ customElements.define(componentName$3, AppsListClass);
14495
14529
 
14496
- const componentName$1 = getComponentName('scopes-list');
14530
+ const componentName$2 = getComponentName('scopes-list');
14497
14531
  const variants = ['checkbox', 'switch'];
14498
14532
 
14499
14533
  const itemRenderer = ({ id, desc, required = false }, _, ref) => {
@@ -14512,7 +14546,7 @@ const itemRenderer = ({ id, desc, required = false }, _, ref) => {
14512
14546
  `;
14513
14547
  };
14514
14548
 
14515
- class RawScopesList extends createBaseClass({ componentName: componentName$1, baseSelector: 'div' }) {
14549
+ class RawScopesList extends createBaseClass({ componentName: componentName$2, baseSelector: 'div' }) {
14516
14550
  constructor() {
14517
14551
  super();
14518
14552
 
@@ -14597,7 +14631,106 @@ const ScopesListClass = compose(
14597
14631
  componentNameValidationMixin
14598
14632
  )(RawScopesList);
14599
14633
 
14600
- customElements.define(componentName$1, ScopesListClass);
14634
+ customElements.define(componentName$2, ScopesListClass);
14635
+
14636
+ var arrowsImg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTQ0OTIgMTUuNjQ1TDcuNDk5OTIgMTRMMi44MzMyNSAxOC42NjY3TDcuNDk5OTIgMjMuMzMzM0w5LjE0NDkyIDIxLjY4ODNMNy4zMDE1OSAxOS44MzMzSDI0Ljk5OTlWMTcuNUg3LjMwMTU5TDkuMTQ0OTIgMTUuNjQ1WiIgZmlsbD0iIzYzNkM3NCIvPgo8cGF0aCBkPSJNMTkuODU1IDEyLjM1NTNMMjEuNSAxNC4wMDAzTDI2LjE2NjcgOS4zMzM2NkwyMS41IDQuNjY2OTlMMTkuODU1IDYuMzExOTlMMjEuNjk4MyA4LjE2Njk5SDRWMTAuNTAwM0gyMS42OTgzTDE5Ljg1NSAxMi4zNTUzWiIgZmlsbD0iIzYzNkM3NCIvPgo8L3N2Zz4K";
14637
+
14638
+ const componentName$1 = getComponentName('third-party-app-logo');
14639
+ class RawThirdPartyAppLogoClass extends createBaseClass({
14640
+ componentName: componentName$1,
14641
+ baseSelector: '.wrapper',
14642
+ }) {
14643
+ constructor() {
14644
+ super();
14645
+ this.attachShadow({ mode: 'open' }).innerHTML = `
14646
+ <style>
14647
+ :host {
14648
+ display: inline-flex;
14649
+ }
14650
+ :host([draggable="true"]) > div {
14651
+ pointer-events: none
14652
+ }
14653
+
14654
+ .wrapper {
14655
+ display: flex;
14656
+ justify-content: center;
14657
+ align-items: center;
14658
+ }
14659
+
14660
+ .third-party-app-logo {
14661
+ flex-shrink: 0;
14662
+ display: inline-block;
14663
+ max-width: 100%;
14664
+ max-height: 100%;
14665
+ object-fit: contain;
14666
+ }
14667
+
14668
+ .company-logo-wrapper, .third-party-app-logo-wrapper {
14669
+ flex-shrink: 0;
14670
+ display: inline-flex;
14671
+ }
14672
+
14673
+ .company-logo-wrapper {
14674
+ justify-content: flex-end;
14675
+ }
14676
+
14677
+ .third-party-app-logo-wrapper {
14678
+ justify-content: flex-start;
14679
+ }
14680
+
14681
+ .arrows {
14682
+ flex-shrink: 0;
14683
+ display: flex;
14684
+ }
14685
+
14686
+ </style>
14687
+ <div class="wrapper">
14688
+ <div class="third-party-app-logo-wrapper">
14689
+ <div class="third-party-app-logo"></div>
14690
+ </div>
14691
+ <div class="arrows">
14692
+ <descope-icon src="${arrowsImg}"></descope-icon>
14693
+ </div>
14694
+ <div class="company-logo-wrapper">
14695
+ <descope-logo></descope-logo>
14696
+ </div>
14697
+ </div>
14698
+ `;
14699
+ }
14700
+ }
14701
+
14702
+ const companyLogoWrapper = '>.company-logo-wrapper';
14703
+ const thirdPartyAppLogoWrapper = '>.third-party-app-logo-wrapper';
14704
+
14705
+ const ThirdPartyAppLogoClass = compose(
14706
+ createStyleMixin({
14707
+ mappings: {
14708
+ logoMaxHeight: [
14709
+ { selector: companyLogoWrapper, property: 'height' },
14710
+ { selector: thirdPartyAppLogoWrapper, property: 'height' },
14711
+ ],
14712
+ logoMaxWidth: [
14713
+ { selector: companyLogoWrapper, property: 'max-width' },
14714
+ { selector: thirdPartyAppLogoWrapper, property: 'max-width' },
14715
+ ],
14716
+ thirdPartyAppLogo: {
14717
+ selector: () => '.third-party-app-logo',
14718
+ property: 'content',
14719
+ fallback: {},
14720
+ },
14721
+ companyLogoFallback: {
14722
+ selector: LogoClass.componentName,
14723
+ property: LogoClass.cssVarList.fallbackUrl,
14724
+ },
14725
+ gap: {},
14726
+ arrowsColor: { selector: IconClass.componentName, property: IconClass.cssVarList.fill },
14727
+ },
14728
+ }),
14729
+ draggableMixin,
14730
+ componentNameValidationMixin
14731
+ )(RawThirdPartyAppLogoClass);
14732
+
14733
+ customElements.define(componentName$1, ThirdPartyAppLogoClass);
14601
14734
 
14602
14735
  const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
14603
14736
 
@@ -15029,33 +15162,33 @@ const globals = {
15029
15162
  fonts,
15030
15163
  direction,
15031
15164
  };
15032
- const vars$P = getThemeVars(globals);
15165
+ const vars$Q = getThemeVars(globals);
15033
15166
 
15034
- const globalRefs$x = getThemeRefs(globals);
15167
+ const globalRefs$y = getThemeRefs(globals);
15035
15168
  const compVars$6 = ButtonClass.cssVarList;
15036
15169
 
15037
15170
  const mode = {
15038
- primary: globalRefs$x.colors.primary,
15039
- secondary: globalRefs$x.colors.secondary,
15040
- success: globalRefs$x.colors.success,
15041
- error: globalRefs$x.colors.error,
15042
- surface: globalRefs$x.colors.surface,
15171
+ primary: globalRefs$y.colors.primary,
15172
+ secondary: globalRefs$y.colors.secondary,
15173
+ success: globalRefs$y.colors.success,
15174
+ error: globalRefs$y.colors.error,
15175
+ surface: globalRefs$y.colors.surface,
15043
15176
  };
15044
15177
 
15045
- const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$10);
15178
+ const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$11);
15046
15179
 
15047
15180
  const button = {
15048
15181
  ...helperTheme$4,
15049
15182
 
15050
- [compVars$6.fontFamily]: globalRefs$x.fonts.font1.family,
15183
+ [compVars$6.fontFamily]: globalRefs$y.fonts.font1.family,
15051
15184
 
15052
15185
  [compVars$6.cursor]: 'pointer',
15053
15186
  [compVars$6.hostHeight]: '3em',
15054
15187
  [compVars$6.hostWidth]: 'auto',
15055
- [compVars$6.hostDirection]: globalRefs$x.direction,
15188
+ [compVars$6.hostDirection]: globalRefs$y.direction,
15056
15189
 
15057
- [compVars$6.borderRadius]: globalRefs$x.radius.sm,
15058
- [compVars$6.borderWidth]: globalRefs$x.border.xs,
15190
+ [compVars$6.borderRadius]: globalRefs$y.radius.sm,
15191
+ [compVars$6.borderWidth]: globalRefs$y.border.xs,
15059
15192
  [compVars$6.borderStyle]: 'solid',
15060
15193
  [compVars$6.borderColor]: 'transparent',
15061
15194
 
@@ -15101,11 +15234,11 @@ const button = {
15101
15234
  },
15102
15235
 
15103
15236
  _disabled: {
15104
- [helperVars$4.main]: globalRefs$x.colors.surface.light,
15105
- [helperVars$4.dark]: globalRefs$x.colors.surface.dark,
15106
- [helperVars$4.light]: globalRefs$x.colors.surface.light,
15107
- [helperVars$4.contrast]: globalRefs$x.colors.surface.main,
15108
- [compVars$6.iconColor]: globalRefs$x.colors.surface.main,
15237
+ [helperVars$4.main]: globalRefs$y.colors.surface.light,
15238
+ [helperVars$4.dark]: globalRefs$y.colors.surface.dark,
15239
+ [helperVars$4.light]: globalRefs$y.colors.surface.light,
15240
+ [helperVars$4.contrast]: globalRefs$y.colors.surface.main,
15241
+ [compVars$6.iconColor]: globalRefs$y.colors.surface.main,
15109
15242
  },
15110
15243
 
15111
15244
  variant: {
@@ -15154,7 +15287,7 @@ const button = {
15154
15287
  },
15155
15288
  };
15156
15289
 
15157
- const vars$O = {
15290
+ const vars$P = {
15158
15291
  ...compVars$6,
15159
15292
  ...helperVars$4,
15160
15293
  };
@@ -15162,29 +15295,29 @@ const vars$O = {
15162
15295
  var button$1 = /*#__PURE__*/Object.freeze({
15163
15296
  __proto__: null,
15164
15297
  default: button,
15165
- vars: vars$O
15298
+ vars: vars$P
15166
15299
  });
15167
15300
 
15168
15301
  const componentName = getComponentName('input-wrapper');
15169
- const globalRefs$w = getThemeRefs(globals);
15302
+ const globalRefs$x = getThemeRefs(globals);
15170
15303
 
15171
- const [theme$1, refs, vars$N] = createHelperVars(
15304
+ const [theme$1, refs, vars$O] = createHelperVars(
15172
15305
  {
15173
- labelTextColor: globalRefs$w.colors.surface.dark,
15306
+ labelTextColor: globalRefs$x.colors.surface.dark,
15174
15307
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
15175
15308
  labelFontWeight: '500', // not taken from globals as it is fixed in all inputs
15176
- valueTextColor: globalRefs$w.colors.surface.contrast,
15177
- placeholderTextColor: globalRefs$w.colors.surface.dark,
15309
+ valueTextColor: globalRefs$x.colors.surface.contrast,
15310
+ placeholderTextColor: globalRefs$x.colors.surface.dark,
15178
15311
  requiredIndicator: "'*'",
15179
- helperTextColor: globalRefs$w.colors.surface.dark,
15180
- errorMessageTextColor: globalRefs$w.colors.error.main,
15181
- successMessageTextColor: globalRefs$w.colors.success.main,
15312
+ helperTextColor: globalRefs$x.colors.surface.dark,
15313
+ errorMessageTextColor: globalRefs$x.colors.error.main,
15314
+ successMessageTextColor: globalRefs$x.colors.success.main,
15182
15315
 
15183
- borderWidth: globalRefs$w.border.xs,
15184
- borderRadius: globalRefs$w.radius.xs,
15316
+ borderWidth: globalRefs$x.border.xs,
15317
+ borderRadius: globalRefs$x.radius.xs,
15185
15318
  borderColor: 'transparent',
15186
15319
 
15187
- outlineWidth: globalRefs$w.border.sm,
15320
+ outlineWidth: globalRefs$x.border.sm,
15188
15321
  outlineStyle: 'solid',
15189
15322
  outlineColor: 'transparent',
15190
15323
  outlineOffset: '0px', // we need to keep the px unit even for 0 value, as this var is used for calc in different component classes
@@ -15198,11 +15331,11 @@ const [theme$1, refs, vars$N] = createHelperVars(
15198
15331
 
15199
15332
  textAlign: 'start',
15200
15333
 
15201
- backgroundColor: globalRefs$w.colors.surface.main,
15334
+ backgroundColor: globalRefs$x.colors.surface.main,
15202
15335
 
15203
- fontFamily: globalRefs$w.fonts.font1.family,
15336
+ fontFamily: globalRefs$x.fonts.font1.family,
15204
15337
 
15205
- direction: globalRefs$w.direction,
15338
+ direction: globalRefs$x.direction,
15206
15339
 
15207
15340
  overlayOpacity: '0.3',
15208
15341
 
@@ -15256,28 +15389,28 @@ const [theme$1, refs, vars$N] = createHelperVars(
15256
15389
  },
15257
15390
 
15258
15391
  _focused: {
15259
- outlineColor: globalRefs$w.colors.surface.light,
15392
+ outlineColor: globalRefs$x.colors.surface.light,
15260
15393
  _invalid: {
15261
- outlineColor: globalRefs$w.colors.error.main,
15394
+ outlineColor: globalRefs$x.colors.error.main,
15262
15395
  },
15263
15396
  },
15264
15397
 
15265
15398
  _bordered: {
15266
- outlineWidth: globalRefs$w.border.xs,
15267
- borderColor: globalRefs$w.colors.surface.light,
15399
+ outlineWidth: globalRefs$x.border.xs,
15400
+ borderColor: globalRefs$x.colors.surface.light,
15268
15401
  borderStyle: 'solid',
15269
15402
  _invalid: {
15270
- borderColor: globalRefs$w.colors.error.main,
15403
+ borderColor: globalRefs$x.colors.error.main,
15271
15404
  },
15272
15405
  },
15273
15406
 
15274
15407
  _disabled: {
15275
- labelTextColor: globalRefs$w.colors.surface.light,
15276
- borderColor: globalRefs$w.colors.surface.light,
15277
- valueTextColor: globalRefs$w.colors.surface.light,
15278
- placeholderTextColor: globalRefs$w.colors.surface.light,
15279
- helperTextColor: globalRefs$w.colors.surface.light,
15280
- backgroundColor: globalRefs$w.colors.surface.main,
15408
+ labelTextColor: globalRefs$x.colors.surface.light,
15409
+ borderColor: globalRefs$x.colors.surface.light,
15410
+ valueTextColor: globalRefs$x.colors.surface.light,
15411
+ placeholderTextColor: globalRefs$x.colors.surface.light,
15412
+ helperTextColor: globalRefs$x.colors.surface.light,
15413
+ backgroundColor: globalRefs$x.colors.surface.main,
15281
15414
  },
15282
15415
  },
15283
15416
  componentName
@@ -15287,13 +15420,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
15287
15420
  __proto__: null,
15288
15421
  default: theme$1,
15289
15422
  refs: refs,
15423
+ vars: vars$O
15424
+ });
15425
+
15426
+ const globalRefs$w = getThemeRefs(globals);
15427
+ const vars$N = TextFieldClass.cssVarList;
15428
+
15429
+ const textField = {
15430
+ [vars$N.hostWidth]: refs.width,
15431
+ [vars$N.hostMinWidth]: refs.minWidth,
15432
+ [vars$N.hostDirection]: refs.direction,
15433
+ [vars$N.fontSize]: refs.fontSize,
15434
+ [vars$N.fontFamily]: refs.fontFamily,
15435
+ [vars$N.labelFontSize]: refs.labelFontSize,
15436
+ [vars$N.labelFontWeight]: refs.labelFontWeight,
15437
+ [vars$N.labelTextColor]: refs.labelTextColor,
15438
+ [vars$N.labelRequiredIndicator]: refs.requiredIndicator,
15439
+ [vars$N.errorMessageTextColor]: refs.errorMessageTextColor,
15440
+ [vars$N.inputValueTextColor]: refs.valueTextColor,
15441
+ [vars$N.inputPlaceholderColor]: refs.placeholderTextColor,
15442
+ [vars$N.inputBorderWidth]: refs.borderWidth,
15443
+ [vars$N.inputBorderStyle]: refs.borderStyle,
15444
+ [vars$N.inputBorderColor]: refs.borderColor,
15445
+ [vars$N.inputBorderRadius]: refs.borderRadius,
15446
+ [vars$N.inputOutlineWidth]: refs.outlineWidth,
15447
+ [vars$N.inputOutlineStyle]: refs.outlineStyle,
15448
+ [vars$N.inputOutlineColor]: refs.outlineColor,
15449
+ [vars$N.inputOutlineOffset]: refs.outlineOffset,
15450
+ [vars$N.inputBackgroundColor]: refs.backgroundColor,
15451
+ [vars$N.inputHeight]: refs.inputHeight,
15452
+ [vars$N.inputHorizontalPadding]: refs.horizontalPadding,
15453
+ [vars$N.helperTextColor]: refs.helperTextColor,
15454
+ [vars$N.textAlign]: refs.textAlign,
15455
+ textAlign: {
15456
+ right: { [vars$N.inputTextAlign]: 'right' },
15457
+ left: { [vars$N.inputTextAlign]: 'left' },
15458
+ center: { [vars$N.inputTextAlign]: 'center' },
15459
+ },
15460
+ [vars$N.labelPosition]: refs.labelPosition,
15461
+ [vars$N.labelTopPosition]: refs.labelTopPosition,
15462
+ [vars$N.labelHorizontalPosition]: refs.labelHorizontalPosition,
15463
+ [vars$N.inputTransformY]: refs.inputTransformY,
15464
+ [vars$N.inputTransition]: refs.inputTransition,
15465
+ [vars$N.marginInlineStart]: refs.marginInlineStart,
15466
+ [vars$N.placeholderOpacity]: refs.placeholderOpacity,
15467
+ [vars$N.inputVerticalAlignment]: refs.inputVerticalAlignment,
15468
+ [vars$N.valueInputHeight]: refs.valueInputHeight,
15469
+ [vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
15470
+ [vars$N.inputIconOffset]: globalRefs$w.spacing.md,
15471
+ [vars$N.inputIconSize]: refs.inputIconSize,
15472
+ [vars$N.inputIconColor]: refs.placeholderTextColor,
15473
+ };
15474
+
15475
+ var textField$1 = /*#__PURE__*/Object.freeze({
15476
+ __proto__: null,
15477
+ default: textField,
15478
+ textField: textField,
15290
15479
  vars: vars$N
15291
15480
  });
15292
15481
 
15293
15482
  const globalRefs$v = getThemeRefs(globals);
15294
- const vars$M = TextFieldClass.cssVarList;
15483
+ const vars$M = PasswordClass.cssVarList;
15295
15484
 
15296
- const textField = {
15485
+ const password = {
15297
15486
  [vars$M.hostWidth]: refs.width,
15298
15487
  [vars$M.hostMinWidth]: refs.minWidth,
15299
15488
  [vars$M.hostDirection]: refs.direction,
@@ -15302,10 +15491,13 @@ const textField = {
15302
15491
  [vars$M.labelFontSize]: refs.labelFontSize,
15303
15492
  [vars$M.labelFontWeight]: refs.labelFontWeight,
15304
15493
  [vars$M.labelTextColor]: refs.labelTextColor,
15305
- [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
15306
15494
  [vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
15495
+ [vars$M.inputHorizontalPadding]: refs.horizontalPadding,
15496
+ [vars$M.inputHeight]: refs.inputHeight,
15497
+ [vars$M.inputBackgroundColor]: refs.backgroundColor,
15498
+ [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
15307
15499
  [vars$M.inputValueTextColor]: refs.valueTextColor,
15308
- [vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
15500
+ [vars$M.inputPlaceholderTextColor]: refs.placeholderTextColor,
15309
15501
  [vars$M.inputBorderWidth]: refs.borderWidth,
15310
15502
  [vars$M.inputBorderStyle]: refs.borderStyle,
15311
15503
  [vars$M.inputBorderColor]: refs.borderColor,
@@ -15314,16 +15506,9 @@ const textField = {
15314
15506
  [vars$M.inputOutlineStyle]: refs.outlineStyle,
15315
15507
  [vars$M.inputOutlineColor]: refs.outlineColor,
15316
15508
  [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
- },
15509
+ [vars$M.revealButtonOffset]: globalRefs$v.spacing.md,
15510
+ [vars$M.revealButtonSize]: refs.toggleButtonSize,
15511
+ [vars$M.revealButtonColor]: refs.placeholderTextColor,
15327
15512
  [vars$M.labelPosition]: refs.labelPosition,
15328
15513
  [vars$M.labelTopPosition]: refs.labelTopPosition,
15329
15514
  [vars$M.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15333,23 +15518,17 @@ const textField = {
15333
15518
  [vars$M.placeholderOpacity]: refs.placeholderOpacity,
15334
15519
  [vars$M.inputVerticalAlignment]: refs.inputVerticalAlignment,
15335
15520
  [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
15521
  };
15341
15522
 
15342
- var textField$1 = /*#__PURE__*/Object.freeze({
15523
+ var password$1 = /*#__PURE__*/Object.freeze({
15343
15524
  __proto__: null,
15344
- default: textField,
15345
- textField: textField,
15525
+ default: password,
15346
15526
  vars: vars$M
15347
15527
  });
15348
15528
 
15349
- const globalRefs$u = getThemeRefs(globals);
15350
- const vars$L = PasswordClass.cssVarList;
15529
+ const vars$L = NumberFieldClass.cssVarList;
15351
15530
 
15352
- const password = {
15531
+ const numberField = {
15353
15532
  [vars$L.hostWidth]: refs.width,
15354
15533
  [vars$L.hostMinWidth]: refs.minWidth,
15355
15534
  [vars$L.hostDirection]: refs.direction,
@@ -15359,12 +15538,8 @@ const password = {
15359
15538
  [vars$L.labelFontWeight]: refs.labelFontWeight,
15360
15539
  [vars$L.labelTextColor]: refs.labelTextColor,
15361
15540
  [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,
15366
15541
  [vars$L.inputValueTextColor]: refs.valueTextColor,
15367
- [vars$L.inputPlaceholderTextColor]: refs.placeholderTextColor,
15542
+ [vars$L.inputPlaceholderColor]: refs.placeholderTextColor,
15368
15543
  [vars$L.inputBorderWidth]: refs.borderWidth,
15369
15544
  [vars$L.inputBorderStyle]: refs.borderStyle,
15370
15545
  [vars$L.inputBorderColor]: refs.borderColor,
@@ -15373,9 +15548,10 @@ const password = {
15373
15548
  [vars$L.inputOutlineStyle]: refs.outlineStyle,
15374
15549
  [vars$L.inputOutlineColor]: refs.outlineColor,
15375
15550
  [vars$L.inputOutlineOffset]: refs.outlineOffset,
15376
- [vars$L.revealButtonOffset]: globalRefs$u.spacing.md,
15377
- [vars$L.revealButtonSize]: refs.toggleButtonSize,
15378
- [vars$L.revealButtonColor]: refs.placeholderTextColor,
15551
+ [vars$L.inputBackgroundColor]: refs.backgroundColor,
15552
+ [vars$L.labelRequiredIndicator]: refs.requiredIndicator,
15553
+ [vars$L.inputHorizontalPadding]: refs.horizontalPadding,
15554
+ [vars$L.inputHeight]: refs.inputHeight,
15379
15555
  [vars$L.labelPosition]: refs.labelPosition,
15380
15556
  [vars$L.labelTopPosition]: refs.labelTopPosition,
15381
15557
  [vars$L.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15385,17 +15561,18 @@ const password = {
15385
15561
  [vars$L.placeholderOpacity]: refs.placeholderOpacity,
15386
15562
  [vars$L.inputVerticalAlignment]: refs.inputVerticalAlignment,
15387
15563
  [vars$L.valueInputHeight]: refs.valueInputHeight,
15564
+ [vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
15388
15565
  };
15389
15566
 
15390
- var password$1 = /*#__PURE__*/Object.freeze({
15567
+ var numberField$1 = /*#__PURE__*/Object.freeze({
15391
15568
  __proto__: null,
15392
- default: password,
15569
+ default: numberField,
15393
15570
  vars: vars$L
15394
15571
  });
15395
15572
 
15396
- const vars$K = NumberFieldClass.cssVarList;
15573
+ const vars$K = EmailFieldClass.cssVarList;
15397
15574
 
15398
- const numberField = {
15575
+ const emailField = {
15399
15576
  [vars$K.hostWidth]: refs.width,
15400
15577
  [vars$K.hostMinWidth]: refs.minWidth,
15401
15578
  [vars$K.hostDirection]: refs.direction,
@@ -15406,6 +15583,7 @@ const numberField = {
15406
15583
  [vars$K.labelTextColor]: refs.labelTextColor,
15407
15584
  [vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
15408
15585
  [vars$K.inputValueTextColor]: refs.valueTextColor,
15586
+ [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
15409
15587
  [vars$K.inputPlaceholderColor]: refs.placeholderTextColor,
15410
15588
  [vars$K.inputBorderWidth]: refs.borderWidth,
15411
15589
  [vars$K.inputBorderStyle]: refs.borderStyle,
@@ -15416,7 +15594,6 @@ const numberField = {
15416
15594
  [vars$K.inputOutlineColor]: refs.outlineColor,
15417
15595
  [vars$K.inputOutlineOffset]: refs.outlineOffset,
15418
15596
  [vars$K.inputBackgroundColor]: refs.backgroundColor,
15419
- [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
15420
15597
  [vars$K.inputHorizontalPadding]: refs.horizontalPadding,
15421
15598
  [vars$K.inputHeight]: refs.inputHeight,
15422
15599
  [vars$K.labelPosition]: refs.labelPosition,
@@ -15431,200 +15608,156 @@ const numberField = {
15431
15608
  [vars$K.valueInputMarginBottom]: refs.valueInputMarginBottom,
15432
15609
  };
15433
15610
 
15434
- var numberField$1 = /*#__PURE__*/Object.freeze({
15611
+ var emailField$1 = /*#__PURE__*/Object.freeze({
15435
15612
  __proto__: null,
15436
- default: numberField,
15613
+ default: emailField,
15437
15614
  vars: vars$K
15438
15615
  });
15439
15616
 
15440
- const vars$J = EmailFieldClass.cssVarList;
15617
+ const vars$J = TextAreaClass.cssVarList;
15441
15618
 
15442
- const emailField = {
15619
+ const textArea = {
15443
15620
  [vars$J.hostWidth]: refs.width,
15444
15621
  [vars$J.hostMinWidth]: refs.minWidth,
15445
15622
  [vars$J.hostDirection]: refs.direction,
15446
15623
  [vars$J.fontSize]: refs.fontSize,
15447
15624
  [vars$J.fontFamily]: refs.fontFamily,
15448
- [vars$J.labelFontSize]: refs.labelFontSize,
15449
- [vars$J.labelFontWeight]: refs.labelFontWeight,
15450
15625
  [vars$J.labelTextColor]: refs.labelTextColor,
15626
+ [vars$J.labelRequiredIndicator]: refs.requiredIndicator,
15451
15627
  [vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
15628
+ [vars$J.inputBackgroundColor]: refs.backgroundColor,
15452
15629
  [vars$J.inputValueTextColor]: refs.valueTextColor,
15453
- [vars$J.labelRequiredIndicator]: refs.requiredIndicator,
15454
- [vars$J.inputPlaceholderColor]: refs.placeholderTextColor,
15630
+ [vars$J.inputPlaceholderTextColor]: refs.placeholderTextColor,
15631
+ [vars$J.inputBorderRadius]: refs.borderRadius,
15455
15632
  [vars$J.inputBorderWidth]: refs.borderWidth,
15456
15633
  [vars$J.inputBorderStyle]: refs.borderStyle,
15457
15634
  [vars$J.inputBorderColor]: refs.borderColor,
15458
- [vars$J.inputBorderRadius]: refs.borderRadius,
15459
15635
  [vars$J.inputOutlineWidth]: refs.outlineWidth,
15460
15636
  [vars$J.inputOutlineStyle]: refs.outlineStyle,
15461
15637
  [vars$J.inputOutlineColor]: refs.outlineColor,
15462
15638
  [vars$J.inputOutlineOffset]: refs.outlineOffset,
15463
- [vars$J.inputBackgroundColor]: refs.backgroundColor,
15464
- [vars$J.inputHorizontalPadding]: refs.horizontalPadding,
15465
- [vars$J.inputHeight]: refs.inputHeight,
15466
- [vars$J.labelPosition]: refs.labelPosition,
15467
- [vars$J.labelTopPosition]: refs.labelTopPosition,
15468
- [vars$J.labelHorizontalPosition]: refs.labelHorizontalPosition,
15469
- [vars$J.inputTransformY]: refs.inputTransformY,
15470
- [vars$J.inputTransition]: refs.inputTransition,
15471
- [vars$J.marginInlineStart]: refs.marginInlineStart,
15472
- [vars$J.placeholderOpacity]: refs.placeholderOpacity,
15473
- [vars$J.inputVerticalAlignment]: refs.inputVerticalAlignment,
15474
- [vars$J.valueInputHeight]: refs.valueInputHeight,
15475
- [vars$J.valueInputMarginBottom]: refs.valueInputMarginBottom,
15639
+ [vars$J.inputResizeType]: 'vertical',
15640
+ [vars$J.inputMinHeight]: '5em',
15641
+ textAlign: {
15642
+ right: { [vars$J.inputTextAlign]: 'right' },
15643
+ left: { [vars$J.inputTextAlign]: 'left' },
15644
+ center: { [vars$J.inputTextAlign]: 'center' },
15645
+ },
15646
+
15647
+ _readonly: {
15648
+ [vars$J.inputResizeType]: 'none',
15649
+ },
15476
15650
  };
15477
15651
 
15478
- var emailField$1 = /*#__PURE__*/Object.freeze({
15652
+ var textArea$1 = /*#__PURE__*/Object.freeze({
15479
15653
  __proto__: null,
15480
- default: emailField,
15654
+ default: textArea,
15481
15655
  vars: vars$J
15482
15656
  });
15483
15657
 
15484
- const vars$I = TextAreaClass.cssVarList;
15658
+ const vars$I = CheckboxClass.cssVarList;
15659
+ const checkboxSize = '1.35em';
15485
15660
 
15486
- const textArea = {
15661
+ const checkbox = {
15487
15662
  [vars$I.hostWidth]: refs.width,
15488
- [vars$I.hostMinWidth]: refs.minWidth,
15489
15663
  [vars$I.hostDirection]: refs.direction,
15490
15664
  [vars$I.fontSize]: refs.fontSize,
15491
15665
  [vars$I.fontFamily]: refs.fontFamily,
15492
15666
  [vars$I.labelTextColor]: refs.labelTextColor,
15493
15667
  [vars$I.labelRequiredIndicator]: refs.requiredIndicator,
15668
+ [vars$I.labelFontWeight]: '400',
15669
+ [vars$I.labelLineHeight]: checkboxSize,
15670
+ [vars$I.labelSpacing]: '1em',
15494
15671
  [vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
15495
- [vars$I.inputBackgroundColor]: refs.backgroundColor,
15496
- [vars$I.inputValueTextColor]: refs.valueTextColor,
15497
- [vars$I.inputPlaceholderTextColor]: refs.placeholderTextColor,
15672
+ [vars$I.inputOutlineWidth]: refs.outlineWidth,
15673
+ [vars$I.inputOutlineOffset]: refs.outlineOffset,
15674
+ [vars$I.inputOutlineColor]: refs.outlineColor,
15675
+ [vars$I.inputOutlineStyle]: refs.outlineStyle,
15498
15676
  [vars$I.inputBorderRadius]: refs.borderRadius,
15677
+ [vars$I.inputBorderColor]: refs.borderColor,
15499
15678
  [vars$I.inputBorderWidth]: refs.borderWidth,
15500
15679
  [vars$I.inputBorderStyle]: refs.borderStyle,
15501
- [vars$I.inputBorderColor]: refs.borderColor,
15502
- [vars$I.inputOutlineWidth]: refs.outlineWidth,
15503
- [vars$I.inputOutlineStyle]: refs.outlineStyle,
15504
- [vars$I.inputOutlineColor]: refs.outlineColor,
15505
- [vars$I.inputOutlineOffset]: refs.outlineOffset,
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
- },
15680
+ [vars$I.inputBackgroundColor]: refs.backgroundColor,
15681
+ [vars$I.inputSize]: checkboxSize,
15682
+ [vars$I.inputValueTextColor]: refs.valueTextColor,
15517
15683
  };
15518
15684
 
15519
- var textArea$1 = /*#__PURE__*/Object.freeze({
15685
+ var checkbox$1 = /*#__PURE__*/Object.freeze({
15520
15686
  __proto__: null,
15521
- default: textArea,
15687
+ default: checkbox,
15522
15688
  vars: vars$I
15523
15689
  });
15524
15690
 
15525
- const vars$H = CheckboxClass.cssVarList;
15526
- const checkboxSize = '1.35em';
15691
+ const knobMargin = '2px';
15692
+ const checkboxHeight = '1.25em';
15527
15693
 
15528
- const checkbox = {
15694
+ const globalRefs$u = getThemeRefs(globals);
15695
+ const vars$H = SwitchToggleClass.cssVarList;
15696
+
15697
+ const switchToggle = {
15529
15698
  [vars$H.hostWidth]: refs.width,
15530
15699
  [vars$H.hostDirection]: refs.direction,
15531
15700
  [vars$H.fontSize]: refs.fontSize,
15532
15701
  [vars$H.fontFamily]: refs.fontFamily,
15533
- [vars$H.labelTextColor]: refs.labelTextColor,
15534
- [vars$H.labelRequiredIndicator]: refs.requiredIndicator,
15535
- [vars$H.labelFontWeight]: '400',
15536
- [vars$H.labelLineHeight]: checkboxSize,
15537
- [vars$H.labelSpacing]: '1em',
15538
- [vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
15702
+
15539
15703
  [vars$H.inputOutlineWidth]: refs.outlineWidth,
15540
15704
  [vars$H.inputOutlineOffset]: refs.outlineOffset,
15541
15705
  [vars$H.inputOutlineColor]: refs.outlineColor,
15542
15706
  [vars$H.inputOutlineStyle]: refs.outlineStyle,
15543
- [vars$H.inputBorderRadius]: refs.borderRadius,
15544
- [vars$H.inputBorderColor]: refs.borderColor,
15545
- [vars$H.inputBorderWidth]: refs.borderWidth,
15546
- [vars$H.inputBorderStyle]: refs.borderStyle,
15547
- [vars$H.inputBackgroundColor]: refs.backgroundColor,
15548
- [vars$H.inputSize]: checkboxSize,
15549
- [vars$H.inputValueTextColor]: refs.valueTextColor,
15550
- };
15551
15707
 
15552
- var checkbox$1 = /*#__PURE__*/Object.freeze({
15553
- __proto__: null,
15554
- default: checkbox,
15555
- vars: vars$H
15556
- });
15708
+ [vars$H.trackBorderStyle]: refs.borderStyle,
15709
+ [vars$H.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
15710
+ [vars$H.trackBorderColor]: refs.borderColor,
15711
+ [vars$H.trackBackgroundColor]: refs.backgroundColor,
15712
+ [vars$H.trackBorderRadius]: globalRefs$u.radius.md,
15713
+ [vars$H.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
15714
+ [vars$H.trackHeight]: checkboxHeight,
15715
+
15716
+ [vars$H.knobSize]: `calc(1em - ${knobMargin})`,
15717
+ [vars$H.knobRadius]: '50%',
15718
+ [vars$H.knobTopOffset]: '1px',
15719
+ [vars$H.knobLeftOffset]: knobMargin,
15720
+ [vars$H.knobColor]: refs.labelTextColor,
15721
+ [vars$H.knobTransitionDuration]: '0.3s',
15557
15722
 
15558
- const knobMargin = '2px';
15559
- const checkboxHeight = '1.25em';
15560
-
15561
- const globalRefs$t = getThemeRefs(globals);
15562
- const vars$G = SwitchToggleClass.cssVarList;
15563
-
15564
- const switchToggle = {
15565
- [vars$G.hostWidth]: refs.width,
15566
- [vars$G.hostDirection]: refs.direction,
15567
- [vars$G.fontSize]: refs.fontSize,
15568
- [vars$G.fontFamily]: refs.fontFamily,
15569
-
15570
- [vars$G.inputOutlineWidth]: refs.outlineWidth,
15571
- [vars$G.inputOutlineOffset]: refs.outlineOffset,
15572
- [vars$G.inputOutlineColor]: refs.outlineColor,
15573
- [vars$G.inputOutlineStyle]: refs.outlineStyle,
15574
-
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',
15589
-
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,
15723
+ [vars$H.labelTextColor]: refs.labelTextColor,
15724
+ [vars$H.labelFontWeight]: '400',
15725
+ [vars$H.labelLineHeight]: '1.35em',
15726
+ [vars$H.labelSpacing]: '1em',
15727
+ [vars$H.labelRequiredIndicator]: refs.requiredIndicator,
15728
+ [vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
15596
15729
 
15597
15730
  _checked: {
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,
15731
+ [vars$H.trackBorderColor]: refs.borderColor,
15732
+ [vars$H.knobLeftOffset]: `calc(100% - var(${vars$H.knobSize}) - ${knobMargin})`,
15733
+ [vars$H.knobColor]: refs.valueTextColor,
15734
+ [vars$H.knobTextColor]: refs.valueTextColor,
15602
15735
  },
15603
15736
 
15604
15737
  _disabled: {
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,
15738
+ [vars$H.knobColor]: globalRefs$u.colors.surface.light,
15739
+ [vars$H.trackBorderColor]: globalRefs$u.colors.surface.light,
15740
+ [vars$H.trackBackgroundColor]: globalRefs$u.colors.surface.main,
15741
+ [vars$H.labelTextColor]: refs.labelTextColor,
15609
15742
  _checked: {
15610
- [vars$G.knobColor]: globalRefs$t.colors.surface.light,
15611
- [vars$G.trackBackgroundColor]: globalRefs$t.colors.surface.main,
15743
+ [vars$H.knobColor]: globalRefs$u.colors.surface.light,
15744
+ [vars$H.trackBackgroundColor]: globalRefs$u.colors.surface.main,
15612
15745
  },
15613
15746
  },
15614
15747
 
15615
15748
  _invalid: {
15616
- [vars$G.trackBorderColor]: globalRefs$t.colors.error.main,
15617
- [vars$G.knobColor]: globalRefs$t.colors.error.main,
15749
+ [vars$H.trackBorderColor]: globalRefs$u.colors.error.main,
15750
+ [vars$H.knobColor]: globalRefs$u.colors.error.main,
15618
15751
  },
15619
15752
  };
15620
15753
 
15621
15754
  var switchToggle$1 = /*#__PURE__*/Object.freeze({
15622
15755
  __proto__: null,
15623
15756
  default: switchToggle,
15624
- vars: vars$G
15757
+ vars: vars$H
15625
15758
  });
15626
15759
 
15627
- const globalRefs$s = getThemeRefs(globals);
15760
+ const globalRefs$t = getThemeRefs(globals);
15628
15761
 
15629
15762
  const compVars$5 = ContainerClass.cssVarList;
15630
15763
 
@@ -15646,7 +15779,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
15646
15779
  horizontalAlignment,
15647
15780
  shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
15648
15781
  },
15649
- componentName$W
15782
+ componentName$X
15650
15783
  );
15651
15784
 
15652
15785
  const { shadowColor: shadowColor$3 } = helperRefs$3;
@@ -15657,10 +15790,10 @@ const container = {
15657
15790
  [compVars$5.itemsGrow]: '0',
15658
15791
  [compVars$5.hostWidth]: '100%',
15659
15792
  [compVars$5.boxShadow]: 'none',
15660
- [compVars$5.backgroundColor]: globalRefs$s.colors.surface.main,
15661
- [compVars$5.color]: globalRefs$s.colors.surface.contrast,
15793
+ [compVars$5.backgroundColor]: globalRefs$t.colors.surface.main,
15794
+ [compVars$5.color]: globalRefs$t.colors.surface.contrast,
15662
15795
  [compVars$5.borderRadius]: '0px',
15663
- [compVars$5.hostDirection]: globalRefs$s.direction,
15796
+ [compVars$5.hostDirection]: globalRefs$t.direction,
15664
15797
 
15665
15798
  verticalPadding: {
15666
15799
  sm: { [compVars$5.verticalPadding]: '5px' },
@@ -15706,34 +15839,34 @@ const container = {
15706
15839
 
15707
15840
  shadow: {
15708
15841
  sm: {
15709
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide.sm} ${shadowColor$3}, ${globalRefs$s.shadow.narrow.sm} ${shadowColor$3}`,
15842
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide.sm} ${shadowColor$3}, ${globalRefs$t.shadow.narrow.sm} ${shadowColor$3}`,
15710
15843
  },
15711
15844
  md: {
15712
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide.md} ${shadowColor$3}, ${globalRefs$s.shadow.narrow.md} ${shadowColor$3}`,
15845
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide.md} ${shadowColor$3}, ${globalRefs$t.shadow.narrow.md} ${shadowColor$3}`,
15713
15846
  },
15714
15847
  lg: {
15715
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide.lg} ${shadowColor$3}, ${globalRefs$s.shadow.narrow.lg} ${shadowColor$3}`,
15848
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide.lg} ${shadowColor$3}, ${globalRefs$t.shadow.narrow.lg} ${shadowColor$3}`,
15716
15849
  },
15717
15850
  xl: {
15718
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide.xl} ${shadowColor$3}, ${globalRefs$s.shadow.narrow.xl} ${shadowColor$3}`,
15851
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide.xl} ${shadowColor$3}, ${globalRefs$t.shadow.narrow.xl} ${shadowColor$3}`,
15719
15852
  },
15720
15853
  '2xl': {
15721
15854
  [helperVars$3.shadowColor]: '#00000050', // mimic daisyUI shadow settings
15722
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide['2xl']} ${shadowColor$3}`,
15855
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide['2xl']} ${shadowColor$3}`,
15723
15856
  },
15724
15857
  },
15725
15858
 
15726
15859
  borderRadius: {
15727
- sm: { [compVars$5.borderRadius]: globalRefs$s.radius.sm },
15728
- md: { [compVars$5.borderRadius]: globalRefs$s.radius.md },
15729
- lg: { [compVars$5.borderRadius]: globalRefs$s.radius.lg },
15730
- xl: { [compVars$5.borderRadius]: globalRefs$s.radius.xl },
15731
- '2xl': { [compVars$5.borderRadius]: globalRefs$s.radius['2xl'] },
15732
- '3xl': { [compVars$5.borderRadius]: globalRefs$s.radius['3xl'] },
15860
+ sm: { [compVars$5.borderRadius]: globalRefs$t.radius.sm },
15861
+ md: { [compVars$5.borderRadius]: globalRefs$t.radius.md },
15862
+ lg: { [compVars$5.borderRadius]: globalRefs$t.radius.lg },
15863
+ xl: { [compVars$5.borderRadius]: globalRefs$t.radius.xl },
15864
+ '2xl': { [compVars$5.borderRadius]: globalRefs$t.radius['2xl'] },
15865
+ '3xl': { [compVars$5.borderRadius]: globalRefs$t.radius['3xl'] },
15733
15866
  },
15734
15867
  };
15735
15868
 
15736
- const vars$F = {
15869
+ const vars$G = {
15737
15870
  ...compVars$5,
15738
15871
  ...helperVars$3,
15739
15872
  };
@@ -15741,168 +15874,168 @@ const vars$F = {
15741
15874
  var container$1 = /*#__PURE__*/Object.freeze({
15742
15875
  __proto__: null,
15743
15876
  default: container,
15744
- vars: vars$F
15877
+ vars: vars$G
15745
15878
  });
15746
15879
 
15747
- const vars$E = LogoClass.cssVarList;
15880
+ const vars$F = LogoClass.cssVarList;
15748
15881
 
15749
15882
  const logo$2 = {
15750
- [vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
15883
+ [vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
15751
15884
  };
15752
15885
 
15753
15886
  var logo$3 = /*#__PURE__*/Object.freeze({
15754
15887
  __proto__: null,
15755
15888
  default: logo$2,
15756
- vars: vars$E
15889
+ vars: vars$F
15757
15890
  });
15758
15891
 
15759
- const vars$D = TotpImageClass.cssVarList;
15892
+ const vars$E = TotpImageClass.cssVarList;
15760
15893
 
15761
15894
  const logo$1 = {
15762
- [vars$D.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
15895
+ [vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
15763
15896
  };
15764
15897
 
15765
15898
  var totpImage = /*#__PURE__*/Object.freeze({
15766
15899
  __proto__: null,
15767
15900
  default: logo$1,
15768
- vars: vars$D
15901
+ vars: vars$E
15769
15902
  });
15770
15903
 
15771
- const vars$C = NotpImageClass.cssVarList;
15904
+ const vars$D = NotpImageClass.cssVarList;
15772
15905
 
15773
15906
  const logo = {
15774
- [vars$C.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
15907
+ [vars$D.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
15775
15908
  };
15776
15909
 
15777
15910
  var notpImage = /*#__PURE__*/Object.freeze({
15778
15911
  __proto__: null,
15779
15912
  default: logo,
15780
- vars: vars$C
15913
+ vars: vars$D
15781
15914
  });
15782
15915
 
15783
- const globalRefs$r = getThemeRefs(globals);
15784
- const vars$B = TextClass.cssVarList;
15916
+ const globalRefs$s = getThemeRefs(globals);
15917
+ const vars$C = TextClass.cssVarList;
15785
15918
 
15786
15919
  const text = {
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,
15920
+ [vars$C.hostDirection]: globalRefs$s.direction,
15921
+ [vars$C.textLineHeight]: '1.35em',
15922
+ [vars$C.textAlign]: 'left',
15923
+ [vars$C.textColor]: globalRefs$s.colors.surface.dark,
15791
15924
 
15792
15925
  variant: {
15793
15926
  h1: {
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,
15927
+ [vars$C.fontSize]: globalRefs$s.typography.h1.size,
15928
+ [vars$C.fontWeight]: globalRefs$s.typography.h1.weight,
15929
+ [vars$C.fontFamily]: globalRefs$s.typography.h1.font,
15797
15930
  },
15798
15931
  h2: {
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,
15932
+ [vars$C.fontSize]: globalRefs$s.typography.h2.size,
15933
+ [vars$C.fontWeight]: globalRefs$s.typography.h2.weight,
15934
+ [vars$C.fontFamily]: globalRefs$s.typography.h2.font,
15802
15935
  },
15803
15936
  h3: {
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,
15937
+ [vars$C.fontSize]: globalRefs$s.typography.h3.size,
15938
+ [vars$C.fontWeight]: globalRefs$s.typography.h3.weight,
15939
+ [vars$C.fontFamily]: globalRefs$s.typography.h3.font,
15807
15940
  },
15808
15941
  subtitle1: {
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,
15942
+ [vars$C.fontSize]: globalRefs$s.typography.subtitle1.size,
15943
+ [vars$C.fontWeight]: globalRefs$s.typography.subtitle1.weight,
15944
+ [vars$C.fontFamily]: globalRefs$s.typography.subtitle1.font,
15812
15945
  },
15813
15946
  subtitle2: {
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,
15947
+ [vars$C.fontSize]: globalRefs$s.typography.subtitle2.size,
15948
+ [vars$C.fontWeight]: globalRefs$s.typography.subtitle2.weight,
15949
+ [vars$C.fontFamily]: globalRefs$s.typography.subtitle2.font,
15817
15950
  },
15818
15951
  body1: {
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,
15952
+ [vars$C.fontSize]: globalRefs$s.typography.body1.size,
15953
+ [vars$C.fontWeight]: globalRefs$s.typography.body1.weight,
15954
+ [vars$C.fontFamily]: globalRefs$s.typography.body1.font,
15822
15955
  },
15823
15956
  body2: {
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,
15957
+ [vars$C.fontSize]: globalRefs$s.typography.body2.size,
15958
+ [vars$C.fontWeight]: globalRefs$s.typography.body2.weight,
15959
+ [vars$C.fontFamily]: globalRefs$s.typography.body2.font,
15827
15960
  },
15828
15961
  },
15829
15962
 
15830
15963
  mode: {
15831
15964
  primary: {
15832
- [vars$B.textColor]: globalRefs$r.colors.surface.contrast,
15965
+ [vars$C.textColor]: globalRefs$s.colors.surface.contrast,
15833
15966
  },
15834
15967
  secondary: {
15835
- [vars$B.textColor]: globalRefs$r.colors.surface.dark,
15968
+ [vars$C.textColor]: globalRefs$s.colors.surface.dark,
15836
15969
  },
15837
15970
  error: {
15838
- [vars$B.textColor]: globalRefs$r.colors.error.main,
15971
+ [vars$C.textColor]: globalRefs$s.colors.error.main,
15839
15972
  },
15840
15973
  success: {
15841
- [vars$B.textColor]: globalRefs$r.colors.success.main,
15974
+ [vars$C.textColor]: globalRefs$s.colors.success.main,
15842
15975
  },
15843
15976
  },
15844
15977
 
15845
15978
  textAlign: {
15846
- right: { [vars$B.textAlign]: 'right' },
15847
- left: { [vars$B.textAlign]: 'left' },
15848
- center: { [vars$B.textAlign]: 'center' },
15979
+ right: { [vars$C.textAlign]: 'right' },
15980
+ left: { [vars$C.textAlign]: 'left' },
15981
+ center: { [vars$C.textAlign]: 'center' },
15849
15982
  },
15850
15983
 
15851
15984
  _fullWidth: {
15852
- [vars$B.hostWidth]: '100%',
15985
+ [vars$C.hostWidth]: '100%',
15853
15986
  },
15854
15987
 
15855
15988
  _italic: {
15856
- [vars$B.fontStyle]: 'italic',
15989
+ [vars$C.fontStyle]: 'italic',
15857
15990
  },
15858
15991
 
15859
15992
  _uppercase: {
15860
- [vars$B.textTransform]: 'uppercase',
15993
+ [vars$C.textTransform]: 'uppercase',
15861
15994
  },
15862
15995
 
15863
15996
  _lowercase: {
15864
- [vars$B.textTransform]: 'lowercase',
15997
+ [vars$C.textTransform]: 'lowercase',
15865
15998
  },
15866
15999
  };
15867
16000
 
15868
16001
  var text$1 = /*#__PURE__*/Object.freeze({
15869
16002
  __proto__: null,
15870
16003
  default: text,
15871
- vars: vars$B
16004
+ vars: vars$C
15872
16005
  });
15873
16006
 
15874
- const globalRefs$q = getThemeRefs(globals);
15875
- const vars$A = LinkClass.cssVarList;
16007
+ const globalRefs$r = getThemeRefs(globals);
16008
+ const vars$B = LinkClass.cssVarList;
15876
16009
 
15877
16010
  const link = {
15878
- [vars$A.hostDirection]: globalRefs$q.direction,
15879
- [vars$A.cursor]: 'pointer',
16011
+ [vars$B.hostDirection]: globalRefs$r.direction,
16012
+ [vars$B.cursor]: 'pointer',
15880
16013
 
15881
- [vars$A.textColor]: globalRefs$q.colors.primary.main,
16014
+ [vars$B.textColor]: globalRefs$r.colors.primary.main,
15882
16015
 
15883
16016
  textAlign: {
15884
- right: { [vars$A.textAlign]: 'right' },
15885
- left: { [vars$A.textAlign]: 'left' },
15886
- center: { [vars$A.textAlign]: 'center' },
16017
+ right: { [vars$B.textAlign]: 'right' },
16018
+ left: { [vars$B.textAlign]: 'left' },
16019
+ center: { [vars$B.textAlign]: 'center' },
15887
16020
  },
15888
16021
 
15889
16022
  _fullWidth: {
15890
- [vars$A.hostWidth]: '100%',
16023
+ [vars$B.hostWidth]: '100%',
15891
16024
  },
15892
16025
 
15893
16026
  _hover: {
15894
- [vars$A.textDecoration]: 'underline',
16027
+ [vars$B.textDecoration]: 'underline',
15895
16028
  },
15896
16029
 
15897
16030
  mode: {
15898
16031
  secondary: {
15899
- [vars$A.textColor]: globalRefs$q.colors.secondary.main,
16032
+ [vars$B.textColor]: globalRefs$r.colors.secondary.main,
15900
16033
  },
15901
16034
  error: {
15902
- [vars$A.textColor]: globalRefs$q.colors.error.main,
16035
+ [vars$B.textColor]: globalRefs$r.colors.error.main,
15903
16036
  },
15904
16037
  success: {
15905
- [vars$A.textColor]: globalRefs$q.colors.success.main,
16038
+ [vars$B.textColor]: globalRefs$r.colors.success.main,
15906
16039
  },
15907
16040
  },
15908
16041
  };
@@ -15910,37 +16043,37 @@ const link = {
15910
16043
  var link$1 = /*#__PURE__*/Object.freeze({
15911
16044
  __proto__: null,
15912
16045
  default: link,
15913
- vars: vars$A
16046
+ vars: vars$B
15914
16047
  });
15915
16048
 
15916
- const globalRefs$p = getThemeRefs(globals);
15917
- const vars$z = EnrichedTextClass.cssVarList;
16049
+ const globalRefs$q = getThemeRefs(globals);
16050
+ const vars$A = EnrichedTextClass.cssVarList;
15918
16051
 
15919
16052
  const enrichedText = {
15920
- [vars$z.hostDirection]: globalRefs$p.direction,
15921
- [vars$z.hostWidth]: useVar(vars$B.hostWidth),
16053
+ [vars$A.hostDirection]: globalRefs$q.direction,
16054
+ [vars$A.hostWidth]: useVar(vars$C.hostWidth),
15922
16055
 
15923
- [vars$z.textLineHeight]: useVar(vars$B.textLineHeight),
15924
- [vars$z.textColor]: useVar(vars$B.textColor),
15925
- [vars$z.textAlign]: useVar(vars$B.textAlign),
16056
+ [vars$A.textLineHeight]: useVar(vars$C.textLineHeight),
16057
+ [vars$A.textColor]: useVar(vars$C.textColor),
16058
+ [vars$A.textAlign]: useVar(vars$C.textAlign),
15926
16059
 
15927
- [vars$z.fontSize]: useVar(vars$B.fontSize),
15928
- [vars$z.fontWeight]: useVar(vars$B.fontWeight),
15929
- [vars$z.fontFamily]: useVar(vars$B.fontFamily),
16060
+ [vars$A.fontSize]: useVar(vars$C.fontSize),
16061
+ [vars$A.fontWeight]: useVar(vars$C.fontWeight),
16062
+ [vars$A.fontFamily]: useVar(vars$C.fontFamily),
15930
16063
 
15931
- [vars$z.linkColor]: useVar(vars$A.textColor),
15932
- [vars$z.linkTextDecoration]: 'none',
15933
- [vars$z.linkHoverTextDecoration]: 'underline',
16064
+ [vars$A.linkColor]: useVar(vars$B.textColor),
16065
+ [vars$A.linkTextDecoration]: 'none',
16066
+ [vars$A.linkHoverTextDecoration]: 'underline',
15934
16067
 
15935
- [vars$z.fontWeightBold]: '900',
15936
- [vars$z.minWidth]: '0.25em',
15937
- [vars$z.minHeight]: '1.35em',
16068
+ [vars$A.fontWeightBold]: '900',
16069
+ [vars$A.minWidth]: '0.25em',
16070
+ [vars$A.minHeight]: '1.35em',
15938
16071
 
15939
- [vars$z.hostDisplay]: 'inline-block',
16072
+ [vars$A.hostDisplay]: 'inline-block',
15940
16073
 
15941
16074
  _empty: {
15942
16075
  _hideWhenEmpty: {
15943
- [vars$z.hostDisplay]: 'none',
16076
+ [vars$A.hostDisplay]: 'none',
15944
16077
  },
15945
16078
  },
15946
16079
  };
@@ -15948,10 +16081,10 @@ const enrichedText = {
15948
16081
  var enrichedText$1 = /*#__PURE__*/Object.freeze({
15949
16082
  __proto__: null,
15950
16083
  default: enrichedText,
15951
- vars: vars$z
16084
+ vars: vars$A
15952
16085
  });
15953
16086
 
15954
- const globalRefs$o = getThemeRefs(globals);
16087
+ const globalRefs$p = getThemeRefs(globals);
15955
16088
  const compVars$4 = DividerClass.cssVarList;
15956
16089
 
15957
16090
  const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
@@ -15959,18 +16092,18 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
15959
16092
  thickness: '2px',
15960
16093
  spacing: '10px',
15961
16094
  },
15962
- componentName$Q
16095
+ componentName$R
15963
16096
  );
15964
16097
 
15965
16098
  const divider = {
15966
16099
  ...helperTheme$2,
15967
16100
 
15968
- [compVars$4.hostDirection]: globalRefs$o.direction,
16101
+ [compVars$4.hostDirection]: globalRefs$p.direction,
15969
16102
  [compVars$4.alignItems]: 'center',
15970
16103
  [compVars$4.flexDirection]: 'row',
15971
16104
  [compVars$4.alignSelf]: 'stretch',
15972
16105
  [compVars$4.hostWidth]: '100%',
15973
- [compVars$4.stripeColor]: globalRefs$o.colors.surface.light,
16106
+ [compVars$4.stripeColor]: globalRefs$p.colors.surface.light,
15974
16107
  [compVars$4.stripeColorOpacity]: '0.5',
15975
16108
  [compVars$4.stripeHorizontalThickness]: helperRefs$2.thickness,
15976
16109
  [compVars$4.labelTextWidth]: 'fit-content',
@@ -15990,7 +16123,7 @@ const divider = {
15990
16123
  },
15991
16124
  };
15992
16125
 
15993
- const vars$y = {
16126
+ const vars$z = {
15994
16127
  ...compVars$4,
15995
16128
  ...helperVars$2,
15996
16129
  };
@@ -15998,111 +16131,111 @@ const vars$y = {
15998
16131
  var divider$1 = /*#__PURE__*/Object.freeze({
15999
16132
  __proto__: null,
16000
16133
  default: divider,
16001
- vars: vars$y
16134
+ vars: vars$z
16002
16135
  });
16003
16136
 
16004
- const vars$x = PasscodeClass.cssVarList;
16137
+ const vars$y = PasscodeClass.cssVarList;
16005
16138
 
16006
16139
  const passcode = {
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,
16140
+ [vars$y.hostDirection]: refs.direction,
16141
+ [vars$y.fontFamily]: refs.fontFamily,
16142
+ [vars$y.fontSize]: refs.fontSize,
16143
+ [vars$y.labelTextColor]: refs.labelTextColor,
16144
+ [vars$y.labelRequiredIndicator]: refs.requiredIndicator,
16145
+ [vars$y.errorMessageTextColor]: refs.errorMessageTextColor,
16146
+ [vars$y.digitValueTextColor]: refs.valueTextColor,
16147
+ [vars$y.digitPadding]: '0',
16148
+ [vars$y.digitTextAlign]: 'center',
16149
+ [vars$y.digitSpacing]: '4px',
16150
+ [vars$y.hostWidth]: refs.width,
16151
+ [vars$y.digitOutlineColor]: 'transparent',
16152
+ [vars$y.digitOutlineWidth]: refs.outlineWidth,
16153
+ [vars$y.focusedDigitFieldOutlineColor]: refs.outlineColor,
16154
+ [vars$y.digitSize]: refs.inputHeight,
16022
16155
 
16023
16156
  size: {
16024
- xs: { [vars$x.spinnerSize]: '15px' },
16025
- sm: { [vars$x.spinnerSize]: '20px' },
16026
- md: { [vars$x.spinnerSize]: '20px' },
16027
- lg: { [vars$x.spinnerSize]: '20px' },
16157
+ xs: { [vars$y.spinnerSize]: '15px' },
16158
+ sm: { [vars$y.spinnerSize]: '20px' },
16159
+ md: { [vars$y.spinnerSize]: '20px' },
16160
+ lg: { [vars$y.spinnerSize]: '20px' },
16028
16161
  },
16029
16162
 
16030
16163
  _hideCursor: {
16031
- [vars$x.digitCaretTextColor]: 'transparent',
16164
+ [vars$y.digitCaretTextColor]: 'transparent',
16032
16165
  },
16033
16166
 
16034
16167
  _loading: {
16035
- [vars$x.overlayOpacity]: refs.overlayOpacity,
16168
+ [vars$y.overlayOpacity]: refs.overlayOpacity,
16036
16169
  },
16037
16170
  };
16038
16171
 
16039
16172
  var passcode$1 = /*#__PURE__*/Object.freeze({
16040
16173
  __proto__: null,
16041
16174
  default: passcode,
16042
- vars: vars$x
16175
+ vars: vars$y
16043
16176
  });
16044
16177
 
16045
- const globalRefs$n = getThemeRefs(globals);
16046
- const vars$w = LoaderLinearClass.cssVarList;
16178
+ const globalRefs$o = getThemeRefs(globals);
16179
+ const vars$x = LoaderLinearClass.cssVarList;
16047
16180
 
16048
16181
  const loaderLinear = {
16049
- [vars$w.hostDisplay]: 'inline-block',
16050
- [vars$w.hostWidth]: '100%',
16182
+ [vars$x.hostDisplay]: 'inline-block',
16183
+ [vars$x.hostWidth]: '100%',
16051
16184
 
16052
- [vars$w.barColor]: globalRefs$n.colors.surface.contrast,
16053
- [vars$w.barWidth]: '20%',
16185
+ [vars$x.barColor]: globalRefs$o.colors.surface.contrast,
16186
+ [vars$x.barWidth]: '20%',
16054
16187
 
16055
- [vars$w.barBackgroundColor]: globalRefs$n.colors.surface.light,
16056
- [vars$w.barBorderRadius]: '4px',
16188
+ [vars$x.barBackgroundColor]: globalRefs$o.colors.surface.light,
16189
+ [vars$x.barBorderRadius]: '4px',
16057
16190
 
16058
- [vars$w.animationDuration]: '2s',
16059
- [vars$w.animationTimingFunction]: 'linear',
16060
- [vars$w.animationIterationCount]: 'infinite',
16061
- [vars$w.verticalPadding]: '0.25em',
16191
+ [vars$x.animationDuration]: '2s',
16192
+ [vars$x.animationTimingFunction]: 'linear',
16193
+ [vars$x.animationIterationCount]: 'infinite',
16194
+ [vars$x.verticalPadding]: '0.25em',
16062
16195
 
16063
16196
  size: {
16064
- xs: { [vars$w.barHeight]: '2px' },
16065
- sm: { [vars$w.barHeight]: '4px' },
16066
- md: { [vars$w.barHeight]: '6px' },
16067
- lg: { [vars$w.barHeight]: '8px' },
16197
+ xs: { [vars$x.barHeight]: '2px' },
16198
+ sm: { [vars$x.barHeight]: '4px' },
16199
+ md: { [vars$x.barHeight]: '6px' },
16200
+ lg: { [vars$x.barHeight]: '8px' },
16068
16201
  },
16069
16202
 
16070
16203
  mode: {
16071
16204
  primary: {
16072
- [vars$w.barColor]: globalRefs$n.colors.primary.main,
16205
+ [vars$x.barColor]: globalRefs$o.colors.primary.main,
16073
16206
  },
16074
16207
  secondary: {
16075
- [vars$w.barColor]: globalRefs$n.colors.secondary.main,
16208
+ [vars$x.barColor]: globalRefs$o.colors.secondary.main,
16076
16209
  },
16077
16210
  },
16078
16211
 
16079
16212
  _hidden: {
16080
- [vars$w.hostDisplay]: 'none',
16213
+ [vars$x.hostDisplay]: 'none',
16081
16214
  },
16082
16215
  };
16083
16216
 
16084
16217
  var loaderLinear$1 = /*#__PURE__*/Object.freeze({
16085
16218
  __proto__: null,
16086
16219
  default: loaderLinear,
16087
- vars: vars$w
16220
+ vars: vars$x
16088
16221
  });
16089
16222
 
16090
- const globalRefs$m = getThemeRefs(globals);
16223
+ const globalRefs$n = getThemeRefs(globals);
16091
16224
  const compVars$3 = LoaderRadialClass.cssVarList;
16092
16225
 
16093
16226
  const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
16094
16227
  {
16095
- spinnerColor: globalRefs$m.colors.surface.contrast,
16228
+ spinnerColor: globalRefs$n.colors.surface.contrast,
16096
16229
  mode: {
16097
16230
  primary: {
16098
- spinnerColor: globalRefs$m.colors.primary.main,
16231
+ spinnerColor: globalRefs$n.colors.primary.main,
16099
16232
  },
16100
16233
  secondary: {
16101
- spinnerColor: globalRefs$m.colors.secondary.main,
16234
+ spinnerColor: globalRefs$n.colors.secondary.main,
16102
16235
  },
16103
16236
  },
16104
16237
  },
16105
- componentName$X
16238
+ componentName$Y
16106
16239
  );
16107
16240
 
16108
16241
  const loaderRadial = {
@@ -16131,7 +16264,7 @@ const loaderRadial = {
16131
16264
  [compVars$3.hostDisplay]: 'none',
16132
16265
  },
16133
16266
  };
16134
- const vars$v = {
16267
+ const vars$w = {
16135
16268
  ...compVars$3,
16136
16269
  ...helperVars$1,
16137
16270
  };
@@ -16139,93 +16272,134 @@ const vars$v = {
16139
16272
  var loaderRadial$1 = /*#__PURE__*/Object.freeze({
16140
16273
  __proto__: null,
16141
16274
  default: loaderRadial,
16142
- vars: vars$v
16275
+ vars: vars$w
16143
16276
  });
16144
16277
 
16145
- const globalRefs$l = getThemeRefs(globals);
16146
- const vars$u = ComboBoxClass.cssVarList;
16278
+ const globalRefs$m = getThemeRefs(globals);
16279
+ const vars$v = ComboBoxClass.cssVarList;
16147
16280
 
16148
16281
  const comboBox = {
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,
16282
+ [vars$v.hostWidth]: refs.width,
16283
+ [vars$v.hostDirection]: refs.direction,
16284
+ [vars$v.fontSize]: refs.fontSize,
16285
+ [vars$v.fontFamily]: refs.fontFamily,
16286
+ [vars$v.labelFontSize]: refs.labelFontSize,
16287
+ [vars$v.labelFontWeight]: refs.labelFontWeight,
16288
+ [vars$v.labelTextColor]: refs.labelTextColor,
16289
+ [vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
16290
+ [vars$v.inputBorderColor]: refs.borderColor,
16291
+ [vars$v.inputBorderWidth]: refs.borderWidth,
16292
+ [vars$v.inputBorderStyle]: refs.borderStyle,
16293
+ [vars$v.inputBorderRadius]: refs.borderRadius,
16294
+ [vars$v.inputOutlineColor]: refs.outlineColor,
16295
+ [vars$v.inputOutlineOffset]: refs.outlineOffset,
16296
+ [vars$v.inputOutlineWidth]: refs.outlineWidth,
16297
+ [vars$v.inputOutlineStyle]: refs.outlineStyle,
16298
+ [vars$v.labelRequiredIndicator]: refs.requiredIndicator,
16299
+ [vars$v.inputValueTextColor]: refs.valueTextColor,
16300
+ [vars$v.inputPlaceholderTextColor]: refs.placeholderTextColor,
16301
+ [vars$v.inputBackgroundColor]: refs.backgroundColor,
16302
+ [vars$v.inputHorizontalPadding]: refs.horizontalPadding,
16303
+ [vars$v.inputHeight]: refs.inputHeight,
16304
+ [vars$v.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
16305
+ [vars$v.inputDropdownButtonCursor]: 'pointer',
16306
+ [vars$v.inputDropdownButtonSize]: refs.toggleButtonSize,
16307
+ [vars$v.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
16308
+ [vars$v.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
16309
+ [vars$v.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
16310
+ [vars$v.labelPosition]: refs.labelPosition,
16311
+ [vars$v.labelTopPosition]: refs.labelTopPosition,
16312
+ [vars$v.labelHorizontalPosition]: refs.labelHorizontalPosition,
16313
+ [vars$v.inputTransformY]: refs.inputTransformY,
16314
+ [vars$v.inputTransition]: refs.inputTransition,
16315
+ [vars$v.marginInlineStart]: refs.marginInlineStart,
16316
+ [vars$v.placeholderOpacity]: refs.placeholderOpacity,
16317
+ [vars$v.inputVerticalAlignment]: refs.inputVerticalAlignment,
16318
+ [vars$v.valueInputHeight]: refs.valueInputHeight,
16319
+ [vars$v.valueInputMarginBottom]: refs.valueInputMarginBottom,
16187
16320
 
16188
16321
  _readonly: {
16189
- [vars$u.inputDropdownButtonCursor]: 'default',
16322
+ [vars$v.inputDropdownButtonCursor]: 'default',
16190
16323
  },
16191
16324
 
16192
16325
  // Overlay theme exposed via the component:
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,
16326
+ [vars$v.overlayFontSize]: refs.fontSize,
16327
+ [vars$v.overlayFontFamily]: refs.fontFamily,
16328
+ [vars$v.overlayCursor]: 'pointer',
16329
+ [vars$v.overlayItemBoxShadow]: 'none',
16330
+ [vars$v.overlayBackground]: refs.backgroundColor,
16331
+ [vars$v.overlayTextColor]: refs.valueTextColor,
16199
16332
 
16200
16333
  // Overlay direct theme:
16201
- [vars$u.overlay.minHeight]: '400px',
16202
- [vars$u.overlay.margin]: '0',
16334
+ [vars$v.overlay.minHeight]: '400px',
16335
+ [vars$v.overlay.margin]: '0',
16203
16336
  };
16204
16337
 
16205
16338
  var comboBox$1 = /*#__PURE__*/Object.freeze({
16206
16339
  __proto__: null,
16207
16340
  comboBox: comboBox,
16208
16341
  default: comboBox,
16209
- vars: vars$u
16342
+ vars: vars$v
16210
16343
  });
16211
16344
 
16212
- const vars$t = ImageClass.cssVarList;
16345
+ const vars$u = ImageClass.cssVarList;
16213
16346
 
16214
16347
  const image = {};
16215
16348
 
16216
16349
  var image$1 = /*#__PURE__*/Object.freeze({
16217
16350
  __proto__: null,
16218
16351
  default: image,
16219
- vars: vars$t
16352
+ vars: vars$u
16220
16353
  });
16221
16354
 
16222
- const vars$s = PhoneFieldClass.cssVarList;
16355
+ const vars$t = PhoneFieldClass.cssVarList;
16223
16356
 
16224
16357
  const phoneField = {
16225
- [vars$s.hostWidth]: refs.width,
16358
+ [vars$t.hostWidth]: refs.width,
16359
+ [vars$t.hostDirection]: refs.direction,
16360
+ [vars$t.fontSize]: refs.fontSize,
16361
+ [vars$t.fontFamily]: refs.fontFamily,
16362
+ [vars$t.labelTextColor]: refs.labelTextColor,
16363
+ [vars$t.labelRequiredIndicator]: refs.requiredIndicator,
16364
+ [vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
16365
+ [vars$t.inputValueTextColor]: refs.valueTextColor,
16366
+ [vars$t.inputPlaceholderTextColor]: refs.placeholderTextColor,
16367
+ [vars$t.inputBorderStyle]: refs.borderStyle,
16368
+ [vars$t.inputBorderWidth]: refs.borderWidth,
16369
+ [vars$t.inputBorderColor]: refs.borderColor,
16370
+ [vars$t.inputBorderRadius]: refs.borderRadius,
16371
+ [vars$t.inputOutlineStyle]: refs.outlineStyle,
16372
+ [vars$t.inputOutlineWidth]: refs.outlineWidth,
16373
+ [vars$t.inputOutlineColor]: refs.outlineColor,
16374
+ [vars$t.inputOutlineOffset]: refs.outlineOffset,
16375
+ [vars$t.phoneInputWidth]: refs.minWidth,
16376
+ [vars$t.countryCodeInputWidth]: '5em',
16377
+ [vars$t.countryCodeDropdownWidth]: '20em',
16378
+ [vars$t.marginInlineStart]: '-0.25em',
16379
+ [vars$t.valueInputHeight]: refs.valueInputHeight,
16380
+ [vars$t.valueInputMarginBottom]: refs.valueInputMarginBottom,
16381
+
16382
+ // '@overlay': {
16383
+ // overlayItemBackgroundColor: 'red'
16384
+ // }
16385
+ };
16386
+
16387
+ var phoneField$1 = /*#__PURE__*/Object.freeze({
16388
+ __proto__: null,
16389
+ default: phoneField,
16390
+ vars: vars$t
16391
+ });
16392
+
16393
+ const vars$s = PhoneFieldInputBoxClass.cssVarList;
16394
+
16395
+ const phoneInputBoxField = {
16396
+ [vars$s.hostWidth]: '16em',
16397
+ [vars$s.hostMinWidth]: refs.minWidth,
16226
16398
  [vars$s.hostDirection]: refs.direction,
16227
16399
  [vars$s.fontSize]: refs.fontSize,
16228
16400
  [vars$s.fontFamily]: refs.fontFamily,
16401
+ [vars$s.labelFontSize]: refs.labelFontSize,
16402
+ [vars$s.labelFontWeight]: refs.labelFontWeight,
16229
16403
  [vars$s.labelTextColor]: refs.labelTextColor,
16230
16404
  [vars$s.labelRequiredIndicator]: refs.requiredIndicator,
16231
16405
  [vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -16239,28 +16413,32 @@ const phoneField = {
16239
16413
  [vars$s.inputOutlineWidth]: refs.outlineWidth,
16240
16414
  [vars$s.inputOutlineColor]: refs.outlineColor,
16241
16415
  [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',
16416
+ [vars$s.labelPosition]: refs.labelPosition,
16417
+ [vars$s.labelTopPosition]: refs.labelTopPosition,
16418
+ [vars$s.labelHorizontalPosition]: refs.labelHorizontalPosition,
16419
+ [vars$s.inputTransformY]: refs.inputTransformY,
16420
+ [vars$s.inputTransition]: refs.inputTransition,
16421
+ [vars$s.marginInlineStart]: refs.marginInlineStart,
16246
16422
  [vars$s.valueInputHeight]: refs.valueInputHeight,
16247
16423
  [vars$s.valueInputMarginBottom]: refs.valueInputMarginBottom,
16424
+ [vars$s.inputHorizontalPadding]: '0',
16248
16425
 
16249
- // '@overlay': {
16250
- // overlayItemBackgroundColor: 'red'
16251
- // }
16426
+ _fullWidth: {
16427
+ [vars$s.hostWidth]: refs.width,
16428
+ },
16252
16429
  };
16253
16430
 
16254
- var phoneField$1 = /*#__PURE__*/Object.freeze({
16431
+ var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16255
16432
  __proto__: null,
16256
- default: phoneField,
16433
+ default: phoneInputBoxField,
16257
16434
  vars: vars$s
16258
16435
  });
16259
16436
 
16260
- const vars$r = PhoneFieldInputBoxClass.cssVarList;
16437
+ const globalRefs$l = getThemeRefs(globals);
16438
+ const vars$r = NewPasswordClass.cssVarList;
16261
16439
 
16262
- const phoneInputBoxField = {
16263
- [vars$r.hostWidth]: '16em',
16440
+ const newPassword = {
16441
+ [vars$r.hostWidth]: refs.width,
16264
16442
  [vars$r.hostMinWidth]: refs.minWidth,
16265
16443
  [vars$r.hostDirection]: refs.direction,
16266
16444
  [vars$r.fontSize]: refs.fontSize,
@@ -16268,174 +16446,129 @@ const phoneInputBoxField = {
16268
16446
  [vars$r.labelFontSize]: refs.labelFontSize,
16269
16447
  [vars$r.labelFontWeight]: refs.labelFontWeight,
16270
16448
  [vars$r.labelTextColor]: refs.labelTextColor,
16271
- [vars$r.labelRequiredIndicator]: refs.requiredIndicator,
16449
+ [vars$r.spaceBetweenInputs]: '1em',
16272
16450
  [vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
16273
- [vars$r.inputValueTextColor]: refs.valueTextColor,
16274
- [vars$r.inputPlaceholderTextColor]: refs.placeholderTextColor,
16275
- [vars$r.inputBorderStyle]: refs.borderStyle,
16276
- [vars$r.inputBorderWidth]: refs.borderWidth,
16277
- [vars$r.inputBorderColor]: refs.borderColor,
16278
- [vars$r.inputBorderRadius]: refs.borderRadius,
16279
- [vars$r.inputOutlineStyle]: refs.outlineStyle,
16280
- [vars$r.inputOutlineWidth]: refs.outlineWidth,
16281
- [vars$r.inputOutlineColor]: refs.outlineColor,
16282
- [vars$r.inputOutlineOffset]: refs.outlineOffset,
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,
16451
+ [vars$r.policyPreviewBackgroundColor]: 'none',
16452
+ [vars$r.policyPreviewPadding]: globalRefs$l.spacing.lg,
16289
16453
  [vars$r.valueInputHeight]: refs.valueInputHeight,
16290
- [vars$r.valueInputMarginBottom]: refs.valueInputMarginBottom,
16291
- [vars$r.inputHorizontalPadding]: '0',
16292
-
16293
- _fullWidth: {
16294
- [vars$r.hostWidth]: refs.width,
16295
- },
16296
- };
16297
-
16298
- var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16299
- __proto__: null,
16300
- default: phoneInputBoxField,
16301
- vars: vars$r
16302
- });
16303
-
16304
- const globalRefs$k = getThemeRefs(globals);
16305
- const vars$q = NewPasswordClass.cssVarList;
16306
-
16307
- const newPassword = {
16308
- [vars$q.hostWidth]: refs.width,
16309
- [vars$q.hostMinWidth]: refs.minWidth,
16310
- [vars$q.hostDirection]: refs.direction,
16311
- [vars$q.fontSize]: refs.fontSize,
16312
- [vars$q.fontFamily]: refs.fontFamily,
16313
- [vars$q.labelFontSize]: refs.labelFontSize,
16314
- [vars$q.labelFontWeight]: refs.labelFontWeight,
16315
- [vars$q.labelTextColor]: refs.labelTextColor,
16316
- [vars$q.spaceBetweenInputs]: '1em',
16317
- [vars$q.errorMessageTextColor]: refs.errorMessageTextColor,
16318
- [vars$q.policyPreviewBackgroundColor]: 'none',
16319
- [vars$q.policyPreviewPadding]: globalRefs$k.spacing.lg,
16320
- [vars$q.valueInputHeight]: refs.valueInputHeight,
16321
16454
 
16322
16455
  _required: {
16323
16456
  // NewPassword doesn't pass `required` attribute to its Password components.
16324
16457
  // That's why we fake the required indicator on each input.
16325
16458
  // We do that by injecting `::after` element, and populating it with requiredIndicator content.
16326
- [vars$q.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16459
+ [vars$r.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16327
16460
  },
16328
16461
  };
16329
16462
 
16330
16463
  var newPassword$1 = /*#__PURE__*/Object.freeze({
16331
16464
  __proto__: null,
16332
16465
  default: newPassword,
16333
- vars: vars$q
16466
+ vars: vars$r
16334
16467
  });
16335
16468
 
16336
- const vars$p = UploadFileClass.cssVarList;
16469
+ const vars$q = UploadFileClass.cssVarList;
16337
16470
 
16338
16471
  const uploadFile = {
16339
- [vars$p.hostDirection]: refs.direction,
16340
- [vars$p.labelTextColor]: refs.labelTextColor,
16341
- [vars$p.fontFamily]: refs.fontFamily,
16472
+ [vars$q.hostDirection]: refs.direction,
16473
+ [vars$q.labelTextColor]: refs.labelTextColor,
16474
+ [vars$q.fontFamily]: refs.fontFamily,
16342
16475
 
16343
- [vars$p.iconSize]: '2em',
16476
+ [vars$q.iconSize]: '2em',
16344
16477
 
16345
- [vars$p.hostPadding]: '0.75em',
16346
- [vars$p.gap]: '0.5em',
16478
+ [vars$q.hostPadding]: '0.75em',
16479
+ [vars$q.gap]: '0.5em',
16347
16480
 
16348
- [vars$p.fontSize]: '16px',
16349
- [vars$p.titleFontWeight]: '500',
16350
- [vars$p.lineHeight]: '1em',
16481
+ [vars$q.fontSize]: '16px',
16482
+ [vars$q.titleFontWeight]: '500',
16483
+ [vars$q.lineHeight]: '1em',
16351
16484
 
16352
- [vars$p.borderWidth]: refs.borderWidth,
16353
- [vars$p.borderColor]: refs.borderColor,
16354
- [vars$p.borderRadius]: refs.borderRadius,
16355
- [vars$p.borderStyle]: 'dashed',
16485
+ [vars$q.borderWidth]: refs.borderWidth,
16486
+ [vars$q.borderColor]: refs.borderColor,
16487
+ [vars$q.borderRadius]: refs.borderRadius,
16488
+ [vars$q.borderStyle]: 'dashed',
16356
16489
 
16357
16490
  _required: {
16358
- [vars$p.requiredIndicator]: refs.requiredIndicator,
16491
+ [vars$q.requiredIndicator]: refs.requiredIndicator,
16359
16492
  },
16360
16493
 
16361
16494
  size: {
16362
16495
  xs: {
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',
16496
+ [vars$q.hostHeight]: '196px',
16497
+ [vars$q.hostWidth]: '200px',
16498
+ [vars$q.titleFontSize]: '0.875em',
16499
+ [vars$q.descriptionFontSize]: '0.875em',
16500
+ [vars$q.lineHeight]: '1.25em',
16368
16501
  },
16369
16502
  sm: {
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',
16503
+ [vars$q.hostHeight]: '216px',
16504
+ [vars$q.hostWidth]: '230px',
16505
+ [vars$q.titleFontSize]: '1em',
16506
+ [vars$q.descriptionFontSize]: '0.875em',
16507
+ [vars$q.lineHeight]: '1.25em',
16375
16508
  },
16376
16509
  md: {
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',
16510
+ [vars$q.hostHeight]: '256px',
16511
+ [vars$q.hostWidth]: '312px',
16512
+ [vars$q.titleFontSize]: '1.125em',
16513
+ [vars$q.descriptionFontSize]: '1em',
16514
+ [vars$q.lineHeight]: '1.5em',
16382
16515
  },
16383
16516
  lg: {
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',
16517
+ [vars$q.hostHeight]: '280px',
16518
+ [vars$q.hostWidth]: '336px',
16519
+ [vars$q.titleFontSize]: '1.125em',
16520
+ [vars$q.descriptionFontSize]: '1.125em',
16521
+ [vars$q.lineHeight]: '1.75em',
16389
16522
  },
16390
16523
  },
16391
16524
 
16392
16525
  _fullWidth: {
16393
- [vars$p.hostWidth]: refs.width,
16526
+ [vars$q.hostWidth]: refs.width,
16394
16527
  },
16395
16528
  };
16396
16529
 
16397
16530
  var uploadFile$1 = /*#__PURE__*/Object.freeze({
16398
16531
  __proto__: null,
16399
16532
  default: uploadFile,
16400
- vars: vars$p
16533
+ vars: vars$q
16401
16534
  });
16402
16535
 
16403
- const globalRefs$j = getThemeRefs(globals);
16536
+ const globalRefs$k = getThemeRefs(globals);
16404
16537
 
16405
- const vars$o = ButtonSelectionGroupItemClass.cssVarList;
16538
+ const vars$p = ButtonSelectionGroupItemClass.cssVarList;
16406
16539
 
16407
16540
  const buttonSelectionGroupItem = {
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,
16541
+ [vars$p.hostDirection]: 'inherit',
16542
+ [vars$p.backgroundColor]: globalRefs$k.colors.surface.main,
16543
+ [vars$p.labelTextColor]: globalRefs$k.colors.surface.contrast,
16544
+ [vars$p.borderColor]: globalRefs$k.colors.surface.light,
16545
+ [vars$p.borderStyle]: 'solid',
16546
+ [vars$p.borderRadius]: globalRefs$k.radius.sm,
16547
+ [vars$p.outlineColor]: 'transparent',
16548
+ [vars$p.borderWidth]: globalRefs$k.border.xs,
16416
16549
 
16417
16550
  _hover: {
16418
- [vars$o.backgroundColor]: globalRefs$j.colors.surface.highlight,
16551
+ [vars$p.backgroundColor]: globalRefs$k.colors.surface.highlight,
16419
16552
  },
16420
16553
 
16421
16554
  _focused: {
16422
- [vars$o.outlineColor]: globalRefs$j.colors.surface.light,
16555
+ [vars$p.outlineColor]: globalRefs$k.colors.surface.light,
16423
16556
  },
16424
16557
 
16425
16558
  _selected: {
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,
16559
+ [vars$p.borderColor]: globalRefs$k.colors.surface.contrast,
16560
+ [vars$p.backgroundColor]: globalRefs$k.colors.surface.contrast,
16561
+ [vars$p.labelTextColor]: globalRefs$k.colors.surface.main,
16429
16562
  },
16430
16563
  };
16431
16564
 
16432
16565
  var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
16433
16566
  __proto__: null,
16434
16567
  default: buttonSelectionGroupItem,
16435
- vars: vars$o
16568
+ vars: vars$p
16436
16569
  });
16437
16570
 
16438
- const globalRefs$i = getThemeRefs(globals);
16571
+ const globalRefs$j = getThemeRefs(globals);
16439
16572
 
16440
16573
  const createBaseButtonSelectionGroupMappings = (vars) => ({
16441
16574
  [vars.hostDirection]: refs.direction,
@@ -16443,96 +16576,96 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
16443
16576
  [vars.labelTextColor]: refs.labelTextColor,
16444
16577
  [vars.labelRequiredIndicator]: refs.requiredIndicator,
16445
16578
  [vars.errorMessageTextColor]: refs.errorMessageTextColor,
16446
- [vars.itemsSpacing]: globalRefs$i.spacing.sm,
16579
+ [vars.itemsSpacing]: globalRefs$j.spacing.sm,
16447
16580
  [vars.hostWidth]: refs.width,
16448
16581
  });
16449
16582
 
16450
- const vars$n = ButtonSelectionGroupClass.cssVarList;
16583
+ const vars$o = ButtonSelectionGroupClass.cssVarList;
16451
16584
 
16452
16585
  const buttonSelectionGroup = {
16453
- ...createBaseButtonSelectionGroupMappings(vars$n),
16586
+ ...createBaseButtonSelectionGroupMappings(vars$o),
16454
16587
  };
16455
16588
 
16456
16589
  var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
16457
16590
  __proto__: null,
16458
16591
  default: buttonSelectionGroup,
16459
- vars: vars$n
16592
+ vars: vars$o
16460
16593
  });
16461
16594
 
16462
- const vars$m = ButtonMultiSelectionGroupClass.cssVarList;
16595
+ const vars$n = ButtonMultiSelectionGroupClass.cssVarList;
16463
16596
 
16464
16597
  const buttonMultiSelectionGroup = {
16465
- ...createBaseButtonSelectionGroupMappings(vars$m),
16598
+ ...createBaseButtonSelectionGroupMappings(vars$n),
16466
16599
  };
16467
16600
 
16468
16601
  var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
16469
16602
  __proto__: null,
16470
16603
  default: buttonMultiSelectionGroup,
16471
- vars: vars$m
16604
+ vars: vars$n
16472
16605
  });
16473
16606
 
16474
- const globalRefs$h = getThemeRefs(globals);
16607
+ const globalRefs$i = getThemeRefs(globals);
16475
16608
 
16476
16609
  const compVars$2 = ModalClass.cssVarList;
16477
16610
 
16478
16611
  const modal = {
16479
- [compVars$2.overlayBackgroundColor]: globalRefs$h.colors.surface.main,
16480
- [compVars$2.overlayShadow]: globalRefs$h.shadow.wide['2xl'],
16612
+ [compVars$2.overlayBackgroundColor]: globalRefs$i.colors.surface.main,
16613
+ [compVars$2.overlayShadow]: globalRefs$i.shadow.wide['2xl'],
16481
16614
  [compVars$2.overlayWidth]: '540px',
16482
16615
  };
16483
16616
 
16484
- const vars$l = {
16617
+ const vars$m = {
16485
16618
  ...compVars$2,
16486
16619
  };
16487
16620
 
16488
16621
  var modal$1 = /*#__PURE__*/Object.freeze({
16489
16622
  __proto__: null,
16490
16623
  default: modal,
16491
- vars: vars$l
16624
+ vars: vars$m
16492
16625
  });
16493
16626
 
16494
- const globalRefs$g = getThemeRefs(globals);
16495
- const vars$k = GridClass.cssVarList;
16627
+ const globalRefs$h = getThemeRefs(globals);
16628
+ const vars$l = GridClass.cssVarList;
16496
16629
 
16497
16630
  const grid = {
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',
16631
+ [vars$l.hostWidth]: '100%',
16632
+ [vars$l.hostHeight]: '100%',
16633
+ [vars$l.hostMinHeight]: '400px',
16634
+ [vars$l.fontWeight]: '400',
16635
+ [vars$l.backgroundColor]: globalRefs$h.colors.surface.main,
16636
+
16637
+ [vars$l.fontSize]: refs.fontSize,
16638
+ [vars$l.fontFamily]: refs.fontFamily,
16639
+
16640
+ [vars$l.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
16641
+ [vars$l.activeSortIndicator]: globalRefs$h.colors.surface.dark,
16642
+ [vars$l.resizeHandleColor]: globalRefs$h.colors.surface.light,
16643
+
16644
+ [vars$l.borderWidth]: refs.borderWidth,
16645
+ [vars$l.borderStyle]: refs.borderStyle,
16646
+ [vars$l.borderRadius]: refs.borderRadius,
16647
+ [vars$l.borderColor]: 'transparent',
16648
+
16649
+ [vars$l.headerRowTextColor]: globalRefs$h.colors.surface.dark,
16650
+ [vars$l.separatorColor]: globalRefs$h.colors.surface.light,
16651
+
16652
+ [vars$l.valueTextColor]: globalRefs$h.colors.surface.contrast,
16653
+ [vars$l.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
16654
+ [vars$l.hostDirection]: globalRefs$h.direction,
16655
+
16656
+ [vars$l.toggleDetailsPanelButtonSize]: '1em',
16657
+ [vars$l.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
16658
+ [vars$l.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
16659
+ [vars$l.toggleDetailsPanelButtonCursor]: 'pointer',
16660
+ [vars$l.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
16661
+ [vars$l.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
16662
+ [vars$l.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
16663
+ [vars$l.detailsPanelLabelsFontSize]: '0.8em',
16664
+ [vars$l.detailsPanelItemsGap]: '2em',
16665
+ [vars$l.detailsPanelPadding]: '12px 0',
16533
16666
 
16534
16667
  _bordered: {
16535
- [vars$k.borderColor]: refs.borderColor,
16668
+ [vars$l.borderColor]: refs.borderColor,
16536
16669
  },
16537
16670
  };
16538
16671
 
@@ -16540,53 +16673,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
16540
16673
  __proto__: null,
16541
16674
  default: grid,
16542
16675
  grid: grid,
16543
- vars: vars$k
16676
+ vars: vars$l
16544
16677
  });
16545
16678
 
16546
- const globalRefs$f = getThemeRefs(globals);
16547
- const vars$j = NotificationCardClass.cssVarList;
16679
+ const globalRefs$g = getThemeRefs(globals);
16680
+ const vars$k = NotificationCardClass.cssVarList;
16548
16681
 
16549
16682
  const shadowColor$2 = '#00000020';
16550
16683
 
16551
16684
  const notification = {
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,
16685
+ [vars$k.hostMinWidth]: '415px',
16686
+ [vars$k.fontFamily]: globalRefs$g.fonts.font1.family,
16687
+ [vars$k.fontSize]: globalRefs$g.typography.body1.size,
16688
+ [vars$k.backgroundColor]: globalRefs$g.colors.surface.main,
16689
+ [vars$k.textColor]: globalRefs$g.colors.surface.contrast,
16690
+ [vars$k.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
16691
+ [vars$k.verticalPadding]: '0.625em',
16692
+ [vars$k.horizontalPadding]: '1.5em',
16693
+ [vars$k.borderRadius]: globalRefs$g.radius.xs,
16561
16694
 
16562
16695
  _bordered: {
16563
- [vars$j.borderWidth]: globalRefs$f.border.sm,
16564
- [vars$j.borderStyle]: 'solid',
16565
- [vars$j.borderColor]: 'transparent',
16696
+ [vars$k.borderWidth]: globalRefs$g.border.sm,
16697
+ [vars$k.borderStyle]: 'solid',
16698
+ [vars$k.borderColor]: 'transparent',
16566
16699
  },
16567
16700
 
16568
16701
  size: {
16569
- xs: { [vars$j.fontSize]: '12px' },
16570
- sm: { [vars$j.fontSize]: '14px' },
16571
- md: { [vars$j.fontSize]: '16px' },
16572
- lg: { [vars$j.fontSize]: '18px' },
16702
+ xs: { [vars$k.fontSize]: '12px' },
16703
+ sm: { [vars$k.fontSize]: '14px' },
16704
+ md: { [vars$k.fontSize]: '16px' },
16705
+ lg: { [vars$k.fontSize]: '18px' },
16573
16706
  },
16574
16707
 
16575
16708
  mode: {
16576
16709
  primary: {
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,
16710
+ [vars$k.backgroundColor]: globalRefs$g.colors.primary.main,
16711
+ [vars$k.textColor]: globalRefs$g.colors.primary.contrast,
16712
+ [vars$k.borderColor]: globalRefs$g.colors.primary.light,
16580
16713
  },
16581
16714
  success: {
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,
16715
+ [vars$k.backgroundColor]: globalRefs$g.colors.success.main,
16716
+ [vars$k.textColor]: globalRefs$g.colors.success.contrast,
16717
+ [vars$k.borderColor]: globalRefs$g.colors.success.light,
16585
16718
  },
16586
16719
  error: {
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,
16720
+ [vars$k.backgroundColor]: globalRefs$g.colors.error.main,
16721
+ [vars$k.textColor]: globalRefs$g.colors.error.contrast,
16722
+ [vars$k.borderColor]: globalRefs$g.colors.error.light,
16590
16723
  },
16591
16724
  },
16592
16725
  };
@@ -16594,148 +16727,148 @@ const notification = {
16594
16727
  var notificationCard = /*#__PURE__*/Object.freeze({
16595
16728
  __proto__: null,
16596
16729
  default: notification,
16597
- vars: vars$j
16730
+ vars: vars$k
16598
16731
  });
16599
16732
 
16600
- const globalRefs$e = getThemeRefs(globals);
16601
- const vars$i = MultiSelectComboBoxClass.cssVarList;
16733
+ const globalRefs$f = getThemeRefs(globals);
16734
+ const vars$j = MultiSelectComboBoxClass.cssVarList;
16602
16735
 
16603
16736
  const multiSelectComboBox = {
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,
16737
+ [vars$j.hostWidth]: refs.width,
16738
+ [vars$j.hostDirection]: refs.direction,
16739
+ [vars$j.fontSize]: refs.fontSize,
16740
+ [vars$j.fontFamily]: refs.fontFamily,
16741
+ [vars$j.labelFontSize]: refs.labelFontSize,
16742
+ [vars$j.labelFontWeight]: refs.labelFontWeight,
16743
+ [vars$j.labelTextColor]: refs.labelTextColor,
16744
+ [vars$j.errorMessageTextColor]: refs.errorMessageTextColor,
16745
+ [vars$j.inputBorderColor]: refs.borderColor,
16746
+ [vars$j.inputBorderWidth]: refs.borderWidth,
16747
+ [vars$j.inputBorderStyle]: refs.borderStyle,
16748
+ [vars$j.inputBorderRadius]: refs.borderRadius,
16749
+ [vars$j.inputOutlineColor]: refs.outlineColor,
16750
+ [vars$j.inputOutlineOffset]: refs.outlineOffset,
16751
+ [vars$j.inputOutlineWidth]: refs.outlineWidth,
16752
+ [vars$j.inputOutlineStyle]: refs.outlineStyle,
16753
+ [vars$j.labelRequiredIndicator]: refs.requiredIndicator,
16754
+ [vars$j.inputValueTextColor]: refs.valueTextColor,
16755
+ [vars$j.inputPlaceholderTextColor]: refs.placeholderTextColor,
16756
+ [vars$j.inputBackgroundColor]: refs.backgroundColor,
16757
+ [vars$j.inputHorizontalPadding]: refs.horizontalPadding,
16758
+ [vars$j.inputVerticalPadding]: refs.verticalPadding,
16759
+ [vars$j.inputHeight]: refs.inputHeight,
16760
+ [vars$j.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
16761
+ [vars$j.inputDropdownButtonCursor]: 'pointer',
16762
+ [vars$j.inputDropdownButtonSize]: refs.toggleButtonSize,
16763
+ [vars$j.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
16764
+ [vars$j.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
16765
+ [vars$j.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
16766
+ [vars$j.chipFontSize]: refs.chipFontSize,
16767
+ [vars$j.chipTextColor]: globalRefs$f.colors.surface.contrast,
16768
+ [vars$j.chipBackgroundColor]: globalRefs$f.colors.surface.light,
16769
+ [vars$j.labelPosition]: refs.labelPosition,
16770
+ [vars$j.labelTopPosition]: refs.labelTopPosition,
16771
+ [vars$j.labelLeftPosition]: refs.labelLeftPosition,
16772
+ [vars$j.labelHorizontalPosition]: refs.labelHorizontalPosition,
16773
+ [vars$j.inputTransformY]: refs.inputTransformY,
16774
+ [vars$j.inputTransition]: refs.inputTransition,
16775
+ [vars$j.marginInlineStart]: refs.marginInlineStart,
16776
+ [vars$j.placeholderOpacity]: refs.placeholderOpacity,
16777
+ [vars$j.inputVerticalAlignment]: refs.inputVerticalAlignment,
16645
16778
 
16646
16779
  labelType: {
16647
16780
  floating: {
16648
- [vars$i.inputHorizontalPadding]: '0.25em',
16781
+ [vars$j.inputHorizontalPadding]: '0.25em',
16649
16782
  _hasValue: {
16650
- [vars$i.inputHorizontalPadding]: '0.45em',
16783
+ [vars$j.inputHorizontalPadding]: '0.45em',
16651
16784
  },
16652
16785
  },
16653
16786
  },
16654
16787
 
16655
16788
  _readonly: {
16656
- [vars$i.inputDropdownButtonCursor]: 'default',
16789
+ [vars$j.inputDropdownButtonCursor]: 'default',
16657
16790
  },
16658
16791
 
16659
16792
  // Overlay theme exposed via the component:
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,
16793
+ [vars$j.overlayFontSize]: refs.fontSize,
16794
+ [vars$j.overlayFontFamily]: refs.fontFamily,
16795
+ [vars$j.overlayCursor]: 'pointer',
16796
+ [vars$j.overlayItemBoxShadow]: 'none',
16797
+ [vars$j.overlayBackground]: refs.backgroundColor,
16798
+ [vars$j.overlayTextColor]: refs.valueTextColor,
16666
16799
 
16667
16800
  // Overlay direct theme:
16668
- [vars$i.overlay.minHeight]: '400px',
16669
- [vars$i.overlay.margin]: '0',
16801
+ [vars$j.overlay.minHeight]: '400px',
16802
+ [vars$j.overlay.margin]: '0',
16670
16803
  };
16671
16804
 
16672
16805
  var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
16673
16806
  __proto__: null,
16674
16807
  default: multiSelectComboBox,
16675
16808
  multiSelectComboBox: multiSelectComboBox,
16676
- vars: vars$i
16809
+ vars: vars$j
16677
16810
  });
16678
16811
 
16679
- const globalRefs$d = getThemeRefs(globals);
16680
- const vars$h = BadgeClass.cssVarList;
16812
+ const globalRefs$e = getThemeRefs(globals);
16813
+ const vars$i = BadgeClass.cssVarList;
16681
16814
 
16682
16815
  const badge = {
16683
- [vars$h.hostWidth]: 'fit-content',
16684
- [vars$h.hostDirection]: globalRefs$d.direction,
16816
+ [vars$i.hostWidth]: 'fit-content',
16817
+ [vars$i.hostDirection]: globalRefs$e.direction,
16685
16818
 
16686
- [vars$h.textAlign]: 'center',
16819
+ [vars$i.textAlign]: 'center',
16687
16820
 
16688
- [vars$h.fontFamily]: globalRefs$d.fonts.font1.family,
16689
- [vars$h.fontWeight]: '400',
16821
+ [vars$i.fontFamily]: globalRefs$e.fonts.font1.family,
16822
+ [vars$i.fontWeight]: '400',
16690
16823
 
16691
- [vars$h.verticalPadding]: '0.25em',
16692
- [vars$h.horizontalPadding]: '0.5em',
16824
+ [vars$i.verticalPadding]: '0.25em',
16825
+ [vars$i.horizontalPadding]: '0.5em',
16693
16826
 
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',
16827
+ [vars$i.borderWidth]: globalRefs$e.border.xs,
16828
+ [vars$i.borderRadius]: globalRefs$e.radius.xs,
16829
+ [vars$i.borderColor]: 'transparent',
16830
+ [vars$i.borderStyle]: 'solid',
16698
16831
 
16699
16832
  _fullWidth: {
16700
- [vars$h.hostWidth]: '100%',
16833
+ [vars$i.hostWidth]: '100%',
16701
16834
  },
16702
16835
 
16703
16836
  size: {
16704
- xs: { [vars$h.fontSize]: '12px' },
16705
- sm: { [vars$h.fontSize]: '14px' },
16706
- md: { [vars$h.fontSize]: '16px' },
16707
- lg: { [vars$h.fontSize]: '18px' },
16837
+ xs: { [vars$i.fontSize]: '12px' },
16838
+ sm: { [vars$i.fontSize]: '14px' },
16839
+ md: { [vars$i.fontSize]: '16px' },
16840
+ lg: { [vars$i.fontSize]: '18px' },
16708
16841
  },
16709
16842
 
16710
16843
  mode: {
16711
16844
  default: {
16712
- [vars$h.textColor]: globalRefs$d.colors.surface.dark,
16845
+ [vars$i.textColor]: globalRefs$e.colors.surface.dark,
16713
16846
  _bordered: {
16714
- [vars$h.borderColor]: globalRefs$d.colors.surface.light,
16847
+ [vars$i.borderColor]: globalRefs$e.colors.surface.light,
16715
16848
  },
16716
16849
  },
16717
16850
  primary: {
16718
- [vars$h.textColor]: globalRefs$d.colors.primary.main,
16851
+ [vars$i.textColor]: globalRefs$e.colors.primary.main,
16719
16852
  _bordered: {
16720
- [vars$h.borderColor]: globalRefs$d.colors.primary.light,
16853
+ [vars$i.borderColor]: globalRefs$e.colors.primary.light,
16721
16854
  },
16722
16855
  },
16723
16856
  secondary: {
16724
- [vars$h.textColor]: globalRefs$d.colors.secondary.main,
16857
+ [vars$i.textColor]: globalRefs$e.colors.secondary.main,
16725
16858
  _bordered: {
16726
- [vars$h.borderColor]: globalRefs$d.colors.secondary.light,
16859
+ [vars$i.borderColor]: globalRefs$e.colors.secondary.light,
16727
16860
  },
16728
16861
  },
16729
16862
  error: {
16730
- [vars$h.textColor]: globalRefs$d.colors.error.main,
16863
+ [vars$i.textColor]: globalRefs$e.colors.error.main,
16731
16864
  _bordered: {
16732
- [vars$h.borderColor]: globalRefs$d.colors.error.light,
16865
+ [vars$i.borderColor]: globalRefs$e.colors.error.light,
16733
16866
  },
16734
16867
  },
16735
16868
  success: {
16736
- [vars$h.textColor]: globalRefs$d.colors.success.main,
16869
+ [vars$i.textColor]: globalRefs$e.colors.success.main,
16737
16870
  _bordered: {
16738
- [vars$h.borderColor]: globalRefs$d.colors.success.light,
16871
+ [vars$i.borderColor]: globalRefs$e.colors.success.light,
16739
16872
  },
16740
16873
  },
16741
16874
  },
@@ -16744,19 +16877,19 @@ const badge = {
16744
16877
  var badge$1 = /*#__PURE__*/Object.freeze({
16745
16878
  __proto__: null,
16746
16879
  default: badge,
16747
- vars: vars$h
16880
+ vars: vars$i
16748
16881
  });
16749
16882
 
16750
- const globalRefs$c = getThemeRefs(globals);
16883
+ const globalRefs$d = getThemeRefs(globals);
16751
16884
  const compVars$1 = AvatarClass.cssVarList;
16752
16885
 
16753
16886
  const avatar = {
16754
- [compVars$1.hostDirection]: globalRefs$c.direction,
16755
- [compVars$1.editableIconColor]: globalRefs$c.colors.surface.dark,
16756
- [compVars$1.editableBorderColor]: globalRefs$c.colors.surface.dark,
16757
- [compVars$1.editableBackgroundColor]: globalRefs$c.colors.surface.main,
16758
- [compVars$1.avatarTextColor]: globalRefs$c.colors.surface.main,
16759
- [compVars$1.avatarBackgroundColor]: globalRefs$c.colors.surface.dark,
16887
+ [compVars$1.hostDirection]: globalRefs$d.direction,
16888
+ [compVars$1.editableIconColor]: globalRefs$d.colors.surface.dark,
16889
+ [compVars$1.editableBorderColor]: globalRefs$d.colors.surface.dark,
16890
+ [compVars$1.editableBackgroundColor]: globalRefs$d.colors.surface.main,
16891
+ [compVars$1.avatarTextColor]: globalRefs$d.colors.surface.main,
16892
+ [compVars$1.avatarBackgroundColor]: globalRefs$d.colors.surface.dark,
16760
16893
 
16761
16894
  _editable: {
16762
16895
  [compVars$1.cursor]: 'pointer',
@@ -16782,143 +16915,143 @@ const avatar = {
16782
16915
  },
16783
16916
  };
16784
16917
 
16785
- const vars$g = {
16918
+ const vars$h = {
16786
16919
  ...compVars$1,
16787
16920
  };
16788
16921
 
16789
16922
  var avatar$1 = /*#__PURE__*/Object.freeze({
16790
16923
  __proto__: null,
16791
16924
  default: avatar,
16792
- vars: vars$g
16925
+ vars: vars$h
16793
16926
  });
16794
16927
 
16795
- const globalRefs$b = getThemeRefs(globals);
16928
+ const globalRefs$c = getThemeRefs(globals);
16796
16929
 
16797
- const vars$f = MappingsFieldClass.cssVarList;
16930
+ const vars$g = MappingsFieldClass.cssVarList;
16798
16931
 
16799
16932
  const mappingsField = {
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',
16933
+ [vars$g.hostWidth]: refs.width,
16934
+ [vars$g.hostDirection]: refs.direction,
16935
+ [vars$g.fontSize]: refs.fontSize,
16936
+ [vars$g.fontFamily]: refs.fontFamily,
16937
+ [vars$g.separatorFontSize]: '14px',
16938
+ [vars$g.labelsFontSize]: '14px',
16939
+ [vars$g.labelsLineHeight]: '1',
16940
+ [vars$g.labelsMarginBottom]: '6px',
16941
+ [vars$g.labelTextColor]: refs.labelTextColor,
16942
+ [vars$g.itemMarginBottom]: '1em',
16810
16943
  // To be positioned correctly, the min width has to match the text field min width
16811
- [vars$f.valueLabelMinWidth]: refs.minWidth,
16944
+ [vars$g.valueLabelMinWidth]: refs.minWidth,
16812
16945
  // To be positioned correctly, the min width has to match the combo box field min width
16813
- [vars$f.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$b.border.xs})`,
16814
- [vars$f.separatorWidth]: '70px',
16815
- [vars$f.removeButtonWidth]: '60px',
16946
+ [vars$g.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
16947
+ [vars$g.separatorWidth]: '70px',
16948
+ [vars$g.removeButtonWidth]: '60px',
16816
16949
  };
16817
16950
 
16818
16951
  var mappingsField$1 = /*#__PURE__*/Object.freeze({
16819
16952
  __proto__: null,
16820
16953
  default: mappingsField,
16821
16954
  mappingsField: mappingsField,
16822
- vars: vars$f
16955
+ vars: vars$g
16823
16956
  });
16824
16957
 
16825
- const globalRefs$a = getThemeRefs(globals);
16826
- const vars$e = UserAttributeClass.cssVarList;
16958
+ const globalRefs$b = getThemeRefs(globals);
16959
+ const vars$f = UserAttributeClass.cssVarList;
16827
16960
 
16828
16961
  const userAttribute = {
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',
16962
+ [vars$f.hostDirection]: globalRefs$b.direction,
16963
+ [vars$f.labelTextWidth]: '150px',
16964
+ [vars$f.valueTextWidth]: '200px',
16965
+ [vars$f.badgeMaxWidth]: '85px',
16966
+ [vars$f.itemsGap]: '16px',
16967
+ [vars$f.hostMinWidth]: '530px',
16835
16968
  _fullWidth: {
16836
- [vars$e.hostWidth]: '100%',
16969
+ [vars$f.hostWidth]: '100%',
16837
16970
  },
16838
16971
  };
16839
16972
 
16840
16973
  var userAttribute$1 = /*#__PURE__*/Object.freeze({
16841
16974
  __proto__: null,
16842
16975
  default: userAttribute,
16843
- vars: vars$e
16976
+ vars: vars$f
16844
16977
  });
16845
16978
 
16846
- const globalRefs$9 = getThemeRefs(globals);
16847
- const vars$d = UserAuthMethodClass.cssVarList;
16979
+ const globalRefs$a = getThemeRefs(globals);
16980
+ const vars$e = UserAuthMethodClass.cssVarList;
16848
16981
 
16849
16982
  const userAuthMethod = {
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',
16983
+ [vars$e.hostDirection]: globalRefs$a.direction,
16984
+ [vars$e.labelTextWidth]: '200px',
16985
+ [vars$e.itemsGap]: '16px',
16986
+ [vars$e.hostMinWidth]: '530px',
16987
+ [vars$e.iconSize]: '24px',
16855
16988
  _fullWidth: {
16856
- [vars$d.hostWidth]: '100%',
16989
+ [vars$e.hostWidth]: '100%',
16857
16990
  },
16858
16991
  };
16859
16992
 
16860
16993
  var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
16861
16994
  __proto__: null,
16862
16995
  default: userAuthMethod,
16863
- vars: vars$d
16996
+ vars: vars$e
16864
16997
  });
16865
16998
 
16866
- const vars$c = SamlGroupMappingsClass.cssVarList;
16999
+ const vars$d = SamlGroupMappingsClass.cssVarList;
16867
17000
 
16868
17001
  const samlGroupMappings = {
16869
- [vars$c.hostWidth]: refs.width,
16870
- [vars$c.hostDirection]: refs.direction,
16871
- [vars$c.groupNameInputMarginBottom]: '1em',
17002
+ [vars$d.hostWidth]: refs.width,
17003
+ [vars$d.hostDirection]: refs.direction,
17004
+ [vars$d.groupNameInputMarginBottom]: '1em',
16872
17005
  };
16873
17006
 
16874
17007
  var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
16875
17008
  __proto__: null,
16876
17009
  default: samlGroupMappings,
16877
17010
  samlGroupMappings: samlGroupMappings,
16878
- vars: vars$c
17011
+ vars: vars$d
16879
17012
  });
16880
17013
 
16881
- const globalRefs$8 = getThemeRefs(globals);
16882
- const vars$b = PolicyValidationClass.cssVarList;
17014
+ const globalRefs$9 = getThemeRefs(globals);
17015
+ const vars$c = PolicyValidationClass.cssVarList;
16883
17016
 
16884
17017
  const policyValidation = {
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,
17018
+ [vars$c.fontFamily]: refs.fontFamily,
17019
+ [vars$c.fontSize]: refs.labelFontSize,
17020
+ [vars$c.textColor]: refs.labelTextColor,
17021
+ [vars$c.borderWidth]: refs.borderWidth,
17022
+ [vars$c.borderStyle]: refs.borderStyle,
17023
+ [vars$c.borderColor]: refs.borderColor,
17024
+ [vars$c.borderRadius]: globalRefs$9.radius.sm,
17025
+ [vars$c.backgroundColor]: 'none',
17026
+ [vars$c.padding]: '0px',
17027
+ [vars$c.labelMargin]: globalRefs$9.spacing.sm,
17028
+ [vars$c.itemsSpacing]: globalRefs$9.spacing.lg,
17029
+ [vars$c.itemSymbolDefault]: "'\\2022'", // "•"
17030
+ [vars$c.itemSymbolSuccess]: "'\\2713'", // "✓"
17031
+ [vars$c.itemSymbolError]: "'\\2A09'", // "⨉"
17032
+ [vars$c.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
17033
+ [vars$c.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
16901
17034
  };
16902
17035
 
16903
17036
  var policyValidation$1 = /*#__PURE__*/Object.freeze({
16904
17037
  __proto__: null,
16905
17038
  default: policyValidation,
16906
- vars: vars$b
17039
+ vars: vars$c
16907
17040
  });
16908
17041
 
16909
- const vars$a = IconClass.cssVarList;
17042
+ const vars$b = IconClass.cssVarList;
16910
17043
 
16911
17044
  const icon = {};
16912
17045
 
16913
17046
  var icon$1 = /*#__PURE__*/Object.freeze({
16914
17047
  __proto__: null,
16915
17048
  default: icon,
16916
- vars: vars$a
17049
+ vars: vars$b
16917
17050
  });
16918
17051
 
16919
- const globalRefs$7 = getThemeRefs(globals);
17052
+ const globalRefs$8 = getThemeRefs(globals);
16920
17053
 
16921
- const vars$9 = CodeSnippetClass.cssVarList;
17054
+ const vars$a = CodeSnippetClass.cssVarList;
16922
17055
 
16923
17056
  const light = {
16924
17057
  color1: '#fa0',
@@ -16953,50 +17086,50 @@ const dark = {
16953
17086
  };
16954
17087
 
16955
17088
  const CodeSnippet = {
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,
17089
+ [vars$a.rootBgColor]: globalRefs$8.colors.surface.main,
17090
+ [vars$a.rootTextColor]: globalRefs$8.colors.surface.contrast,
17091
+ [vars$a.docTagTextColor]: light.color2,
17092
+ [vars$a.keywordTextColor]: light.color2,
17093
+ [vars$a.metaKeywordTextColor]: light.color2,
17094
+ [vars$a.templateTagTextColor]: light.color2,
17095
+ [vars$a.templateVariableTextColor]: light.color2,
17096
+ [vars$a.typeTextColor]: light.color2,
17097
+ [vars$a.variableLanguageTextColor]: light.color2,
17098
+ [vars$a.titleTextColor]: light.color3,
17099
+ [vars$a.titleClassTextColor]: light.color3,
17100
+ [vars$a.titleClassInheritedTextColor]: light.color3,
17101
+ [vars$a.titleFunctionTextColor]: light.color3,
17102
+ [vars$a.attrTextColor]: light.color4,
17103
+ [vars$a.attributeTextColor]: light.color4,
17104
+ [vars$a.literalTextColor]: light.color4,
17105
+ [vars$a.metaTextColor]: light.color4,
17106
+ [vars$a.numberTextColor]: light.color4,
17107
+ [vars$a.operatorTextColor]: light.color4,
17108
+ [vars$a.variableTextColor]: light.color4,
17109
+ [vars$a.selectorAttrTextColor]: light.color4,
17110
+ [vars$a.selectorClassTextColor]: light.color4,
17111
+ [vars$a.selectorIdTextColor]: light.color4,
17112
+ [vars$a.regexpTextColor]: light.color13,
17113
+ [vars$a.stringTextColor]: light.color13,
17114
+ [vars$a.metaStringTextColor]: light.color13,
17115
+ [vars$a.builtInTextColor]: light.color5,
17116
+ [vars$a.symbolTextColor]: light.color5,
17117
+ [vars$a.commentTextColor]: light.color6,
17118
+ [vars$a.codeTextColor]: light.color6,
17119
+ [vars$a.formulaTextColor]: light.color6,
17120
+ [vars$a.nameTextColor]: light.color7,
17121
+ [vars$a.quoteTextColor]: light.color7,
17122
+ [vars$a.selectorTagTextColor]: light.color7,
17123
+ [vars$a.selectorPseudoTextColor]: light.color7,
17124
+ [vars$a.substTextColor]: light.color8,
17125
+ [vars$a.sectionTextColor]: light.color4,
17126
+ [vars$a.bulletTextColor]: light.color9,
17127
+ [vars$a.emphasisTextColor]: light.color8,
17128
+ [vars$a.strongTextColor]: light.color8,
17129
+ [vars$a.additionTextColor]: light.color7,
17130
+ [vars$a.additionBgColor]: light.color10,
17131
+ [vars$a.deletionTextColor]: light.color2,
17132
+ [vars$a.deletionBgColor]: light.color10,
17000
17133
  /* purposely ignored */
17001
17134
  // [vars.charEscapeTextColor]: '',
17002
17135
  // [vars.linkTextColor]: '',
@@ -17008,50 +17141,50 @@ const CodeSnippet = {
17008
17141
 
17009
17142
  const codeSnippetDarkThemeOverrides = {
17010
17143
  codeSnippet: {
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,
17144
+ [vars$a.rootBgColor]: globalRefs$8.colors.surface.main,
17145
+ [vars$a.rootTextColor]: globalRefs$8.colors.surface.contrast,
17146
+ [vars$a.docTagTextColor]: dark.color2,
17147
+ [vars$a.keywordTextColor]: dark.color2,
17148
+ [vars$a.metaKeywordTextColor]: dark.color2,
17149
+ [vars$a.templateTagTextColor]: dark.color2,
17150
+ [vars$a.templateVariableTextColor]: dark.color2,
17151
+ [vars$a.typeTextColor]: dark.color2,
17152
+ [vars$a.variableLanguageTextColor]: dark.color2,
17153
+ [vars$a.titleTextColor]: dark.color3,
17154
+ [vars$a.titleClassTextColor]: dark.color3,
17155
+ [vars$a.titleClassInheritedTextColor]: dark.color3,
17156
+ [vars$a.titleFunctionTextColor]: dark.color3,
17157
+ [vars$a.attrTextColor]: dark.color4,
17158
+ [vars$a.attributeTextColor]: dark.color4,
17159
+ [vars$a.literalTextColor]: dark.color4,
17160
+ [vars$a.metaTextColor]: dark.color4,
17161
+ [vars$a.numberTextColor]: dark.color4,
17162
+ [vars$a.operatorTextColor]: dark.color4,
17163
+ [vars$a.variableTextColor]: dark.color4,
17164
+ [vars$a.selectorAttrTextColor]: dark.color4,
17165
+ [vars$a.selectorClassTextColor]: dark.color4,
17166
+ [vars$a.selectorIdTextColor]: dark.color4,
17167
+ [vars$a.regexpTextColor]: dark.color13,
17168
+ [vars$a.stringTextColor]: dark.color13,
17169
+ [vars$a.metaStringTextColor]: dark.color13,
17170
+ [vars$a.builtInTextColor]: dark.color5,
17171
+ [vars$a.symbolTextColor]: dark.color5,
17172
+ [vars$a.commentTextColor]: dark.color6,
17173
+ [vars$a.codeTextColor]: dark.color6,
17174
+ [vars$a.formulaTextColor]: dark.color6,
17175
+ [vars$a.nameTextColor]: dark.color7,
17176
+ [vars$a.quoteTextColor]: dark.color7,
17177
+ [vars$a.selectorTagTextColor]: dark.color7,
17178
+ [vars$a.selectorPseudoTextColor]: dark.color7,
17179
+ [vars$a.substTextColor]: dark.color8,
17180
+ [vars$a.sectionTextColor]: dark.color4,
17181
+ [vars$a.bulletTextColor]: dark.color9,
17182
+ [vars$a.emphasisTextColor]: dark.color8,
17183
+ [vars$a.strongTextColor]: dark.color8,
17184
+ [vars$a.additionTextColor]: dark.color7,
17185
+ [vars$a.additionBgColor]: dark.color10,
17186
+ [vars$a.deletionTextColor]: dark.color2,
17187
+ [vars$a.deletionBgColor]: dark.color10,
17055
17188
  },
17056
17189
  };
17057
17190
 
@@ -17059,36 +17192,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
17059
17192
  __proto__: null,
17060
17193
  codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
17061
17194
  default: CodeSnippet,
17062
- vars: vars$9
17195
+ vars: vars$a
17063
17196
  });
17064
17197
 
17065
- const vars$8 = RadioGroupClass.cssVarList;
17066
- const globalRefs$6 = getThemeRefs(globals);
17198
+ const vars$9 = RadioGroupClass.cssVarList;
17199
+ const globalRefs$7 = getThemeRefs(globals);
17067
17200
 
17068
17201
  const radioGroup = {
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,
17202
+ [vars$9.buttonsRowGap]: '9px',
17203
+ [vars$9.hostWidth]: refs.width,
17204
+ [vars$9.hostDirection]: refs.direction,
17205
+ [vars$9.fontSize]: refs.fontSize,
17206
+ [vars$9.fontFamily]: refs.fontFamily,
17207
+ [vars$9.labelTextColor]: refs.labelTextColor,
17208
+ [vars$9.labelRequiredIndicator]: refs.requiredIndicator,
17209
+ [vars$9.errorMessageTextColor]: refs.errorMessageTextColor,
17210
+ [vars$9.helperTextColor]: refs.helperTextColor,
17211
+ [vars$9.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
17079
17212
 
17080
17213
  textAlign: {
17081
- right: { [vars$8.inputTextAlign]: 'right' },
17082
- left: { [vars$8.inputTextAlign]: 'left' },
17083
- center: { [vars$8.inputTextAlign]: 'center' },
17214
+ right: { [vars$9.inputTextAlign]: 'right' },
17215
+ left: { [vars$9.inputTextAlign]: 'left' },
17216
+ center: { [vars$9.inputTextAlign]: 'center' },
17084
17217
  },
17085
17218
 
17086
17219
  _fullWidth: {
17087
- [vars$8.buttonsSpacing]: 'space-between',
17220
+ [vars$9.buttonsSpacing]: 'space-between',
17088
17221
  },
17089
17222
 
17090
17223
  _disabled: {
17091
- [vars$8.itemsLabelColor]: globalRefs$6.colors.surface.light,
17224
+ [vars$9.itemsLabelColor]: globalRefs$7.colors.surface.light,
17092
17225
  },
17093
17226
  };
17094
17227
 
@@ -17096,24 +17229,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
17096
17229
  __proto__: null,
17097
17230
  default: radioGroup,
17098
17231
  radioGroup: radioGroup,
17099
- vars: vars$8
17232
+ vars: vars$9
17100
17233
  });
17101
17234
 
17102
- const vars$7 = RadioButtonClass.cssVarList;
17103
- const globalRefs$5 = getThemeRefs(globals);
17235
+ const vars$8 = RadioButtonClass.cssVarList;
17236
+ const globalRefs$6 = getThemeRefs(globals);
17104
17237
 
17105
17238
  const radioButton = {
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,
17239
+ [vars$8.fontFamily]: refs.fontFamily,
17240
+ [vars$8.radioSize]: 'calc(1em + 6px)',
17241
+ [vars$8.radioMargin]: 'auto 4px',
17242
+ [vars$8.radioCheckedSize]: `calc(var(${vars$8.radioSize})/5)`,
17243
+ [vars$8.radioCheckedColor]: globalRefs$6.colors.surface.light,
17244
+ [vars$8.radioBackgroundColor]: globalRefs$6.colors.surface.light,
17245
+ [vars$8.radioBorderColor]: 'none',
17246
+ [vars$8.radioBorderWidth]: 0,
17114
17247
 
17115
17248
  _checked: {
17116
- [vars$7.radioBackgroundColor]: globalRefs$5.colors.surface.contrast,
17249
+ [vars$8.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
17117
17250
  },
17118
17251
 
17119
17252
  _hover: {
@@ -17122,16 +17255,16 @@ const radioButton = {
17122
17255
 
17123
17256
  size: {
17124
17257
  xs: {
17125
- [vars$7.fontSize]: '12px',
17258
+ [vars$8.fontSize]: '12px',
17126
17259
  },
17127
17260
  sm: {
17128
- [vars$7.fontSize]: '14px',
17261
+ [vars$8.fontSize]: '14px',
17129
17262
  },
17130
17263
  md: {
17131
- [vars$7.fontSize]: '16px',
17264
+ [vars$8.fontSize]: '16px',
17132
17265
  },
17133
17266
  lg: {
17134
- [vars$7.fontSize]: '18px',
17267
+ [vars$8.fontSize]: '18px',
17135
17268
  },
17136
17269
  },
17137
17270
  };
@@ -17140,137 +17273,137 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
17140
17273
  __proto__: null,
17141
17274
  default: radioButton,
17142
17275
  radioButton: radioButton,
17143
- vars: vars$7
17276
+ vars: vars$8
17144
17277
  });
17145
17278
 
17146
- const globalRefs$4 = getThemeRefs(globals);
17279
+ const globalRefs$5 = getThemeRefs(globals);
17147
17280
 
17148
- const vars$6 = CalendarClass.cssVarList;
17281
+ const vars$7 = CalendarClass.cssVarList;
17149
17282
 
17150
17283
  const calendar = {
17151
- [vars$6.fontFamily]: refs.fontFamily,
17152
- [vars$6.fontSize]: refs.fontSize,
17153
- [vars$6.hostDirection]: refs.direction,
17284
+ [vars$7.fontFamily]: refs.fontFamily,
17285
+ [vars$7.fontSize]: refs.fontSize,
17286
+ [vars$7.hostDirection]: refs.direction,
17154
17287
 
17155
- [vars$6.calendarPadding]: '1em',
17288
+ [vars$7.calendarPadding]: '1em',
17156
17289
 
17157
- [vars$6.topNavVerticalPadding]: '1em',
17158
- [vars$6.topNavAlignment]: 'space-between',
17159
- [vars$6.topNavGap]: '0',
17160
- [vars$6.topNavSelectorsGap]: '0.5em',
17290
+ [vars$7.topNavVerticalPadding]: '1em',
17291
+ [vars$7.topNavAlignment]: 'space-between',
17292
+ [vars$7.topNavGap]: '0',
17293
+ [vars$7.topNavSelectorsGap]: '0.5em',
17161
17294
 
17162
- [vars$6.bottomNavVerticalPadding]: '0.75em',
17163
- [vars$6.bottomNavHorizontalPadding]: '1.5em',
17164
- [vars$6.bottomNavAlignment]: 'space-between',
17165
- [vars$6.bottomNavGap]: '0.5em',
17295
+ [vars$7.bottomNavVerticalPadding]: '0.75em',
17296
+ [vars$7.bottomNavHorizontalPadding]: '1.5em',
17297
+ [vars$7.bottomNavAlignment]: 'space-between',
17298
+ [vars$7.bottomNavGap]: '0.5em',
17166
17299
 
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',
17300
+ [vars$7.navMarginBottom]: '0.75em',
17301
+ [vars$7.navBorderBottomWidth]: '1px',
17302
+ [vars$7.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
17303
+ [vars$7.navBorderBottomStyle]: 'solid',
17171
17304
 
17172
- [vars$6.yearInputWidth]: '6em',
17173
- [vars$6.monthInputWidth]: '8em',
17305
+ [vars$7.yearInputWidth]: '6em',
17306
+ [vars$7.monthInputWidth]: '8em',
17174
17307
 
17175
- [vars$6.navButtonSize]: '24px',
17176
- [vars$6.navButtonCursor]: 'pointer',
17308
+ [vars$7.navButtonSize]: '24px',
17309
+ [vars$7.navButtonCursor]: 'pointer',
17177
17310
 
17178
- [vars$6.weekdayFontSize]: '0.875em',
17179
- [vars$6.weekdayFontWeight]: '500',
17311
+ [vars$7.weekdayFontSize]: '0.875em',
17312
+ [vars$7.weekdayFontWeight]: '500',
17180
17313
 
17181
17314
  // day table cell
17182
- [vars$6.dayHeight]: '3.125em',
17315
+ [vars$7.dayHeight]: '3.125em',
17183
17316
 
17184
17317
  // day value
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,
17318
+ [vars$7.daySize]: '2.125em',
17319
+ [vars$7.dayFontSize]: '1em',
17320
+ [vars$7.dayRadius]: '50%',
17321
+ [vars$7.dayTextAlign]: 'center',
17322
+ [vars$7.dayPadding]: '0',
17323
+ [vars$7.dayTextColor]: globalRefs$5.colors.surface.contrast,
17324
+ [vars$7.dayFontWeight]: '500',
17325
+ [vars$7.dayBackgroundColor]: 'transparent',
17326
+ [vars$7.dayCursor]: 'pointer',
17327
+ [vars$7.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
17195
17328
 
17196
17329
  // selected day
17197
- [vars$6.daySelectedBackgroundColor]: globalRefs$4.colors.primary.main,
17198
- [vars$6.daySelectedTextdColor]: globalRefs$4.colors.primary.contrast,
17330
+ [vars$7.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
17331
+ [vars$7.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
17199
17332
 
17200
17333
  // disabled day (out of min/max range)
17201
- [vars$6.dayDisabledTextdColor]: globalRefs$4.colors.surface.light,
17334
+ [vars$7.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
17202
17335
 
17203
17336
  // today
17204
- [vars$6.currentDayBorderColor]: globalRefs$4.colors.surface.light,
17205
- [vars$6.currentDayBorderWidth]: '1px',
17206
- [vars$6.currentDayBorderStyle]: 'solid',
17337
+ [vars$7.currentDayBorderColor]: globalRefs$5.colors.surface.light,
17338
+ [vars$7.currentDayBorderWidth]: '1px',
17339
+ [vars$7.currentDayBorderStyle]: 'solid',
17207
17340
 
17208
17341
  size: {
17209
- xs: { [vars$6.fontSize]: '12px' },
17210
- sm: { [vars$6.fontSize]: '14px' },
17211
- md: { [vars$6.fontSize]: '16px' },
17212
- lg: { [vars$6.fontSize]: '18px' },
17342
+ xs: { [vars$7.fontSize]: '12px' },
17343
+ sm: { [vars$7.fontSize]: '14px' },
17344
+ md: { [vars$7.fontSize]: '16px' },
17345
+ lg: { [vars$7.fontSize]: '18px' },
17213
17346
  },
17214
17347
 
17215
- [vars$6.navButtonRotation]: 'rotate(180deg)',
17348
+ [vars$7.navButtonRotation]: 'rotate(180deg)',
17216
17349
 
17217
17350
  _disabled: {
17218
- [vars$6.navButtonOpacity]: '0.5',
17219
- [vars$6.dayBackgroundColorHover]: 'none',
17220
- [vars$6.navButtonCursor]: 'default',
17221
- [vars$6.dayCursor]: 'default',
17351
+ [vars$7.navButtonOpacity]: '0.5',
17352
+ [vars$7.dayBackgroundColorHover]: 'none',
17353
+ [vars$7.navButtonCursor]: 'default',
17354
+ [vars$7.dayCursor]: 'default',
17222
17355
  },
17223
17356
 
17224
17357
  _fullWidth: {
17225
- [vars$6.hostWidth]: '100%',
17226
- [vars$6.dayBlockAlign]: '0 auto',
17358
+ [vars$7.hostWidth]: '100%',
17359
+ [vars$7.dayBlockAlign]: '0 auto',
17227
17360
  },
17228
17361
  };
17229
17362
 
17230
17363
  var calendar$1 = /*#__PURE__*/Object.freeze({
17231
17364
  __proto__: null,
17232
17365
  default: calendar,
17233
- vars: vars$6
17366
+ vars: vars$7
17234
17367
  });
17235
17368
 
17236
- const globalRefs$3 = getThemeRefs(globals);
17369
+ const globalRefs$4 = getThemeRefs(globals);
17237
17370
  const shadowColor$1 = '#00000020';
17238
- const { shadow } = globalRefs$3;
17371
+ const { shadow } = globalRefs$4;
17239
17372
 
17240
- const vars$5 = DateFieldClass.cssVarList;
17373
+ const vars$6 = DateFieldClass.cssVarList;
17241
17374
 
17242
17375
  const dateField = {
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',
17376
+ [vars$6.hostWidth]: refs.width,
17377
+ [vars$6.hostDirection]: refs.direction,
17378
+ [vars$6.iconMargin]: '0.375em',
17379
+
17380
+ [vars$6.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
17381
+ [vars$6.overlay.backgroundColor]: refs.backgroundColor,
17382
+ [vars$6.overlay.backdropBackgroundColor]: 'transparent',
17383
+ [vars$6.overlay.backdropPointerEvents]: 'all',
17384
+ [vars$6.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
17385
+ [vars$6.overlay.outlineWidth]: '0',
17386
+ [vars$6.overlay.outlineColor]: 'transparent',
17387
+ [vars$6.overlay.outlineStyle]: 'none',
17388
+ [vars$6.overlay.padding]: '0',
17389
+
17390
+ [vars$6.rtlInputDirection]: 'ltr',
17391
+ [vars$6.rtlInputAlignment]: 'right',
17259
17392
  };
17260
17393
 
17261
17394
  var dateField$1 = /*#__PURE__*/Object.freeze({
17262
17395
  __proto__: null,
17263
17396
  default: dateField,
17264
- vars: vars$5
17397
+ vars: vars$6
17265
17398
  });
17266
17399
 
17267
- const globalRefs$2 = getThemeRefs(globals);
17400
+ const globalRefs$3 = getThemeRefs(globals);
17268
17401
 
17269
17402
  const compVars = ListClass.cssVarList;
17270
17403
 
17271
17404
  const [helperTheme, helperRefs, helperVars] = createHelperVars(
17272
17405
  { shadowColor: '#00000020' },
17273
- componentName$3
17406
+ componentName$4
17274
17407
  );
17275
17408
 
17276
17409
  const { shadowColor } = helperRefs;
@@ -17279,24 +17412,24 @@ const list$1 = {
17279
17412
  ...helperTheme,
17280
17413
 
17281
17414
  [compVars.hostWidth]: '100%',
17282
- [compVars.backgroundColor]: globalRefs$2.colors.surface.main,
17283
- [compVars.fontFamily]: globalRefs$2.fonts.font1.family,
17284
- [compVars.borderColor]: globalRefs$2.colors.surface.light,
17415
+ [compVars.backgroundColor]: globalRefs$3.colors.surface.main,
17416
+ [compVars.fontFamily]: globalRefs$3.fonts.font1.family,
17417
+ [compVars.borderColor]: globalRefs$3.colors.surface.light,
17285
17418
  [compVars.borderStyle]: 'solid',
17286
- [compVars.borderWidth]: globalRefs$2.border.xs,
17287
- [compVars.borderRadius]: globalRefs$2.radius.sm,
17288
- [compVars.gap]: globalRefs$2.spacing.md,
17289
- [compVars.verticalPadding]: globalRefs$2.spacing.lg,
17290
- [compVars.horizontalPadding]: globalRefs$2.spacing.lg,
17291
- [compVars.boxShadow]: `${globalRefs$2.shadow.wide.sm} ${shadowColor}, ${globalRefs$2.shadow.narrow.sm} ${shadowColor}`,
17419
+ [compVars.borderWidth]: globalRefs$3.border.xs,
17420
+ [compVars.borderRadius]: globalRefs$3.radius.sm,
17421
+ [compVars.gap]: globalRefs$3.spacing.md,
17422
+ [compVars.verticalPadding]: globalRefs$3.spacing.lg,
17423
+ [compVars.horizontalPadding]: globalRefs$3.spacing.lg,
17424
+ [compVars.boxShadow]: `${globalRefs$3.shadow.wide.sm} ${shadowColor}, ${globalRefs$3.shadow.narrow.sm} ${shadowColor}`,
17292
17425
  [compVars.maxHeight]: '100%',
17293
- [compVars.hostDirection]: globalRefs$2.direction,
17426
+ [compVars.hostDirection]: globalRefs$3.direction,
17294
17427
  [compVars.minItemsWidth]: '150px',
17295
17428
 
17296
17429
  _empty: {
17297
17430
  [compVars.minHeight]: '150px',
17298
- [compVars.emptyStateTextColor]: globalRefs$2.colors.surface.dark,
17299
- [compVars.emptyStateTextFontFamily]: globalRefs$2.fonts.font1.family,
17431
+ [compVars.emptyStateTextColor]: globalRefs$3.colors.surface.dark,
17432
+ [compVars.emptyStateTextFontFamily]: globalRefs$3.fonts.font1.family,
17300
17433
  },
17301
17434
 
17302
17435
  variant: {
@@ -17310,7 +17443,7 @@ const list$1 = {
17310
17443
  },
17311
17444
  };
17312
17445
 
17313
- const vars$4 = {
17446
+ const vars$5 = {
17314
17447
  ...compVars,
17315
17448
  ...helperVars,
17316
17449
  };
@@ -17318,78 +17451,78 @@ const vars$4 = {
17318
17451
  var list$2 = /*#__PURE__*/Object.freeze({
17319
17452
  __proto__: null,
17320
17453
  default: list$1,
17321
- vars: vars$4
17454
+ vars: vars$5
17322
17455
  });
17323
17456
 
17324
- const globalRefs$1 = getThemeRefs(globals);
17457
+ const globalRefs$2 = getThemeRefs(globals);
17325
17458
 
17326
- const vars$3 = ListItemClass.cssVarList;
17459
+ const vars$4 = ListItemClass.cssVarList;
17327
17460
 
17328
17461
  const list = {
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',
17462
+ [vars$4.backgroundColor]: globalRefs$2.colors.surface.main,
17463
+ [vars$4.padding]: globalRefs$2.spacing.lg,
17464
+ [vars$4.gap]: globalRefs$2.spacing.md,
17465
+ [vars$4.borderStyle]: 'solid',
17466
+ [vars$4.borderWidth]: globalRefs$2.border.xs,
17467
+ [vars$4.borderColor]: globalRefs$2.colors.surface.main,
17468
+ [vars$4.borderRadius]: globalRefs$2.radius.sm,
17469
+ [vars$4.cursor]: 'pointer',
17470
+ [vars$4.alignItems]: 'center',
17471
+ [vars$4.flexDirection]: 'row',
17472
+ [vars$4.transition]: 'border-color 0.2s, background-color 0.2s',
17340
17473
 
17341
17474
  variant: {
17342
17475
  tile: {
17343
- [vars$3.alignItems]: 'flex-start',
17344
- [vars$3.flexDirection]: 'column',
17345
- [vars$3.borderColor]: globalRefs$1.colors.surface.light,
17476
+ [vars$4.alignItems]: 'flex-start',
17477
+ [vars$4.flexDirection]: 'column',
17478
+ [vars$4.borderColor]: globalRefs$2.colors.surface.light,
17346
17479
  },
17347
17480
  },
17348
17481
 
17349
17482
  _hover: {
17350
- [vars$3.backgroundColor]: globalRefs$1.colors.surface.highlight,
17483
+ [vars$4.backgroundColor]: globalRefs$2.colors.surface.highlight,
17351
17484
  },
17352
17485
 
17353
17486
  _active: {
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}`,
17487
+ [vars$4.backgroundColor]: globalRefs$2.colors.surface.main,
17488
+ [vars$4.borderColor]: globalRefs$2.colors.primary.light,
17489
+ [vars$4.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
17357
17490
  },
17358
17491
  };
17359
17492
 
17360
17493
  var listItem = /*#__PURE__*/Object.freeze({
17361
17494
  __proto__: null,
17362
17495
  default: list,
17363
- vars: vars$3
17496
+ vars: vars$4
17364
17497
  });
17365
17498
 
17366
- const vars$2 = AppsListClass.cssVarList;
17367
- const globalRefs = getThemeRefs(globals);
17499
+ const vars$3 = AppsListClass.cssVarList;
17500
+ const globalRefs$1 = getThemeRefs(globals);
17368
17501
 
17369
17502
  const defaultHeight = '400px';
17370
17503
 
17371
17504
  const appsList = {
17372
- [vars$2.itemsFontWeight]: 'normal',
17373
- [vars$2.itemsTextAlign]: 'start',
17374
- [vars$2.hostDirection]: globalRefs.direction,
17375
- [vars$2.maxHeight]: defaultHeight,
17505
+ [vars$3.itemsFontWeight]: 'normal',
17506
+ [vars$3.itemsTextAlign]: 'start',
17507
+ [vars$3.hostDirection]: globalRefs$1.direction,
17508
+ [vars$3.maxHeight]: defaultHeight,
17376
17509
 
17377
17510
  _empty: {
17378
- [vars$2.minHeight]: defaultHeight,
17511
+ [vars$3.minHeight]: defaultHeight,
17379
17512
  },
17380
17513
 
17381
17514
  size: {
17382
17515
  xs: {
17383
- [vars$2.itemsFontSize]: '14px',
17516
+ [vars$3.itemsFontSize]: '14px',
17384
17517
  },
17385
17518
  sm: {
17386
- [vars$2.itemsFontSize]: '14px',
17519
+ [vars$3.itemsFontSize]: '14px',
17387
17520
  },
17388
17521
  md: {
17389
- [vars$2.itemsFontSize]: '16px',
17522
+ [vars$3.itemsFontSize]: '16px',
17390
17523
  },
17391
17524
  lg: {
17392
- [vars$2.itemsFontSize]: '20px',
17525
+ [vars$3.itemsFontSize]: '20px',
17393
17526
  },
17394
17527
  },
17395
17528
  };
@@ -17397,23 +17530,59 @@ const appsList = {
17397
17530
  var appsList$1 = /*#__PURE__*/Object.freeze({
17398
17531
  __proto__: null,
17399
17532
  default: appsList,
17400
- vars: vars$2
17533
+ vars: vars$3
17401
17534
  });
17402
17535
 
17403
- const vars$1 = ScopesListClass.cssVarList;
17536
+ const vars$2 = ScopesListClass.cssVarList;
17404
17537
 
17405
17538
  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',
17539
+ [vars$2.requiredInputBorderColor]: theme$1._disabled[vars$O.borderColor],
17540
+ [vars$2.requiredInputValueTextColor]: theme$1._disabled[vars$O.valueTextColor],
17541
+ [vars$2.hostWidth]: '280px',
17409
17542
  _fullWidth: {
17410
- [vars$1.hostWidth]: '100%',
17543
+ [vars$2.hostWidth]: '100%',
17411
17544
  },
17412
17545
  };
17413
17546
 
17414
17547
  var scopesList$1 = /*#__PURE__*/Object.freeze({
17415
17548
  __proto__: null,
17416
17549
  default: scopesList,
17550
+ vars: vars$2
17551
+ });
17552
+
17553
+ const globalRefs = getThemeRefs(globals);
17554
+ const vars$1 = ThirdPartyAppLogoClass.cssVarList;
17555
+
17556
+ const thirdPartyAppLogo = {
17557
+ [vars$1.gap]: globalRefs.spacing.lg,
17558
+ [vars$1.arrowsColor]: globalRefs.colors.surface.dark,
17559
+ [vars$1.thirdPartyAppLogoFallback]:
17560
+ 'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
17561
+ [vars$1.companyLogoFallback]:
17562
+ 'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
17563
+ size: {
17564
+ xs: {
17565
+ [vars$1.logoMaxHeight]: '30px',
17566
+ [vars$1.logoMaxWidth]: '120px',
17567
+ },
17568
+ sm: {
17569
+ [vars$1.logoMaxHeight]: '40px',
17570
+ [vars$1.logoMaxWidth]: '160px',
17571
+ },
17572
+ md: {
17573
+ [vars$1.logoMaxHeight]: '48px',
17574
+ [vars$1.logoMaxWidth]: '200px',
17575
+ },
17576
+ lg: {
17577
+ [vars$1.logoMaxHeight]: '60px',
17578
+ [vars$1.logoMaxWidth]: '240px',
17579
+ },
17580
+ },
17581
+ };
17582
+
17583
+ var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
17584
+ __proto__: null,
17585
+ default: thirdPartyAppLogo,
17417
17586
  vars: vars$1
17418
17587
  });
17419
17588
 
@@ -17468,6 +17637,7 @@ const components = {
17468
17637
  listItem,
17469
17638
  appsList: appsList$1,
17470
17639
  scopesList: scopesList$1,
17640
+ thirdPartyAppLogo: thirdPartyAppLogo$1,
17471
17641
  };
17472
17642
 
17473
17643
  const theme = Object.keys(components).reduce(
@@ -17480,7 +17650,7 @@ const vars = Object.keys(components).reduce(
17480
17650
  );
17481
17651
 
17482
17652
  const defaultTheme = { globals, components: theme };
17483
- const themeVars = { globals: vars$P, components: vars };
17653
+ const themeVars = { globals: vars$Q, components: vars };
17484
17654
 
17485
17655
  const colors = {
17486
17656
  surface: {
@@ -17529,5 +17699,5 @@ const darkTheme = merge({}, defaultTheme, {
17529
17699
  },
17530
17700
  });
17531
17701
 
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 };
17702
+ export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
17533
17703
  //# sourceMappingURL=index.esm.js.map