@descope/web-components-ui 3.3.5 → 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.
- package/dist/cjs/index.cjs.js +215 -11
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +215 -11
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/3685.js +1 -1
- package/dist/umd/3685.js.map +1 -1
- package/dist/umd/7092.js +1 -1
- package/dist/umd/7092.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/DescopeDev.js.map +1 -1
- package/dist/umd/descope-date-field-index-js.js +1 -1
- package/dist/umd/descope-date-field-index-js.js.map +1 -1
- package/dist/umd/descope-email-field-index-js.js +4 -4
- package/dist/umd/descope-email-field-index-js.js.map +1 -1
- package/dist/umd/descope-hybrid-field-index-js.js +1 -1
- package/dist/umd/descope-hybrid-field-index-js.js.map +1 -1
- package/dist/umd/descope-multi-select-combo-box-index-js.js +1 -1
- package/dist/umd/descope-multi-select-combo-box-index-js.js.map +1 -1
- package/dist/umd/descope-new-password-descope-new-password-internal-index-js.js +1 -1
- package/dist/umd/descope-new-password-descope-new-password-internal-index-js.js.map +1 -1
- package/dist/umd/descope-new-password-index-js.js +1 -1
- package/dist/umd/descope-new-password-index-js.js.map +1 -1
- package/dist/umd/descope-number-field-index-js.js +1 -1
- package/dist/umd/descope-number-field-index-js.js.map +1 -1
- package/dist/umd/descope-passcode-index-js.js +1 -1
- package/dist/umd/descope-passcode-index-js.js.map +1 -1
- package/dist/umd/descope-password-index-js.js +1 -1
- package/dist/umd/descope-password-index-js.js.map +1 -1
- package/dist/umd/descope-radio-group-index-js.js +1 -1
- package/dist/umd/descope-radio-group-index-js.js.map +1 -1
- package/dist/umd/descope-security-questions-setup-index-js.js +1 -1
- package/dist/umd/descope-security-questions-setup-index-js.js.map +1 -1
- package/dist/umd/descope-security-questions-verify-index-js.js +1 -1
- package/dist/umd/descope-security-questions-verify-index-js.js.map +1 -1
- package/dist/umd/descope-text-area-index-js.js +1 -1
- package/dist/umd/descope-text-area-index-js.js.map +1 -1
- package/dist/umd/descope-text-field-index-js.js +1 -1
- package/dist/umd/descope-text-field-index-js.js.map +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/mapping-fields-descope-mappings-field-index-js.js +1 -1
- package/dist/umd/mapping-fields-descope-mappings-field-index-js.js.map +1 -1
- package/dist/umd/mapping-fields-descope-saml-group-mappings-index-js.js +1 -1
- package/dist/umd/mapping-fields-descope-saml-group-mappings-index-js.js.map +1 -1
- package/dist/umd/phone-fields-descope-phone-field-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-field-index-js.js.map +1 -1
- package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js +1 -1
- package/dist/umd/phone-fields-descope-phone-input-box-field-index-js.js.map +1 -1
- package/package.json +32 -32
- package/src/components/descope-date-field/DateFieldClass.js +20 -0
- package/src/components/descope-hybrid-field/HybridFieldClass.js +50 -0
- package/src/components/descope-multi-select-combo-box/MultiSelectComboBoxClass.js +4 -0
- package/src/components/descope-new-password/NewPasswordClass.js +10 -0
- package/src/components/descope-passcode/PasscodeClass.js +6 -0
- package/src/components/descope-password/PasswordClass.js +10 -0
- package/src/components/descope-text-area/TextAreaClass.js +6 -0
- package/src/components/descope-text-field/textFieldMappings.js +11 -0
- package/src/components/phone-fields/descope-phone-field/PhoneFieldClass.js +9 -0
- package/src/components/phone-fields/descope-phone-input-box-field/PhoneFieldInputBoxClass.js +4 -0
- package/src/theme/components/dateField.js +6 -0
- package/src/theme/components/emailField.js +4 -0
- package/src/theme/components/hybridField.js +5 -0
- package/src/theme/components/inputWrapper.js +4 -0
- package/src/theme/components/multiSelectComboBox.js +4 -0
- package/src/theme/components/newPassword.js +4 -0
- package/src/theme/components/numberField.js +4 -0
- package/src/theme/components/passcode.js +3 -0
- package/src/theme/components/password.js +4 -0
- package/src/theme/components/phoneField.js +6 -0
- package/src/theme/components/phoneInputBoxField.js +4 -0
- package/src/theme/components/textArea.js +6 -0
- package/src/theme/components/textField.js +4 -0
package/dist/cjs/index.cjs.js
CHANGED
|
@@ -4138,7 +4138,7 @@ const ComboBoxMixin = (superclass) =>
|
|
|
4138
4138
|
return ['label-type', 'require-match'];
|
|
4139
4139
|
}
|
|
4140
4140
|
|
|
4141
|
-
|
|
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
|
-
|
|
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
|
|
4211
|
+
return (
|
|
4212
|
+
this.getAttribute('require-match') === 'true' && !this.allowCustomValue
|
|
4213
|
+
);
|
|
4212
4214
|
}
|
|
4213
4215
|
|
|
4214
|
-
|
|
4216
|
+
|
|
4215
4217
|
isValidDataType(data) {
|
|
4216
4218
|
const isValid = Array.isArray(data);
|
|
4217
4219
|
if (!isValid) {
|
|
4218
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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(
|
|
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
|
-
|
|
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 =
|
|
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,
|
|
@@ -14057,6 +14126,12 @@ const PasscodeClass = compose$1(
|
|
|
14057
14126
|
hostWidth: { property: 'width' },
|
|
14058
14127
|
hostDirection: { ...host$e, property: 'direction' },
|
|
14059
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
|
+
},
|
|
14060
14135
|
labelTextColor: [
|
|
14061
14136
|
{ ...label$5, property: 'color' },
|
|
14062
14137
|
{ ...label$5, property: '-webkit-text-fill-color' },
|
|
@@ -14188,8 +14263,11 @@ const passcode = {
|
|
|
14188
14263
|
[vars$v.fontSize]: refs.fontSize,
|
|
14189
14264
|
[vars$v.labelTextColor]: refs.labelTextColor,
|
|
14190
14265
|
[vars$v.labelRequiredIndicator]: refs.requiredIndicator,
|
|
14266
|
+
[vars$v.labelFontWeight]: refs.labelFontWeight,
|
|
14191
14267
|
[vars$v.errorMessageTextColor]: refs.errorMessageTextColor,
|
|
14268
|
+
[vars$v.errorMessageFontWeight]: refs.errorMessageFontWeight,
|
|
14192
14269
|
[vars$v.digitValueTextColor]: refs.valueTextColor,
|
|
14270
|
+
[vars$v.digitValueFontWeight]: refs.inputValueFontWeight,
|
|
14193
14271
|
[vars$v.digitPadding]: '0',
|
|
14194
14272
|
[vars$v.digitTextAlign]: 'center',
|
|
14195
14273
|
[vars$v.digitSpacing]: '4px',
|
|
@@ -15768,6 +15846,15 @@ const PhoneFieldClass = compose$1(
|
|
|
15768
15846
|
{ ...countryCodeInput, property: 'padding-right' },
|
|
15769
15847
|
],
|
|
15770
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' },
|
|
15771
15858
|
labelTextColor: [
|
|
15772
15859
|
{ ...label$4, property: 'color' },
|
|
15773
15860
|
{ ...label$4, property: '-webkit-text-fill-color' },
|
|
@@ -15923,6 +16010,12 @@ const phoneField = {
|
|
|
15923
16010
|
[vars$s.hostDirection]: refs.direction,
|
|
15924
16011
|
[vars$s.fontSize]: refs.fontSize,
|
|
15925
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,
|
|
15926
16019
|
[vars$s.labelTextColor]: refs.labelTextColor,
|
|
15927
16020
|
[vars$s.labelRequiredIndicator]: refs.requiredIndicator,
|
|
15928
16021
|
[vars$s.errorMessageTextColor]: refs.errorMessageTextColor,
|
|
@@ -16066,6 +16159,10 @@ const PhoneFieldInputBoxClass = compose$1(
|
|
|
16066
16159
|
|
|
16067
16160
|
labelFontSize: { ...label$3, property: 'font-size' },
|
|
16068
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' },
|
|
16069
16166
|
labelTextColor: [
|
|
16070
16167
|
{ ...label$3, property: 'color' },
|
|
16071
16168
|
{ ...label$3, property: '-webkit-text-fill-color' },
|
|
@@ -16208,6 +16305,10 @@ const phoneInputBoxField = {
|
|
|
16208
16305
|
[vars$r.fontFamily]: refs.fontFamily,
|
|
16209
16306
|
[vars$r.labelFontSize]: refs.labelFontSize,
|
|
16210
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,
|
|
16211
16312
|
[vars$r.labelTextColor]: refs.labelTextColor,
|
|
16212
16313
|
[vars$r.labelRequiredIndicator]: refs.requiredIndicator,
|
|
16213
16314
|
[vars$r.errorMessageTextColor]: refs.errorMessageTextColor,
|
|
@@ -16657,6 +16758,16 @@ const NewPasswordClass = compose$1(
|
|
|
16657
16758
|
fontFamily: [label$2, errorMessage$4, helperText$2],
|
|
16658
16759
|
labelFontSize: { ...label$2, property: 'font-size' },
|
|
16659
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' },
|
|
16660
16771
|
labelTextColor: { ...label$2, property: 'color' },
|
|
16661
16772
|
errorMessageTextColor: { ...errorMessage$4, property: 'color' },
|
|
16662
16773
|
errorMessageIcon: { ...errorMessage$4, property: 'background-image' },
|
|
@@ -16762,6 +16873,10 @@ const newPassword = {
|
|
|
16762
16873
|
[vars$q.fontFamily]: refs.fontFamily,
|
|
16763
16874
|
[vars$q.labelFontSize]: refs.labelFontSize,
|
|
16764
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,
|
|
16765
16880
|
[vars$q.labelTextColor]: refs.labelTextColor,
|
|
16766
16881
|
[vars$q.spaceBetweenInputs]: '1em',
|
|
16767
16882
|
[vars$q.errorMessageTextColor]: refs.errorMessageTextColor,
|
|
@@ -19128,6 +19243,10 @@ const MultiSelectComboBoxClass = compose$1(
|
|
|
19128
19243
|
fontFamily: [label, placeholder, inputField, helperText$1, errorMessage$2, chipLabel],
|
|
19129
19244
|
labelFontSize: { ...label, property: 'font-size' },
|
|
19130
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' },
|
|
19131
19250
|
labelTextColor: [
|
|
19132
19251
|
{ ...label, property: 'color' },
|
|
19133
19252
|
{ ...requiredIndicator, property: 'color' },
|
|
@@ -19349,6 +19468,10 @@ const multiSelectComboBox = {
|
|
|
19349
19468
|
[vars$i.fontFamily]: refs.fontFamily,
|
|
19350
19469
|
[vars$i.labelFontSize]: refs.labelFontSize,
|
|
19351
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,
|
|
19352
19475
|
[vars$i.labelTextColor]: refs.labelTextColor,
|
|
19353
19476
|
[vars$i.errorMessageTextColor]: refs.errorMessageTextColor,
|
|
19354
19477
|
[vars$i.inputBorderColor]: refs.borderColor,
|
|
@@ -23300,6 +23423,26 @@ const DateFieldClass = compose$1(
|
|
|
23300
23423
|
selector: TextFieldClass.componentName,
|
|
23301
23424
|
property: TextFieldClass.cssVarList.errorMessageFontSize,
|
|
23302
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
|
+
},
|
|
23303
23446
|
},
|
|
23304
23447
|
}),
|
|
23305
23448
|
portalMixin({
|
|
@@ -23351,6 +23494,12 @@ const dateField = {
|
|
|
23351
23494
|
[vars$8.errorMessageIconRepeat]: refs.errorMessageIconRepeat,
|
|
23352
23495
|
[vars$8.errorMessageIconPosition]: refs.errorMessageIconPosition,
|
|
23353
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,
|
|
23354
23503
|
};
|
|
23355
23504
|
|
|
23356
23505
|
var dateField$1 = /*#__PURE__*/Object.freeze({
|
|
@@ -24634,6 +24783,56 @@ const HybridFieldClass = compose$1(
|
|
|
24634
24783
|
property: PhoneFieldInputBoxClass.cssVarList.errorMessageFontSize,
|
|
24635
24784
|
},
|
|
24636
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
|
+
],
|
|
24637
24836
|
},
|
|
24638
24837
|
}),
|
|
24639
24838
|
draggableMixin,
|
|
@@ -24644,6 +24843,11 @@ const vars$3 = HybridFieldClass.cssVarList;
|
|
|
24644
24843
|
|
|
24645
24844
|
const hybridField = {
|
|
24646
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,
|
|
24647
24851
|
|
|
24648
24852
|
// error message icon
|
|
24649
24853
|
[vars$3.errorMessageIcon]: refs.errorMessageIcon,
|