@descope/web-components-ui 3.3.4 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/dist/cjs/index.cjs.js +216 -11
  2. package/dist/cjs/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +216 -11
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/umd/3685.js +1 -1
  6. package/dist/umd/3685.js.map +1 -1
  7. package/dist/umd/7092.js +1 -1
  8. package/dist/umd/7092.js.map +1 -1
  9. package/dist/umd/DescopeDev.js +1 -1
  10. package/dist/umd/DescopeDev.js.map +1 -1
  11. package/dist/umd/descope-date-field-index-js.js +1 -1
  12. package/dist/umd/descope-date-field-index-js.js.map +1 -1
  13. package/dist/umd/descope-email-field-index-js.js +4 -4
  14. package/dist/umd/descope-email-field-index-js.js.map +1 -1
  15. package/dist/umd/descope-hybrid-field-index-js.js +1 -1
  16. package/dist/umd/descope-hybrid-field-index-js.js.map +1 -1
  17. package/dist/umd/descope-multi-select-combo-box-index-js.js +1 -1
  18. package/dist/umd/descope-multi-select-combo-box-index-js.js.map +1 -1
  19. package/dist/umd/descope-new-password-descope-new-password-internal-index-js.js +1 -1
  20. package/dist/umd/descope-new-password-descope-new-password-internal-index-js.js.map +1 -1
  21. package/dist/umd/descope-new-password-index-js.js +1 -1
  22. package/dist/umd/descope-new-password-index-js.js.map +1 -1
  23. package/dist/umd/descope-number-field-index-js.js +1 -1
  24. package/dist/umd/descope-number-field-index-js.js.map +1 -1
  25. package/dist/umd/descope-passcode-index-js.js +1 -1
  26. package/dist/umd/descope-passcode-index-js.js.map +1 -1
  27. package/dist/umd/descope-password-index-js.js +1 -1
  28. package/dist/umd/descope-password-index-js.js.map +1 -1
  29. package/dist/umd/descope-radio-group-index-js.js +1 -1
  30. package/dist/umd/descope-radio-group-index-js.js.map +1 -1
  31. package/dist/umd/descope-security-questions-setup-index-js.js +1 -1
  32. package/dist/umd/descope-security-questions-setup-index-js.js.map +1 -1
  33. package/dist/umd/descope-security-questions-verify-index-js.js +1 -1
  34. package/dist/umd/descope-security-questions-verify-index-js.js.map +1 -1
  35. package/dist/umd/descope-text-area-index-js.js +1 -1
  36. package/dist/umd/descope-text-area-index-js.js.map +1 -1
  37. package/dist/umd/descope-text-field-index-js.js +1 -1
  38. package/dist/umd/descope-text-field-index-js.js.map +1 -1
  39. package/dist/umd/index.js +1 -1
  40. package/dist/umd/mapping-fields-descope-mappings-field-index-js.js +1 -1
  41. package/dist/umd/mapping-fields-descope-mappings-field-index-js.js.map +1 -1
  42. package/dist/umd/mapping-fields-descope-saml-group-mappings-index-js.js +1 -1
  43. package/dist/umd/mapping-fields-descope-saml-group-mappings-index-js.js.map +1 -1
  44. package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
  45. package/dist/umd/phone-fields-descope-phone-field-index-js.js.map +1 -1
  46. package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js +1 -1
  47. package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js.map +1 -1
  48. package/package.json +32 -32
  49. package/src/components/descope-date-field/DateFieldClass.js +20 -0
  50. package/src/components/descope-hybrid-field/HybridFieldClass.js +50 -0
  51. package/src/components/descope-multi-select-combo-box/MultiSelectComboBoxClass.js +4 -0
  52. package/src/components/descope-new-password/NewPasswordClass.js +10 -0
  53. package/src/components/descope-passcode/PasscodeClass.js +6 -0
  54. package/src/components/descope-password/PasswordClass.js +10 -0
  55. package/src/components/descope-text-area/TextAreaClass.js +6 -0
  56. package/src/components/descope-text-field/textFieldMappings.js +11 -0
  57. package/src/components/phone-fields/descope-phone-field/PhoneFieldClass.js +9 -0
  58. package/src/components/phone-fields/descope-phone-input-box-field/PhoneFieldInputBoxClass.js +4 -0
  59. package/src/theme/components/container.js +1 -0
  60. package/src/theme/components/dateField.js +6 -0
  61. package/src/theme/components/emailField.js +4 -0
  62. package/src/theme/components/hybridField.js +5 -0
  63. package/src/theme/components/inputWrapper.js +4 -0
  64. package/src/theme/components/multiSelectComboBox.js +4 -0
  65. package/src/theme/components/newPassword.js +4 -0
  66. package/src/theme/components/numberField.js +4 -0
  67. package/src/theme/components/passcode.js +3 -0
  68. package/src/theme/components/password.js +4 -0
  69. package/src/theme/components/phoneField.js +6 -0
  70. package/src/theme/components/phoneInputBoxField.js +4 -0
  71. package/src/theme/components/textArea.js +6 -0
  72. package/src/theme/components/textField.js +4 -0
@@ -4138,7 +4138,7 @@ const ComboBoxMixin = (superclass) =>
4138
4138
  return ['label-type', 'require-match'];
4139
4139
  }
4140
4140
 
4141
- // eslint-disable-next-line class-methods-use-this
4141
+
4142
4142
  #renderItem = ({ displayName, value, label }) => {
4143
4143
  return `<span data-name="${label}" data-id="${value}">${
4144
4144
  displayName || label
@@ -4189,7 +4189,7 @@ const ComboBoxMixin = (superclass) =>
4189
4189
  return data;
4190
4190
  }
4191
4191
  } catch (e) {
4192
- // eslint-disable-next-line no-console
4192
+
4193
4193
  console.error(
4194
4194
  'could not parse data string from attribute "data" -',
4195
4195
  e.message,
@@ -4208,14 +4208,16 @@ const ComboBoxMixin = (superclass) =>
4208
4208
  }
4209
4209
 
4210
4210
  get requireMatch() {
4211
- return this.getAttribute('require-match') === 'true' && !this.allowCustomValue;
4211
+ return (
4212
+ this.getAttribute('require-match') === 'true' && !this.allowCustomValue
4213
+ );
4212
4214
  }
4213
4215
 
4214
- // eslint-disable-next-line class-methods-use-this
4216
+
4215
4217
  isValidDataType(data) {
4216
4218
  const isValid = Array.isArray(data);
4217
4219
  if (!isValid) {
4218
- // eslint-disable-next-line no-console
4220
+
4219
4221
  console.error('data must be an array, received:', data);
4220
4222
  }
4221
4223
 
@@ -4264,7 +4266,7 @@ const ComboBoxMixin = (superclass) =>
4264
4266
  }
4265
4267
  }
4266
4268
 
4267
- // eslint-disable-next-line class-methods-use-this
4269
+
4268
4270
  customValueTransformFn(val) {
4269
4271
  return val;
4270
4272
  }
@@ -4349,7 +4351,7 @@ const ComboBoxMixin = (superclass) =>
4349
4351
  // and not via default renderer, which renders only the data-name's value
4350
4352
  // in its own HTML template
4351
4353
  this.baseElement.renderer = (root, combo, model) => {
4352
- // eslint-disable-next-line no-param-reassign
4354
+
4353
4355
  root.innerHTML = model.item.outerHTML;
4354
4356
  };
4355
4357
  }
@@ -4367,7 +4369,9 @@ const ComboBoxMixin = (superclass) =>
4367
4369
  const val = this.baseElement.querySelector('input').value;
4368
4370
 
4369
4371
  if (val) {
4370
- return this.baseElement.items.some(item => item.dataset.name === val || item.dataset.id === val);
4372
+ return this.baseElement.items.some(
4373
+ (item) => item.dataset.name === val || item.dataset.id === val,
4374
+ );
4371
4375
  }
4372
4376
 
4373
4377
  return true;
@@ -4376,7 +4380,7 @@ const ComboBoxMixin = (superclass) =>
4376
4380
  init() {
4377
4381
  super.init?.();
4378
4382
 
4379
- // eslint-disable-next-line func-names
4383
+
4380
4384
  this.getValidity = function () {
4381
4385
  if (this.requireMatch && !this.isValueMatch()) {
4382
4386
  return {
@@ -4442,7 +4446,8 @@ const ComboBoxMixin = (superclass) =>
4442
4446
  }
4443
4447
 
4444
4448
  handleRequireMatchChange(shouldValidate) {
4445
- this.baseElement.allowCustomValue = shouldValidate || this.allowCustomValue;
4449
+ this.baseElement.allowCustomValue =
4450
+ shouldValidate || this.allowCustomValue;
4446
4451
  }
4447
4452
 
4448
4453
  attributeChangedCallback(attrName, oldValue, newValue) {
@@ -4554,6 +4559,10 @@ const ComboBoxClass = compose(
4554
4559
  fontFamily: [label$9, placeholder$3, inputField$6, helperText$a, errorMessage$d],
4555
4560
  labelFontSize: { ...label$9, property: 'font-size' },
4556
4561
  labelFontWeight: { ...label$9, property: 'font-weight' },
4562
+ inputValueFontWeight: { ...inputField$6, property: 'font-weight' },
4563
+ inputPlaceholderFontWeight: { ...placeholder$3, property: 'font-weight' },
4564
+ helperTextFontWeight: { ...helperText$a, property: 'font-weight' },
4565
+ errorMessageFontWeight: { ...errorMessage$d, property: 'font-weight' },
4557
4566
  labelTextColor: [
4558
4567
  { ...label$9, property: 'color' },
4559
4568
  { ...label$9, property: '-webkit-text-fill-color' },
@@ -4827,6 +4836,10 @@ const [theme$2, refs$1] = createHelperVars$1(
4827
4836
  labelTextColor: globalRefs$D.colors.surface.dark,
4828
4837
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
4829
4838
  labelFontWeight: '500', // not taken from globals as it is fixed in all inputs
4839
+ inputValueFontWeight: '400',
4840
+ inputPlaceholderFontWeight: '400',
4841
+ helperTextFontWeight: '400',
4842
+ errorMessageFontWeight: '400',
4830
4843
  valueTextColor: globalRefs$D.colors.surface.contrast,
4831
4844
  placeholderTextColor: globalRefs$D.colors.surface.dark,
4832
4845
  requiredIndicator: "'*'",
@@ -4866,7 +4879,6 @@ const [theme$2, refs$1] = createHelperVars$1(
4866
4879
  errorMessageIconPosition: '0 0.4em',
4867
4880
  errorMessageFontSize: '0.8125rem',
4868
4881
  errorMessageIconRepeat: 'no-repeat',
4869
- errorMessageIconRepeat: 'no-repeat',
4870
4882
 
4871
4883
  size: {
4872
4884
  xs: { fontSize: '12px', chipFontSize: '10px' },
@@ -4955,6 +4967,10 @@ const comboBox = {
4955
4967
  [vars$11.fontFamily]: refs$1.fontFamily,
4956
4968
  [vars$11.labelFontSize]: refs$1.labelFontSize,
4957
4969
  [vars$11.labelFontWeight]: refs$1.labelFontWeight,
4970
+ [vars$11.inputValueFontWeight]: refs$1.inputValueFontWeight,
4971
+ [vars$11.inputPlaceholderFontWeight]: refs$1.inputPlaceholderFontWeight,
4972
+ [vars$11.helperTextFontWeight]: refs$1.helperTextFontWeight,
4973
+ [vars$11.errorMessageFontWeight]: refs$1.errorMessageFontWeight,
4958
4974
  [vars$11.labelTextColor]: refs$1.labelTextColor,
4959
4975
  [vars$11.errorMessageTextColor]: refs$1.errorMessageTextColor,
4960
4976
  [vars$11.inputBorderColor]: refs$1.borderColor,
@@ -11751,6 +11767,17 @@ var textFieldMappings = {
11751
11767
  labelFontSize: { ...label$8, property: 'font-size' },
11752
11768
  labelFontWeight: { ...label$8, property: 'font-weight' },
11753
11769
 
11770
+ inputValueFontWeight: [
11771
+ { ...input$1, property: 'font-weight' },
11772
+ { ...externalInput, property: 'font-weight' },
11773
+ ],
11774
+ inputPlaceholderFontWeight: [
11775
+ { selector: () => ':host input:placeholder-shown', property: 'font-weight' },
11776
+ { ...externalPlaceholder, property: 'font-weight' },
11777
+ ],
11778
+ helperTextFontWeight: { ...helperText$9, property: 'font-weight' },
11779
+ errorMessageFontWeight: { ...errorMessage$c, property: 'font-weight' },
11780
+
11754
11781
  labelTextColor: [
11755
11782
  { ...label$8, property: 'color' },
11756
11783
  { ...requiredIndicator$a, property: 'color' },
@@ -11997,6 +12024,10 @@ const [theme$1, refs, vars$I] = createHelperVars(
11997
12024
  labelTextColor: globalRefs$p.colors.surface.dark,
11998
12025
  labelFontSize: '14px', // not taken from globals as it is fixed in all inputs
11999
12026
  labelFontWeight: '500', // not taken from globals as it is fixed in all inputs
12027
+ inputValueFontWeight: '400',
12028
+ inputPlaceholderFontWeight: '400',
12029
+ helperTextFontWeight: '400',
12030
+ errorMessageFontWeight: '400',
12000
12031
  valueTextColor: globalRefs$p.colors.surface.contrast,
12001
12032
  placeholderTextColor: globalRefs$p.colors.surface.dark,
12002
12033
  requiredIndicator: "'*'",
@@ -12136,6 +12167,10 @@ const textField$1 = {
12136
12167
  [vars$H.fontFamily]: refs.fontFamily,
12137
12168
  [vars$H.labelFontSize]: refs.labelFontSize,
12138
12169
  [vars$H.labelFontWeight]: refs.labelFontWeight,
12170
+ [vars$H.inputValueFontWeight]: refs.inputValueFontWeight,
12171
+ [vars$H.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
12172
+ [vars$H.helperTextFontWeight]: refs.helperTextFontWeight,
12173
+ [vars$H.errorMessageFontWeight]: refs.errorMessageFontWeight,
12139
12174
  [vars$H.labelTextColor]: refs.labelTextColor,
12140
12175
  [vars$H.labelRequiredIndicator]: refs.requiredIndicator,
12141
12176
  [vars$H.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -12390,6 +12425,16 @@ const PasswordClass = compose$1(
12390
12425
 
12391
12426
  labelFontSize: { ...label$7, property: 'font-size' },
12392
12427
  labelFontWeight: { ...label$7, property: 'font-weight' },
12428
+ inputValueFontWeight: [
12429
+ { ...inputElement$2, property: 'font-weight' },
12430
+ { selector: () => ':host ::slotted(input)', property: 'font-weight' },
12431
+ ],
12432
+ inputPlaceholderFontWeight: [
12433
+ { ...inputElementPlaceholder, property: 'font-weight' },
12434
+ { selector: () => ':host ::slotted(input:placeholder-shown)', property: 'font-weight' },
12435
+ ],
12436
+ helperTextFontWeight: { ...helperText$8, property: 'font-weight' },
12437
+ errorMessageFontWeight: { ...errorMessage$b, property: 'font-weight' },
12393
12438
  labelTextColor: [
12394
12439
  { ...label$7, property: 'color' },
12395
12440
  { ...label$7, property: '-webkit-text-fill-color' },
@@ -12530,6 +12575,10 @@ const password = {
12530
12575
  [vars$G.fontFamily]: refs.fontFamily,
12531
12576
  [vars$G.labelFontSize]: refs.labelFontSize,
12532
12577
  [vars$G.labelFontWeight]: refs.labelFontWeight,
12578
+ [vars$G.inputValueFontWeight]: refs.inputValueFontWeight,
12579
+ [vars$G.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
12580
+ [vars$G.helperTextFontWeight]: refs.helperTextFontWeight,
12581
+ [vars$G.errorMessageFontWeight]: refs.errorMessageFontWeight,
12533
12582
  [vars$G.labelTextColor]: refs.labelTextColor,
12534
12583
  [vars$G.errorMessageTextColor]: refs.errorMessageTextColor,
12535
12584
  [vars$G.inputHorizontalPadding]: refs.horizontalPadding,
@@ -12622,6 +12671,10 @@ const numberField = {
12622
12671
  [vars$F.fontFamily]: refs.fontFamily,
12623
12672
  [vars$F.labelFontSize]: refs.labelFontSize,
12624
12673
  [vars$F.labelFontWeight]: refs.labelFontWeight,
12674
+ [vars$F.inputValueFontWeight]: refs.inputValueFontWeight,
12675
+ [vars$F.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
12676
+ [vars$F.helperTextFontWeight]: refs.helperTextFontWeight,
12677
+ [vars$F.errorMessageFontWeight]: refs.errorMessageFontWeight,
12625
12678
  [vars$F.labelTextColor]: refs.labelTextColor,
12626
12679
  [vars$F.errorMessageTextColor]: refs.errorMessageTextColor,
12627
12680
  [vars$F.inputValueTextColor]: refs.valueTextColor,
@@ -12747,6 +12800,10 @@ const emailField = {
12747
12800
  [vars$E.fontFamily]: refs.fontFamily,
12748
12801
  [vars$E.labelFontSize]: refs.labelFontSize,
12749
12802
  [vars$E.labelFontWeight]: refs.labelFontWeight,
12803
+ [vars$E.inputValueFontWeight]: refs.inputValueFontWeight,
12804
+ [vars$E.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
12805
+ [vars$E.helperTextFontWeight]: refs.helperTextFontWeight,
12806
+ [vars$E.errorMessageFontWeight]: refs.errorMessageFontWeight,
12750
12807
  [vars$E.labelTextColor]: refs.labelTextColor,
12751
12808
  [vars$E.errorMessageTextColor]: refs.errorMessageTextColor,
12752
12809
  [vars$E.inputValueTextColor]: refs.valueTextColor,
@@ -12819,6 +12876,12 @@ const TextAreaClass = compose$1(
12819
12876
  hostDirection: { ...host$i, property: 'direction' },
12820
12877
  fontSize: [host$i, textArea$2],
12821
12878
  fontFamily: [label$6, inputField$3, helperText$7, errorMessage$a],
12879
+ labelFontSize: { ...label$6, property: 'font-size' },
12880
+ labelFontWeight: { ...label$6, property: 'font-weight' },
12881
+ inputValueFontWeight: { ...textArea$2, property: 'font-weight' },
12882
+ inputPlaceholderFontWeight: { ...placeholder$1, property: 'font-weight' },
12883
+ helperTextFontWeight: { ...helperText$7, property: 'font-weight' },
12884
+ errorMessageFontWeight: { ...errorMessage$a, property: 'font-weight' },
12822
12885
  labelTextColor: [
12823
12886
  { ...label$6, property: 'color' },
12824
12887
  { ...label$6, property: '-webkit-text-fill-color' },
@@ -12884,6 +12947,12 @@ const textArea = {
12884
12947
  [vars$D.hostDirection]: refs.direction,
12885
12948
  [vars$D.fontSize]: refs.fontSize,
12886
12949
  [vars$D.fontFamily]: refs.fontFamily,
12950
+ [vars$D.labelFontSize]: refs.labelFontSize,
12951
+ [vars$D.labelFontWeight]: refs.labelFontWeight,
12952
+ [vars$D.inputValueFontWeight]: refs.inputValueFontWeight,
12953
+ [vars$D.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
12954
+ [vars$D.helperTextFontWeight]: refs.helperTextFontWeight,
12955
+ [vars$D.errorMessageFontWeight]: refs.errorMessageFontWeight,
12887
12956
  [vars$D.labelTextColor]: refs.labelTextColor,
12888
12957
  [vars$D.labelRequiredIndicator]: refs.requiredIndicator,
12889
12958
  [vars$D.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -13533,6 +13602,7 @@ const container = {
13533
13602
 
13534
13603
  [compVars$3.itemsGrow]: '0',
13535
13604
  [compVars$3.hostWidth]: '100%',
13605
+ [compVars$3.hostHeight]: 'auto',
13536
13606
  [compVars$3.boxShadow]: 'none',
13537
13607
 
13538
13608
  [compVars$3.backgroundColor]: globalRefs$l.colors.surface.main,
@@ -14056,6 +14126,12 @@ const PasscodeClass = compose$1(
14056
14126
  hostWidth: { property: 'width' },
14057
14127
  hostDirection: { ...host$e, property: 'direction' },
14058
14128
  fontFamily: [host$e, { ...label$5 }],
14129
+ labelFontWeight: { ...label$5, property: 'font-weight' },
14130
+ errorMessageFontWeight: { ...errorMessage$7, property: 'font-weight' },
14131
+ digitValueFontWeight: {
14132
+ selector: TextFieldClass.componentName,
14133
+ property: textVars$3.inputValueFontWeight,
14134
+ },
14059
14135
  labelTextColor: [
14060
14136
  { ...label$5, property: 'color' },
14061
14137
  { ...label$5, property: '-webkit-text-fill-color' },
@@ -14187,8 +14263,11 @@ const passcode = {
14187
14263
  [vars$v.fontSize]: refs.fontSize,
14188
14264
  [vars$v.labelTextColor]: refs.labelTextColor,
14189
14265
  [vars$v.labelRequiredIndicator]: refs.requiredIndicator,
14266
+ [vars$v.labelFontWeight]: refs.labelFontWeight,
14190
14267
  [vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
14268
+ [vars$v.errorMessageFontWeight]: refs.errorMessageFontWeight,
14191
14269
  [vars$v.digitValueTextColor]: refs.valueTextColor,
14270
+ [vars$v.digitValueFontWeight]: refs.inputValueFontWeight,
14192
14271
  [vars$v.digitPadding]: '0',
14193
14272
  [vars$v.digitTextAlign]: 'center',
14194
14273
  [vars$v.digitSpacing]: '4px',
@@ -15767,6 +15846,15 @@ const PhoneFieldClass = compose$1(
15767
15846
  { ...countryCodeInput, property: 'padding-right' },
15768
15847
  ],
15769
15848
 
15849
+ labelFontSize: { ...label$4, property: 'font-size' },
15850
+ labelFontWeight: { ...label$4, property: 'font-weight' },
15851
+ inputValueFontWeight: [
15852
+ { ...phoneInput$1, property: textVars$2.inputValueFontWeight },
15853
+ { ...countryCodeInput, property: comboVars.inputValueFontWeight },
15854
+ ],
15855
+ inputPlaceholderFontWeight: { ...phoneInput$1, property: textVars$2.inputPlaceholderFontWeight },
15856
+ helperTextFontWeight: { ...helperText$4, property: 'font-weight' },
15857
+ errorMessageFontWeight: { ...errorMessage$6, property: 'font-weight' },
15770
15858
  labelTextColor: [
15771
15859
  { ...label$4, property: 'color' },
15772
15860
  { ...label$4, property: '-webkit-text-fill-color' },
@@ -15922,6 +16010,12 @@ const phoneField = {
15922
16010
  [vars$s.hostDirection]: refs.direction,
15923
16011
  [vars$s.fontSize]: refs.fontSize,
15924
16012
  [vars$s.fontFamily]: refs.fontFamily,
16013
+ [vars$s.labelFontSize]: refs.labelFontSize,
16014
+ [vars$s.labelFontWeight]: refs.labelFontWeight,
16015
+ [vars$s.inputValueFontWeight]: refs.inputValueFontWeight,
16016
+ [vars$s.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
16017
+ [vars$s.helperTextFontWeight]: refs.helperTextFontWeight,
16018
+ [vars$s.errorMessageFontWeight]: refs.errorMessageFontWeight,
15925
16019
  [vars$s.labelTextColor]: refs.labelTextColor,
15926
16020
  [vars$s.labelRequiredIndicator]: refs.requiredIndicator,
15927
16021
  [vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -16065,6 +16159,10 @@ const PhoneFieldInputBoxClass = compose$1(
16065
16159
 
16066
16160
  labelFontSize: { ...label$3, property: 'font-size' },
16067
16161
  labelFontWeight: { ...label$3, property: 'font-weight' },
16162
+ inputValueFontWeight: { ...phoneInput, property: textVars$1.inputValueFontWeight },
16163
+ inputPlaceholderFontWeight: { ...phoneInput, property: textVars$1.inputPlaceholderFontWeight },
16164
+ helperTextFontWeight: { ...helperText$3, property: 'font-weight' },
16165
+ errorMessageFontWeight: { ...errorMessage$5, property: 'font-weight' },
16068
16166
  labelTextColor: [
16069
16167
  { ...label$3, property: 'color' },
16070
16168
  { ...label$3, property: '-webkit-text-fill-color' },
@@ -16207,6 +16305,10 @@ const phoneInputBoxField = {
16207
16305
  [vars$r.fontFamily]: refs.fontFamily,
16208
16306
  [vars$r.labelFontSize]: refs.labelFontSize,
16209
16307
  [vars$r.labelFontWeight]: refs.labelFontWeight,
16308
+ [vars$r.inputValueFontWeight]: refs.inputValueFontWeight,
16309
+ [vars$r.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
16310
+ [vars$r.helperTextFontWeight]: refs.helperTextFontWeight,
16311
+ [vars$r.errorMessageFontWeight]: refs.errorMessageFontWeight,
16210
16312
  [vars$r.labelTextColor]: refs.labelTextColor,
16211
16313
  [vars$r.labelRequiredIndicator]: refs.requiredIndicator,
16212
16314
  [vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -16656,6 +16758,16 @@ const NewPasswordClass = compose$1(
16656
16758
  fontFamily: [label$2, errorMessage$4, helperText$2],
16657
16759
  labelFontSize: { ...label$2, property: 'font-size' },
16658
16760
  labelFontWeight: { ...label$2, property: 'font-weight' },
16761
+ inputValueFontWeight: {
16762
+ ...passwordInput,
16763
+ property: PasswordClass.cssVarList.inputValueFontWeight,
16764
+ },
16765
+ inputPlaceholderFontWeight: {
16766
+ ...passwordInput,
16767
+ property: PasswordClass.cssVarList.inputPlaceholderFontWeight,
16768
+ },
16769
+ helperTextFontWeight: { ...helperText$2, property: 'font-weight' },
16770
+ errorMessageFontWeight: { ...errorMessage$4, property: 'font-weight' },
16659
16771
  labelTextColor: { ...label$2, property: 'color' },
16660
16772
  errorMessageTextColor: { ...errorMessage$4, property: 'color' },
16661
16773
  errorMessageIcon: { ...errorMessage$4, property: 'background-image' },
@@ -16761,6 +16873,10 @@ const newPassword = {
16761
16873
  [vars$q.fontFamily]: refs.fontFamily,
16762
16874
  [vars$q.labelFontSize]: refs.labelFontSize,
16763
16875
  [vars$q.labelFontWeight]: refs.labelFontWeight,
16876
+ [vars$q.inputValueFontWeight]: refs.inputValueFontWeight,
16877
+ [vars$q.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
16878
+ [vars$q.helperTextFontWeight]: refs.helperTextFontWeight,
16879
+ [vars$q.errorMessageFontWeight]: refs.errorMessageFontWeight,
16764
16880
  [vars$q.labelTextColor]: refs.labelTextColor,
16765
16881
  [vars$q.spaceBetweenInputs]: '1em',
16766
16882
  [vars$q.errorMessageTextColor]: refs.errorMessageTextColor,
@@ -19127,6 +19243,10 @@ const MultiSelectComboBoxClass = compose$1(
19127
19243
  fontFamily: [label, placeholder, inputField, helperText$1, errorMessage$2, chipLabel],
19128
19244
  labelFontSize: { ...label, property: 'font-size' },
19129
19245
  labelFontWeight: { ...label, property: 'font-weight' },
19246
+ inputValueFontWeight: { ...inputField, property: 'font-weight' },
19247
+ inputPlaceholderFontWeight: { ...placeholder, property: 'font-weight' },
19248
+ helperTextFontWeight: { ...helperText$1, property: 'font-weight' },
19249
+ errorMessageFontWeight: { ...errorMessage$2, property: 'font-weight' },
19130
19250
  labelTextColor: [
19131
19251
  { ...label, property: 'color' },
19132
19252
  { ...requiredIndicator, property: 'color' },
@@ -19348,6 +19468,10 @@ const multiSelectComboBox = {
19348
19468
  [vars$i.fontFamily]: refs.fontFamily,
19349
19469
  [vars$i.labelFontSize]: refs.labelFontSize,
19350
19470
  [vars$i.labelFontWeight]: refs.labelFontWeight,
19471
+ [vars$i.inputValueFontWeight]: refs.inputValueFontWeight,
19472
+ [vars$i.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
19473
+ [vars$i.helperTextFontWeight]: refs.helperTextFontWeight,
19474
+ [vars$i.errorMessageFontWeight]: refs.errorMessageFontWeight,
19351
19475
  [vars$i.labelTextColor]: refs.labelTextColor,
19352
19476
  [vars$i.errorMessageTextColor]: refs.errorMessageTextColor,
19353
19477
  [vars$i.inputBorderColor]: refs.borderColor,
@@ -23299,6 +23423,26 @@ const DateFieldClass = compose$1(
23299
23423
  selector: TextFieldClass.componentName,
23300
23424
  property: TextFieldClass.cssVarList.errorMessageFontSize,
23301
23425
  },
23426
+ labelFontWeight: {
23427
+ selector: TextFieldClass.componentName,
23428
+ property: TextFieldClass.cssVarList.labelFontWeight,
23429
+ },
23430
+ inputValueFontWeight: {
23431
+ selector: TextFieldClass.componentName,
23432
+ property: TextFieldClass.cssVarList.inputValueFontWeight,
23433
+ },
23434
+ inputPlaceholderFontWeight: {
23435
+ selector: TextFieldClass.componentName,
23436
+ property: TextFieldClass.cssVarList.inputPlaceholderFontWeight,
23437
+ },
23438
+ helperTextFontWeight: {
23439
+ selector: TextFieldClass.componentName,
23440
+ property: TextFieldClass.cssVarList.helperTextFontWeight,
23441
+ },
23442
+ errorMessageFontWeight: {
23443
+ selector: TextFieldClass.componentName,
23444
+ property: TextFieldClass.cssVarList.errorMessageFontWeight,
23445
+ },
23302
23446
  },
23303
23447
  }),
23304
23448
  portalMixin({
@@ -23350,6 +23494,12 @@ const dateField = {
23350
23494
  [vars$8.errorMessageIconRepeat]: refs.errorMessageIconRepeat,
23351
23495
  [vars$8.errorMessageIconPosition]: refs.errorMessageIconPosition,
23352
23496
  [vars$8.errorMessageFontSize]: refs.errorMessageFontSize,
23497
+
23498
+ [vars$8.labelFontWeight]: refs.labelFontWeight,
23499
+ [vars$8.inputValueFontWeight]: refs.inputValueFontWeight,
23500
+ [vars$8.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
23501
+ [vars$8.helperTextFontWeight]: refs.helperTextFontWeight,
23502
+ [vars$8.errorMessageFontWeight]: refs.errorMessageFontWeight,
23353
23503
  };
23354
23504
 
23355
23505
  var dateField$1 = /*#__PURE__*/Object.freeze({
@@ -24633,6 +24783,56 @@ const HybridFieldClass = compose$1(
24633
24783
  property: PhoneFieldInputBoxClass.cssVarList.errorMessageFontSize,
24634
24784
  },
24635
24785
  ],
24786
+ labelFontWeight: [
24787
+ {
24788
+ selector: () => PhoneFieldClass.componentName,
24789
+ property: PhoneFieldClass.cssVarList.labelFontWeight,
24790
+ },
24791
+ {
24792
+ selector: () => PhoneFieldInputBoxClass.componentName,
24793
+ property: PhoneFieldInputBoxClass.cssVarList.labelFontWeight,
24794
+ },
24795
+ ],
24796
+ inputValueFontWeight: [
24797
+ {
24798
+ selector: () => PhoneFieldClass.componentName,
24799
+ property: PhoneFieldClass.cssVarList.inputValueFontWeight,
24800
+ },
24801
+ {
24802
+ selector: () => PhoneFieldInputBoxClass.componentName,
24803
+ property: PhoneFieldInputBoxClass.cssVarList.inputValueFontWeight,
24804
+ },
24805
+ ],
24806
+ inputPlaceholderFontWeight: [
24807
+ {
24808
+ selector: () => PhoneFieldClass.componentName,
24809
+ property: PhoneFieldClass.cssVarList.inputPlaceholderFontWeight,
24810
+ },
24811
+ {
24812
+ selector: () => PhoneFieldInputBoxClass.componentName,
24813
+ property: PhoneFieldInputBoxClass.cssVarList.inputPlaceholderFontWeight,
24814
+ },
24815
+ ],
24816
+ helperTextFontWeight: [
24817
+ {
24818
+ selector: () => PhoneFieldClass.componentName,
24819
+ property: PhoneFieldClass.cssVarList.helperTextFontWeight,
24820
+ },
24821
+ {
24822
+ selector: () => PhoneFieldInputBoxClass.componentName,
24823
+ property: PhoneFieldInputBoxClass.cssVarList.helperTextFontWeight,
24824
+ },
24825
+ ],
24826
+ errorMessageFontWeight: [
24827
+ {
24828
+ selector: () => PhoneFieldClass.componentName,
24829
+ property: PhoneFieldClass.cssVarList.errorMessageFontWeight,
24830
+ },
24831
+ {
24832
+ selector: () => PhoneFieldInputBoxClass.componentName,
24833
+ property: PhoneFieldInputBoxClass.cssVarList.errorMessageFontWeight,
24834
+ },
24835
+ ],
24636
24836
  },
24637
24837
  }),
24638
24838
  draggableMixin,
@@ -24643,6 +24843,11 @@ const vars$3 = HybridFieldClass.cssVarList;
24643
24843
 
24644
24844
  const hybridField = {
24645
24845
  [vars$3.hostDirection]: refs.direction,
24846
+ [vars$3.labelFontWeight]: refs.labelFontWeight,
24847
+ [vars$3.inputValueFontWeight]: refs.inputValueFontWeight,
24848
+ [vars$3.inputPlaceholderFontWeight]: refs.inputPlaceholderFontWeight,
24849
+ [vars$3.helperTextFontWeight]: refs.helperTextFontWeight,
24850
+ [vars$3.errorMessageFontWeight]: refs.errorMessageFontWeight,
24646
24851
 
24647
24852
  // error message icon
24648
24853
  [vars$3.errorMessageIcon]: refs.errorMessageIcon,