@luftborn/custom-elements 2.13.9 → 2.14.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 (76) hide show
  1. package/demo/index.js +378 -85
  2. package/demo/index.min.js +377 -84
  3. package/demo/index.min.js.map +1 -1
  4. package/dist/elements/Elements.d.ts +2 -1
  5. package/dist/elements/Elements.js +3 -1
  6. package/dist/elements/Elements.js.map +1 -1
  7. package/dist/elements/ResidentIdentification/ResidentIdentificationElement.d.ts +22 -0
  8. package/dist/elements/ResidentIdentification/ResidentIdentificationElement.js +144 -0
  9. package/dist/elements/ResidentIdentification/ResidentIdentificationElement.js.map +1 -0
  10. package/dist/framework/CustomInputElement.js +3 -0
  11. package/dist/framework/CustomInputElement.js.map +1 -1
  12. package/dist/framework/Language/Languages/CzechDictionary.js +7 -1
  13. package/dist/framework/Language/Languages/CzechDictionary.js.map +1 -1
  14. package/dist/framework/Language/Languages/DanishDictionary.js +7 -1
  15. package/dist/framework/Language/Languages/DanishDictionary.js.map +1 -1
  16. package/dist/framework/Language/Languages/DutchDictionary.js +7 -1
  17. package/dist/framework/Language/Languages/DutchDictionary.js.map +1 -1
  18. package/dist/framework/Language/Languages/EnglishDictionary.js +7 -1
  19. package/dist/framework/Language/Languages/EnglishDictionary.js.map +1 -1
  20. package/dist/framework/Language/Languages/EstonianDictionary.js +7 -1
  21. package/dist/framework/Language/Languages/EstonianDictionary.js.map +1 -1
  22. package/dist/framework/Language/Languages/FinnishDictionary.js +7 -1
  23. package/dist/framework/Language/Languages/FinnishDictionary.js.map +1 -1
  24. package/dist/framework/Language/Languages/FrenchDictionary.js +7 -1
  25. package/dist/framework/Language/Languages/FrenchDictionary.js.map +1 -1
  26. package/dist/framework/Language/Languages/GermanDictionary.js +7 -1
  27. package/dist/framework/Language/Languages/GermanDictionary.js.map +1 -1
  28. package/dist/framework/Language/Languages/GreekDictionary.js +7 -1
  29. package/dist/framework/Language/Languages/GreekDictionary.js.map +1 -1
  30. package/dist/framework/Language/Languages/HungarianDictionary.js +7 -1
  31. package/dist/framework/Language/Languages/HungarianDictionary.js.map +1 -1
  32. package/dist/framework/Language/Languages/IcelandicDictionary.js +7 -1
  33. package/dist/framework/Language/Languages/IcelandicDictionary.js.map +1 -1
  34. package/dist/framework/Language/Languages/ItalianDictionary.js +7 -1
  35. package/dist/framework/Language/Languages/ItalianDictionary.js.map +1 -1
  36. package/dist/framework/Language/Languages/LatvianDictionary.js +7 -1
  37. package/dist/framework/Language/Languages/LatvianDictionary.js.map +1 -1
  38. package/dist/framework/Language/Languages/LituanianDictionary.js +7 -1
  39. package/dist/framework/Language/Languages/LituanianDictionary.js.map +1 -1
  40. package/dist/framework/Language/Languages/NorwegianDictionary.js +7 -1
  41. package/dist/framework/Language/Languages/NorwegianDictionary.js.map +1 -1
  42. package/dist/framework/Language/Languages/PolishDictionary.js +7 -1
  43. package/dist/framework/Language/Languages/PolishDictionary.js.map +1 -1
  44. package/dist/framework/Language/Languages/PortugueseDictionary.js +7 -1
  45. package/dist/framework/Language/Languages/PortugueseDictionary.js.map +1 -1
  46. package/dist/framework/Language/Languages/SpanishDictionary.js +7 -1
  47. package/dist/framework/Language/Languages/SpanishDictionary.js.map +1 -1
  48. package/dist/framework/Language/Languages/SwedishDictionary.js +7 -1
  49. package/dist/framework/Language/Languages/SwedishDictionary.js.map +1 -1
  50. package/dist/framework/Validation/Validators/ResidentIdentification.d.ts +5 -0
  51. package/dist/framework/Validation/Validators/ResidentIdentification.js +28 -0
  52. package/dist/framework/Validation/Validators/ResidentIdentification.js.map +1 -0
  53. package/package.json +1 -1
  54. package/src/elements/Elements.ts +2 -0
  55. package/src/elements/ResidentIdentification/ResidentIdentificationElement.ts +136 -0
  56. package/src/framework/CustomInputElement.ts +3 -0
  57. package/src/framework/Language/Languages/CzechDictionary.ts +7 -1
  58. package/src/framework/Language/Languages/DanishDictionary.ts +8 -1
  59. package/src/framework/Language/Languages/DutchDictionary.ts +7 -1
  60. package/src/framework/Language/Languages/EnglishDictionary.ts +7 -1
  61. package/src/framework/Language/Languages/EstonianDictionary.ts +7 -1
  62. package/src/framework/Language/Languages/FinnishDictionary.ts +7 -1
  63. package/src/framework/Language/Languages/FrenchDictionary.ts +7 -1
  64. package/src/framework/Language/Languages/GermanDictionary.ts +7 -1
  65. package/src/framework/Language/Languages/GreekDictionary.ts +7 -1
  66. package/src/framework/Language/Languages/HungarianDictionary.ts +7 -1
  67. package/src/framework/Language/Languages/IcelandicDictionary.ts +7 -1
  68. package/src/framework/Language/Languages/ItalianDictionary.ts +7 -1
  69. package/src/framework/Language/Languages/LatvianDictionary.ts +7 -1
  70. package/src/framework/Language/Languages/LituanianDictionary.ts +7 -1
  71. package/src/framework/Language/Languages/NorwegianDictionary.ts +7 -1
  72. package/src/framework/Language/Languages/PolishDictionary.ts +7 -1
  73. package/src/framework/Language/Languages/PortugueseDictionary.ts +7 -1
  74. package/src/framework/Language/Languages/SpanishDictionary.ts +7 -1
  75. package/src/framework/Language/Languages/SwedishDictionary.ts +7 -1
  76. package/src/framework/Validation/Validators/ResidentIdentification.ts +28 -0
package/demo/index.min.js CHANGED
@@ -11,7 +11,7 @@ document.onreadystatechange = function () {
11
11
  }
12
12
  };
13
13
 
14
- },{"./../src/index":78}],2:[function(require,module,exports){
14
+ },{"./../src/index":80}],2:[function(require,module,exports){
15
15
  /**
16
16
  @license @nocompile
17
17
  Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
@@ -3454,7 +3454,7 @@ var CustomForm = /** @class */ (function () {
3454
3454
  }());
3455
3455
  exports.CustomForm = CustomForm;
3456
3456
 
3457
- },{"./elements/Elements":24,"./elements/FileField/FileFieldElement":26,"./framework/Utilities/ArrayUtil":62,"./framework/Utilities/MakeRequest":65}],11:[function(require,module,exports){
3457
+ },{"./elements/Elements":24,"./elements/FileField/FileFieldElement":26,"./framework/Utilities/ArrayUtil":63,"./framework/Utilities/MakeRequest":66}],11:[function(require,module,exports){
3458
3458
  "use strict";
3459
3459
  var __extends = (this && this.__extends) || (function () {
3460
3460
  var extendStatics = function (d, b) {
@@ -3665,7 +3665,7 @@ var AddressElement = /** @class */ (function (_super) {
3665
3665
  }(CustomInputElement_1.CustomInputElement));
3666
3666
  exports.AddressElement = AddressElement;
3667
3667
 
3668
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Language/Translator":60,"../../framework/Polyfills/getAttributeNamesPolyfill":61,"../../framework/Utilities/debouncer":68,"../../framework/custom-element.decorator":77}],12:[function(require,module,exports){
3668
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Language/Translator":61,"../../framework/Polyfills/getAttributeNamesPolyfill":62,"../../framework/Utilities/debouncer":69,"../../framework/custom-element.decorator":79}],12:[function(require,module,exports){
3669
3669
  "use strict";
3670
3670
  var __extends = (this && this.__extends) || (function () {
3671
3671
  var extendStatics = function (d, b) {
@@ -3797,7 +3797,7 @@ var BankFieldElement = /** @class */ (function (_super) {
3797
3797
  }(CustomInputElement_1.CustomInputElement));
3798
3798
  exports.BankFieldElement = BankFieldElement;
3799
3799
 
3800
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Language/Translator":60,"../../framework/Validation/Validators/BankAccount":69,"../../framework/Validation/Validators/BankAccountRegistrationNumber":70,"../../framework/custom-element.decorator":77}],13:[function(require,module,exports){
3800
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Language/Translator":61,"../../framework/Validation/Validators/BankAccount":70,"../../framework/Validation/Validators/BankAccountRegistrationNumber":71,"../../framework/custom-element.decorator":79}],13:[function(require,module,exports){
3801
3801
  "use strict";
3802
3802
  var __extends = (this && this.__extends) || (function () {
3803
3803
  var extendStatics = function (d, b) {
@@ -3887,7 +3887,7 @@ var CPRElement = /** @class */ (function (_super) {
3887
3887
  }(CustomInputElement_1.CustomInputElement));
3888
3888
  exports.CPRElement = CPRElement;
3889
3889
 
3890
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Validation/Validators/CPR":73,"../../framework/custom-element.decorator":77}],14:[function(require,module,exports){
3890
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Validation/Validators/CPR":74,"../../framework/custom-element.decorator":79}],14:[function(require,module,exports){
3891
3891
  "use strict";
3892
3892
  var __extends = (this && this.__extends) || (function () {
3893
3893
  var extendStatics = function (d, b) {
@@ -3977,7 +3977,7 @@ var CVRElement = /** @class */ (function (_super) {
3977
3977
  }(CustomInputElement_1.CustomInputElement));
3978
3978
  exports.CVRElement = CVRElement;
3979
3979
 
3980
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Validation/Validators/CVR":74,"../../framework/custom-element.decorator":77}],15:[function(require,module,exports){
3980
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Validation/Validators/CVR":75,"../../framework/custom-element.decorator":79}],15:[function(require,module,exports){
3981
3981
  "use strict";
3982
3982
  var __extends = (this && this.__extends) || (function () {
3983
3983
  var extendStatics = function (d, b) {
@@ -4089,7 +4089,7 @@ var CheckBoxElement = /** @class */ (function (_super) {
4089
4089
  }(CustomInputElement_1.CustomInputElement));
4090
4090
  exports.CheckBoxElement = CheckBoxElement;
4091
4091
 
4092
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Utilities/StringUtil":66,"../../framework/custom-element.decorator":77}],16:[function(require,module,exports){
4092
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Utilities/StringUtil":67,"../../framework/custom-element.decorator":79}],16:[function(require,module,exports){
4093
4093
  "use strict";
4094
4094
  Object.defineProperty(exports, "__esModule", { value: true });
4095
4095
  var CustomDatepickerStyles_1 = require("./CustomDatepickerStyles");
@@ -5044,7 +5044,7 @@ var CustomFormatDateFieldElement = /** @class */ (function (_super) {
5044
5044
  }(CustomInputElement_1.CustomInputElement));
5045
5045
  exports.CustomFormatDateFieldElement = CustomFormatDateFieldElement;
5046
5046
 
5047
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/custom-element.decorator":77,"./CustomDatepicker/CustomDatepicker":16,"./CustomDatepicker/CustomDatepickerUtils":18}],21:[function(require,module,exports){
5047
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/custom-element.decorator":79,"./CustomDatepicker/CustomDatepicker":16,"./CustomDatepicker/CustomDatepickerUtils":18}],21:[function(require,module,exports){
5048
5048
  "use strict";
5049
5049
  var __extends = (this && this.__extends) || (function () {
5050
5050
  var extendStatics = function (d, b) {
@@ -5140,7 +5140,7 @@ var CustomRegularExpressionElement = /** @class */ (function (_super) {
5140
5140
  }(CustomInputElement_1.CustomInputElement));
5141
5141
  exports.CustomRegularExpressionElement = CustomRegularExpressionElement;
5142
5142
 
5143
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/custom-element.decorator":77}],22:[function(require,module,exports){
5143
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/custom-element.decorator":79}],22:[function(require,module,exports){
5144
5144
  "use strict";
5145
5145
  var __extends = (this && this.__extends) || (function () {
5146
5146
  var extendStatics = function (d, b) {
@@ -5233,7 +5233,7 @@ var DateFieldElement = /** @class */ (function (_super) {
5233
5233
  }(CustomInputElement_1.CustomInputElement));
5234
5234
  exports.DateFieldElement = DateFieldElement;
5235
5235
 
5236
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/custom-element.decorator":77}],23:[function(require,module,exports){
5236
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/custom-element.decorator":79}],23:[function(require,module,exports){
5237
5237
  "use strict";
5238
5238
  var __extends = (this && this.__extends) || (function () {
5239
5239
  var extendStatics = function (d, b) {
@@ -5343,10 +5343,10 @@ var DropDownListElement = /** @class */ (function (_super) {
5343
5343
  }(CustomInputElement_1.CustomInputElement));
5344
5344
  exports.DropDownListElement = DropDownListElement;
5345
5345
 
5346
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Utilities/StringUtil":66,"../../framework/custom-element.decorator":77}],24:[function(require,module,exports){
5346
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Utilities/StringUtil":67,"../../framework/custom-element.decorator":79}],24:[function(require,module,exports){
5347
5347
  "use strict";
5348
5348
  Object.defineProperty(exports, "__esModule", { value: true });
5349
- exports.SECompanyRegistrationElement = exports.SEPersonalNumberElement = exports.TypeAheadElement = exports.BankFieldElement = exports.IdentificationElement = exports.CVRElement = exports.CPRElement = exports.IntPhoneFieldElement = exports.CustomFormatDateFieldElement = exports.DateFieldElement = exports.CustomRegularExpressionElement = exports.NumericFieldElement = exports.FileFieldElement = exports.DropDownListElement = exports.TextAreaElement = exports.RadioButtonGroupElement = exports.CheckBoxElement = exports.EmailFieldElement = exports.TextFieldElement = exports.AddressElement = void 0;
5349
+ exports.ResidentIdentificationElement = exports.SECompanyRegistrationElement = exports.SEPersonalNumberElement = exports.TypeAheadElement = exports.BankFieldElement = exports.IdentificationElement = exports.CVRElement = exports.CPRElement = exports.IntPhoneFieldElement = exports.CustomFormatDateFieldElement = exports.DateFieldElement = exports.CustomRegularExpressionElement = exports.NumericFieldElement = exports.FileFieldElement = exports.DropDownListElement = exports.TextAreaElement = exports.RadioButtonGroupElement = exports.CheckBoxElement = exports.EmailFieldElement = exports.TextFieldElement = exports.AddressElement = void 0;
5350
5350
  var AddressElement_1 = require("./Address/AddressElement");
5351
5351
  Object.defineProperty(exports, "AddressElement", { enumerable: true, get: function () { return AddressElement_1.AddressElement; } });
5352
5352
  var TextFieldElement_1 = require("./TextField/TextFieldElement");
@@ -5387,8 +5387,10 @@ var SECompanyRegistrationElement_1 = require("./SECompanyRegistrationElement/SEC
5387
5387
  Object.defineProperty(exports, "SECompanyRegistrationElement", { enumerable: true, get: function () { return SECompanyRegistrationElement_1.SECompanyRegistrationElement; } });
5388
5388
  var CustomFormatDateFieldElement_1 = require("./CustomFormatDateFieldElement/CustomFormatDateFieldElement");
5389
5389
  Object.defineProperty(exports, "CustomFormatDateFieldElement", { enumerable: true, get: function () { return CustomFormatDateFieldElement_1.CustomFormatDateFieldElement; } });
5390
+ var ResidentIdentificationElement_1 = require("./ResidentIdentification/ResidentIdentificationElement");
5391
+ Object.defineProperty(exports, "ResidentIdentificationElement", { enumerable: true, get: function () { return ResidentIdentificationElement_1.ResidentIdentificationElement; } });
5390
5392
 
5391
- },{"./Address/AddressElement":11,"./BankField/BankFieldElement":12,"./CPRElement/CPRElement":13,"./CVRElement/CVRElement":14,"./CheckBoxElement/CheckBoxElement":15,"./CustomFormatDateFieldElement/CustomFormatDateFieldElement":20,"./CustomRegularExpression/CustomRegularExpressionElement":21,"./DateField/DateFieldElement":22,"./DropDownList/DropDownListElement":23,"./EmailField/EmailFieldElement":25,"./FileField/FileFieldElement":26,"./IdentificationElement/IdentificationElement":27,"./InternationaPhoneNumber/InternationaPhoneNumberElement":30,"./NumericField/NumericFieldElement":31,"./RadioButtonGroup/RadioButtonGroupElement":32,"./SECompanyRegistrationElement/SECompanyRegistrationElement":33,"./SEPersonalNumberElement/SEPersonalNumberElement":34,"./TextAreaElement/TextAreaElement":35,"./TextField/TextFieldElement":36,"./TypeAhead/TypeAheadElement":37}],25:[function(require,module,exports){
5393
+ },{"./Address/AddressElement":11,"./BankField/BankFieldElement":12,"./CPRElement/CPRElement":13,"./CVRElement/CVRElement":14,"./CheckBoxElement/CheckBoxElement":15,"./CustomFormatDateFieldElement/CustomFormatDateFieldElement":20,"./CustomRegularExpression/CustomRegularExpressionElement":21,"./DateField/DateFieldElement":22,"./DropDownList/DropDownListElement":23,"./EmailField/EmailFieldElement":25,"./FileField/FileFieldElement":26,"./IdentificationElement/IdentificationElement":27,"./InternationaPhoneNumber/InternationaPhoneNumberElement":30,"./NumericField/NumericFieldElement":31,"./RadioButtonGroup/RadioButtonGroupElement":32,"./ResidentIdentification/ResidentIdentificationElement":33,"./SECompanyRegistrationElement/SECompanyRegistrationElement":34,"./SEPersonalNumberElement/SEPersonalNumberElement":35,"./TextAreaElement/TextAreaElement":36,"./TextField/TextFieldElement":37,"./TypeAhead/TypeAheadElement":38}],25:[function(require,module,exports){
5392
5394
  "use strict";
5393
5395
  var __extends = (this && this.__extends) || (function () {
5394
5396
  var extendStatics = function (d, b) {
@@ -5482,7 +5484,7 @@ var EmailFieldElement = /** @class */ (function (_super) {
5482
5484
  }(CustomInputElement_1.CustomInputElement));
5483
5485
  exports.EmailFieldElement = EmailFieldElement;
5484
5486
 
5485
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/custom-element.decorator":77}],26:[function(require,module,exports){
5487
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/custom-element.decorator":79}],26:[function(require,module,exports){
5486
5488
  "use strict";
5487
5489
  var __extends = (this && this.__extends) || (function () {
5488
5490
  var extendStatics = function (d, b) {
@@ -5814,7 +5816,7 @@ var FileFieldElement = /** @class */ (function (_super) {
5814
5816
  }(CustomInputElement_1.CustomInputElement));
5815
5817
  exports.FileFieldElement = FileFieldElement;
5816
5818
 
5817
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Polyfills/getAttributeNamesPolyfill":61,"../../framework/custom-element.decorator":77,"exif-js":5}],27:[function(require,module,exports){
5819
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Polyfills/getAttributeNamesPolyfill":62,"../../framework/custom-element.decorator":79,"exif-js":5}],27:[function(require,module,exports){
5818
5820
  "use strict";
5819
5821
  var __extends = (this && this.__extends) || (function () {
5820
5822
  var extendStatics = function (d, b) {
@@ -5913,7 +5915,7 @@ var IdentificationElement = /** @class */ (function (_super) {
5913
5915
  }(CustomInputElement_1.CustomInputElement));
5914
5916
  exports.IdentificationElement = IdentificationElement;
5915
5917
 
5916
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Validation/Validators/BankIdNorway":71,"../../framework/Validation/Validators/BankIdSweden":72,"../../framework/Validation/Validators/CPR":73,"../../framework/Validation/Validators/CVR":74,"../../framework/custom-element.decorator":77}],28:[function(require,module,exports){
5918
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Validation/Validators/BankIdNorway":72,"../../framework/Validation/Validators/BankIdSweden":73,"../../framework/Validation/Validators/CPR":74,"../../framework/Validation/Validators/CVR":75,"../../framework/custom-element.decorator":79}],28:[function(require,module,exports){
5917
5919
  "use strict";
5918
5920
  Object.defineProperty(exports, "__esModule", { value: true });
5919
5921
  function GetFlagsUrl() {
@@ -6064,7 +6066,7 @@ var IntPhoneFieldElement = /** @class */ (function (_super) {
6064
6066
  }(CustomInputElement_1.CustomInputElement));
6065
6067
  exports.IntPhoneFieldElement = IntPhoneFieldElement;
6066
6068
 
6067
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Utilities/MakeRequest":65,"../../framework/custom-element.decorator":77,"./Flags":28,"./Flags2x":29,"intl-tel-input":7}],31:[function(require,module,exports){
6069
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Utilities/MakeRequest":66,"../../framework/custom-element.decorator":79,"./Flags":28,"./Flags2x":29,"intl-tel-input":7}],31:[function(require,module,exports){
6068
6070
  "use strict";
6069
6071
  var __extends = (this && this.__extends) || (function () {
6070
6072
  var extendStatics = function (d, b) {
@@ -6166,7 +6168,7 @@ var NumericFieldElement = /** @class */ (function (_super) {
6166
6168
  }(CustomInputElement_1.CustomInputElement));
6167
6169
  exports.NumericFieldElement = NumericFieldElement;
6168
6170
 
6169
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/custom-element.decorator":77}],32:[function(require,module,exports){
6171
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/custom-element.decorator":79}],32:[function(require,module,exports){
6170
6172
  "use strict";
6171
6173
  var __extends = (this && this.__extends) || (function () {
6172
6174
  var extendStatics = function (d, b) {
@@ -6277,7 +6279,152 @@ var RadioButtonGroupElement = /** @class */ (function (_super) {
6277
6279
  }(CustomInputElement_1.CustomInputElement));
6278
6280
  exports.RadioButtonGroupElement = RadioButtonGroupElement;
6279
6281
 
6280
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Utilities/StringUtil":66,"../../framework/custom-element.decorator":77}],33:[function(require,module,exports){
6282
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Utilities/StringUtil":67,"../../framework/custom-element.decorator":79}],33:[function(require,module,exports){
6283
+ "use strict";
6284
+ var __extends = (this && this.__extends) || (function () {
6285
+ var extendStatics = function (d, b) {
6286
+ extendStatics = Object.setPrototypeOf ||
6287
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6288
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
6289
+ return extendStatics(d, b);
6290
+ };
6291
+ return function (d, b) {
6292
+ if (typeof b !== "function" && b !== null)
6293
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
6294
+ extendStatics(d, b);
6295
+ function __() { this.constructor = d; }
6296
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
6297
+ };
6298
+ })();
6299
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
6300
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
6301
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
6302
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6303
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6304
+ };
6305
+ Object.defineProperty(exports, "__esModule", { value: true });
6306
+ exports.ResidentIdentificationElement = void 0;
6307
+ var custom_element_decorator_1 = require("../../framework/custom-element.decorator");
6308
+ var CustomInputElement_1 = require("../../framework/CustomInputElement");
6309
+ var CustomEvents_1 = require("../../framework/CustomEvents");
6310
+ var Translator_1 = require("../../framework/Language/Translator");
6311
+ var getAttributeNamesPolyfill_1 = require("../../framework/Polyfills/getAttributeNamesPolyfill");
6312
+ var ResidentIdentification_1 = require("../../framework/Validation/Validators/ResidentIdentification");
6313
+ var ResidentIdentificationElement = /** @class */ (function (_super) {
6314
+ __extends(ResidentIdentificationElement, _super);
6315
+ function ResidentIdentificationElement() {
6316
+ var _this = _super.call(this) || this;
6317
+ _this.validator = new ResidentIdentification_1.default();
6318
+ (0, getAttributeNamesPolyfill_1.default)();
6319
+ return _this;
6320
+ }
6321
+ Object.defineProperty(ResidentIdentificationElement.prototype, "value", {
6322
+ get: function () {
6323
+ var company = this.company.value || '';
6324
+ var property = this.property.value ? "-" + this.property.value : '';
6325
+ var tenancy = this.tenancy.value ? "-" + this.tenancy.value : '';
6326
+ var tenant = this.tenant.value ? "-" + this.tenant.value : '';
6327
+ return "" + company + property + tenancy + tenant;
6328
+ },
6329
+ set: function (value) {
6330
+ var values = value.split(',');
6331
+ this.company.value = values[0];
6332
+ this.property.value = values[1];
6333
+ this.tenancy.value = values[2];
6334
+ this.tenant.value = values[3];
6335
+ },
6336
+ enumerable: false,
6337
+ configurable: true
6338
+ });
6339
+ Object.defineProperty(ResidentIdentificationElement.prototype, "valid", {
6340
+ get: function () {
6341
+ return this.validator.isSatisfiedBy(this.value, !this.required);
6342
+ },
6343
+ enumerable: false,
6344
+ configurable: true
6345
+ });
6346
+ ResidentIdentificationElement.prototype.connectedCallback = function () {
6347
+ _super.prototype.connectedCallback.call(this);
6348
+ };
6349
+ ResidentIdentificationElement.prototype.componentDidMount = function () {
6350
+ var _this = this;
6351
+ this.initChildInputs();
6352
+ this.getAttributeNames().forEach(function (attributeName) {
6353
+ var attributeValue = _this.getAttribute(attributeName);
6354
+ _this.attributeChanged(attributeName, null, attributeValue);
6355
+ });
6356
+ };
6357
+ ResidentIdentificationElement.prototype.initChildInputs = function () {
6358
+ this.company = _super.prototype.getChildInput.call(this, '#company');
6359
+ this.property = _super.prototype.getChildInput.call(this, '#property');
6360
+ this.tenancy = _super.prototype.getChildInput.call(this, '#tenancy');
6361
+ this.tenant = _super.prototype.getChildInput.call(this, '#tenant');
6362
+ this.company.addEventListener('change', this.change.bind(this));
6363
+ this.property.addEventListener('change', this.change.bind(this));
6364
+ this.tenancy.addEventListener('change', this.change.bind(this));
6365
+ this.tenant.addEventListener('change', this.change.bind(this));
6366
+ if (this.required) {
6367
+ this.company.setAttribute('required', 'required');
6368
+ this.property.setAttribute('required', 'required');
6369
+ this.tenancy.setAttribute('required', 'required');
6370
+ this.tenant.setAttribute('required', 'required');
6371
+ }
6372
+ if (this.label) {
6373
+ var wrapper = this.shadowRoot.querySelector('.field-wrapper');
6374
+ if (wrapper) {
6375
+ wrapper.setAttribute('aria-label', this.label);
6376
+ }
6377
+ }
6378
+ };
6379
+ // events
6380
+ ResidentIdentificationElement.prototype.change = function ($event) {
6381
+ this.touched = true;
6382
+ this.onChange.emit(new CustomEvents_1.CustomElementEventArgs(this.value, 'change'));
6383
+ };
6384
+ ResidentIdentificationElement.prototype.validate = function () {
6385
+ this.valid;
6386
+ this.onValidate.emit(new CustomEvents_1.CustomElementEventArgs(this.value, 'validate'));
6387
+ };
6388
+ ResidentIdentificationElement.prototype.changeLanguage = function (language) {
6389
+ if (!this.company || !this.property || !this.tenancy || !this.tenant) {
6390
+ return;
6391
+ }
6392
+ this.company.placeholder = Translator_1.default.Translate('ResidentIdentificationElement.Company', language);
6393
+ this.property.placeholder = Translator_1.default.Translate('ResidentIdentificationElement.Property', language);
6394
+ this.tenancy.placeholder = Translator_1.default.Translate('ResidentIdentificationElement.Tenancy', language);
6395
+ this.tenant.placeholder = Translator_1.default.Translate('ResidentIdentificationElement.Tenant', language);
6396
+ };
6397
+ Object.defineProperty(ResidentIdentificationElement, "observedAttributes", {
6398
+ get: function () {
6399
+ return ['language'];
6400
+ },
6401
+ enumerable: false,
6402
+ configurable: true
6403
+ });
6404
+ ResidentIdentificationElement.prototype.attributeChangedCallback = function (name, oldVal, newVal) {
6405
+ this.attributeChanged(name, oldVal, newVal);
6406
+ };
6407
+ ResidentIdentificationElement.prototype.attributeChanged = function (name, oldVal, newVal) {
6408
+ switch (name) {
6409
+ case 'language':
6410
+ this.changeLanguage(newVal);
6411
+ break;
6412
+ }
6413
+ };
6414
+ ResidentIdentificationElement = __decorate([
6415
+ (0, custom_element_decorator_1.default)({
6416
+ selector: 'resident-identification-element',
6417
+ template: "\n\t\t\t<div class=\"field-wrapper\">\n\t\t\t\t<input class='field-part' id='company' type=\"text\" placeholder='Company'/>\n\t\t\t\t<input class='field-part' id='property' type=\"text\" placeholder='Property'/>\n\t\t\t\t<input class='field-part' id='tenancy' type=\"text\" placeholder='Tenancy'/>\n\t\t\t\t<input class='field-part' id='tenant' type=\"text\" placeholder='Tenant'/>\n\t\t\t</div>",
6418
+ style: ".field-wrapper{\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-wrap: nowrap;\n\t\t\t}\n\t\t\tinput.field-part{\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\tborder: none;\n\t\t\t\tbackground-color: #f1f4ff;\n\t\t\t\tmargin: 0.125rem;\n\t\t\t\tresize: none;\n\t\t\t\twidth:33% !important;\n\t\t\t}\n\t\t",
6419
+ templatePath: './html.html',
6420
+ useShadow: true,
6421
+ })
6422
+ ], ResidentIdentificationElement);
6423
+ return ResidentIdentificationElement;
6424
+ }(CustomInputElement_1.CustomInputElement));
6425
+ exports.ResidentIdentificationElement = ResidentIdentificationElement;
6426
+
6427
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Language/Translator":61,"../../framework/Polyfills/getAttributeNamesPolyfill":62,"../../framework/Validation/Validators/ResidentIdentification":76,"../../framework/custom-element.decorator":79}],34:[function(require,module,exports){
6281
6428
  "use strict";
6282
6429
  var __extends = (this && this.__extends) || (function () {
6283
6430
  var extendStatics = function (d, b) {
@@ -6367,7 +6514,7 @@ var SECompanyRegistrationElement = /** @class */ (function (_super) {
6367
6514
  }(CustomInputElement_1.CustomInputElement));
6368
6515
  exports.SECompanyRegistrationElement = SECompanyRegistrationElement;
6369
6516
 
6370
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Validation/Validators/SECompanyRegistration":75,"../../framework/custom-element.decorator":77}],34:[function(require,module,exports){
6517
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Validation/Validators/SECompanyRegistration":77,"../../framework/custom-element.decorator":79}],35:[function(require,module,exports){
6371
6518
  "use strict";
6372
6519
  var __extends = (this && this.__extends) || (function () {
6373
6520
  var extendStatics = function (d, b) {
@@ -6457,7 +6604,7 @@ var SEPersonalNumberElement = /** @class */ (function (_super) {
6457
6604
  }(CustomInputElement_1.CustomInputElement));
6458
6605
  exports.SEPersonalNumberElement = SEPersonalNumberElement;
6459
6606
 
6460
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Validation/Validators/SEPersonalNumber":76,"../../framework/custom-element.decorator":77}],35:[function(require,module,exports){
6607
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Validation/Validators/SEPersonalNumber":78,"../../framework/custom-element.decorator":79}],36:[function(require,module,exports){
6461
6608
  "use strict";
6462
6609
  var __extends = (this && this.__extends) || (function () {
6463
6610
  var extendStatics = function (d, b) {
@@ -6547,7 +6694,7 @@ var TextAreaElement = /** @class */ (function (_super) {
6547
6694
  }(CustomInputElement_1.CustomInputElement));
6548
6695
  exports.TextAreaElement = TextAreaElement;
6549
6696
 
6550
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/custom-element.decorator":77}],36:[function(require,module,exports){
6697
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/custom-element.decorator":79}],37:[function(require,module,exports){
6551
6698
  "use strict";
6552
6699
  var __extends = (this && this.__extends) || (function () {
6553
6700
  var extendStatics = function (d, b) {
@@ -6637,7 +6784,7 @@ var TextFieldElement = /** @class */ (function (_super) {
6637
6784
  }(CustomInputElement_1.CustomInputElement));
6638
6785
  exports.TextFieldElement = TextFieldElement;
6639
6786
 
6640
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/custom-element.decorator":77}],37:[function(require,module,exports){
6787
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/custom-element.decorator":79}],38:[function(require,module,exports){
6641
6788
  "use strict";
6642
6789
  var __extends = (this && this.__extends) || (function () {
6643
6790
  var extendStatics = function (d, b) {
@@ -6874,7 +7021,7 @@ var TypeAheadElement = /** @class */ (function (_super) {
6874
7021
  }(CustomInputElement_1.CustomInputElement));
6875
7022
  exports.TypeAheadElement = TypeAheadElement;
6876
7023
 
6877
- },{"../../framework/CustomEvents":38,"../../framework/CustomInputElement":39,"../../framework/Utilities/DomUtility":64,"../../framework/custom-element.decorator":77}],38:[function(require,module,exports){
7024
+ },{"../../framework/CustomEvents":39,"../../framework/CustomInputElement":40,"../../framework/Utilities/DomUtility":65,"../../framework/custom-element.decorator":79}],39:[function(require,module,exports){
6878
7025
  "use strict";
6879
7026
  Object.defineProperty(exports, "__esModule", { value: true });
6880
7027
  exports.CustomElementEvent = exports.CustomElementEventArgs = void 0;
@@ -6923,7 +7070,7 @@ var CustomElementEvent = /** @class */ (function () {
6923
7070
  }());
6924
7071
  exports.CustomElementEvent = CustomElementEvent;
6925
7072
 
6926
- },{}],39:[function(require,module,exports){
7073
+ },{}],40:[function(require,module,exports){
6927
7074
  "use strict";
6928
7075
  var __extends = (this && this.__extends) || (function () {
6929
7076
  var extendStatics = function (d, b) {
@@ -7090,6 +7237,9 @@ var CustomInputElement = /** @class */ (function (_super) {
7090
7237
  var IsConditionMatched = false;
7091
7238
  if (type === "has") {
7092
7239
  IsConditionMatched = !!e.value;
7240
+ if (Array.isArray(e.value)) {
7241
+ IsConditionMatched = e.value.length > 0;
7242
+ }
7093
7243
  }
7094
7244
  if (type === "no") {
7095
7245
  IsConditionMatched = !e.value;
@@ -7190,7 +7340,7 @@ var CustomInputElement = /** @class */ (function (_super) {
7190
7340
  }(HTMLElement));
7191
7341
  exports.CustomInputElement = CustomInputElement;
7192
7342
 
7193
- },{"./CustomEvents":38,"./Utilities/ArrayUtil":62,"./Utilities/DomUtil":63}],40:[function(require,module,exports){
7343
+ },{"./CustomEvents":39,"./Utilities/ArrayUtil":63,"./Utilities/DomUtil":64}],41:[function(require,module,exports){
7194
7344
  "use strict";
7195
7345
  Object.defineProperty(exports, "__esModule", { value: true });
7196
7346
  var BaseDictionary = /** @class */ (function () {
@@ -7212,7 +7362,7 @@ var BaseDictionary = /** @class */ (function () {
7212
7362
  }());
7213
7363
  exports.default = BaseDictionary;
7214
7364
 
7215
- },{}],41:[function(require,module,exports){
7365
+ },{}],42:[function(require,module,exports){
7216
7366
  "use strict";
7217
7367
  var __extends = (this && this.__extends) || (function () {
7218
7368
  var extendStatics = function (d, b) {
@@ -7245,7 +7395,13 @@ var CzechDictionary = /** @class */ (function (_super) {
7245
7395
  BankElement: {
7246
7396
  Account: "Účet",
7247
7397
  RegistrationNumber: "Registrační číslo"
7248
- }
7398
+ },
7399
+ ResidentIdentificationElement: {
7400
+ Company: "Společnost",
7401
+ Property: "Nemovitost",
7402
+ Tenancy: "Pronájem",
7403
+ Tenant: "nájemce"
7404
+ },
7249
7405
  };
7250
7406
  return _this;
7251
7407
  }
@@ -7253,7 +7409,7 @@ var CzechDictionary = /** @class */ (function (_super) {
7253
7409
  }(BaseDictionary_1.default));
7254
7410
  exports.default = CzechDictionary;
7255
7411
 
7256
- },{"./Base/BaseDictionary":40}],42:[function(require,module,exports){
7412
+ },{"./Base/BaseDictionary":41}],43:[function(require,module,exports){
7257
7413
  "use strict";
7258
7414
  var __extends = (this && this.__extends) || (function () {
7259
7415
  var extendStatics = function (d, b) {
@@ -7286,7 +7442,13 @@ var DanishDictionary = /** @class */ (function (_super) {
7286
7442
  BankElement: {
7287
7443
  Account: "Kontonummer",
7288
7444
  RegistrationNumber: "Registreringsnummer"
7289
- }
7445
+ },
7446
+ ResidentIdentificationElement: {
7447
+ Company: "Virksomhed",
7448
+ Property: "Ejendom",
7449
+ Tenancy: "Lejemål",
7450
+ Tenant: "Lejer"
7451
+ },
7290
7452
  };
7291
7453
  return _this;
7292
7454
  }
@@ -7294,7 +7456,7 @@ var DanishDictionary = /** @class */ (function (_super) {
7294
7456
  }(BaseDictionary_1.default));
7295
7457
  exports.default = DanishDictionary;
7296
7458
 
7297
- },{"./Base/BaseDictionary":40}],43:[function(require,module,exports){
7459
+ },{"./Base/BaseDictionary":41}],44:[function(require,module,exports){
7298
7460
  "use strict";
7299
7461
  var __extends = (this && this.__extends) || (function () {
7300
7462
  var extendStatics = function (d, b) {
@@ -7327,7 +7489,13 @@ var DutchDictionary = /** @class */ (function (_super) {
7327
7489
  BankElement: {
7328
7490
  Account: "Bankrekening",
7329
7491
  RegistrationNumber: "Bankrekening Registratienummer"
7330
- }
7492
+ },
7493
+ ResidentIdentificationElement: {
7494
+ Company: "Bedrijf",
7495
+ Property: "Eigendom",
7496
+ Tenancy: "Huurovereenkomst",
7497
+ Tenant: "Huurder"
7498
+ },
7331
7499
  };
7332
7500
  return _this;
7333
7501
  }
@@ -7335,7 +7503,7 @@ var DutchDictionary = /** @class */ (function (_super) {
7335
7503
  }(BaseDictionary_1.default));
7336
7504
  exports.default = DutchDictionary;
7337
7505
 
7338
- },{"./Base/BaseDictionary":40}],44:[function(require,module,exports){
7506
+ },{"./Base/BaseDictionary":41}],45:[function(require,module,exports){
7339
7507
  "use strict";
7340
7508
  var __extends = (this && this.__extends) || (function () {
7341
7509
  var extendStatics = function (d, b) {
@@ -7368,7 +7536,13 @@ var EnglishDictionary = /** @class */ (function (_super) {
7368
7536
  BankElement: {
7369
7537
  Account: "Bank Account",
7370
7538
  RegistrationNumber: "Bank Account Registration Number"
7371
- }
7539
+ },
7540
+ ResidentIdentificationElement: {
7541
+ Company: "Company",
7542
+ Property: "Property",
7543
+ Tenancy: "Tenancy",
7544
+ Tenant: "Tenant"
7545
+ },
7372
7546
  };
7373
7547
  return _this;
7374
7548
  }
@@ -7376,7 +7550,7 @@ var EnglishDictionary = /** @class */ (function (_super) {
7376
7550
  }(BaseDictionary_1.default));
7377
7551
  exports.default = EnglishDictionary;
7378
7552
 
7379
- },{"./Base/BaseDictionary":40}],45:[function(require,module,exports){
7553
+ },{"./Base/BaseDictionary":41}],46:[function(require,module,exports){
7380
7554
  "use strict";
7381
7555
  var __extends = (this && this.__extends) || (function () {
7382
7556
  var extendStatics = function (d, b) {
@@ -7409,7 +7583,13 @@ var EstonianDictionary = /** @class */ (function (_super) {
7409
7583
  BankElement: {
7410
7584
  Account: "Pangakonto",
7411
7585
  RegistrationNumber: "Pangakonto registreerimisnumber"
7412
- }
7586
+ },
7587
+ ResidentIdentificationElement: {
7588
+ Company: "Ettevõte",
7589
+ Property: "Kinnisvara",
7590
+ Tenancy: "Üürileping",
7591
+ Tenant: "Üürnik"
7592
+ },
7413
7593
  };
7414
7594
  return _this;
7415
7595
  }
@@ -7417,7 +7597,7 @@ var EstonianDictionary = /** @class */ (function (_super) {
7417
7597
  }(BaseDictionary_1.default));
7418
7598
  exports.default = EstonianDictionary;
7419
7599
 
7420
- },{"./Base/BaseDictionary":40}],46:[function(require,module,exports){
7600
+ },{"./Base/BaseDictionary":41}],47:[function(require,module,exports){
7421
7601
  "use strict";
7422
7602
  var __extends = (this && this.__extends) || (function () {
7423
7603
  var extendStatics = function (d, b) {
@@ -7450,7 +7630,13 @@ var FinnishDictionary = /** @class */ (function (_super) {
7450
7630
  BankElement: {
7451
7631
  Account: "Pankkitili",
7452
7632
  RegistrationNumber: "Pankkitilin rekisteröintinumero"
7453
- }
7633
+ },
7634
+ ResidentIdentificationElement: {
7635
+ Company: "Yritys",
7636
+ Property: "Kiinteistö",
7637
+ Tenancy: "Vuokrasopimus",
7638
+ Tenant: "Vuokralainen"
7639
+ },
7454
7640
  };
7455
7641
  return _this;
7456
7642
  }
@@ -7458,7 +7644,7 @@ var FinnishDictionary = /** @class */ (function (_super) {
7458
7644
  }(BaseDictionary_1.default));
7459
7645
  exports.default = FinnishDictionary;
7460
7646
 
7461
- },{"./Base/BaseDictionary":40}],47:[function(require,module,exports){
7647
+ },{"./Base/BaseDictionary":41}],48:[function(require,module,exports){
7462
7648
  "use strict";
7463
7649
  var __extends = (this && this.__extends) || (function () {
7464
7650
  var extendStatics = function (d, b) {
@@ -7491,7 +7677,13 @@ var FrenchDictionary = /** @class */ (function (_super) {
7491
7677
  BankElement: {
7492
7678
  Account: "Compte bancaire",
7493
7679
  RegistrationNumber: "Numéro d'enregistrement du compte bancaire"
7494
- }
7680
+ },
7681
+ ResidentIdentificationElement: {
7682
+ Company: "Société",
7683
+ Property: "Propriété",
7684
+ Tenancy: "Bail",
7685
+ Tenant: "Locataire"
7686
+ },
7495
7687
  };
7496
7688
  return _this;
7497
7689
  }
@@ -7499,7 +7691,7 @@ var FrenchDictionary = /** @class */ (function (_super) {
7499
7691
  }(BaseDictionary_1.default));
7500
7692
  exports.default = FrenchDictionary;
7501
7693
 
7502
- },{"./Base/BaseDictionary":40}],48:[function(require,module,exports){
7694
+ },{"./Base/BaseDictionary":41}],49:[function(require,module,exports){
7503
7695
  "use strict";
7504
7696
  var __extends = (this && this.__extends) || (function () {
7505
7697
  var extendStatics = function (d, b) {
@@ -7532,7 +7724,13 @@ var GermanDictionary = /** @class */ (function (_super) {
7532
7724
  BankElement: {
7533
7725
  Account: "Bankkonto",
7534
7726
  RegistrationNumber: "Bankkontoregistrierungsnummer"
7535
- }
7727
+ },
7728
+ ResidentIdentificationElement: {
7729
+ Company: "Unternehmen",
7730
+ Property: "Eigentum",
7731
+ Tenancy: "Mietvertrag",
7732
+ Tenant: "Mieter"
7733
+ },
7536
7734
  };
7537
7735
  return _this;
7538
7736
  }
@@ -7540,7 +7738,7 @@ var GermanDictionary = /** @class */ (function (_super) {
7540
7738
  }(BaseDictionary_1.default));
7541
7739
  exports.default = GermanDictionary;
7542
7740
 
7543
- },{"./Base/BaseDictionary":40}],49:[function(require,module,exports){
7741
+ },{"./Base/BaseDictionary":41}],50:[function(require,module,exports){
7544
7742
  "use strict";
7545
7743
  var __extends = (this && this.__extends) || (function () {
7546
7744
  var extendStatics = function (d, b) {
@@ -7573,7 +7771,13 @@ var GreekDictionary = /** @class */ (function (_super) {
7573
7771
  BankElement: {
7574
7772
  Account: "Τραπεζικός λογαριασμός",
7575
7773
  RegistrationNumber: "Αριθμός εγγραφής τραπεζικού λογαριασμού"
7576
- }
7774
+ },
7775
+ ResidentIdentificationElement: {
7776
+ Company: "Εταιρεία",
7777
+ Property: "Ακίνητο",
7778
+ Tenancy: "Μίσθωση",
7779
+ Tenant: "Ενοικιαστής"
7780
+ },
7577
7781
  };
7578
7782
  return _this;
7579
7783
  }
@@ -7581,7 +7785,7 @@ var GreekDictionary = /** @class */ (function (_super) {
7581
7785
  }(BaseDictionary_1.default));
7582
7786
  exports.default = GreekDictionary;
7583
7787
 
7584
- },{"./Base/BaseDictionary":40}],50:[function(require,module,exports){
7788
+ },{"./Base/BaseDictionary":41}],51:[function(require,module,exports){
7585
7789
  "use strict";
7586
7790
  var __extends = (this && this.__extends) || (function () {
7587
7791
  var extendStatics = function (d, b) {
@@ -7614,7 +7818,13 @@ var HungarianDictionary = /** @class */ (function (_super) {
7614
7818
  BankElement: {
7615
7819
  Account: "Banki számla",
7616
7820
  RegistrationNumber: "Banki számla regisztrációs száma"
7617
- }
7821
+ },
7822
+ ResidentIdentificationElement: {
7823
+ Company: "Cég",
7824
+ Property: "Ingatlan",
7825
+ Tenancy: "Bérlet",
7826
+ Tenant: "Bérlő"
7827
+ },
7618
7828
  };
7619
7829
  return _this;
7620
7830
  }
@@ -7622,7 +7832,7 @@ var HungarianDictionary = /** @class */ (function (_super) {
7622
7832
  }(BaseDictionary_1.default));
7623
7833
  exports.default = HungarianDictionary;
7624
7834
 
7625
- },{"./Base/BaseDictionary":40}],51:[function(require,module,exports){
7835
+ },{"./Base/BaseDictionary":41}],52:[function(require,module,exports){
7626
7836
  "use strict";
7627
7837
  var __extends = (this && this.__extends) || (function () {
7628
7838
  var extendStatics = function (d, b) {
@@ -7655,7 +7865,13 @@ var IcelandicDictionary = /** @class */ (function (_super) {
7655
7865
  BankElement: {
7656
7866
  Account: "Bankareikningur",
7657
7867
  RegistrationNumber: "Númer skráningar á bankareikningi"
7658
- }
7868
+ },
7869
+ ResidentIdentificationElement: {
7870
+ Company: "Fyrirtæki",
7871
+ Property: "Eign",
7872
+ Tenancy: "Leigusamningur",
7873
+ Tenant: "Leigjandi"
7874
+ },
7659
7875
  };
7660
7876
  return _this;
7661
7877
  }
@@ -7663,7 +7879,7 @@ var IcelandicDictionary = /** @class */ (function (_super) {
7663
7879
  }(BaseDictionary_1.default));
7664
7880
  exports.default = IcelandicDictionary;
7665
7881
 
7666
- },{"./Base/BaseDictionary":40}],52:[function(require,module,exports){
7882
+ },{"./Base/BaseDictionary":41}],53:[function(require,module,exports){
7667
7883
  "use strict";
7668
7884
  var __extends = (this && this.__extends) || (function () {
7669
7885
  var extendStatics = function (d, b) {
@@ -7696,7 +7912,13 @@ var ItalianDictionary = /** @class */ (function (_super) {
7696
7912
  BankElement: {
7697
7913
  Account: "conto bancario",
7698
7914
  RegistrationNumber: "Numero di registrazione del conto bancario"
7699
- }
7915
+ },
7916
+ ResidentIdentificationElement: {
7917
+ Company: "Azienda",
7918
+ Property: "Proprietà",
7919
+ Tenancy: "Contratto di locazione",
7920
+ Tenant: "Inquilino"
7921
+ },
7700
7922
  };
7701
7923
  return _this;
7702
7924
  }
@@ -7704,7 +7926,7 @@ var ItalianDictionary = /** @class */ (function (_super) {
7704
7926
  }(BaseDictionary_1.default));
7705
7927
  exports.default = ItalianDictionary;
7706
7928
 
7707
- },{"./Base/BaseDictionary":40}],53:[function(require,module,exports){
7929
+ },{"./Base/BaseDictionary":41}],54:[function(require,module,exports){
7708
7930
  "use strict";
7709
7931
  var __extends = (this && this.__extends) || (function () {
7710
7932
  var extendStatics = function (d, b) {
@@ -7737,7 +7959,13 @@ var LatvianDictionary = /** @class */ (function (_super) {
7737
7959
  BankElement: {
7738
7960
  Account: "Bankas konts",
7739
7961
  RegistrationNumber: "Bankas konta reģistrācijas numurs"
7740
- }
7962
+ },
7963
+ ResidentIdentificationElement: {
7964
+ Company: "Uzņēmums",
7965
+ Property: "Īpašums",
7966
+ Tenancy: "Nomas līgums",
7967
+ Tenant: "Nomnieks"
7968
+ },
7741
7969
  };
7742
7970
  return _this;
7743
7971
  }
@@ -7745,7 +7973,7 @@ var LatvianDictionary = /** @class */ (function (_super) {
7745
7973
  }(BaseDictionary_1.default));
7746
7974
  exports.default = LatvianDictionary;
7747
7975
 
7748
- },{"./Base/BaseDictionary":40}],54:[function(require,module,exports){
7976
+ },{"./Base/BaseDictionary":41}],55:[function(require,module,exports){
7749
7977
  "use strict";
7750
7978
  var __extends = (this && this.__extends) || (function () {
7751
7979
  var extendStatics = function (d, b) {
@@ -7778,7 +8006,13 @@ var LituanianDictionary = /** @class */ (function (_super) {
7778
8006
  BankElement: {
7779
8007
  Account: "Banko sąskaita",
7780
8008
  RegistrationNumber: "Banko sąskaitos registracijos numeris"
7781
- }
8009
+ },
8010
+ ResidentIdentificationElement: {
8011
+ Company: "Įmonė",
8012
+ Property: "Nuosavybė",
8013
+ Tenancy: "Nuomos sutartis",
8014
+ Tenant: "Nuomininkas"
8015
+ },
7782
8016
  };
7783
8017
  return _this;
7784
8018
  }
@@ -7786,7 +8020,7 @@ var LituanianDictionary = /** @class */ (function (_super) {
7786
8020
  }(BaseDictionary_1.default));
7787
8021
  exports.default = LituanianDictionary;
7788
8022
 
7789
- },{"./Base/BaseDictionary":40}],55:[function(require,module,exports){
8023
+ },{"./Base/BaseDictionary":41}],56:[function(require,module,exports){
7790
8024
  "use strict";
7791
8025
  var __extends = (this && this.__extends) || (function () {
7792
8026
  var extendStatics = function (d, b) {
@@ -7819,7 +8053,13 @@ var NorwegianDictionary = /** @class */ (function (_super) {
7819
8053
  BankElement: {
7820
8054
  Account: "Bankkonto",
7821
8055
  RegistrationNumber: "Registreringsnummer for bankkonto"
7822
- }
8056
+ },
8057
+ ResidentIdentificationElement: {
8058
+ Company: "Selskap",
8059
+ Property: "Eiendom",
8060
+ Tenancy: "Leieavtale",
8061
+ Tenant: "Leietaker"
8062
+ },
7823
8063
  };
7824
8064
  return _this;
7825
8065
  }
@@ -7827,7 +8067,7 @@ var NorwegianDictionary = /** @class */ (function (_super) {
7827
8067
  }(BaseDictionary_1.default));
7828
8068
  exports.default = NorwegianDictionary;
7829
8069
 
7830
- },{"./Base/BaseDictionary":40}],56:[function(require,module,exports){
8070
+ },{"./Base/BaseDictionary":41}],57:[function(require,module,exports){
7831
8071
  "use strict";
7832
8072
  var __extends = (this && this.__extends) || (function () {
7833
8073
  var extendStatics = function (d, b) {
@@ -7860,7 +8100,13 @@ var PolishDictionary = /** @class */ (function (_super) {
7860
8100
  BankElement: {
7861
8101
  Account: "Konto bankowe",
7862
8102
  RegistrationNumber: "Numer rejestracyjny konta bankowego"
7863
- }
8103
+ },
8104
+ ResidentIdentificationElement: {
8105
+ Company: "Firma",
8106
+ Property: "Nieruchomość",
8107
+ Tenancy: "Umowa najmu",
8108
+ Tenant: "Najemca"
8109
+ },
7864
8110
  };
7865
8111
  return _this;
7866
8112
  }
@@ -7868,7 +8114,7 @@ var PolishDictionary = /** @class */ (function (_super) {
7868
8114
  }(BaseDictionary_1.default));
7869
8115
  exports.default = PolishDictionary;
7870
8116
 
7871
- },{"./Base/BaseDictionary":40}],57:[function(require,module,exports){
8117
+ },{"./Base/BaseDictionary":41}],58:[function(require,module,exports){
7872
8118
  "use strict";
7873
8119
  var __extends = (this && this.__extends) || (function () {
7874
8120
  var extendStatics = function (d, b) {
@@ -7901,7 +8147,13 @@ var PortugueseDictionary = /** @class */ (function (_super) {
7901
8147
  BankElement: {
7902
8148
  Account: "Conta bancária",
7903
8149
  RegistrationNumber: "Número de registro da conta bancária"
7904
- }
8150
+ },
8151
+ ResidentIdentificationElement: {
8152
+ Company: "Empresa",
8153
+ Property: "Propriedade",
8154
+ Tenancy: "Contrato de locação",
8155
+ Tenant: "Inquilino"
8156
+ },
7905
8157
  };
7906
8158
  return _this;
7907
8159
  }
@@ -7909,7 +8161,7 @@ var PortugueseDictionary = /** @class */ (function (_super) {
7909
8161
  }(BaseDictionary_1.default));
7910
8162
  exports.default = PortugueseDictionary;
7911
8163
 
7912
- },{"./Base/BaseDictionary":40}],58:[function(require,module,exports){
8164
+ },{"./Base/BaseDictionary":41}],59:[function(require,module,exports){
7913
8165
  "use strict";
7914
8166
  var __extends = (this && this.__extends) || (function () {
7915
8167
  var extendStatics = function (d, b) {
@@ -7942,7 +8194,13 @@ var SpanishDictionary = /** @class */ (function (_super) {
7942
8194
  BankElement: {
7943
8195
  Account: "Cuenta bancaria",
7944
8196
  RegistrationNumber: "Número de registro de cuenta bancaria"
7945
- }
8197
+ },
8198
+ ResidentIdentificationElement: {
8199
+ Company: "Empresa",
8200
+ Property: "Propiedad",
8201
+ Tenancy: "Arrendamiento",
8202
+ Tenant: "Inquilino"
8203
+ },
7946
8204
  };
7947
8205
  return _this;
7948
8206
  }
@@ -7950,7 +8208,7 @@ var SpanishDictionary = /** @class */ (function (_super) {
7950
8208
  }(BaseDictionary_1.default));
7951
8209
  exports.default = SpanishDictionary;
7952
8210
 
7953
- },{"./Base/BaseDictionary":40}],59:[function(require,module,exports){
8211
+ },{"./Base/BaseDictionary":41}],60:[function(require,module,exports){
7954
8212
  "use strict";
7955
8213
  var __extends = (this && this.__extends) || (function () {
7956
8214
  var extendStatics = function (d, b) {
@@ -7983,7 +8241,13 @@ var SwedishDictionary = /** @class */ (function (_super) {
7983
8241
  BankElement: {
7984
8242
  Account: "Bankkonto",
7985
8243
  RegistrationNumber: "Bankkontoregistreringsnummer"
7986
- }
8244
+ },
8245
+ ResidentIdentificationElement: {
8246
+ Company: "Företag",
8247
+ Property: "Fastighet",
8248
+ Tenancy: "Hyresavtal",
8249
+ Tenant: "Hyresgäst"
8250
+ },
7987
8251
  };
7988
8252
  return _this;
7989
8253
  }
@@ -7991,7 +8255,7 @@ var SwedishDictionary = /** @class */ (function (_super) {
7991
8255
  }(BaseDictionary_1.default));
7992
8256
  exports.default = SwedishDictionary;
7993
8257
 
7994
- },{"./Base/BaseDictionary":40}],60:[function(require,module,exports){
8258
+ },{"./Base/BaseDictionary":41}],61:[function(require,module,exports){
7995
8259
  "use strict";
7996
8260
  Object.defineProperty(exports, "__esModule", { value: true });
7997
8261
  var DanishDictionary_1 = require("./Languages/DanishDictionary");
@@ -8050,7 +8314,7 @@ var Translator = /** @class */ (function () {
8050
8314
  }());
8051
8315
  exports.default = Translator;
8052
8316
 
8053
- },{"./Languages/CzechDictionary":41,"./Languages/DanishDictionary":42,"./Languages/DutchDictionary":43,"./Languages/EnglishDictionary":44,"./Languages/EstonianDictionary":45,"./Languages/FinnishDictionary":46,"./Languages/FrenchDictionary":47,"./Languages/GermanDictionary":48,"./Languages/GreekDictionary":49,"./Languages/HungarianDictionary":50,"./Languages/IcelandicDictionary":51,"./Languages/ItalianDictionary":52,"./Languages/LatvianDictionary":53,"./Languages/LituanianDictionary":54,"./Languages/NorwegianDictionary":55,"./Languages/PolishDictionary":56,"./Languages/PortugueseDictionary":57,"./Languages/SpanishDictionary":58,"./Languages/SwedishDictionary":59}],61:[function(require,module,exports){
8317
+ },{"./Languages/CzechDictionary":42,"./Languages/DanishDictionary":43,"./Languages/DutchDictionary":44,"./Languages/EnglishDictionary":45,"./Languages/EstonianDictionary":46,"./Languages/FinnishDictionary":47,"./Languages/FrenchDictionary":48,"./Languages/GermanDictionary":49,"./Languages/GreekDictionary":50,"./Languages/HungarianDictionary":51,"./Languages/IcelandicDictionary":52,"./Languages/ItalianDictionary":53,"./Languages/LatvianDictionary":54,"./Languages/LituanianDictionary":55,"./Languages/NorwegianDictionary":56,"./Languages/PolishDictionary":57,"./Languages/PortugueseDictionary":58,"./Languages/SpanishDictionary":59,"./Languages/SwedishDictionary":60}],62:[function(require,module,exports){
8054
8318
  "use strict";
8055
8319
  Object.defineProperty(exports, "__esModule", { value: true });
8056
8320
  function getAttributeNamesPolyfill() {
@@ -8069,7 +8333,7 @@ function getAttributeNamesPolyfill() {
8069
8333
  exports.default = getAttributeNamesPolyfill;
8070
8334
  ;
8071
8335
 
8072
- },{}],62:[function(require,module,exports){
8336
+ },{}],63:[function(require,module,exports){
8073
8337
  "use strict";
8074
8338
  Object.defineProperty(exports, "__esModule", { value: true });
8075
8339
  var ArrayUtil = /** @class */ (function () {
@@ -8107,7 +8371,7 @@ var ArrayUtil = /** @class */ (function () {
8107
8371
  }());
8108
8372
  exports.default = ArrayUtil;
8109
8373
 
8110
- },{}],63:[function(require,module,exports){
8374
+ },{}],64:[function(require,module,exports){
8111
8375
  "use strict";
8112
8376
  Object.defineProperty(exports, "__esModule", { value: true });
8113
8377
  var ViewportUtil_1 = require("./ViewportUtil");
@@ -8210,7 +8474,7 @@ var DomUtil = /** @class */ (function () {
8210
8474
  }());
8211
8475
  exports.default = DomUtil;
8212
8476
 
8213
- },{"./ViewportUtil":67}],64:[function(require,module,exports){
8477
+ },{"./ViewportUtil":68}],65:[function(require,module,exports){
8214
8478
  "use strict";
8215
8479
  Object.defineProperty(exports, "__esModule", { value: true });
8216
8480
  var DomUtility = /** @class */ (function () {
@@ -8224,7 +8488,7 @@ var DomUtility = /** @class */ (function () {
8224
8488
  }());
8225
8489
  exports.default = DomUtility;
8226
8490
 
8227
- },{}],65:[function(require,module,exports){
8491
+ },{}],66:[function(require,module,exports){
8228
8492
  "use strict";
8229
8493
  Object.defineProperty(exports, "__esModule", { value: true });
8230
8494
  var MakeRequest = /** @class */ (function () {
@@ -8274,7 +8538,7 @@ var MakeRequest = /** @class */ (function () {
8274
8538
  }());
8275
8539
  exports.default = MakeRequest;
8276
8540
 
8277
- },{}],66:[function(require,module,exports){
8541
+ },{}],67:[function(require,module,exports){
8278
8542
  "use strict";
8279
8543
  Object.defineProperty(exports, "__esModule", { value: true });
8280
8544
  exports.StringUtil = void 0;
@@ -8292,7 +8556,7 @@ var StringUtil = /** @class */ (function () {
8292
8556
  }());
8293
8557
  exports.StringUtil = StringUtil;
8294
8558
 
8295
- },{}],67:[function(require,module,exports){
8559
+ },{}],68:[function(require,module,exports){
8296
8560
  "use strict";
8297
8561
  Object.defineProperty(exports, "__esModule", { value: true });
8298
8562
  exports.ViewportUtil = void 0;
@@ -8336,7 +8600,7 @@ var ViewportUtil = /** @class */ (function () {
8336
8600
  }());
8337
8601
  exports.ViewportUtil = ViewportUtil;
8338
8602
 
8339
- },{}],68:[function(require,module,exports){
8603
+ },{}],69:[function(require,module,exports){
8340
8604
  "use strict";
8341
8605
  Object.defineProperty(exports, "__esModule", { value: true });
8342
8606
  var debouncer = function (func, wait, immediate) {
@@ -8389,7 +8653,7 @@ var debouncer = function (func, wait, immediate) {
8389
8653
  };
8390
8654
  exports.default = debouncer;
8391
8655
 
8392
- },{}],69:[function(require,module,exports){
8656
+ },{}],70:[function(require,module,exports){
8393
8657
  "use strict";
8394
8658
  Object.defineProperty(exports, "__esModule", { value: true });
8395
8659
  var BankAccountValidator = /** @class */ (function () {
@@ -8403,7 +8667,7 @@ var BankAccountValidator = /** @class */ (function () {
8403
8667
  }());
8404
8668
  exports.default = BankAccountValidator;
8405
8669
 
8406
- },{}],70:[function(require,module,exports){
8670
+ },{}],71:[function(require,module,exports){
8407
8671
  "use strict";
8408
8672
  Object.defineProperty(exports, "__esModule", { value: true });
8409
8673
  var BankAccountRegistrationNumberValidator = /** @class */ (function () {
@@ -8417,7 +8681,7 @@ var BankAccountRegistrationNumberValidator = /** @class */ (function () {
8417
8681
  }());
8418
8682
  exports.default = BankAccountRegistrationNumberValidator;
8419
8683
 
8420
- },{}],71:[function(require,module,exports){
8684
+ },{}],72:[function(require,module,exports){
8421
8685
  "use strict";
8422
8686
  Object.defineProperty(exports, "__esModule", { value: true });
8423
8687
  var BankIdNorwayValidator = /** @class */ (function () {
@@ -8440,7 +8704,7 @@ var BankIdNorwayValidator = /** @class */ (function () {
8440
8704
  }());
8441
8705
  exports.default = BankIdNorwayValidator;
8442
8706
 
8443
- },{}],72:[function(require,module,exports){
8707
+ },{}],73:[function(require,module,exports){
8444
8708
  "use strict";
8445
8709
  Object.defineProperty(exports, "__esModule", { value: true });
8446
8710
  var BankIdSwedenValidator = /** @class */ (function () {
@@ -8463,7 +8727,7 @@ var BankIdSwedenValidator = /** @class */ (function () {
8463
8727
  }());
8464
8728
  exports.default = BankIdSwedenValidator;
8465
8729
 
8466
- },{}],73:[function(require,module,exports){
8730
+ },{}],74:[function(require,module,exports){
8467
8731
  "use strict";
8468
8732
  Object.defineProperty(exports, "__esModule", { value: true });
8469
8733
  var CprValidator = /** @class */ (function () {
@@ -8540,7 +8804,7 @@ var CprValidator = /** @class */ (function () {
8540
8804
  }());
8541
8805
  exports.default = CprValidator;
8542
8806
 
8543
- },{}],74:[function(require,module,exports){
8807
+ },{}],75:[function(require,module,exports){
8544
8808
  "use strict";
8545
8809
  Object.defineProperty(exports, "__esModule", { value: true });
8546
8810
  var CvrValidator = /** @class */ (function () {
@@ -8572,7 +8836,36 @@ var CvrValidator = /** @class */ (function () {
8572
8836
  }());
8573
8837
  exports.default = CvrValidator;
8574
8838
 
8575
- },{}],75:[function(require,module,exports){
8839
+ },{}],76:[function(require,module,exports){
8840
+ "use strict";
8841
+ Object.defineProperty(exports, "__esModule", { value: true });
8842
+ var ResidentIdentificationValidator = /** @class */ (function () {
8843
+ function ResidentIdentificationValidator() {
8844
+ }
8845
+ ResidentIdentificationValidator.prototype.isSatisfiedBy = function (input, allowEmpty) {
8846
+ if (allowEmpty === void 0) { allowEmpty = true; }
8847
+ if (allowEmpty && !input) {
8848
+ return true;
8849
+ }
8850
+ var parts = input.split('-');
8851
+ if (parts.length !== 4) {
8852
+ return false;
8853
+ }
8854
+ var _a = parts.map(function (part) { return part.trim(); }), company = _a[0], property = _a[1], tenancy = _a[2], tenant = _a[3];
8855
+ return (this.validatePart(company, 1, 3) &&
8856
+ this.validatePart(property, 1, 4) &&
8857
+ this.validatePart(tenancy, 1, 6) &&
8858
+ this.validatePart(tenant, 1, 4));
8859
+ };
8860
+ ResidentIdentificationValidator.prototype.validatePart = function (part, min, max) {
8861
+ var number = parseInt(part, 10);
8862
+ return !isNaN(number) && part.length >= min && part.length <= max;
8863
+ };
8864
+ return ResidentIdentificationValidator;
8865
+ }());
8866
+ exports.default = ResidentIdentificationValidator;
8867
+
8868
+ },{}],77:[function(require,module,exports){
8576
8869
  "use strict";
8577
8870
  Object.defineProperty(exports, "__esModule", { value: true });
8578
8871
  var SECompanyRegistrationValidator = /** @class */ (function () {
@@ -8611,7 +8904,7 @@ var SECompanyRegistrationValidator = /** @class */ (function () {
8611
8904
  }());
8612
8905
  exports.default = SECompanyRegistrationValidator;
8613
8906
 
8614
- },{}],76:[function(require,module,exports){
8907
+ },{}],78:[function(require,module,exports){
8615
8908
  "use strict";
8616
8909
  Object.defineProperty(exports, "__esModule", { value: true });
8617
8910
  var SEPersonalNumberValidator = /** @class */ (function () {
@@ -8655,7 +8948,7 @@ var SEPersonalNumberValidator = /** @class */ (function () {
8655
8948
  }());
8656
8949
  exports.default = SEPersonalNumberValidator;
8657
8950
 
8658
- },{}],77:[function(require,module,exports){
8951
+ },{}],79:[function(require,module,exports){
8659
8952
  "use strict";
8660
8953
  Object.defineProperty(exports, "__esModule", { value: true });
8661
8954
  var elementConfig = /** @class */ (function () {
@@ -8708,7 +9001,7 @@ var CustomElement = function (config) {
8708
9001
  };
8709
9002
  exports.default = CustomElement;
8710
9003
 
8711
- },{}],78:[function(require,module,exports){
9004
+ },{}],80:[function(require,module,exports){
8712
9005
  "use strict";
8713
9006
  Object.defineProperty(exports, "__esModule", { value: true });
8714
9007
  exports.CustomInputElement = exports.elements = exports.CustomForm = void 0;
@@ -8724,6 +9017,6 @@ Object.defineProperty(exports, "CustomInputElement", { enumerable: true, get: fu
8724
9017
  var elements = require("./elements/Elements");
8725
9018
  exports.elements = elements;
8726
9019
 
8727
- },{"./custom-form":10,"./elements/Elements":24,"./framework/CustomInputElement":39,"@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js":2,"@webcomponents/webcomponentsjs/webcomponents-bundle":3,"@webcomponents/webcomponentsjs/webcomponents-loader.js":4}]},{},[1])
9020
+ },{"./custom-form":10,"./elements/Elements":24,"./framework/CustomInputElement":40,"@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js":2,"@webcomponents/webcomponentsjs/webcomponents-bundle":3,"@webcomponents/webcomponentsjs/webcomponents-loader.js":4}]},{},[1])
8728
9021
 
8729
9022
  //# sourceMappingURL=index.min.js.map