@luftborn/custom-elements 2.3.0 → 2.3.1
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/demo/index.min.js
CHANGED
|
@@ -6234,7 +6234,7 @@ exports.default = SECompanyRegistrationValidator;
|
|
|
6234
6234
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6235
6235
|
var SEPersonalNumberValidator = /** @class */ (function () {
|
|
6236
6236
|
function SEPersonalNumberValidator() {
|
|
6237
|
-
this.regex = new RegExp(
|
|
6237
|
+
this.regex = new RegExp(/^(\d{2}){0,1}(\d{2})(\d{2})(\d{2})([\+\-]?)((?!000)\d{3})(\d)$/);
|
|
6238
6238
|
}
|
|
6239
6239
|
SEPersonalNumberValidator.prototype.isSatisfiedBy = function (input, allowEmpty) {
|
|
6240
6240
|
if (allowEmpty === void 0) { allowEmpty = true; }
|