@descope/web-components-ui 1.0.390 → 1.0.392

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 +1468 -1279
  2. package/dist/cjs/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +1438 -1248
  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-grid-descope-grid-custom-column-index-js.js +1 -1
  13. package/dist/umd/descope-grid-descope-grid-item-details-column-index-js.js +3 -3
  14. package/dist/umd/descope-grid-descope-grid-text-column-index-js.js +1 -1
  15. package/dist/umd/descope-icon-index-js.js +1 -1
  16. package/dist/umd/descope-logo-index-js.js +1 -1
  17. package/dist/umd/descope-scopes-list-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-icon/helpers.js +2 -2
  26. package/src/components/descope-scopes-list/ScopesListClass.js +24 -4
  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';
@@ -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
 
@@ -14540,11 +14574,31 @@ class RawScopesList extends createBaseClass({ componentName: componentName$1, ba
14540
14574
  return this.getAttribute('size') || 'sm';
14541
14575
  }
14542
14576
 
14577
+ #getChildNodes() {
14578
+ return Array.from(this.shadowRoot.querySelector('div').children);
14579
+ }
14580
+
14581
+ // eslint-disable-next-line class-methods-use-this
14582
+ reportValidity() {
14583
+ this.checkValidity();
14584
+ }
14585
+
14586
+ // eslint-disable-next-line class-methods-use-this
14587
+ checkValidity() {
14588
+ return this.data.every((item) => !item.required || this.value.includes(item.id));
14589
+ }
14590
+
14543
14591
  get value() {
14544
- return Array.from(this.shadowRoot.querySelector('div').children).reduce(
14545
- (acc, el) => ({ ...acc, [el.getAttribute('data-id')]: el.checked }),
14546
- {}
14547
- );
14592
+ return this.#getChildNodes()
14593
+ .filter((node) => node.checked)
14594
+ .map((node) => node.getAttribute('data-id'));
14595
+ }
14596
+
14597
+ set value(val = []) {
14598
+ this.#getChildNodes().forEach((node) => {
14599
+ // eslint-disable-next-line no-param-reassign
14600
+ node.checked = val.includes(node.getAttribute('data-id'));
14601
+ });
14548
14602
  }
14549
14603
 
14550
14604
  get variant() {
@@ -14597,7 +14651,106 @@ const ScopesListClass = compose(
14597
14651
  componentNameValidationMixin
14598
14652
  )(RawScopesList);
14599
14653
 
14600
- customElements.define(componentName$1, ScopesListClass);
14654
+ customElements.define(componentName$2, ScopesListClass);
14655
+
14656
+ var arrowsImg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTQ0OTIgMTUuNjQ1TDcuNDk5OTIgMTRMMi44MzMyNSAxOC42NjY3TDcuNDk5OTIgMjMuMzMzM0w5LjE0NDkyIDIxLjY4ODNMNy4zMDE1OSAxOS44MzMzSDI0Ljk5OTlWMTcuNUg3LjMwMTU5TDkuMTQ0OTIgMTUuNjQ1WiIgZmlsbD0iIzYzNkM3NCIvPgo8cGF0aCBkPSJNMTkuODU1IDEyLjM1NTNMMjEuNSAxNC4wMDAzTDI2LjE2NjcgOS4zMzM2NkwyMS41IDQuNjY2OTlMMTkuODU1IDYuMzExOTlMMjEuNjk4MyA4LjE2Njk5SDRWMTAuNTAwM0gyMS42OTgzTDE5Ljg1NSAxMi4zNTUzWiIgZmlsbD0iIzYzNkM3NCIvPgo8L3N2Zz4K";
14657
+
14658
+ const componentName$1 = getComponentName('third-party-app-logo');
14659
+ class RawThirdPartyAppLogoClass extends createBaseClass({
14660
+ componentName: componentName$1,
14661
+ baseSelector: '.wrapper',
14662
+ }) {
14663
+ constructor() {
14664
+ super();
14665
+ this.attachShadow({ mode: 'open' }).innerHTML = `
14666
+ <style>
14667
+ :host {
14668
+ display: inline-flex;
14669
+ }
14670
+ :host([draggable="true"]) > div {
14671
+ pointer-events: none
14672
+ }
14673
+
14674
+ .wrapper {
14675
+ display: flex;
14676
+ justify-content: center;
14677
+ align-items: center;
14678
+ }
14679
+
14680
+ .third-party-app-logo {
14681
+ flex-shrink: 0;
14682
+ display: inline-block;
14683
+ max-width: 100%;
14684
+ max-height: 100%;
14685
+ object-fit: contain;
14686
+ }
14687
+
14688
+ .company-logo-wrapper, .third-party-app-logo-wrapper {
14689
+ flex-shrink: 0;
14690
+ display: inline-flex;
14691
+ }
14692
+
14693
+ .company-logo-wrapper {
14694
+ justify-content: flex-end;
14695
+ }
14696
+
14697
+ .third-party-app-logo-wrapper {
14698
+ justify-content: flex-start;
14699
+ }
14700
+
14701
+ .arrows {
14702
+ flex-shrink: 0;
14703
+ display: flex;
14704
+ }
14705
+
14706
+ </style>
14707
+ <div class="wrapper">
14708
+ <div class="third-party-app-logo-wrapper">
14709
+ <div class="third-party-app-logo"></div>
14710
+ </div>
14711
+ <div class="arrows">
14712
+ <descope-icon src="${arrowsImg}"></descope-icon>
14713
+ </div>
14714
+ <div class="company-logo-wrapper">
14715
+ <descope-logo></descope-logo>
14716
+ </div>
14717
+ </div>
14718
+ `;
14719
+ }
14720
+ }
14721
+
14722
+ const companyLogoWrapper = '>.company-logo-wrapper';
14723
+ const thirdPartyAppLogoWrapper = '>.third-party-app-logo-wrapper';
14724
+
14725
+ const ThirdPartyAppLogoClass = compose(
14726
+ createStyleMixin({
14727
+ mappings: {
14728
+ logoMaxHeight: [
14729
+ { selector: companyLogoWrapper, property: 'height' },
14730
+ { selector: thirdPartyAppLogoWrapper, property: 'height' },
14731
+ ],
14732
+ logoMaxWidth: [
14733
+ { selector: companyLogoWrapper, property: 'max-width' },
14734
+ { selector: thirdPartyAppLogoWrapper, property: 'max-width' },
14735
+ ],
14736
+ thirdPartyAppLogo: {
14737
+ selector: () => '.third-party-app-logo',
14738
+ property: 'content',
14739
+ fallback: {},
14740
+ },
14741
+ companyLogoFallback: {
14742
+ selector: LogoClass.componentName,
14743
+ property: LogoClass.cssVarList.fallbackUrl,
14744
+ },
14745
+ gap: {},
14746
+ arrowsColor: { selector: IconClass.componentName, property: IconClass.cssVarList.fill },
14747
+ },
14748
+ }),
14749
+ draggableMixin,
14750
+ componentNameValidationMixin
14751
+ )(RawThirdPartyAppLogoClass);
14752
+
14753
+ customElements.define(componentName$1, ThirdPartyAppLogoClass);
14601
14754
 
14602
14755
  const getVarName = (path) => getCssVarName(DESCOPE_PREFIX, ...path);
14603
14756
 
@@ -15029,33 +15182,33 @@ const globals = {
15029
15182
  fonts,
15030
15183
  direction,
15031
15184
  };
15032
- const vars$P = getThemeVars(globals);
15185
+ const vars$Q = getThemeVars(globals);
15033
15186
 
15034
- const globalRefs$x = getThemeRefs(globals);
15187
+ const globalRefs$y = getThemeRefs(globals);
15035
15188
  const compVars$6 = ButtonClass.cssVarList;
15036
15189
 
15037
15190
  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,
15191
+ primary: globalRefs$y.colors.primary,
15192
+ secondary: globalRefs$y.colors.secondary,
15193
+ success: globalRefs$y.colors.success,
15194
+ error: globalRefs$y.colors.error,
15195
+ surface: globalRefs$y.colors.surface,
15043
15196
  };
15044
15197
 
15045
- const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$10);
15198
+ const [helperTheme$4, helperRefs$4, helperVars$4] = createHelperVars({ mode }, componentName$11);
15046
15199
 
15047
15200
  const button = {
15048
15201
  ...helperTheme$4,
15049
15202
 
15050
- [compVars$6.fontFamily]: globalRefs$x.fonts.font1.family,
15203
+ [compVars$6.fontFamily]: globalRefs$y.fonts.font1.family,
15051
15204
 
15052
15205
  [compVars$6.cursor]: 'pointer',
15053
15206
  [compVars$6.hostHeight]: '3em',
15054
15207
  [compVars$6.hostWidth]: 'auto',
15055
- [compVars$6.hostDirection]: globalRefs$x.direction,
15208
+ [compVars$6.hostDirection]: globalRefs$y.direction,
15056
15209
 
15057
- [compVars$6.borderRadius]: globalRefs$x.radius.sm,
15058
- [compVars$6.borderWidth]: globalRefs$x.border.xs,
15210
+ [compVars$6.borderRadius]: globalRefs$y.radius.sm,
15211
+ [compVars$6.borderWidth]: globalRefs$y.border.xs,
15059
15212
  [compVars$6.borderStyle]: 'solid',
15060
15213
  [compVars$6.borderColor]: 'transparent',
15061
15214
 
@@ -15101,11 +15254,11 @@ const button = {
15101
15254
  },
15102
15255
 
15103
15256
  _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,
15257
+ [helperVars$4.main]: globalRefs$y.colors.surface.light,
15258
+ [helperVars$4.dark]: globalRefs$y.colors.surface.dark,
15259
+ [helperVars$4.light]: globalRefs$y.colors.surface.light,
15260
+ [helperVars$4.contrast]: globalRefs$y.colors.surface.main,
15261
+ [compVars$6.iconColor]: globalRefs$y.colors.surface.main,
15109
15262
  },
15110
15263
 
15111
15264
  variant: {
@@ -15154,7 +15307,7 @@ const button = {
15154
15307
  },
15155
15308
  };
15156
15309
 
15157
- const vars$O = {
15310
+ const vars$P = {
15158
15311
  ...compVars$6,
15159
15312
  ...helperVars$4,
15160
15313
  };
@@ -15162,29 +15315,29 @@ const vars$O = {
15162
15315
  var button$1 = /*#__PURE__*/Object.freeze({
15163
15316
  __proto__: null,
15164
15317
  default: button,
15165
- vars: vars$O
15318
+ vars: vars$P
15166
15319
  });
15167
15320
 
15168
15321
  const componentName = getComponentName('input-wrapper');
15169
- const globalRefs$w = getThemeRefs(globals);
15322
+ const globalRefs$x = getThemeRefs(globals);
15170
15323
 
15171
- const [theme$1, refs, vars$N] = createHelperVars(
15324
+ const [theme$1, refs, vars$O] = createHelperVars(
15172
15325
  {
15173
- labelTextColor: globalRefs$w.colors.surface.dark,
15326
+ labelTextColor: globalRefs$x.colors.surface.dark,
15174
15327
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
15175
15328
  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,
15329
+ valueTextColor: globalRefs$x.colors.surface.contrast,
15330
+ placeholderTextColor: globalRefs$x.colors.surface.dark,
15178
15331
  requiredIndicator: "'*'",
15179
- helperTextColor: globalRefs$w.colors.surface.dark,
15180
- errorMessageTextColor: globalRefs$w.colors.error.main,
15181
- successMessageTextColor: globalRefs$w.colors.success.main,
15332
+ helperTextColor: globalRefs$x.colors.surface.dark,
15333
+ errorMessageTextColor: globalRefs$x.colors.error.main,
15334
+ successMessageTextColor: globalRefs$x.colors.success.main,
15182
15335
 
15183
- borderWidth: globalRefs$w.border.xs,
15184
- borderRadius: globalRefs$w.radius.xs,
15336
+ borderWidth: globalRefs$x.border.xs,
15337
+ borderRadius: globalRefs$x.radius.xs,
15185
15338
  borderColor: 'transparent',
15186
15339
 
15187
- outlineWidth: globalRefs$w.border.sm,
15340
+ outlineWidth: globalRefs$x.border.sm,
15188
15341
  outlineStyle: 'solid',
15189
15342
  outlineColor: 'transparent',
15190
15343
  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 +15351,11 @@ const [theme$1, refs, vars$N] = createHelperVars(
15198
15351
 
15199
15352
  textAlign: 'start',
15200
15353
 
15201
- backgroundColor: globalRefs$w.colors.surface.main,
15354
+ backgroundColor: globalRefs$x.colors.surface.main,
15202
15355
 
15203
- fontFamily: globalRefs$w.fonts.font1.family,
15356
+ fontFamily: globalRefs$x.fonts.font1.family,
15204
15357
 
15205
- direction: globalRefs$w.direction,
15358
+ direction: globalRefs$x.direction,
15206
15359
 
15207
15360
  overlayOpacity: '0.3',
15208
15361
 
@@ -15256,28 +15409,28 @@ const [theme$1, refs, vars$N] = createHelperVars(
15256
15409
  },
15257
15410
 
15258
15411
  _focused: {
15259
- outlineColor: globalRefs$w.colors.surface.light,
15412
+ outlineColor: globalRefs$x.colors.surface.light,
15260
15413
  _invalid: {
15261
- outlineColor: globalRefs$w.colors.error.main,
15414
+ outlineColor: globalRefs$x.colors.error.main,
15262
15415
  },
15263
15416
  },
15264
15417
 
15265
15418
  _bordered: {
15266
- outlineWidth: globalRefs$w.border.xs,
15267
- borderColor: globalRefs$w.colors.surface.light,
15419
+ outlineWidth: globalRefs$x.border.xs,
15420
+ borderColor: globalRefs$x.colors.surface.light,
15268
15421
  borderStyle: 'solid',
15269
15422
  _invalid: {
15270
- borderColor: globalRefs$w.colors.error.main,
15423
+ borderColor: globalRefs$x.colors.error.main,
15271
15424
  },
15272
15425
  },
15273
15426
 
15274
15427
  _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,
15428
+ labelTextColor: globalRefs$x.colors.surface.light,
15429
+ borderColor: globalRefs$x.colors.surface.light,
15430
+ valueTextColor: globalRefs$x.colors.surface.light,
15431
+ placeholderTextColor: globalRefs$x.colors.surface.light,
15432
+ helperTextColor: globalRefs$x.colors.surface.light,
15433
+ backgroundColor: globalRefs$x.colors.surface.main,
15281
15434
  },
15282
15435
  },
15283
15436
  componentName
@@ -15287,13 +15440,69 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
15287
15440
  __proto__: null,
15288
15441
  default: theme$1,
15289
15442
  refs: refs,
15443
+ vars: vars$O
15444
+ });
15445
+
15446
+ const globalRefs$w = getThemeRefs(globals);
15447
+ const vars$N = TextFieldClass.cssVarList;
15448
+
15449
+ const textField = {
15450
+ [vars$N.hostWidth]: refs.width,
15451
+ [vars$N.hostMinWidth]: refs.minWidth,
15452
+ [vars$N.hostDirection]: refs.direction,
15453
+ [vars$N.fontSize]: refs.fontSize,
15454
+ [vars$N.fontFamily]: refs.fontFamily,
15455
+ [vars$N.labelFontSize]: refs.labelFontSize,
15456
+ [vars$N.labelFontWeight]: refs.labelFontWeight,
15457
+ [vars$N.labelTextColor]: refs.labelTextColor,
15458
+ [vars$N.labelRequiredIndicator]: refs.requiredIndicator,
15459
+ [vars$N.errorMessageTextColor]: refs.errorMessageTextColor,
15460
+ [vars$N.inputValueTextColor]: refs.valueTextColor,
15461
+ [vars$N.inputPlaceholderColor]: refs.placeholderTextColor,
15462
+ [vars$N.inputBorderWidth]: refs.borderWidth,
15463
+ [vars$N.inputBorderStyle]: refs.borderStyle,
15464
+ [vars$N.inputBorderColor]: refs.borderColor,
15465
+ [vars$N.inputBorderRadius]: refs.borderRadius,
15466
+ [vars$N.inputOutlineWidth]: refs.outlineWidth,
15467
+ [vars$N.inputOutlineStyle]: refs.outlineStyle,
15468
+ [vars$N.inputOutlineColor]: refs.outlineColor,
15469
+ [vars$N.inputOutlineOffset]: refs.outlineOffset,
15470
+ [vars$N.inputBackgroundColor]: refs.backgroundColor,
15471
+ [vars$N.inputHeight]: refs.inputHeight,
15472
+ [vars$N.inputHorizontalPadding]: refs.horizontalPadding,
15473
+ [vars$N.helperTextColor]: refs.helperTextColor,
15474
+ [vars$N.textAlign]: refs.textAlign,
15475
+ textAlign: {
15476
+ right: { [vars$N.inputTextAlign]: 'right' },
15477
+ left: { [vars$N.inputTextAlign]: 'left' },
15478
+ center: { [vars$N.inputTextAlign]: 'center' },
15479
+ },
15480
+ [vars$N.labelPosition]: refs.labelPosition,
15481
+ [vars$N.labelTopPosition]: refs.labelTopPosition,
15482
+ [vars$N.labelHorizontalPosition]: refs.labelHorizontalPosition,
15483
+ [vars$N.inputTransformY]: refs.inputTransformY,
15484
+ [vars$N.inputTransition]: refs.inputTransition,
15485
+ [vars$N.marginInlineStart]: refs.marginInlineStart,
15486
+ [vars$N.placeholderOpacity]: refs.placeholderOpacity,
15487
+ [vars$N.inputVerticalAlignment]: refs.inputVerticalAlignment,
15488
+ [vars$N.valueInputHeight]: refs.valueInputHeight,
15489
+ [vars$N.valueInputMarginBottom]: refs.valueInputMarginBottom,
15490
+ [vars$N.inputIconOffset]: globalRefs$w.spacing.md,
15491
+ [vars$N.inputIconSize]: refs.inputIconSize,
15492
+ [vars$N.inputIconColor]: refs.placeholderTextColor,
15493
+ };
15494
+
15495
+ var textField$1 = /*#__PURE__*/Object.freeze({
15496
+ __proto__: null,
15497
+ default: textField,
15498
+ textField: textField,
15290
15499
  vars: vars$N
15291
15500
  });
15292
15501
 
15293
15502
  const globalRefs$v = getThemeRefs(globals);
15294
- const vars$M = TextFieldClass.cssVarList;
15503
+ const vars$M = PasswordClass.cssVarList;
15295
15504
 
15296
- const textField = {
15505
+ const password = {
15297
15506
  [vars$M.hostWidth]: refs.width,
15298
15507
  [vars$M.hostMinWidth]: refs.minWidth,
15299
15508
  [vars$M.hostDirection]: refs.direction,
@@ -15302,10 +15511,13 @@ const textField = {
15302
15511
  [vars$M.labelFontSize]: refs.labelFontSize,
15303
15512
  [vars$M.labelFontWeight]: refs.labelFontWeight,
15304
15513
  [vars$M.labelTextColor]: refs.labelTextColor,
15305
- [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
15306
15514
  [vars$M.errorMessageTextColor]: refs.errorMessageTextColor,
15515
+ [vars$M.inputHorizontalPadding]: refs.horizontalPadding,
15516
+ [vars$M.inputHeight]: refs.inputHeight,
15517
+ [vars$M.inputBackgroundColor]: refs.backgroundColor,
15518
+ [vars$M.labelRequiredIndicator]: refs.requiredIndicator,
15307
15519
  [vars$M.inputValueTextColor]: refs.valueTextColor,
15308
- [vars$M.inputPlaceholderColor]: refs.placeholderTextColor,
15520
+ [vars$M.inputPlaceholderTextColor]: refs.placeholderTextColor,
15309
15521
  [vars$M.inputBorderWidth]: refs.borderWidth,
15310
15522
  [vars$M.inputBorderStyle]: refs.borderStyle,
15311
15523
  [vars$M.inputBorderColor]: refs.borderColor,
@@ -15314,16 +15526,9 @@ const textField = {
15314
15526
  [vars$M.inputOutlineStyle]: refs.outlineStyle,
15315
15527
  [vars$M.inputOutlineColor]: refs.outlineColor,
15316
15528
  [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
- },
15529
+ [vars$M.revealButtonOffset]: globalRefs$v.spacing.md,
15530
+ [vars$M.revealButtonSize]: refs.toggleButtonSize,
15531
+ [vars$M.revealButtonColor]: refs.placeholderTextColor,
15327
15532
  [vars$M.labelPosition]: refs.labelPosition,
15328
15533
  [vars$M.labelTopPosition]: refs.labelTopPosition,
15329
15534
  [vars$M.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15333,23 +15538,17 @@ const textField = {
15333
15538
  [vars$M.placeholderOpacity]: refs.placeholderOpacity,
15334
15539
  [vars$M.inputVerticalAlignment]: refs.inputVerticalAlignment,
15335
15540
  [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
15541
  };
15341
15542
 
15342
- var textField$1 = /*#__PURE__*/Object.freeze({
15543
+ var password$1 = /*#__PURE__*/Object.freeze({
15343
15544
  __proto__: null,
15344
- default: textField,
15345
- textField: textField,
15545
+ default: password,
15346
15546
  vars: vars$M
15347
15547
  });
15348
15548
 
15349
- const globalRefs$u = getThemeRefs(globals);
15350
- const vars$L = PasswordClass.cssVarList;
15549
+ const vars$L = NumberFieldClass.cssVarList;
15351
15550
 
15352
- const password = {
15551
+ const numberField = {
15353
15552
  [vars$L.hostWidth]: refs.width,
15354
15553
  [vars$L.hostMinWidth]: refs.minWidth,
15355
15554
  [vars$L.hostDirection]: refs.direction,
@@ -15359,12 +15558,8 @@ const password = {
15359
15558
  [vars$L.labelFontWeight]: refs.labelFontWeight,
15360
15559
  [vars$L.labelTextColor]: refs.labelTextColor,
15361
15560
  [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
15561
  [vars$L.inputValueTextColor]: refs.valueTextColor,
15367
- [vars$L.inputPlaceholderTextColor]: refs.placeholderTextColor,
15562
+ [vars$L.inputPlaceholderColor]: refs.placeholderTextColor,
15368
15563
  [vars$L.inputBorderWidth]: refs.borderWidth,
15369
15564
  [vars$L.inputBorderStyle]: refs.borderStyle,
15370
15565
  [vars$L.inputBorderColor]: refs.borderColor,
@@ -15373,9 +15568,10 @@ const password = {
15373
15568
  [vars$L.inputOutlineStyle]: refs.outlineStyle,
15374
15569
  [vars$L.inputOutlineColor]: refs.outlineColor,
15375
15570
  [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,
15571
+ [vars$L.inputBackgroundColor]: refs.backgroundColor,
15572
+ [vars$L.labelRequiredIndicator]: refs.requiredIndicator,
15573
+ [vars$L.inputHorizontalPadding]: refs.horizontalPadding,
15574
+ [vars$L.inputHeight]: refs.inputHeight,
15379
15575
  [vars$L.labelPosition]: refs.labelPosition,
15380
15576
  [vars$L.labelTopPosition]: refs.labelTopPosition,
15381
15577
  [vars$L.labelHorizontalPosition]: refs.labelHorizontalPosition,
@@ -15385,17 +15581,18 @@ const password = {
15385
15581
  [vars$L.placeholderOpacity]: refs.placeholderOpacity,
15386
15582
  [vars$L.inputVerticalAlignment]: refs.inputVerticalAlignment,
15387
15583
  [vars$L.valueInputHeight]: refs.valueInputHeight,
15584
+ [vars$L.valueInputMarginBottom]: refs.valueInputMarginBottom,
15388
15585
  };
15389
15586
 
15390
- var password$1 = /*#__PURE__*/Object.freeze({
15587
+ var numberField$1 = /*#__PURE__*/Object.freeze({
15391
15588
  __proto__: null,
15392
- default: password,
15589
+ default: numberField,
15393
15590
  vars: vars$L
15394
15591
  });
15395
15592
 
15396
- const vars$K = NumberFieldClass.cssVarList;
15593
+ const vars$K = EmailFieldClass.cssVarList;
15397
15594
 
15398
- const numberField = {
15595
+ const emailField = {
15399
15596
  [vars$K.hostWidth]: refs.width,
15400
15597
  [vars$K.hostMinWidth]: refs.minWidth,
15401
15598
  [vars$K.hostDirection]: refs.direction,
@@ -15406,6 +15603,7 @@ const numberField = {
15406
15603
  [vars$K.labelTextColor]: refs.labelTextColor,
15407
15604
  [vars$K.errorMessageTextColor]: refs.errorMessageTextColor,
15408
15605
  [vars$K.inputValueTextColor]: refs.valueTextColor,
15606
+ [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
15409
15607
  [vars$K.inputPlaceholderColor]: refs.placeholderTextColor,
15410
15608
  [vars$K.inputBorderWidth]: refs.borderWidth,
15411
15609
  [vars$K.inputBorderStyle]: refs.borderStyle,
@@ -15416,7 +15614,6 @@ const numberField = {
15416
15614
  [vars$K.inputOutlineColor]: refs.outlineColor,
15417
15615
  [vars$K.inputOutlineOffset]: refs.outlineOffset,
15418
15616
  [vars$K.inputBackgroundColor]: refs.backgroundColor,
15419
- [vars$K.labelRequiredIndicator]: refs.requiredIndicator,
15420
15617
  [vars$K.inputHorizontalPadding]: refs.horizontalPadding,
15421
15618
  [vars$K.inputHeight]: refs.inputHeight,
15422
15619
  [vars$K.labelPosition]: refs.labelPosition,
@@ -15431,200 +15628,156 @@ const numberField = {
15431
15628
  [vars$K.valueInputMarginBottom]: refs.valueInputMarginBottom,
15432
15629
  };
15433
15630
 
15434
- var numberField$1 = /*#__PURE__*/Object.freeze({
15631
+ var emailField$1 = /*#__PURE__*/Object.freeze({
15435
15632
  __proto__: null,
15436
- default: numberField,
15633
+ default: emailField,
15437
15634
  vars: vars$K
15438
15635
  });
15439
15636
 
15440
- const vars$J = EmailFieldClass.cssVarList;
15637
+ const vars$J = TextAreaClass.cssVarList;
15441
15638
 
15442
- const emailField = {
15639
+ const textArea = {
15443
15640
  [vars$J.hostWidth]: refs.width,
15444
15641
  [vars$J.hostMinWidth]: refs.minWidth,
15445
15642
  [vars$J.hostDirection]: refs.direction,
15446
15643
  [vars$J.fontSize]: refs.fontSize,
15447
15644
  [vars$J.fontFamily]: refs.fontFamily,
15448
- [vars$J.labelFontSize]: refs.labelFontSize,
15449
- [vars$J.labelFontWeight]: refs.labelFontWeight,
15450
15645
  [vars$J.labelTextColor]: refs.labelTextColor,
15646
+ [vars$J.labelRequiredIndicator]: refs.requiredIndicator,
15451
15647
  [vars$J.errorMessageTextColor]: refs.errorMessageTextColor,
15648
+ [vars$J.inputBackgroundColor]: refs.backgroundColor,
15452
15649
  [vars$J.inputValueTextColor]: refs.valueTextColor,
15453
- [vars$J.labelRequiredIndicator]: refs.requiredIndicator,
15454
- [vars$J.inputPlaceholderColor]: refs.placeholderTextColor,
15650
+ [vars$J.inputPlaceholderTextColor]: refs.placeholderTextColor,
15651
+ [vars$J.inputBorderRadius]: refs.borderRadius,
15455
15652
  [vars$J.inputBorderWidth]: refs.borderWidth,
15456
15653
  [vars$J.inputBorderStyle]: refs.borderStyle,
15457
15654
  [vars$J.inputBorderColor]: refs.borderColor,
15458
- [vars$J.inputBorderRadius]: refs.borderRadius,
15459
15655
  [vars$J.inputOutlineWidth]: refs.outlineWidth,
15460
15656
  [vars$J.inputOutlineStyle]: refs.outlineStyle,
15461
15657
  [vars$J.inputOutlineColor]: refs.outlineColor,
15462
15658
  [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,
15659
+ [vars$J.inputResizeType]: 'vertical',
15660
+ [vars$J.inputMinHeight]: '5em',
15661
+ textAlign: {
15662
+ right: { [vars$J.inputTextAlign]: 'right' },
15663
+ left: { [vars$J.inputTextAlign]: 'left' },
15664
+ center: { [vars$J.inputTextAlign]: 'center' },
15665
+ },
15666
+
15667
+ _readonly: {
15668
+ [vars$J.inputResizeType]: 'none',
15669
+ },
15476
15670
  };
15477
15671
 
15478
- var emailField$1 = /*#__PURE__*/Object.freeze({
15672
+ var textArea$1 = /*#__PURE__*/Object.freeze({
15479
15673
  __proto__: null,
15480
- default: emailField,
15674
+ default: textArea,
15481
15675
  vars: vars$J
15482
15676
  });
15483
15677
 
15484
- const vars$I = TextAreaClass.cssVarList;
15678
+ const vars$I = CheckboxClass.cssVarList;
15679
+ const checkboxSize = '1.35em';
15485
15680
 
15486
- const textArea = {
15681
+ const checkbox = {
15487
15682
  [vars$I.hostWidth]: refs.width,
15488
- [vars$I.hostMinWidth]: refs.minWidth,
15489
15683
  [vars$I.hostDirection]: refs.direction,
15490
15684
  [vars$I.fontSize]: refs.fontSize,
15491
15685
  [vars$I.fontFamily]: refs.fontFamily,
15492
15686
  [vars$I.labelTextColor]: refs.labelTextColor,
15493
15687
  [vars$I.labelRequiredIndicator]: refs.requiredIndicator,
15688
+ [vars$I.labelFontWeight]: '400',
15689
+ [vars$I.labelLineHeight]: checkboxSize,
15690
+ [vars$I.labelSpacing]: '1em',
15494
15691
  [vars$I.errorMessageTextColor]: refs.errorMessageTextColor,
15495
- [vars$I.inputBackgroundColor]: refs.backgroundColor,
15496
- [vars$I.inputValueTextColor]: refs.valueTextColor,
15497
- [vars$I.inputPlaceholderTextColor]: refs.placeholderTextColor,
15692
+ [vars$I.inputOutlineWidth]: refs.outlineWidth,
15693
+ [vars$I.inputOutlineOffset]: refs.outlineOffset,
15694
+ [vars$I.inputOutlineColor]: refs.outlineColor,
15695
+ [vars$I.inputOutlineStyle]: refs.outlineStyle,
15498
15696
  [vars$I.inputBorderRadius]: refs.borderRadius,
15697
+ [vars$I.inputBorderColor]: refs.borderColor,
15499
15698
  [vars$I.inputBorderWidth]: refs.borderWidth,
15500
15699
  [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
- },
15700
+ [vars$I.inputBackgroundColor]: refs.backgroundColor,
15701
+ [vars$I.inputSize]: checkboxSize,
15702
+ [vars$I.inputValueTextColor]: refs.valueTextColor,
15517
15703
  };
15518
15704
 
15519
- var textArea$1 = /*#__PURE__*/Object.freeze({
15705
+ var checkbox$1 = /*#__PURE__*/Object.freeze({
15520
15706
  __proto__: null,
15521
- default: textArea,
15707
+ default: checkbox,
15522
15708
  vars: vars$I
15523
15709
  });
15524
15710
 
15525
- const vars$H = CheckboxClass.cssVarList;
15526
- const checkboxSize = '1.35em';
15711
+ const knobMargin = '2px';
15712
+ const checkboxHeight = '1.25em';
15527
15713
 
15528
- const checkbox = {
15714
+ const globalRefs$u = getThemeRefs(globals);
15715
+ const vars$H = SwitchToggleClass.cssVarList;
15716
+
15717
+ const switchToggle = {
15529
15718
  [vars$H.hostWidth]: refs.width,
15530
15719
  [vars$H.hostDirection]: refs.direction,
15531
15720
  [vars$H.fontSize]: refs.fontSize,
15532
15721
  [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,
15722
+
15539
15723
  [vars$H.inputOutlineWidth]: refs.outlineWidth,
15540
15724
  [vars$H.inputOutlineOffset]: refs.outlineOffset,
15541
15725
  [vars$H.inputOutlineColor]: refs.outlineColor,
15542
15726
  [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
15727
 
15552
- var checkbox$1 = /*#__PURE__*/Object.freeze({
15553
- __proto__: null,
15554
- default: checkbox,
15555
- vars: vars$H
15556
- });
15728
+ [vars$H.trackBorderStyle]: refs.borderStyle,
15729
+ [vars$H.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
15730
+ [vars$H.trackBorderColor]: refs.borderColor,
15731
+ [vars$H.trackBackgroundColor]: refs.backgroundColor,
15732
+ [vars$H.trackBorderRadius]: globalRefs$u.radius.md,
15733
+ [vars$H.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
15734
+ [vars$H.trackHeight]: checkboxHeight,
15735
+
15736
+ [vars$H.knobSize]: `calc(1em - ${knobMargin})`,
15737
+ [vars$H.knobRadius]: '50%',
15738
+ [vars$H.knobTopOffset]: '1px',
15739
+ [vars$H.knobLeftOffset]: knobMargin,
15740
+ [vars$H.knobColor]: refs.labelTextColor,
15741
+ [vars$H.knobTransitionDuration]: '0.3s',
15557
15742
 
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,
15743
+ [vars$H.labelTextColor]: refs.labelTextColor,
15744
+ [vars$H.labelFontWeight]: '400',
15745
+ [vars$H.labelLineHeight]: '1.35em',
15746
+ [vars$H.labelSpacing]: '1em',
15747
+ [vars$H.labelRequiredIndicator]: refs.requiredIndicator,
15748
+ [vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
15596
15749
 
15597
15750
  _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,
15751
+ [vars$H.trackBorderColor]: refs.borderColor,
15752
+ [vars$H.knobLeftOffset]: `calc(100% - var(${vars$H.knobSize}) - ${knobMargin})`,
15753
+ [vars$H.knobColor]: refs.valueTextColor,
15754
+ [vars$H.knobTextColor]: refs.valueTextColor,
15602
15755
  },
15603
15756
 
15604
15757
  _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,
15758
+ [vars$H.knobColor]: globalRefs$u.colors.surface.light,
15759
+ [vars$H.trackBorderColor]: globalRefs$u.colors.surface.light,
15760
+ [vars$H.trackBackgroundColor]: globalRefs$u.colors.surface.main,
15761
+ [vars$H.labelTextColor]: refs.labelTextColor,
15609
15762
  _checked: {
15610
- [vars$G.knobColor]: globalRefs$t.colors.surface.light,
15611
- [vars$G.trackBackgroundColor]: globalRefs$t.colors.surface.main,
15763
+ [vars$H.knobColor]: globalRefs$u.colors.surface.light,
15764
+ [vars$H.trackBackgroundColor]: globalRefs$u.colors.surface.main,
15612
15765
  },
15613
15766
  },
15614
15767
 
15615
15768
  _invalid: {
15616
- [vars$G.trackBorderColor]: globalRefs$t.colors.error.main,
15617
- [vars$G.knobColor]: globalRefs$t.colors.error.main,
15769
+ [vars$H.trackBorderColor]: globalRefs$u.colors.error.main,
15770
+ [vars$H.knobColor]: globalRefs$u.colors.error.main,
15618
15771
  },
15619
15772
  };
15620
15773
 
15621
15774
  var switchToggle$1 = /*#__PURE__*/Object.freeze({
15622
15775
  __proto__: null,
15623
15776
  default: switchToggle,
15624
- vars: vars$G
15777
+ vars: vars$H
15625
15778
  });
15626
15779
 
15627
- const globalRefs$s = getThemeRefs(globals);
15780
+ const globalRefs$t = getThemeRefs(globals);
15628
15781
 
15629
15782
  const compVars$5 = ContainerClass.cssVarList;
15630
15783
 
@@ -15646,7 +15799,7 @@ const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars(
15646
15799
  horizontalAlignment,
15647
15800
  shadowColor: '#00000020', // if we want to support transparency vars, we should use different color format
15648
15801
  },
15649
- componentName$W
15802
+ componentName$X
15650
15803
  );
15651
15804
 
15652
15805
  const { shadowColor: shadowColor$3 } = helperRefs$3;
@@ -15657,10 +15810,10 @@ const container = {
15657
15810
  [compVars$5.itemsGrow]: '0',
15658
15811
  [compVars$5.hostWidth]: '100%',
15659
15812
  [compVars$5.boxShadow]: 'none',
15660
- [compVars$5.backgroundColor]: globalRefs$s.colors.surface.main,
15661
- [compVars$5.color]: globalRefs$s.colors.surface.contrast,
15813
+ [compVars$5.backgroundColor]: globalRefs$t.colors.surface.main,
15814
+ [compVars$5.color]: globalRefs$t.colors.surface.contrast,
15662
15815
  [compVars$5.borderRadius]: '0px',
15663
- [compVars$5.hostDirection]: globalRefs$s.direction,
15816
+ [compVars$5.hostDirection]: globalRefs$t.direction,
15664
15817
 
15665
15818
  verticalPadding: {
15666
15819
  sm: { [compVars$5.verticalPadding]: '5px' },
@@ -15706,34 +15859,34 @@ const container = {
15706
15859
 
15707
15860
  shadow: {
15708
15861
  sm: {
15709
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide.sm} ${shadowColor$3}, ${globalRefs$s.shadow.narrow.sm} ${shadowColor$3}`,
15862
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide.sm} ${shadowColor$3}, ${globalRefs$t.shadow.narrow.sm} ${shadowColor$3}`,
15710
15863
  },
15711
15864
  md: {
15712
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide.md} ${shadowColor$3}, ${globalRefs$s.shadow.narrow.md} ${shadowColor$3}`,
15865
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide.md} ${shadowColor$3}, ${globalRefs$t.shadow.narrow.md} ${shadowColor$3}`,
15713
15866
  },
15714
15867
  lg: {
15715
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide.lg} ${shadowColor$3}, ${globalRefs$s.shadow.narrow.lg} ${shadowColor$3}`,
15868
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide.lg} ${shadowColor$3}, ${globalRefs$t.shadow.narrow.lg} ${shadowColor$3}`,
15716
15869
  },
15717
15870
  xl: {
15718
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide.xl} ${shadowColor$3}, ${globalRefs$s.shadow.narrow.xl} ${shadowColor$3}`,
15871
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide.xl} ${shadowColor$3}, ${globalRefs$t.shadow.narrow.xl} ${shadowColor$3}`,
15719
15872
  },
15720
15873
  '2xl': {
15721
15874
  [helperVars$3.shadowColor]: '#00000050', // mimic daisyUI shadow settings
15722
- [compVars$5.boxShadow]: `${globalRefs$s.shadow.wide['2xl']} ${shadowColor$3}`,
15875
+ [compVars$5.boxShadow]: `${globalRefs$t.shadow.wide['2xl']} ${shadowColor$3}`,
15723
15876
  },
15724
15877
  },
15725
15878
 
15726
15879
  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'] },
15880
+ sm: { [compVars$5.borderRadius]: globalRefs$t.radius.sm },
15881
+ md: { [compVars$5.borderRadius]: globalRefs$t.radius.md },
15882
+ lg: { [compVars$5.borderRadius]: globalRefs$t.radius.lg },
15883
+ xl: { [compVars$5.borderRadius]: globalRefs$t.radius.xl },
15884
+ '2xl': { [compVars$5.borderRadius]: globalRefs$t.radius['2xl'] },
15885
+ '3xl': { [compVars$5.borderRadius]: globalRefs$t.radius['3xl'] },
15733
15886
  },
15734
15887
  };
15735
15888
 
15736
- const vars$F = {
15889
+ const vars$G = {
15737
15890
  ...compVars$5,
15738
15891
  ...helperVars$3,
15739
15892
  };
@@ -15741,168 +15894,168 @@ const vars$F = {
15741
15894
  var container$1 = /*#__PURE__*/Object.freeze({
15742
15895
  __proto__: null,
15743
15896
  default: container,
15744
- vars: vars$F
15897
+ vars: vars$G
15745
15898
  });
15746
15899
 
15747
- const vars$E = LogoClass.cssVarList;
15900
+ const vars$F = LogoClass.cssVarList;
15748
15901
 
15749
15902
  const logo$2 = {
15750
- [vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
15903
+ [vars$F.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
15751
15904
  };
15752
15905
 
15753
15906
  var logo$3 = /*#__PURE__*/Object.freeze({
15754
15907
  __proto__: null,
15755
15908
  default: logo$2,
15756
- vars: vars$E
15909
+ vars: vars$F
15757
15910
  });
15758
15911
 
15759
- const vars$D = TotpImageClass.cssVarList;
15912
+ const vars$E = TotpImageClass.cssVarList;
15760
15913
 
15761
15914
  const logo$1 = {
15762
- [vars$D.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
15915
+ [vars$E.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
15763
15916
  };
15764
15917
 
15765
15918
  var totpImage = /*#__PURE__*/Object.freeze({
15766
15919
  __proto__: null,
15767
15920
  default: logo$1,
15768
- vars: vars$D
15921
+ vars: vars$E
15769
15922
  });
15770
15923
 
15771
- const vars$C = NotpImageClass.cssVarList;
15924
+ const vars$D = NotpImageClass.cssVarList;
15772
15925
 
15773
15926
  const logo = {
15774
- [vars$C.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
15927
+ [vars$D.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
15775
15928
  };
15776
15929
 
15777
15930
  var notpImage = /*#__PURE__*/Object.freeze({
15778
15931
  __proto__: null,
15779
15932
  default: logo,
15780
- vars: vars$C
15933
+ vars: vars$D
15781
15934
  });
15782
15935
 
15783
- const globalRefs$r = getThemeRefs(globals);
15784
- const vars$B = TextClass.cssVarList;
15936
+ const globalRefs$s = getThemeRefs(globals);
15937
+ const vars$C = TextClass.cssVarList;
15785
15938
 
15786
15939
  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,
15940
+ [vars$C.hostDirection]: globalRefs$s.direction,
15941
+ [vars$C.textLineHeight]: '1.35em',
15942
+ [vars$C.textAlign]: 'left',
15943
+ [vars$C.textColor]: globalRefs$s.colors.surface.dark,
15791
15944
 
15792
15945
  variant: {
15793
15946
  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,
15947
+ [vars$C.fontSize]: globalRefs$s.typography.h1.size,
15948
+ [vars$C.fontWeight]: globalRefs$s.typography.h1.weight,
15949
+ [vars$C.fontFamily]: globalRefs$s.typography.h1.font,
15797
15950
  },
15798
15951
  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,
15952
+ [vars$C.fontSize]: globalRefs$s.typography.h2.size,
15953
+ [vars$C.fontWeight]: globalRefs$s.typography.h2.weight,
15954
+ [vars$C.fontFamily]: globalRefs$s.typography.h2.font,
15802
15955
  },
15803
15956
  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,
15957
+ [vars$C.fontSize]: globalRefs$s.typography.h3.size,
15958
+ [vars$C.fontWeight]: globalRefs$s.typography.h3.weight,
15959
+ [vars$C.fontFamily]: globalRefs$s.typography.h3.font,
15807
15960
  },
15808
15961
  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,
15962
+ [vars$C.fontSize]: globalRefs$s.typography.subtitle1.size,
15963
+ [vars$C.fontWeight]: globalRefs$s.typography.subtitle1.weight,
15964
+ [vars$C.fontFamily]: globalRefs$s.typography.subtitle1.font,
15812
15965
  },
15813
15966
  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,
15967
+ [vars$C.fontSize]: globalRefs$s.typography.subtitle2.size,
15968
+ [vars$C.fontWeight]: globalRefs$s.typography.subtitle2.weight,
15969
+ [vars$C.fontFamily]: globalRefs$s.typography.subtitle2.font,
15817
15970
  },
15818
15971
  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,
15972
+ [vars$C.fontSize]: globalRefs$s.typography.body1.size,
15973
+ [vars$C.fontWeight]: globalRefs$s.typography.body1.weight,
15974
+ [vars$C.fontFamily]: globalRefs$s.typography.body1.font,
15822
15975
  },
15823
15976
  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,
15977
+ [vars$C.fontSize]: globalRefs$s.typography.body2.size,
15978
+ [vars$C.fontWeight]: globalRefs$s.typography.body2.weight,
15979
+ [vars$C.fontFamily]: globalRefs$s.typography.body2.font,
15827
15980
  },
15828
15981
  },
15829
15982
 
15830
15983
  mode: {
15831
15984
  primary: {
15832
- [vars$B.textColor]: globalRefs$r.colors.surface.contrast,
15985
+ [vars$C.textColor]: globalRefs$s.colors.surface.contrast,
15833
15986
  },
15834
15987
  secondary: {
15835
- [vars$B.textColor]: globalRefs$r.colors.surface.dark,
15988
+ [vars$C.textColor]: globalRefs$s.colors.surface.dark,
15836
15989
  },
15837
15990
  error: {
15838
- [vars$B.textColor]: globalRefs$r.colors.error.main,
15991
+ [vars$C.textColor]: globalRefs$s.colors.error.main,
15839
15992
  },
15840
15993
  success: {
15841
- [vars$B.textColor]: globalRefs$r.colors.success.main,
15994
+ [vars$C.textColor]: globalRefs$s.colors.success.main,
15842
15995
  },
15843
15996
  },
15844
15997
 
15845
15998
  textAlign: {
15846
- right: { [vars$B.textAlign]: 'right' },
15847
- left: { [vars$B.textAlign]: 'left' },
15848
- center: { [vars$B.textAlign]: 'center' },
15999
+ right: { [vars$C.textAlign]: 'right' },
16000
+ left: { [vars$C.textAlign]: 'left' },
16001
+ center: { [vars$C.textAlign]: 'center' },
15849
16002
  },
15850
16003
 
15851
16004
  _fullWidth: {
15852
- [vars$B.hostWidth]: '100%',
16005
+ [vars$C.hostWidth]: '100%',
15853
16006
  },
15854
16007
 
15855
16008
  _italic: {
15856
- [vars$B.fontStyle]: 'italic',
16009
+ [vars$C.fontStyle]: 'italic',
15857
16010
  },
15858
16011
 
15859
16012
  _uppercase: {
15860
- [vars$B.textTransform]: 'uppercase',
16013
+ [vars$C.textTransform]: 'uppercase',
15861
16014
  },
15862
16015
 
15863
16016
  _lowercase: {
15864
- [vars$B.textTransform]: 'lowercase',
16017
+ [vars$C.textTransform]: 'lowercase',
15865
16018
  },
15866
16019
  };
15867
16020
 
15868
16021
  var text$1 = /*#__PURE__*/Object.freeze({
15869
16022
  __proto__: null,
15870
16023
  default: text,
15871
- vars: vars$B
16024
+ vars: vars$C
15872
16025
  });
15873
16026
 
15874
- const globalRefs$q = getThemeRefs(globals);
15875
- const vars$A = LinkClass.cssVarList;
16027
+ const globalRefs$r = getThemeRefs(globals);
16028
+ const vars$B = LinkClass.cssVarList;
15876
16029
 
15877
16030
  const link = {
15878
- [vars$A.hostDirection]: globalRefs$q.direction,
15879
- [vars$A.cursor]: 'pointer',
16031
+ [vars$B.hostDirection]: globalRefs$r.direction,
16032
+ [vars$B.cursor]: 'pointer',
15880
16033
 
15881
- [vars$A.textColor]: globalRefs$q.colors.primary.main,
16034
+ [vars$B.textColor]: globalRefs$r.colors.primary.main,
15882
16035
 
15883
16036
  textAlign: {
15884
- right: { [vars$A.textAlign]: 'right' },
15885
- left: { [vars$A.textAlign]: 'left' },
15886
- center: { [vars$A.textAlign]: 'center' },
16037
+ right: { [vars$B.textAlign]: 'right' },
16038
+ left: { [vars$B.textAlign]: 'left' },
16039
+ center: { [vars$B.textAlign]: 'center' },
15887
16040
  },
15888
16041
 
15889
16042
  _fullWidth: {
15890
- [vars$A.hostWidth]: '100%',
16043
+ [vars$B.hostWidth]: '100%',
15891
16044
  },
15892
16045
 
15893
16046
  _hover: {
15894
- [vars$A.textDecoration]: 'underline',
16047
+ [vars$B.textDecoration]: 'underline',
15895
16048
  },
15896
16049
 
15897
16050
  mode: {
15898
16051
  secondary: {
15899
- [vars$A.textColor]: globalRefs$q.colors.secondary.main,
16052
+ [vars$B.textColor]: globalRefs$r.colors.secondary.main,
15900
16053
  },
15901
16054
  error: {
15902
- [vars$A.textColor]: globalRefs$q.colors.error.main,
16055
+ [vars$B.textColor]: globalRefs$r.colors.error.main,
15903
16056
  },
15904
16057
  success: {
15905
- [vars$A.textColor]: globalRefs$q.colors.success.main,
16058
+ [vars$B.textColor]: globalRefs$r.colors.success.main,
15906
16059
  },
15907
16060
  },
15908
16061
  };
@@ -15910,37 +16063,37 @@ const link = {
15910
16063
  var link$1 = /*#__PURE__*/Object.freeze({
15911
16064
  __proto__: null,
15912
16065
  default: link,
15913
- vars: vars$A
16066
+ vars: vars$B
15914
16067
  });
15915
16068
 
15916
- const globalRefs$p = getThemeRefs(globals);
15917
- const vars$z = EnrichedTextClass.cssVarList;
16069
+ const globalRefs$q = getThemeRefs(globals);
16070
+ const vars$A = EnrichedTextClass.cssVarList;
15918
16071
 
15919
16072
  const enrichedText = {
15920
- [vars$z.hostDirection]: globalRefs$p.direction,
15921
- [vars$z.hostWidth]: useVar(vars$B.hostWidth),
16073
+ [vars$A.hostDirection]: globalRefs$q.direction,
16074
+ [vars$A.hostWidth]: useVar(vars$C.hostWidth),
15922
16075
 
15923
- [vars$z.textLineHeight]: useVar(vars$B.textLineHeight),
15924
- [vars$z.textColor]: useVar(vars$B.textColor),
15925
- [vars$z.textAlign]: useVar(vars$B.textAlign),
16076
+ [vars$A.textLineHeight]: useVar(vars$C.textLineHeight),
16077
+ [vars$A.textColor]: useVar(vars$C.textColor),
16078
+ [vars$A.textAlign]: useVar(vars$C.textAlign),
15926
16079
 
15927
- [vars$z.fontSize]: useVar(vars$B.fontSize),
15928
- [vars$z.fontWeight]: useVar(vars$B.fontWeight),
15929
- [vars$z.fontFamily]: useVar(vars$B.fontFamily),
16080
+ [vars$A.fontSize]: useVar(vars$C.fontSize),
16081
+ [vars$A.fontWeight]: useVar(vars$C.fontWeight),
16082
+ [vars$A.fontFamily]: useVar(vars$C.fontFamily),
15930
16083
 
15931
- [vars$z.linkColor]: useVar(vars$A.textColor),
15932
- [vars$z.linkTextDecoration]: 'none',
15933
- [vars$z.linkHoverTextDecoration]: 'underline',
16084
+ [vars$A.linkColor]: useVar(vars$B.textColor),
16085
+ [vars$A.linkTextDecoration]: 'none',
16086
+ [vars$A.linkHoverTextDecoration]: 'underline',
15934
16087
 
15935
- [vars$z.fontWeightBold]: '900',
15936
- [vars$z.minWidth]: '0.25em',
15937
- [vars$z.minHeight]: '1.35em',
16088
+ [vars$A.fontWeightBold]: '900',
16089
+ [vars$A.minWidth]: '0.25em',
16090
+ [vars$A.minHeight]: '1.35em',
15938
16091
 
15939
- [vars$z.hostDisplay]: 'inline-block',
16092
+ [vars$A.hostDisplay]: 'inline-block',
15940
16093
 
15941
16094
  _empty: {
15942
16095
  _hideWhenEmpty: {
15943
- [vars$z.hostDisplay]: 'none',
16096
+ [vars$A.hostDisplay]: 'none',
15944
16097
  },
15945
16098
  },
15946
16099
  };
@@ -15948,10 +16101,10 @@ const enrichedText = {
15948
16101
  var enrichedText$1 = /*#__PURE__*/Object.freeze({
15949
16102
  __proto__: null,
15950
16103
  default: enrichedText,
15951
- vars: vars$z
16104
+ vars: vars$A
15952
16105
  });
15953
16106
 
15954
- const globalRefs$o = getThemeRefs(globals);
16107
+ const globalRefs$p = getThemeRefs(globals);
15955
16108
  const compVars$4 = DividerClass.cssVarList;
15956
16109
 
15957
16110
  const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
@@ -15959,18 +16112,18 @@ const [helperTheme$2, helperRefs$2, helperVars$2] = createHelperVars(
15959
16112
  thickness: '2px',
15960
16113
  spacing: '10px',
15961
16114
  },
15962
- componentName$Q
16115
+ componentName$R
15963
16116
  );
15964
16117
 
15965
16118
  const divider = {
15966
16119
  ...helperTheme$2,
15967
16120
 
15968
- [compVars$4.hostDirection]: globalRefs$o.direction,
16121
+ [compVars$4.hostDirection]: globalRefs$p.direction,
15969
16122
  [compVars$4.alignItems]: 'center',
15970
16123
  [compVars$4.flexDirection]: 'row',
15971
16124
  [compVars$4.alignSelf]: 'stretch',
15972
16125
  [compVars$4.hostWidth]: '100%',
15973
- [compVars$4.stripeColor]: globalRefs$o.colors.surface.light,
16126
+ [compVars$4.stripeColor]: globalRefs$p.colors.surface.light,
15974
16127
  [compVars$4.stripeColorOpacity]: '0.5',
15975
16128
  [compVars$4.stripeHorizontalThickness]: helperRefs$2.thickness,
15976
16129
  [compVars$4.labelTextWidth]: 'fit-content',
@@ -15990,7 +16143,7 @@ const divider = {
15990
16143
  },
15991
16144
  };
15992
16145
 
15993
- const vars$y = {
16146
+ const vars$z = {
15994
16147
  ...compVars$4,
15995
16148
  ...helperVars$2,
15996
16149
  };
@@ -15998,111 +16151,111 @@ const vars$y = {
15998
16151
  var divider$1 = /*#__PURE__*/Object.freeze({
15999
16152
  __proto__: null,
16000
16153
  default: divider,
16001
- vars: vars$y
16154
+ vars: vars$z
16002
16155
  });
16003
16156
 
16004
- const vars$x = PasscodeClass.cssVarList;
16157
+ const vars$y = PasscodeClass.cssVarList;
16005
16158
 
16006
16159
  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,
16160
+ [vars$y.hostDirection]: refs.direction,
16161
+ [vars$y.fontFamily]: refs.fontFamily,
16162
+ [vars$y.fontSize]: refs.fontSize,
16163
+ [vars$y.labelTextColor]: refs.labelTextColor,
16164
+ [vars$y.labelRequiredIndicator]: refs.requiredIndicator,
16165
+ [vars$y.errorMessageTextColor]: refs.errorMessageTextColor,
16166
+ [vars$y.digitValueTextColor]: refs.valueTextColor,
16167
+ [vars$y.digitPadding]: '0',
16168
+ [vars$y.digitTextAlign]: 'center',
16169
+ [vars$y.digitSpacing]: '4px',
16170
+ [vars$y.hostWidth]: refs.width,
16171
+ [vars$y.digitOutlineColor]: 'transparent',
16172
+ [vars$y.digitOutlineWidth]: refs.outlineWidth,
16173
+ [vars$y.focusedDigitFieldOutlineColor]: refs.outlineColor,
16174
+ [vars$y.digitSize]: refs.inputHeight,
16022
16175
 
16023
16176
  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' },
16177
+ xs: { [vars$y.spinnerSize]: '15px' },
16178
+ sm: { [vars$y.spinnerSize]: '20px' },
16179
+ md: { [vars$y.spinnerSize]: '20px' },
16180
+ lg: { [vars$y.spinnerSize]: '20px' },
16028
16181
  },
16029
16182
 
16030
16183
  _hideCursor: {
16031
- [vars$x.digitCaretTextColor]: 'transparent',
16184
+ [vars$y.digitCaretTextColor]: 'transparent',
16032
16185
  },
16033
16186
 
16034
16187
  _loading: {
16035
- [vars$x.overlayOpacity]: refs.overlayOpacity,
16188
+ [vars$y.overlayOpacity]: refs.overlayOpacity,
16036
16189
  },
16037
16190
  };
16038
16191
 
16039
16192
  var passcode$1 = /*#__PURE__*/Object.freeze({
16040
16193
  __proto__: null,
16041
16194
  default: passcode,
16042
- vars: vars$x
16195
+ vars: vars$y
16043
16196
  });
16044
16197
 
16045
- const globalRefs$n = getThemeRefs(globals);
16046
- const vars$w = LoaderLinearClass.cssVarList;
16198
+ const globalRefs$o = getThemeRefs(globals);
16199
+ const vars$x = LoaderLinearClass.cssVarList;
16047
16200
 
16048
16201
  const loaderLinear = {
16049
- [vars$w.hostDisplay]: 'inline-block',
16050
- [vars$w.hostWidth]: '100%',
16202
+ [vars$x.hostDisplay]: 'inline-block',
16203
+ [vars$x.hostWidth]: '100%',
16051
16204
 
16052
- [vars$w.barColor]: globalRefs$n.colors.surface.contrast,
16053
- [vars$w.barWidth]: '20%',
16205
+ [vars$x.barColor]: globalRefs$o.colors.surface.contrast,
16206
+ [vars$x.barWidth]: '20%',
16054
16207
 
16055
- [vars$w.barBackgroundColor]: globalRefs$n.colors.surface.light,
16056
- [vars$w.barBorderRadius]: '4px',
16208
+ [vars$x.barBackgroundColor]: globalRefs$o.colors.surface.light,
16209
+ [vars$x.barBorderRadius]: '4px',
16057
16210
 
16058
- [vars$w.animationDuration]: '2s',
16059
- [vars$w.animationTimingFunction]: 'linear',
16060
- [vars$w.animationIterationCount]: 'infinite',
16061
- [vars$w.verticalPadding]: '0.25em',
16211
+ [vars$x.animationDuration]: '2s',
16212
+ [vars$x.animationTimingFunction]: 'linear',
16213
+ [vars$x.animationIterationCount]: 'infinite',
16214
+ [vars$x.verticalPadding]: '0.25em',
16062
16215
 
16063
16216
  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' },
16217
+ xs: { [vars$x.barHeight]: '2px' },
16218
+ sm: { [vars$x.barHeight]: '4px' },
16219
+ md: { [vars$x.barHeight]: '6px' },
16220
+ lg: { [vars$x.barHeight]: '8px' },
16068
16221
  },
16069
16222
 
16070
16223
  mode: {
16071
16224
  primary: {
16072
- [vars$w.barColor]: globalRefs$n.colors.primary.main,
16225
+ [vars$x.barColor]: globalRefs$o.colors.primary.main,
16073
16226
  },
16074
16227
  secondary: {
16075
- [vars$w.barColor]: globalRefs$n.colors.secondary.main,
16228
+ [vars$x.barColor]: globalRefs$o.colors.secondary.main,
16076
16229
  },
16077
16230
  },
16078
16231
 
16079
16232
  _hidden: {
16080
- [vars$w.hostDisplay]: 'none',
16233
+ [vars$x.hostDisplay]: 'none',
16081
16234
  },
16082
16235
  };
16083
16236
 
16084
16237
  var loaderLinear$1 = /*#__PURE__*/Object.freeze({
16085
16238
  __proto__: null,
16086
16239
  default: loaderLinear,
16087
- vars: vars$w
16240
+ vars: vars$x
16088
16241
  });
16089
16242
 
16090
- const globalRefs$m = getThemeRefs(globals);
16243
+ const globalRefs$n = getThemeRefs(globals);
16091
16244
  const compVars$3 = LoaderRadialClass.cssVarList;
16092
16245
 
16093
16246
  const [helperTheme$1, helperRefs$1, helperVars$1] = createHelperVars(
16094
16247
  {
16095
- spinnerColor: globalRefs$m.colors.surface.contrast,
16248
+ spinnerColor: globalRefs$n.colors.surface.contrast,
16096
16249
  mode: {
16097
16250
  primary: {
16098
- spinnerColor: globalRefs$m.colors.primary.main,
16251
+ spinnerColor: globalRefs$n.colors.primary.main,
16099
16252
  },
16100
16253
  secondary: {
16101
- spinnerColor: globalRefs$m.colors.secondary.main,
16254
+ spinnerColor: globalRefs$n.colors.secondary.main,
16102
16255
  },
16103
16256
  },
16104
16257
  },
16105
- componentName$X
16258
+ componentName$Y
16106
16259
  );
16107
16260
 
16108
16261
  const loaderRadial = {
@@ -16131,7 +16284,7 @@ const loaderRadial = {
16131
16284
  [compVars$3.hostDisplay]: 'none',
16132
16285
  },
16133
16286
  };
16134
- const vars$v = {
16287
+ const vars$w = {
16135
16288
  ...compVars$3,
16136
16289
  ...helperVars$1,
16137
16290
  };
@@ -16139,93 +16292,134 @@ const vars$v = {
16139
16292
  var loaderRadial$1 = /*#__PURE__*/Object.freeze({
16140
16293
  __proto__: null,
16141
16294
  default: loaderRadial,
16142
- vars: vars$v
16295
+ vars: vars$w
16143
16296
  });
16144
16297
 
16145
- const globalRefs$l = getThemeRefs(globals);
16146
- const vars$u = ComboBoxClass.cssVarList;
16298
+ const globalRefs$m = getThemeRefs(globals);
16299
+ const vars$v = ComboBoxClass.cssVarList;
16147
16300
 
16148
16301
  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,
16302
+ [vars$v.hostWidth]: refs.width,
16303
+ [vars$v.hostDirection]: refs.direction,
16304
+ [vars$v.fontSize]: refs.fontSize,
16305
+ [vars$v.fontFamily]: refs.fontFamily,
16306
+ [vars$v.labelFontSize]: refs.labelFontSize,
16307
+ [vars$v.labelFontWeight]: refs.labelFontWeight,
16308
+ [vars$v.labelTextColor]: refs.labelTextColor,
16309
+ [vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
16310
+ [vars$v.inputBorderColor]: refs.borderColor,
16311
+ [vars$v.inputBorderWidth]: refs.borderWidth,
16312
+ [vars$v.inputBorderStyle]: refs.borderStyle,
16313
+ [vars$v.inputBorderRadius]: refs.borderRadius,
16314
+ [vars$v.inputOutlineColor]: refs.outlineColor,
16315
+ [vars$v.inputOutlineOffset]: refs.outlineOffset,
16316
+ [vars$v.inputOutlineWidth]: refs.outlineWidth,
16317
+ [vars$v.inputOutlineStyle]: refs.outlineStyle,
16318
+ [vars$v.labelRequiredIndicator]: refs.requiredIndicator,
16319
+ [vars$v.inputValueTextColor]: refs.valueTextColor,
16320
+ [vars$v.inputPlaceholderTextColor]: refs.placeholderTextColor,
16321
+ [vars$v.inputBackgroundColor]: refs.backgroundColor,
16322
+ [vars$v.inputHorizontalPadding]: refs.horizontalPadding,
16323
+ [vars$v.inputHeight]: refs.inputHeight,
16324
+ [vars$v.inputDropdownButtonColor]: globalRefs$m.colors.surface.dark,
16325
+ [vars$v.inputDropdownButtonCursor]: 'pointer',
16326
+ [vars$v.inputDropdownButtonSize]: refs.toggleButtonSize,
16327
+ [vars$v.inputDropdownButtonOffset]: globalRefs$m.spacing.xs,
16328
+ [vars$v.overlayItemPaddingInlineStart]: globalRefs$m.spacing.xs,
16329
+ [vars$v.overlayItemPaddingInlineEnd]: globalRefs$m.spacing.lg,
16330
+ [vars$v.labelPosition]: refs.labelPosition,
16331
+ [vars$v.labelTopPosition]: refs.labelTopPosition,
16332
+ [vars$v.labelHorizontalPosition]: refs.labelHorizontalPosition,
16333
+ [vars$v.inputTransformY]: refs.inputTransformY,
16334
+ [vars$v.inputTransition]: refs.inputTransition,
16335
+ [vars$v.marginInlineStart]: refs.marginInlineStart,
16336
+ [vars$v.placeholderOpacity]: refs.placeholderOpacity,
16337
+ [vars$v.inputVerticalAlignment]: refs.inputVerticalAlignment,
16338
+ [vars$v.valueInputHeight]: refs.valueInputHeight,
16339
+ [vars$v.valueInputMarginBottom]: refs.valueInputMarginBottom,
16187
16340
 
16188
16341
  _readonly: {
16189
- [vars$u.inputDropdownButtonCursor]: 'default',
16342
+ [vars$v.inputDropdownButtonCursor]: 'default',
16190
16343
  },
16191
16344
 
16192
16345
  // 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,
16346
+ [vars$v.overlayFontSize]: refs.fontSize,
16347
+ [vars$v.overlayFontFamily]: refs.fontFamily,
16348
+ [vars$v.overlayCursor]: 'pointer',
16349
+ [vars$v.overlayItemBoxShadow]: 'none',
16350
+ [vars$v.overlayBackground]: refs.backgroundColor,
16351
+ [vars$v.overlayTextColor]: refs.valueTextColor,
16199
16352
 
16200
16353
  // Overlay direct theme:
16201
- [vars$u.overlay.minHeight]: '400px',
16202
- [vars$u.overlay.margin]: '0',
16354
+ [vars$v.overlay.minHeight]: '400px',
16355
+ [vars$v.overlay.margin]: '0',
16203
16356
  };
16204
16357
 
16205
16358
  var comboBox$1 = /*#__PURE__*/Object.freeze({
16206
16359
  __proto__: null,
16207
16360
  comboBox: comboBox,
16208
16361
  default: comboBox,
16209
- vars: vars$u
16362
+ vars: vars$v
16210
16363
  });
16211
16364
 
16212
- const vars$t = ImageClass.cssVarList;
16365
+ const vars$u = ImageClass.cssVarList;
16213
16366
 
16214
16367
  const image = {};
16215
16368
 
16216
16369
  var image$1 = /*#__PURE__*/Object.freeze({
16217
16370
  __proto__: null,
16218
16371
  default: image,
16219
- vars: vars$t
16372
+ vars: vars$u
16220
16373
  });
16221
16374
 
16222
- const vars$s = PhoneFieldClass.cssVarList;
16375
+ const vars$t = PhoneFieldClass.cssVarList;
16223
16376
 
16224
16377
  const phoneField = {
16225
- [vars$s.hostWidth]: refs.width,
16378
+ [vars$t.hostWidth]: refs.width,
16379
+ [vars$t.hostDirection]: refs.direction,
16380
+ [vars$t.fontSize]: refs.fontSize,
16381
+ [vars$t.fontFamily]: refs.fontFamily,
16382
+ [vars$t.labelTextColor]: refs.labelTextColor,
16383
+ [vars$t.labelRequiredIndicator]: refs.requiredIndicator,
16384
+ [vars$t.errorMessageTextColor]: refs.errorMessageTextColor,
16385
+ [vars$t.inputValueTextColor]: refs.valueTextColor,
16386
+ [vars$t.inputPlaceholderTextColor]: refs.placeholderTextColor,
16387
+ [vars$t.inputBorderStyle]: refs.borderStyle,
16388
+ [vars$t.inputBorderWidth]: refs.borderWidth,
16389
+ [vars$t.inputBorderColor]: refs.borderColor,
16390
+ [vars$t.inputBorderRadius]: refs.borderRadius,
16391
+ [vars$t.inputOutlineStyle]: refs.outlineStyle,
16392
+ [vars$t.inputOutlineWidth]: refs.outlineWidth,
16393
+ [vars$t.inputOutlineColor]: refs.outlineColor,
16394
+ [vars$t.inputOutlineOffset]: refs.outlineOffset,
16395
+ [vars$t.phoneInputWidth]: refs.minWidth,
16396
+ [vars$t.countryCodeInputWidth]: '5em',
16397
+ [vars$t.countryCodeDropdownWidth]: '20em',
16398
+ [vars$t.marginInlineStart]: '-0.25em',
16399
+ [vars$t.valueInputHeight]: refs.valueInputHeight,
16400
+ [vars$t.valueInputMarginBottom]: refs.valueInputMarginBottom,
16401
+
16402
+ // '@overlay': {
16403
+ // overlayItemBackgroundColor: 'red'
16404
+ // }
16405
+ };
16406
+
16407
+ var phoneField$1 = /*#__PURE__*/Object.freeze({
16408
+ __proto__: null,
16409
+ default: phoneField,
16410
+ vars: vars$t
16411
+ });
16412
+
16413
+ const vars$s = PhoneFieldInputBoxClass.cssVarList;
16414
+
16415
+ const phoneInputBoxField = {
16416
+ [vars$s.hostWidth]: '16em',
16417
+ [vars$s.hostMinWidth]: refs.minWidth,
16226
16418
  [vars$s.hostDirection]: refs.direction,
16227
16419
  [vars$s.fontSize]: refs.fontSize,
16228
16420
  [vars$s.fontFamily]: refs.fontFamily,
16421
+ [vars$s.labelFontSize]: refs.labelFontSize,
16422
+ [vars$s.labelFontWeight]: refs.labelFontWeight,
16229
16423
  [vars$s.labelTextColor]: refs.labelTextColor,
16230
16424
  [vars$s.labelRequiredIndicator]: refs.requiredIndicator,
16231
16425
  [vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -16239,28 +16433,32 @@ const phoneField = {
16239
16433
  [vars$s.inputOutlineWidth]: refs.outlineWidth,
16240
16434
  [vars$s.inputOutlineColor]: refs.outlineColor,
16241
16435
  [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',
16436
+ [vars$s.labelPosition]: refs.labelPosition,
16437
+ [vars$s.labelTopPosition]: refs.labelTopPosition,
16438
+ [vars$s.labelHorizontalPosition]: refs.labelHorizontalPosition,
16439
+ [vars$s.inputTransformY]: refs.inputTransformY,
16440
+ [vars$s.inputTransition]: refs.inputTransition,
16441
+ [vars$s.marginInlineStart]: refs.marginInlineStart,
16246
16442
  [vars$s.valueInputHeight]: refs.valueInputHeight,
16247
16443
  [vars$s.valueInputMarginBottom]: refs.valueInputMarginBottom,
16444
+ [vars$s.inputHorizontalPadding]: '0',
16248
16445
 
16249
- // '@overlay': {
16250
- // overlayItemBackgroundColor: 'red'
16251
- // }
16446
+ _fullWidth: {
16447
+ [vars$s.hostWidth]: refs.width,
16448
+ },
16252
16449
  };
16253
16450
 
16254
- var phoneField$1 = /*#__PURE__*/Object.freeze({
16451
+ var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
16255
16452
  __proto__: null,
16256
- default: phoneField,
16453
+ default: phoneInputBoxField,
16257
16454
  vars: vars$s
16258
16455
  });
16259
16456
 
16260
- const vars$r = PhoneFieldInputBoxClass.cssVarList;
16457
+ const globalRefs$l = getThemeRefs(globals);
16458
+ const vars$r = NewPasswordClass.cssVarList;
16261
16459
 
16262
- const phoneInputBoxField = {
16263
- [vars$r.hostWidth]: '16em',
16460
+ const newPassword = {
16461
+ [vars$r.hostWidth]: refs.width,
16264
16462
  [vars$r.hostMinWidth]: refs.minWidth,
16265
16463
  [vars$r.hostDirection]: refs.direction,
16266
16464
  [vars$r.fontSize]: refs.fontSize,
@@ -16268,174 +16466,129 @@ const phoneInputBoxField = {
16268
16466
  [vars$r.labelFontSize]: refs.labelFontSize,
16269
16467
  [vars$r.labelFontWeight]: refs.labelFontWeight,
16270
16468
  [vars$r.labelTextColor]: refs.labelTextColor,
16271
- [vars$r.labelRequiredIndicator]: refs.requiredIndicator,
16469
+ [vars$r.spaceBetweenInputs]: '1em',
16272
16470
  [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,
16471
+ [vars$r.policyPreviewBackgroundColor]: 'none',
16472
+ [vars$r.policyPreviewPadding]: globalRefs$l.spacing.lg,
16289
16473
  [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
16474
 
16322
16475
  _required: {
16323
16476
  // NewPassword doesn't pass `required` attribute to its Password components.
16324
16477
  // That's why we fake the required indicator on each input.
16325
16478
  // 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
16479
+ [vars$r.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
16327
16480
  },
16328
16481
  };
16329
16482
 
16330
16483
  var newPassword$1 = /*#__PURE__*/Object.freeze({
16331
16484
  __proto__: null,
16332
16485
  default: newPassword,
16333
- vars: vars$q
16486
+ vars: vars$r
16334
16487
  });
16335
16488
 
16336
- const vars$p = UploadFileClass.cssVarList;
16489
+ const vars$q = UploadFileClass.cssVarList;
16337
16490
 
16338
16491
  const uploadFile = {
16339
- [vars$p.hostDirection]: refs.direction,
16340
- [vars$p.labelTextColor]: refs.labelTextColor,
16341
- [vars$p.fontFamily]: refs.fontFamily,
16492
+ [vars$q.hostDirection]: refs.direction,
16493
+ [vars$q.labelTextColor]: refs.labelTextColor,
16494
+ [vars$q.fontFamily]: refs.fontFamily,
16342
16495
 
16343
- [vars$p.iconSize]: '2em',
16496
+ [vars$q.iconSize]: '2em',
16344
16497
 
16345
- [vars$p.hostPadding]: '0.75em',
16346
- [vars$p.gap]: '0.5em',
16498
+ [vars$q.hostPadding]: '0.75em',
16499
+ [vars$q.gap]: '0.5em',
16347
16500
 
16348
- [vars$p.fontSize]: '16px',
16349
- [vars$p.titleFontWeight]: '500',
16350
- [vars$p.lineHeight]: '1em',
16501
+ [vars$q.fontSize]: '16px',
16502
+ [vars$q.titleFontWeight]: '500',
16503
+ [vars$q.lineHeight]: '1em',
16351
16504
 
16352
- [vars$p.borderWidth]: refs.borderWidth,
16353
- [vars$p.borderColor]: refs.borderColor,
16354
- [vars$p.borderRadius]: refs.borderRadius,
16355
- [vars$p.borderStyle]: 'dashed',
16505
+ [vars$q.borderWidth]: refs.borderWidth,
16506
+ [vars$q.borderColor]: refs.borderColor,
16507
+ [vars$q.borderRadius]: refs.borderRadius,
16508
+ [vars$q.borderStyle]: 'dashed',
16356
16509
 
16357
16510
  _required: {
16358
- [vars$p.requiredIndicator]: refs.requiredIndicator,
16511
+ [vars$q.requiredIndicator]: refs.requiredIndicator,
16359
16512
  },
16360
16513
 
16361
16514
  size: {
16362
16515
  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',
16516
+ [vars$q.hostHeight]: '196px',
16517
+ [vars$q.hostWidth]: '200px',
16518
+ [vars$q.titleFontSize]: '0.875em',
16519
+ [vars$q.descriptionFontSize]: '0.875em',
16520
+ [vars$q.lineHeight]: '1.25em',
16368
16521
  },
16369
16522
  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',
16523
+ [vars$q.hostHeight]: '216px',
16524
+ [vars$q.hostWidth]: '230px',
16525
+ [vars$q.titleFontSize]: '1em',
16526
+ [vars$q.descriptionFontSize]: '0.875em',
16527
+ [vars$q.lineHeight]: '1.25em',
16375
16528
  },
16376
16529
  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',
16530
+ [vars$q.hostHeight]: '256px',
16531
+ [vars$q.hostWidth]: '312px',
16532
+ [vars$q.titleFontSize]: '1.125em',
16533
+ [vars$q.descriptionFontSize]: '1em',
16534
+ [vars$q.lineHeight]: '1.5em',
16382
16535
  },
16383
16536
  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',
16537
+ [vars$q.hostHeight]: '280px',
16538
+ [vars$q.hostWidth]: '336px',
16539
+ [vars$q.titleFontSize]: '1.125em',
16540
+ [vars$q.descriptionFontSize]: '1.125em',
16541
+ [vars$q.lineHeight]: '1.75em',
16389
16542
  },
16390
16543
  },
16391
16544
 
16392
16545
  _fullWidth: {
16393
- [vars$p.hostWidth]: refs.width,
16546
+ [vars$q.hostWidth]: refs.width,
16394
16547
  },
16395
16548
  };
16396
16549
 
16397
16550
  var uploadFile$1 = /*#__PURE__*/Object.freeze({
16398
16551
  __proto__: null,
16399
16552
  default: uploadFile,
16400
- vars: vars$p
16553
+ vars: vars$q
16401
16554
  });
16402
16555
 
16403
- const globalRefs$j = getThemeRefs(globals);
16556
+ const globalRefs$k = getThemeRefs(globals);
16404
16557
 
16405
- const vars$o = ButtonSelectionGroupItemClass.cssVarList;
16558
+ const vars$p = ButtonSelectionGroupItemClass.cssVarList;
16406
16559
 
16407
16560
  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,
16561
+ [vars$p.hostDirection]: 'inherit',
16562
+ [vars$p.backgroundColor]: globalRefs$k.colors.surface.main,
16563
+ [vars$p.labelTextColor]: globalRefs$k.colors.surface.contrast,
16564
+ [vars$p.borderColor]: globalRefs$k.colors.surface.light,
16565
+ [vars$p.borderStyle]: 'solid',
16566
+ [vars$p.borderRadius]: globalRefs$k.radius.sm,
16567
+ [vars$p.outlineColor]: 'transparent',
16568
+ [vars$p.borderWidth]: globalRefs$k.border.xs,
16416
16569
 
16417
16570
  _hover: {
16418
- [vars$o.backgroundColor]: globalRefs$j.colors.surface.highlight,
16571
+ [vars$p.backgroundColor]: globalRefs$k.colors.surface.highlight,
16419
16572
  },
16420
16573
 
16421
16574
  _focused: {
16422
- [vars$o.outlineColor]: globalRefs$j.colors.surface.light,
16575
+ [vars$p.outlineColor]: globalRefs$k.colors.surface.light,
16423
16576
  },
16424
16577
 
16425
16578
  _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,
16579
+ [vars$p.borderColor]: globalRefs$k.colors.surface.contrast,
16580
+ [vars$p.backgroundColor]: globalRefs$k.colors.surface.contrast,
16581
+ [vars$p.labelTextColor]: globalRefs$k.colors.surface.main,
16429
16582
  },
16430
16583
  };
16431
16584
 
16432
16585
  var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
16433
16586
  __proto__: null,
16434
16587
  default: buttonSelectionGroupItem,
16435
- vars: vars$o
16588
+ vars: vars$p
16436
16589
  });
16437
16590
 
16438
- const globalRefs$i = getThemeRefs(globals);
16591
+ const globalRefs$j = getThemeRefs(globals);
16439
16592
 
16440
16593
  const createBaseButtonSelectionGroupMappings = (vars) => ({
16441
16594
  [vars.hostDirection]: refs.direction,
@@ -16443,96 +16596,96 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
16443
16596
  [vars.labelTextColor]: refs.labelTextColor,
16444
16597
  [vars.labelRequiredIndicator]: refs.requiredIndicator,
16445
16598
  [vars.errorMessageTextColor]: refs.errorMessageTextColor,
16446
- [vars.itemsSpacing]: globalRefs$i.spacing.sm,
16599
+ [vars.itemsSpacing]: globalRefs$j.spacing.sm,
16447
16600
  [vars.hostWidth]: refs.width,
16448
16601
  });
16449
16602
 
16450
- const vars$n = ButtonSelectionGroupClass.cssVarList;
16603
+ const vars$o = ButtonSelectionGroupClass.cssVarList;
16451
16604
 
16452
16605
  const buttonSelectionGroup = {
16453
- ...createBaseButtonSelectionGroupMappings(vars$n),
16606
+ ...createBaseButtonSelectionGroupMappings(vars$o),
16454
16607
  };
16455
16608
 
16456
16609
  var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
16457
16610
  __proto__: null,
16458
16611
  default: buttonSelectionGroup,
16459
- vars: vars$n
16612
+ vars: vars$o
16460
16613
  });
16461
16614
 
16462
- const vars$m = ButtonMultiSelectionGroupClass.cssVarList;
16615
+ const vars$n = ButtonMultiSelectionGroupClass.cssVarList;
16463
16616
 
16464
16617
  const buttonMultiSelectionGroup = {
16465
- ...createBaseButtonSelectionGroupMappings(vars$m),
16618
+ ...createBaseButtonSelectionGroupMappings(vars$n),
16466
16619
  };
16467
16620
 
16468
16621
  var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
16469
16622
  __proto__: null,
16470
16623
  default: buttonMultiSelectionGroup,
16471
- vars: vars$m
16624
+ vars: vars$n
16472
16625
  });
16473
16626
 
16474
- const globalRefs$h = getThemeRefs(globals);
16627
+ const globalRefs$i = getThemeRefs(globals);
16475
16628
 
16476
16629
  const compVars$2 = ModalClass.cssVarList;
16477
16630
 
16478
16631
  const modal = {
16479
- [compVars$2.overlayBackgroundColor]: globalRefs$h.colors.surface.main,
16480
- [compVars$2.overlayShadow]: globalRefs$h.shadow.wide['2xl'],
16632
+ [compVars$2.overlayBackgroundColor]: globalRefs$i.colors.surface.main,
16633
+ [compVars$2.overlayShadow]: globalRefs$i.shadow.wide['2xl'],
16481
16634
  [compVars$2.overlayWidth]: '540px',
16482
16635
  };
16483
16636
 
16484
- const vars$l = {
16637
+ const vars$m = {
16485
16638
  ...compVars$2,
16486
16639
  };
16487
16640
 
16488
16641
  var modal$1 = /*#__PURE__*/Object.freeze({
16489
16642
  __proto__: null,
16490
16643
  default: modal,
16491
- vars: vars$l
16644
+ vars: vars$m
16492
16645
  });
16493
16646
 
16494
- const globalRefs$g = getThemeRefs(globals);
16495
- const vars$k = GridClass.cssVarList;
16647
+ const globalRefs$h = getThemeRefs(globals);
16648
+ const vars$l = GridClass.cssVarList;
16496
16649
 
16497
16650
  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',
16651
+ [vars$l.hostWidth]: '100%',
16652
+ [vars$l.hostHeight]: '100%',
16653
+ [vars$l.hostMinHeight]: '400px',
16654
+ [vars$l.fontWeight]: '400',
16655
+ [vars$l.backgroundColor]: globalRefs$h.colors.surface.main,
16656
+
16657
+ [vars$l.fontSize]: refs.fontSize,
16658
+ [vars$l.fontFamily]: refs.fontFamily,
16659
+
16660
+ [vars$l.sortIndicatorsColor]: globalRefs$h.colors.surface.light,
16661
+ [vars$l.activeSortIndicator]: globalRefs$h.colors.surface.dark,
16662
+ [vars$l.resizeHandleColor]: globalRefs$h.colors.surface.light,
16663
+
16664
+ [vars$l.borderWidth]: refs.borderWidth,
16665
+ [vars$l.borderStyle]: refs.borderStyle,
16666
+ [vars$l.borderRadius]: refs.borderRadius,
16667
+ [vars$l.borderColor]: 'transparent',
16668
+
16669
+ [vars$l.headerRowTextColor]: globalRefs$h.colors.surface.dark,
16670
+ [vars$l.separatorColor]: globalRefs$h.colors.surface.light,
16671
+
16672
+ [vars$l.valueTextColor]: globalRefs$h.colors.surface.contrast,
16673
+ [vars$l.selectedBackgroundColor]: globalRefs$h.colors.surface.highlight,
16674
+ [vars$l.hostDirection]: globalRefs$h.direction,
16675
+
16676
+ [vars$l.toggleDetailsPanelButtonSize]: '1em',
16677
+ [vars$l.toggleDetailsPanelButtonOpenedColor]: globalRefs$h.colors.surface.contrast,
16678
+ [vars$l.toggleDetailsPanelButtonClosedColor]: globalRefs$h.colors.surface.light,
16679
+ [vars$l.toggleDetailsPanelButtonCursor]: 'pointer',
16680
+ [vars$l.detailsPanelBackgroundColor]: globalRefs$h.colors.surface.highlight,
16681
+ [vars$l.detailsPanelBorderTopColor]: globalRefs$h.colors.surface.light,
16682
+ [vars$l.detailsPanelLabelsColor]: globalRefs$h.colors.surface.dark,
16683
+ [vars$l.detailsPanelLabelsFontSize]: '0.8em',
16684
+ [vars$l.detailsPanelItemsGap]: '2em',
16685
+ [vars$l.detailsPanelPadding]: '12px 0',
16533
16686
 
16534
16687
  _bordered: {
16535
- [vars$k.borderColor]: refs.borderColor,
16688
+ [vars$l.borderColor]: refs.borderColor,
16536
16689
  },
16537
16690
  };
16538
16691
 
@@ -16540,53 +16693,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
16540
16693
  __proto__: null,
16541
16694
  default: grid,
16542
16695
  grid: grid,
16543
- vars: vars$k
16696
+ vars: vars$l
16544
16697
  });
16545
16698
 
16546
- const globalRefs$f = getThemeRefs(globals);
16547
- const vars$j = NotificationCardClass.cssVarList;
16699
+ const globalRefs$g = getThemeRefs(globals);
16700
+ const vars$k = NotificationCardClass.cssVarList;
16548
16701
 
16549
16702
  const shadowColor$2 = '#00000020';
16550
16703
 
16551
16704
  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,
16705
+ [vars$k.hostMinWidth]: '415px',
16706
+ [vars$k.fontFamily]: globalRefs$g.fonts.font1.family,
16707
+ [vars$k.fontSize]: globalRefs$g.typography.body1.size,
16708
+ [vars$k.backgroundColor]: globalRefs$g.colors.surface.main,
16709
+ [vars$k.textColor]: globalRefs$g.colors.surface.contrast,
16710
+ [vars$k.boxShadow]: `${globalRefs$g.shadow.wide.xl} ${shadowColor$2}, ${globalRefs$g.shadow.narrow.xl} ${shadowColor$2}`,
16711
+ [vars$k.verticalPadding]: '0.625em',
16712
+ [vars$k.horizontalPadding]: '1.5em',
16713
+ [vars$k.borderRadius]: globalRefs$g.radius.xs,
16561
16714
 
16562
16715
  _bordered: {
16563
- [vars$j.borderWidth]: globalRefs$f.border.sm,
16564
- [vars$j.borderStyle]: 'solid',
16565
- [vars$j.borderColor]: 'transparent',
16716
+ [vars$k.borderWidth]: globalRefs$g.border.sm,
16717
+ [vars$k.borderStyle]: 'solid',
16718
+ [vars$k.borderColor]: 'transparent',
16566
16719
  },
16567
16720
 
16568
16721
  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' },
16722
+ xs: { [vars$k.fontSize]: '12px' },
16723
+ sm: { [vars$k.fontSize]: '14px' },
16724
+ md: { [vars$k.fontSize]: '16px' },
16725
+ lg: { [vars$k.fontSize]: '18px' },
16573
16726
  },
16574
16727
 
16575
16728
  mode: {
16576
16729
  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,
16730
+ [vars$k.backgroundColor]: globalRefs$g.colors.primary.main,
16731
+ [vars$k.textColor]: globalRefs$g.colors.primary.contrast,
16732
+ [vars$k.borderColor]: globalRefs$g.colors.primary.light,
16580
16733
  },
16581
16734
  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,
16735
+ [vars$k.backgroundColor]: globalRefs$g.colors.success.main,
16736
+ [vars$k.textColor]: globalRefs$g.colors.success.contrast,
16737
+ [vars$k.borderColor]: globalRefs$g.colors.success.light,
16585
16738
  },
16586
16739
  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,
16740
+ [vars$k.backgroundColor]: globalRefs$g.colors.error.main,
16741
+ [vars$k.textColor]: globalRefs$g.colors.error.contrast,
16742
+ [vars$k.borderColor]: globalRefs$g.colors.error.light,
16590
16743
  },
16591
16744
  },
16592
16745
  };
@@ -16594,148 +16747,148 @@ const notification = {
16594
16747
  var notificationCard = /*#__PURE__*/Object.freeze({
16595
16748
  __proto__: null,
16596
16749
  default: notification,
16597
- vars: vars$j
16750
+ vars: vars$k
16598
16751
  });
16599
16752
 
16600
- const globalRefs$e = getThemeRefs(globals);
16601
- const vars$i = MultiSelectComboBoxClass.cssVarList;
16753
+ const globalRefs$f = getThemeRefs(globals);
16754
+ const vars$j = MultiSelectComboBoxClass.cssVarList;
16602
16755
 
16603
16756
  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,
16757
+ [vars$j.hostWidth]: refs.width,
16758
+ [vars$j.hostDirection]: refs.direction,
16759
+ [vars$j.fontSize]: refs.fontSize,
16760
+ [vars$j.fontFamily]: refs.fontFamily,
16761
+ [vars$j.labelFontSize]: refs.labelFontSize,
16762
+ [vars$j.labelFontWeight]: refs.labelFontWeight,
16763
+ [vars$j.labelTextColor]: refs.labelTextColor,
16764
+ [vars$j.errorMessageTextColor]: refs.errorMessageTextColor,
16765
+ [vars$j.inputBorderColor]: refs.borderColor,
16766
+ [vars$j.inputBorderWidth]: refs.borderWidth,
16767
+ [vars$j.inputBorderStyle]: refs.borderStyle,
16768
+ [vars$j.inputBorderRadius]: refs.borderRadius,
16769
+ [vars$j.inputOutlineColor]: refs.outlineColor,
16770
+ [vars$j.inputOutlineOffset]: refs.outlineOffset,
16771
+ [vars$j.inputOutlineWidth]: refs.outlineWidth,
16772
+ [vars$j.inputOutlineStyle]: refs.outlineStyle,
16773
+ [vars$j.labelRequiredIndicator]: refs.requiredIndicator,
16774
+ [vars$j.inputValueTextColor]: refs.valueTextColor,
16775
+ [vars$j.inputPlaceholderTextColor]: refs.placeholderTextColor,
16776
+ [vars$j.inputBackgroundColor]: refs.backgroundColor,
16777
+ [vars$j.inputHorizontalPadding]: refs.horizontalPadding,
16778
+ [vars$j.inputVerticalPadding]: refs.verticalPadding,
16779
+ [vars$j.inputHeight]: refs.inputHeight,
16780
+ [vars$j.inputDropdownButtonColor]: globalRefs$f.colors.surface.dark,
16781
+ [vars$j.inputDropdownButtonCursor]: 'pointer',
16782
+ [vars$j.inputDropdownButtonSize]: refs.toggleButtonSize,
16783
+ [vars$j.inputDropdownButtonOffset]: globalRefs$f.spacing.xs,
16784
+ [vars$j.overlayItemPaddingInlineStart]: globalRefs$f.spacing.xs,
16785
+ [vars$j.overlayItemPaddingInlineEnd]: globalRefs$f.spacing.lg,
16786
+ [vars$j.chipFontSize]: refs.chipFontSize,
16787
+ [vars$j.chipTextColor]: globalRefs$f.colors.surface.contrast,
16788
+ [vars$j.chipBackgroundColor]: globalRefs$f.colors.surface.light,
16789
+ [vars$j.labelPosition]: refs.labelPosition,
16790
+ [vars$j.labelTopPosition]: refs.labelTopPosition,
16791
+ [vars$j.labelLeftPosition]: refs.labelLeftPosition,
16792
+ [vars$j.labelHorizontalPosition]: refs.labelHorizontalPosition,
16793
+ [vars$j.inputTransformY]: refs.inputTransformY,
16794
+ [vars$j.inputTransition]: refs.inputTransition,
16795
+ [vars$j.marginInlineStart]: refs.marginInlineStart,
16796
+ [vars$j.placeholderOpacity]: refs.placeholderOpacity,
16797
+ [vars$j.inputVerticalAlignment]: refs.inputVerticalAlignment,
16645
16798
 
16646
16799
  labelType: {
16647
16800
  floating: {
16648
- [vars$i.inputHorizontalPadding]: '0.25em',
16801
+ [vars$j.inputHorizontalPadding]: '0.25em',
16649
16802
  _hasValue: {
16650
- [vars$i.inputHorizontalPadding]: '0.45em',
16803
+ [vars$j.inputHorizontalPadding]: '0.45em',
16651
16804
  },
16652
16805
  },
16653
16806
  },
16654
16807
 
16655
16808
  _readonly: {
16656
- [vars$i.inputDropdownButtonCursor]: 'default',
16809
+ [vars$j.inputDropdownButtonCursor]: 'default',
16657
16810
  },
16658
16811
 
16659
16812
  // 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,
16813
+ [vars$j.overlayFontSize]: refs.fontSize,
16814
+ [vars$j.overlayFontFamily]: refs.fontFamily,
16815
+ [vars$j.overlayCursor]: 'pointer',
16816
+ [vars$j.overlayItemBoxShadow]: 'none',
16817
+ [vars$j.overlayBackground]: refs.backgroundColor,
16818
+ [vars$j.overlayTextColor]: refs.valueTextColor,
16666
16819
 
16667
16820
  // Overlay direct theme:
16668
- [vars$i.overlay.minHeight]: '400px',
16669
- [vars$i.overlay.margin]: '0',
16821
+ [vars$j.overlay.minHeight]: '400px',
16822
+ [vars$j.overlay.margin]: '0',
16670
16823
  };
16671
16824
 
16672
16825
  var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
16673
16826
  __proto__: null,
16674
16827
  default: multiSelectComboBox,
16675
16828
  multiSelectComboBox: multiSelectComboBox,
16676
- vars: vars$i
16829
+ vars: vars$j
16677
16830
  });
16678
16831
 
16679
- const globalRefs$d = getThemeRefs(globals);
16680
- const vars$h = BadgeClass.cssVarList;
16832
+ const globalRefs$e = getThemeRefs(globals);
16833
+ const vars$i = BadgeClass.cssVarList;
16681
16834
 
16682
16835
  const badge = {
16683
- [vars$h.hostWidth]: 'fit-content',
16684
- [vars$h.hostDirection]: globalRefs$d.direction,
16836
+ [vars$i.hostWidth]: 'fit-content',
16837
+ [vars$i.hostDirection]: globalRefs$e.direction,
16685
16838
 
16686
- [vars$h.textAlign]: 'center',
16839
+ [vars$i.textAlign]: 'center',
16687
16840
 
16688
- [vars$h.fontFamily]: globalRefs$d.fonts.font1.family,
16689
- [vars$h.fontWeight]: '400',
16841
+ [vars$i.fontFamily]: globalRefs$e.fonts.font1.family,
16842
+ [vars$i.fontWeight]: '400',
16690
16843
 
16691
- [vars$h.verticalPadding]: '0.25em',
16692
- [vars$h.horizontalPadding]: '0.5em',
16844
+ [vars$i.verticalPadding]: '0.25em',
16845
+ [vars$i.horizontalPadding]: '0.5em',
16693
16846
 
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',
16847
+ [vars$i.borderWidth]: globalRefs$e.border.xs,
16848
+ [vars$i.borderRadius]: globalRefs$e.radius.xs,
16849
+ [vars$i.borderColor]: 'transparent',
16850
+ [vars$i.borderStyle]: 'solid',
16698
16851
 
16699
16852
  _fullWidth: {
16700
- [vars$h.hostWidth]: '100%',
16853
+ [vars$i.hostWidth]: '100%',
16701
16854
  },
16702
16855
 
16703
16856
  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' },
16857
+ xs: { [vars$i.fontSize]: '12px' },
16858
+ sm: { [vars$i.fontSize]: '14px' },
16859
+ md: { [vars$i.fontSize]: '16px' },
16860
+ lg: { [vars$i.fontSize]: '18px' },
16708
16861
  },
16709
16862
 
16710
16863
  mode: {
16711
16864
  default: {
16712
- [vars$h.textColor]: globalRefs$d.colors.surface.dark,
16865
+ [vars$i.textColor]: globalRefs$e.colors.surface.dark,
16713
16866
  _bordered: {
16714
- [vars$h.borderColor]: globalRefs$d.colors.surface.light,
16867
+ [vars$i.borderColor]: globalRefs$e.colors.surface.light,
16715
16868
  },
16716
16869
  },
16717
16870
  primary: {
16718
- [vars$h.textColor]: globalRefs$d.colors.primary.main,
16871
+ [vars$i.textColor]: globalRefs$e.colors.primary.main,
16719
16872
  _bordered: {
16720
- [vars$h.borderColor]: globalRefs$d.colors.primary.light,
16873
+ [vars$i.borderColor]: globalRefs$e.colors.primary.light,
16721
16874
  },
16722
16875
  },
16723
16876
  secondary: {
16724
- [vars$h.textColor]: globalRefs$d.colors.secondary.main,
16877
+ [vars$i.textColor]: globalRefs$e.colors.secondary.main,
16725
16878
  _bordered: {
16726
- [vars$h.borderColor]: globalRefs$d.colors.secondary.light,
16879
+ [vars$i.borderColor]: globalRefs$e.colors.secondary.light,
16727
16880
  },
16728
16881
  },
16729
16882
  error: {
16730
- [vars$h.textColor]: globalRefs$d.colors.error.main,
16883
+ [vars$i.textColor]: globalRefs$e.colors.error.main,
16731
16884
  _bordered: {
16732
- [vars$h.borderColor]: globalRefs$d.colors.error.light,
16885
+ [vars$i.borderColor]: globalRefs$e.colors.error.light,
16733
16886
  },
16734
16887
  },
16735
16888
  success: {
16736
- [vars$h.textColor]: globalRefs$d.colors.success.main,
16889
+ [vars$i.textColor]: globalRefs$e.colors.success.main,
16737
16890
  _bordered: {
16738
- [vars$h.borderColor]: globalRefs$d.colors.success.light,
16891
+ [vars$i.borderColor]: globalRefs$e.colors.success.light,
16739
16892
  },
16740
16893
  },
16741
16894
  },
@@ -16744,19 +16897,19 @@ const badge = {
16744
16897
  var badge$1 = /*#__PURE__*/Object.freeze({
16745
16898
  __proto__: null,
16746
16899
  default: badge,
16747
- vars: vars$h
16900
+ vars: vars$i
16748
16901
  });
16749
16902
 
16750
- const globalRefs$c = getThemeRefs(globals);
16903
+ const globalRefs$d = getThemeRefs(globals);
16751
16904
  const compVars$1 = AvatarClass.cssVarList;
16752
16905
 
16753
16906
  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,
16907
+ [compVars$1.hostDirection]: globalRefs$d.direction,
16908
+ [compVars$1.editableIconColor]: globalRefs$d.colors.surface.dark,
16909
+ [compVars$1.editableBorderColor]: globalRefs$d.colors.surface.dark,
16910
+ [compVars$1.editableBackgroundColor]: globalRefs$d.colors.surface.main,
16911
+ [compVars$1.avatarTextColor]: globalRefs$d.colors.surface.main,
16912
+ [compVars$1.avatarBackgroundColor]: globalRefs$d.colors.surface.dark,
16760
16913
 
16761
16914
  _editable: {
16762
16915
  [compVars$1.cursor]: 'pointer',
@@ -16782,143 +16935,143 @@ const avatar = {
16782
16935
  },
16783
16936
  };
16784
16937
 
16785
- const vars$g = {
16938
+ const vars$h = {
16786
16939
  ...compVars$1,
16787
16940
  };
16788
16941
 
16789
16942
  var avatar$1 = /*#__PURE__*/Object.freeze({
16790
16943
  __proto__: null,
16791
16944
  default: avatar,
16792
- vars: vars$g
16945
+ vars: vars$h
16793
16946
  });
16794
16947
 
16795
- const globalRefs$b = getThemeRefs(globals);
16948
+ const globalRefs$c = getThemeRefs(globals);
16796
16949
 
16797
- const vars$f = MappingsFieldClass.cssVarList;
16950
+ const vars$g = MappingsFieldClass.cssVarList;
16798
16951
 
16799
16952
  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',
16953
+ [vars$g.hostWidth]: refs.width,
16954
+ [vars$g.hostDirection]: refs.direction,
16955
+ [vars$g.fontSize]: refs.fontSize,
16956
+ [vars$g.fontFamily]: refs.fontFamily,
16957
+ [vars$g.separatorFontSize]: '14px',
16958
+ [vars$g.labelsFontSize]: '14px',
16959
+ [vars$g.labelsLineHeight]: '1',
16960
+ [vars$g.labelsMarginBottom]: '6px',
16961
+ [vars$g.labelTextColor]: refs.labelTextColor,
16962
+ [vars$g.itemMarginBottom]: '1em',
16810
16963
  // To be positioned correctly, the min width has to match the text field min width
16811
- [vars$f.valueLabelMinWidth]: refs.minWidth,
16964
+ [vars$g.valueLabelMinWidth]: refs.minWidth,
16812
16965
  // 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',
16966
+ [vars$g.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$c.border.xs})`,
16967
+ [vars$g.separatorWidth]: '70px',
16968
+ [vars$g.removeButtonWidth]: '60px',
16816
16969
  };
16817
16970
 
16818
16971
  var mappingsField$1 = /*#__PURE__*/Object.freeze({
16819
16972
  __proto__: null,
16820
16973
  default: mappingsField,
16821
16974
  mappingsField: mappingsField,
16822
- vars: vars$f
16975
+ vars: vars$g
16823
16976
  });
16824
16977
 
16825
- const globalRefs$a = getThemeRefs(globals);
16826
- const vars$e = UserAttributeClass.cssVarList;
16978
+ const globalRefs$b = getThemeRefs(globals);
16979
+ const vars$f = UserAttributeClass.cssVarList;
16827
16980
 
16828
16981
  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',
16982
+ [vars$f.hostDirection]: globalRefs$b.direction,
16983
+ [vars$f.labelTextWidth]: '150px',
16984
+ [vars$f.valueTextWidth]: '200px',
16985
+ [vars$f.badgeMaxWidth]: '85px',
16986
+ [vars$f.itemsGap]: '16px',
16987
+ [vars$f.hostMinWidth]: '530px',
16835
16988
  _fullWidth: {
16836
- [vars$e.hostWidth]: '100%',
16989
+ [vars$f.hostWidth]: '100%',
16837
16990
  },
16838
16991
  };
16839
16992
 
16840
16993
  var userAttribute$1 = /*#__PURE__*/Object.freeze({
16841
16994
  __proto__: null,
16842
16995
  default: userAttribute,
16843
- vars: vars$e
16996
+ vars: vars$f
16844
16997
  });
16845
16998
 
16846
- const globalRefs$9 = getThemeRefs(globals);
16847
- const vars$d = UserAuthMethodClass.cssVarList;
16999
+ const globalRefs$a = getThemeRefs(globals);
17000
+ const vars$e = UserAuthMethodClass.cssVarList;
16848
17001
 
16849
17002
  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',
17003
+ [vars$e.hostDirection]: globalRefs$a.direction,
17004
+ [vars$e.labelTextWidth]: '200px',
17005
+ [vars$e.itemsGap]: '16px',
17006
+ [vars$e.hostMinWidth]: '530px',
17007
+ [vars$e.iconSize]: '24px',
16855
17008
  _fullWidth: {
16856
- [vars$d.hostWidth]: '100%',
17009
+ [vars$e.hostWidth]: '100%',
16857
17010
  },
16858
17011
  };
16859
17012
 
16860
17013
  var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
16861
17014
  __proto__: null,
16862
17015
  default: userAuthMethod,
16863
- vars: vars$d
17016
+ vars: vars$e
16864
17017
  });
16865
17018
 
16866
- const vars$c = SamlGroupMappingsClass.cssVarList;
17019
+ const vars$d = SamlGroupMappingsClass.cssVarList;
16867
17020
 
16868
17021
  const samlGroupMappings = {
16869
- [vars$c.hostWidth]: refs.width,
16870
- [vars$c.hostDirection]: refs.direction,
16871
- [vars$c.groupNameInputMarginBottom]: '1em',
17022
+ [vars$d.hostWidth]: refs.width,
17023
+ [vars$d.hostDirection]: refs.direction,
17024
+ [vars$d.groupNameInputMarginBottom]: '1em',
16872
17025
  };
16873
17026
 
16874
17027
  var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
16875
17028
  __proto__: null,
16876
17029
  default: samlGroupMappings,
16877
17030
  samlGroupMappings: samlGroupMappings,
16878
- vars: vars$c
17031
+ vars: vars$d
16879
17032
  });
16880
17033
 
16881
- const globalRefs$8 = getThemeRefs(globals);
16882
- const vars$b = PolicyValidationClass.cssVarList;
17034
+ const globalRefs$9 = getThemeRefs(globals);
17035
+ const vars$c = PolicyValidationClass.cssVarList;
16883
17036
 
16884
17037
  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,
17038
+ [vars$c.fontFamily]: refs.fontFamily,
17039
+ [vars$c.fontSize]: refs.labelFontSize,
17040
+ [vars$c.textColor]: refs.labelTextColor,
17041
+ [vars$c.borderWidth]: refs.borderWidth,
17042
+ [vars$c.borderStyle]: refs.borderStyle,
17043
+ [vars$c.borderColor]: refs.borderColor,
17044
+ [vars$c.borderRadius]: globalRefs$9.radius.sm,
17045
+ [vars$c.backgroundColor]: 'none',
17046
+ [vars$c.padding]: '0px',
17047
+ [vars$c.labelMargin]: globalRefs$9.spacing.sm,
17048
+ [vars$c.itemsSpacing]: globalRefs$9.spacing.lg,
17049
+ [vars$c.itemSymbolDefault]: "'\\2022'", // "•"
17050
+ [vars$c.itemSymbolSuccess]: "'\\2713'", // "✓"
17051
+ [vars$c.itemSymbolError]: "'\\2A09'", // "⨉"
17052
+ [vars$c.itemSymbolSuccessColor]: globalRefs$9.colors.success.main,
17053
+ [vars$c.itemSymbolErrorColor]: globalRefs$9.colors.error.main,
16901
17054
  };
16902
17055
 
16903
17056
  var policyValidation$1 = /*#__PURE__*/Object.freeze({
16904
17057
  __proto__: null,
16905
17058
  default: policyValidation,
16906
- vars: vars$b
17059
+ vars: vars$c
16907
17060
  });
16908
17061
 
16909
- const vars$a = IconClass.cssVarList;
17062
+ const vars$b = IconClass.cssVarList;
16910
17063
 
16911
17064
  const icon = {};
16912
17065
 
16913
17066
  var icon$1 = /*#__PURE__*/Object.freeze({
16914
17067
  __proto__: null,
16915
17068
  default: icon,
16916
- vars: vars$a
17069
+ vars: vars$b
16917
17070
  });
16918
17071
 
16919
- const globalRefs$7 = getThemeRefs(globals);
17072
+ const globalRefs$8 = getThemeRefs(globals);
16920
17073
 
16921
- const vars$9 = CodeSnippetClass.cssVarList;
17074
+ const vars$a = CodeSnippetClass.cssVarList;
16922
17075
 
16923
17076
  const light = {
16924
17077
  color1: '#fa0',
@@ -16953,50 +17106,50 @@ const dark = {
16953
17106
  };
16954
17107
 
16955
17108
  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,
17109
+ [vars$a.rootBgColor]: globalRefs$8.colors.surface.main,
17110
+ [vars$a.rootTextColor]: globalRefs$8.colors.surface.contrast,
17111
+ [vars$a.docTagTextColor]: light.color2,
17112
+ [vars$a.keywordTextColor]: light.color2,
17113
+ [vars$a.metaKeywordTextColor]: light.color2,
17114
+ [vars$a.templateTagTextColor]: light.color2,
17115
+ [vars$a.templateVariableTextColor]: light.color2,
17116
+ [vars$a.typeTextColor]: light.color2,
17117
+ [vars$a.variableLanguageTextColor]: light.color2,
17118
+ [vars$a.titleTextColor]: light.color3,
17119
+ [vars$a.titleClassTextColor]: light.color3,
17120
+ [vars$a.titleClassInheritedTextColor]: light.color3,
17121
+ [vars$a.titleFunctionTextColor]: light.color3,
17122
+ [vars$a.attrTextColor]: light.color4,
17123
+ [vars$a.attributeTextColor]: light.color4,
17124
+ [vars$a.literalTextColor]: light.color4,
17125
+ [vars$a.metaTextColor]: light.color4,
17126
+ [vars$a.numberTextColor]: light.color4,
17127
+ [vars$a.operatorTextColor]: light.color4,
17128
+ [vars$a.variableTextColor]: light.color4,
17129
+ [vars$a.selectorAttrTextColor]: light.color4,
17130
+ [vars$a.selectorClassTextColor]: light.color4,
17131
+ [vars$a.selectorIdTextColor]: light.color4,
17132
+ [vars$a.regexpTextColor]: light.color13,
17133
+ [vars$a.stringTextColor]: light.color13,
17134
+ [vars$a.metaStringTextColor]: light.color13,
17135
+ [vars$a.builtInTextColor]: light.color5,
17136
+ [vars$a.symbolTextColor]: light.color5,
17137
+ [vars$a.commentTextColor]: light.color6,
17138
+ [vars$a.codeTextColor]: light.color6,
17139
+ [vars$a.formulaTextColor]: light.color6,
17140
+ [vars$a.nameTextColor]: light.color7,
17141
+ [vars$a.quoteTextColor]: light.color7,
17142
+ [vars$a.selectorTagTextColor]: light.color7,
17143
+ [vars$a.selectorPseudoTextColor]: light.color7,
17144
+ [vars$a.substTextColor]: light.color8,
17145
+ [vars$a.sectionTextColor]: light.color4,
17146
+ [vars$a.bulletTextColor]: light.color9,
17147
+ [vars$a.emphasisTextColor]: light.color8,
17148
+ [vars$a.strongTextColor]: light.color8,
17149
+ [vars$a.additionTextColor]: light.color7,
17150
+ [vars$a.additionBgColor]: light.color10,
17151
+ [vars$a.deletionTextColor]: light.color2,
17152
+ [vars$a.deletionBgColor]: light.color10,
17000
17153
  /* purposely ignored */
17001
17154
  // [vars.charEscapeTextColor]: '',
17002
17155
  // [vars.linkTextColor]: '',
@@ -17008,50 +17161,50 @@ const CodeSnippet = {
17008
17161
 
17009
17162
  const codeSnippetDarkThemeOverrides = {
17010
17163
  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,
17164
+ [vars$a.rootBgColor]: globalRefs$8.colors.surface.main,
17165
+ [vars$a.rootTextColor]: globalRefs$8.colors.surface.contrast,
17166
+ [vars$a.docTagTextColor]: dark.color2,
17167
+ [vars$a.keywordTextColor]: dark.color2,
17168
+ [vars$a.metaKeywordTextColor]: dark.color2,
17169
+ [vars$a.templateTagTextColor]: dark.color2,
17170
+ [vars$a.templateVariableTextColor]: dark.color2,
17171
+ [vars$a.typeTextColor]: dark.color2,
17172
+ [vars$a.variableLanguageTextColor]: dark.color2,
17173
+ [vars$a.titleTextColor]: dark.color3,
17174
+ [vars$a.titleClassTextColor]: dark.color3,
17175
+ [vars$a.titleClassInheritedTextColor]: dark.color3,
17176
+ [vars$a.titleFunctionTextColor]: dark.color3,
17177
+ [vars$a.attrTextColor]: dark.color4,
17178
+ [vars$a.attributeTextColor]: dark.color4,
17179
+ [vars$a.literalTextColor]: dark.color4,
17180
+ [vars$a.metaTextColor]: dark.color4,
17181
+ [vars$a.numberTextColor]: dark.color4,
17182
+ [vars$a.operatorTextColor]: dark.color4,
17183
+ [vars$a.variableTextColor]: dark.color4,
17184
+ [vars$a.selectorAttrTextColor]: dark.color4,
17185
+ [vars$a.selectorClassTextColor]: dark.color4,
17186
+ [vars$a.selectorIdTextColor]: dark.color4,
17187
+ [vars$a.regexpTextColor]: dark.color13,
17188
+ [vars$a.stringTextColor]: dark.color13,
17189
+ [vars$a.metaStringTextColor]: dark.color13,
17190
+ [vars$a.builtInTextColor]: dark.color5,
17191
+ [vars$a.symbolTextColor]: dark.color5,
17192
+ [vars$a.commentTextColor]: dark.color6,
17193
+ [vars$a.codeTextColor]: dark.color6,
17194
+ [vars$a.formulaTextColor]: dark.color6,
17195
+ [vars$a.nameTextColor]: dark.color7,
17196
+ [vars$a.quoteTextColor]: dark.color7,
17197
+ [vars$a.selectorTagTextColor]: dark.color7,
17198
+ [vars$a.selectorPseudoTextColor]: dark.color7,
17199
+ [vars$a.substTextColor]: dark.color8,
17200
+ [vars$a.sectionTextColor]: dark.color4,
17201
+ [vars$a.bulletTextColor]: dark.color9,
17202
+ [vars$a.emphasisTextColor]: dark.color8,
17203
+ [vars$a.strongTextColor]: dark.color8,
17204
+ [vars$a.additionTextColor]: dark.color7,
17205
+ [vars$a.additionBgColor]: dark.color10,
17206
+ [vars$a.deletionTextColor]: dark.color2,
17207
+ [vars$a.deletionBgColor]: dark.color10,
17055
17208
  },
17056
17209
  };
17057
17210
 
@@ -17059,36 +17212,36 @@ var codeSnippet = /*#__PURE__*/Object.freeze({
17059
17212
  __proto__: null,
17060
17213
  codeSnippetDarkThemeOverrides: codeSnippetDarkThemeOverrides,
17061
17214
  default: CodeSnippet,
17062
- vars: vars$9
17215
+ vars: vars$a
17063
17216
  });
17064
17217
 
17065
- const vars$8 = RadioGroupClass.cssVarList;
17066
- const globalRefs$6 = getThemeRefs(globals);
17218
+ const vars$9 = RadioGroupClass.cssVarList;
17219
+ const globalRefs$7 = getThemeRefs(globals);
17067
17220
 
17068
17221
  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,
17222
+ [vars$9.buttonsRowGap]: '9px',
17223
+ [vars$9.hostWidth]: refs.width,
17224
+ [vars$9.hostDirection]: refs.direction,
17225
+ [vars$9.fontSize]: refs.fontSize,
17226
+ [vars$9.fontFamily]: refs.fontFamily,
17227
+ [vars$9.labelTextColor]: refs.labelTextColor,
17228
+ [vars$9.labelRequiredIndicator]: refs.requiredIndicator,
17229
+ [vars$9.errorMessageTextColor]: refs.errorMessageTextColor,
17230
+ [vars$9.helperTextColor]: refs.helperTextColor,
17231
+ [vars$9.itemsLabelColor]: globalRefs$7.colors.surface.contrast,
17079
17232
 
17080
17233
  textAlign: {
17081
- right: { [vars$8.inputTextAlign]: 'right' },
17082
- left: { [vars$8.inputTextAlign]: 'left' },
17083
- center: { [vars$8.inputTextAlign]: 'center' },
17234
+ right: { [vars$9.inputTextAlign]: 'right' },
17235
+ left: { [vars$9.inputTextAlign]: 'left' },
17236
+ center: { [vars$9.inputTextAlign]: 'center' },
17084
17237
  },
17085
17238
 
17086
17239
  _fullWidth: {
17087
- [vars$8.buttonsSpacing]: 'space-between',
17240
+ [vars$9.buttonsSpacing]: 'space-between',
17088
17241
  },
17089
17242
 
17090
17243
  _disabled: {
17091
- [vars$8.itemsLabelColor]: globalRefs$6.colors.surface.light,
17244
+ [vars$9.itemsLabelColor]: globalRefs$7.colors.surface.light,
17092
17245
  },
17093
17246
  };
17094
17247
 
@@ -17096,24 +17249,24 @@ var radioGroup$1 = /*#__PURE__*/Object.freeze({
17096
17249
  __proto__: null,
17097
17250
  default: radioGroup,
17098
17251
  radioGroup: radioGroup,
17099
- vars: vars$8
17252
+ vars: vars$9
17100
17253
  });
17101
17254
 
17102
- const vars$7 = RadioButtonClass.cssVarList;
17103
- const globalRefs$5 = getThemeRefs(globals);
17255
+ const vars$8 = RadioButtonClass.cssVarList;
17256
+ const globalRefs$6 = getThemeRefs(globals);
17104
17257
 
17105
17258
  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,
17259
+ [vars$8.fontFamily]: refs.fontFamily,
17260
+ [vars$8.radioSize]: 'calc(1em + 6px)',
17261
+ [vars$8.radioMargin]: 'auto 4px',
17262
+ [vars$8.radioCheckedSize]: `calc(var(${vars$8.radioSize})/5)`,
17263
+ [vars$8.radioCheckedColor]: globalRefs$6.colors.surface.light,
17264
+ [vars$8.radioBackgroundColor]: globalRefs$6.colors.surface.light,
17265
+ [vars$8.radioBorderColor]: 'none',
17266
+ [vars$8.radioBorderWidth]: 0,
17114
17267
 
17115
17268
  _checked: {
17116
- [vars$7.radioBackgroundColor]: globalRefs$5.colors.surface.contrast,
17269
+ [vars$8.radioBackgroundColor]: globalRefs$6.colors.surface.contrast,
17117
17270
  },
17118
17271
 
17119
17272
  _hover: {
@@ -17122,16 +17275,16 @@ const radioButton = {
17122
17275
 
17123
17276
  size: {
17124
17277
  xs: {
17125
- [vars$7.fontSize]: '12px',
17278
+ [vars$8.fontSize]: '12px',
17126
17279
  },
17127
17280
  sm: {
17128
- [vars$7.fontSize]: '14px',
17281
+ [vars$8.fontSize]: '14px',
17129
17282
  },
17130
17283
  md: {
17131
- [vars$7.fontSize]: '16px',
17284
+ [vars$8.fontSize]: '16px',
17132
17285
  },
17133
17286
  lg: {
17134
- [vars$7.fontSize]: '18px',
17287
+ [vars$8.fontSize]: '18px',
17135
17288
  },
17136
17289
  },
17137
17290
  };
@@ -17140,137 +17293,137 @@ var radioButton$1 = /*#__PURE__*/Object.freeze({
17140
17293
  __proto__: null,
17141
17294
  default: radioButton,
17142
17295
  radioButton: radioButton,
17143
- vars: vars$7
17296
+ vars: vars$8
17144
17297
  });
17145
17298
 
17146
- const globalRefs$4 = getThemeRefs(globals);
17299
+ const globalRefs$5 = getThemeRefs(globals);
17147
17300
 
17148
- const vars$6 = CalendarClass.cssVarList;
17301
+ const vars$7 = CalendarClass.cssVarList;
17149
17302
 
17150
17303
  const calendar = {
17151
- [vars$6.fontFamily]: refs.fontFamily,
17152
- [vars$6.fontSize]: refs.fontSize,
17153
- [vars$6.hostDirection]: refs.direction,
17304
+ [vars$7.fontFamily]: refs.fontFamily,
17305
+ [vars$7.fontSize]: refs.fontSize,
17306
+ [vars$7.hostDirection]: refs.direction,
17154
17307
 
17155
- [vars$6.calendarPadding]: '1em',
17308
+ [vars$7.calendarPadding]: '1em',
17156
17309
 
17157
- [vars$6.topNavVerticalPadding]: '1em',
17158
- [vars$6.topNavAlignment]: 'space-between',
17159
- [vars$6.topNavGap]: '0',
17160
- [vars$6.topNavSelectorsGap]: '0.5em',
17310
+ [vars$7.topNavVerticalPadding]: '1em',
17311
+ [vars$7.topNavAlignment]: 'space-between',
17312
+ [vars$7.topNavGap]: '0',
17313
+ [vars$7.topNavSelectorsGap]: '0.5em',
17161
17314
 
17162
- [vars$6.bottomNavVerticalPadding]: '0.75em',
17163
- [vars$6.bottomNavHorizontalPadding]: '1.5em',
17164
- [vars$6.bottomNavAlignment]: 'space-between',
17165
- [vars$6.bottomNavGap]: '0.5em',
17315
+ [vars$7.bottomNavVerticalPadding]: '0.75em',
17316
+ [vars$7.bottomNavHorizontalPadding]: '1.5em',
17317
+ [vars$7.bottomNavAlignment]: 'space-between',
17318
+ [vars$7.bottomNavGap]: '0.5em',
17166
17319
 
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',
17320
+ [vars$7.navMarginBottom]: '0.75em',
17321
+ [vars$7.navBorderBottomWidth]: '1px',
17322
+ [vars$7.navBorderBottomColor]: globalRefs$5.colors.surface.highlight,
17323
+ [vars$7.navBorderBottomStyle]: 'solid',
17171
17324
 
17172
- [vars$6.yearInputWidth]: '6em',
17173
- [vars$6.monthInputWidth]: '8em',
17325
+ [vars$7.yearInputWidth]: '6em',
17326
+ [vars$7.monthInputWidth]: '8em',
17174
17327
 
17175
- [vars$6.navButtonSize]: '24px',
17176
- [vars$6.navButtonCursor]: 'pointer',
17328
+ [vars$7.navButtonSize]: '24px',
17329
+ [vars$7.navButtonCursor]: 'pointer',
17177
17330
 
17178
- [vars$6.weekdayFontSize]: '0.875em',
17179
- [vars$6.weekdayFontWeight]: '500',
17331
+ [vars$7.weekdayFontSize]: '0.875em',
17332
+ [vars$7.weekdayFontWeight]: '500',
17180
17333
 
17181
17334
  // day table cell
17182
- [vars$6.dayHeight]: '3.125em',
17335
+ [vars$7.dayHeight]: '3.125em',
17183
17336
 
17184
17337
  // 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,
17338
+ [vars$7.daySize]: '2.125em',
17339
+ [vars$7.dayFontSize]: '1em',
17340
+ [vars$7.dayRadius]: '50%',
17341
+ [vars$7.dayTextAlign]: 'center',
17342
+ [vars$7.dayPadding]: '0',
17343
+ [vars$7.dayTextColor]: globalRefs$5.colors.surface.contrast,
17344
+ [vars$7.dayFontWeight]: '500',
17345
+ [vars$7.dayBackgroundColor]: 'transparent',
17346
+ [vars$7.dayCursor]: 'pointer',
17347
+ [vars$7.dayBackgroundColorHover]: globalRefs$5.colors.primary.highlight,
17195
17348
 
17196
17349
  // selected day
17197
- [vars$6.daySelectedBackgroundColor]: globalRefs$4.colors.primary.main,
17198
- [vars$6.daySelectedTextdColor]: globalRefs$4.colors.primary.contrast,
17350
+ [vars$7.daySelectedBackgroundColor]: globalRefs$5.colors.primary.main,
17351
+ [vars$7.daySelectedTextdColor]: globalRefs$5.colors.primary.contrast,
17199
17352
 
17200
17353
  // disabled day (out of min/max range)
17201
- [vars$6.dayDisabledTextdColor]: globalRefs$4.colors.surface.light,
17354
+ [vars$7.dayDisabledTextdColor]: globalRefs$5.colors.surface.light,
17202
17355
 
17203
17356
  // today
17204
- [vars$6.currentDayBorderColor]: globalRefs$4.colors.surface.light,
17205
- [vars$6.currentDayBorderWidth]: '1px',
17206
- [vars$6.currentDayBorderStyle]: 'solid',
17357
+ [vars$7.currentDayBorderColor]: globalRefs$5.colors.surface.light,
17358
+ [vars$7.currentDayBorderWidth]: '1px',
17359
+ [vars$7.currentDayBorderStyle]: 'solid',
17207
17360
 
17208
17361
  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' },
17362
+ xs: { [vars$7.fontSize]: '12px' },
17363
+ sm: { [vars$7.fontSize]: '14px' },
17364
+ md: { [vars$7.fontSize]: '16px' },
17365
+ lg: { [vars$7.fontSize]: '18px' },
17213
17366
  },
17214
17367
 
17215
- [vars$6.navButtonRotation]: 'rotate(180deg)',
17368
+ [vars$7.navButtonRotation]: 'rotate(180deg)',
17216
17369
 
17217
17370
  _disabled: {
17218
- [vars$6.navButtonOpacity]: '0.5',
17219
- [vars$6.dayBackgroundColorHover]: 'none',
17220
- [vars$6.navButtonCursor]: 'default',
17221
- [vars$6.dayCursor]: 'default',
17371
+ [vars$7.navButtonOpacity]: '0.5',
17372
+ [vars$7.dayBackgroundColorHover]: 'none',
17373
+ [vars$7.navButtonCursor]: 'default',
17374
+ [vars$7.dayCursor]: 'default',
17222
17375
  },
17223
17376
 
17224
17377
  _fullWidth: {
17225
- [vars$6.hostWidth]: '100%',
17226
- [vars$6.dayBlockAlign]: '0 auto',
17378
+ [vars$7.hostWidth]: '100%',
17379
+ [vars$7.dayBlockAlign]: '0 auto',
17227
17380
  },
17228
17381
  };
17229
17382
 
17230
17383
  var calendar$1 = /*#__PURE__*/Object.freeze({
17231
17384
  __proto__: null,
17232
17385
  default: calendar,
17233
- vars: vars$6
17386
+ vars: vars$7
17234
17387
  });
17235
17388
 
17236
- const globalRefs$3 = getThemeRefs(globals);
17389
+ const globalRefs$4 = getThemeRefs(globals);
17237
17390
  const shadowColor$1 = '#00000020';
17238
- const { shadow } = globalRefs$3;
17391
+ const { shadow } = globalRefs$4;
17239
17392
 
17240
- const vars$5 = DateFieldClass.cssVarList;
17393
+ const vars$6 = DateFieldClass.cssVarList;
17241
17394
 
17242
17395
  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',
17396
+ [vars$6.hostWidth]: refs.width,
17397
+ [vars$6.hostDirection]: refs.direction,
17398
+ [vars$6.iconMargin]: '0.375em',
17399
+
17400
+ [vars$6.overlay.marginTop]: `calc(${refs.outlineWidth} + 1px)`,
17401
+ [vars$6.overlay.backgroundColor]: refs.backgroundColor,
17402
+ [vars$6.overlay.backdropBackgroundColor]: 'transparent',
17403
+ [vars$6.overlay.backdropPointerEvents]: 'all',
17404
+ [vars$6.overlay.boxShadow]: `${shadow.wide.xl} ${shadowColor$1}, ${shadow.narrow.xl} ${shadowColor$1}`,
17405
+ [vars$6.overlay.outlineWidth]: '0',
17406
+ [vars$6.overlay.outlineColor]: 'transparent',
17407
+ [vars$6.overlay.outlineStyle]: 'none',
17408
+ [vars$6.overlay.padding]: '0',
17409
+
17410
+ [vars$6.rtlInputDirection]: 'ltr',
17411
+ [vars$6.rtlInputAlignment]: 'right',
17259
17412
  };
17260
17413
 
17261
17414
  var dateField$1 = /*#__PURE__*/Object.freeze({
17262
17415
  __proto__: null,
17263
17416
  default: dateField,
17264
- vars: vars$5
17417
+ vars: vars$6
17265
17418
  });
17266
17419
 
17267
- const globalRefs$2 = getThemeRefs(globals);
17420
+ const globalRefs$3 = getThemeRefs(globals);
17268
17421
 
17269
17422
  const compVars = ListClass.cssVarList;
17270
17423
 
17271
17424
  const [helperTheme, helperRefs, helperVars] = createHelperVars(
17272
17425
  { shadowColor: '#00000020' },
17273
- componentName$3
17426
+ componentName$4
17274
17427
  );
17275
17428
 
17276
17429
  const { shadowColor } = helperRefs;
@@ -17279,24 +17432,24 @@ const list$1 = {
17279
17432
  ...helperTheme,
17280
17433
 
17281
17434
  [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,
17435
+ [compVars.backgroundColor]: globalRefs$3.colors.surface.main,
17436
+ [compVars.fontFamily]: globalRefs$3.fonts.font1.family,
17437
+ [compVars.borderColor]: globalRefs$3.colors.surface.light,
17285
17438
  [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}`,
17439
+ [compVars.borderWidth]: globalRefs$3.border.xs,
17440
+ [compVars.borderRadius]: globalRefs$3.radius.sm,
17441
+ [compVars.gap]: globalRefs$3.spacing.md,
17442
+ [compVars.verticalPadding]: globalRefs$3.spacing.lg,
17443
+ [compVars.horizontalPadding]: globalRefs$3.spacing.lg,
17444
+ [compVars.boxShadow]: `${globalRefs$3.shadow.wide.sm} ${shadowColor}, ${globalRefs$3.shadow.narrow.sm} ${shadowColor}`,
17292
17445
  [compVars.maxHeight]: '100%',
17293
- [compVars.hostDirection]: globalRefs$2.direction,
17446
+ [compVars.hostDirection]: globalRefs$3.direction,
17294
17447
  [compVars.minItemsWidth]: '150px',
17295
17448
 
17296
17449
  _empty: {
17297
17450
  [compVars.minHeight]: '150px',
17298
- [compVars.emptyStateTextColor]: globalRefs$2.colors.surface.dark,
17299
- [compVars.emptyStateTextFontFamily]: globalRefs$2.fonts.font1.family,
17451
+ [compVars.emptyStateTextColor]: globalRefs$3.colors.surface.dark,
17452
+ [compVars.emptyStateTextFontFamily]: globalRefs$3.fonts.font1.family,
17300
17453
  },
17301
17454
 
17302
17455
  variant: {
@@ -17310,7 +17463,7 @@ const list$1 = {
17310
17463
  },
17311
17464
  };
17312
17465
 
17313
- const vars$4 = {
17466
+ const vars$5 = {
17314
17467
  ...compVars,
17315
17468
  ...helperVars,
17316
17469
  };
@@ -17318,78 +17471,78 @@ const vars$4 = {
17318
17471
  var list$2 = /*#__PURE__*/Object.freeze({
17319
17472
  __proto__: null,
17320
17473
  default: list$1,
17321
- vars: vars$4
17474
+ vars: vars$5
17322
17475
  });
17323
17476
 
17324
- const globalRefs$1 = getThemeRefs(globals);
17477
+ const globalRefs$2 = getThemeRefs(globals);
17325
17478
 
17326
- const vars$3 = ListItemClass.cssVarList;
17479
+ const vars$4 = ListItemClass.cssVarList;
17327
17480
 
17328
17481
  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',
17482
+ [vars$4.backgroundColor]: globalRefs$2.colors.surface.main,
17483
+ [vars$4.padding]: globalRefs$2.spacing.lg,
17484
+ [vars$4.gap]: globalRefs$2.spacing.md,
17485
+ [vars$4.borderStyle]: 'solid',
17486
+ [vars$4.borderWidth]: globalRefs$2.border.xs,
17487
+ [vars$4.borderColor]: globalRefs$2.colors.surface.main,
17488
+ [vars$4.borderRadius]: globalRefs$2.radius.sm,
17489
+ [vars$4.cursor]: 'pointer',
17490
+ [vars$4.alignItems]: 'center',
17491
+ [vars$4.flexDirection]: 'row',
17492
+ [vars$4.transition]: 'border-color 0.2s, background-color 0.2s',
17340
17493
 
17341
17494
  variant: {
17342
17495
  tile: {
17343
- [vars$3.alignItems]: 'flex-start',
17344
- [vars$3.flexDirection]: 'column',
17345
- [vars$3.borderColor]: globalRefs$1.colors.surface.light,
17496
+ [vars$4.alignItems]: 'flex-start',
17497
+ [vars$4.flexDirection]: 'column',
17498
+ [vars$4.borderColor]: globalRefs$2.colors.surface.light,
17346
17499
  },
17347
17500
  },
17348
17501
 
17349
17502
  _hover: {
17350
- [vars$3.backgroundColor]: globalRefs$1.colors.surface.highlight,
17503
+ [vars$4.backgroundColor]: globalRefs$2.colors.surface.highlight,
17351
17504
  },
17352
17505
 
17353
17506
  _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}`,
17507
+ [vars$4.backgroundColor]: globalRefs$2.colors.surface.main,
17508
+ [vars$4.borderColor]: globalRefs$2.colors.primary.light,
17509
+ [vars$4.outline]: `1px solid ${globalRefs$2.colors.primary.light}`,
17357
17510
  },
17358
17511
  };
17359
17512
 
17360
17513
  var listItem = /*#__PURE__*/Object.freeze({
17361
17514
  __proto__: null,
17362
17515
  default: list,
17363
- vars: vars$3
17516
+ vars: vars$4
17364
17517
  });
17365
17518
 
17366
- const vars$2 = AppsListClass.cssVarList;
17367
- const globalRefs = getThemeRefs(globals);
17519
+ const vars$3 = AppsListClass.cssVarList;
17520
+ const globalRefs$1 = getThemeRefs(globals);
17368
17521
 
17369
17522
  const defaultHeight = '400px';
17370
17523
 
17371
17524
  const appsList = {
17372
- [vars$2.itemsFontWeight]: 'normal',
17373
- [vars$2.itemsTextAlign]: 'start',
17374
- [vars$2.hostDirection]: globalRefs.direction,
17375
- [vars$2.maxHeight]: defaultHeight,
17525
+ [vars$3.itemsFontWeight]: 'normal',
17526
+ [vars$3.itemsTextAlign]: 'start',
17527
+ [vars$3.hostDirection]: globalRefs$1.direction,
17528
+ [vars$3.maxHeight]: defaultHeight,
17376
17529
 
17377
17530
  _empty: {
17378
- [vars$2.minHeight]: defaultHeight,
17531
+ [vars$3.minHeight]: defaultHeight,
17379
17532
  },
17380
17533
 
17381
17534
  size: {
17382
17535
  xs: {
17383
- [vars$2.itemsFontSize]: '14px',
17536
+ [vars$3.itemsFontSize]: '14px',
17384
17537
  },
17385
17538
  sm: {
17386
- [vars$2.itemsFontSize]: '14px',
17539
+ [vars$3.itemsFontSize]: '14px',
17387
17540
  },
17388
17541
  md: {
17389
- [vars$2.itemsFontSize]: '16px',
17542
+ [vars$3.itemsFontSize]: '16px',
17390
17543
  },
17391
17544
  lg: {
17392
- [vars$2.itemsFontSize]: '20px',
17545
+ [vars$3.itemsFontSize]: '20px',
17393
17546
  },
17394
17547
  },
17395
17548
  };
@@ -17397,23 +17550,59 @@ const appsList = {
17397
17550
  var appsList$1 = /*#__PURE__*/Object.freeze({
17398
17551
  __proto__: null,
17399
17552
  default: appsList,
17400
- vars: vars$2
17553
+ vars: vars$3
17401
17554
  });
17402
17555
 
17403
- const vars$1 = ScopesListClass.cssVarList;
17556
+ const vars$2 = ScopesListClass.cssVarList;
17404
17557
 
17405
17558
  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',
17559
+ [vars$2.requiredInputBorderColor]: theme$1._disabled[vars$O.borderColor],
17560
+ [vars$2.requiredInputValueTextColor]: theme$1._disabled[vars$O.valueTextColor],
17561
+ [vars$2.hostWidth]: '280px',
17409
17562
  _fullWidth: {
17410
- [vars$1.hostWidth]: '100%',
17563
+ [vars$2.hostWidth]: '100%',
17411
17564
  },
17412
17565
  };
17413
17566
 
17414
17567
  var scopesList$1 = /*#__PURE__*/Object.freeze({
17415
17568
  __proto__: null,
17416
17569
  default: scopesList,
17570
+ vars: vars$2
17571
+ });
17572
+
17573
+ const globalRefs = getThemeRefs(globals);
17574
+ const vars$1 = ThirdPartyAppLogoClass.cssVarList;
17575
+
17576
+ const thirdPartyAppLogo = {
17577
+ [vars$1.gap]: globalRefs.spacing.lg,
17578
+ [vars$1.arrowsColor]: globalRefs.colors.surface.dark,
17579
+ [vars$1.thirdPartyAppLogoFallback]:
17580
+ 'url(https://imgs.descope.com/components/third-party-app-logo-placeholder.svg)',
17581
+ [vars$1.companyLogoFallback]:
17582
+ 'url(https://imgs.descope.com/components/project-logo-placeholder.svg)',
17583
+ size: {
17584
+ xs: {
17585
+ [vars$1.logoMaxHeight]: '30px',
17586
+ [vars$1.logoMaxWidth]: '120px',
17587
+ },
17588
+ sm: {
17589
+ [vars$1.logoMaxHeight]: '40px',
17590
+ [vars$1.logoMaxWidth]: '160px',
17591
+ },
17592
+ md: {
17593
+ [vars$1.logoMaxHeight]: '48px',
17594
+ [vars$1.logoMaxWidth]: '200px',
17595
+ },
17596
+ lg: {
17597
+ [vars$1.logoMaxHeight]: '60px',
17598
+ [vars$1.logoMaxWidth]: '240px',
17599
+ },
17600
+ },
17601
+ };
17602
+
17603
+ var thirdPartyAppLogo$1 = /*#__PURE__*/Object.freeze({
17604
+ __proto__: null,
17605
+ default: thirdPartyAppLogo,
17417
17606
  vars: vars$1
17418
17607
  });
17419
17608
 
@@ -17468,6 +17657,7 @@ const components = {
17468
17657
  listItem,
17469
17658
  appsList: appsList$1,
17470
17659
  scopesList: scopesList$1,
17660
+ thirdPartyAppLogo: thirdPartyAppLogo$1,
17471
17661
  };
17472
17662
 
17473
17663
  const theme = Object.keys(components).reduce(
@@ -17480,7 +17670,7 @@ const vars = Object.keys(components).reduce(
17480
17670
  );
17481
17671
 
17482
17672
  const defaultTheme = { globals, components: theme };
17483
- const themeVars = { globals: vars$P, components: vars };
17673
+ const themeVars = { globals: vars$Q, components: vars };
17484
17674
 
17485
17675
  const colors = {
17486
17676
  surface: {
@@ -17529,5 +17719,5 @@ const darkTheme = merge({}, defaultTheme, {
17529
17719
  },
17530
17720
  });
17531
17721
 
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 };
17722
+ export { AppsListClass, AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, CheckboxClass, CodeSnippetClass, ComboBoxClass, ContainerClass, DateFieldClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, ListClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, RecaptchaClass, SamlGroupMappingsClass, ScopesListClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, ThirdPartyAppLogoClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
17533
17723
  //# sourceMappingURL=index.esm.js.map