@luftborn/custom-elements 2.8.2 → 2.8.3

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
@@ -11,7 +11,7 @@ document.onreadystatechange = function () {
11
11
  }
12
12
  };
13
13
 
14
- },{"./../src/index":76}],2:[function(require,module,exports){
14
+ },{"./../src/index":77}],2:[function(require,module,exports){
15
15
  /**
16
16
  @license @nocompile
17
17
  Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
@@ -2367,7 +2367,7 @@ var CustomForm = /** @class */ (function () {
2367
2367
  }());
2368
2368
  exports.CustomForm = CustomForm;
2369
2369
 
2370
- },{"./elements/FileField/FileFieldElement":24,"./framework/Utilities/ArrayUtil":60,"./framework/Utilities/MakeRequest":63}],10:[function(require,module,exports){
2370
+ },{"./elements/FileField/FileFieldElement":25,"./framework/Utilities/ArrayUtil":61,"./framework/Utilities/MakeRequest":64}],10:[function(require,module,exports){
2371
2371
  "use strict";
2372
2372
  var __extends = (this && this.__extends) || (function () {
2373
2373
  var extendStatics = function (d, b) {
@@ -2575,7 +2575,7 @@ var AddressElement = /** @class */ (function (_super) {
2575
2575
  }(CustomInputElement_1.CustomInputElement));
2576
2576
  exports.AddressElement = AddressElement;
2577
2577
 
2578
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Language/Translator":58,"../../framework/Polyfills/getAttributeNamesPolyfill":59,"../../framework/Utilities/debouncer":66,"../../framework/custom-element.decorator":75}],11:[function(require,module,exports){
2578
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Language/Translator":59,"../../framework/Polyfills/getAttributeNamesPolyfill":60,"../../framework/Utilities/debouncer":67,"../../framework/custom-element.decorator":76}],11:[function(require,module,exports){
2579
2579
  "use strict";
2580
2580
  var __extends = (this && this.__extends) || (function () {
2581
2581
  var extendStatics = function (d, b) {
@@ -2704,7 +2704,7 @@ var BankFieldElement = /** @class */ (function (_super) {
2704
2704
  }(CustomInputElement_1.CustomInputElement));
2705
2705
  exports.BankFieldElement = BankFieldElement;
2706
2706
 
2707
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Language/Translator":58,"../../framework/Validation/Validators/BankAccount":67,"../../framework/Validation/Validators/BankAccountRegistrationNumber":68,"../../framework/custom-element.decorator":75}],12:[function(require,module,exports){
2707
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Language/Translator":59,"../../framework/Validation/Validators/BankAccount":68,"../../framework/Validation/Validators/BankAccountRegistrationNumber":69,"../../framework/custom-element.decorator":76}],12:[function(require,module,exports){
2708
2708
  "use strict";
2709
2709
  var __extends = (this && this.__extends) || (function () {
2710
2710
  var extendStatics = function (d, b) {
@@ -2788,7 +2788,7 @@ var CPRElement = /** @class */ (function (_super) {
2788
2788
  }(CustomInputElement_1.CustomInputElement));
2789
2789
  exports.CPRElement = CPRElement;
2790
2790
 
2791
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Validation/Validators/CPR":71,"../../framework/custom-element.decorator":75}],13:[function(require,module,exports){
2791
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Validation/Validators/CPR":72,"../../framework/custom-element.decorator":76}],13:[function(require,module,exports){
2792
2792
  "use strict";
2793
2793
  var __extends = (this && this.__extends) || (function () {
2794
2794
  var extendStatics = function (d, b) {
@@ -2872,7 +2872,7 @@ var CVRElement = /** @class */ (function (_super) {
2872
2872
  }(CustomInputElement_1.CustomInputElement));
2873
2873
  exports.CVRElement = CVRElement;
2874
2874
 
2875
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Validation/Validators/CVR":72,"../../framework/custom-element.decorator":75}],14:[function(require,module,exports){
2875
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Validation/Validators/CVR":73,"../../framework/custom-element.decorator":76}],14:[function(require,module,exports){
2876
2876
  "use strict";
2877
2877
  var __extends = (this && this.__extends) || (function () {
2878
2878
  var extendStatics = function (d, b) {
@@ -2970,13 +2970,16 @@ var CheckBoxElement = /** @class */ (function (_super) {
2970
2970
  }(CustomInputElement_1.CustomInputElement));
2971
2971
  exports.CheckBoxElement = CheckBoxElement;
2972
2972
 
2973
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Utilities/StringUtil":64,"../../framework/custom-element.decorator":75}],15:[function(require,module,exports){
2973
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Utilities/StringUtil":65,"../../framework/custom-element.decorator":76}],15:[function(require,module,exports){
2974
2974
  "use strict";
2975
2975
  Object.defineProperty(exports, "__esModule", { value: true });
2976
2976
  var CustomDatepickerStyles_1 = require("./CustomDatepickerStyles");
2977
2977
  var CustomDatepickerUtils_1 = require("./CustomDatepickerUtils");
2978
+ var DatepickerTranslations_1 = require("./DatepickerTranslations");
2978
2979
  var CustomDatepicker = /** @class */ (function () {
2979
2980
  function CustomDatepicker(options) {
2981
+ this.months = [];
2982
+ this.daysOfWeek = [];
2980
2983
  this.input = options.input;
2981
2984
  this.dateFormat = CustomDatepickerUtils_1.supportedDateFormats.includes(options.dateFormat) ? options.dateFormat : CustomDatepickerUtils_1.defaultDateFormat;
2982
2985
  this.otherTriggers = options.otherTriggers || [];
@@ -2992,6 +2995,8 @@ var CustomDatepicker = /** @class */ (function () {
2992
2995
  this.lastDayOfMonth = new Date(this.currentYear, this.currentMonth + 1, 0);
2993
2996
  this.firstDay = this.firstDayOfMonth.getDay();
2994
2997
  this.lastDay = this.lastDayOfMonth.getDate();
2998
+ this.months = (0, DatepickerTranslations_1.GetMonths)(options.language);
2999
+ this.daysOfWeek = (0, DatepickerTranslations_1.GetWeekdays)(options.language, 'short');
2995
3000
  this.createDatePickerElements();
2996
3001
  this.renderCalendar();
2997
3002
  this.initSelectMonthYear();
@@ -3077,11 +3082,11 @@ var CustomDatepicker = /** @class */ (function () {
3077
3082
  };
3078
3083
  CustomDatepicker.prototype.renderCalendar = function () {
3079
3084
  var _this = this;
3080
- this.monthYear.innerHTML = CustomDatepickerUtils_1.months[this.currentMonth] + ' ' + this.currentYear;
3085
+ this.monthYear.innerHTML = this.months[this.currentMonth] + ' ' + this.currentYear;
3081
3086
  this.weekdays.innerHTML = '';
3082
- for (var i = 0; i < CustomDatepickerUtils_1.daysOfWeek.length; i++) {
3087
+ for (var i = 0; i < this.daysOfWeek.length; i++) {
3083
3088
  var span = document.createElement('span');
3084
- span.innerHTML = CustomDatepickerUtils_1.daysOfWeek[i];
3089
+ span.innerHTML = this.daysOfWeek[i];
3085
3090
  this.weekdays.appendChild(span);
3086
3091
  }
3087
3092
  this.days.innerHTML = '';
@@ -3152,17 +3157,18 @@ var CustomDatepicker = /** @class */ (function () {
3152
3157
  monthsContainer.classList.add('months');
3153
3158
  var _loop_2 = function (i) {
3154
3159
  var span = document.createElement('span');
3155
- span.innerHTML = CustomDatepickerUtils_1.months[i].substring(0, 3);
3160
+ span.innerHTML = this_2.months[i].substring(0, 3);
3156
3161
  span.classList.add('select-month');
3157
3162
  monthsContainer.appendChild(span);
3158
3163
  span.onclick = function () {
3159
- _this.selectedMonth = CustomDatepickerUtils_1.months.findIndex(function (month) { return month.substring(0, 3) === span.innerHTML; });
3164
+ _this.selectedMonth = _this.months.findIndex(function (month) { return month.substring(0, 3) === span.innerHTML; });
3160
3165
  var moveMonthSteps = (_this.selectedYear - _this.currentYear) * 12 + _this.selectedMonth - _this.currentMonth;
3161
3166
  _this.moveMonth(moveMonthSteps);
3162
3167
  _this.hideSelectMonthYear();
3163
3168
  };
3164
3169
  };
3165
- for (var i = 0; i < CustomDatepickerUtils_1.months.length; i++) {
3170
+ var this_2 = this;
3171
+ for (var i = 0; i < this.months.length; i++) {
3166
3172
  _loop_2(i);
3167
3173
  }
3168
3174
  for (var i = this.currentYear - 100; i < this.currentYear + 100; i++) {
@@ -3298,7 +3304,7 @@ var CustomDatepicker = /** @class */ (function () {
3298
3304
  }());
3299
3305
  exports.default = CustomDatepicker;
3300
3306
 
3301
- },{"./CustomDatepickerStyles":16,"./CustomDatepickerUtils":17}],16:[function(require,module,exports){
3307
+ },{"./CustomDatepickerStyles":16,"./CustomDatepickerUtils":17,"./DatepickerTranslations":18}],16:[function(require,module,exports){
3302
3308
  "use strict";
3303
3309
  Object.defineProperty(exports, "__esModule", { value: true });
3304
3310
  exports.CustomDatepickerStyles = void 0;
@@ -3352,6 +3358,201 @@ exports.isMobileDevice = isMobileDevice;
3352
3358
 
3353
3359
  },{}],18:[function(require,module,exports){
3354
3360
  "use strict";
3361
+ Object.defineProperty(exports, "__esModule", { value: true });
3362
+ exports.GetMonths = exports.GetWeekdays = void 0;
3363
+ function GetWeekdays(language, type) {
3364
+ if (language === void 0) { language = 'en'; }
3365
+ if (type === void 0) { type = 'wide'; }
3366
+ language = supportedLanguages.includes(language) ? language : 'en';
3367
+ return weekdays[language][type];
3368
+ }
3369
+ exports.GetWeekdays = GetWeekdays;
3370
+ function GetMonths(language, type) {
3371
+ if (language === void 0) { language = 'en'; }
3372
+ if (type === void 0) { type = 'wide'; }
3373
+ language = supportedLanguages.includes(language) ? language : 'en';
3374
+ return months[language][type];
3375
+ }
3376
+ exports.GetMonths = GetMonths;
3377
+ var supportedLanguages = ['en', 'sv', 'de', 'fr', 'it', 'es', 'cs', 'pt', 'pl', 'nl', 'no', 'da', 'el', 'fi', 'is', 'et', 'lv', 'lt', 'hu'];
3378
+ var weekdays = {
3379
+ 'en': {
3380
+ 'short': ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
3381
+ 'abbreviated': ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
3382
+ 'wide': ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
3383
+ },
3384
+ 'sv': {
3385
+ 'short': ['sö', 'må', 'ti', 'on', 'to', 'fr', 'lö'],
3386
+ 'abbreviated': ['sön', 'mån', 'tis', 'ons', 'tor', 'fre', 'lör'],
3387
+ 'wide': ['söndag', 'måndag', 'tisdag', 'onsdag', 'torsdag', 'fredag', 'lördag']
3388
+ },
3389
+ 'de': {
3390
+ 'short': ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],
3391
+ 'abbreviated': ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],
3392
+ 'wide': ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag']
3393
+ },
3394
+ 'fr': {
3395
+ 'short': ['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa'],
3396
+ 'abbreviated': ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
3397
+ 'wide': ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi']
3398
+ },
3399
+ 'it': {
3400
+ 'short': ['do', 'lu', 'ma', 'me', 'gi', 've', 'sa'],
3401
+ 'abbreviated': ['dom', 'lun', 'mar', 'mer', 'gio', 'ven', 'sab'],
3402
+ 'wide': ['domenica', 'lunedì', 'martedì', 'mercoledì', 'giovedì', 'venerdì', 'sabato']
3403
+ },
3404
+ 'es': {
3405
+ 'short': ['do', 'lu', 'ma', 'mi', 'ju', 'vi', 'sá'],
3406
+ 'abbreviated': ['dom', 'lun', 'mar', 'mié', 'jue', 'vie', 'sáb'],
3407
+ 'wide': ['domingo', 'lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado']
3408
+ },
3409
+ 'cs': {
3410
+ 'short': ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'],
3411
+ 'abbreviated': ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'],
3412
+ 'wide': ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota']
3413
+ },
3414
+ 'pt': {
3415
+ 'short': ['do', '2ª', '3ª', '4ª', '5ª', '6ª', 'sá'],
3416
+ 'abbreviated': ['dom', '2ª', '3ª', '4ª', '5ª', '6ª', 'sáb'],
3417
+ 'wide': ['domingo', 'segunda-feira', 'terça-feira', 'quarta-feira', 'quinta-feira', 'sexta-feira', 'sábado']
3418
+ },
3419
+ 'pl': {
3420
+ 'short': ['nd', 'pn', 'wt', 'śr', 'cz', 'pt', 'so'],
3421
+ 'abbreviated': ['nd', 'pn', 'wt', 'śr', 'cz', 'pt', 'so'],
3422
+ 'wide': ['niedziela', 'poniedziałek', 'wtorek', 'środa', 'czwartek', 'piątek', 'sobota']
3423
+ },
3424
+ 'nl': {
3425
+ 'short': ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
3426
+ 'abbreviated': ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
3427
+ 'wide': ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag']
3428
+ },
3429
+ 'no': {
3430
+ 'short': ['sø', 'ma', 'ti', 'on', 'to', 'fr', 'lø'],
3431
+ 'abbreviated': ['sø', 'ma', 'ti', 'on', 'to', 'fr', 'lø'],
3432
+ 'wide': ['søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag']
3433
+ },
3434
+ 'da': {
3435
+ 'short': ['sø', 'ma', 'ti', 'on', 'to', 'fr', 'lø'],
3436
+ 'abbreviated': ['sø', 'ma', 'ti', 'on', 'to', 'fr', 'lø'],
3437
+ 'wide': ['søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag']
3438
+ },
3439
+ 'el': {
3440
+ 'short': ['Κυ', 'Δε', 'Τρ', 'Τε', 'Πε', 'Πα', 'Σα'],
3441
+ 'abbreviated': ['Κυρ', 'Δευ', 'Τρί', 'Τετ', 'Πέμ', 'Παρ', 'Σάβ'],
3442
+ 'wide': ['Κυριακή', 'Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη', 'Παρασκευή', 'Σάββατο']
3443
+ },
3444
+ 'fi': {
3445
+ 'short': ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],
3446
+ 'abbreviated': ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],
3447
+ 'wide': ['sunnuntai', 'maanantai', 'tiistai', 'keskiviikko', 'torstai', 'perjantai', 'lauantai']
3448
+ },
3449
+ 'is': {
3450
+ 'short': ['su', 'má', 'þr', 'mi', 'fi', 'fö', 'la'],
3451
+ 'abbreviated': ['sun', 'mán', 'þri', 'mið', 'fim', 'fös', 'lau'],
3452
+ 'wide': ['sunnudagur', 'mánudagur', 'þriðjudagur', 'miðvikudagur', 'fimmtudagur', 'föstudagur', 'laugardagur']
3453
+ },
3454
+ 'et': {
3455
+ 'short': ['P', 'E', 'T', 'K', 'N', 'R', 'L'],
3456
+ 'abbreviated': ['P', 'E', 'T', 'K', 'N', 'R', 'L'],
3457
+ 'wide': ['pühapäev', 'esmaspäev', 'teisipäev', 'kolmapäev', 'neljapäev', 'reede', 'laupäev']
3458
+ },
3459
+ 'lv': {
3460
+ 'short': ['Sv', 'P', 'O', 'T', 'C', 'Pk', 'Se'],
3461
+ 'abbreviated': ['Sv', 'P', 'O', 'T', 'C', 'Pk', 'Se'],
3462
+ 'wide': ['svētdiena', 'pirmdiena', 'otrdiena', 'trešdiena', 'ceturtdiena', 'piektdiena', 'sestdiena']
3463
+ },
3464
+ 'lt': {
3465
+ 'short': ['Sk', 'Pr', 'An', 'Tr', 'Kt', 'Pn', 'Št'],
3466
+ 'abbreviated': ['Sk', 'Pr', 'An', 'Tr', 'Kt', 'Pn', 'Št'],
3467
+ 'wide': ['sekmadienis', 'pirmadienis', 'antradienis', 'trečiadienis', 'ketvirtadienis', 'penktadienis', 'šeštadienis']
3468
+ },
3469
+ 'hu': {
3470
+ 'short': ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'],
3471
+ 'abbreviated': ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'],
3472
+ 'wide': ['vasárnap', 'hétfő', 'kedd', 'szerda', 'csütörtök', 'péntek', 'szombat']
3473
+ },
3474
+ };
3475
+ var months = {
3476
+ 'en': {
3477
+ 'abbreviated': ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
3478
+ 'wide': ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
3479
+ },
3480
+ 'sv': {
3481
+ 'abbreviated': ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
3482
+ 'wide': ['januari', 'februari', 'mars', 'april', 'maj', 'juni', 'juli', 'augusti', 'september', 'oktober', 'november', 'december']
3483
+ },
3484
+ 'de': {
3485
+ 'abbreviated': ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
3486
+ 'wide': ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember']
3487
+ },
3488
+ 'fr': {
3489
+ 'abbreviated': ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],
3490
+ 'wide': ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre']
3491
+ },
3492
+ 'it': {
3493
+ 'abbreviated': ['gen', 'feb', 'mar', 'apr', 'mag', 'giu', 'lug', 'ago', 'set', 'ott', 'nov', 'dic'],
3494
+ 'wide': ['gennaio', 'febbraio', 'marzo', 'aprile', 'maggio', 'giugno', 'luglio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dicembre']
3495
+ },
3496
+ 'es': {
3497
+ 'abbreviated': ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'],
3498
+ 'wide': ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre']
3499
+ },
3500
+ 'pt': {
3501
+ 'abbreviated': ['jan', 'fev', 'mar', 'abr', 'mai', 'jun', 'jul', 'ago', 'set', 'out', 'nov', 'dez'],
3502
+ 'wide': ['janeiro', 'fevereiro', 'março', 'abril', 'maio', 'junho', 'julho', 'agosto', 'setembro', 'outubro', 'novembro', 'dezembro']
3503
+ },
3504
+ 'cs': {
3505
+ 'abbreviated': ['led', 'úno', 'bře', 'dub', 'kvě', 'čer', 'čvc', 'srp', 'zář', 'říj', 'lis', 'pro'],
3506
+ 'wide': ['leden', 'únor', 'březen', 'duben', 'květen', 'červen', 'červenec', 'srpen', 'září', 'říjen', 'listopad', 'prosinec']
3507
+ },
3508
+ 'pl': {
3509
+ 'abbreviated': ['sty', 'lut', 'mar', 'kwi', 'maj', 'cze', 'lip', 'sie', 'wrz', 'paź', 'lis', 'gru'],
3510
+ 'wide': ['styczeń', 'luty', 'marzec', 'kwiecień', 'maj', 'czerwiec', 'lipiec', 'sierpień', 'wrzesień', 'październik', 'listopad', 'grudzień']
3511
+ },
3512
+ 'nl': {
3513
+ 'abbreviated': ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
3514
+ 'wide': ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december']
3515
+ },
3516
+ 'no': {
3517
+ 'abbreviated': ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],
3518
+ 'wide': ['januar', 'februar', 'mars', 'april', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember']
3519
+ },
3520
+ 'da': {
3521
+ 'abbreviated': ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
3522
+ 'wide': ['januar', 'februar', 'marts', 'april', 'maj', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'december']
3523
+ },
3524
+ 'el': {
3525
+ 'abbreviated': ['Ιαν', 'Φεβ', 'Μάρ', 'Απρ', 'Μάι', 'Ιούν', 'Ιούλ', 'Αύγ', 'Σεπ', 'Οκτ', 'Νοέ', 'Δεκ'],
3526
+ 'wide': ['Ιανουάριος', 'Φεβρουάριος', 'Μάρτιος', 'Απρίλιος', 'Μάιος', 'Ιούνιος', 'Ιούλιος', 'Αύγουστος', 'Σεπτέμβριος', 'Οκτώβριος', 'Νοέμβριος', 'Δεκέμβριος']
3527
+ },
3528
+ 'fi': {
3529
+ 'abbreviated': ['tammi', 'helmi', 'maalis', 'huhti', 'touko', 'kesä', 'heinä', 'elo', 'syys', 'lok', 'marras', 'joulu'],
3530
+ 'wide': ['tammikuu', 'helmikuu', 'maaliskuu', 'huhtikuu', 'toukokuu', 'kesäkuu', 'heinäkuu', 'elokuu', 'syyskuu', 'lokakuu', 'marraskuu', 'joulukuu']
3531
+ },
3532
+ 'is': {
3533
+ 'abbreviated': ['jan', 'feb', 'mar', 'apr', 'maí', 'jún', 'júl', 'ágú', 'sep', 'okt', 'nóv', 'des'],
3534
+ 'wide': ['janúar', 'febrúar', 'mars', 'apríl', 'maí', 'júní', 'júlí', 'ágúst', 'september', 'október', 'nóvember', 'desember']
3535
+ },
3536
+ 'et': {
3537
+ 'abbreviated': ['jaan', 'veebr', 'märts', 'apr', 'mai', 'juuni', 'juuli', 'aug', 'sept', 'okt', 'nov', 'dets'],
3538
+ 'wide': ['jaanuar', 'veebruar', 'märts', 'aprill', 'mai', 'juuni', 'juuli', 'august', 'september', 'oktoober', 'november', 'detsember']
3539
+ },
3540
+ 'lv': {
3541
+ 'abbreviated': ['jan', 'feb', 'mar', 'apr', 'mai', 'jūn', 'jūl', 'aug', 'sep', 'okt', 'nov', 'dec'],
3542
+ 'wide': ['janvāris', 'februāris', 'marts', 'aprīlis', 'maijs', 'jūnijs', 'jūlijs', 'augusts', 'septembris', 'oktobris', 'novembris', 'decembris']
3543
+ },
3544
+ 'lt': {
3545
+ 'abbreviated': ['sau', 'vas', 'kov', 'bal', 'geg', 'bir', 'lie', 'rugp', 'rugs', 'spal', 'lapkr', 'gruod'],
3546
+ 'wide': ['sausis', 'vasaris', 'kovas', 'balandis', 'gegužė', 'birželis', 'liepa', 'rugpjūtis', 'rugsėjis', 'spalis', 'lapkritis', 'gruodis']
3547
+ },
3548
+ 'hu': {
3549
+ 'abbreviated': ['jan', 'feb', 'már', 'ápr', 'máj', 'jún', 'júl', 'aug', 'szept', 'okt', 'nov', 'dec'],
3550
+ 'wide': ['január', 'február', 'március', 'április', 'május', 'június', 'július', 'augusztus', 'szeptember', 'október', 'november', 'december']
3551
+ },
3552
+ };
3553
+
3554
+ },{}],19:[function(require,module,exports){
3555
+ "use strict";
3355
3556
  var __extends = (this && this.__extends) || (function () {
3356
3557
  var extendStatics = function (d, b) {
3357
3558
  extendStatics = Object.setPrototypeOf ||
@@ -3406,6 +3607,7 @@ var CustomFormatDateFieldElement = /** @class */ (function (_super) {
3406
3607
  _super.prototype.connectedCallback.call(this);
3407
3608
  };
3408
3609
  CustomFormatDateFieldElement.prototype.initChildInputs = function () {
3610
+ var _a;
3409
3611
  this.date = _super.prototype.getChildInput.call(this, '#date-field');
3410
3612
  this.pickerTrigger = this.getChildElement('#picker-trigger');
3411
3613
  this.dateFormat = CustomDatepickerUtils_1.supportedDateFormats.includes(this.dateFormat) ? this.dateFormat : CustomDatepickerUtils_1.defaultDateFormat;
@@ -3420,6 +3622,7 @@ var CustomFormatDateFieldElement = /** @class */ (function (_super) {
3420
3622
  if (this.min) {
3421
3623
  this.date.setAttribute('min', this.min);
3422
3624
  }
3625
+ this.language = ((_a = this.attributes.getNamedItem('language')) === null || _a === void 0 ? void 0 : _a.value) || 'en';
3423
3626
  this.initCustomPicker();
3424
3627
  };
3425
3628
  // events
@@ -3431,12 +3634,24 @@ var CustomFormatDateFieldElement = /** @class */ (function (_super) {
3431
3634
  this.valid;
3432
3635
  this.onValidate.emit(new CustomEvents_1.CustomElementEventArgs(this.value, 'validate'));
3433
3636
  };
3637
+ CustomFormatDateFieldElement.prototype.attributeChangedCallback = function (name, oldValue, newValue) {
3638
+ this.attributeChanged(name, oldValue, newValue);
3639
+ };
3640
+ CustomFormatDateFieldElement.prototype.attributeChanged = function (name, oldValue, newValue) {
3641
+ switch (name) {
3642
+ case 'language':
3643
+ this.language = newValue;
3644
+ this.initCustomPicker();
3645
+ break;
3646
+ }
3647
+ };
3434
3648
  CustomFormatDateFieldElement.prototype.initCustomPicker = function () {
3435
- new CustomDatepicker_1.default({
3649
+ this.datePicker = new CustomDatepicker_1.default({
3436
3650
  input: this.date,
3437
3651
  dateFormat: this.dateFormat,
3438
3652
  otherTriggers: [this.pickerTrigger],
3439
3653
  parentElement: this,
3654
+ language: this.language,
3440
3655
  });
3441
3656
  };
3442
3657
  CustomFormatDateFieldElement = __decorate([
@@ -3451,7 +3666,7 @@ var CustomFormatDateFieldElement = /** @class */ (function (_super) {
3451
3666
  }(CustomInputElement_1.CustomInputElement));
3452
3667
  exports.CustomFormatDateFieldElement = CustomFormatDateFieldElement;
3453
3668
 
3454
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/custom-element.decorator":75,"./CustomDatepicker/CustomDatepicker":15,"./CustomDatepicker/CustomDatepickerUtils":17}],19:[function(require,module,exports){
3669
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/custom-element.decorator":76,"./CustomDatepicker/CustomDatepicker":15,"./CustomDatepicker/CustomDatepickerUtils":17}],20:[function(require,module,exports){
3455
3670
  "use strict";
3456
3671
  var __extends = (this && this.__extends) || (function () {
3457
3672
  var extendStatics = function (d, b) {
@@ -3544,7 +3759,7 @@ var CustomRegularExpressionElement = /** @class */ (function (_super) {
3544
3759
  }(CustomInputElement_1.CustomInputElement));
3545
3760
  exports.CustomRegularExpressionElement = CustomRegularExpressionElement;
3546
3761
 
3547
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/custom-element.decorator":75}],20:[function(require,module,exports){
3762
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/custom-element.decorator":76}],21:[function(require,module,exports){
3548
3763
  "use strict";
3549
3764
  var __extends = (this && this.__extends) || (function () {
3550
3765
  var extendStatics = function (d, b) {
@@ -3631,7 +3846,7 @@ var DateFieldElement = /** @class */ (function (_super) {
3631
3846
  }(CustomInputElement_1.CustomInputElement));
3632
3847
  exports.DateFieldElement = DateFieldElement;
3633
3848
 
3634
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/custom-element.decorator":75}],21:[function(require,module,exports){
3849
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/custom-element.decorator":76}],22:[function(require,module,exports){
3635
3850
  "use strict";
3636
3851
  var __extends = (this && this.__extends) || (function () {
3637
3852
  var extendStatics = function (d, b) {
@@ -3732,7 +3947,7 @@ var DropDownListElement = /** @class */ (function (_super) {
3732
3947
  }(CustomInputElement_1.CustomInputElement));
3733
3948
  exports.DropDownListElement = DropDownListElement;
3734
3949
 
3735
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Utilities/StringUtil":64,"../../framework/custom-element.decorator":75}],22:[function(require,module,exports){
3950
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Utilities/StringUtil":65,"../../framework/custom-element.decorator":76}],23:[function(require,module,exports){
3736
3951
  "use strict";
3737
3952
  Object.defineProperty(exports, "__esModule", { value: true });
3738
3953
  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;
@@ -3777,7 +3992,7 @@ Object.defineProperty(exports, "SECompanyRegistrationElement", { enumerable: tru
3777
3992
  var CustomFormatDateFieldElement_1 = require("./CustomFormatDateFieldElement/CustomFormatDateFieldElement");
3778
3993
  Object.defineProperty(exports, "CustomFormatDateFieldElement", { enumerable: true, get: function () { return CustomFormatDateFieldElement_1.CustomFormatDateFieldElement; } });
3779
3994
 
3780
- },{"./Address/AddressElement":10,"./BankField/BankFieldElement":11,"./CPRElement/CPRElement":12,"./CVRElement/CVRElement":13,"./CheckBoxElement/CheckBoxElement":14,"./CustomFormatDateFieldElement/CustomFormatDateFieldElement":18,"./CustomRegularExpression/CustomRegularExpressionElement":19,"./DateField/DateFieldElement":20,"./DropDownList/DropDownListElement":21,"./EmailField/EmailFieldElement":23,"./FileField/FileFieldElement":24,"./IdentificationElement/IdentificationElement":25,"./InternationaPhoneNumber/InternationaPhoneNumberElement":28,"./NumericField/NumericFieldElement":29,"./RadioButtonGroup/RadioButtonGroupElement":30,"./SECompanyRegistrationElement/SECompanyRegistrationElement":31,"./SEPersonalNumberElement/SEPersonalNumberElement":32,"./TextAreaElement/TextAreaElement":33,"./TextField/TextFieldElement":34,"./TypeAhead/TypeAheadElement":35}],23:[function(require,module,exports){
3995
+ },{"./Address/AddressElement":10,"./BankField/BankFieldElement":11,"./CPRElement/CPRElement":12,"./CVRElement/CVRElement":13,"./CheckBoxElement/CheckBoxElement":14,"./CustomFormatDateFieldElement/CustomFormatDateFieldElement":19,"./CustomRegularExpression/CustomRegularExpressionElement":20,"./DateField/DateFieldElement":21,"./DropDownList/DropDownListElement":22,"./EmailField/EmailFieldElement":24,"./FileField/FileFieldElement":25,"./IdentificationElement/IdentificationElement":26,"./InternationaPhoneNumber/InternationaPhoneNumberElement":29,"./NumericField/NumericFieldElement":30,"./RadioButtonGroup/RadioButtonGroupElement":31,"./SECompanyRegistrationElement/SECompanyRegistrationElement":32,"./SEPersonalNumberElement/SEPersonalNumberElement":33,"./TextAreaElement/TextAreaElement":34,"./TextField/TextFieldElement":35,"./TypeAhead/TypeAheadElement":36}],24:[function(require,module,exports){
3781
3996
  "use strict";
3782
3997
  var __extends = (this && this.__extends) || (function () {
3783
3998
  var extendStatics = function (d, b) {
@@ -3865,7 +4080,7 @@ var EmailFieldElement = /** @class */ (function (_super) {
3865
4080
  }(CustomInputElement_1.CustomInputElement));
3866
4081
  exports.EmailFieldElement = EmailFieldElement;
3867
4082
 
3868
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/custom-element.decorator":75}],24:[function(require,module,exports){
4083
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/custom-element.decorator":76}],25:[function(require,module,exports){
3869
4084
  "use strict";
3870
4085
  var __extends = (this && this.__extends) || (function () {
3871
4086
  var extendStatics = function (d, b) {
@@ -3970,7 +4185,7 @@ var FileFieldElement = /** @class */ (function (_super) {
3970
4185
  }(CustomInputElement_1.CustomInputElement));
3971
4186
  exports.FileFieldElement = FileFieldElement;
3972
4187
 
3973
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Polyfills/getAttributeNamesPolyfill":59,"../../framework/custom-element.decorator":75}],25:[function(require,module,exports){
4188
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Polyfills/getAttributeNamesPolyfill":60,"../../framework/custom-element.decorator":76}],26:[function(require,module,exports){
3974
4189
  "use strict";
3975
4190
  var __extends = (this && this.__extends) || (function () {
3976
4191
  var extendStatics = function (d, b) {
@@ -4066,7 +4281,7 @@ var IdentificationElement = /** @class */ (function (_super) {
4066
4281
  }(CustomInputElement_1.CustomInputElement));
4067
4282
  exports.IdentificationElement = IdentificationElement;
4068
4283
 
4069
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Validation/Validators/BankIdNorway":69,"../../framework/Validation/Validators/BankIdSweden":70,"../../framework/Validation/Validators/CPR":71,"../../framework/Validation/Validators/CVR":72,"../../framework/custom-element.decorator":75}],26:[function(require,module,exports){
4284
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Validation/Validators/BankIdNorway":70,"../../framework/Validation/Validators/BankIdSweden":71,"../../framework/Validation/Validators/CPR":72,"../../framework/Validation/Validators/CVR":73,"../../framework/custom-element.decorator":76}],27:[function(require,module,exports){
4070
4285
  "use strict";
4071
4286
  Object.defineProperty(exports, "__esModule", { value: true });
4072
4287
  function GetFlagsUrl() {
@@ -4074,7 +4289,7 @@ function GetFlagsUrl() {
4074
4289
  }
4075
4290
  exports.default = GetFlagsUrl;
4076
4291
 
4077
- },{}],27:[function(require,module,exports){
4292
+ },{}],28:[function(require,module,exports){
4078
4293
  "use strict";
4079
4294
  Object.defineProperty(exports, "__esModule", { value: true });
4080
4295
  function GetFlags2XUrl() {
@@ -4082,7 +4297,7 @@ function GetFlags2XUrl() {
4082
4297
  }
4083
4298
  exports.default = GetFlags2XUrl;
4084
4299
 
4085
- },{}],28:[function(require,module,exports){
4300
+ },{}],29:[function(require,module,exports){
4086
4301
  "use strict";
4087
4302
  var __extends = (this && this.__extends) || (function () {
4088
4303
  var extendStatics = function (d, b) {
@@ -4214,7 +4429,7 @@ var IntPhoneFieldElement = /** @class */ (function (_super) {
4214
4429
  }(CustomInputElement_1.CustomInputElement));
4215
4430
  exports.IntPhoneFieldElement = IntPhoneFieldElement;
4216
4431
 
4217
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Utilities/MakeRequest":63,"../../framework/custom-element.decorator":75,"./Flags":26,"./Flags2x":27,"intl-tel-input":6}],29:[function(require,module,exports){
4432
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Utilities/MakeRequest":64,"../../framework/custom-element.decorator":76,"./Flags":27,"./Flags2x":28,"intl-tel-input":6}],30:[function(require,module,exports){
4218
4433
  "use strict";
4219
4434
  var __extends = (this && this.__extends) || (function () {
4220
4435
  var extendStatics = function (d, b) {
@@ -4310,7 +4525,7 @@ var NumericFieldElement = /** @class */ (function (_super) {
4310
4525
  }(CustomInputElement_1.CustomInputElement));
4311
4526
  exports.NumericFieldElement = NumericFieldElement;
4312
4527
 
4313
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/custom-element.decorator":75}],30:[function(require,module,exports){
4528
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/custom-element.decorator":76}],31:[function(require,module,exports){
4314
4529
  "use strict";
4315
4530
  var __extends = (this && this.__extends) || (function () {
4316
4531
  var extendStatics = function (d, b) {
@@ -4411,7 +4626,7 @@ var RadioButtonGroupElement = /** @class */ (function (_super) {
4411
4626
  }(CustomInputElement_1.CustomInputElement));
4412
4627
  exports.RadioButtonGroupElement = RadioButtonGroupElement;
4413
4628
 
4414
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Utilities/StringUtil":64,"../../framework/custom-element.decorator":75}],31:[function(require,module,exports){
4629
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Utilities/StringUtil":65,"../../framework/custom-element.decorator":76}],32:[function(require,module,exports){
4415
4630
  "use strict";
4416
4631
  var __extends = (this && this.__extends) || (function () {
4417
4632
  var extendStatics = function (d, b) {
@@ -4495,7 +4710,7 @@ var SECompanyRegistrationElement = /** @class */ (function (_super) {
4495
4710
  }(CustomInputElement_1.CustomInputElement));
4496
4711
  exports.SECompanyRegistrationElement = SECompanyRegistrationElement;
4497
4712
 
4498
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Validation/Validators/SECompanyRegistration":73,"../../framework/custom-element.decorator":75}],32:[function(require,module,exports){
4713
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Validation/Validators/SECompanyRegistration":74,"../../framework/custom-element.decorator":76}],33:[function(require,module,exports){
4499
4714
  "use strict";
4500
4715
  var __extends = (this && this.__extends) || (function () {
4501
4716
  var extendStatics = function (d, b) {
@@ -4579,7 +4794,7 @@ var SEPersonalNumberElement = /** @class */ (function (_super) {
4579
4794
  }(CustomInputElement_1.CustomInputElement));
4580
4795
  exports.SEPersonalNumberElement = SEPersonalNumberElement;
4581
4796
 
4582
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Validation/Validators/SEPersonalNumber":74,"../../framework/custom-element.decorator":75}],33:[function(require,module,exports){
4797
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Validation/Validators/SEPersonalNumber":75,"../../framework/custom-element.decorator":76}],34:[function(require,module,exports){
4583
4798
  "use strict";
4584
4799
  var __extends = (this && this.__extends) || (function () {
4585
4800
  var extendStatics = function (d, b) {
@@ -4663,7 +4878,7 @@ var TextAreaElement = /** @class */ (function (_super) {
4663
4878
  }(CustomInputElement_1.CustomInputElement));
4664
4879
  exports.TextAreaElement = TextAreaElement;
4665
4880
 
4666
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/custom-element.decorator":75}],34:[function(require,module,exports){
4881
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/custom-element.decorator":76}],35:[function(require,module,exports){
4667
4882
  "use strict";
4668
4883
  var __extends = (this && this.__extends) || (function () {
4669
4884
  var extendStatics = function (d, b) {
@@ -4747,7 +4962,7 @@ var TextFieldElement = /** @class */ (function (_super) {
4747
4962
  }(CustomInputElement_1.CustomInputElement));
4748
4963
  exports.TextFieldElement = TextFieldElement;
4749
4964
 
4750
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/custom-element.decorator":75}],35:[function(require,module,exports){
4965
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/custom-element.decorator":76}],36:[function(require,module,exports){
4751
4966
  "use strict";
4752
4967
  var __extends = (this && this.__extends) || (function () {
4753
4968
  var extendStatics = function (d, b) {
@@ -4961,7 +5176,7 @@ var TypeAheadElement = /** @class */ (function (_super) {
4961
5176
  }(CustomInputElement_1.CustomInputElement));
4962
5177
  exports.TypeAheadElement = TypeAheadElement;
4963
5178
 
4964
- },{"../../framework/CustomEvents":36,"../../framework/CustomInputElement":37,"../../framework/Utilities/DomUtility":62,"../../framework/custom-element.decorator":75}],36:[function(require,module,exports){
5179
+ },{"../../framework/CustomEvents":37,"../../framework/CustomInputElement":38,"../../framework/Utilities/DomUtility":63,"../../framework/custom-element.decorator":76}],37:[function(require,module,exports){
4965
5180
  "use strict";
4966
5181
  Object.defineProperty(exports, "__esModule", { value: true });
4967
5182
  exports.CustomElementEvent = exports.CustomElementEventArgs = void 0;
@@ -5010,7 +5225,7 @@ var CustomElementEvent = /** @class */ (function () {
5010
5225
  }());
5011
5226
  exports.CustomElementEvent = CustomElementEvent;
5012
5227
 
5013
- },{}],37:[function(require,module,exports){
5228
+ },{}],38:[function(require,module,exports){
5014
5229
  "use strict";
5015
5230
  var __extends = (this && this.__extends) || (function () {
5016
5231
  var extendStatics = function (d, b) {
@@ -5272,7 +5487,7 @@ var CustomInputElement = /** @class */ (function (_super) {
5272
5487
  }(HTMLElement));
5273
5488
  exports.CustomInputElement = CustomInputElement;
5274
5489
 
5275
- },{"./CustomEvents":36,"./Utilities/ArrayUtil":60,"./Utilities/DomUtil":61}],38:[function(require,module,exports){
5490
+ },{"./CustomEvents":37,"./Utilities/ArrayUtil":61,"./Utilities/DomUtil":62}],39:[function(require,module,exports){
5276
5491
  "use strict";
5277
5492
  Object.defineProperty(exports, "__esModule", { value: true });
5278
5493
  var BaseDictionary = /** @class */ (function () {
@@ -5294,7 +5509,7 @@ var BaseDictionary = /** @class */ (function () {
5294
5509
  }());
5295
5510
  exports.default = BaseDictionary;
5296
5511
 
5297
- },{}],39:[function(require,module,exports){
5512
+ },{}],40:[function(require,module,exports){
5298
5513
  "use strict";
5299
5514
  var __extends = (this && this.__extends) || (function () {
5300
5515
  var extendStatics = function (d, b) {
@@ -5335,7 +5550,7 @@ var CzechDictionary = /** @class */ (function (_super) {
5335
5550
  }(BaseDictionary_1.default));
5336
5551
  exports.default = CzechDictionary;
5337
5552
 
5338
- },{"./Base/BaseDictionary":38}],40:[function(require,module,exports){
5553
+ },{"./Base/BaseDictionary":39}],41:[function(require,module,exports){
5339
5554
  "use strict";
5340
5555
  var __extends = (this && this.__extends) || (function () {
5341
5556
  var extendStatics = function (d, b) {
@@ -5376,7 +5591,7 @@ var DanishDictionary = /** @class */ (function (_super) {
5376
5591
  }(BaseDictionary_1.default));
5377
5592
  exports.default = DanishDictionary;
5378
5593
 
5379
- },{"./Base/BaseDictionary":38}],41:[function(require,module,exports){
5594
+ },{"./Base/BaseDictionary":39}],42:[function(require,module,exports){
5380
5595
  "use strict";
5381
5596
  var __extends = (this && this.__extends) || (function () {
5382
5597
  var extendStatics = function (d, b) {
@@ -5417,7 +5632,7 @@ var DutchDictionary = /** @class */ (function (_super) {
5417
5632
  }(BaseDictionary_1.default));
5418
5633
  exports.default = DutchDictionary;
5419
5634
 
5420
- },{"./Base/BaseDictionary":38}],42:[function(require,module,exports){
5635
+ },{"./Base/BaseDictionary":39}],43:[function(require,module,exports){
5421
5636
  "use strict";
5422
5637
  var __extends = (this && this.__extends) || (function () {
5423
5638
  var extendStatics = function (d, b) {
@@ -5458,7 +5673,7 @@ var EnglishDictionary = /** @class */ (function (_super) {
5458
5673
  }(BaseDictionary_1.default));
5459
5674
  exports.default = EnglishDictionary;
5460
5675
 
5461
- },{"./Base/BaseDictionary":38}],43:[function(require,module,exports){
5676
+ },{"./Base/BaseDictionary":39}],44:[function(require,module,exports){
5462
5677
  "use strict";
5463
5678
  var __extends = (this && this.__extends) || (function () {
5464
5679
  var extendStatics = function (d, b) {
@@ -5499,7 +5714,7 @@ var EstonianDictionary = /** @class */ (function (_super) {
5499
5714
  }(BaseDictionary_1.default));
5500
5715
  exports.default = EstonianDictionary;
5501
5716
 
5502
- },{"./Base/BaseDictionary":38}],44:[function(require,module,exports){
5717
+ },{"./Base/BaseDictionary":39}],45:[function(require,module,exports){
5503
5718
  "use strict";
5504
5719
  var __extends = (this && this.__extends) || (function () {
5505
5720
  var extendStatics = function (d, b) {
@@ -5540,7 +5755,7 @@ var FinnishDictionary = /** @class */ (function (_super) {
5540
5755
  }(BaseDictionary_1.default));
5541
5756
  exports.default = FinnishDictionary;
5542
5757
 
5543
- },{"./Base/BaseDictionary":38}],45:[function(require,module,exports){
5758
+ },{"./Base/BaseDictionary":39}],46:[function(require,module,exports){
5544
5759
  "use strict";
5545
5760
  var __extends = (this && this.__extends) || (function () {
5546
5761
  var extendStatics = function (d, b) {
@@ -5581,7 +5796,7 @@ var FrenchDictionary = /** @class */ (function (_super) {
5581
5796
  }(BaseDictionary_1.default));
5582
5797
  exports.default = FrenchDictionary;
5583
5798
 
5584
- },{"./Base/BaseDictionary":38}],46:[function(require,module,exports){
5799
+ },{"./Base/BaseDictionary":39}],47:[function(require,module,exports){
5585
5800
  "use strict";
5586
5801
  var __extends = (this && this.__extends) || (function () {
5587
5802
  var extendStatics = function (d, b) {
@@ -5622,7 +5837,7 @@ var GermanDictionary = /** @class */ (function (_super) {
5622
5837
  }(BaseDictionary_1.default));
5623
5838
  exports.default = GermanDictionary;
5624
5839
 
5625
- },{"./Base/BaseDictionary":38}],47:[function(require,module,exports){
5840
+ },{"./Base/BaseDictionary":39}],48:[function(require,module,exports){
5626
5841
  "use strict";
5627
5842
  var __extends = (this && this.__extends) || (function () {
5628
5843
  var extendStatics = function (d, b) {
@@ -5663,7 +5878,7 @@ var GreekDictionary = /** @class */ (function (_super) {
5663
5878
  }(BaseDictionary_1.default));
5664
5879
  exports.default = GreekDictionary;
5665
5880
 
5666
- },{"./Base/BaseDictionary":38}],48:[function(require,module,exports){
5881
+ },{"./Base/BaseDictionary":39}],49:[function(require,module,exports){
5667
5882
  "use strict";
5668
5883
  var __extends = (this && this.__extends) || (function () {
5669
5884
  var extendStatics = function (d, b) {
@@ -5704,7 +5919,7 @@ var HungarianDictionary = /** @class */ (function (_super) {
5704
5919
  }(BaseDictionary_1.default));
5705
5920
  exports.default = HungarianDictionary;
5706
5921
 
5707
- },{"./Base/BaseDictionary":38}],49:[function(require,module,exports){
5922
+ },{"./Base/BaseDictionary":39}],50:[function(require,module,exports){
5708
5923
  "use strict";
5709
5924
  var __extends = (this && this.__extends) || (function () {
5710
5925
  var extendStatics = function (d, b) {
@@ -5745,7 +5960,7 @@ var IcelandicDictionary = /** @class */ (function (_super) {
5745
5960
  }(BaseDictionary_1.default));
5746
5961
  exports.default = IcelandicDictionary;
5747
5962
 
5748
- },{"./Base/BaseDictionary":38}],50:[function(require,module,exports){
5963
+ },{"./Base/BaseDictionary":39}],51:[function(require,module,exports){
5749
5964
  "use strict";
5750
5965
  var __extends = (this && this.__extends) || (function () {
5751
5966
  var extendStatics = function (d, b) {
@@ -5786,7 +6001,7 @@ var ItalianDictionary = /** @class */ (function (_super) {
5786
6001
  }(BaseDictionary_1.default));
5787
6002
  exports.default = ItalianDictionary;
5788
6003
 
5789
- },{"./Base/BaseDictionary":38}],51:[function(require,module,exports){
6004
+ },{"./Base/BaseDictionary":39}],52:[function(require,module,exports){
5790
6005
  "use strict";
5791
6006
  var __extends = (this && this.__extends) || (function () {
5792
6007
  var extendStatics = function (d, b) {
@@ -5827,7 +6042,7 @@ var LatvianDictionary = /** @class */ (function (_super) {
5827
6042
  }(BaseDictionary_1.default));
5828
6043
  exports.default = LatvianDictionary;
5829
6044
 
5830
- },{"./Base/BaseDictionary":38}],52:[function(require,module,exports){
6045
+ },{"./Base/BaseDictionary":39}],53:[function(require,module,exports){
5831
6046
  "use strict";
5832
6047
  var __extends = (this && this.__extends) || (function () {
5833
6048
  var extendStatics = function (d, b) {
@@ -5868,7 +6083,7 @@ var LituanianDictionary = /** @class */ (function (_super) {
5868
6083
  }(BaseDictionary_1.default));
5869
6084
  exports.default = LituanianDictionary;
5870
6085
 
5871
- },{"./Base/BaseDictionary":38}],53:[function(require,module,exports){
6086
+ },{"./Base/BaseDictionary":39}],54:[function(require,module,exports){
5872
6087
  "use strict";
5873
6088
  var __extends = (this && this.__extends) || (function () {
5874
6089
  var extendStatics = function (d, b) {
@@ -5909,7 +6124,7 @@ var NorwegianDictionary = /** @class */ (function (_super) {
5909
6124
  }(BaseDictionary_1.default));
5910
6125
  exports.default = NorwegianDictionary;
5911
6126
 
5912
- },{"./Base/BaseDictionary":38}],54:[function(require,module,exports){
6127
+ },{"./Base/BaseDictionary":39}],55:[function(require,module,exports){
5913
6128
  "use strict";
5914
6129
  var __extends = (this && this.__extends) || (function () {
5915
6130
  var extendStatics = function (d, b) {
@@ -5950,7 +6165,7 @@ var PolishDictionary = /** @class */ (function (_super) {
5950
6165
  }(BaseDictionary_1.default));
5951
6166
  exports.default = PolishDictionary;
5952
6167
 
5953
- },{"./Base/BaseDictionary":38}],55:[function(require,module,exports){
6168
+ },{"./Base/BaseDictionary":39}],56:[function(require,module,exports){
5954
6169
  "use strict";
5955
6170
  var __extends = (this && this.__extends) || (function () {
5956
6171
  var extendStatics = function (d, b) {
@@ -5991,7 +6206,7 @@ var PortugueseDictionary = /** @class */ (function (_super) {
5991
6206
  }(BaseDictionary_1.default));
5992
6207
  exports.default = PortugueseDictionary;
5993
6208
 
5994
- },{"./Base/BaseDictionary":38}],56:[function(require,module,exports){
6209
+ },{"./Base/BaseDictionary":39}],57:[function(require,module,exports){
5995
6210
  "use strict";
5996
6211
  var __extends = (this && this.__extends) || (function () {
5997
6212
  var extendStatics = function (d, b) {
@@ -6032,7 +6247,7 @@ var SpanishDictionary = /** @class */ (function (_super) {
6032
6247
  }(BaseDictionary_1.default));
6033
6248
  exports.default = SpanishDictionary;
6034
6249
 
6035
- },{"./Base/BaseDictionary":38}],57:[function(require,module,exports){
6250
+ },{"./Base/BaseDictionary":39}],58:[function(require,module,exports){
6036
6251
  "use strict";
6037
6252
  var __extends = (this && this.__extends) || (function () {
6038
6253
  var extendStatics = function (d, b) {
@@ -6073,7 +6288,7 @@ var SwedishDictionary = /** @class */ (function (_super) {
6073
6288
  }(BaseDictionary_1.default));
6074
6289
  exports.default = SwedishDictionary;
6075
6290
 
6076
- },{"./Base/BaseDictionary":38}],58:[function(require,module,exports){
6291
+ },{"./Base/BaseDictionary":39}],59:[function(require,module,exports){
6077
6292
  "use strict";
6078
6293
  Object.defineProperty(exports, "__esModule", { value: true });
6079
6294
  var DanishDictionary_1 = require("./Languages/DanishDictionary");
@@ -6190,7 +6405,7 @@ var Translator = /** @class */ (function () {
6190
6405
  }());
6191
6406
  exports.default = Translator;
6192
6407
 
6193
- },{"./Languages/CzechDictionary":39,"./Languages/DanishDictionary":40,"./Languages/DutchDictionary":41,"./Languages/EnglishDictionary":42,"./Languages/EstonianDictionary":43,"./Languages/FinnishDictionary":44,"./Languages/FrenchDictionary":45,"./Languages/GermanDictionary":46,"./Languages/GreekDictionary":47,"./Languages/HungarianDictionary":48,"./Languages/IcelandicDictionary":49,"./Languages/ItalianDictionary":50,"./Languages/LatvianDictionary":51,"./Languages/LituanianDictionary":52,"./Languages/NorwegianDictionary":53,"./Languages/PolishDictionary":54,"./Languages/PortugueseDictionary":55,"./Languages/SpanishDictionary":56,"./Languages/SwedishDictionary":57}],59:[function(require,module,exports){
6408
+ },{"./Languages/CzechDictionary":40,"./Languages/DanishDictionary":41,"./Languages/DutchDictionary":42,"./Languages/EnglishDictionary":43,"./Languages/EstonianDictionary":44,"./Languages/FinnishDictionary":45,"./Languages/FrenchDictionary":46,"./Languages/GermanDictionary":47,"./Languages/GreekDictionary":48,"./Languages/HungarianDictionary":49,"./Languages/IcelandicDictionary":50,"./Languages/ItalianDictionary":51,"./Languages/LatvianDictionary":52,"./Languages/LituanianDictionary":53,"./Languages/NorwegianDictionary":54,"./Languages/PolishDictionary":55,"./Languages/PortugueseDictionary":56,"./Languages/SpanishDictionary":57,"./Languages/SwedishDictionary":58}],60:[function(require,module,exports){
6194
6409
  "use strict";
6195
6410
  Object.defineProperty(exports, "__esModule", { value: true });
6196
6411
  function getAttributeNamesPolyfill() {
@@ -6209,7 +6424,7 @@ function getAttributeNamesPolyfill() {
6209
6424
  exports.default = getAttributeNamesPolyfill;
6210
6425
  ;
6211
6426
 
6212
- },{}],60:[function(require,module,exports){
6427
+ },{}],61:[function(require,module,exports){
6213
6428
  "use strict";
6214
6429
  Object.defineProperty(exports, "__esModule", { value: true });
6215
6430
  var ArrayUtil = /** @class */ (function () {
@@ -6247,7 +6462,7 @@ var ArrayUtil = /** @class */ (function () {
6247
6462
  }());
6248
6463
  exports.default = ArrayUtil;
6249
6464
 
6250
- },{}],61:[function(require,module,exports){
6465
+ },{}],62:[function(require,module,exports){
6251
6466
  "use strict";
6252
6467
  Object.defineProperty(exports, "__esModule", { value: true });
6253
6468
  var ViewportUtil_1 = require("./ViewportUtil");
@@ -6350,7 +6565,7 @@ var DomUtil = /** @class */ (function () {
6350
6565
  }());
6351
6566
  exports.default = DomUtil;
6352
6567
 
6353
- },{"./ViewportUtil":65}],62:[function(require,module,exports){
6568
+ },{"./ViewportUtil":66}],63:[function(require,module,exports){
6354
6569
  "use strict";
6355
6570
  Object.defineProperty(exports, "__esModule", { value: true });
6356
6571
  var DomUtility = /** @class */ (function () {
@@ -6364,7 +6579,7 @@ var DomUtility = /** @class */ (function () {
6364
6579
  }());
6365
6580
  exports.default = DomUtility;
6366
6581
 
6367
- },{}],63:[function(require,module,exports){
6582
+ },{}],64:[function(require,module,exports){
6368
6583
  "use strict";
6369
6584
  Object.defineProperty(exports, "__esModule", { value: true });
6370
6585
  var MakeRequest = /** @class */ (function () {
@@ -6414,7 +6629,7 @@ var MakeRequest = /** @class */ (function () {
6414
6629
  }());
6415
6630
  exports.default = MakeRequest;
6416
6631
 
6417
- },{}],64:[function(require,module,exports){
6632
+ },{}],65:[function(require,module,exports){
6418
6633
  "use strict";
6419
6634
  Object.defineProperty(exports, "__esModule", { value: true });
6420
6635
  exports.StringUtil = void 0;
@@ -6432,7 +6647,7 @@ var StringUtil = /** @class */ (function () {
6432
6647
  }());
6433
6648
  exports.StringUtil = StringUtil;
6434
6649
 
6435
- },{}],65:[function(require,module,exports){
6650
+ },{}],66:[function(require,module,exports){
6436
6651
  "use strict";
6437
6652
  Object.defineProperty(exports, "__esModule", { value: true });
6438
6653
  exports.ViewportUtil = void 0;
@@ -6476,7 +6691,7 @@ var ViewportUtil = /** @class */ (function () {
6476
6691
  }());
6477
6692
  exports.ViewportUtil = ViewportUtil;
6478
6693
 
6479
- },{}],66:[function(require,module,exports){
6694
+ },{}],67:[function(require,module,exports){
6480
6695
  "use strict";
6481
6696
  Object.defineProperty(exports, "__esModule", { value: true });
6482
6697
  var debouncer = function (func, wait, immediate) {
@@ -6529,7 +6744,7 @@ var debouncer = function (func, wait, immediate) {
6529
6744
  };
6530
6745
  exports.default = debouncer;
6531
6746
 
6532
- },{}],67:[function(require,module,exports){
6747
+ },{}],68:[function(require,module,exports){
6533
6748
  "use strict";
6534
6749
  Object.defineProperty(exports, "__esModule", { value: true });
6535
6750
  var BankAccountValidator = /** @class */ (function () {
@@ -6543,7 +6758,7 @@ var BankAccountValidator = /** @class */ (function () {
6543
6758
  }());
6544
6759
  exports.default = BankAccountValidator;
6545
6760
 
6546
- },{}],68:[function(require,module,exports){
6761
+ },{}],69:[function(require,module,exports){
6547
6762
  "use strict";
6548
6763
  Object.defineProperty(exports, "__esModule", { value: true });
6549
6764
  var BankAccountRegistrationNumberValidator = /** @class */ (function () {
@@ -6557,7 +6772,7 @@ var BankAccountRegistrationNumberValidator = /** @class */ (function () {
6557
6772
  }());
6558
6773
  exports.default = BankAccountRegistrationNumberValidator;
6559
6774
 
6560
- },{}],69:[function(require,module,exports){
6775
+ },{}],70:[function(require,module,exports){
6561
6776
  "use strict";
6562
6777
  Object.defineProperty(exports, "__esModule", { value: true });
6563
6778
  var BankIdNorwayValidator = /** @class */ (function () {
@@ -6580,7 +6795,7 @@ var BankIdNorwayValidator = /** @class */ (function () {
6580
6795
  }());
6581
6796
  exports.default = BankIdNorwayValidator;
6582
6797
 
6583
- },{}],70:[function(require,module,exports){
6798
+ },{}],71:[function(require,module,exports){
6584
6799
  "use strict";
6585
6800
  Object.defineProperty(exports, "__esModule", { value: true });
6586
6801
  var BankIdSwedenValidator = /** @class */ (function () {
@@ -6603,7 +6818,7 @@ var BankIdSwedenValidator = /** @class */ (function () {
6603
6818
  }());
6604
6819
  exports.default = BankIdSwedenValidator;
6605
6820
 
6606
- },{}],71:[function(require,module,exports){
6821
+ },{}],72:[function(require,module,exports){
6607
6822
  "use strict";
6608
6823
  Object.defineProperty(exports, "__esModule", { value: true });
6609
6824
  var CprValidator = /** @class */ (function () {
@@ -6680,7 +6895,7 @@ var CprValidator = /** @class */ (function () {
6680
6895
  }());
6681
6896
  exports.default = CprValidator;
6682
6897
 
6683
- },{}],72:[function(require,module,exports){
6898
+ },{}],73:[function(require,module,exports){
6684
6899
  "use strict";
6685
6900
  Object.defineProperty(exports, "__esModule", { value: true });
6686
6901
  var CvrValidator = /** @class */ (function () {
@@ -6712,7 +6927,7 @@ var CvrValidator = /** @class */ (function () {
6712
6927
  }());
6713
6928
  exports.default = CvrValidator;
6714
6929
 
6715
- },{}],73:[function(require,module,exports){
6930
+ },{}],74:[function(require,module,exports){
6716
6931
  "use strict";
6717
6932
  Object.defineProperty(exports, "__esModule", { value: true });
6718
6933
  var SECompanyRegistrationValidator = /** @class */ (function () {
@@ -6751,7 +6966,7 @@ var SECompanyRegistrationValidator = /** @class */ (function () {
6751
6966
  }());
6752
6967
  exports.default = SECompanyRegistrationValidator;
6753
6968
 
6754
- },{}],74:[function(require,module,exports){
6969
+ },{}],75:[function(require,module,exports){
6755
6970
  "use strict";
6756
6971
  Object.defineProperty(exports, "__esModule", { value: true });
6757
6972
  var SEPersonalNumberValidator = /** @class */ (function () {
@@ -6795,7 +7010,7 @@ var SEPersonalNumberValidator = /** @class */ (function () {
6795
7010
  }());
6796
7011
  exports.default = SEPersonalNumberValidator;
6797
7012
 
6798
- },{}],75:[function(require,module,exports){
7013
+ },{}],76:[function(require,module,exports){
6799
7014
  "use strict";
6800
7015
  Object.defineProperty(exports, "__esModule", { value: true });
6801
7016
  var elementConfig = /** @class */ (function () {
@@ -6848,7 +7063,7 @@ var CustomElement = function (config) {
6848
7063
  };
6849
7064
  exports.default = CustomElement;
6850
7065
 
6851
- },{}],76:[function(require,module,exports){
7066
+ },{}],77:[function(require,module,exports){
6852
7067
  "use strict";
6853
7068
  Object.defineProperty(exports, "__esModule", { value: true });
6854
7069
  exports.CustomInputElement = exports.elements = exports.CustomForm = void 0;
@@ -6864,6 +7079,6 @@ Object.defineProperty(exports, "CustomInputElement", { enumerable: true, get: fu
6864
7079
  var elements = require("./elements/Elements");
6865
7080
  exports.elements = elements;
6866
7081
 
6867
- },{"./custom-form":9,"./elements/Elements":22,"./framework/CustomInputElement":37,"@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js":2,"@webcomponents/webcomponentsjs/webcomponents-bundle":3,"@webcomponents/webcomponentsjs/webcomponents-loader.js":4}]},{},[1])
7082
+ },{"./custom-form":9,"./elements/Elements":23,"./framework/CustomInputElement":38,"@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js":2,"@webcomponents/webcomponentsjs/webcomponents-bundle":3,"@webcomponents/webcomponentsjs/webcomponents-loader.js":4}]},{},[1])
6868
7083
 
6869
7084
  //# sourceMappingURL=index.min.js.map