@descope/web-components-ui 1.45.0 → 1.47.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/index.esm.js CHANGED
@@ -10359,22 +10359,21 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$8 {
10359
10359
  const countryCode = this.comboBox.value;
10360
10360
  const nationalNumer = this.textField.value;
10361
10361
 
10362
- const hasCountryCode = !!countryCode.length;
10363
- const hasNationalNumber = !!nationalNumer.length;
10364
-
10365
- const isEmpty = !hasCountryCode || !hasNationalNumber;
10366
- const isValidLength = hasNationalNumber && nationalNumer.length >= this.minLength;
10362
+ const isEmpty = !countryCode || !nationalNumer;
10363
+ const isValidLength = nationalNumer && nationalNumer.length >= this.minLength;
10367
10364
 
10368
10365
  if (this.isRequired && isEmpty) {
10369
10366
  return { valueMissing: true };
10370
10367
  }
10371
10368
 
10372
- if (!isValidLength) {
10373
- return { tooShort: true };
10374
- }
10369
+ if (this.value) {
10370
+ if (!isValidLength) {
10371
+ return { tooShort: true };
10372
+ }
10375
10373
 
10376
- if (this.value && this.isStrictValidation && !this.#isValidParsedValue()) {
10377
- return { patternMismatch: true };
10374
+ if (this.isStrictValidation && !this.#isValidParsedValue()) {
10375
+ return { patternMismatch: true };
10376
+ }
10378
10377
  }
10379
10378
 
10380
10379
  return {};
@@ -10482,15 +10481,15 @@ let PhoneFieldInternal$1 = class PhoneFieldInternal extends BaseInputClass$8 {
10482
10481
  const parsed = parsePhoneNumberFromString(this.value);
10483
10482
 
10484
10483
  return (
10485
- parsed && // Parsed successfully (not undefined)
10486
- parsed.isValid?.() && // Parsed object is valid
10487
- parsed.country && // Parsed object with a country code
10488
- this.#isAllowedCountry(parsed.country) // Parsed with allowed country code
10484
+ !!parsed && // Parsed successfully (not undefined)
10485
+ !!parsed.isValid?.() && // Parsed object is valid
10486
+ !!parsed.country && // Parsed object with a country code
10487
+ !!this.#isAllowedCountry(parsed.country) // Parsed with allowed country code
10489
10488
  );
10490
10489
  }
10491
10490
 
10492
10491
  #isAllowedCountry(countryCode) {
10493
- if (!this.restrictCountries) {
10492
+ if (!this.restrictCountries.length) {
10494
10493
  return true;
10495
10494
  }
10496
10495
 
@@ -10916,6 +10915,7 @@ const observedAttributes$3 = [
10916
10915
  'readonly',
10917
10916
  'phone-input-placeholder',
10918
10917
  'name',
10918
+ 'maxlength',
10919
10919
  'autocomplete',
10920
10920
  'label-type',
10921
10921
  ];
@@ -11022,21 +11022,19 @@ class PhoneFieldInternal extends BaseInputClass$7 {
11022
11022
  return { valueMissing: true };
11023
11023
  }
11024
11024
 
11025
- if (stripValue.length < this.minLength) {
11026
- return { tooShort: true };
11027
- }
11028
-
11029
- if (stripValue.length > this.maxLength) {
11030
- return { tooLong: true };
11031
- }
11025
+ if (this.textField.value) {
11026
+ if (stripValue.length < this.minLength) {
11027
+ return { tooShort: true };
11028
+ }
11032
11029
 
11033
- if (
11034
- // has `strict-validation` and not properly parsed
11035
- (this.isStrictValidation && this.textField.value && !this.#isValidParsedValue()) ||
11036
- // if no `strict-validation` then conform with naive pattern
11037
- (!this.isStrictValidation && this.textField.value && !validPhonePattern.test(this.value))
11038
- ) {
11039
- return { patternMismatch: true };
11030
+ if (
11031
+ // has `strict-validation` and not properly parsed
11032
+ (this.isStrictValidation && this.textField.value && !this.#isValidParsedValue()) ||
11033
+ // if no `strict-validation` then conform with naive pattern
11034
+ (!this.isStrictValidation && this.textField.value && !validPhonePattern.test(this.value))
11035
+ ) {
11036
+ return { patternMismatch: true };
11037
+ }
11040
11038
  }
11041
11039
 
11042
11040
  return {};
@@ -11103,16 +11101,16 @@ class PhoneFieldInternal extends BaseInputClass$7 {
11103
11101
  #isValidParsedValue() {
11104
11102
  const parsed = parsePhoneNumberFromString$1(this.value);
11105
11103
  return (
11106
- parsed && // parsed successfully (not undefined)
11107
- parsed.isValid?.() && // Parsed object is valid
11108
- parsed.country && // Parsed object with a country code
11109
- this.#isAllowedCountry(parsed.country) && // Parsed with allowed country code
11104
+ !!parsed && // parsed successfully (not undefined)
11105
+ !!parsed.isValid?.() && // Parsed object is valid
11106
+ !!parsed.country && // Parsed object with a country code
11107
+ !!this.#isAllowedCountry(parsed.country) && // Parsed with allowed country code
11110
11108
  (this.defaultCode ? this.defaultCode === parsed.country : true) // In case default country code is set validate parsed country matches it
11111
11109
  );
11112
11110
  }
11113
11111
 
11114
11112
  #isAllowedCountry(countryCode) {
11115
- if (!this.restrictCountries) {
11113
+ if (!this.restrictCountries.length) {
11116
11114
  return true;
11117
11115
  }
11118
11116