@descope/web-components-ui 1.0.305 → 1.0.307

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.esm.js CHANGED
@@ -1344,6 +1344,70 @@ const inputEventsDispatchingMixin = (superclass) =>
1344
1344
  }
1345
1345
  };
1346
1346
 
1347
+ /* eslint-disable no-use-before-define */
1348
+
1349
+ const componentName$T = getComponentName('icon');
1350
+
1351
+ class RawIcon extends createBaseClass({ componentName: componentName$T, baseSelector: 'slot' }) {
1352
+ constructor() {
1353
+ super();
1354
+
1355
+ this.attachShadow({ mode: 'open' }).innerHTML = `
1356
+ <style>
1357
+ :host > slot {
1358
+ box-sizing: border-box;
1359
+ width: 100%;
1360
+ height: 100%;
1361
+ display: flex;
1362
+ overflow: auto;
1363
+ }
1364
+ :host {
1365
+ display: inline-block;
1366
+ }
1367
+ </style>
1368
+ <slot></slot>
1369
+ `;
1370
+ }
1371
+
1372
+ get items() {
1373
+ return this.shadowRoot.querySelector('slot').assignedNodes();
1374
+ }
1375
+
1376
+ #onChildrenChange() {
1377
+ // force hide icon if empty.
1378
+ if (this.items?.length > 0) {
1379
+ this.shadowRoot.host.style.setProperty('display', 'inline-block');
1380
+ } else {
1381
+ this.shadowRoot.host.style.setProperty('display', 'none');
1382
+ }
1383
+
1384
+ // set fill for all inner svgs to fill var and a fallback
1385
+ const elems = this.querySelectorAll('*[fill]');
1386
+ elems.forEach((ele) =>
1387
+ ele.setAttribute(
1388
+ 'fill',
1389
+ `var(${IconClass.cssVarList.fill}, ${ele.getAttribute('fill') || "''"})`
1390
+ )
1391
+ );
1392
+ }
1393
+
1394
+ init() {
1395
+ observeChildren(this, this.#onChildrenChange.bind(this));
1396
+ }
1397
+ }
1398
+
1399
+ const IconClass = compose(
1400
+ createStyleMixin({
1401
+ mappings: {
1402
+ fill: {},
1403
+ },
1404
+ }),
1405
+ draggableMixin,
1406
+ componentNameValidationMixin
1407
+ )(RawIcon);
1408
+
1409
+ customElements.define(componentName$T, IconClass);
1410
+
1347
1411
  const clickableMixin = (superclass) =>
1348
1412
  class ClickableMixinClass extends superclass {
1349
1413
  get isLoading() {
@@ -1425,6 +1489,10 @@ const ButtonClass = compose(
1425
1489
  verticalPadding: [{ property: 'padding-top' }, { property: 'padding-bottom' }],
1426
1490
 
1427
1491
  labelTextColor: { property: 'color' },
1492
+ iconColor: {
1493
+ selector: () => `::slotted(${IconClass.componentName})`,
1494
+ property: IconClass.cssVarList.fill,
1495
+ },
1428
1496
  labelTextDecoration: { ...label$a, property: 'text-decoration' },
1429
1497
  labelSpacing: { ...label$a, property: 'gap' },
1430
1498
  textAlign: { ...label$a, property: 'justify-content', fallback: 'center' },
@@ -3348,7 +3416,7 @@ const textRuleSet = {
3348
3416
  const componentName$z = getComponentName('enriched-text');
3349
3417
 
3350
3418
  let EnrichedText$2 = class EnrichedText extends createBaseClass({ componentName: componentName$z, baseSelector: ':host > div' }) {
3351
- #origImageRenderer;
3419
+ #origLinkRenderer;
3352
3420
 
3353
3421
  constructor() {
3354
3422
  super();
@@ -3397,7 +3465,7 @@ let EnrichedText$2 = class EnrichedText extends createBaseClass({ componentName:
3397
3465
  }
3398
3466
 
3399
3467
  static get observedAttributes() {
3400
- return ['readonly'];
3468
+ return ['readonly', 'link-target-blank'];
3401
3469
  }
3402
3470
 
3403
3471
  attributeChangedCallback(attrName, oldValue, newValue) {
@@ -3407,6 +3475,23 @@ let EnrichedText$2 = class EnrichedText extends createBaseClass({ componentName:
3407
3475
  if (attrName === 'readonly') {
3408
3476
  this.onReadOnlyChange(newValue === 'true');
3409
3477
  }
3478
+
3479
+ if (attrName === 'link-target-blank') {
3480
+ this.#initProcessor();
3481
+ }
3482
+ }
3483
+ }
3484
+
3485
+ #customizeLinkRenderer() {
3486
+ if (this.linkTargetBlank) {
3487
+ this.processor.renderer.rules.link_open = (tokens, idx, options, env, self) => {
3488
+ // Add a new `target` attribute, or replace the value of the existing one.
3489
+ tokens[idx].attrSet('target', '_blank');
3490
+ // Pass the token to the default renderer.
3491
+ return this.#origLinkRenderer(tokens, idx, options, env, self);
3492
+ };
3493
+ } else {
3494
+ this.processor.renderer.rules.link_open = this.#origLinkRenderer;
3410
3495
  }
3411
3496
  }
3412
3497
 
@@ -3417,19 +3502,27 @@ let EnrichedText$2 = class EnrichedText extends createBaseClass({ componentName:
3417
3502
 
3418
3503
  const customRuleSet = textRuleSet;
3419
3504
  this.processor.configure(customRuleSet || {});
3420
-
3421
- if (customRuleSet?.custom?.includes('image')) {
3422
- this.processor.renderer.rules.image = this.#origImageRenderer;
3423
- }
3424
3505
  }
3425
3506
 
3426
3507
  #updateProcessorRules() {
3427
3508
  this.#enableCustomRules();
3428
3509
  }
3429
3510
 
3511
+ #storeOrigRenderers() {
3512
+ const defaultLinkRenderer = (tokens, idx, options, _, self) =>
3513
+ self.renderToken(tokens, idx, options);
3514
+ this.#origLinkRenderer = this.processor.renderer.rules.link_open || defaultLinkRenderer;
3515
+ }
3516
+
3430
3517
  #initProcessor() {
3431
3518
  this.processor = new MarkdownIt();
3519
+ this.#storeOrigRenderers();
3432
3520
  this.#updateProcessorRules();
3521
+ this.#customizeLinkRenderer();
3522
+ }
3523
+
3524
+ get linkTargetBlank() {
3525
+ return this.getAttribute('link-target-blank') === 'true';
3433
3526
  }
3434
3527
 
3435
3528
  get contentNode() {
@@ -6958,7 +7051,7 @@ class RawUploadFile extends BaseInputClass$3 {
6958
7051
  }
6959
7052
 
6960
7053
  const buttonVars = ButtonClass.cssVarList;
6961
- const { host: host$8, wrapper, icon, title, description, requiredIndicator: requiredIndicator$2 } = {
7054
+ const { host: host$8, wrapper, icon: icon$2, title, description, requiredIndicator: requiredIndicator$2 } = {
6962
7055
  host: { selector: () => ':host' },
6963
7056
  wrapper: { selector: () => ':host > div' },
6964
7057
  icon: { selector: () => '::slotted(*)' },
@@ -6993,7 +7086,7 @@ const UploadFileClass = compose(
6993
7086
  { ...title, property: 'color' },
6994
7087
  { ...description, property: 'color' },
6995
7088
  ],
6996
- iconSize: { ...icon, property: 'width' },
7089
+ iconSize: { ...icon$2, property: 'width' },
6997
7090
  requiredIndicator: { ...requiredIndicator$2, property: 'content' },
6998
7091
  },
6999
7092
  }),
@@ -10799,7 +10892,7 @@ const globals = {
10799
10892
  fonts,
10800
10893
  direction,
10801
10894
  };
10802
- const vars$F = getThemeVars(globals);
10895
+ const vars$G = getThemeVars(globals);
10803
10896
 
10804
10897
  const globalRefs$o = getThemeRefs(globals);
10805
10898
  const compVars$5 = ButtonClass.cssVarList;
@@ -10872,6 +10965,7 @@ const button = {
10872
10965
  [helperVars$3.dark]: globalRefs$o.colors.surface.dark,
10873
10966
  [helperVars$3.light]: globalRefs$o.colors.surface.light,
10874
10967
  [helperVars$3.contrast]: globalRefs$o.colors.surface.main,
10968
+ [compVars$5.iconColor]: globalRefs$o.colors.surface.main,
10875
10969
  },
10876
10970
 
10877
10971
  variant: {
@@ -10919,7 +11013,7 @@ const button = {
10919
11013
  },
10920
11014
  };
10921
11015
 
10922
- const vars$E = {
11016
+ const vars$F = {
10923
11017
  ...compVars$5,
10924
11018
  ...helperVars$3,
10925
11019
  };
@@ -10927,13 +11021,13 @@ const vars$E = {
10927
11021
  var button$1 = /*#__PURE__*/Object.freeze({
10928
11022
  __proto__: null,
10929
11023
  default: button,
10930
- vars: vars$E
11024
+ vars: vars$F
10931
11025
  });
10932
11026
 
10933
11027
  const componentName = getComponentName('input-wrapper');
10934
11028
  const globalRefs$n = getThemeRefs(globals);
10935
11029
 
10936
- const [theme$1, refs, vars$D] = createHelperVars(
11030
+ const [theme$1, refs, vars$E] = createHelperVars(
10937
11031
  {
10938
11032
  labelTextColor: globalRefs$n.colors.surface.dark,
10939
11033
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
@@ -11010,22 +11104,64 @@ var inputWrapper = /*#__PURE__*/Object.freeze({
11010
11104
  __proto__: null,
11011
11105
  default: theme$1,
11012
11106
  refs: refs,
11013
- vars: vars$D
11107
+ vars: vars$E
11014
11108
  });
11015
11109
 
11016
- const vars$C = TextFieldClass.cssVarList;
11110
+ const vars$D = TextFieldClass.cssVarList;
11017
11111
 
11018
11112
  const textField = {
11113
+ [vars$D.hostWidth]: refs.width,
11114
+ [vars$D.hostMinWidth]: refs.minWidth,
11115
+ [vars$D.hostDirection]: refs.direction,
11116
+ [vars$D.fontSize]: refs.fontSize,
11117
+ [vars$D.fontFamily]: refs.fontFamily,
11118
+ [vars$D.labelTextColor]: refs.labelTextColor,
11119
+ [vars$D.labelRequiredIndicator]: refs.requiredIndicator,
11120
+ [vars$D.errorMessageTextColor]: refs.errorMessageTextColor,
11121
+ [vars$D.inputValueTextColor]: refs.valueTextColor,
11122
+ [vars$D.inputPlaceholderColor]: refs.placeholderTextColor,
11123
+ [vars$D.inputBorderWidth]: refs.borderWidth,
11124
+ [vars$D.inputBorderStyle]: refs.borderStyle,
11125
+ [vars$D.inputBorderColor]: refs.borderColor,
11126
+ [vars$D.inputBorderRadius]: refs.borderRadius,
11127
+ [vars$D.inputOutlineWidth]: refs.outlineWidth,
11128
+ [vars$D.inputOutlineStyle]: refs.outlineStyle,
11129
+ [vars$D.inputOutlineColor]: refs.outlineColor,
11130
+ [vars$D.inputOutlineOffset]: refs.outlineOffset,
11131
+ [vars$D.inputBackgroundColor]: refs.backgroundColor,
11132
+ [vars$D.inputHeight]: refs.inputHeight,
11133
+ [vars$D.inputHorizontalPadding]: refs.horizontalPadding,
11134
+ [vars$D.helperTextColor]: refs.helperTextColor,
11135
+ textAlign: {
11136
+ right: { [vars$D.inputTextAlign]: 'right' },
11137
+ left: { [vars$D.inputTextAlign]: 'left' },
11138
+ center: { [vars$D.inputTextAlign]: 'center' },
11139
+ },
11140
+ };
11141
+
11142
+ var textField$1 = /*#__PURE__*/Object.freeze({
11143
+ __proto__: null,
11144
+ default: textField,
11145
+ textField: textField,
11146
+ vars: vars$D
11147
+ });
11148
+
11149
+ const globalRefs$m = getThemeRefs(globals);
11150
+ const vars$C = PasswordClass.cssVarList;
11151
+
11152
+ const password = {
11019
11153
  [vars$C.hostWidth]: refs.width,
11020
- [vars$C.hostMinWidth]: refs.minWidth,
11021
11154
  [vars$C.hostDirection]: refs.direction,
11022
11155
  [vars$C.fontSize]: refs.fontSize,
11023
11156
  [vars$C.fontFamily]: refs.fontFamily,
11024
11157
  [vars$C.labelTextColor]: refs.labelTextColor,
11025
- [vars$C.labelRequiredIndicator]: refs.requiredIndicator,
11026
11158
  [vars$C.errorMessageTextColor]: refs.errorMessageTextColor,
11159
+ [vars$C.inputHorizontalPadding]: refs.horizontalPadding,
11160
+ [vars$C.inputHeight]: refs.inputHeight,
11161
+ [vars$C.inputBackgroundColor]: refs.backgroundColor,
11162
+ [vars$C.labelRequiredIndicator]: refs.requiredIndicator,
11027
11163
  [vars$C.inputValueTextColor]: refs.valueTextColor,
11028
- [vars$C.inputPlaceholderColor]: refs.placeholderTextColor,
11164
+ [vars$C.inputPlaceholderTextColor]: refs.placeholderTextColor,
11029
11165
  [vars$C.inputBorderWidth]: refs.borderWidth,
11030
11166
  [vars$C.inputBorderStyle]: refs.borderStyle,
11031
11167
  [vars$C.inputBorderColor]: refs.borderColor,
@@ -11034,40 +11170,29 @@ const textField = {
11034
11170
  [vars$C.inputOutlineStyle]: refs.outlineStyle,
11035
11171
  [vars$C.inputOutlineColor]: refs.outlineColor,
11036
11172
  [vars$C.inputOutlineOffset]: refs.outlineOffset,
11037
- [vars$C.inputBackgroundColor]: refs.backgroundColor,
11038
- [vars$C.inputHeight]: refs.inputHeight,
11039
- [vars$C.inputHorizontalPadding]: refs.horizontalPadding,
11040
- [vars$C.helperTextColor]: refs.helperTextColor,
11041
- textAlign: {
11042
- right: { [vars$C.inputTextAlign]: 'right' },
11043
- left: { [vars$C.inputTextAlign]: 'left' },
11044
- center: { [vars$C.inputTextAlign]: 'center' },
11045
- },
11173
+ [vars$C.revealButtonOffset]: globalRefs$m.spacing.md,
11174
+ [vars$C.revealButtonSize]: refs.toggleButtonSize,
11175
+ [vars$C.revealButtonColor]: refs.placeholderTextColor,
11046
11176
  };
11047
11177
 
11048
- var textField$1 = /*#__PURE__*/Object.freeze({
11178
+ var password$1 = /*#__PURE__*/Object.freeze({
11049
11179
  __proto__: null,
11050
- default: textField,
11051
- textField: textField,
11180
+ default: password,
11052
11181
  vars: vars$C
11053
11182
  });
11054
11183
 
11055
- const globalRefs$m = getThemeRefs(globals);
11056
- const vars$B = PasswordClass.cssVarList;
11184
+ const vars$B = NumberFieldClass.cssVarList;
11057
11185
 
11058
- const password = {
11186
+ const numberField = {
11059
11187
  [vars$B.hostWidth]: refs.width,
11188
+ [vars$B.hostMinWidth]: refs.minWidth,
11060
11189
  [vars$B.hostDirection]: refs.direction,
11061
11190
  [vars$B.fontSize]: refs.fontSize,
11062
11191
  [vars$B.fontFamily]: refs.fontFamily,
11063
11192
  [vars$B.labelTextColor]: refs.labelTextColor,
11064
11193
  [vars$B.errorMessageTextColor]: refs.errorMessageTextColor,
11065
- [vars$B.inputHorizontalPadding]: refs.horizontalPadding,
11066
- [vars$B.inputHeight]: refs.inputHeight,
11067
- [vars$B.inputBackgroundColor]: refs.backgroundColor,
11068
- [vars$B.labelRequiredIndicator]: refs.requiredIndicator,
11069
11194
  [vars$B.inputValueTextColor]: refs.valueTextColor,
11070
- [vars$B.inputPlaceholderTextColor]: refs.placeholderTextColor,
11195
+ [vars$B.inputPlaceholderColor]: refs.placeholderTextColor,
11071
11196
  [vars$B.inputBorderWidth]: refs.borderWidth,
11072
11197
  [vars$B.inputBorderStyle]: refs.borderStyle,
11073
11198
  [vars$B.inputBorderColor]: refs.borderColor,
@@ -11076,20 +11201,21 @@ const password = {
11076
11201
  [vars$B.inputOutlineStyle]: refs.outlineStyle,
11077
11202
  [vars$B.inputOutlineColor]: refs.outlineColor,
11078
11203
  [vars$B.inputOutlineOffset]: refs.outlineOffset,
11079
- [vars$B.revealButtonOffset]: globalRefs$m.spacing.md,
11080
- [vars$B.revealButtonSize]: refs.toggleButtonSize,
11081
- [vars$B.revealButtonColor]: refs.placeholderTextColor,
11204
+ [vars$B.inputBackgroundColor]: refs.backgroundColor,
11205
+ [vars$B.labelRequiredIndicator]: refs.requiredIndicator,
11206
+ [vars$B.inputHorizontalPadding]: refs.horizontalPadding,
11207
+ [vars$B.inputHeight]: refs.inputHeight,
11082
11208
  };
11083
11209
 
11084
- var password$1 = /*#__PURE__*/Object.freeze({
11210
+ var numberField$1 = /*#__PURE__*/Object.freeze({
11085
11211
  __proto__: null,
11086
- default: password,
11212
+ default: numberField,
11087
11213
  vars: vars$B
11088
11214
  });
11089
11215
 
11090
- const vars$A = NumberFieldClass.cssVarList;
11216
+ const vars$A = EmailFieldClass.cssVarList;
11091
11217
 
11092
- const numberField = {
11218
+ const emailField = {
11093
11219
  [vars$A.hostWidth]: refs.width,
11094
11220
  [vars$A.hostMinWidth]: refs.minWidth,
11095
11221
  [vars$A.hostDirection]: refs.direction,
@@ -11098,6 +11224,7 @@ const numberField = {
11098
11224
  [vars$A.labelTextColor]: refs.labelTextColor,
11099
11225
  [vars$A.errorMessageTextColor]: refs.errorMessageTextColor,
11100
11226
  [vars$A.inputValueTextColor]: refs.valueTextColor,
11227
+ [vars$A.labelRequiredIndicator]: refs.requiredIndicator,
11101
11228
  [vars$A.inputPlaceholderColor]: refs.placeholderTextColor,
11102
11229
  [vars$A.inputBorderWidth]: refs.borderWidth,
11103
11230
  [vars$A.inputBorderStyle]: refs.borderStyle,
@@ -11108,197 +11235,164 @@ const numberField = {
11108
11235
  [vars$A.inputOutlineColor]: refs.outlineColor,
11109
11236
  [vars$A.inputOutlineOffset]: refs.outlineOffset,
11110
11237
  [vars$A.inputBackgroundColor]: refs.backgroundColor,
11111
- [vars$A.labelRequiredIndicator]: refs.requiredIndicator,
11112
11238
  [vars$A.inputHorizontalPadding]: refs.horizontalPadding,
11113
11239
  [vars$A.inputHeight]: refs.inputHeight,
11114
11240
  };
11115
11241
 
11116
- var numberField$1 = /*#__PURE__*/Object.freeze({
11242
+ var emailField$1 = /*#__PURE__*/Object.freeze({
11117
11243
  __proto__: null,
11118
- default: numberField,
11244
+ default: emailField,
11119
11245
  vars: vars$A
11120
11246
  });
11121
11247
 
11122
- const vars$z = EmailFieldClass.cssVarList;
11248
+ const vars$z = TextAreaClass.cssVarList;
11123
11249
 
11124
- const emailField = {
11250
+ const textArea = {
11125
11251
  [vars$z.hostWidth]: refs.width,
11126
11252
  [vars$z.hostMinWidth]: refs.minWidth,
11127
11253
  [vars$z.hostDirection]: refs.direction,
11128
11254
  [vars$z.fontSize]: refs.fontSize,
11129
11255
  [vars$z.fontFamily]: refs.fontFamily,
11130
11256
  [vars$z.labelTextColor]: refs.labelTextColor,
11257
+ [vars$z.labelRequiredIndicator]: refs.requiredIndicator,
11131
11258
  [vars$z.errorMessageTextColor]: refs.errorMessageTextColor,
11259
+ [vars$z.inputBackgroundColor]: refs.backgroundColor,
11132
11260
  [vars$z.inputValueTextColor]: refs.valueTextColor,
11133
- [vars$z.labelRequiredIndicator]: refs.requiredIndicator,
11134
- [vars$z.inputPlaceholderColor]: refs.placeholderTextColor,
11261
+ [vars$z.inputPlaceholderTextColor]: refs.placeholderTextColor,
11262
+ [vars$z.inputBorderRadius]: refs.borderRadius,
11135
11263
  [vars$z.inputBorderWidth]: refs.borderWidth,
11136
11264
  [vars$z.inputBorderStyle]: refs.borderStyle,
11137
11265
  [vars$z.inputBorderColor]: refs.borderColor,
11138
- [vars$z.inputBorderRadius]: refs.borderRadius,
11139
11266
  [vars$z.inputOutlineWidth]: refs.outlineWidth,
11140
11267
  [vars$z.inputOutlineStyle]: refs.outlineStyle,
11141
11268
  [vars$z.inputOutlineColor]: refs.outlineColor,
11142
11269
  [vars$z.inputOutlineOffset]: refs.outlineOffset,
11143
- [vars$z.inputBackgroundColor]: refs.backgroundColor,
11144
- [vars$z.inputHorizontalPadding]: refs.horizontalPadding,
11145
- [vars$z.inputHeight]: refs.inputHeight,
11270
+ [vars$z.inputResizeType]: 'vertical',
11271
+ [vars$z.inputMinHeight]: '5em',
11272
+ textAlign: {
11273
+ right: { [vars$z.inputTextAlign]: 'right' },
11274
+ left: { [vars$z.inputTextAlign]: 'left' },
11275
+ center: { [vars$z.inputTextAlign]: 'center' },
11276
+ },
11277
+
11278
+ _readonly: {
11279
+ [vars$z.inputResizeType]: 'none',
11280
+ },
11146
11281
  };
11147
11282
 
11148
- var emailField$1 = /*#__PURE__*/Object.freeze({
11283
+ var textArea$1 = /*#__PURE__*/Object.freeze({
11149
11284
  __proto__: null,
11150
- default: emailField,
11285
+ default: textArea,
11151
11286
  vars: vars$z
11152
11287
  });
11153
11288
 
11154
- const vars$y = TextAreaClass.cssVarList;
11289
+ const vars$y = CheckboxClass.cssVarList;
11290
+ const checkboxSize = '1.35em';
11155
11291
 
11156
- const textArea = {
11292
+ const checkbox = {
11157
11293
  [vars$y.hostWidth]: refs.width,
11158
- [vars$y.hostMinWidth]: refs.minWidth,
11159
11294
  [vars$y.hostDirection]: refs.direction,
11160
11295
  [vars$y.fontSize]: refs.fontSize,
11161
11296
  [vars$y.fontFamily]: refs.fontFamily,
11162
11297
  [vars$y.labelTextColor]: refs.labelTextColor,
11163
11298
  [vars$y.labelRequiredIndicator]: refs.requiredIndicator,
11299
+ [vars$y.labelFontWeight]: '400',
11300
+ [vars$y.labelLineHeight]: checkboxSize,
11301
+ [vars$y.labelSpacing]: '1em',
11164
11302
  [vars$y.errorMessageTextColor]: refs.errorMessageTextColor,
11165
- [vars$y.inputBackgroundColor]: refs.backgroundColor,
11166
- [vars$y.inputValueTextColor]: refs.valueTextColor,
11167
- [vars$y.inputPlaceholderTextColor]: refs.placeholderTextColor,
11303
+ [vars$y.inputOutlineWidth]: refs.outlineWidth,
11304
+ [vars$y.inputOutlineOffset]: refs.outlineOffset,
11305
+ [vars$y.inputOutlineColor]: refs.outlineColor,
11306
+ [vars$y.inputOutlineStyle]: refs.outlineStyle,
11168
11307
  [vars$y.inputBorderRadius]: refs.borderRadius,
11308
+ [vars$y.inputBorderColor]: refs.borderColor,
11169
11309
  [vars$y.inputBorderWidth]: refs.borderWidth,
11170
11310
  [vars$y.inputBorderStyle]: refs.borderStyle,
11171
- [vars$y.inputBorderColor]: refs.borderColor,
11172
- [vars$y.inputOutlineWidth]: refs.outlineWidth,
11173
- [vars$y.inputOutlineStyle]: refs.outlineStyle,
11174
- [vars$y.inputOutlineColor]: refs.outlineColor,
11175
- [vars$y.inputOutlineOffset]: refs.outlineOffset,
11176
- [vars$y.inputResizeType]: 'vertical',
11177
- [vars$y.inputMinHeight]: '5em',
11178
- textAlign: {
11179
- right: { [vars$y.inputTextAlign]: 'right' },
11180
- left: { [vars$y.inputTextAlign]: 'left' },
11181
- center: { [vars$y.inputTextAlign]: 'center' },
11311
+ [vars$y.inputBackgroundColor]: refs.backgroundColor,
11312
+ [vars$y.inputSize]: checkboxSize,
11313
+
11314
+ _checked: {
11315
+ [vars$y.inputValueTextColor]: refs.valueTextColor,
11182
11316
  },
11183
11317
 
11184
- _readonly: {
11185
- [vars$y.inputResizeType]: 'none',
11318
+ _disabled: {
11319
+ [vars$y.labelTextColor]: refs.labelTextColor,
11186
11320
  },
11187
11321
  };
11188
11322
 
11189
- var textArea$1 = /*#__PURE__*/Object.freeze({
11323
+ var checkbox$1 = /*#__PURE__*/Object.freeze({
11190
11324
  __proto__: null,
11191
- default: textArea,
11325
+ default: checkbox,
11192
11326
  vars: vars$y
11193
11327
  });
11194
11328
 
11195
- const vars$x = CheckboxClass.cssVarList;
11196
- const checkboxSize = '1.35em';
11329
+ const knobMargin = '2px';
11330
+ const checkboxHeight = '1.25em';
11197
11331
 
11198
- const checkbox = {
11332
+ const globalRefs$l = getThemeRefs(globals);
11333
+ const vars$x = SwitchToggleClass.cssVarList;
11334
+
11335
+ const switchToggle = {
11199
11336
  [vars$x.hostWidth]: refs.width,
11200
11337
  [vars$x.hostDirection]: refs.direction,
11201
11338
  [vars$x.fontSize]: refs.fontSize,
11202
11339
  [vars$x.fontFamily]: refs.fontFamily,
11203
- [vars$x.labelTextColor]: refs.labelTextColor,
11204
- [vars$x.labelRequiredIndicator]: refs.requiredIndicator,
11205
- [vars$x.labelFontWeight]: '400',
11206
- [vars$x.labelLineHeight]: checkboxSize,
11207
- [vars$x.labelSpacing]: '1em',
11208
- [vars$x.errorMessageTextColor]: refs.errorMessageTextColor,
11340
+
11209
11341
  [vars$x.inputOutlineWidth]: refs.outlineWidth,
11210
11342
  [vars$x.inputOutlineOffset]: refs.outlineOffset,
11211
11343
  [vars$x.inputOutlineColor]: refs.outlineColor,
11212
11344
  [vars$x.inputOutlineStyle]: refs.outlineStyle,
11213
- [vars$x.inputBorderRadius]: refs.borderRadius,
11214
- [vars$x.inputBorderColor]: refs.borderColor,
11215
- [vars$x.inputBorderWidth]: refs.borderWidth,
11216
- [vars$x.inputBorderStyle]: refs.borderStyle,
11217
- [vars$x.inputBackgroundColor]: refs.backgroundColor,
11218
- [vars$x.inputSize]: checkboxSize,
11219
-
11220
- _checked: {
11221
- [vars$x.inputValueTextColor]: refs.valueTextColor,
11222
- },
11223
-
11224
- _disabled: {
11225
- [vars$x.labelTextColor]: refs.labelTextColor,
11226
- },
11227
- };
11228
11345
 
11229
- var checkbox$1 = /*#__PURE__*/Object.freeze({
11230
- __proto__: null,
11231
- default: checkbox,
11232
- vars: vars$x
11233
- });
11234
-
11235
- const knobMargin = '2px';
11236
- const checkboxHeight = '1.25em';
11237
-
11238
- const globalRefs$l = getThemeRefs(globals);
11239
- const vars$w = SwitchToggleClass.cssVarList;
11346
+ [vars$x.trackBorderStyle]: refs.borderStyle,
11347
+ [vars$x.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
11348
+ [vars$x.trackBorderColor]: refs.borderColor,
11349
+ [vars$x.trackBackgroundColor]: refs.backgroundColor,
11350
+ [vars$x.trackBorderRadius]: globalRefs$l.radius.md,
11351
+ [vars$x.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
11352
+ [vars$x.trackHeight]: checkboxHeight,
11353
+
11354
+ [vars$x.knobSize]: `calc(1em - ${knobMargin})`,
11355
+ [vars$x.knobRadius]: '50%',
11356
+ [vars$x.knobTopOffset]: '1px',
11357
+ [vars$x.knobLeftOffset]: knobMargin,
11358
+ [vars$x.knobColor]: refs.labelTextColor,
11359
+ [vars$x.knobTransitionDuration]: '0.3s',
11240
11360
 
11241
- const switchToggle = {
11242
- [vars$w.hostWidth]: refs.width,
11243
- [vars$w.hostDirection]: refs.direction,
11244
- [vars$w.fontSize]: refs.fontSize,
11245
- [vars$w.fontFamily]: refs.fontFamily,
11246
-
11247
- [vars$w.inputOutlineWidth]: refs.outlineWidth,
11248
- [vars$w.inputOutlineOffset]: refs.outlineOffset,
11249
- [vars$w.inputOutlineColor]: refs.outlineColor,
11250
- [vars$w.inputOutlineStyle]: refs.outlineStyle,
11251
-
11252
- [vars$w.trackBorderStyle]: refs.borderStyle,
11253
- [vars$w.trackBorderWidth]: refs.borderWidth, // var `trackBorderWidth` used outside the theme for `left` margin calculation
11254
- [vars$w.trackBorderColor]: refs.borderColor,
11255
- [vars$w.trackBackgroundColor]: refs.backgroundColor,
11256
- [vars$w.trackBorderRadius]: globalRefs$l.radius.md,
11257
- [vars$w.trackWidth]: '2.5em', // var `trackWidth` used outside the theme for `left` margin calculation
11258
- [vars$w.trackHeight]: checkboxHeight,
11259
-
11260
- [vars$w.knobSize]: `calc(1em - ${knobMargin})`,
11261
- [vars$w.knobRadius]: '50%',
11262
- [vars$w.knobTopOffset]: '1px',
11263
- [vars$w.knobLeftOffset]: knobMargin,
11264
- [vars$w.knobColor]: refs.labelTextColor,
11265
- [vars$w.knobTransitionDuration]: '0.3s',
11266
-
11267
- [vars$w.labelTextColor]: refs.labelTextColor,
11268
- [vars$w.labelFontWeight]: '400',
11269
- [vars$w.labelLineHeight]: '1.35em',
11270
- [vars$w.labelSpacing]: '1em',
11271
- [vars$w.labelRequiredIndicator]: refs.requiredIndicator,
11272
- [vars$w.errorMessageTextColor]: refs.errorMessageTextColor,
11361
+ [vars$x.labelTextColor]: refs.labelTextColor,
11362
+ [vars$x.labelFontWeight]: '400',
11363
+ [vars$x.labelLineHeight]: '1.35em',
11364
+ [vars$x.labelSpacing]: '1em',
11365
+ [vars$x.labelRequiredIndicator]: refs.requiredIndicator,
11366
+ [vars$x.errorMessageTextColor]: refs.errorMessageTextColor,
11273
11367
 
11274
11368
  _checked: {
11275
- [vars$w.trackBorderColor]: refs.borderColor,
11276
- [vars$w.knobLeftOffset]: `calc(100% - var(${vars$w.knobSize}) - ${knobMargin})`,
11277
- [vars$w.knobColor]: refs.valueTextColor,
11278
- [vars$w.knobTextColor]: refs.valueTextColor,
11369
+ [vars$x.trackBorderColor]: refs.borderColor,
11370
+ [vars$x.knobLeftOffset]: `calc(100% - var(${vars$x.knobSize}) - ${knobMargin})`,
11371
+ [vars$x.knobColor]: refs.valueTextColor,
11372
+ [vars$x.knobTextColor]: refs.valueTextColor,
11279
11373
  },
11280
11374
 
11281
11375
  _disabled: {
11282
- [vars$w.knobColor]: globalRefs$l.colors.surface.light,
11283
- [vars$w.trackBorderColor]: globalRefs$l.colors.surface.light,
11284
- [vars$w.trackBackgroundColor]: globalRefs$l.colors.surface.main,
11285
- [vars$w.labelTextColor]: refs.labelTextColor,
11376
+ [vars$x.knobColor]: globalRefs$l.colors.surface.light,
11377
+ [vars$x.trackBorderColor]: globalRefs$l.colors.surface.light,
11378
+ [vars$x.trackBackgroundColor]: globalRefs$l.colors.surface.main,
11379
+ [vars$x.labelTextColor]: refs.labelTextColor,
11286
11380
  _checked: {
11287
- [vars$w.knobColor]: globalRefs$l.colors.surface.light,
11288
- [vars$w.trackBackgroundColor]: globalRefs$l.colors.surface.main,
11381
+ [vars$x.knobColor]: globalRefs$l.colors.surface.light,
11382
+ [vars$x.trackBackgroundColor]: globalRefs$l.colors.surface.main,
11289
11383
  },
11290
11384
  },
11291
11385
 
11292
11386
  _invalid: {
11293
- [vars$w.trackBorderColor]: globalRefs$l.colors.error.main,
11294
- [vars$w.knobColor]: globalRefs$l.colors.error.main,
11387
+ [vars$x.trackBorderColor]: globalRefs$l.colors.error.main,
11388
+ [vars$x.knobColor]: globalRefs$l.colors.error.main,
11295
11389
  },
11296
11390
  };
11297
11391
 
11298
11392
  var switchToggle$1 = /*#__PURE__*/Object.freeze({
11299
11393
  __proto__: null,
11300
11394
  default: switchToggle,
11301
- vars: vars$w
11395
+ vars: vars$x
11302
11396
  });
11303
11397
 
11304
11398
  const globalRefs$k = getThemeRefs(globals);
@@ -11409,7 +11503,7 @@ const container = {
11409
11503
  },
11410
11504
  };
11411
11505
 
11412
- const vars$v = {
11506
+ const vars$w = {
11413
11507
  ...compVars$4,
11414
11508
  ...helperVars$2,
11415
11509
  };
@@ -11417,252 +11511,252 @@ const vars$v = {
11417
11511
  var container$1 = /*#__PURE__*/Object.freeze({
11418
11512
  __proto__: null,
11419
11513
  default: container,
11420
- vars: vars$v
11514
+ vars: vars$w
11421
11515
  });
11422
11516
 
11423
- const vars$u = LogoClass.cssVarList;
11517
+ const vars$v = LogoClass.cssVarList;
11424
11518
 
11425
11519
  const logo$2 = {
11426
- [vars$u.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
11520
+ [vars$v.fallbackUrl]: 'url(https://imgs.descope.com/components/no-logo-placeholder.svg)',
11427
11521
  };
11428
11522
 
11429
11523
  var logo$3 = /*#__PURE__*/Object.freeze({
11430
11524
  __proto__: null,
11431
11525
  default: logo$2,
11432
- vars: vars$u
11526
+ vars: vars$v
11433
11527
  });
11434
11528
 
11435
- const vars$t = TotpImageClass.cssVarList;
11529
+ const vars$u = TotpImageClass.cssVarList;
11436
11530
 
11437
11531
  const logo$1 = {
11438
- [vars$t.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
11532
+ [vars$u.fallbackUrl]: 'url(https://imgs.descope.com/components/totp-placeholder.svg)',
11439
11533
  };
11440
11534
 
11441
11535
  var totpImage = /*#__PURE__*/Object.freeze({
11442
11536
  __proto__: null,
11443
11537
  default: logo$1,
11444
- vars: vars$t
11538
+ vars: vars$u
11445
11539
  });
11446
11540
 
11447
- const vars$s = NotpImageClass.cssVarList;
11541
+ const vars$t = NotpImageClass.cssVarList;
11448
11542
 
11449
11543
  const logo = {
11450
- [vars$s.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
11544
+ [vars$t.fallbackUrl]: 'url(https://imgs.descope.com/components/notp-placeholder.svg)',
11451
11545
  };
11452
11546
 
11453
11547
  var notpImage = /*#__PURE__*/Object.freeze({
11454
11548
  __proto__: null,
11455
11549
  default: logo,
11456
- vars: vars$s
11550
+ vars: vars$t
11457
11551
  });
11458
11552
 
11459
11553
  const globalRefs$j = getThemeRefs(globals);
11460
- const vars$r = TextClass.cssVarList;
11554
+ const vars$s = TextClass.cssVarList;
11461
11555
 
11462
11556
  const text = {
11463
- [vars$r.hostDirection]: globalRefs$j.direction,
11464
- [vars$r.textLineHeight]: '1.35em',
11465
- [vars$r.textAlign]: 'left',
11466
- [vars$r.textColor]: globalRefs$j.colors.surface.dark,
11557
+ [vars$s.hostDirection]: globalRefs$j.direction,
11558
+ [vars$s.textLineHeight]: '1.35em',
11559
+ [vars$s.textAlign]: 'left',
11560
+ [vars$s.textColor]: globalRefs$j.colors.surface.dark,
11467
11561
  variant: {
11468
11562
  h1: {
11469
- [vars$r.fontSize]: globalRefs$j.typography.h1.size,
11470
- [vars$r.fontWeight]: globalRefs$j.typography.h1.weight,
11471
- [vars$r.fontFamily]: globalRefs$j.typography.h1.font,
11563
+ [vars$s.fontSize]: globalRefs$j.typography.h1.size,
11564
+ [vars$s.fontWeight]: globalRefs$j.typography.h1.weight,
11565
+ [vars$s.fontFamily]: globalRefs$j.typography.h1.font,
11472
11566
  },
11473
11567
  h2: {
11474
- [vars$r.fontSize]: globalRefs$j.typography.h2.size,
11475
- [vars$r.fontWeight]: globalRefs$j.typography.h2.weight,
11476
- [vars$r.fontFamily]: globalRefs$j.typography.h2.font,
11568
+ [vars$s.fontSize]: globalRefs$j.typography.h2.size,
11569
+ [vars$s.fontWeight]: globalRefs$j.typography.h2.weight,
11570
+ [vars$s.fontFamily]: globalRefs$j.typography.h2.font,
11477
11571
  },
11478
11572
  h3: {
11479
- [vars$r.fontSize]: globalRefs$j.typography.h3.size,
11480
- [vars$r.fontWeight]: globalRefs$j.typography.h3.weight,
11481
- [vars$r.fontFamily]: globalRefs$j.typography.h3.font,
11573
+ [vars$s.fontSize]: globalRefs$j.typography.h3.size,
11574
+ [vars$s.fontWeight]: globalRefs$j.typography.h3.weight,
11575
+ [vars$s.fontFamily]: globalRefs$j.typography.h3.font,
11482
11576
  },
11483
11577
  subtitle1: {
11484
- [vars$r.fontSize]: globalRefs$j.typography.subtitle1.size,
11485
- [vars$r.fontWeight]: globalRefs$j.typography.subtitle1.weight,
11486
- [vars$r.fontFamily]: globalRefs$j.typography.subtitle1.font,
11578
+ [vars$s.fontSize]: globalRefs$j.typography.subtitle1.size,
11579
+ [vars$s.fontWeight]: globalRefs$j.typography.subtitle1.weight,
11580
+ [vars$s.fontFamily]: globalRefs$j.typography.subtitle1.font,
11487
11581
  },
11488
11582
  subtitle2: {
11489
- [vars$r.fontSize]: globalRefs$j.typography.subtitle2.size,
11490
- [vars$r.fontWeight]: globalRefs$j.typography.subtitle2.weight,
11491
- [vars$r.fontFamily]: globalRefs$j.typography.subtitle2.font,
11583
+ [vars$s.fontSize]: globalRefs$j.typography.subtitle2.size,
11584
+ [vars$s.fontWeight]: globalRefs$j.typography.subtitle2.weight,
11585
+ [vars$s.fontFamily]: globalRefs$j.typography.subtitle2.font,
11492
11586
  },
11493
11587
  body1: {
11494
- [vars$r.fontSize]: globalRefs$j.typography.body1.size,
11495
- [vars$r.fontWeight]: globalRefs$j.typography.body1.weight,
11496
- [vars$r.fontFamily]: globalRefs$j.typography.body1.font,
11588
+ [vars$s.fontSize]: globalRefs$j.typography.body1.size,
11589
+ [vars$s.fontWeight]: globalRefs$j.typography.body1.weight,
11590
+ [vars$s.fontFamily]: globalRefs$j.typography.body1.font,
11497
11591
  },
11498
11592
  body2: {
11499
- [vars$r.fontSize]: globalRefs$j.typography.body2.size,
11500
- [vars$r.fontWeight]: globalRefs$j.typography.body2.weight,
11501
- [vars$r.fontFamily]: globalRefs$j.typography.body2.font,
11593
+ [vars$s.fontSize]: globalRefs$j.typography.body2.size,
11594
+ [vars$s.fontWeight]: globalRefs$j.typography.body2.weight,
11595
+ [vars$s.fontFamily]: globalRefs$j.typography.body2.font,
11502
11596
  },
11503
11597
  },
11504
11598
 
11505
11599
  mode: {
11506
11600
  primary: {
11507
- [vars$r.textColor]: globalRefs$j.colors.surface.contrast,
11601
+ [vars$s.textColor]: globalRefs$j.colors.surface.contrast,
11508
11602
  },
11509
11603
  secondary: {
11510
- [vars$r.textColor]: globalRefs$j.colors.surface.dark,
11604
+ [vars$s.textColor]: globalRefs$j.colors.surface.dark,
11511
11605
  },
11512
11606
  error: {
11513
- [vars$r.textColor]: globalRefs$j.colors.error.main,
11607
+ [vars$s.textColor]: globalRefs$j.colors.error.main,
11514
11608
  },
11515
11609
  success: {
11516
- [vars$r.textColor]: globalRefs$j.colors.success.main,
11610
+ [vars$s.textColor]: globalRefs$j.colors.success.main,
11517
11611
  },
11518
11612
  },
11519
11613
 
11520
11614
  textAlign: {
11521
- right: { [vars$r.textAlign]: 'right' },
11522
- left: { [vars$r.textAlign]: 'left' },
11523
- center: { [vars$r.textAlign]: 'center' },
11615
+ right: { [vars$s.textAlign]: 'right' },
11616
+ left: { [vars$s.textAlign]: 'left' },
11617
+ center: { [vars$s.textAlign]: 'center' },
11524
11618
  },
11525
11619
 
11526
11620
  _fullWidth: {
11527
- [vars$r.hostWidth]: '100%',
11621
+ [vars$s.hostWidth]: '100%',
11528
11622
  },
11529
11623
 
11530
11624
  _italic: {
11531
- [vars$r.fontStyle]: 'italic',
11625
+ [vars$s.fontStyle]: 'italic',
11532
11626
  },
11533
11627
 
11534
11628
  _uppercase: {
11535
- [vars$r.textTransform]: 'uppercase',
11629
+ [vars$s.textTransform]: 'uppercase',
11536
11630
  },
11537
11631
 
11538
11632
  _lowercase: {
11539
- [vars$r.textTransform]: 'lowercase',
11633
+ [vars$s.textTransform]: 'lowercase',
11540
11634
  },
11541
11635
  };
11542
11636
 
11543
11637
  var text$1 = /*#__PURE__*/Object.freeze({
11544
11638
  __proto__: null,
11545
11639
  default: text,
11546
- vars: vars$r
11640
+ vars: vars$s
11547
11641
  });
11548
11642
 
11549
11643
  const globalRefs$i = getThemeRefs(globals);
11550
- const vars$q = EnrichedTextClass.cssVarList;
11644
+ const vars$r = EnrichedTextClass.cssVarList;
11551
11645
 
11552
11646
  const EnrichedText = {
11553
- [vars$q.hostDirection]: globalRefs$i.direction,
11647
+ [vars$r.hostDirection]: globalRefs$i.direction,
11554
11648
 
11555
- [vars$q.fontSize]: globalRefs$i.typography.body1.size,
11556
- [vars$q.fontWeight]: globalRefs$i.typography.body1.weight,
11557
- [vars$q.fontFamily]: globalRefs$i.typography.body1.font,
11649
+ [vars$r.fontSize]: globalRefs$i.typography.body1.size,
11650
+ [vars$r.fontWeight]: globalRefs$i.typography.body1.weight,
11651
+ [vars$r.fontFamily]: globalRefs$i.typography.body1.font,
11558
11652
 
11559
- [vars$q.textLineHeight]: '1.35em',
11560
- [vars$q.textAlign]: 'left',
11561
- [vars$q.textColor]: globalRefs$i.colors.surface.dark,
11653
+ [vars$r.textLineHeight]: '1.35em',
11654
+ [vars$r.textAlign]: 'left',
11655
+ [vars$r.textColor]: globalRefs$i.colors.surface.dark,
11562
11656
 
11563
- [vars$q.linkColor]: `var(${LinkClass.cssVarList.textColor})`,
11657
+ [vars$r.linkColor]: `var(${LinkClass.cssVarList.textColor})`,
11564
11658
 
11565
11659
  mode: {
11566
11660
  primary: {
11567
- [vars$q.textColor]: globalRefs$i.colors.surface.contrast,
11661
+ [vars$r.textColor]: globalRefs$i.colors.surface.contrast,
11568
11662
  },
11569
11663
  secondary: {
11570
- [vars$q.textColor]: globalRefs$i.colors.surface.dark,
11664
+ [vars$r.textColor]: globalRefs$i.colors.surface.dark,
11571
11665
  },
11572
11666
  error: {
11573
- [vars$q.textColor]: globalRefs$i.colors.error.main,
11667
+ [vars$r.textColor]: globalRefs$i.colors.error.main,
11574
11668
  },
11575
11669
  success: {
11576
- [vars$q.textColor]: globalRefs$i.colors.success.main,
11670
+ [vars$r.textColor]: globalRefs$i.colors.success.main,
11577
11671
  },
11578
11672
  },
11579
11673
 
11580
11674
  variant: {
11581
11675
  h1: {
11582
- [vars$q.fontSize]: globalRefs$i.typography.h1.size,
11583
- [vars$q.fontWeight]: globalRefs$i.typography.h1.weight,
11584
- [vars$q.fontFamily]: globalRefs$i.typography.h1.font,
11676
+ [vars$r.fontSize]: globalRefs$i.typography.h1.size,
11677
+ [vars$r.fontWeight]: globalRefs$i.typography.h1.weight,
11678
+ [vars$r.fontFamily]: globalRefs$i.typography.h1.font,
11585
11679
  },
11586
11680
  h2: {
11587
- [vars$q.fontSize]: globalRefs$i.typography.h2.size,
11588
- [vars$q.fontWeight]: globalRefs$i.typography.h2.weight,
11589
- [vars$q.fontFamily]: globalRefs$i.typography.h2.font,
11681
+ [vars$r.fontSize]: globalRefs$i.typography.h2.size,
11682
+ [vars$r.fontWeight]: globalRefs$i.typography.h2.weight,
11683
+ [vars$r.fontFamily]: globalRefs$i.typography.h2.font,
11590
11684
  },
11591
11685
  h3: {
11592
- [vars$q.fontSize]: globalRefs$i.typography.h3.size,
11593
- [vars$q.fontWeight]: globalRefs$i.typography.h3.weight,
11594
- [vars$q.fontFamily]: globalRefs$i.typography.h3.font,
11686
+ [vars$r.fontSize]: globalRefs$i.typography.h3.size,
11687
+ [vars$r.fontWeight]: globalRefs$i.typography.h3.weight,
11688
+ [vars$r.fontFamily]: globalRefs$i.typography.h3.font,
11595
11689
  },
11596
11690
  subtitle1: {
11597
- [vars$q.fontSize]: globalRefs$i.typography.subtitle1.size,
11598
- [vars$q.fontWeight]: globalRefs$i.typography.subtitle1.weight,
11599
- [vars$q.fontFamily]: globalRefs$i.typography.subtitle1.font,
11691
+ [vars$r.fontSize]: globalRefs$i.typography.subtitle1.size,
11692
+ [vars$r.fontWeight]: globalRefs$i.typography.subtitle1.weight,
11693
+ [vars$r.fontFamily]: globalRefs$i.typography.subtitle1.font,
11600
11694
  },
11601
11695
  subtitle2: {
11602
- [vars$q.fontSize]: globalRefs$i.typography.subtitle2.size,
11603
- [vars$q.fontWeight]: globalRefs$i.typography.subtitle2.weight,
11604
- [vars$q.fontFamily]: globalRefs$i.typography.subtitle2.font,
11696
+ [vars$r.fontSize]: globalRefs$i.typography.subtitle2.size,
11697
+ [vars$r.fontWeight]: globalRefs$i.typography.subtitle2.weight,
11698
+ [vars$r.fontFamily]: globalRefs$i.typography.subtitle2.font,
11605
11699
  },
11606
11700
  body1: {
11607
- [vars$q.fontSize]: globalRefs$i.typography.body1.size,
11608
- [vars$q.fontWeight]: globalRefs$i.typography.body1.weight,
11609
- [vars$q.fontFamily]: globalRefs$i.typography.body1.font,
11701
+ [vars$r.fontSize]: globalRefs$i.typography.body1.size,
11702
+ [vars$r.fontWeight]: globalRefs$i.typography.body1.weight,
11703
+ [vars$r.fontFamily]: globalRefs$i.typography.body1.font,
11610
11704
  },
11611
11705
  body2: {
11612
- [vars$q.fontSize]: globalRefs$i.typography.body2.size,
11613
- [vars$q.fontWeight]: globalRefs$i.typography.body2.weight,
11614
- [vars$q.fontFamily]: globalRefs$i.typography.body2.font,
11706
+ [vars$r.fontSize]: globalRefs$i.typography.body2.size,
11707
+ [vars$r.fontWeight]: globalRefs$i.typography.body2.weight,
11708
+ [vars$r.fontFamily]: globalRefs$i.typography.body2.font,
11615
11709
  },
11616
11710
  },
11617
11711
 
11618
11712
  textAlign: {
11619
- right: { [vars$q.textAlign]: 'right' },
11620
- left: { [vars$q.textAlign]: 'left' },
11621
- center: { [vars$q.textAlign]: 'center' },
11713
+ right: { [vars$r.textAlign]: 'right' },
11714
+ left: { [vars$r.textAlign]: 'left' },
11715
+ center: { [vars$r.textAlign]: 'center' },
11622
11716
  },
11623
11717
 
11624
11718
  _fullWidth: {
11625
- [vars$q.hostWidth]: '100%',
11719
+ [vars$r.hostWidth]: '100%',
11626
11720
  },
11627
11721
  };
11628
11722
 
11629
11723
  var EnrichedText$1 = /*#__PURE__*/Object.freeze({
11630
11724
  __proto__: null,
11631
11725
  default: EnrichedText,
11632
- vars: vars$q
11726
+ vars: vars$r
11633
11727
  });
11634
11728
 
11635
11729
  const globalRefs$h = getThemeRefs(globals);
11636
- const vars$p = LinkClass.cssVarList;
11730
+ const vars$q = LinkClass.cssVarList;
11637
11731
 
11638
11732
  const link = {
11639
- [vars$p.hostDirection]: globalRefs$h.direction,
11640
- [vars$p.cursor]: 'pointer',
11733
+ [vars$q.hostDirection]: globalRefs$h.direction,
11734
+ [vars$q.cursor]: 'pointer',
11641
11735
 
11642
- [vars$p.textColor]: globalRefs$h.colors.primary.main,
11736
+ [vars$q.textColor]: globalRefs$h.colors.primary.main,
11643
11737
 
11644
11738
  textAlign: {
11645
- right: { [vars$p.textAlign]: 'right' },
11646
- left: { [vars$p.textAlign]: 'left' },
11647
- center: { [vars$p.textAlign]: 'center' },
11739
+ right: { [vars$q.textAlign]: 'right' },
11740
+ left: { [vars$q.textAlign]: 'left' },
11741
+ center: { [vars$q.textAlign]: 'center' },
11648
11742
  },
11649
11743
 
11650
11744
  _fullWidth: {
11651
- [vars$p.hostWidth]: '100%',
11745
+ [vars$q.hostWidth]: '100%',
11652
11746
  },
11653
11747
 
11654
11748
  mode: {
11655
11749
  primary: {
11656
- [vars$p.textColor]: globalRefs$h.colors.primary.main,
11750
+ [vars$q.textColor]: globalRefs$h.colors.primary.main,
11657
11751
  },
11658
11752
  secondary: {
11659
- [vars$p.textColor]: globalRefs$h.colors.secondary.main,
11753
+ [vars$q.textColor]: globalRefs$h.colors.secondary.main,
11660
11754
  },
11661
11755
  error: {
11662
- [vars$p.textColor]: globalRefs$h.colors.error.main,
11756
+ [vars$q.textColor]: globalRefs$h.colors.error.main,
11663
11757
  },
11664
11758
  success: {
11665
- [vars$p.textColor]: globalRefs$h.colors.success.main,
11759
+ [vars$q.textColor]: globalRefs$h.colors.success.main,
11666
11760
  },
11667
11761
  },
11668
11762
  };
@@ -11670,7 +11764,7 @@ const link = {
11670
11764
  var link$1 = /*#__PURE__*/Object.freeze({
11671
11765
  __proto__: null,
11672
11766
  default: link,
11673
- vars: vars$p
11767
+ vars: vars$q
11674
11768
  });
11675
11769
 
11676
11770
  const globalRefs$g = getThemeRefs(globals);
@@ -11712,7 +11806,7 @@ const divider = {
11712
11806
  },
11713
11807
  };
11714
11808
 
11715
- const vars$o = {
11809
+ const vars$p = {
11716
11810
  ...compVars$3,
11717
11811
  ...helperVars$1,
11718
11812
  };
@@ -11720,93 +11814,93 @@ const vars$o = {
11720
11814
  var divider$1 = /*#__PURE__*/Object.freeze({
11721
11815
  __proto__: null,
11722
11816
  default: divider,
11723
- vars: vars$o
11817
+ vars: vars$p
11724
11818
  });
11725
11819
 
11726
- const vars$n = PasscodeClass.cssVarList;
11820
+ const vars$o = PasscodeClass.cssVarList;
11727
11821
 
11728
11822
  const passcode = {
11729
- [vars$n.hostDirection]: refs.direction,
11730
- [vars$n.fontFamily]: refs.fontFamily,
11731
- [vars$n.fontSize]: refs.fontSize,
11732
- [vars$n.labelTextColor]: refs.labelTextColor,
11733
- [vars$n.labelRequiredIndicator]: refs.requiredIndicator,
11734
- [vars$n.errorMessageTextColor]: refs.errorMessageTextColor,
11735
- [vars$n.digitValueTextColor]: refs.valueTextColor,
11736
- [vars$n.digitPadding]: '0',
11737
- [vars$n.digitTextAlign]: 'center',
11738
- [vars$n.digitSpacing]: '4px',
11739
- [vars$n.hostWidth]: refs.width,
11740
- [vars$n.digitOutlineColor]: 'transparent',
11741
- [vars$n.digitOutlineWidth]: refs.outlineWidth,
11742
- [vars$n.focusedDigitFieldOutlineColor]: refs.outlineColor,
11743
- [vars$n.digitSize]: refs.inputHeight,
11823
+ [vars$o.hostDirection]: refs.direction,
11824
+ [vars$o.fontFamily]: refs.fontFamily,
11825
+ [vars$o.fontSize]: refs.fontSize,
11826
+ [vars$o.labelTextColor]: refs.labelTextColor,
11827
+ [vars$o.labelRequiredIndicator]: refs.requiredIndicator,
11828
+ [vars$o.errorMessageTextColor]: refs.errorMessageTextColor,
11829
+ [vars$o.digitValueTextColor]: refs.valueTextColor,
11830
+ [vars$o.digitPadding]: '0',
11831
+ [vars$o.digitTextAlign]: 'center',
11832
+ [vars$o.digitSpacing]: '4px',
11833
+ [vars$o.hostWidth]: refs.width,
11834
+ [vars$o.digitOutlineColor]: 'transparent',
11835
+ [vars$o.digitOutlineWidth]: refs.outlineWidth,
11836
+ [vars$o.focusedDigitFieldOutlineColor]: refs.outlineColor,
11837
+ [vars$o.digitSize]: refs.inputHeight,
11744
11838
 
11745
11839
  size: {
11746
- xs: { [vars$n.spinnerSize]: '15px' },
11747
- sm: { [vars$n.spinnerSize]: '20px' },
11748
- md: { [vars$n.spinnerSize]: '20px' },
11749
- lg: { [vars$n.spinnerSize]: '20px' },
11840
+ xs: { [vars$o.spinnerSize]: '15px' },
11841
+ sm: { [vars$o.spinnerSize]: '20px' },
11842
+ md: { [vars$o.spinnerSize]: '20px' },
11843
+ lg: { [vars$o.spinnerSize]: '20px' },
11750
11844
  },
11751
11845
 
11752
11846
  _hideCursor: {
11753
- [vars$n.digitCaretTextColor]: 'transparent',
11847
+ [vars$o.digitCaretTextColor]: 'transparent',
11754
11848
  },
11755
11849
 
11756
11850
  _loading: {
11757
- [vars$n.overlayOpacity]: refs.overlayOpacity,
11851
+ [vars$o.overlayOpacity]: refs.overlayOpacity,
11758
11852
  },
11759
11853
  };
11760
11854
 
11761
11855
  var passcode$1 = /*#__PURE__*/Object.freeze({
11762
11856
  __proto__: null,
11763
11857
  default: passcode,
11764
- vars: vars$n
11858
+ vars: vars$o
11765
11859
  });
11766
11860
 
11767
11861
  const globalRefs$f = getThemeRefs(globals);
11768
- const vars$m = LoaderLinearClass.cssVarList;
11862
+ const vars$n = LoaderLinearClass.cssVarList;
11769
11863
 
11770
11864
  const loaderLinear = {
11771
- [vars$m.hostDisplay]: 'inline-block',
11772
- [vars$m.hostWidth]: '100%',
11865
+ [vars$n.hostDisplay]: 'inline-block',
11866
+ [vars$n.hostWidth]: '100%',
11773
11867
 
11774
- [vars$m.barColor]: globalRefs$f.colors.surface.contrast,
11775
- [vars$m.barWidth]: '20%',
11868
+ [vars$n.barColor]: globalRefs$f.colors.surface.contrast,
11869
+ [vars$n.barWidth]: '20%',
11776
11870
 
11777
- [vars$m.barBackgroundColor]: globalRefs$f.colors.surface.light,
11778
- [vars$m.barBorderRadius]: '4px',
11871
+ [vars$n.barBackgroundColor]: globalRefs$f.colors.surface.light,
11872
+ [vars$n.barBorderRadius]: '4px',
11779
11873
 
11780
- [vars$m.animationDuration]: '2s',
11781
- [vars$m.animationTimingFunction]: 'linear',
11782
- [vars$m.animationIterationCount]: 'infinite',
11783
- [vars$m.verticalPadding]: '0.25em',
11874
+ [vars$n.animationDuration]: '2s',
11875
+ [vars$n.animationTimingFunction]: 'linear',
11876
+ [vars$n.animationIterationCount]: 'infinite',
11877
+ [vars$n.verticalPadding]: '0.25em',
11784
11878
 
11785
11879
  size: {
11786
- xs: { [vars$m.barHeight]: '2px' },
11787
- sm: { [vars$m.barHeight]: '4px' },
11788
- md: { [vars$m.barHeight]: '6px' },
11789
- lg: { [vars$m.barHeight]: '8px' },
11880
+ xs: { [vars$n.barHeight]: '2px' },
11881
+ sm: { [vars$n.barHeight]: '4px' },
11882
+ md: { [vars$n.barHeight]: '6px' },
11883
+ lg: { [vars$n.barHeight]: '8px' },
11790
11884
  },
11791
11885
 
11792
11886
  mode: {
11793
11887
  primary: {
11794
- [vars$m.barColor]: globalRefs$f.colors.primary.main,
11888
+ [vars$n.barColor]: globalRefs$f.colors.primary.main,
11795
11889
  },
11796
11890
  secondary: {
11797
- [vars$m.barColor]: globalRefs$f.colors.secondary.main,
11891
+ [vars$n.barColor]: globalRefs$f.colors.secondary.main,
11798
11892
  },
11799
11893
  },
11800
11894
 
11801
11895
  _hidden: {
11802
- [vars$m.hostDisplay]: 'none',
11896
+ [vars$n.hostDisplay]: 'none',
11803
11897
  },
11804
11898
  };
11805
11899
 
11806
11900
  var loaderLinear$1 = /*#__PURE__*/Object.freeze({
11807
11901
  __proto__: null,
11808
11902
  default: loaderLinear,
11809
- vars: vars$m
11903
+ vars: vars$n
11810
11904
  });
11811
11905
 
11812
11906
  const globalRefs$e = getThemeRefs(globals);
@@ -11853,7 +11947,7 @@ const loaderRadial = {
11853
11947
  [compVars$2.hostDisplay]: 'none',
11854
11948
  },
11855
11949
  };
11856
- const vars$l = {
11950
+ const vars$m = {
11857
11951
  ...compVars$2,
11858
11952
  ...helperVars,
11859
11953
  };
@@ -11861,78 +11955,114 @@ const vars$l = {
11861
11955
  var loaderRadial$1 = /*#__PURE__*/Object.freeze({
11862
11956
  __proto__: null,
11863
11957
  default: loaderRadial,
11864
- vars: vars$l
11958
+ vars: vars$m
11865
11959
  });
11866
11960
 
11867
11961
  const globalRefs$d = getThemeRefs(globals);
11868
- const vars$k = ComboBoxClass.cssVarList;
11962
+ const vars$l = ComboBoxClass.cssVarList;
11869
11963
 
11870
11964
  const comboBox = {
11871
- [vars$k.hostWidth]: refs.width,
11872
- [vars$k.hostDirection]: refs.direction,
11873
- [vars$k.fontSize]: refs.fontSize,
11874
- [vars$k.fontFamily]: refs.fontFamily,
11875
- [vars$k.labelTextColor]: refs.labelTextColor,
11876
- [vars$k.errorMessageTextColor]: refs.errorMessageTextColor,
11877
- [vars$k.inputBorderColor]: refs.borderColor,
11878
- [vars$k.inputBorderWidth]: refs.borderWidth,
11879
- [vars$k.inputBorderStyle]: refs.borderStyle,
11880
- [vars$k.inputBorderRadius]: refs.borderRadius,
11881
- [vars$k.inputOutlineColor]: refs.outlineColor,
11882
- [vars$k.inputOutlineOffset]: refs.outlineOffset,
11883
- [vars$k.inputOutlineWidth]: refs.outlineWidth,
11884
- [vars$k.inputOutlineStyle]: refs.outlineStyle,
11885
- [vars$k.labelRequiredIndicator]: refs.requiredIndicator,
11886
- [vars$k.inputValueTextColor]: refs.valueTextColor,
11887
- [vars$k.inputPlaceholderTextColor]: refs.placeholderTextColor,
11888
- [vars$k.inputBackgroundColor]: refs.backgroundColor,
11889
- [vars$k.inputHorizontalPadding]: refs.horizontalPadding,
11890
- [vars$k.inputHeight]: refs.inputHeight,
11891
- [vars$k.inputDropdownButtonColor]: globalRefs$d.colors.surface.dark,
11892
- [vars$k.inputDropdownButtonCursor]: 'pointer',
11893
- [vars$k.inputDropdownButtonSize]: refs.toggleButtonSize,
11894
- [vars$k.inputDropdownButtonOffset]: globalRefs$d.spacing.xs,
11895
- [vars$k.overlayItemPaddingInlineStart]: globalRefs$d.spacing.xs,
11896
- [vars$k.overlayItemPaddingInlineEnd]: globalRefs$d.spacing.lg,
11965
+ [vars$l.hostWidth]: refs.width,
11966
+ [vars$l.hostDirection]: refs.direction,
11967
+ [vars$l.fontSize]: refs.fontSize,
11968
+ [vars$l.fontFamily]: refs.fontFamily,
11969
+ [vars$l.labelTextColor]: refs.labelTextColor,
11970
+ [vars$l.errorMessageTextColor]: refs.errorMessageTextColor,
11971
+ [vars$l.inputBorderColor]: refs.borderColor,
11972
+ [vars$l.inputBorderWidth]: refs.borderWidth,
11973
+ [vars$l.inputBorderStyle]: refs.borderStyle,
11974
+ [vars$l.inputBorderRadius]: refs.borderRadius,
11975
+ [vars$l.inputOutlineColor]: refs.outlineColor,
11976
+ [vars$l.inputOutlineOffset]: refs.outlineOffset,
11977
+ [vars$l.inputOutlineWidth]: refs.outlineWidth,
11978
+ [vars$l.inputOutlineStyle]: refs.outlineStyle,
11979
+ [vars$l.labelRequiredIndicator]: refs.requiredIndicator,
11980
+ [vars$l.inputValueTextColor]: refs.valueTextColor,
11981
+ [vars$l.inputPlaceholderTextColor]: refs.placeholderTextColor,
11982
+ [vars$l.inputBackgroundColor]: refs.backgroundColor,
11983
+ [vars$l.inputHorizontalPadding]: refs.horizontalPadding,
11984
+ [vars$l.inputHeight]: refs.inputHeight,
11985
+ [vars$l.inputDropdownButtonColor]: globalRefs$d.colors.surface.dark,
11986
+ [vars$l.inputDropdownButtonCursor]: 'pointer',
11987
+ [vars$l.inputDropdownButtonSize]: refs.toggleButtonSize,
11988
+ [vars$l.inputDropdownButtonOffset]: globalRefs$d.spacing.xs,
11989
+ [vars$l.overlayItemPaddingInlineStart]: globalRefs$d.spacing.xs,
11990
+ [vars$l.overlayItemPaddingInlineEnd]: globalRefs$d.spacing.lg,
11897
11991
 
11898
11992
  _readonly: {
11899
- [vars$k.inputDropdownButtonCursor]: 'default',
11993
+ [vars$l.inputDropdownButtonCursor]: 'default',
11900
11994
  },
11901
11995
 
11902
11996
  // Overlay theme exposed via the component:
11903
- [vars$k.overlayFontSize]: refs.fontSize,
11904
- [vars$k.overlayFontFamily]: refs.fontFamily,
11905
- [vars$k.overlayCursor]: 'pointer',
11906
- [vars$k.overlayItemBoxShadow]: 'none',
11907
- [vars$k.overlayBackground]: refs.backgroundColor,
11908
- [vars$k.overlayTextColor]: refs.valueTextColor,
11997
+ [vars$l.overlayFontSize]: refs.fontSize,
11998
+ [vars$l.overlayFontFamily]: refs.fontFamily,
11999
+ [vars$l.overlayCursor]: 'pointer',
12000
+ [vars$l.overlayItemBoxShadow]: 'none',
12001
+ [vars$l.overlayBackground]: refs.backgroundColor,
12002
+ [vars$l.overlayTextColor]: refs.valueTextColor,
11909
12003
 
11910
12004
  // Overlay direct theme:
11911
- [vars$k.overlay.minHeight]: '400px',
11912
- [vars$k.overlay.margin]: '0',
12005
+ [vars$l.overlay.minHeight]: '400px',
12006
+ [vars$l.overlay.margin]: '0',
11913
12007
  };
11914
12008
 
11915
12009
  var comboBox$1 = /*#__PURE__*/Object.freeze({
11916
12010
  __proto__: null,
11917
12011
  comboBox: comboBox,
11918
12012
  default: comboBox,
11919
- vars: vars$k
12013
+ vars: vars$l
11920
12014
  });
11921
12015
 
11922
- const vars$j = ImageClass.cssVarList;
12016
+ const vars$k = ImageClass.cssVarList;
11923
12017
 
11924
12018
  const image = {};
11925
12019
 
11926
12020
  var image$1 = /*#__PURE__*/Object.freeze({
11927
12021
  __proto__: null,
11928
12022
  default: image,
11929
- vars: vars$j
12023
+ vars: vars$k
11930
12024
  });
11931
12025
 
11932
- const vars$i = PhoneFieldClass.cssVarList;
12026
+ const vars$j = PhoneFieldClass.cssVarList;
11933
12027
 
11934
12028
  const phoneField = {
11935
- [vars$i.hostWidth]: refs.width,
12029
+ [vars$j.hostWidth]: refs.width,
12030
+ [vars$j.hostDirection]: refs.direction,
12031
+ [vars$j.fontSize]: refs.fontSize,
12032
+ [vars$j.fontFamily]: refs.fontFamily,
12033
+ [vars$j.labelTextColor]: refs.labelTextColor,
12034
+ [vars$j.labelRequiredIndicator]: refs.requiredIndicator,
12035
+ [vars$j.errorMessageTextColor]: refs.errorMessageTextColor,
12036
+ [vars$j.inputValueTextColor]: refs.valueTextColor,
12037
+ [vars$j.inputPlaceholderTextColor]: refs.placeholderTextColor,
12038
+ [vars$j.inputBorderStyle]: refs.borderStyle,
12039
+ [vars$j.inputBorderWidth]: refs.borderWidth,
12040
+ [vars$j.inputBorderColor]: refs.borderColor,
12041
+ [vars$j.inputBorderRadius]: refs.borderRadius,
12042
+ [vars$j.inputOutlineStyle]: refs.outlineStyle,
12043
+ [vars$j.inputOutlineWidth]: refs.outlineWidth,
12044
+ [vars$j.inputOutlineColor]: refs.outlineColor,
12045
+ [vars$j.inputOutlineOffset]: refs.outlineOffset,
12046
+ [vars$j.phoneInputWidth]: refs.minWidth,
12047
+ [vars$j.countryCodeInputWidth]: '5em',
12048
+ [vars$j.countryCodeDropdownWidth]: '20em',
12049
+
12050
+ // '@overlay': {
12051
+ // overlayItemBackgroundColor: 'red'
12052
+ // }
12053
+ };
12054
+
12055
+ var phoneField$1 = /*#__PURE__*/Object.freeze({
12056
+ __proto__: null,
12057
+ default: phoneField,
12058
+ vars: vars$j
12059
+ });
12060
+
12061
+ const vars$i = PhoneFieldInputBoxClass.cssVarList;
12062
+
12063
+ const phoneInputBoxField = {
12064
+ [vars$i.hostWidth]: '16em',
12065
+ [vars$i.hostMinWidth]: refs.minWidth,
11936
12066
  [vars$i.hostDirection]: refs.direction,
11937
12067
  [vars$i.fontSize]: refs.fontSize,
11938
12068
  [vars$i.fontFamily]: refs.fontFamily,
@@ -11949,181 +12079,145 @@ const phoneField = {
11949
12079
  [vars$i.inputOutlineWidth]: refs.outlineWidth,
11950
12080
  [vars$i.inputOutlineColor]: refs.outlineColor,
11951
12081
  [vars$i.inputOutlineOffset]: refs.outlineOffset,
11952
- [vars$i.phoneInputWidth]: refs.minWidth,
11953
- [vars$i.countryCodeInputWidth]: '5em',
11954
- [vars$i.countryCodeDropdownWidth]: '20em',
11955
-
11956
- // '@overlay': {
11957
- // overlayItemBackgroundColor: 'red'
11958
- // }
11959
- };
11960
-
11961
- var phoneField$1 = /*#__PURE__*/Object.freeze({
11962
- __proto__: null,
11963
- default: phoneField,
11964
- vars: vars$i
11965
- });
11966
-
11967
- const vars$h = PhoneFieldInputBoxClass.cssVarList;
11968
-
11969
- const phoneInputBoxField = {
11970
- [vars$h.hostWidth]: '16em',
11971
- [vars$h.hostMinWidth]: refs.minWidth,
11972
- [vars$h.hostDirection]: refs.direction,
11973
- [vars$h.fontSize]: refs.fontSize,
11974
- [vars$h.fontFamily]: refs.fontFamily,
11975
- [vars$h.labelTextColor]: refs.labelTextColor,
11976
- [vars$h.labelRequiredIndicator]: refs.requiredIndicator,
11977
- [vars$h.errorMessageTextColor]: refs.errorMessageTextColor,
11978
- [vars$h.inputValueTextColor]: refs.valueTextColor,
11979
- [vars$h.inputPlaceholderTextColor]: refs.placeholderTextColor,
11980
- [vars$h.inputBorderStyle]: refs.borderStyle,
11981
- [vars$h.inputBorderWidth]: refs.borderWidth,
11982
- [vars$h.inputBorderColor]: refs.borderColor,
11983
- [vars$h.inputBorderRadius]: refs.borderRadius,
11984
- [vars$h.inputOutlineStyle]: refs.outlineStyle,
11985
- [vars$h.inputOutlineWidth]: refs.outlineWidth,
11986
- [vars$h.inputOutlineColor]: refs.outlineColor,
11987
- [vars$h.inputOutlineOffset]: refs.outlineOffset,
11988
12082
  _fullWidth: {
11989
- [vars$h.hostWidth]: refs.width,
12083
+ [vars$i.hostWidth]: refs.width,
11990
12084
  },
11991
12085
  };
11992
12086
 
11993
12087
  var phoneInputBoxField$1 = /*#__PURE__*/Object.freeze({
11994
12088
  __proto__: null,
11995
12089
  default: phoneInputBoxField,
11996
- vars: vars$h
12090
+ vars: vars$i
11997
12091
  });
11998
12092
 
11999
12093
  const globalRefs$c = getThemeRefs(globals);
12000
- const vars$g = NewPasswordClass.cssVarList;
12094
+ const vars$h = NewPasswordClass.cssVarList;
12001
12095
 
12002
12096
  const newPassword = {
12003
- [vars$g.hostWidth]: refs.width,
12004
- [vars$g.hostMinWidth]: refs.minWidth,
12005
- [vars$g.hostDirection]: refs.direction,
12006
- [vars$g.fontSize]: refs.fontSize,
12007
- [vars$g.fontFamily]: refs.fontFamily,
12008
- [vars$g.spaceBetweenInputs]: '1em',
12009
- [vars$g.errorMessageTextColor]: refs.errorMessageTextColor,
12010
- [vars$g.policyPreviewBackgroundColor]: 'none',
12011
- [vars$g.policyPreviewPadding]: globalRefs$c.spacing.lg,
12097
+ [vars$h.hostWidth]: refs.width,
12098
+ [vars$h.hostMinWidth]: refs.minWidth,
12099
+ [vars$h.hostDirection]: refs.direction,
12100
+ [vars$h.fontSize]: refs.fontSize,
12101
+ [vars$h.fontFamily]: refs.fontFamily,
12102
+ [vars$h.spaceBetweenInputs]: '1em',
12103
+ [vars$h.errorMessageTextColor]: refs.errorMessageTextColor,
12104
+ [vars$h.policyPreviewBackgroundColor]: 'none',
12105
+ [vars$h.policyPreviewPadding]: globalRefs$c.spacing.lg,
12012
12106
 
12013
12107
  _required: {
12014
12108
  // NewPassword doesn't pass `required` attribute to its Password components.
12015
12109
  // That's why we fake the required indicator on each input.
12016
12110
  // We do that by injecting `::after` element, and populating it with requiredIndicator content.
12017
- [vars$g.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
12111
+ [vars$h.inputsRequiredIndicator]: refs.requiredIndicator, // used to populate required content for NewPassword input fields outside the theme
12018
12112
  },
12019
12113
  };
12020
12114
 
12021
12115
  var newPassword$1 = /*#__PURE__*/Object.freeze({
12022
12116
  __proto__: null,
12023
12117
  default: newPassword,
12024
- vars: vars$g
12118
+ vars: vars$h
12025
12119
  });
12026
12120
 
12027
- const vars$f = UploadFileClass.cssVarList;
12121
+ const vars$g = UploadFileClass.cssVarList;
12028
12122
 
12029
12123
  const uploadFile = {
12030
- [vars$f.hostDirection]: refs.direction,
12031
- [vars$f.labelTextColor]: refs.labelTextColor,
12032
- [vars$f.fontFamily]: refs.fontFamily,
12124
+ [vars$g.hostDirection]: refs.direction,
12125
+ [vars$g.labelTextColor]: refs.labelTextColor,
12126
+ [vars$g.fontFamily]: refs.fontFamily,
12033
12127
 
12034
- [vars$f.iconSize]: '2em',
12128
+ [vars$g.iconSize]: '2em',
12035
12129
 
12036
- [vars$f.hostPadding]: '0.75em',
12037
- [vars$f.gap]: '0.5em',
12130
+ [vars$g.hostPadding]: '0.75em',
12131
+ [vars$g.gap]: '0.5em',
12038
12132
 
12039
- [vars$f.fontSize]: '16px',
12040
- [vars$f.titleFontWeight]: '500',
12041
- [vars$f.lineHeight]: '1em',
12133
+ [vars$g.fontSize]: '16px',
12134
+ [vars$g.titleFontWeight]: '500',
12135
+ [vars$g.lineHeight]: '1em',
12042
12136
 
12043
- [vars$f.borderWidth]: refs.borderWidth,
12044
- [vars$f.borderColor]: refs.borderColor,
12045
- [vars$f.borderRadius]: refs.borderRadius,
12046
- [vars$f.borderStyle]: 'dashed',
12137
+ [vars$g.borderWidth]: refs.borderWidth,
12138
+ [vars$g.borderColor]: refs.borderColor,
12139
+ [vars$g.borderRadius]: refs.borderRadius,
12140
+ [vars$g.borderStyle]: 'dashed',
12047
12141
 
12048
12142
  _required: {
12049
- [vars$f.requiredIndicator]: refs.requiredIndicator,
12143
+ [vars$g.requiredIndicator]: refs.requiredIndicator,
12050
12144
  },
12051
12145
 
12052
12146
  size: {
12053
12147
  xs: {
12054
- [vars$f.hostHeight]: '196px',
12055
- [vars$f.hostWidth]: '200px',
12056
- [vars$f.titleFontSize]: '0.875em',
12057
- [vars$f.descriptionFontSize]: '0.875em',
12058
- [vars$f.lineHeight]: '1.25em',
12148
+ [vars$g.hostHeight]: '196px',
12149
+ [vars$g.hostWidth]: '200px',
12150
+ [vars$g.titleFontSize]: '0.875em',
12151
+ [vars$g.descriptionFontSize]: '0.875em',
12152
+ [vars$g.lineHeight]: '1.25em',
12059
12153
  },
12060
12154
  sm: {
12061
- [vars$f.hostHeight]: '216px',
12062
- [vars$f.hostWidth]: '230px',
12063
- [vars$f.titleFontSize]: '1em',
12064
- [vars$f.descriptionFontSize]: '0.875em',
12065
- [vars$f.lineHeight]: '1.25em',
12155
+ [vars$g.hostHeight]: '216px',
12156
+ [vars$g.hostWidth]: '230px',
12157
+ [vars$g.titleFontSize]: '1em',
12158
+ [vars$g.descriptionFontSize]: '0.875em',
12159
+ [vars$g.lineHeight]: '1.25em',
12066
12160
  },
12067
12161
  md: {
12068
- [vars$f.hostHeight]: '256px',
12069
- [vars$f.hostWidth]: '312px',
12070
- [vars$f.titleFontSize]: '1.125em',
12071
- [vars$f.descriptionFontSize]: '1em',
12072
- [vars$f.lineHeight]: '1.5em',
12162
+ [vars$g.hostHeight]: '256px',
12163
+ [vars$g.hostWidth]: '312px',
12164
+ [vars$g.titleFontSize]: '1.125em',
12165
+ [vars$g.descriptionFontSize]: '1em',
12166
+ [vars$g.lineHeight]: '1.5em',
12073
12167
  },
12074
12168
  lg: {
12075
- [vars$f.hostHeight]: '280px',
12076
- [vars$f.hostWidth]: '336px',
12077
- [vars$f.titleFontSize]: '1.125em',
12078
- [vars$f.descriptionFontSize]: '1.125em',
12079
- [vars$f.lineHeight]: '1.75em',
12169
+ [vars$g.hostHeight]: '280px',
12170
+ [vars$g.hostWidth]: '336px',
12171
+ [vars$g.titleFontSize]: '1.125em',
12172
+ [vars$g.descriptionFontSize]: '1.125em',
12173
+ [vars$g.lineHeight]: '1.75em',
12080
12174
  },
12081
12175
  },
12082
12176
 
12083
12177
  _fullWidth: {
12084
- [vars$f.hostWidth]: refs.width,
12178
+ [vars$g.hostWidth]: refs.width,
12085
12179
  },
12086
12180
  };
12087
12181
 
12088
12182
  var uploadFile$1 = /*#__PURE__*/Object.freeze({
12089
12183
  __proto__: null,
12090
12184
  default: uploadFile,
12091
- vars: vars$f
12185
+ vars: vars$g
12092
12186
  });
12093
12187
 
12094
12188
  const globalRefs$b = getThemeRefs(globals);
12095
12189
 
12096
- const vars$e = ButtonSelectionGroupItemClass.cssVarList;
12190
+ const vars$f = ButtonSelectionGroupItemClass.cssVarList;
12097
12191
 
12098
12192
  const buttonSelectionGroupItem = {
12099
- [vars$e.hostDirection]: 'inherit',
12100
- [vars$e.backgroundColor]: globalRefs$b.colors.surface.main,
12101
- [vars$e.labelTextColor]: globalRefs$b.colors.surface.contrast,
12102
- [vars$e.borderColor]: globalRefs$b.colors.surface.light,
12103
- [vars$e.borderStyle]: 'solid',
12104
- [vars$e.borderRadius]: globalRefs$b.radius.sm,
12105
- [vars$e.outlineColor]: 'transparent',
12106
- [vars$e.borderWidth]: globalRefs$b.border.xs,
12193
+ [vars$f.hostDirection]: 'inherit',
12194
+ [vars$f.backgroundColor]: globalRefs$b.colors.surface.main,
12195
+ [vars$f.labelTextColor]: globalRefs$b.colors.surface.contrast,
12196
+ [vars$f.borderColor]: globalRefs$b.colors.surface.light,
12197
+ [vars$f.borderStyle]: 'solid',
12198
+ [vars$f.borderRadius]: globalRefs$b.radius.sm,
12199
+ [vars$f.outlineColor]: 'transparent',
12200
+ [vars$f.borderWidth]: globalRefs$b.border.xs,
12107
12201
 
12108
12202
  _hover: {
12109
- [vars$e.backgroundColor]: globalRefs$b.colors.surface.highlight,
12203
+ [vars$f.backgroundColor]: globalRefs$b.colors.surface.highlight,
12110
12204
  },
12111
12205
 
12112
12206
  _focused: {
12113
- [vars$e.outlineColor]: globalRefs$b.colors.surface.light,
12207
+ [vars$f.outlineColor]: globalRefs$b.colors.surface.light,
12114
12208
  },
12115
12209
 
12116
12210
  _selected: {
12117
- [vars$e.borderColor]: globalRefs$b.colors.surface.contrast,
12118
- [vars$e.backgroundColor]: globalRefs$b.colors.surface.contrast,
12119
- [vars$e.labelTextColor]: globalRefs$b.colors.surface.main,
12211
+ [vars$f.borderColor]: globalRefs$b.colors.surface.contrast,
12212
+ [vars$f.backgroundColor]: globalRefs$b.colors.surface.contrast,
12213
+ [vars$f.labelTextColor]: globalRefs$b.colors.surface.main,
12120
12214
  },
12121
12215
  };
12122
12216
 
12123
12217
  var buttonSelectionGroupItem$1 = /*#__PURE__*/Object.freeze({
12124
12218
  __proto__: null,
12125
12219
  default: buttonSelectionGroupItem,
12126
- vars: vars$e
12220
+ vars: vars$f
12127
12221
  });
12128
12222
 
12129
12223
  const globalRefs$a = getThemeRefs(globals);
@@ -12138,28 +12232,28 @@ const createBaseButtonSelectionGroupMappings = (vars) => ({
12138
12232
  [vars.hostWidth]: refs.width,
12139
12233
  });
12140
12234
 
12141
- const vars$d = ButtonSelectionGroupClass.cssVarList;
12235
+ const vars$e = ButtonSelectionGroupClass.cssVarList;
12142
12236
 
12143
12237
  const buttonSelectionGroup = {
12144
- ...createBaseButtonSelectionGroupMappings(vars$d),
12238
+ ...createBaseButtonSelectionGroupMappings(vars$e),
12145
12239
  };
12146
12240
 
12147
12241
  var buttonSelectionGroup$1 = /*#__PURE__*/Object.freeze({
12148
12242
  __proto__: null,
12149
12243
  default: buttonSelectionGroup,
12150
- vars: vars$d
12244
+ vars: vars$e
12151
12245
  });
12152
12246
 
12153
- const vars$c = ButtonMultiSelectionGroupClass.cssVarList;
12247
+ const vars$d = ButtonMultiSelectionGroupClass.cssVarList;
12154
12248
 
12155
12249
  const buttonMultiSelectionGroup = {
12156
- ...createBaseButtonSelectionGroupMappings(vars$c),
12250
+ ...createBaseButtonSelectionGroupMappings(vars$d),
12157
12251
  };
12158
12252
 
12159
12253
  var buttonMultiSelectionGroup$1 = /*#__PURE__*/Object.freeze({
12160
12254
  __proto__: null,
12161
12255
  default: buttonMultiSelectionGroup,
12162
- vars: vars$c
12256
+ vars: vars$d
12163
12257
  });
12164
12258
 
12165
12259
  const globalRefs$9 = getThemeRefs(globals);
@@ -12172,46 +12266,46 @@ const modal = {
12172
12266
  [compVars$1.overlayWidth]: '540px',
12173
12267
  };
12174
12268
 
12175
- const vars$b = {
12269
+ const vars$c = {
12176
12270
  ...compVars$1,
12177
12271
  };
12178
12272
 
12179
12273
  var modal$1 = /*#__PURE__*/Object.freeze({
12180
12274
  __proto__: null,
12181
12275
  default: modal,
12182
- vars: vars$b
12276
+ vars: vars$c
12183
12277
  });
12184
12278
 
12185
12279
  const globalRefs$8 = getThemeRefs(globals);
12186
- const vars$a = GridClass.cssVarList;
12280
+ const vars$b = GridClass.cssVarList;
12187
12281
 
12188
12282
  const grid = {
12189
- [vars$a.hostWidth]: '100%',
12190
- [vars$a.hostHeight]: '100%',
12191
- [vars$a.hostMinHeight]: '400px',
12192
- [vars$a.fontWeight]: '400',
12193
- [vars$a.backgroundColor]: globalRefs$8.colors.surface.main,
12283
+ [vars$b.hostWidth]: '100%',
12284
+ [vars$b.hostHeight]: '100%',
12285
+ [vars$b.hostMinHeight]: '400px',
12286
+ [vars$b.fontWeight]: '400',
12287
+ [vars$b.backgroundColor]: globalRefs$8.colors.surface.main,
12194
12288
 
12195
- [vars$a.fontSize]: refs.fontSize,
12196
- [vars$a.fontFamily]: refs.fontFamily,
12289
+ [vars$b.fontSize]: refs.fontSize,
12290
+ [vars$b.fontFamily]: refs.fontFamily,
12197
12291
 
12198
- [vars$a.sortIndicatorsColor]: globalRefs$8.colors.surface.light,
12199
- [vars$a.activeSortIndicator]: globalRefs$8.colors.surface.dark,
12200
- [vars$a.resizeHandleColor]: globalRefs$8.colors.surface.light,
12292
+ [vars$b.sortIndicatorsColor]: globalRefs$8.colors.surface.light,
12293
+ [vars$b.activeSortIndicator]: globalRefs$8.colors.surface.dark,
12294
+ [vars$b.resizeHandleColor]: globalRefs$8.colors.surface.light,
12201
12295
 
12202
- [vars$a.borderWidth]: refs.borderWidth,
12203
- [vars$a.borderStyle]: refs.borderStyle,
12204
- [vars$a.borderRadius]: refs.borderRadius,
12205
- [vars$a.borderColor]: 'transparent',
12296
+ [vars$b.borderWidth]: refs.borderWidth,
12297
+ [vars$b.borderStyle]: refs.borderStyle,
12298
+ [vars$b.borderRadius]: refs.borderRadius,
12299
+ [vars$b.borderColor]: 'transparent',
12206
12300
 
12207
- [vars$a.headerRowTextColor]: globalRefs$8.colors.surface.dark,
12208
- [vars$a.separatorColor]: globalRefs$8.colors.surface.light,
12301
+ [vars$b.headerRowTextColor]: globalRefs$8.colors.surface.dark,
12302
+ [vars$b.separatorColor]: globalRefs$8.colors.surface.light,
12209
12303
 
12210
- [vars$a.valueTextColor]: globalRefs$8.colors.surface.contrast,
12211
- [vars$a.selectedBackgroundColor]: globalRefs$8.colors.surface.highlight,
12304
+ [vars$b.valueTextColor]: globalRefs$8.colors.surface.contrast,
12305
+ [vars$b.selectedBackgroundColor]: globalRefs$8.colors.surface.highlight,
12212
12306
 
12213
12307
  _bordered: {
12214
- [vars$a.borderColor]: refs.borderColor,
12308
+ [vars$b.borderColor]: refs.borderColor,
12215
12309
  },
12216
12310
  };
12217
12311
 
@@ -12219,53 +12313,53 @@ var grid$1 = /*#__PURE__*/Object.freeze({
12219
12313
  __proto__: null,
12220
12314
  default: grid,
12221
12315
  grid: grid,
12222
- vars: vars$a
12316
+ vars: vars$b
12223
12317
  });
12224
12318
 
12225
12319
  const globalRefs$7 = getThemeRefs(globals);
12226
- const vars$9 = NotificationCardClass.cssVarList;
12320
+ const vars$a = NotificationCardClass.cssVarList;
12227
12321
 
12228
12322
  const shadowColor = '#00000020';
12229
12323
 
12230
12324
  const notification = {
12231
- [vars$9.hostMinWidth]: '415px',
12232
- [vars$9.fontFamily]: globalRefs$7.fonts.font1.family,
12233
- [vars$9.fontSize]: globalRefs$7.typography.body1.size,
12234
- [vars$9.backgroundColor]: globalRefs$7.colors.surface.main,
12235
- [vars$9.textColor]: globalRefs$7.colors.surface.contrast,
12236
- [vars$9.boxShadow]: `${globalRefs$7.shadow.wide.xl} ${shadowColor}, ${globalRefs$7.shadow.narrow.xl} ${shadowColor}`,
12237
- [vars$9.verticalPadding]: '0.625em',
12238
- [vars$9.horizontalPadding]: '1.5em',
12239
- [vars$9.borderRadius]: globalRefs$7.radius.xs,
12325
+ [vars$a.hostMinWidth]: '415px',
12326
+ [vars$a.fontFamily]: globalRefs$7.fonts.font1.family,
12327
+ [vars$a.fontSize]: globalRefs$7.typography.body1.size,
12328
+ [vars$a.backgroundColor]: globalRefs$7.colors.surface.main,
12329
+ [vars$a.textColor]: globalRefs$7.colors.surface.contrast,
12330
+ [vars$a.boxShadow]: `${globalRefs$7.shadow.wide.xl} ${shadowColor}, ${globalRefs$7.shadow.narrow.xl} ${shadowColor}`,
12331
+ [vars$a.verticalPadding]: '0.625em',
12332
+ [vars$a.horizontalPadding]: '1.5em',
12333
+ [vars$a.borderRadius]: globalRefs$7.radius.xs,
12240
12334
 
12241
12335
  _bordered: {
12242
- [vars$9.borderWidth]: globalRefs$7.border.sm,
12243
- [vars$9.borderStyle]: 'solid',
12244
- [vars$9.borderColor]: 'transparent',
12336
+ [vars$a.borderWidth]: globalRefs$7.border.sm,
12337
+ [vars$a.borderStyle]: 'solid',
12338
+ [vars$a.borderColor]: 'transparent',
12245
12339
  },
12246
12340
 
12247
12341
  size: {
12248
- xs: { [vars$9.fontSize]: '12px' },
12249
- sm: { [vars$9.fontSize]: '14px' },
12250
- md: { [vars$9.fontSize]: '16px' },
12251
- lg: { [vars$9.fontSize]: '18px' },
12342
+ xs: { [vars$a.fontSize]: '12px' },
12343
+ sm: { [vars$a.fontSize]: '14px' },
12344
+ md: { [vars$a.fontSize]: '16px' },
12345
+ lg: { [vars$a.fontSize]: '18px' },
12252
12346
  },
12253
12347
 
12254
12348
  mode: {
12255
12349
  primary: {
12256
- [vars$9.backgroundColor]: globalRefs$7.colors.primary.main,
12257
- [vars$9.textColor]: globalRefs$7.colors.primary.contrast,
12258
- [vars$9.borderColor]: globalRefs$7.colors.primary.light,
12350
+ [vars$a.backgroundColor]: globalRefs$7.colors.primary.main,
12351
+ [vars$a.textColor]: globalRefs$7.colors.primary.contrast,
12352
+ [vars$a.borderColor]: globalRefs$7.colors.primary.light,
12259
12353
  },
12260
12354
  success: {
12261
- [vars$9.backgroundColor]: globalRefs$7.colors.success.main,
12262
- [vars$9.textColor]: globalRefs$7.colors.success.contrast,
12263
- [vars$9.borderColor]: globalRefs$7.colors.success.light,
12355
+ [vars$a.backgroundColor]: globalRefs$7.colors.success.main,
12356
+ [vars$a.textColor]: globalRefs$7.colors.success.contrast,
12357
+ [vars$a.borderColor]: globalRefs$7.colors.success.light,
12264
12358
  },
12265
12359
  error: {
12266
- [vars$9.backgroundColor]: globalRefs$7.colors.error.main,
12267
- [vars$9.textColor]: globalRefs$7.colors.error.contrast,
12268
- [vars$9.borderColor]: globalRefs$7.colors.error.light,
12360
+ [vars$a.backgroundColor]: globalRefs$7.colors.error.main,
12361
+ [vars$a.textColor]: globalRefs$7.colors.error.contrast,
12362
+ [vars$a.borderColor]: globalRefs$7.colors.error.light,
12269
12363
  },
12270
12364
  },
12271
12365
  };
@@ -12273,128 +12367,128 @@ const notification = {
12273
12367
  var notificationCard = /*#__PURE__*/Object.freeze({
12274
12368
  __proto__: null,
12275
12369
  default: notification,
12276
- vars: vars$9
12370
+ vars: vars$a
12277
12371
  });
12278
12372
 
12279
12373
  const globalRefs$6 = getThemeRefs(globals);
12280
- const vars$8 = MultiSelectComboBoxClass.cssVarList;
12374
+ const vars$9 = MultiSelectComboBoxClass.cssVarList;
12281
12375
 
12282
12376
  const multiSelectComboBox = {
12283
- [vars$8.hostWidth]: refs.width,
12284
- [vars$8.hostDirection]: refs.direction,
12285
- [vars$8.fontSize]: refs.fontSize,
12286
- [vars$8.fontFamily]: refs.fontFamily,
12287
- [vars$8.labelTextColor]: refs.labelTextColor,
12288
- [vars$8.errorMessageTextColor]: refs.errorMessageTextColor,
12289
- [vars$8.inputBorderColor]: refs.borderColor,
12290
- [vars$8.inputBorderWidth]: refs.borderWidth,
12291
- [vars$8.inputBorderStyle]: refs.borderStyle,
12292
- [vars$8.inputBorderRadius]: refs.borderRadius,
12293
- [vars$8.inputOutlineColor]: refs.outlineColor,
12294
- [vars$8.inputOutlineOffset]: refs.outlineOffset,
12295
- [vars$8.inputOutlineWidth]: refs.outlineWidth,
12296
- [vars$8.inputOutlineStyle]: refs.outlineStyle,
12297
- [vars$8.labelRequiredIndicator]: refs.requiredIndicator,
12298
- [vars$8.inputValueTextColor]: refs.valueTextColor,
12299
- [vars$8.inputPlaceholderTextColor]: refs.placeholderTextColor,
12300
- [vars$8.inputBackgroundColor]: refs.backgroundColor,
12301
- [vars$8.inputHorizontalPadding]: refs.horizontalPadding,
12302
- [vars$8.inputVerticalPadding]: refs.verticalPadding,
12303
- [vars$8.inputHeight]: refs.inputHeight,
12304
- [vars$8.inputDropdownButtonColor]: globalRefs$6.colors.surface.dark,
12305
- [vars$8.inputDropdownButtonCursor]: 'pointer',
12306
- [vars$8.inputDropdownButtonSize]: refs.toggleButtonSize,
12307
- [vars$8.inputDropdownButtonOffset]: globalRefs$6.spacing.xs,
12308
- [vars$8.overlayItemPaddingInlineStart]: globalRefs$6.spacing.xs,
12309
- [vars$8.overlayItemPaddingInlineEnd]: globalRefs$6.spacing.lg,
12310
- [vars$8.chipFontSize]: refs.chipFontSize,
12311
- [vars$8.chipTextColor]: globalRefs$6.colors.surface.contrast,
12312
- [vars$8.chipBackgroundColor]: globalRefs$6.colors.surface.light,
12377
+ [vars$9.hostWidth]: refs.width,
12378
+ [vars$9.hostDirection]: refs.direction,
12379
+ [vars$9.fontSize]: refs.fontSize,
12380
+ [vars$9.fontFamily]: refs.fontFamily,
12381
+ [vars$9.labelTextColor]: refs.labelTextColor,
12382
+ [vars$9.errorMessageTextColor]: refs.errorMessageTextColor,
12383
+ [vars$9.inputBorderColor]: refs.borderColor,
12384
+ [vars$9.inputBorderWidth]: refs.borderWidth,
12385
+ [vars$9.inputBorderStyle]: refs.borderStyle,
12386
+ [vars$9.inputBorderRadius]: refs.borderRadius,
12387
+ [vars$9.inputOutlineColor]: refs.outlineColor,
12388
+ [vars$9.inputOutlineOffset]: refs.outlineOffset,
12389
+ [vars$9.inputOutlineWidth]: refs.outlineWidth,
12390
+ [vars$9.inputOutlineStyle]: refs.outlineStyle,
12391
+ [vars$9.labelRequiredIndicator]: refs.requiredIndicator,
12392
+ [vars$9.inputValueTextColor]: refs.valueTextColor,
12393
+ [vars$9.inputPlaceholderTextColor]: refs.placeholderTextColor,
12394
+ [vars$9.inputBackgroundColor]: refs.backgroundColor,
12395
+ [vars$9.inputHorizontalPadding]: refs.horizontalPadding,
12396
+ [vars$9.inputVerticalPadding]: refs.verticalPadding,
12397
+ [vars$9.inputHeight]: refs.inputHeight,
12398
+ [vars$9.inputDropdownButtonColor]: globalRefs$6.colors.surface.dark,
12399
+ [vars$9.inputDropdownButtonCursor]: 'pointer',
12400
+ [vars$9.inputDropdownButtonSize]: refs.toggleButtonSize,
12401
+ [vars$9.inputDropdownButtonOffset]: globalRefs$6.spacing.xs,
12402
+ [vars$9.overlayItemPaddingInlineStart]: globalRefs$6.spacing.xs,
12403
+ [vars$9.overlayItemPaddingInlineEnd]: globalRefs$6.spacing.lg,
12404
+ [vars$9.chipFontSize]: refs.chipFontSize,
12405
+ [vars$9.chipTextColor]: globalRefs$6.colors.surface.contrast,
12406
+ [vars$9.chipBackgroundColor]: globalRefs$6.colors.surface.light,
12313
12407
 
12314
12408
  _readonly: {
12315
- [vars$8.inputDropdownButtonCursor]: 'default',
12409
+ [vars$9.inputDropdownButtonCursor]: 'default',
12316
12410
  },
12317
12411
 
12318
12412
  // Overlay theme exposed via the component:
12319
- [vars$8.overlayFontSize]: refs.fontSize,
12320
- [vars$8.overlayFontFamily]: refs.fontFamily,
12321
- [vars$8.overlayCursor]: 'pointer',
12322
- [vars$8.overlayItemBoxShadow]: 'none',
12323
- [vars$8.overlayBackground]: refs.backgroundColor,
12324
- [vars$8.overlayTextColor]: refs.valueTextColor,
12413
+ [vars$9.overlayFontSize]: refs.fontSize,
12414
+ [vars$9.overlayFontFamily]: refs.fontFamily,
12415
+ [vars$9.overlayCursor]: 'pointer',
12416
+ [vars$9.overlayItemBoxShadow]: 'none',
12417
+ [vars$9.overlayBackground]: refs.backgroundColor,
12418
+ [vars$9.overlayTextColor]: refs.valueTextColor,
12325
12419
 
12326
12420
  // Overlay direct theme:
12327
- [vars$8.overlay.minHeight]: '400px',
12328
- [vars$8.overlay.margin]: '0',
12421
+ [vars$9.overlay.minHeight]: '400px',
12422
+ [vars$9.overlay.margin]: '0',
12329
12423
  };
12330
12424
 
12331
12425
  var multiSelectComboBox$1 = /*#__PURE__*/Object.freeze({
12332
12426
  __proto__: null,
12333
12427
  default: multiSelectComboBox,
12334
12428
  multiSelectComboBox: multiSelectComboBox,
12335
- vars: vars$8
12429
+ vars: vars$9
12336
12430
  });
12337
12431
 
12338
12432
  const globalRefs$5 = getThemeRefs(globals);
12339
- const vars$7 = BadgeClass.cssVarList;
12433
+ const vars$8 = BadgeClass.cssVarList;
12340
12434
 
12341
12435
  const badge = {
12342
- [vars$7.hostWidth]: 'fit-content',
12343
- [vars$7.hostDirection]: globalRefs$5.direction,
12436
+ [vars$8.hostWidth]: 'fit-content',
12437
+ [vars$8.hostDirection]: globalRefs$5.direction,
12344
12438
 
12345
- [vars$7.textAlign]: 'center',
12439
+ [vars$8.textAlign]: 'center',
12346
12440
 
12347
- [vars$7.fontFamily]: globalRefs$5.fonts.font1.family,
12348
- [vars$7.fontWeight]: '400',
12441
+ [vars$8.fontFamily]: globalRefs$5.fonts.font1.family,
12442
+ [vars$8.fontWeight]: '400',
12349
12443
 
12350
- [vars$7.verticalPadding]: '0.25em',
12351
- [vars$7.horizontalPadding]: '0.5em',
12444
+ [vars$8.verticalPadding]: '0.25em',
12445
+ [vars$8.horizontalPadding]: '0.5em',
12352
12446
 
12353
- [vars$7.borderWidth]: globalRefs$5.border.xs,
12354
- [vars$7.borderRadius]: globalRefs$5.radius.xs,
12355
- [vars$7.borderColor]: 'transparent',
12356
- [vars$7.borderStyle]: 'solid',
12447
+ [vars$8.borderWidth]: globalRefs$5.border.xs,
12448
+ [vars$8.borderRadius]: globalRefs$5.radius.xs,
12449
+ [vars$8.borderColor]: 'transparent',
12450
+ [vars$8.borderStyle]: 'solid',
12357
12451
 
12358
12452
  _fullWidth: {
12359
- [vars$7.hostWidth]: '100%',
12453
+ [vars$8.hostWidth]: '100%',
12360
12454
  },
12361
12455
 
12362
12456
  size: {
12363
- xs: { [vars$7.fontSize]: '12px' },
12364
- sm: { [vars$7.fontSize]: '14px' },
12365
- md: { [vars$7.fontSize]: '16px' },
12366
- lg: { [vars$7.fontSize]: '18px' },
12457
+ xs: { [vars$8.fontSize]: '12px' },
12458
+ sm: { [vars$8.fontSize]: '14px' },
12459
+ md: { [vars$8.fontSize]: '16px' },
12460
+ lg: { [vars$8.fontSize]: '18px' },
12367
12461
  },
12368
12462
 
12369
12463
  mode: {
12370
12464
  default: {
12371
- [vars$7.textColor]: globalRefs$5.colors.surface.dark,
12465
+ [vars$8.textColor]: globalRefs$5.colors.surface.dark,
12372
12466
  _bordered: {
12373
- [vars$7.borderColor]: globalRefs$5.colors.surface.light,
12467
+ [vars$8.borderColor]: globalRefs$5.colors.surface.light,
12374
12468
  },
12375
12469
  },
12376
12470
  primary: {
12377
- [vars$7.textColor]: globalRefs$5.colors.primary.main,
12471
+ [vars$8.textColor]: globalRefs$5.colors.primary.main,
12378
12472
  _bordered: {
12379
- [vars$7.borderColor]: globalRefs$5.colors.primary.light,
12473
+ [vars$8.borderColor]: globalRefs$5.colors.primary.light,
12380
12474
  },
12381
12475
  },
12382
12476
  secondary: {
12383
- [vars$7.textColor]: globalRefs$5.colors.secondary.main,
12477
+ [vars$8.textColor]: globalRefs$5.colors.secondary.main,
12384
12478
  _bordered: {
12385
- [vars$7.borderColor]: globalRefs$5.colors.secondary.light,
12479
+ [vars$8.borderColor]: globalRefs$5.colors.secondary.light,
12386
12480
  },
12387
12481
  },
12388
12482
  error: {
12389
- [vars$7.textColor]: globalRefs$5.colors.error.main,
12483
+ [vars$8.textColor]: globalRefs$5.colors.error.main,
12390
12484
  _bordered: {
12391
- [vars$7.borderColor]: globalRefs$5.colors.error.light,
12485
+ [vars$8.borderColor]: globalRefs$5.colors.error.light,
12392
12486
  },
12393
12487
  },
12394
12488
  success: {
12395
- [vars$7.textColor]: globalRefs$5.colors.success.main,
12489
+ [vars$8.textColor]: globalRefs$5.colors.success.main,
12396
12490
  _bordered: {
12397
- [vars$7.borderColor]: globalRefs$5.colors.success.light,
12491
+ [vars$8.borderColor]: globalRefs$5.colors.success.light,
12398
12492
  },
12399
12493
  },
12400
12494
  },
@@ -12403,7 +12497,7 @@ const badge = {
12403
12497
  var badge$1 = /*#__PURE__*/Object.freeze({
12404
12498
  __proto__: null,
12405
12499
  default: badge,
12406
- vars: vars$7
12500
+ vars: vars$8
12407
12501
  });
12408
12502
 
12409
12503
  const globalRefs$4 = getThemeRefs(globals);
@@ -12441,127 +12535,137 @@ const avatar = {
12441
12535
  },
12442
12536
  };
12443
12537
 
12444
- const vars$6 = {
12538
+ const vars$7 = {
12445
12539
  ...compVars,
12446
12540
  };
12447
12541
 
12448
12542
  var avatar$1 = /*#__PURE__*/Object.freeze({
12449
12543
  __proto__: null,
12450
12544
  default: avatar,
12451
- vars: vars$6
12545
+ vars: vars$7
12452
12546
  });
12453
12547
 
12454
12548
  const globalRefs$3 = getThemeRefs(globals);
12455
12549
 
12456
- const vars$5 = MappingsFieldClass.cssVarList;
12550
+ const vars$6 = MappingsFieldClass.cssVarList;
12457
12551
 
12458
12552
  const mappingsField = {
12459
- [vars$5.hostWidth]: refs.width,
12460
- [vars$5.hostDirection]: refs.direction,
12461
- [vars$5.fontSize]: refs.fontSize,
12462
- [vars$5.fontFamily]: refs.fontFamily,
12463
- [vars$5.separatorFontSize]: '14px',
12464
- [vars$5.labelsFontSize]: '14px',
12465
- [vars$5.labelsLineHeight]: '1',
12466
- [vars$5.labelsMarginBottom]: '6px',
12467
- [vars$5.labelTextColor]: refs.labelTextColor,
12468
- [vars$5.itemMarginBottom]: '1em',
12553
+ [vars$6.hostWidth]: refs.width,
12554
+ [vars$6.hostDirection]: refs.direction,
12555
+ [vars$6.fontSize]: refs.fontSize,
12556
+ [vars$6.fontFamily]: refs.fontFamily,
12557
+ [vars$6.separatorFontSize]: '14px',
12558
+ [vars$6.labelsFontSize]: '14px',
12559
+ [vars$6.labelsLineHeight]: '1',
12560
+ [vars$6.labelsMarginBottom]: '6px',
12561
+ [vars$6.labelTextColor]: refs.labelTextColor,
12562
+ [vars$6.itemMarginBottom]: '1em',
12469
12563
  // To be positioned correctly, the min width has to match the text field min width
12470
- [vars$5.valueLabelMinWidth]: refs.minWidth,
12564
+ [vars$6.valueLabelMinWidth]: refs.minWidth,
12471
12565
  // To be positioned correctly, the min width has to match the combo box field min width
12472
- [vars$5.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$3.border.xs})`,
12473
- [vars$5.separatorWidth]: '70px',
12474
- [vars$5.removeButtonWidth]: '60px',
12566
+ [vars$6.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs$3.border.xs})`,
12567
+ [vars$6.separatorWidth]: '70px',
12568
+ [vars$6.removeButtonWidth]: '60px',
12475
12569
  };
12476
12570
 
12477
12571
  var mappingsField$1 = /*#__PURE__*/Object.freeze({
12478
12572
  __proto__: null,
12479
12573
  default: mappingsField,
12480
12574
  mappingsField: mappingsField,
12481
- vars: vars$5
12575
+ vars: vars$6
12482
12576
  });
12483
12577
 
12484
12578
  const globalRefs$2 = getThemeRefs(globals);
12485
- const vars$4 = UserAttributeClass.cssVarList;
12579
+ const vars$5 = UserAttributeClass.cssVarList;
12486
12580
 
12487
12581
  const userAttribute = {
12488
- [vars$4.hostDirection]: globalRefs$2.direction,
12489
- [vars$4.labelTextWidth]: '150px',
12490
- [vars$4.valueTextWidth]: '200px',
12491
- [vars$4.badgeMaxWidth]: '85px',
12492
- [vars$4.itemsGap]: '16px',
12493
- [vars$4.hostMinWidth]: '530px',
12582
+ [vars$5.hostDirection]: globalRefs$2.direction,
12583
+ [vars$5.labelTextWidth]: '150px',
12584
+ [vars$5.valueTextWidth]: '200px',
12585
+ [vars$5.badgeMaxWidth]: '85px',
12586
+ [vars$5.itemsGap]: '16px',
12587
+ [vars$5.hostMinWidth]: '530px',
12494
12588
  _fullWidth: {
12495
- [vars$4.hostWidth]: '100%',
12589
+ [vars$5.hostWidth]: '100%',
12496
12590
  },
12497
12591
  };
12498
12592
 
12499
12593
  var userAttribute$1 = /*#__PURE__*/Object.freeze({
12500
12594
  __proto__: null,
12501
12595
  default: userAttribute,
12502
- vars: vars$4
12596
+ vars: vars$5
12503
12597
  });
12504
12598
 
12505
12599
  const globalRefs$1 = getThemeRefs(globals);
12506
- const vars$3 = UserAuthMethodClass.cssVarList;
12600
+ const vars$4 = UserAuthMethodClass.cssVarList;
12507
12601
 
12508
12602
  const userAuthMethod = {
12509
- [vars$3.hostDirection]: globalRefs$1.direction,
12510
- [vars$3.labelTextWidth]: '200px',
12511
- [vars$3.itemsGap]: '16px',
12512
- [vars$3.hostMinWidth]: '530px',
12513
- [vars$3.iconSize]: '24px',
12603
+ [vars$4.hostDirection]: globalRefs$1.direction,
12604
+ [vars$4.labelTextWidth]: '200px',
12605
+ [vars$4.itemsGap]: '16px',
12606
+ [vars$4.hostMinWidth]: '530px',
12607
+ [vars$4.iconSize]: '24px',
12514
12608
  _fullWidth: {
12515
- [vars$3.hostWidth]: '100%',
12609
+ [vars$4.hostWidth]: '100%',
12516
12610
  },
12517
12611
  };
12518
12612
 
12519
12613
  var userAuthMethod$1 = /*#__PURE__*/Object.freeze({
12520
12614
  __proto__: null,
12521
12615
  default: userAuthMethod,
12522
- vars: vars$3
12616
+ vars: vars$4
12523
12617
  });
12524
12618
 
12525
- const vars$2 = SamlGroupMappingsClass.cssVarList;
12619
+ const vars$3 = SamlGroupMappingsClass.cssVarList;
12526
12620
 
12527
12621
  const samlGroupMappings = {
12528
- [vars$2.hostWidth]: refs.width,
12529
- [vars$2.hostDirection]: refs.direction,
12530
- [vars$2.groupNameInputMarginBottom]: '1em',
12622
+ [vars$3.hostWidth]: refs.width,
12623
+ [vars$3.hostDirection]: refs.direction,
12624
+ [vars$3.groupNameInputMarginBottom]: '1em',
12531
12625
  };
12532
12626
 
12533
12627
  var samlGroupMappings$1 = /*#__PURE__*/Object.freeze({
12534
12628
  __proto__: null,
12535
12629
  default: samlGroupMappings,
12536
12630
  samlGroupMappings: samlGroupMappings,
12537
- vars: vars$2
12631
+ vars: vars$3
12538
12632
  });
12539
12633
 
12540
12634
  const globalRefs = getThemeRefs(globals);
12541
- const vars$1 = PolicyValidationClass.cssVarList;
12635
+ const vars$2 = PolicyValidationClass.cssVarList;
12542
12636
 
12543
12637
  const policyValidation = {
12544
- [vars$1.fontFamily]: refs.fontFamily,
12545
- [vars$1.fontSize]: refs.labelFontSize,
12546
- [vars$1.textColor]: refs.labelTextColor,
12547
- [vars$1.borderWidth]: refs.borderWidth,
12548
- [vars$1.borderStyle]: refs.borderStyle,
12549
- [vars$1.borderColor]: refs.borderColor,
12550
- [vars$1.borderRadius]: globalRefs.radius.sm,
12551
- [vars$1.backgroundColor]: 'none',
12552
- [vars$1.padding]: '0px',
12553
- [vars$1.labelMargin]: globalRefs.spacing.sm,
12554
- [vars$1.itemsSpacing]: globalRefs.spacing.lg,
12555
- [vars$1.itemSymbolDefault]: "'\\2022'", // "•"
12556
- [vars$1.itemSymbolSuccess]: "'\\2713'", // "✓"
12557
- [vars$1.itemSymbolError]: "'\\2A09'", // "⨉"
12558
- [vars$1.itemSymbolSuccessColor]: globalRefs.colors.success.main,
12559
- [vars$1.itemSymbolErrorColor]: globalRefs.colors.error.main,
12638
+ [vars$2.fontFamily]: refs.fontFamily,
12639
+ [vars$2.fontSize]: refs.labelFontSize,
12640
+ [vars$2.textColor]: refs.labelTextColor,
12641
+ [vars$2.borderWidth]: refs.borderWidth,
12642
+ [vars$2.borderStyle]: refs.borderStyle,
12643
+ [vars$2.borderColor]: refs.borderColor,
12644
+ [vars$2.borderRadius]: globalRefs.radius.sm,
12645
+ [vars$2.backgroundColor]: 'none',
12646
+ [vars$2.padding]: '0px',
12647
+ [vars$2.labelMargin]: globalRefs.spacing.sm,
12648
+ [vars$2.itemsSpacing]: globalRefs.spacing.lg,
12649
+ [vars$2.itemSymbolDefault]: "'\\2022'", // "•"
12650
+ [vars$2.itemSymbolSuccess]: "'\\2713'", // "✓"
12651
+ [vars$2.itemSymbolError]: "'\\2A09'", // "⨉"
12652
+ [vars$2.itemSymbolSuccessColor]: globalRefs.colors.success.main,
12653
+ [vars$2.itemSymbolErrorColor]: globalRefs.colors.error.main,
12560
12654
  };
12561
12655
 
12562
12656
  var policyValidation$1 = /*#__PURE__*/Object.freeze({
12563
12657
  __proto__: null,
12564
12658
  default: policyValidation,
12659
+ vars: vars$2
12660
+ });
12661
+
12662
+ const vars$1 = IconClass.cssVarList;
12663
+
12664
+ const icon = {};
12665
+
12666
+ var icon$1 = /*#__PURE__*/Object.freeze({
12667
+ __proto__: null,
12668
+ default: icon,
12565
12669
  vars: vars$1
12566
12670
  });
12567
12671
 
@@ -12606,6 +12710,7 @@ const components = {
12606
12710
  userAuthMethod: userAuthMethod$1,
12607
12711
  samlGroupMappings: samlGroupMappings$1,
12608
12712
  policyValidation: policyValidation$1,
12713
+ icon: icon$1,
12609
12714
  };
12610
12715
 
12611
12716
  const theme = Object.keys(components).reduce(
@@ -12618,7 +12723,7 @@ const vars = Object.keys(components).reduce(
12618
12723
  );
12619
12724
 
12620
12725
  const defaultTheme = { globals, components: theme };
12621
- const themeVars = { globals: vars$F, components: vars };
12726
+ const themeVars = { globals: vars$G, components: vars };
12622
12727
 
12623
12728
  const colors = {
12624
12729
  surface: {
@@ -12664,5 +12769,5 @@ const darkTheme = merge({}, defaultTheme, {
12664
12769
  },
12665
12770
  });
12666
12771
 
12667
- export { AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CheckboxClass, ComboBoxClass, ContainerClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, ImageClass, LinkClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RecaptchaClass, SamlGroupMappingsClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
12772
+ export { AvatarClass, BadgeClass, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CheckboxClass, ComboBoxClass, ContainerClass, DividerClass, EmailFieldClass, EnrichedTextClass, GridClass, IconClass, ImageClass, LinkClass, LoaderLinearClass, LoaderRadialClass, LogoClass, MappingsFieldClass, ModalClass, MultiSelectComboBoxClass, NewPasswordClass, NotificationClass, NotpImageClass, NumberFieldClass, PasscodeClass, PasswordClass, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RecaptchaClass, SamlGroupMappingsClass, SwitchToggleClass, TextAreaClass, TextClass, TextFieldClass, TotpImageClass, UploadFileClass, UserAttributeClass, UserAuthMethodClass, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, genColor, globalsThemeToStyle, themeToStyle, themeVars };
12668
12773
  //# sourceMappingURL=index.esm.js.map