intelica-library-ui 0.1.147 → 0.1.149
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.
|
@@ -2897,7 +2897,7 @@ class MultiSelectComponent {
|
|
|
2897
2897
|
this.selectedOptions = [];
|
|
2898
2898
|
}
|
|
2899
2899
|
else {
|
|
2900
|
-
this.options.map(option => option[this.optionValue]);
|
|
2900
|
+
this.selectedOptions = this.options.map(option => option[this.optionValue]);
|
|
2901
2901
|
if (this.options.some(option => typeof option !== "object")) {
|
|
2902
2902
|
this.selectedOptions = this.options;
|
|
2903
2903
|
}
|
|
@@ -5639,7 +5639,7 @@ class Patterns {
|
|
|
5639
5639
|
PatternText = "^(?!\\s*$)[a-zA-Z0-9-\\s]*$";
|
|
5640
5640
|
PatternEmail = "^[a-zA-Z0-9._+~\\-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$";
|
|
5641
5641
|
PatternOnlyLetters = "^[a-zA-Z\\s]+$";
|
|
5642
|
-
PatternOnlyLettersWithAccents = "^[a-zA-Z
|
|
5642
|
+
PatternOnlyLettersWithAccents = "^[a-zA-ZáéíóúÁÉÍÓÚŠ-p{L}\\s]+$";
|
|
5643
5643
|
PatternLettersEmail = "^[A-Za-z0-9@._-]+$";
|
|
5644
5644
|
}
|
|
5645
5645
|
function InputValidation(event) {
|