@everymatrix/pam-forgot-password 1.87.26 → 1.87.27

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.
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-f3a3bcb2.js');
6
- const pamForgotPassword = require('./pam-forgot-password-355fdd4d.js');
6
+ const pamForgotPassword = require('./pam-forgot-password-45ac1bf4.js');
7
7
 
8
8
  const DEFAULT_LANGUAGE = 'en';
9
9
  const TRANSLATIONS = {
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const pamForgotPassword = require('./pam-forgot-password-355fdd4d.js');
5
+ const pamForgotPassword = require('./pam-forgot-password-45ac1bf4.js');
6
6
  require('./index-f3a3bcb2.js');
7
7
 
8
8
 
@@ -231,6 +231,8 @@ function checkDeviceType() {
231
231
  return 'desktop';
232
232
  }
233
233
 
234
+ const StyleCacheKey = '__WIDGET_GLOBAL_STYLE_CACHE__';
235
+
234
236
  /**
235
237
  * @name setClientStyling
236
238
  * @description Method used to create and append to the passed element of the widget a style element with the content received
@@ -276,18 +278,75 @@ function setClientStylingURL(stylingContainer, clientStylingUrl) {
276
278
  * @param {HTMLElement} stylingContainer The highest element of the widget
277
279
  * @param {string} domain The domain from where the content should be fetched (e.g. 'Casino.Style', 'App.Style', 'casino-footer.style', etc.)
278
280
  * @param {ref} subscription A reference to a variable where the subscription should be saved for unsubscribing when no longer needed
281
+ * @param {boolean} useAdoptedStyleSheets A flag to gradually enable testing of adoptedStyleSheets
279
282
  */
280
- function setStreamStyling(stylingContainer, domain, subscription) {
281
- if (window.emMessageBus) {
282
- const sheet = document.createElement('style');
283
+ function setStreamStyling(stylingContainer, domain, subscription, useAdoptedStyleSheets = false) {
284
+ if (!window.emMessageBus) return;
283
285
 
284
- window.emMessageBus.subscribe(domain, (data) => {
285
- sheet.innerHTML = data;
286
- if (stylingContainer) {
287
- stylingContainer.appendChild(sheet);
288
- }
289
- });
286
+ const supportAdoptStyle = 'adoptedStyleSheets' in Document.prototype;
287
+
288
+ if (!supportAdoptStyle || !useAdoptedStyleSheets) {
289
+ subscription = getStyleTagSubscription(stylingContainer, domain);
290
+
291
+ return subscription;
292
+ }
293
+
294
+ if (!window[StyleCacheKey]) {
295
+ window[StyleCacheKey] = {};
290
296
  }
297
+ subscription = getAdoptStyleSubscription(stylingContainer, domain);
298
+
299
+ const originalUnsubscribe = subscription.unsubscribe.bind(subscription);
300
+ const wrappedUnsubscribe = () => {
301
+ if (window[StyleCacheKey][domain]) {
302
+ const cachedObject = window[StyleCacheKey][domain];
303
+ cachedObject.refCount > 1
304
+ ? (cachedObject.refCount = cachedObject.refCount - 1)
305
+ : delete window[StyleCacheKey][domain];
306
+ }
307
+
308
+ originalUnsubscribe();
309
+ };
310
+ subscription.unsubscribe = wrappedUnsubscribe;
311
+
312
+ return subscription;
313
+ }
314
+
315
+ function getStyleTagSubscription(stylingContainer, domain) {
316
+ const sheet = document.createElement('style');
317
+
318
+ return window.emMessageBus.subscribe(domain, (data) => {
319
+ if (stylingContainer) {
320
+ sheet.innerHTML = data;
321
+ stylingContainer.appendChild(sheet);
322
+ }
323
+ });
324
+ }
325
+
326
+ function getAdoptStyleSubscription(stylingContainer, domain) {
327
+ return window.emMessageBus.subscribe(domain, (data) => {
328
+ if (!stylingContainer) return;
329
+
330
+ const shadowRoot = stylingContainer.getRootNode();
331
+ const cacheStyleObject = window[StyleCacheKey];
332
+ let cachedStyle = cacheStyleObject[domain]?.sheet;
333
+
334
+ if (!cachedStyle) {
335
+ cachedStyle = new CSSStyleSheet();
336
+ cachedStyle.replaceSync(data);
337
+ cacheStyleObject[domain] = {
338
+ sheet: cachedStyle,
339
+ refCount: 1
340
+ };
341
+ } else {
342
+ cacheStyleObject[domain].refCount = cacheStyleObject[domain].refCount + 1;
343
+ }
344
+
345
+ const currentSheets = shadowRoot.adoptedStyleSheets || [];
346
+ if (!currentSheets.includes(cachedStyle)) {
347
+ shadowRoot.adoptedStyleSheets = [...currentSheets, cachedStyle];
348
+ }
349
+ });
291
350
  }
292
351
 
293
352
  const pamForgotPasswordCss = "::host {\n display: block;\n}\n\n.PlayerForgotPassword {\n font-family: inherit;\n width: 100%;\n height: 100%;\n container-type: inline-size;\n opacity: 1;\n animation-name: fadeIn;\n animation-iteration-count: 1;\n animation-timing-function: ease-in;\n animation-duration: 0.3s;\n container-type: inline-size;\n}\n.PlayerForgotPassword .Error {\n font-size: var(--emw--font-size-x-small, 12px);\n color: var(--emw--color-error, #ed0909);\n}\n.PlayerForgotPassword .Loading {\n font-size: var(--emw--font-size-x-small, 12px);\n color: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword .Title {\n background-color: transparent;\n font-size: var(--emw--font-size-x-large, 26px);\n color: var(--emw--color-primary, #22B04E);\n font-weight: var(--emw--font-weight-semibold, 500);\n}\n.PlayerForgotPassword .TitleMobile {\n font-size: var(--emw--font-size-x-large, 20px);\n color: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword svg {\n fill: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword .ButtonReturn {\n display: none;\n font-family: inherit;\n align-items: center;\n gap: 10px;\n}\n.PlayerForgotPassword .Form {\n display: grid;\n grid-template-columns: repeat(1, 1fr);\n gap: 40px;\n justify-items: stretch;\n align-content: flex-start;\n overflow: auto;\n width: 100%;\n height: 100%;\n}\n.PlayerForgotPassword .Form .FieldsSection {\n display: flex;\n flex-direction: column;\n gap: 30px;\n}\n.PlayerForgotPassword .Form .ContactWrapper {\n display: flex;\n flex-direction: row;\n width: 100%;\n gap: 5px;\n}\n.PlayerForgotPassword .Form .ContactWrapper .Select {\n width: 25%;\n}\n.PlayerForgotPassword .Form .ContactWrapper .Contact {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile {\n display: flex;\n flex-direction: column;\n width: 100%;\n gap: 30px;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile .Select {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile .Contact {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ButtonsSection {\n display: flex;\n flex-direction: column;\n justify-content: space-around;\n align-items: center;\n position: relative;\n}\n.PlayerForgotPassword .Button {\n font-family: inherit;\n border-radius: var(--emw--button-border-radius, var(--emw--border-radius-large, 50px));\n background: var(--emw--button-background-color, var(--emw--color-primary, #22B04E));\n border: var(--emw--button-border, 1px solid var(--emw--button-border-color, #22B04E));\n color: var(--emw--button-text-color, var(--emw--color-white, #FFFFFF));\n font-size: var(--emw--font-size-large, 20px);\n font-weight: var(--emw--font-weight-normal, 400);\n height: 50px;\n width: 100%;\n text-transform: uppercase;\n cursor: pointer;\n}\n.PlayerForgotPassword .Button:disabled {\n background: var(--emw--color-gray-100, #E6E6E6);\n border: var(--emw--button-border, 1px solid var(--emw--button-border-color, #828282));\n pointer-events: none;\n cursor: not-allowed;\n}\n.PlayerForgotPassword.skeleton .Form .ButtonReturn {\n width: 150px;\n height: 30px;\n margin-top: 15px;\n display: block;\n}\n.PlayerForgotPassword.skeleton .Form .FieldsSection {\n display: block;\n}\n.PlayerForgotPassword.skeleton .Form .FieldsSection .FieldContainer .FieldTitle {\n width: 100px;\n margin-top: 30px;\n margin-bottom: 15px;\n}\n.PlayerForgotPassword.skeleton .Form .ButtonsSection .Button {\n font-family: inherit;\n border-radius: 50px;\n background: transparent;\n border: none;\n overflow: hidden;\n}\n@container (max-width: 425px) {\n .PlayerForgotPassword .Form .ButtonReturn {\n display: inline-flex;\n }\n .PlayerForgotPassword .Form .Title {\n display: none;\n }\n}\n\n@keyframes fadeIn {\n 0% {\n opacity: 0.01;\n }\n 1% {\n opacity: 0;\n }\n 50% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}";
@@ -475,7 +534,7 @@ const PamForgotPassword = class {
475
534
  componentDidLoad() {
476
535
  if (this.stylingContainer) {
477
536
  if (window.emMessageBus != undefined) {
478
- setStreamStyling(this.stylingContainer, `${this.mbSource}.Style`);
537
+ setStreamStyling(this.stylingContainer, `${this.mbSource}.Style`, this.stylingSubscription);
479
538
  }
480
539
  else {
481
540
  if (this.clientStyling)
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, c as createEvent, h, g as getElement, H as Host } from './index-3a596979.js';
2
- export { P as pam_forgot_password } from './pam-forgot-password-fa19e1f6.js';
2
+ export { P as pam_forgot_password } from './pam-forgot-password-7e70c8eb.js';
3
3
 
4
4
  const DEFAULT_LANGUAGE = 'en';
5
5
  const TRANSLATIONS = {
package/dist/esm/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export { P as PamForgotPassword } from './pam-forgot-password-fa19e1f6.js';
1
+ export { P as PamForgotPassword } from './pam-forgot-password-7e70c8eb.js';
2
2
  import './index-3a596979.js';
@@ -229,6 +229,8 @@ function checkDeviceType() {
229
229
  return 'desktop';
230
230
  }
231
231
 
232
+ const StyleCacheKey = '__WIDGET_GLOBAL_STYLE_CACHE__';
233
+
232
234
  /**
233
235
  * @name setClientStyling
234
236
  * @description Method used to create and append to the passed element of the widget a style element with the content received
@@ -274,18 +276,75 @@ function setClientStylingURL(stylingContainer, clientStylingUrl) {
274
276
  * @param {HTMLElement} stylingContainer The highest element of the widget
275
277
  * @param {string} domain The domain from where the content should be fetched (e.g. 'Casino.Style', 'App.Style', 'casino-footer.style', etc.)
276
278
  * @param {ref} subscription A reference to a variable where the subscription should be saved for unsubscribing when no longer needed
279
+ * @param {boolean} useAdoptedStyleSheets A flag to gradually enable testing of adoptedStyleSheets
277
280
  */
278
- function setStreamStyling(stylingContainer, domain, subscription) {
279
- if (window.emMessageBus) {
280
- const sheet = document.createElement('style');
281
+ function setStreamStyling(stylingContainer, domain, subscription, useAdoptedStyleSheets = false) {
282
+ if (!window.emMessageBus) return;
281
283
 
282
- window.emMessageBus.subscribe(domain, (data) => {
283
- sheet.innerHTML = data;
284
- if (stylingContainer) {
285
- stylingContainer.appendChild(sheet);
286
- }
287
- });
284
+ const supportAdoptStyle = 'adoptedStyleSheets' in Document.prototype;
285
+
286
+ if (!supportAdoptStyle || !useAdoptedStyleSheets) {
287
+ subscription = getStyleTagSubscription(stylingContainer, domain);
288
+
289
+ return subscription;
290
+ }
291
+
292
+ if (!window[StyleCacheKey]) {
293
+ window[StyleCacheKey] = {};
288
294
  }
295
+ subscription = getAdoptStyleSubscription(stylingContainer, domain);
296
+
297
+ const originalUnsubscribe = subscription.unsubscribe.bind(subscription);
298
+ const wrappedUnsubscribe = () => {
299
+ if (window[StyleCacheKey][domain]) {
300
+ const cachedObject = window[StyleCacheKey][domain];
301
+ cachedObject.refCount > 1
302
+ ? (cachedObject.refCount = cachedObject.refCount - 1)
303
+ : delete window[StyleCacheKey][domain];
304
+ }
305
+
306
+ originalUnsubscribe();
307
+ };
308
+ subscription.unsubscribe = wrappedUnsubscribe;
309
+
310
+ return subscription;
311
+ }
312
+
313
+ function getStyleTagSubscription(stylingContainer, domain) {
314
+ const sheet = document.createElement('style');
315
+
316
+ return window.emMessageBus.subscribe(domain, (data) => {
317
+ if (stylingContainer) {
318
+ sheet.innerHTML = data;
319
+ stylingContainer.appendChild(sheet);
320
+ }
321
+ });
322
+ }
323
+
324
+ function getAdoptStyleSubscription(stylingContainer, domain) {
325
+ return window.emMessageBus.subscribe(domain, (data) => {
326
+ if (!stylingContainer) return;
327
+
328
+ const shadowRoot = stylingContainer.getRootNode();
329
+ const cacheStyleObject = window[StyleCacheKey];
330
+ let cachedStyle = cacheStyleObject[domain]?.sheet;
331
+
332
+ if (!cachedStyle) {
333
+ cachedStyle = new CSSStyleSheet();
334
+ cachedStyle.replaceSync(data);
335
+ cacheStyleObject[domain] = {
336
+ sheet: cachedStyle,
337
+ refCount: 1
338
+ };
339
+ } else {
340
+ cacheStyleObject[domain].refCount = cacheStyleObject[domain].refCount + 1;
341
+ }
342
+
343
+ const currentSheets = shadowRoot.adoptedStyleSheets || [];
344
+ if (!currentSheets.includes(cachedStyle)) {
345
+ shadowRoot.adoptedStyleSheets = [...currentSheets, cachedStyle];
346
+ }
347
+ });
289
348
  }
290
349
 
291
350
  const pamForgotPasswordCss = "::host {\n display: block;\n}\n\n.PlayerForgotPassword {\n font-family: inherit;\n width: 100%;\n height: 100%;\n container-type: inline-size;\n opacity: 1;\n animation-name: fadeIn;\n animation-iteration-count: 1;\n animation-timing-function: ease-in;\n animation-duration: 0.3s;\n container-type: inline-size;\n}\n.PlayerForgotPassword .Error {\n font-size: var(--emw--font-size-x-small, 12px);\n color: var(--emw--color-error, #ed0909);\n}\n.PlayerForgotPassword .Loading {\n font-size: var(--emw--font-size-x-small, 12px);\n color: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword .Title {\n background-color: transparent;\n font-size: var(--emw--font-size-x-large, 26px);\n color: var(--emw--color-primary, #22B04E);\n font-weight: var(--emw--font-weight-semibold, 500);\n}\n.PlayerForgotPassword .TitleMobile {\n font-size: var(--emw--font-size-x-large, 20px);\n color: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword svg {\n fill: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword .ButtonReturn {\n display: none;\n font-family: inherit;\n align-items: center;\n gap: 10px;\n}\n.PlayerForgotPassword .Form {\n display: grid;\n grid-template-columns: repeat(1, 1fr);\n gap: 40px;\n justify-items: stretch;\n align-content: flex-start;\n overflow: auto;\n width: 100%;\n height: 100%;\n}\n.PlayerForgotPassword .Form .FieldsSection {\n display: flex;\n flex-direction: column;\n gap: 30px;\n}\n.PlayerForgotPassword .Form .ContactWrapper {\n display: flex;\n flex-direction: row;\n width: 100%;\n gap: 5px;\n}\n.PlayerForgotPassword .Form .ContactWrapper .Select {\n width: 25%;\n}\n.PlayerForgotPassword .Form .ContactWrapper .Contact {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile {\n display: flex;\n flex-direction: column;\n width: 100%;\n gap: 30px;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile .Select {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile .Contact {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ButtonsSection {\n display: flex;\n flex-direction: column;\n justify-content: space-around;\n align-items: center;\n position: relative;\n}\n.PlayerForgotPassword .Button {\n font-family: inherit;\n border-radius: var(--emw--button-border-radius, var(--emw--border-radius-large, 50px));\n background: var(--emw--button-background-color, var(--emw--color-primary, #22B04E));\n border: var(--emw--button-border, 1px solid var(--emw--button-border-color, #22B04E));\n color: var(--emw--button-text-color, var(--emw--color-white, #FFFFFF));\n font-size: var(--emw--font-size-large, 20px);\n font-weight: var(--emw--font-weight-normal, 400);\n height: 50px;\n width: 100%;\n text-transform: uppercase;\n cursor: pointer;\n}\n.PlayerForgotPassword .Button:disabled {\n background: var(--emw--color-gray-100, #E6E6E6);\n border: var(--emw--button-border, 1px solid var(--emw--button-border-color, #828282));\n pointer-events: none;\n cursor: not-allowed;\n}\n.PlayerForgotPassword.skeleton .Form .ButtonReturn {\n width: 150px;\n height: 30px;\n margin-top: 15px;\n display: block;\n}\n.PlayerForgotPassword.skeleton .Form .FieldsSection {\n display: block;\n}\n.PlayerForgotPassword.skeleton .Form .FieldsSection .FieldContainer .FieldTitle {\n width: 100px;\n margin-top: 30px;\n margin-bottom: 15px;\n}\n.PlayerForgotPassword.skeleton .Form .ButtonsSection .Button {\n font-family: inherit;\n border-radius: 50px;\n background: transparent;\n border: none;\n overflow: hidden;\n}\n@container (max-width: 425px) {\n .PlayerForgotPassword .Form .ButtonReturn {\n display: inline-flex;\n }\n .PlayerForgotPassword .Form .Title {\n display: none;\n }\n}\n\n@keyframes fadeIn {\n 0% {\n opacity: 0.01;\n }\n 1% {\n opacity: 0;\n }\n 50% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}";
@@ -473,7 +532,7 @@ const PamForgotPassword = class {
473
532
  componentDidLoad() {
474
533
  if (this.stylingContainer) {
475
534
  if (window.emMessageBus != undefined) {
476
- setStreamStyling(this.stylingContainer, `${this.mbSource}.Style`);
535
+ setStreamStyling(this.stylingContainer, `${this.mbSource}.Style`, this.stylingSubscription);
477
536
  }
478
537
  else {
479
538
  if (this.clientStyling)
@@ -1,4 +1,4 @@
1
- import{r as t,c as e,h as i,g as s,H as o}from"./index-3a596979.js";export{P as pam_forgot_password}from"./pam-forgot-password-fa19e1f6.js";const r={en:{dateError:"The selected date should be between {min} and {max}",dateError2:"The selected date is not within the accepted range",dateFormatError:"The selected date has a different format then the one required.",numberLengthError:"The number should be between {min} and {max}",lengthError:"The length should be between {minLength} and {maxLength}",requiredError:"This input is required.",invalidOriginalPasswordError:"Initial password field does not validate all criteria.",invalidPassword:"Password does not meet all criteria",passwordStrength:"Password strength",passwordStrengthWeak:"is not adequate",passwordStrengthStrong:"is adequate",SpecialCharactersNotAllowed:"Should not contain special characters",InvalidEmailFormat:"Invalid email format.",EmailNotMatching:"Emails not matching!",PasswordNotMatching:"Passwords not matching",MustIncludeNumber:"Password must include a number",MustContainCapital:"Password must include a capital letter",MustIncludePunctation:"Password must include punctuation",MustIncludeLowercase:"Password must include one lowercase character",OnlyNumbers:"The input should contain only digits.",InvalidFieldSize:"The length must be exactly 11 digits.",InvalidDocumentNumber:"Only numerical characters are allowed.",twofaDescription:"<p> We have sent the verification code to <p> {destination}. </p> </p> <p> Please insert the PIN below. </p>",twofaResendMessage:"Didn't receive the verification code?",twofaResendButton:"Resend",enterIEAddressManually:"For IRE, enter the address manually",postalLookUpNoAddressFound:"No addresses found for this postal code",searchingForAddresses:"Searching for addresses...",SAIdLengthError:"SA ID must be 13 digits",SAIdInvalidError:"Invalid SA ID",PassportLengthError:"Passport number must be 8 or 9 digits.",PasswordMustContain:"Password must contain:"},hu:{dateError:"A választott dátumnak {min} és {max} között kell lennie",dateError2:"A kiválasztott dátum nincs az elfogadott tartományon belül",dateFormatError:"A kiválasztott dátum formátuma eltér a szükségestől.",numberLengthError:"A számnak {min} és {max} között kell lennie",lengthError:"A hossznak {minLength} és {maxLength} között kell lennie",requiredError:"Ez a beviteli mező kötelező.",invalidOriginalPasswordError:"Initial password field does not validate all criteria.",invalidPassword:"A jelszó nem felel meg minden kritériumnak",passwordStrength:"Jelszó erőssége",passwordStrengthWeak:"nem megfelelő",passwordStrengthStrong:"megfelelő",SpecialCharactersNotAllowed:"Nem tartalmazhat speciális karaktereket",InvalidEmailFormat:"Érvénytelen e-mail formátum.",EmailNotMatching:"Az e-mailek nem egyeznek!",PasswordNotMatching:"A jelszavak nem egyeznek",MustIncludeNumber:"A jelszónak tartalmaznia kell egy számot",MustContainCapital:"A jelszónak tartalmaznia kell egy nagybetűt",MustIncludePunctation:"A jelszónak tartalmaznia kell írásjelet",MustIncludeLowercase:"A jelszónak legalább egy kisbetűt kell tartalmaznia",OnlyNumbers:"Csak számjegyeket tartalmazhat.",InvalidFieldSize:"A hosszúságnak pontosan 11 számjegynek kell lennie.",InvalidDocumentNumber:"Csak számjegyek engedélyezettek.",twofaDescription:"<p> A megerősítő kódot elküldtük a következő címre: <p> {destination}. </p> </p> <p> Kérjük, írja be az alábbi PIN-kódot. </p>",twofaResendMessage:"Nem kapta meg a megerősítő kódot?",twofaResendButton:"Újraküldés",PassportLengthError:"Az útlevélszámnak 9 számjegyűnek kell lennie",SAIdLengthError:"A dél-afrikai személyi számnak 13 számjegyűnek kell lennie",SAIdInvalidError:"Érvénytelen dél-afrikai személyi szám",PasswordMustContain:"A jelszónak tartalmaznia kell:"},hr:{dateError:"Odabrani datum treba biti između {min} i {max}",dateError2:"Odabrani datum nije unutar prihvaćenog raspona",dateFormatError:"Odabrani datum je u drugačijem formatu od potrebnog.",numberLengthError:"Broj bi trebao biti između {min} i {max}",lengthError:"Duljina bi trebala biti između {minLength} i {maxLength}",requiredError:"Ovaj unos je obavezan.",invalidOriginalPasswordError:"Lozinke se ne podudaraju",invalidPassword:"Lozinka ne zadovoljava sve kriterije",passwordStrength:"Lozinka",passwordStrengthWeak:"nije dovoljno jaka",passwordStrengthStrong:"je dovoljno jaka",SpecialCharactersNotAllowed:"Ne smije sadržavati posebne znakove",InvalidEmailFormat:"Nevažeći format e-maila",EmailNotMatching:"E-mailovi se ne podudaraju!",PasswordNotMatching:"Lozinke se ne podudaraju",MustIncludeNumber:"Lozinka mora sadržavati broj",MustContainCapital:"Lozinka mora sadržavati veliko slovo",MustIncludePunctation:"Lozinka mora sadržavati barem jedan znak",MustIncludeLowercase:"Lozinka mora sadržavati barem jedno malo slovo",OnlyNumbers:"Smije sadržavati samo znamenke.",InvalidFieldSize:"Dužina mora biti točno 11 znamenki.",InvalidDocumentNumber:"Dopušteni su samo numerički znakovi.",twofaDescription:"<p> Poslali smo verifikacijski kod na: <p> {destination}. </p> </p> <p> Molimo unesite PIN ispod. </p>",twofaResendMessage:"Niste primili verifikacijski kod?",twofaResendButton:"Ponovno pošalji",PassportLengthError:"Broj putovnice mora imati 9 znamenki",SAIdLengthError:"Južnoafrički osobni broj mora imati 13 znamenki",SAIdInvalidError:"Nevažeći južnoafrički osobni broj",PasswordMustContain:"Lozinka mora sadržavati:"},tr:{dateError:"Seçilen tarih {min} ve {max} arasında olmalıdır",dateError2:"Seçilen tarih kabul edilen aralıkta değil",dateFormatError:"Seçilen tarihin formatı, gereken formattan farklı.",numberLengthError:"Sayı {min} ve {max} arasında olmalıdır",lengthError:"Uzunluk {minLength} ve {maxLength} arasında olmalıdır",requiredError:"Bu alan zorunludur.",invalidOriginalPasswordError:"İlk şifre alanı tüm kriterleri karşılamıyor.",invalidPassword:"Şifre tüm kriterleri karşılamıyor",passwordStrength:"Şifre gücü",passwordStrengthWeak:"yetersiz",passwordStrengthStrong:"yeterli",SpecialCharactersNotAllowed:"Özel karakter içermemelidir",InvalidEmailFormat:"Geçersiz e-posta formatı.",EmailNotMatching:"E-postalar uyuşmuyor!",PasswordNotMatching:"Şifreler uyuşmuyor",MustIncludeNumber:"bir sayı içermelidir",MustContainCapital:"büyük harf içermelidir",MustIncludePunctation:"noktalama işareti içermelidir",MustIncludeLowercase:"Şifre en az bir küçük harf içermelidir",OnlyNumbers:"Yalnızca rakamlar içermelidir.",InvalidFieldSize:"Uzunluk tam olarak 11 rakam olmalıdır.",InvalidDocumentNumber:"Sadece sayısal karakterlere izin verilir.",twofaDescription:"<p> Doğrulama kodunu şu adrese gönderdik: <p> {destination}. </p> </p> <p> Lütfen aşağıya PIN kodunu girin. </p>",twofaResendMessage:"Doğrulama kodunu almadınız mı?",twofaResendButton:"Yeniden gönder",PassportLengthError:"Pasaport numarası 9 haneli olmalıdır",SAIdLengthError:"Güney Afrika kimlik numarası 13 haneli olmalıdır",SAIdInvalidError:"Geçersiz Güney Afrika kimlik numarası",PasswordMustContain:"Şifre şunları içermelidir:"},"pt-br":{dateError:"A data selecionada deve estar entre {min} e {max}",dateError2:"A data selecionada não está dentro de um intervalo válido",dateFormatError:"A data selecionada está em um formato diferente do exigido.",numberLengthError:"O número deve estar entre {min} e {max}",lengthError:"O comprimento deve estar entre {minLength} e {maxLength}",requiredError:"Este campo é obrigatório",invalidOriginalPasswordError:"O campo de senha inicial não faz parte dos critérios válidos",invalidPassword:"A senha não atende a todos os critérios",PasswordStrength:"Força da senha",PasswordStrengthWeak:"Não é adequado",PasswordStrengthStrong:"é apropriado",SpecialCharactersNotAllowed:"Não deve conter caracteres especiais",InvalidEmailFormat:"Formato de email inválido",EmailNotMatching:"E-mail não corresponde",PasswordNotMatching:"Senha não corresponde",MustIncludeNumber:"A senha deve incluir um número",MustContainCapital:"A senha deve incluir uma letra maiúscula",MustIncludePunctation:"A senha deve incluir um sinal de pontuação",MustIncludeLowercase:"A senha deve conter pelo menos uma letra minúscula",OnlyNumbers:"Deve conter apenas dígitos.",InvalidFieldSize:"O comprimento deve ser exatamente 11 dígitos.",InvalidDocumentNumber:"Apenas caracteres numéricos são permitidos.",twofaDescription:"<p> Enviamos o código de verificação para: <p> {destination}. </p> </p> <p> Por favor, insira o PIN abaixo. </p>",twofaResendMessage:"Não recebeu o código de verificação?",twofaResendButton:"Reenviar",PassportLengthError:"O número do passaporte deve ter 9 dígitos",SAIdLengthError:"O número de identificação da África do Sul deve ter 13 dígitos",SAIdInvalidError:"Número de identificação da África do Sul inválido",PasswordMustContain:"A senha deve conter:"},"es-mx":{dateError:"La fecha seleccionada debe ser entre {min} y {max}",dateError2:"La fecha seleccionada no está dentro de un rango válido",dateFormatError:"La fecha seleccionada tiene un formato diferente al requerido.",numberLengthError:"El número debe ser entre {min} y {max}",lengthError:"La longitud deber ser entre {minLength} y {maxLength}",requiredError:"Este campo es requerido",invalidOriginalPasswordError:"El campo de contraseña inicial no es parte del criterio válido",invalidPassword:"La contraseña no cumple con todos los criterios",PasswordStrength:"La fortaleza de la contraseña",PasswordStrengthWeak:"no es adecuada",PasswordStrengthStrong:"es adecuada",SpecialCharactersNotAllowed:"No debe contener caracteres especiales",InvalidEmailFormat:"Formato inválido de correo",EmailNotMatching:"El correo electrónico no coincide",PasswordNotMatching:"La contraseña no coincide",MustIncludeNumber:"La contraseña debe incluir un número",MustContainCapital:"La contraseña debe incluir una letra mayúscula",MustIncludePunctation:"La contraseña debe incluir un signo de puntuación",MustIncludeLowercase:"La contraseña debe contener al menos una letra minúscula",OnlyNumbers:"Debe contener solo dígitos.",InvalidFieldSize:"La longitud debe ser exactamente de 11 dígitos.",InvalidDocumentNumber:"Solo se permiten caracteres numéricos.",twofaDescription:"<p> Hemos enviado el código de verificación a: <p> {destination}. </p> </p> <p> Por favor, ingrese el PIN a continuación. </p>",twofaResendMessage:"¿No recibiste el código de verificación?",twofaResendButton:"Reenviar",PassportLengthError:"El número de pasaporte debe tener 9 dígitos",SAIdLengthError:"El número de identificación de Sudáfrica debe tener 13 dígitos",SAIdInvalidError:"Número de identificación de Sudáfrica inválido",PasswordMustContain:"La contraseña debe contener:"},fr:{dateError:"La date sélectionnée doit être comprise entre {min} et {max}",dateError2:"La date sélectionnée n’est pas dans la plage autorisée",dateFormatError:"Le format de la date sélectionnée est incorrect.",numberLengthError:"Le nombre doit être compris entre {min} et {max}",lengthError:"La longueur doit être comprise entre {minLength} et {maxLength}",requiredError:"Ce champ est obligatoire.",invalidOriginalPasswordError:"Le mot de passe initial ne respecte pas tous les critères.",invalidPassword:"Le mot de passe ne respecte pas tous les critères",passwordStrength:"Robustesse du mot de passe",passwordStrengthWeak:"est insuffisante",passwordStrengthStrong:"est suffisante",SpecialCharactersNotAllowed:"Ne doit pas contenir de caractères spéciaux",InvalidEmailFormat:"Format d’adresse e-mail invalide.",EmailNotMatching:"Les adresses e-mail ne correspondent pas !",PasswordNotMatching:"Les mots de passe ne correspondent pas",MustIncludeNumber:"Le mot de passe doit contenir un chiffre",MustContainCapital:"Le mot de passe doit contenir une lettre majuscule",MustIncludePunctation:"Le mot de passe doit contenir un caractère de ponctuation",MustIncludeLowercase:"Le mot de passe doit contenir une lettre minuscule",OnlyNumbers:"Ce champ ne doit contenir que des chiffres.",InvalidFieldSize:"La longueur doit être exactement de 11 chiffres.",InvalidDocumentNumber:"Seuls les caractères numériques sont autorisés.",twofaDescription:"<p>Nous avons envoyé le code de vérification à <p>{destination}</p>.</p><p>Veuillez saisir le code PIN ci-dessous.</p>",twofaResendMessage:"Vous n’avez pas reçu le code de vérification ?",twofaResendButton:"Renvoyer",enterIEAddressManually:"Pour l’Irlande, saisissez l’adresse manuellement",postalLookUpNoAddressFound:"Aucune adresse trouvée pour ce code postal",searchingForAddresses:"Recherche d’adresses...",SAIdLengthError:"L’identifiant sud-africain doit comporter 13 chiffres",SAIdInvalidError:"Identifiant sud-africain invalide",PassportLengthError:"Le numéro de passeport doit comporter 8 ou 9 chiffres.",PasswordMustContain:"Le mot de passe doit contenir :"}},n={DOCUMENT_NUMBER:"DocumentNumber",FIRSTNAME_ON_DOCUMENT:"FirstnameOnDocument",LASTNAME_ON_DOCUMENT:"LastnameOnDocument",PASSPORT:"Passport",SOUTH_AFRICAN_ID:"SouthAfricanID",BIRTHDATE:"BirthDate",PASSPORT_NUMERIC_REGEX:/^\d{8,9}$/,SA_ID_BASIC_REGEX:/^\d{13}$/,SOUTH_AFRICAN_ID_LENGTH:13,NON_LETTERS_REGEX:/[^A-Za-z]/g,DATE_FORMAT:"yyyy-MM-dd",PASSWORD_COMPLEXITY_PASSED:"passed",PASSWORD_COMPLEXITY_FAILED:"failed"},a=(t,e,i)=>{let s=r[void 0!==e?e:"en"][t];if(void 0!==i)for(const[t,e]of Object.entries(i.values)){const i=new RegExp(`{${t}}`,"g");s=s.replace(i,e)}return s},l="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iNiIgY3k9IjYiIHI9IjUuNSIgc3Ryb2tlPSIjOTc5Nzk3Ii8+CjxyZWN0IHg9IjUiIHk9IjUiIHdpZHRoPSIyIiBoZWlnaHQ9IjUiIGZpbGw9IiM5Nzk3OTciLz4KPGNpcmNsZSBjeD0iNiIgY3k9IjMiIHI9IjEiIGZpbGw9IiM5Nzk3OTciLz4KPC9zdmc+Cg==",h=class{constructor(i){t(this,i),this.sendValidityState=e(this,"sendValidityState",7),this.sendInputValue=e(this,"sendInputValue",7),this.value=null,this.setClientStyling=()=>{let t=document.createElement("style");t.innerHTML=this.clientStyling,this.stylingContainer.prepend(t)},this.name=void 0,this.displayName=void 0,this.defaultValue="",this.autofilled=void 0,this.tooltip=void 0,this.options=void 0,this.validation=void 0,this.language=void 0,this.emitValue=void 0,this.clientStyling="",this.errorMessage=void 0,this.isValid=void 0,this.limitStylingAppends=!1,this.showTooltip=!1,this.selectedValues=[],this.showCheckboxes=!1}handleStylingChange(t,e){t!==e&&this.setClientStyling()}validityChanged(){this.validityStateHandler({valid:this.isValid,name:this.name}),1==this.emitValue&&this.valueHandler({name:this.name,value:this.value,type:"checkboxgroup"})}setValue(){this.value=this.options.reduce(((t,e)=>(t[e.name]=this.selectedValues.includes(e.name),t)),{}),this.emitValueHandler(!0)}validityStateHandler(t){this.sendValidityState.emit(t)}emitValueHandler(t){1==t&&this.isValid&&this.valueHandler({name:this.name,value:this.value,type:"checkboxgroup"})}valueHandler(t){this.sendInputValue.emit(t)}handleClickOutside(t){const e=t.composedPath();e.includes(this.tooltipIconReference)||e.includes(this.tooltipReference)||(this.showTooltip=!1)}componentDidRender(){!this.limitStylingAppends&&this.stylingContainer&&(this.clientStyling&&this.setClientStyling(),this.limitStylingAppends=!0)}componentDidLoad(){this.inputReference=this.element.shadowRoot.querySelector("input"),this.isValid=this.setValidity(),this.defaultValue&&(this.showCheckboxes=!0,this.selectedValues=this.options.map((t=>t.name)),this.value=this.defaultValue,this.valueHandler({name:this.name,value:this.value}))}setValidity(){return this.inputReference.validity.valid}setErrorMessage(){if(this.inputReference.validity.valueMissing)return a("requiredError",this.language)}renderTooltip(){return this.showTooltip?i("div",{class:"checkboxgroup__tooltip "+(this.showTooltip?"visible":""),ref:t=>this.tooltipReference=t,innerHTML:this.tooltip}):null}handleParentCheckbox(t){const e=t.target.checked;this.showCheckboxes=e,this.selectedValues=e?this.options.map((t=>t.name)):[]}renderLabel(){return i("label",{class:"checkbox__label",htmlFor:`${this.name}__input`,slot:"label"},i("div",{class:"checkbox__label-text",innerHTML:`${this.displayName} ${this.validation.mandatory?"*":""}`}))}render(){return i("div",{key:"9985f4050655bc2233090f63abb0e22f2fe0b556",class:`checkboxgroup__wrapper ${this.name}__input`,ref:t=>this.stylingContainer=t},i("div",{key:"9922e45ae7ee74b137ffc8552b3d714b7e3b1f59",class:"checkboxgroup__wrapper--flex"},i("vaadin-checkbox",{key:"f18bae7c3ee6df76edcde75924eb1ad51a227443",class:"checkbox__input",checked:this.selectedValues.length===this.options.length||"true"===this.defaultValue,indeterminate:this.selectedValues.length>0&&this.selectedValues.length<this.options.length,onChange:t=>this.handleParentCheckbox(t)},this.renderLabel()),this.tooltip&&i("img",{key:"3dc2ce07e4d5f8de7ed4707b5e140fb4752ca86b",class:"checkboxgroup__tooltip-icon",src:l,alt:"",ref:t=>this.tooltipIconReference=t,onClick:()=>this.showTooltip=!this.showTooltip}),this.renderTooltip()),i("small",{key:"d55f25f75aa20007ff58cf45b6632517f49b6c00",class:"checkboxgroup__error-message"},this.errorMessage),this.showCheckboxes&&i("vaadin-checkbox-group",{key:"210c3cc2868a07a403494e04336c4f3091eea0e4",theme:"vertical",value:this.selectedValues,"on-value-changed":t=>{this.selectedValues=t.detail.value}},this.options.map((t=>i("vaadin-checkbox",{class:"checkbox__input",name:t.name,value:t.name,label:t.displayName})))))}get element(){return s(this)}static get watchers(){return{clientStyling:["handleStylingChange"],isValid:["validityChanged"],selectedValues:["setValue"],emitValue:["emitValueHandler"]}}};h.style='*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}vaadin-checkbox-group{margin-top:5px;margin-left:40px}.checkboxgroup{font-family:"Roboto";font-style:normal;font-size:15px}.checkboxgroup__wrapper{position:relative}.checkboxgroup__wrapper--flex{display:flex;gap:5px;align-content:flex-start}.checkboxgroup__wrapper--relative{position:relative;display:inline}.checkboxgroup__input{vertical-align:baseline}.checkboxgroup__input[indeterminate]::part(checkbox)::after,.checkboxgroup__input[indeterminate]::part(checkbox),.checkboxgroup__input[checked]::part(checkbox){background-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.checkboxgroup__label{font-style:inherit;font-family:inherit;font-weight:400;font-size:16px;color:var(--emw--registration-typography, var(--emw--color-black, #000000));line-height:1.5;padding-left:10px;vertical-align:baseline}.checkboxgroup__label-text{font-size:16px}.checkboxgroup__label a{color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.checkboxgroup__error-message{position:absolute;top:calc(100% + 5px);left:0;color:var(--emw--color-error, var(--emw--color-red, #ed0909))}.checkboxgroup__tooltip-icon{width:16px;height:auto}.checkboxgroup__tooltip{position:absolute;top:0;right:0;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.checkboxgroup__tooltip.visible{opacity:1}.checkbox__input::part(checkbox){background-color:var(--emw--color-white, #FFFFFF);transform:scale(0.8, 0.8);border-radius:var(--emw--border-radius-small, 2px);box-shadow:0 0px 0px 2px var(--emw--color-gray, #7a7a7a)}.checkbox__input[indeterminate]::part(checkbox),.checkbox__input[checked]::part(checkbox){background-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));box-shadow:none}';const d=class{constructor(i){t(this,i),this.sendValidityState=e(this,"sendValidityState",7),this.sendInputValue=e(this,"sendInputValue",7),this.value="",this.setClientStyling=()=>{let t=document.createElement("style");t.innerHTML=this.clientStyling,this.stylingContainer.prepend(t)},this.name=void 0,this.displayName=void 0,this.defaultValue="",this.autofilled=void 0,this.tooltip=void 0,this.validation=void 0,this.language=void 0,this.emitValue=void 0,this.clientStyling="",this.errorMessage=void 0,this.isValid=void 0,this.limitStylingAppends=!1,this.showTooltip=!1}handleStylingChange(t,e){t!==e&&this.setClientStyling()}validityChanged(){this.validityStateHandler({valid:this.isValid,name:this.name}),1==this.emitValue&&this.valueHandler({name:this.name,value:this.value})}validityStateHandler(t){this.sendValidityState.emit(t)}emitValueHandler(t){1==t&&this.isValid&&this.valueHandler({name:this.name,value:this.value})}valueHandler(t){this.sendInputValue.emit(t)}handleClickOutside(t){const e=t.composedPath();e.includes(this.tooltipIconReference)||e.includes(this.tooltipReference)||(this.showTooltip=!1)}componentDidRender(){!this.limitStylingAppends&&this.stylingContainer&&(this.clientStyling&&this.setClientStyling(),this.limitStylingAppends=!0)}componentDidLoad(){this.inputReference=this.vaadinCheckbox.querySelector("input"),this.defaultValue&&(this.value=this.defaultValue,this.valueHandler({name:this.name,value:this.value}))}handleCheckbox(t){this.value=t.target.checked.toString(),this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.emitValueHandler(!0)}setValidity(){return this.inputReference.validity.valid}setErrorMessage(){if(this.inputReference.validity.valueMissing)return a("requiredError",this.language)}renderLabel(){var t;return i("label",{class:"checkbox__label",htmlFor:`${this.name}__input`,slot:"label"},i("div",{class:{"checkbox__label-text":!0,mandatory:null===(t=this.validation)||void 0===t?void 0:t.mandatory},innerHTML:this.displayName}))}renderTooltip(){return this.showTooltip?i("div",{class:"checkbox__tooltip "+(this.showTooltip?"visible":""),ref:t=>this.tooltipReference=t,innerHTML:this.tooltip}):null}render(){return i("div",{key:"80ed581cec5bb009ea5ea009f11c6453fe24ef7b",class:`checkbox__wrapper ${this.name}__input`,ref:t=>this.stylingContainer=t},i("vaadin-checkbox",{key:"42d793f607af77435f629218f9bdac7736522bc3",class:"checkbox__input",required:this.validation.mandatory,checked:"true"===this.defaultValue,onChange:t=>this.handleCheckbox(t),"error-message":!this.isValid&&this.errorMessage,ref:t=>this.vaadinCheckbox=t},this.renderLabel()),this.tooltip&&i("img",{key:"ce3870810ede8f3905fd8c07c0892ab0d909bab5",class:"checkboxgroup__tooltip-icon",src:l,alt:"",ref:t=>this.tooltipIconReference=t,onClick:()=>this.showTooltip=!this.showTooltip}),this.renderTooltip())}static get watchers(){return{clientStyling:["handleStylingChange"],isValid:["validityChanged"],emitValue:["emitValueHandler"]}}};function c(t){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c(t)}function u(t,e){if(e.length<t)throw new TypeError(t+" argument"+(t>1?"s":"")+" required, but only "+e.length+" present")}function p(t){u(1,arguments);var e=Object.prototype.toString.call(t);return t instanceof Date||"object"===c(t)&&"[object Date]"===e?new Date(t.getTime()):"number"==typeof t||"[object Number]"===e?new Date(t):("string"!=typeof t&&"[object String]"!==e||"undefined"==typeof console||(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments"),console.warn((new Error).stack)),new Date(NaN))}function m(t){if(u(1,arguments),!function(t){return u(1,arguments),t instanceof Date||"object"===c(t)&&"[object Date]"===Object.prototype.toString.call(t)}(t)&&"number"!=typeof t)return!1;var e=p(t);return!isNaN(Number(e))}function v(t){if(null===t||!0===t||!1===t)return NaN;var e=Number(t);return isNaN(e)?e:e<0?Math.ceil(e):Math.floor(e)}function f(t,e){return u(2,arguments),function(t,e){u(2,arguments);var i=p(t).getTime(),s=v(e);return new Date(i+s)}(t,-v(e))}function g(t){u(1,arguments);var e=p(t),i=e.getUTCDay(),s=(i<1?7:0)+i-1;return e.setUTCDate(e.getUTCDate()-s),e.setUTCHours(0,0,0,0),e}function b(t){u(1,arguments);var e=p(t),i=e.getUTCFullYear(),s=new Date(0);s.setUTCFullYear(i+1,0,4),s.setUTCHours(0,0,0,0);var o=g(s),r=new Date(0);r.setUTCFullYear(i,0,4),r.setUTCHours(0,0,0,0);var n=g(r);return e.getTime()>=o.getTime()?i+1:e.getTime()>=n.getTime()?i:i-1}d.style='*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}.checkbox{font-family:"Roboto";font-style:normal;font-size:15px}.checkbox__wrapper{display:flex;gap:10px;position:relative;align-items:baseline}.checkbox__wrapper--relative{position:relative}.checkbox__input[indeterminate]::part(checkbox)::after,.checkbox__input[indeterminate]::part(checkbox),.checkbox__input[checked]::part(checkbox){background-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.checkbox__label{font-style:inherit;font-family:inherit;font-weight:400;font-size:16px;color:var(--emw--registration-typography, var(--emw--color-black, #000000));line-height:1.5;padding:0px;vertical-align:baseline}.checkbox__label a{color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.checkbox__error-message{position:absolute;top:calc(100% + 5px);left:0;color:var(--emw--color-error, var(--emw--color-red, #ed0909))}.checkbox__tooltip-icon{width:16px;height:auto}.checkbox__tooltip{position:absolute;top:0;right:20px;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.checkbox__tooltip.visible{opacity:1}.checkbox__input::part(checkbox){background-color:var(--emw--color-white, #FFFFFF);transform:scale(0.8, 0.8);border-radius:var(--emw--border-radius-small, 2px);box-shadow:0 0px 0px 2px var(--emw--color-gray, #7a7a7a)}.checkbox__input::part(required-indicator)::after{display:none}.checkbox__input[indeterminate]::part(checkbox),.checkbox__input[checked]::part(checkbox){background-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));box-shadow:none}.checkbox__label-text.mandatory::after{content:"*";font-family:inherit;color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));margin-left:2px}';function y(t){u(1,arguments);var e=p(t),i=g(e).getTime()-function(t){u(1,arguments);var e=b(t),i=new Date(0);return i.setUTCFullYear(e,0,4),i.setUTCHours(0,0,0,0),g(i)}(e).getTime();return Math.round(i/6048e5)+1}var w={};function _(){return w}function x(t,e){var i,s,o,r,n,a,l,h;u(1,arguments);var d=_(),c=v(null!==(i=null!==(s=null!==(o=null!==(r=null==e?void 0:e.weekStartsOn)&&void 0!==r?r:null==e||null===(n=e.locale)||void 0===n||null===(a=n.options)||void 0===a?void 0:a.weekStartsOn)&&void 0!==o?o:d.weekStartsOn)&&void 0!==s?s:null===(l=d.locale)||void 0===l||null===(h=l.options)||void 0===h?void 0:h.weekStartsOn)&&void 0!==i?i:0);if(!(c>=0&&c<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var m=p(t),f=m.getUTCDay(),g=(f<c?7:0)+f-c;return m.setUTCDate(m.getUTCDate()-g),m.setUTCHours(0,0,0,0),m}function k(t,e){var i,s,o,r,n,a,l,h;u(1,arguments);var d=p(t),c=d.getUTCFullYear(),m=_(),f=v(null!==(i=null!==(s=null!==(o=null!==(r=null==e?void 0:e.firstWeekContainsDate)&&void 0!==r?r:null==e||null===(n=e.locale)||void 0===n||null===(a=n.options)||void 0===a?void 0:a.firstWeekContainsDate)&&void 0!==o?o:m.firstWeekContainsDate)&&void 0!==s?s:null===(l=m.locale)||void 0===l||null===(h=l.options)||void 0===h?void 0:h.firstWeekContainsDate)&&void 0!==i?i:1);if(!(f>=1&&f<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var g=new Date(0);g.setUTCFullYear(c+1,0,f),g.setUTCHours(0,0,0,0);var b=x(g,e),y=new Date(0);y.setUTCFullYear(c,0,f),y.setUTCHours(0,0,0,0);var w=x(y,e);return d.getTime()>=b.getTime()?c+1:d.getTime()>=w.getTime()?c:c-1}function C(t,e){u(1,arguments);var i=p(t),s=x(i,e).getTime()-function(t,e){var i,s,o,r,n,a,l,h;u(1,arguments);var d=_(),c=v(null!==(i=null!==(s=null!==(o=null!==(r=null==e?void 0:e.firstWeekContainsDate)&&void 0!==r?r:null==e||null===(n=e.locale)||void 0===n||null===(a=n.options)||void 0===a?void 0:a.firstWeekContainsDate)&&void 0!==o?o:d.firstWeekContainsDate)&&void 0!==s?s:null===(l=d.locale)||void 0===l||null===(h=l.options)||void 0===h?void 0:h.firstWeekContainsDate)&&void 0!==i?i:1),p=k(t,e),m=new Date(0);return m.setUTCFullYear(p,0,c),m.setUTCHours(0,0,0,0),x(m,e)}(i,e).getTime();return Math.round(s/6048e5)+1}function S(t,e){for(var i=t<0?"-":"",s=Math.abs(t).toString();s.length<e;)s="0"+s;return i+s}const E=function(t,e){var i=t.getUTCFullYear(),s=i>0?i:1-i;return S("yy"===e?s%100:s,e.length)},A=function(t,e){var i=t.getUTCMonth();return"M"===e?String(i+1):S(i+1,2)},z=function(t,e){return S(t.getUTCDate(),e.length)},I=function(t,e){return S(t.getUTCHours()%12||12,e.length)},T=function(t,e){return S(t.getUTCHours(),e.length)},D=function(t,e){return S(t.getUTCMinutes(),e.length)},M=function(t,e){return S(t.getUTCSeconds(),e.length)},F=function(t,e){var i=e.length,s=t.getUTCMilliseconds();return S(Math.floor(s*Math.pow(10,i-3)),e.length)};function O(t,e){var i=t>0?"-":"+",s=Math.abs(t),o=Math.floor(s/60),r=s%60;if(0===r)return i+String(o);var n=e||"";return i+String(o)+n+S(r,2)}function N(t,e){return t%60==0?(t>0?"-":"+")+S(Math.abs(t)/60,2):B(t,e)}function B(t,e){var i=e||"",s=t>0?"-":"+",o=Math.abs(t);return s+S(Math.floor(o/60),2)+i+S(o%60,2)}const L={G:function(t,e,i){var s=t.getUTCFullYear()>0?1:0;switch(e){case"G":case"GG":case"GGG":return i.era(s,{width:"abbreviated"});case"GGGGG":return i.era(s,{width:"narrow"});default:return i.era(s,{width:"wide"})}},y:function(t,e,i){if("yo"===e){var s=t.getUTCFullYear();return i.ordinalNumber(s>0?s:1-s,{unit:"year"})}return E(t,e)},Y:function(t,e,i,s){var o=k(t,s),r=o>0?o:1-o;return"YY"===e?S(r%100,2):"Yo"===e?i.ordinalNumber(r,{unit:"year"}):S(r,e.length)},R:function(t,e){return S(b(t),e.length)},u:function(t,e){return S(t.getUTCFullYear(),e.length)},Q:function(t,e,i){var s=Math.ceil((t.getUTCMonth()+1)/3);switch(e){case"Q":return String(s);case"QQ":return S(s,2);case"Qo":return i.ordinalNumber(s,{unit:"quarter"});case"QQQ":return i.quarter(s,{width:"abbreviated",context:"formatting"});case"QQQQQ":return i.quarter(s,{width:"narrow",context:"formatting"});default:return i.quarter(s,{width:"wide",context:"formatting"})}},q:function(t,e,i){var s=Math.ceil((t.getUTCMonth()+1)/3);switch(e){case"q":return String(s);case"qq":return S(s,2);case"qo":return i.ordinalNumber(s,{unit:"quarter"});case"qqq":return i.quarter(s,{width:"abbreviated",context:"standalone"});case"qqqqq":return i.quarter(s,{width:"narrow",context:"standalone"});default:return i.quarter(s,{width:"wide",context:"standalone"})}},M:function(t,e,i){var s=t.getUTCMonth();switch(e){case"M":case"MM":return A(t,e);case"Mo":return i.ordinalNumber(s+1,{unit:"month"});case"MMM":return i.month(s,{width:"abbreviated",context:"formatting"});case"MMMMM":return i.month(s,{width:"narrow",context:"formatting"});default:return i.month(s,{width:"wide",context:"formatting"})}},L:function(t,e,i){var s=t.getUTCMonth();switch(e){case"L":return String(s+1);case"LL":return S(s+1,2);case"Lo":return i.ordinalNumber(s+1,{unit:"month"});case"LLL":return i.month(s,{width:"abbreviated",context:"standalone"});case"LLLLL":return i.month(s,{width:"narrow",context:"standalone"});default:return i.month(s,{width:"wide",context:"standalone"})}},w:function(t,e,i,s){var o=C(t,s);return"wo"===e?i.ordinalNumber(o,{unit:"week"}):S(o,e.length)},I:function(t,e,i){var s=y(t);return"Io"===e?i.ordinalNumber(s,{unit:"week"}):S(s,e.length)},d:function(t,e,i){return"do"===e?i.ordinalNumber(t.getUTCDate(),{unit:"date"}):z(t,e)},D:function(t,e,i){var s=function(t){u(1,arguments);var e=p(t),i=e.getTime();e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0);var s=e.getTime();return Math.floor((i-s)/864e5)+1}(t);return"Do"===e?i.ordinalNumber(s,{unit:"dayOfYear"}):S(s,e.length)},E:function(t,e,i){var s=t.getUTCDay();switch(e){case"E":case"EE":case"EEE":return i.day(s,{width:"abbreviated",context:"formatting"});case"EEEEE":return i.day(s,{width:"narrow",context:"formatting"});case"EEEEEE":return i.day(s,{width:"short",context:"formatting"});default:return i.day(s,{width:"wide",context:"formatting"})}},e:function(t,e,i,s){var o=t.getUTCDay(),r=(o-s.weekStartsOn+8)%7||7;switch(e){case"e":return String(r);case"ee":return S(r,2);case"eo":return i.ordinalNumber(r,{unit:"day"});case"eee":return i.day(o,{width:"abbreviated",context:"formatting"});case"eeeee":return i.day(o,{width:"narrow",context:"formatting"});case"eeeeee":return i.day(o,{width:"short",context:"formatting"});default:return i.day(o,{width:"wide",context:"formatting"})}},c:function(t,e,i,s){var o=t.getUTCDay(),r=(o-s.weekStartsOn+8)%7||7;switch(e){case"c":return String(r);case"cc":return S(r,e.length);case"co":return i.ordinalNumber(r,{unit:"day"});case"ccc":return i.day(o,{width:"abbreviated",context:"standalone"});case"ccccc":return i.day(o,{width:"narrow",context:"standalone"});case"cccccc":return i.day(o,{width:"short",context:"standalone"});default:return i.day(o,{width:"wide",context:"standalone"})}},i:function(t,e,i){var s=t.getUTCDay(),o=0===s?7:s;switch(e){case"i":return String(o);case"ii":return S(o,e.length);case"io":return i.ordinalNumber(o,{unit:"day"});case"iii":return i.day(s,{width:"abbreviated",context:"formatting"});case"iiiii":return i.day(s,{width:"narrow",context:"formatting"});case"iiiiii":return i.day(s,{width:"short",context:"formatting"});default:return i.day(s,{width:"wide",context:"formatting"})}},a:function(t,e,i){var s=t.getUTCHours()/12>=1?"pm":"am";switch(e){case"a":case"aa":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"aaa":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return i.dayPeriod(s,{width:"narrow",context:"formatting"});default:return i.dayPeriod(s,{width:"wide",context:"formatting"})}},b:function(t,e,i){var s,o=t.getUTCHours();switch(s=12===o?"noon":0===o?"midnight":o/12>=1?"pm":"am",e){case"b":case"bb":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"bbb":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return i.dayPeriod(s,{width:"narrow",context:"formatting"});default:return i.dayPeriod(s,{width:"wide",context:"formatting"})}},B:function(t,e,i){var s,o=t.getUTCHours();switch(s=o>=17?"evening":o>=12?"afternoon":o>=4?"morning":"night",e){case"B":case"BB":case"BBB":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"BBBBB":return i.dayPeriod(s,{width:"narrow",context:"formatting"});default:return i.dayPeriod(s,{width:"wide",context:"formatting"})}},h:function(t,e,i){if("ho"===e){var s=t.getUTCHours()%12;return 0===s&&(s=12),i.ordinalNumber(s,{unit:"hour"})}return I(t,e)},H:function(t,e,i){return"Ho"===e?i.ordinalNumber(t.getUTCHours(),{unit:"hour"}):T(t,e)},K:function(t,e,i){var s=t.getUTCHours()%12;return"Ko"===e?i.ordinalNumber(s,{unit:"hour"}):S(s,e.length)},k:function(t,e,i){var s=t.getUTCHours();return 0===s&&(s=24),"ko"===e?i.ordinalNumber(s,{unit:"hour"}):S(s,e.length)},m:function(t,e,i){return"mo"===e?i.ordinalNumber(t.getUTCMinutes(),{unit:"minute"}):D(t,e)},s:function(t,e,i){return"so"===e?i.ordinalNumber(t.getUTCSeconds(),{unit:"second"}):M(t,e)},S:function(t,e){return F(t,e)},X:function(t,e,i,s){var o=(s._originalDate||t).getTimezoneOffset();if(0===o)return"Z";switch(e){case"X":return N(o);case"XXXX":case"XX":return B(o);default:return B(o,":")}},x:function(t,e,i,s){var o=(s._originalDate||t).getTimezoneOffset();switch(e){case"x":return N(o);case"xxxx":case"xx":return B(o);default:return B(o,":")}},O:function(t,e,i,s){var o=(s._originalDate||t).getTimezoneOffset();switch(e){case"O":case"OO":case"OOO":return"GMT"+O(o,":");default:return"GMT"+B(o,":")}},z:function(t,e,i,s){var o=(s._originalDate||t).getTimezoneOffset();switch(e){case"z":case"zz":case"zzz":return"GMT"+O(o,":");default:return"GMT"+B(o,":")}},t:function(t,e,i,s){return S(Math.floor((s._originalDate||t).getTime()/1e3),e.length)},T:function(t,e,i,s){return S((s._originalDate||t).getTime(),e.length)}};var j=function(t,e){switch(t){case"P":return e.date({width:"short"});case"PP":return e.date({width:"medium"});case"PPP":return e.date({width:"long"});default:return e.date({width:"full"})}},$=function(t,e){switch(t){case"p":return e.time({width:"short"});case"pp":return e.time({width:"medium"});case"ppp":return e.time({width:"long"});default:return e.time({width:"full"})}},V={p:$,P:function(t,e){var i,s=t.match(/(P+)(p+)?/)||[],o=s[1],r=s[2];if(!r)return j(t,e);switch(o){case"P":i=e.dateTime({width:"short"});break;case"PP":i=e.dateTime({width:"medium"});break;case"PPP":i=e.dateTime({width:"long"});break;default:i=e.dateTime({width:"full"})}return i.replace("{{date}}",j(o,e)).replace("{{time}}",$(r,e))}};const R=V;function q(t){var e=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return e.setUTCFullYear(t.getFullYear()),t.getTime()-e.getTime()}var H=["D","DD"],W=["YY","YYYY"];function U(t){return-1!==H.indexOf(t)}function Y(t){return-1!==W.indexOf(t)}function G(t,e,i){if("YYYY"===t)throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(e,"`) for formatting years to the input `").concat(i,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("YY"===t)throw new RangeError("Use `yy` instead of `YY` (in `".concat(e,"`) for formatting years to the input `").concat(i,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("D"===t)throw new RangeError("Use `d` instead of `D` (in `".concat(e,"`) for formatting days of the month to the input `").concat(i,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("DD"===t)throw new RangeError("Use `dd` instead of `DD` (in `".concat(e,"`) for formatting days of the month to the input `").concat(i,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"))}var K={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function Q(t){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=e.width?String(e.width):t.defaultWidth;return t.formats[i]||t.formats[t.defaultWidth]}}var X,J={date:Q({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:Q({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:Q({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})},Z={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function tt(t){return function(e,i){var s;if("formatting"===(null!=i&&i.context?String(i.context):"standalone")&&t.formattingValues){var o=t.defaultFormattingWidth||t.defaultWidth,r=null!=i&&i.width?String(i.width):o;s=t.formattingValues[r]||t.formattingValues[o]}else{var n=t.defaultWidth,a=null!=i&&i.width?String(i.width):t.defaultWidth;s=t.values[a]||t.values[n]}return s[t.argumentCallback?t.argumentCallback(e):e]}}function et(t){return function(e){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},s=i.width,o=e.match(s&&t.matchPatterns[s]||t.matchPatterns[t.defaultMatchWidth]);if(!o)return null;var r,n=o[0],a=s&&t.parsePatterns[s]||t.parsePatterns[t.defaultParseWidth],l=Array.isArray(a)?function(t){for(var e=0;e<t.length;e++)if(t[e].test(n))return e}(a):function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].test(n))return e}(a);return r=t.valueCallback?t.valueCallback(l):l,{value:r=i.valueCallback?i.valueCallback(r):r,rest:e.slice(n.length)}}}const it={code:"en-US",formatDistance:function(t,e,i){var s,o=K[t];return s="string"==typeof o?o:1===e?o.one:o.other.replace("{{count}}",e.toString()),null!=i&&i.addSuffix?i.comparison&&i.comparison>0?"in "+s:s+" ago":s},formatLong:J,formatRelative:function(t){return Z[t]},localize:{ordinalNumber:function(t){var e=Number(t),i=e%100;if(i>20||i<10)switch(i%10){case 1:return e+"st";case 2:return e+"nd";case 3:return e+"rd"}return e+"th"},era:tt({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:tt({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:tt({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:tt({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:tt({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})},match:{ordinalNumber:(X={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:function(t){return parseInt(t,10)}},function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=t.match(X.matchPattern);if(!i)return null;var s=i[0],o=t.match(X.parsePattern);if(!o)return null;var r=X.valueCallback?X.valueCallback(o[0]):o[0];return{value:r=e.valueCallback?e.valueCallback(r):r,rest:t.slice(s.length)}}),era:et({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:et({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:et({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:et({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:et({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},options:{weekStartsOn:0,firstWeekContainsDate:1}};var st=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,ot=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,rt=/^'([^]*?)'?$/,nt=/''/g,at=/[a-zA-Z]/;function lt(t,e,i){var s,o,r,n,a,l,h,d,c,g,b,y,w,x,k,C,S,E;u(2,arguments);var A=String(e),z=_(),I=null!==(s=null!==(o=null==i?void 0:i.locale)&&void 0!==o?o:z.locale)&&void 0!==s?s:it,T=v(null!==(r=null!==(n=null!==(a=null!==(l=null==i?void 0:i.firstWeekContainsDate)&&void 0!==l?l:null==i||null===(h=i.locale)||void 0===h||null===(d=h.options)||void 0===d?void 0:d.firstWeekContainsDate)&&void 0!==a?a:z.firstWeekContainsDate)&&void 0!==n?n:null===(c=z.locale)||void 0===c||null===(g=c.options)||void 0===g?void 0:g.firstWeekContainsDate)&&void 0!==r?r:1);if(!(T>=1&&T<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var D=v(null!==(b=null!==(y=null!==(w=null!==(x=null==i?void 0:i.weekStartsOn)&&void 0!==x?x:null==i||null===(k=i.locale)||void 0===k||null===(C=k.options)||void 0===C?void 0:C.weekStartsOn)&&void 0!==w?w:z.weekStartsOn)&&void 0!==y?y:null===(S=z.locale)||void 0===S||null===(E=S.options)||void 0===E?void 0:E.weekStartsOn)&&void 0!==b?b:0);if(!(D>=0&&D<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!I.localize)throw new RangeError("locale must contain localize property");if(!I.formatLong)throw new RangeError("locale must contain formatLong property");var M=p(t);if(!m(M))throw new RangeError("Invalid time value");var P=f(M,q(M)),F={firstWeekContainsDate:T,weekStartsOn:D,locale:I,_originalDate:M};return A.match(ot).map((function(t){var e=t[0];return"p"===e||"P"===e?(0,R[e])(t,I.formatLong):t})).join("").match(st).map((function(s){if("''"===s)return"'";var o,r,n=s[0];if("'"===n)return(r=(o=s).match(rt))?r[1].replace(nt,"'"):o;var a=L[n];if(a)return null!=i&&i.useAdditionalWeekYearTokens||!Y(s)||G(s,e,String(t)),null!=i&&i.useAdditionalDayOfYearTokens||!U(s)||G(s,e,String(t)),a(P,s,I.localize,F);if(n.match(at))throw new RangeError("Format string contains an unescaped latin alphabet character `"+n+"`");return s})).join("")}function ht(t,e){(null==e||e>t.length)&&(e=t.length);for(var i=0,s=Array(e);i<e;i++)s[i]=t[i];return s}function dt(t,e){var i="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=function(t,e){if(t){if("string"==typeof t)return ht(t,e);var i={}.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?ht(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){i&&(t=i);var s=0,o=function(){};return{s:o,n:function(){return s>=t.length?{done:!0}:{done:!1,value:t[s++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,n=!0,a=!1;return{s:function(){i=i.call(t)},n:function(){var t=i.next();return n=t.done,t},e:function(t){a=!0,r=t},f:function(){try{n||null==i.return||i.return()}finally{if(a)throw r}}}}function ct(t,e){if(null==t)throw new TypeError("assign requires that input parameter not be null or undefined");for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t}function ut(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function pt(t,e){return pt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},pt(t,e)}function mt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&pt(t,e)}function vt(t){return vt=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},vt(t)}function ft(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ft=function(){return!!t})()}function gt(t){var e=ft();return function(){var i,s=vt(t);if(e){var o=vt(this).constructor;i=Reflect.construct(s,arguments,o)}else i=s.apply(this,arguments);return function(t,e){if(e&&("object"==c(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return ut(t)}(this,i)}}function bt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function yt(t){var e=function(t){if("object"!=c(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,"string");if("object"!=c(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==c(e)?e:e+""}function wt(t,e){for(var i=0;i<e.length;i++){var s=e[i];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(t,yt(s.key),s)}}function _t(t,e,i){return e&&wt(t.prototype,e),i&&wt(t,i),Object.defineProperty(t,"prototype",{writable:!1}),t}function xt(t,e,i){return(e=yt(e))in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t}var kt=function(){function t(){bt(this,t),xt(this,"priority",void 0),xt(this,"subPriority",0)}return _t(t,[{key:"validate",value:function(){return!0}}]),t}(),Ct=function(){mt(e,kt);var t=gt(e);function e(i,s,o,r,n){var a;return bt(this,e),(a=t.call(this)).value=i,a.validateValue=s,a.setValue=o,a.priority=r,n&&(a.subPriority=n),a}return _t(e,[{key:"validate",value:function(t,e){return this.validateValue(t,this.value,e)}},{key:"set",value:function(t,e,i){return this.setValue(t,e,this.value,i)}}]),e}(),St=function(){mt(e,kt);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",10),xt(ut(i),"subPriority",-1),i}return _t(e,[{key:"set",value:function(t,e){if(e.timestampIsSet)return t;var i=new Date(0);return i.setFullYear(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()),i.setHours(t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds(),t.getUTCMilliseconds()),i}}]),e}(),Et=function(){function t(){bt(this,t),xt(this,"incompatibleTokens",void 0),xt(this,"priority",void 0),xt(this,"subPriority",void 0)}return _t(t,[{key:"run",value:function(t,e,i,s){var o=this.parse(t,e,i,s);return o?{setter:new Ct(o.value,this.validate,this.set,this.priority,this.subPriority),rest:o.rest}:null}},{key:"validate",value:function(){return!0}}]),t}(),At=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",140),xt(ut(i),"incompatibleTokens",["R","u","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"G":case"GG":case"GGG":return i.era(t,{width:"abbreviated"})||i.era(t,{width:"narrow"});case"GGGGG":return i.era(t,{width:"narrow"});default:return i.era(t,{width:"wide"})||i.era(t,{width:"abbreviated"})||i.era(t,{width:"narrow"})}}},{key:"set",value:function(t,e,i){return e.era=i,t.setUTCFullYear(i,0,1),t.setUTCHours(0,0,0,0),t}}]),e}(),zt=/^(1[0-2]|0?\d)/,It=/^(3[0-1]|[0-2]?\d)/,Tt=/^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/,Dt=/^(5[0-3]|[0-4]?\d)/,Mt=/^(2[0-3]|[0-1]?\d)/,Pt=/^(2[0-4]|[0-1]?\d)/,Ft=/^(1[0-1]|0?\d)/,Ot=/^(1[0-2]|0?\d)/,Nt=/^[0-5]?\d/,Bt=/^[0-5]?\d/,Lt=/^\d/,jt=/^\d{1,2}/,$t=/^\d{1,3}/,Vt=/^\d{1,4}/,Rt=/^-?\d+/,qt=/^-?\d/,Ht=/^-?\d{1,2}/,Wt=/^-?\d{1,3}/,Ut=/^-?\d{1,4}/,Yt=/^([+-])(\d{2})(\d{2})?|Z/,Gt=/^([+-])(\d{2})(\d{2})|Z/,Kt=/^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,Qt=/^([+-])(\d{2}):(\d{2})|Z/,Xt=/^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/;function Jt(t,e){return t?{value:e(t.value),rest:t.rest}:t}function Zt(t,e){var i=e.match(t);return i?{value:parseInt(i[0],10),rest:e.slice(i[0].length)}:null}function te(t,e){var i=e.match(t);return i?"Z"===i[0]?{value:0,rest:e.slice(1)}:{value:("+"===i[1]?1:-1)*(36e5*(i[2]?parseInt(i[2],10):0)+6e4*(i[3]?parseInt(i[3],10):0)+1e3*(i[5]?parseInt(i[5],10):0)),rest:e.slice(i[0].length)}:null}function ee(t){return Zt(Rt,t)}function ie(t,e){switch(t){case 1:return Zt(Lt,e);case 2:return Zt(jt,e);case 3:return Zt($t,e);case 4:return Zt(Vt,e);default:return Zt(new RegExp("^\\d{1,"+t+"}"),e)}}function se(t,e){switch(t){case 1:return Zt(qt,e);case 2:return Zt(Ht,e);case 3:return Zt(Wt,e);case 4:return Zt(Ut,e);default:return Zt(new RegExp("^-?\\d{1,"+t+"}"),e)}}function oe(t){switch(t){case"morning":return 4;case"evening":return 17;case"pm":case"noon":case"afternoon":return 12;default:return 0}}function re(t,e){var i,s=e>0,o=s?e:1-e;if(o<=50)i=t||100;else{var r=o+50;i=t+100*Math.floor(r/100)-(t>=r%100?100:0)}return s?i:1-i}function ne(t){return t%400==0||t%4==0&&t%100!=0}var ae=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",130),xt(ut(i),"incompatibleTokens",["Y","R","u","w","I","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return{year:t,isTwoDigitYear:"yy"===e}};switch(e){case"y":return Jt(ie(4,t),s);case"yo":return Jt(i.ordinalNumber(t,{unit:"year"}),s);default:return Jt(ie(e.length,t),s)}}},{key:"validate",value:function(t,e){return e.isTwoDigitYear||e.year>0}},{key:"set",value:function(t,e,i){var s=t.getUTCFullYear();if(i.isTwoDigitYear){var o=re(i.year,s);return t.setUTCFullYear(o,0,1),t.setUTCHours(0,0,0,0),t}return t.setUTCFullYear("era"in e&&1!==e.era?1-i.year:i.year,0,1),t.setUTCHours(0,0,0,0),t}}]),e}(),le=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",130),xt(ut(i),"incompatibleTokens",["y","R","u","Q","q","M","L","I","d","D","i","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return{year:t,isTwoDigitYear:"YY"===e}};switch(e){case"Y":return Jt(ie(4,t),s);case"Yo":return Jt(i.ordinalNumber(t,{unit:"year"}),s);default:return Jt(ie(e.length,t),s)}}},{key:"validate",value:function(t,e){return e.isTwoDigitYear||e.year>0}},{key:"set",value:function(t,e,i,s){var o=k(t,s);if(i.isTwoDigitYear){var r=re(i.year,o);return t.setUTCFullYear(r,0,s.firstWeekContainsDate),t.setUTCHours(0,0,0,0),x(t,s)}return t.setUTCFullYear("era"in e&&1!==e.era?1-i.year:i.year,0,s.firstWeekContainsDate),t.setUTCHours(0,0,0,0),x(t,s)}}]),e}(),he=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",130),xt(ut(i),"incompatibleTokens",["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e){return se("R"===e?4:e.length,t)}},{key:"set",value:function(t,e,i){var s=new Date(0);return s.setUTCFullYear(i,0,4),s.setUTCHours(0,0,0,0),g(s)}}]),e}(),de=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",130),xt(ut(i),"incompatibleTokens",["G","y","Y","R","w","I","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e){return se("u"===e?4:e.length,t)}},{key:"set",value:function(t,e,i){return t.setUTCFullYear(i,0,1),t.setUTCHours(0,0,0,0),t}}]),e}(),ce=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",120),xt(ut(i),"incompatibleTokens",["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"Q":case"QQ":return ie(e.length,t);case"Qo":return i.ordinalNumber(t,{unit:"quarter"});case"QQQ":return i.quarter(t,{width:"abbreviated",context:"formatting"})||i.quarter(t,{width:"narrow",context:"formatting"});case"QQQQQ":return i.quarter(t,{width:"narrow",context:"formatting"});default:return i.quarter(t,{width:"wide",context:"formatting"})||i.quarter(t,{width:"abbreviated",context:"formatting"})||i.quarter(t,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(t,e){return e>=1&&e<=4}},{key:"set",value:function(t,e,i){return t.setUTCMonth(3*(i-1),1),t.setUTCHours(0,0,0,0),t}}]),e}(),ue=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",120),xt(ut(i),"incompatibleTokens",["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"q":case"qq":return ie(e.length,t);case"qo":return i.ordinalNumber(t,{unit:"quarter"});case"qqq":return i.quarter(t,{width:"abbreviated",context:"standalone"})||i.quarter(t,{width:"narrow",context:"standalone"});case"qqqqq":return i.quarter(t,{width:"narrow",context:"standalone"});default:return i.quarter(t,{width:"wide",context:"standalone"})||i.quarter(t,{width:"abbreviated",context:"standalone"})||i.quarter(t,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(t,e){return e>=1&&e<=4}},{key:"set",value:function(t,e,i){return t.setUTCMonth(3*(i-1),1),t.setUTCHours(0,0,0,0),t}}]),e}(),pe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"incompatibleTokens",["Y","R","q","Q","L","w","I","D","i","e","c","t","T"]),xt(ut(i),"priority",110),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return t-1};switch(e){case"M":return Jt(Zt(zt,t),s);case"MM":return Jt(ie(2,t),s);case"Mo":return Jt(i.ordinalNumber(t,{unit:"month"}),s);case"MMM":return i.month(t,{width:"abbreviated",context:"formatting"})||i.month(t,{width:"narrow",context:"formatting"});case"MMMMM":return i.month(t,{width:"narrow",context:"formatting"});default:return i.month(t,{width:"wide",context:"formatting"})||i.month(t,{width:"abbreviated",context:"formatting"})||i.month(t,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=11}},{key:"set",value:function(t,e,i){return t.setUTCMonth(i,1),t.setUTCHours(0,0,0,0),t}}]),e}(),me=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",110),xt(ut(i),"incompatibleTokens",["Y","R","q","Q","M","w","I","D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return t-1};switch(e){case"L":return Jt(Zt(zt,t),s);case"LL":return Jt(ie(2,t),s);case"Lo":return Jt(i.ordinalNumber(t,{unit:"month"}),s);case"LLL":return i.month(t,{width:"abbreviated",context:"standalone"})||i.month(t,{width:"narrow",context:"standalone"});case"LLLLL":return i.month(t,{width:"narrow",context:"standalone"});default:return i.month(t,{width:"wide",context:"standalone"})||i.month(t,{width:"abbreviated",context:"standalone"})||i.month(t,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=11}},{key:"set",value:function(t,e,i){return t.setUTCMonth(i,1),t.setUTCHours(0,0,0,0),t}}]),e}(),ve=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",100),xt(ut(i),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","i","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"w":return Zt(Dt,t);case"wo":return i.ordinalNumber(t,{unit:"week"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=1&&e<=53}},{key:"set",value:function(t,e,i,s){return x(function(t,e,i){u(2,arguments);var s=p(t),o=v(e),r=C(s,i)-o;return s.setUTCDate(s.getUTCDate()-7*r),s}(t,i,s),s)}}]),e}(),fe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",100),xt(ut(i),"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"I":return Zt(Dt,t);case"Io":return i.ordinalNumber(t,{unit:"week"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=1&&e<=53}},{key:"set",value:function(t,e,i){return g(function(t,e){u(2,arguments);var i=p(t),s=v(e),o=y(i)-s;return i.setUTCDate(i.getUTCDate()-7*o),i}(t,i))}}]),e}(),ge=[31,28,31,30,31,30,31,31,30,31,30,31],be=[31,29,31,30,31,30,31,31,30,31,30,31],ye=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"subPriority",1),xt(ut(i),"incompatibleTokens",["Y","R","q","Q","w","I","D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"d":return Zt(It,t);case"do":return i.ordinalNumber(t,{unit:"date"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){var i=ne(t.getUTCFullYear()),s=t.getUTCMonth();return i?e>=1&&e<=be[s]:e>=1&&e<=ge[s]}},{key:"set",value:function(t,e,i){return t.setUTCDate(i),t.setUTCHours(0,0,0,0),t}}]),e}(),we=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"subpriority",1),xt(ut(i),"incompatibleTokens",["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"D":case"DD":return Zt(Tt,t);case"Do":return i.ordinalNumber(t,{unit:"date"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return ne(t.getUTCFullYear())?e>=1&&e<=366:e>=1&&e<=365}},{key:"set",value:function(t,e,i){return t.setUTCMonth(0,i),t.setUTCHours(0,0,0,0),t}}]),e}();function _e(t,e,i){var s,o,r,n,a,l,h,d;u(2,arguments);var c=_(),m=v(null!==(s=null!==(o=null!==(r=null!==(n=null==i?void 0:i.weekStartsOn)&&void 0!==n?n:null==i||null===(a=i.locale)||void 0===a||null===(l=a.options)||void 0===l?void 0:l.weekStartsOn)&&void 0!==r?r:c.weekStartsOn)&&void 0!==o?o:null===(h=c.locale)||void 0===h||null===(d=h.options)||void 0===d?void 0:d.weekStartsOn)&&void 0!==s?s:0);if(!(m>=0&&m<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var f=p(t),g=v(e),b=((g%7+7)%7<m?7:0)+g-f.getUTCDay();return f.setUTCDate(f.getUTCDate()+b),f}var xe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"incompatibleTokens",["D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"E":case"EE":case"EEE":return i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"});case"EEEEE":return i.day(t,{width:"narrow",context:"formatting"});case"EEEEEE":return i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"});default:return i.day(t,{width:"wide",context:"formatting"})||i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=6}},{key:"set",value:function(t,e,i,s){return(t=_e(t,i,s)).setUTCHours(0,0,0,0),t}}]),e}(),ke=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i,s){var o=function(t){var e=7*Math.floor((t-1)/7);return(t+s.weekStartsOn+6)%7+e};switch(e){case"e":case"ee":return Jt(ie(e.length,t),o);case"eo":return Jt(i.ordinalNumber(t,{unit:"day"}),o);case"eee":return i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"});case"eeeee":return i.day(t,{width:"narrow",context:"formatting"});case"eeeeee":return i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"});default:return i.day(t,{width:"wide",context:"formatting"})||i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=6}},{key:"set",value:function(t,e,i,s){return(t=_e(t,i,s)).setUTCHours(0,0,0,0),t}}]),e}(),Ce=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i,s){var o=function(t){var e=7*Math.floor((t-1)/7);return(t+s.weekStartsOn+6)%7+e};switch(e){case"c":case"cc":return Jt(ie(e.length,t),o);case"co":return Jt(i.ordinalNumber(t,{unit:"day"}),o);case"ccc":return i.day(t,{width:"abbreviated",context:"standalone"})||i.day(t,{width:"short",context:"standalone"})||i.day(t,{width:"narrow",context:"standalone"});case"ccccc":return i.day(t,{width:"narrow",context:"standalone"});case"cccccc":return i.day(t,{width:"short",context:"standalone"})||i.day(t,{width:"narrow",context:"standalone"});default:return i.day(t,{width:"wide",context:"standalone"})||i.day(t,{width:"abbreviated",context:"standalone"})||i.day(t,{width:"short",context:"standalone"})||i.day(t,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=6}},{key:"set",value:function(t,e,i,s){return(t=_e(t,i,s)).setUTCHours(0,0,0,0),t}}]),e}(),Se=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return 0===t?7:t};switch(e){case"i":case"ii":return ie(e.length,t);case"io":return i.ordinalNumber(t,{unit:"day"});case"iii":return Jt(i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"}),s);case"iiiii":return Jt(i.day(t,{width:"narrow",context:"formatting"}),s);case"iiiiii":return Jt(i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"}),s);default:return Jt(i.day(t,{width:"wide",context:"formatting"})||i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"}),s)}}},{key:"validate",value:function(t,e){return e>=1&&e<=7}},{key:"set",value:function(t,e,i){return t=function(t,e){u(2,arguments);var i=v(e);i%7==0&&(i-=7);var s=p(t),o=((i%7+7)%7<1?7:0)+i-s.getUTCDay();return s.setUTCDate(s.getUTCDate()+o),s}(t,i),t.setUTCHours(0,0,0,0),t}}]),e}(),Ee=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",80),xt(ut(i),"incompatibleTokens",["b","B","H","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"a":case"aa":case"aaa":return i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"});case"aaaaa":return i.dayPeriod(t,{width:"narrow",context:"formatting"});default:return i.dayPeriod(t,{width:"wide",context:"formatting"})||i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(t,e,i){return t.setUTCHours(oe(i),0,0,0),t}}]),e}(),Ae=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",80),xt(ut(i),"incompatibleTokens",["a","B","H","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"b":case"bb":case"bbb":return i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"});case"bbbbb":return i.dayPeriod(t,{width:"narrow",context:"formatting"});default:return i.dayPeriod(t,{width:"wide",context:"formatting"})||i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(t,e,i){return t.setUTCHours(oe(i),0,0,0),t}}]),e}(),ze=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",80),xt(ut(i),"incompatibleTokens",["a","b","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"B":case"BB":case"BBB":return i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"});case"BBBBB":return i.dayPeriod(t,{width:"narrow",context:"formatting"});default:return i.dayPeriod(t,{width:"wide",context:"formatting"})||i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(t,e,i){return t.setUTCHours(oe(i),0,0,0),t}}]),e}(),Ie=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",70),xt(ut(i),"incompatibleTokens",["H","K","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"h":return Zt(Ot,t);case"ho":return i.ordinalNumber(t,{unit:"hour"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=1&&e<=12}},{key:"set",value:function(t,e,i){var s=t.getUTCHours()>=12;return t.setUTCHours(s&&i<12?i+12:s||12!==i?i:0,0,0,0),t}}]),e}(),Te=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",70),xt(ut(i),"incompatibleTokens",["a","b","h","K","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"H":return Zt(Mt,t);case"Ho":return i.ordinalNumber(t,{unit:"hour"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=0&&e<=23}},{key:"set",value:function(t,e,i){return t.setUTCHours(i,0,0,0),t}}]),e}(),De=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",70),xt(ut(i),"incompatibleTokens",["h","H","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"K":return Zt(Ft,t);case"Ko":return i.ordinalNumber(t,{unit:"hour"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=0&&e<=11}},{key:"set",value:function(t,e,i){var s=t.getUTCHours()>=12;return t.setUTCHours(s&&i<12?i+12:i,0,0,0),t}}]),e}(),Me=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",70),xt(ut(i),"incompatibleTokens",["a","b","h","H","K","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"k":return Zt(Pt,t);case"ko":return i.ordinalNumber(t,{unit:"hour"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=1&&e<=24}},{key:"set",value:function(t,e,i){return t.setUTCHours(i<=24?i%24:i,0,0,0),t}}]),e}(),Pe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",60),xt(ut(i),"incompatibleTokens",["t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"m":return Zt(Nt,t);case"mo":return i.ordinalNumber(t,{unit:"minute"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=0&&e<=59}},{key:"set",value:function(t,e,i){return t.setUTCMinutes(i,0,0),t}}]),e}(),Fe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",50),xt(ut(i),"incompatibleTokens",["t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"s":return Zt(Bt,t);case"so":return i.ordinalNumber(t,{unit:"second"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=0&&e<=59}},{key:"set",value:function(t,e,i){return t.setUTCSeconds(i,0),t}}]),e}(),Oe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",30),xt(ut(i),"incompatibleTokens",["t","T"]),i}return _t(e,[{key:"parse",value:function(t,e){return Jt(ie(e.length,t),(function(t){return Math.floor(t*Math.pow(10,3-e.length))}))}},{key:"set",value:function(t,e,i){return t.setUTCMilliseconds(i),t}}]),e}(),Ne=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",10),xt(ut(i),"incompatibleTokens",["t","T","x"]),i}return _t(e,[{key:"parse",value:function(t,e){switch(e){case"X":return te(Yt,t);case"XX":return te(Gt,t);case"XXXX":return te(Kt,t);case"XXXXX":return te(Xt,t);default:return te(Qt,t)}}},{key:"set",value:function(t,e,i){return e.timestampIsSet?t:new Date(t.getTime()-i)}}]),e}(),Be=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",10),xt(ut(i),"incompatibleTokens",["t","T","X"]),i}return _t(e,[{key:"parse",value:function(t,e){switch(e){case"x":return te(Yt,t);case"xx":return te(Gt,t);case"xxxx":return te(Kt,t);case"xxxxx":return te(Xt,t);default:return te(Qt,t)}}},{key:"set",value:function(t,e,i){return e.timestampIsSet?t:new Date(t.getTime()-i)}}]),e}(),Le=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",40),xt(ut(i),"incompatibleTokens","*"),i}return _t(e,[{key:"parse",value:function(t){return ee(t)}},{key:"set",value:function(t,e,i){return[new Date(1e3*i),{timestampIsSet:!0}]}}]),e}(),je=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",20),xt(ut(i),"incompatibleTokens","*"),i}return _t(e,[{key:"parse",value:function(t){return ee(t)}},{key:"set",value:function(t,e,i){return[new Date(i),{timestampIsSet:!0}]}}]),e}(),$e={G:new At,y:new ae,Y:new le,R:new he,u:new de,Q:new ce,q:new ue,M:new pe,L:new me,w:new ve,I:new fe,d:new ye,D:new we,E:new xe,e:new ke,c:new Ce,i:new Se,a:new Ee,b:new Ae,B:new ze,h:new Ie,H:new Te,K:new De,k:new Me,m:new Pe,s:new Fe,S:new Oe,X:new Ne,x:new Be,t:new Le,T:new je},Ve=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Re=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,qe=/^'([^]*?)'?$/,He=/''/g,We=/\S/,Ue=/[a-zA-Z]/;function Ye(t,e,i,s){var o,r,n,a,l,h,d,m,g,b,y,w,x,k,C,S,E,A;u(3,arguments);var z=String(t),I=String(e),T=_(),D=null!==(o=null!==(r=null==s?void 0:s.locale)&&void 0!==r?r:T.locale)&&void 0!==o?o:it;if(!D.match)throw new RangeError("locale must contain match property");var M=v(null!==(n=null!==(a=null!==(l=null!==(h=null==s?void 0:s.firstWeekContainsDate)&&void 0!==h?h:null==s||null===(d=s.locale)||void 0===d||null===(m=d.options)||void 0===m?void 0:m.firstWeekContainsDate)&&void 0!==l?l:T.firstWeekContainsDate)&&void 0!==a?a:null===(g=T.locale)||void 0===g||null===(b=g.options)||void 0===b?void 0:b.firstWeekContainsDate)&&void 0!==n?n:1);if(!(M>=1&&M<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var P=v(null!==(y=null!==(w=null!==(x=null!==(k=null==s?void 0:s.weekStartsOn)&&void 0!==k?k:null==s||null===(C=s.locale)||void 0===C||null===(S=C.options)||void 0===S?void 0:S.weekStartsOn)&&void 0!==x?x:T.weekStartsOn)&&void 0!==w?w:null===(E=T.locale)||void 0===E||null===(A=E.options)||void 0===A?void 0:A.weekStartsOn)&&void 0!==y?y:0);if(!(P>=0&&P<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(""===I)return""===z?p(i):new Date(NaN);var F,O={firstWeekContainsDate:M,weekStartsOn:P,locale:D},N=[new St],B=I.match(Re).map((function(t){var e=t[0];return e in R?(0,R[e])(t,D.formatLong):t})).join("").match(Ve),L=[],j=dt(B);try{var $=function(){var e=F.value;null!=s&&s.useAdditionalWeekYearTokens||!Y(e)||G(e,I,t),null!=s&&s.useAdditionalDayOfYearTokens||!U(e)||G(e,I,t);var i=e[0],o=$e[i];if(o){var r=o.incompatibleTokens;if(Array.isArray(r)){var n=L.find((function(t){return r.includes(t.token)||t.token===i}));if(n)throw new RangeError("The format string mustn't contain `".concat(n.fullToken,"` and `").concat(e,"` at the same time"))}else if("*"===o.incompatibleTokens&&L.length>0)throw new RangeError("The format string mustn't contain `".concat(e,"` and any other token at the same time"));L.push({token:i,fullToken:e});var a=o.run(z,e,D.match,O);if(!a)return{v:new Date(NaN)};N.push(a.setter),z=a.rest}else{if(i.match(Ue))throw new RangeError("Format string contains an unescaped latin alphabet character `"+i+"`");if("''"===e?e="'":"'"===i&&(e=e.match(qe)[1].replace(He,"'")),0!==z.indexOf(e))return{v:new Date(NaN)};z=z.slice(e.length)}};for(j.s();!(F=j.n()).done;){var V=$();if("object"===c(V))return V.v}}catch(t){j.e(t)}finally{j.f()}if(z.length>0&&We.test(z))return new Date(NaN);var H=N.map((function(t){return t.priority})).sort((function(t,e){return e-t})).filter((function(t,e,i){return i.indexOf(t)===e})).map((function(t){return N.filter((function(e){return e.priority===t})).sort((function(t,e){return e.subPriority-t.subPriority}))})).map((function(t){return t[0]})),W=p(i);if(isNaN(W.getTime()))return new Date(NaN);var K,Q=f(W,q(W)),X={},J=dt(H);try{for(J.s();!(K=J.n()).done;){var Z=K.value;if(!Z.validate(Q,O))return new Date(NaN);var tt=Z.set(Q,X,O);Array.isArray(tt)?(Q=tt[0],ct(X,tt[1])):Q=tt}}catch(t){J.e(t)}finally{J.f()}return Q}function Ge(t,e){u(2,arguments);var i=p(t),s=p(e);return i.getTime()>s.getTime()}function Ke(t,e){u(2,arguments);var i=p(t),s=p(e);return i.getTime()<s.getTime()}function Qe(t,e,i){return u(2,arguments),m(Ye(t,e,new Date,i))}const Xe=class{constructor(i){t(this,i),this.sendValidityState=e(this,"sendValidityState",7),this.sendInputValue=e(this,"sendInputValue",7),this.touched=!1,this.formatDate=t=>{const{year:e,month:i,day:s}=t;return lt(new Date(e,i,s),this.dateFormat)},this.parseDate=t=>{const e=Ye(t,this.dateFormat,new Date);return{year:e.getFullYear(),month:e.getMonth(),day:e.getDate()}},this.setClientStyling=()=>{let t=document.createElement("style");t.innerHTML=this.clientStyling,this.stylingContainer.prepend(t)},this.handleDocumentIdUpdate=t=>{this.name===n.BIRTHDATE&&(this.value=t.detail,this.valueAsDate=Ye(this.value||"",n.DATE_FORMAT,new Date),this.touched=!0,this.datePicker&&(this.datePicker.value=this.value),this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.valueHandler({name:this.name,value:this.value}))},this.name=void 0,this.displayName=void 0,this.placeholder=void 0,this.validation=void 0,this.defaultValue=void 0,this.autofilled=void 0,this.tooltip=void 0,this.language=void 0,this.emitValue=void 0,this.clientStyling="",this.dateFormat="yyyy-MM-dd",this.emitOnClick=!1,this.enableSouthAfricanMode=void 0,this.errorMessage=void 0,this.isValid=void 0,this.limitStylingAppends=!1,this.showTooltip=!1}get formattedValue(){return this.value?lt(Ye(this.value,"yyyy-MM-dd",new Date),this.dateFormat):""}handleStylingChange(t,e){t!==e&&this.setClientStyling()}validityChanged(){this.validityStateHandler({valid:this.isValid,name:this.name}),1==this.emitValue&&this.valueHandler({name:this.name,value:this.value})}validityStateHandler(t){this.sendValidityState.emit(t)}emitValueHandler(t){1==t&&this.isValid&&this.valueHandler({name:this.name,value:this.value})}handleCustomRegistrationChange(t){t?window.addEventListener("documentIdUpdated",this.handleDocumentIdUpdate):window.removeEventListener("documentIdUpdated",this.handleDocumentIdUpdate)}valueHandler(t){this.sendInputValue.emit(t)}handleClickOutside(t){const e=t.composedPath();e.includes(this.tooltipIconReference)||e.includes(this.tooltipReference)||(this.showTooltip=!1)}connectedCallback(){var t,e;this.minDate=Ye((null===(t=this.validation.min)||void 0===t?void 0:t.toString())||"","yyyy-MM-dd",new Date),this.maxDate=Ye((null===(e=this.validation.max)||void 0===e?void 0:e.toString())||"","yyyy-MM-dd",new Date)}componentDidRender(){!this.limitStylingAppends&&this.stylingContainer&&(this.clientStyling&&this.setClientStyling(),this.limitStylingAppends=!0)}componentDidLoad(){if(this.datePicker=this.element.shadowRoot.querySelector("vaadin-date-picker"),this.inputReference=this.element.shadowRoot.querySelector("input"),this.datePicker){const t=this.datePicker.shadowRoot.querySelector('[part="toggle-button"]');t&&t.addEventListener("click",(()=>this.handleCalendarIconClick())),this.datePicker.addEventListener("opened-changed",(t=>{!0===t.detail.value?this.errorMessage="":(this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.touched=!0)}))}this.enableSouthAfricanMode&&window.addEventListener("documentIdUpdated",this.handleDocumentIdUpdate),this.datePicker.i18n=Object.assign(Object.assign({},this.datePicker.i18n),{formatDate:this.formatDate,parseDate:this.parseDate}),this.defaultValue&&(this.value=this.defaultValue,this.valueHandler({name:this.name,value:this.value})),this.isValid=this.setValidity()}disconnectedCallback(){this.enableSouthAfricanMode&&window.removeEventListener("documentIdUpdated",this.handleDocumentIdUpdate)}handleCalendarIconClick(){this.datePicker.opened&&this.emitOnClick&&window.postMessage({type:`registration${this.name}Clicked`},window.location.href)}handleInput(t){this.value=t.target.value,this.touched=!0,this.valueAsDate=Ye(this.value||"","yyyy-MM-dd",new Date),this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.emitValueHandler(!0),this.enableSouthAfricanMode&&window.dispatchEvent(new CustomEvent("birthDateUpdated",{detail:{birthDate:this.value}}))}setValidity(){return!(Ke(this.valueAsDate,this.minDate)||Ge(this.valueAsDate,this.maxDate)||!Qe(this.formattedValue,this.dateFormat))&&this.inputReference.validity.valid}setErrorMessage(){return this.inputReference.validity.valueMissing?a("requiredError",this.language):this.inputReference.validity.rangeUnderflow||this.inputReference.validity.rangeOverflow?a("dateError",this.language,{values:{min:this.validation.min,max:this.validation.max}}):Ke(this.valueAsDate,this.minDate)||Ge(this.valueAsDate,this.maxDate)?a("dateError2",this.language):Qe(this.formattedValue,this.dateFormat)?void 0:a("dateFormatError",this.language)}renderTooltip(){return this.showTooltip?i("div",{class:"date__tooltip "+(this.showTooltip?"visible":""),ref:t=>this.tooltipReference=t,innerHTML:this.tooltip}):null}render(){let t="";return this.touched&&(t=1==this.isValid||null==this.isValid?"":"text__input--invalid"),i("div",{key:"9399c1be2edcbe3ed5c0e133cad52b1917e77e96",class:`date__wrapper ${this.autofilled?"date__wrapper--autofilled":""} ${this.name}__input`,ref:t=>this.stylingContainer=t},i("label",{key:"1094491a5fc441c4f704441d376ed965d6946637",class:`date__label ${this.validation.mandatory?"date__label--required":""}}`,htmlFor:`${this.name}__input`},this.displayName,i("span",{key:"14dd041cce018e22d82919f46eabc88f83e639e8",class:this.validation.mandatory?"date__label--required":""})),i("vaadin-date-picker",{key:"eb720200d8d2b07ab00bca70c8e4a25dfc5cd08f",id:`${this.name}__input`,type:"date",class:`date__input ${t}`,value:this.defaultValue,readOnly:this.autofilled,placeholder:`${this.placeholder}`,required:this.validation.mandatory,max:this.validation.max,min:this.validation.min,onChange:t=>this.handleInput(t)}),i("small",{key:"eedeea67c67bdc92ae1bb3e79cab745384bb0db7",class:"date__error-message"},this.errorMessage),this.tooltip&&i("img",{key:"2b9cbbb972e4d07124a3d548eb932a26a44f75f3",class:"date__tooltip-icon",src:l,alt:"",ref:t=>this.tooltipIconReference=t,onClick:()=>this.showTooltip=!this.showTooltip}),this.renderTooltip())}get element(){return s(this)}static get watchers(){return{clientStyling:["handleStylingChange"],isValid:["validityChanged"],emitValue:["emitValueHandler"],enableSouthAfricanMode:["handleCustomRegistrationChange"]}}};Xe.style='*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}.date{font-family:"Roboto";font-style:normal}.date__wrapper{position:relative;width:100%;display:flex;flex-direction:column;gap:5px;height:100%}.date__wrapper--autofilled{pointer-events:none}.date__wrapper--autofilled .date__label{color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.date__wrapper--autofilled .date__input::part(input-field){color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.date__label{font-family:inherit;font-style:normal;font-weight:500;font-size:16px;line-height:20px;color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.date__label--required::after{content:"*";font-family:inherit;color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));margin-left:2px}.date__input{border:none;width:inherit;position:relative}.date__input[focused]::part(input-field){border-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.date__input[invalid]::part(input-field){border:1px solid var(--emw--color-error, var(--emw--color-red, #ed0909))}.date__input::part(input-field){border-radius:4px;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));font-family:inherit;font-style:normal;font-size:16px;font-weight:300;line-height:1.5;padding:0;height:44px}.date__input>input{padding:5px 15px}.date__input::part(toggle-button){position:relative;right:10px}.date__error-message{position:absolute;top:calc(100% + 5px);left:0;color:var(--emw--color-error, var(--emw--color-red, #ed0909))}.date__tooltip-icon{position:absolute;right:0;bottom:10px}.date__tooltip{position:absolute;bottom:35px;right:10px;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.date__tooltip.visible{opacity:1}';const Je=class{constructor(i){t(this,i),this.sendValidityState=e(this,"sendValidityState",7),this.sendInputValue=e(this,"sendInputValue",7),this.validationPattern="",this.touched=!1,this.handleInput=t=>{this.value=t.target.value,this.touched=!0,this.debounceTime&&clearTimeout(this.debounceTime),this.debounceTime=setTimeout((()=>{this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.emitValueHandler(!0)}),500)},this.handleBlur=()=>{this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.touched=!0},this.setClientStyling=()=>{let t=document.createElement("style");t.innerHTML=this.clientStyling,this.stylingContainer.prepend(t)},this.name=void 0,this.displayName=void 0,this.placeholder=void 0,this.validation=void 0,this.defaultValue=void 0,this.autofilled=void 0,this.tooltip=void 0,this.language=void 0,this.emitValue=void 0,this.isDuplicateInput=void 0,this.clientStyling="",this.errorMessage=void 0,this.isValid=void 0,this.limitStylingAppends=!1,this.showTooltip=!1}handleStylingChange(t,e){t!==e&&this.setClientStyling()}validityChanged(){this.validityStateHandler({valid:this.isValid,name:this.name}),1==this.emitValue&&this.valueHandler({name:this.name,value:this.value})}emitValueHandler(t){1==t&&this.isValid&&this.valueHandler({name:this.name,value:this.value})}validityStateHandler(t){this.sendValidityState.emit(t)}valueHandler(t){this.sendInputValue.emit(t)}handleClickOutside(t){const e=t.composedPath();e.includes(this.tooltipIconReference)||e.includes(this.tooltipReference)||(this.showTooltip=!1)}valueChangedHandler(t){this.isDuplicateInput&&this.name===t.detail.name+"Duplicate"&&(this.duplicateInputValue=t.detail.value)}connectedCallback(){this.validationPattern=this.setPattern()}componentDidRender(){!this.limitStylingAppends&&this.stylingContainer&&(this.clientStyling&&this.setClientStyling(),this.limitStylingAppends=!0)}componentDidLoad(){this.isValid=this.setValidity(),this.defaultValue&&(this.value=this.defaultValue,this.valueHandler({name:this.name,value:this.value}))}setValidity(){return this.inputReference.validity.valid}setPattern(){var t,e;if((null===(t=this.validation.custom)||void 0===t?void 0:t.length)>0)return null===(e=this.validation.custom.find((t=>"regex"===t.rule)))||void 0===e?void 0:e.pattern}setErrorMessage(){var t,e,i,s;if(this.inputReference.validity.valueMissing)return a("requiredError",this.language);if(this.inputReference.validity.tooShort||this.inputReference.validity.tooLong)return a("lengthError",this.language,{values:{minLength:this.validation.minLength,maxLength:this.validation.maxLength}});if(this.inputReference.validity.patternMismatch){const i=null===(t=this.validation.custom.find((t=>"regex"===t.rule)))||void 0===t?void 0:t.errorKey,s=null===(e=this.validation.custom.find((t=>"regex"===t.rule)))||void 0===e?void 0:e.errorMessage;return a(`${i}`,this.language)?a(`${i}`,this.language):s}if(this.isDuplicateInput&&this.duplicateInputValue!==this.value){const t=null===(i=this.validation.custom.find((t=>"duplicate-input"===t.rule)))||void 0===i?void 0:i.errorKey,e=null===(s=this.validation.custom.find((t=>"duplicate-input"===t.rule)))||void 0===s?void 0:s.errorMessage;return a(`${t}`,this.language)?a(`${t}`,this.language):e}}renderTooltip(){return this.showTooltip?i("div",{class:"email__tooltip "+(this.showTooltip?"visible":""),ref:t=>this.tooltipReference=t,innerHTML:this.tooltip}):null}render(){let t="";return this.touched&&(t=1==this.isValid||null==this.isValid?"":"text__input--invalid"),i("div",{key:"723df8f3a6e8c57fe19082400971daf50f5c981d",class:`email__wrapper ${this.autofilled?"number__wrapper--autofilled":""} ${this.name}__input`,ref:t=>this.stylingContainer=t},i("div",{key:"581d6e02b63d1c659ae44424518f64db450d5365",class:"email__wrapper--flex"},i("label",{key:"11e6a848f6f04903989b3ab2075865f6e279c087",class:"email__label "+(this.validation.mandatory?"email__label--required":""),htmlFor:`${this.name}__input`},this.displayName),i("div",{key:"73e11520cffbddda1a2aeb4b560e7f4cf456e2fb",class:"email__wrapper--relative"},this.tooltip&&i("img",{key:"e8571ce14b9b98311daf1712ebde7d6da9b5a6a6",class:"email__tooltip-icon",src:l,alt:"",ref:t=>this.tooltipIconReference=t,onClick:()=>this.showTooltip=!this.showTooltip}),this.renderTooltip())),i("input",{key:"dd05ef0b4d906598c6d5775a78ccbdc9ea81cb8c",id:`${this.name}__input`,type:"email",class:`email__input ${t}`,value:this.defaultValue,readOnly:this.autofilled,placeholder:`${this.placeholder}`,ref:t=>this.inputReference=t,pattern:this.validationPattern,required:this.validation.mandatory,minlength:this.validation.minLength,maxlength:this.validation.maxLength,onInput:this.handleInput,onBlur:this.handleBlur}),i("small",{key:"0d2d41207f8274d8c6f69143131265ef5b458689",class:"email__error-message"},this.errorMessage))}static get watchers(){return{clientStyling:["handleStylingChange"],isValid:["validityChanged"],emitValue:["emitValueHandler"]}}};Je.style='*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}.email{font-family:"Roboto";font-style:normal}.email__wrapper{position:relative;width:100%}.email__wrapper--autofilled{pointer-events:none}.email__wrapper--autofilled .email__label{color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.email__wrapper--autofilled .email__input{color:var(--emw--color-black, #000000)}.email__wrapper--flex{display:flex;gap:5px}.email__wrapper--relative{position:relative}.email__label{font-family:inherit;font-style:normal;font-weight:500;font-size:16px;line-height:20px;color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.email__label--required::after{content:"*";font-family:inherit;color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));margin-left:2px}.email__input{font-family:inherit;border-radius:4px;width:100%;height:40px;border:2px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--color-black, #000000);border-radius:5px;box-sizing:border-box;font-size:16px;font-weight:300;line-height:1.5;padding:10px}.email__input:focus{outline-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.email__input--invalid{border:1px solid var(--emw--color-error, var(--emw--color-red, #ed0909))}.email__input::placeholder{color:var(--emw--color-gray-150, #828282)}.email__error-message{position:absolute;top:calc(100% + 5px);left:0;color:var(--emw--color-error, var(--emw--color-red, #ed0909))}.email__tooltip-icon{width:16px;height:auto}.email__tooltip{position:absolute;top:0;left:20px;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.email__tooltip.visible{opacity:1}';var Ze=Object.defineProperty,ti=Object.defineProperties,ei=Object.getOwnPropertyDescriptors,ii=Object.getOwnPropertySymbols,si=Object.prototype.hasOwnProperty,oi=Object.prototype.propertyIsEnumerable,ri=(t,e,i)=>e in t?Ze(t,e,{enumerable:!0,configurable:!0,writable:!0,value:i}):t[e]=i,ni=(t,e)=>{for(var i in e||(e={}))si.call(e,i)&&ri(t,i,e[i]);if(ii)for(var i of ii(e))oi.call(e,i)&&ri(t,i,e[i]);return t},ai=(t,e)=>ti(t,ei(e)),li=(t,e,i)=>(ri(t,"symbol"!=typeof e?e+"":e,i),i),hi=(t,e,i)=>new Promise(((s,o)=>{var r=t=>{try{a(i.next(t))}catch(t){o(t)}},n=t=>{try{a(i.throw(t))}catch(t){o(t)}},a=t=>t.done?s(t.value):Promise.resolve(t.value).then(r,n);a((i=i.apply(t,e)).next())}))
1
+ import{r as t,c as e,h as i,g as s,H as o}from"./index-3a596979.js";export{P as pam_forgot_password}from"./pam-forgot-password-7e70c8eb.js";const r={en:{dateError:"The selected date should be between {min} and {max}",dateError2:"The selected date is not within the accepted range",dateFormatError:"The selected date has a different format then the one required.",numberLengthError:"The number should be between {min} and {max}",lengthError:"The length should be between {minLength} and {maxLength}",requiredError:"This input is required.",invalidOriginalPasswordError:"Initial password field does not validate all criteria.",invalidPassword:"Password does not meet all criteria",passwordStrength:"Password strength",passwordStrengthWeak:"is not adequate",passwordStrengthStrong:"is adequate",SpecialCharactersNotAllowed:"Should not contain special characters",InvalidEmailFormat:"Invalid email format.",EmailNotMatching:"Emails not matching!",PasswordNotMatching:"Passwords not matching",MustIncludeNumber:"Password must include a number",MustContainCapital:"Password must include a capital letter",MustIncludePunctation:"Password must include punctuation",MustIncludeLowercase:"Password must include one lowercase character",OnlyNumbers:"The input should contain only digits.",InvalidFieldSize:"The length must be exactly 11 digits.",InvalidDocumentNumber:"Only numerical characters are allowed.",twofaDescription:"<p> We have sent the verification code to <p> {destination}. </p> </p> <p> Please insert the PIN below. </p>",twofaResendMessage:"Didn't receive the verification code?",twofaResendButton:"Resend",enterIEAddressManually:"For IRE, enter the address manually",postalLookUpNoAddressFound:"No addresses found for this postal code",searchingForAddresses:"Searching for addresses...",SAIdLengthError:"SA ID must be 13 digits",SAIdInvalidError:"Invalid SA ID",PassportLengthError:"Passport number must be 8 or 9 digits.",PasswordMustContain:"Password must contain:"},hu:{dateError:"A választott dátumnak {min} és {max} között kell lennie",dateError2:"A kiválasztott dátum nincs az elfogadott tartományon belül",dateFormatError:"A kiválasztott dátum formátuma eltér a szükségestől.",numberLengthError:"A számnak {min} és {max} között kell lennie",lengthError:"A hossznak {minLength} és {maxLength} között kell lennie",requiredError:"Ez a beviteli mező kötelező.",invalidOriginalPasswordError:"Initial password field does not validate all criteria.",invalidPassword:"A jelszó nem felel meg minden kritériumnak",passwordStrength:"Jelszó erőssége",passwordStrengthWeak:"nem megfelelő",passwordStrengthStrong:"megfelelő",SpecialCharactersNotAllowed:"Nem tartalmazhat speciális karaktereket",InvalidEmailFormat:"Érvénytelen e-mail formátum.",EmailNotMatching:"Az e-mailek nem egyeznek!",PasswordNotMatching:"A jelszavak nem egyeznek",MustIncludeNumber:"A jelszónak tartalmaznia kell egy számot",MustContainCapital:"A jelszónak tartalmaznia kell egy nagybetűt",MustIncludePunctation:"A jelszónak tartalmaznia kell írásjelet",MustIncludeLowercase:"A jelszónak legalább egy kisbetűt kell tartalmaznia",OnlyNumbers:"Csak számjegyeket tartalmazhat.",InvalidFieldSize:"A hosszúságnak pontosan 11 számjegynek kell lennie.",InvalidDocumentNumber:"Csak számjegyek engedélyezettek.",twofaDescription:"<p> A megerősítő kódot elküldtük a következő címre: <p> {destination}. </p> </p> <p> Kérjük, írja be az alábbi PIN-kódot. </p>",twofaResendMessage:"Nem kapta meg a megerősítő kódot?",twofaResendButton:"Újraküldés",PassportLengthError:"Az útlevélszámnak 9 számjegyűnek kell lennie",SAIdLengthError:"A dél-afrikai személyi számnak 13 számjegyűnek kell lennie",SAIdInvalidError:"Érvénytelen dél-afrikai személyi szám",PasswordMustContain:"A jelszónak tartalmaznia kell:"},hr:{dateError:"Odabrani datum treba biti između {min} i {max}",dateError2:"Odabrani datum nije unutar prihvaćenog raspona",dateFormatError:"Odabrani datum je u drugačijem formatu od potrebnog.",numberLengthError:"Broj bi trebao biti između {min} i {max}",lengthError:"Duljina bi trebala biti između {minLength} i {maxLength}",requiredError:"Ovaj unos je obavezan.",invalidOriginalPasswordError:"Lozinke se ne podudaraju",invalidPassword:"Lozinka ne zadovoljava sve kriterije",passwordStrength:"Lozinka",passwordStrengthWeak:"nije dovoljno jaka",passwordStrengthStrong:"je dovoljno jaka",SpecialCharactersNotAllowed:"Ne smije sadržavati posebne znakove",InvalidEmailFormat:"Nevažeći format e-maila",EmailNotMatching:"E-mailovi se ne podudaraju!",PasswordNotMatching:"Lozinke se ne podudaraju",MustIncludeNumber:"Lozinka mora sadržavati broj",MustContainCapital:"Lozinka mora sadržavati veliko slovo",MustIncludePunctation:"Lozinka mora sadržavati barem jedan znak",MustIncludeLowercase:"Lozinka mora sadržavati barem jedno malo slovo",OnlyNumbers:"Smije sadržavati samo znamenke.",InvalidFieldSize:"Dužina mora biti točno 11 znamenki.",InvalidDocumentNumber:"Dopušteni su samo numerički znakovi.",twofaDescription:"<p> Poslali smo verifikacijski kod na: <p> {destination}. </p> </p> <p> Molimo unesite PIN ispod. </p>",twofaResendMessage:"Niste primili verifikacijski kod?",twofaResendButton:"Ponovno pošalji",PassportLengthError:"Broj putovnice mora imati 9 znamenki",SAIdLengthError:"Južnoafrički osobni broj mora imati 13 znamenki",SAIdInvalidError:"Nevažeći južnoafrički osobni broj",PasswordMustContain:"Lozinka mora sadržavati:"},tr:{dateError:"Seçilen tarih {min} ve {max} arasında olmalıdır",dateError2:"Seçilen tarih kabul edilen aralıkta değil",dateFormatError:"Seçilen tarihin formatı, gereken formattan farklı.",numberLengthError:"Sayı {min} ve {max} arasında olmalıdır",lengthError:"Uzunluk {minLength} ve {maxLength} arasında olmalıdır",requiredError:"Bu alan zorunludur.",invalidOriginalPasswordError:"İlk şifre alanı tüm kriterleri karşılamıyor.",invalidPassword:"Şifre tüm kriterleri karşılamıyor",passwordStrength:"Şifre gücü",passwordStrengthWeak:"yetersiz",passwordStrengthStrong:"yeterli",SpecialCharactersNotAllowed:"Özel karakter içermemelidir",InvalidEmailFormat:"Geçersiz e-posta formatı.",EmailNotMatching:"E-postalar uyuşmuyor!",PasswordNotMatching:"Şifreler uyuşmuyor",MustIncludeNumber:"bir sayı içermelidir",MustContainCapital:"büyük harf içermelidir",MustIncludePunctation:"noktalama işareti içermelidir",MustIncludeLowercase:"Şifre en az bir küçük harf içermelidir",OnlyNumbers:"Yalnızca rakamlar içermelidir.",InvalidFieldSize:"Uzunluk tam olarak 11 rakam olmalıdır.",InvalidDocumentNumber:"Sadece sayısal karakterlere izin verilir.",twofaDescription:"<p> Doğrulama kodunu şu adrese gönderdik: <p> {destination}. </p> </p> <p> Lütfen aşağıya PIN kodunu girin. </p>",twofaResendMessage:"Doğrulama kodunu almadınız mı?",twofaResendButton:"Yeniden gönder",PassportLengthError:"Pasaport numarası 9 haneli olmalıdır",SAIdLengthError:"Güney Afrika kimlik numarası 13 haneli olmalıdır",SAIdInvalidError:"Geçersiz Güney Afrika kimlik numarası",PasswordMustContain:"Şifre şunları içermelidir:"},"pt-br":{dateError:"A data selecionada deve estar entre {min} e {max}",dateError2:"A data selecionada não está dentro de um intervalo válido",dateFormatError:"A data selecionada está em um formato diferente do exigido.",numberLengthError:"O número deve estar entre {min} e {max}",lengthError:"O comprimento deve estar entre {minLength} e {maxLength}",requiredError:"Este campo é obrigatório",invalidOriginalPasswordError:"O campo de senha inicial não faz parte dos critérios válidos",invalidPassword:"A senha não atende a todos os critérios",PasswordStrength:"Força da senha",PasswordStrengthWeak:"Não é adequado",PasswordStrengthStrong:"é apropriado",SpecialCharactersNotAllowed:"Não deve conter caracteres especiais",InvalidEmailFormat:"Formato de email inválido",EmailNotMatching:"E-mail não corresponde",PasswordNotMatching:"Senha não corresponde",MustIncludeNumber:"A senha deve incluir um número",MustContainCapital:"A senha deve incluir uma letra maiúscula",MustIncludePunctation:"A senha deve incluir um sinal de pontuação",MustIncludeLowercase:"A senha deve conter pelo menos uma letra minúscula",OnlyNumbers:"Deve conter apenas dígitos.",InvalidFieldSize:"O comprimento deve ser exatamente 11 dígitos.",InvalidDocumentNumber:"Apenas caracteres numéricos são permitidos.",twofaDescription:"<p> Enviamos o código de verificação para: <p> {destination}. </p> </p> <p> Por favor, insira o PIN abaixo. </p>",twofaResendMessage:"Não recebeu o código de verificação?",twofaResendButton:"Reenviar",PassportLengthError:"O número do passaporte deve ter 9 dígitos",SAIdLengthError:"O número de identificação da África do Sul deve ter 13 dígitos",SAIdInvalidError:"Número de identificação da África do Sul inválido",PasswordMustContain:"A senha deve conter:"},"es-mx":{dateError:"La fecha seleccionada debe ser entre {min} y {max}",dateError2:"La fecha seleccionada no está dentro de un rango válido",dateFormatError:"La fecha seleccionada tiene un formato diferente al requerido.",numberLengthError:"El número debe ser entre {min} y {max}",lengthError:"La longitud deber ser entre {minLength} y {maxLength}",requiredError:"Este campo es requerido",invalidOriginalPasswordError:"El campo de contraseña inicial no es parte del criterio válido",invalidPassword:"La contraseña no cumple con todos los criterios",PasswordStrength:"La fortaleza de la contraseña",PasswordStrengthWeak:"no es adecuada",PasswordStrengthStrong:"es adecuada",SpecialCharactersNotAllowed:"No debe contener caracteres especiales",InvalidEmailFormat:"Formato inválido de correo",EmailNotMatching:"El correo electrónico no coincide",PasswordNotMatching:"La contraseña no coincide",MustIncludeNumber:"La contraseña debe incluir un número",MustContainCapital:"La contraseña debe incluir una letra mayúscula",MustIncludePunctation:"La contraseña debe incluir un signo de puntuación",MustIncludeLowercase:"La contraseña debe contener al menos una letra minúscula",OnlyNumbers:"Debe contener solo dígitos.",InvalidFieldSize:"La longitud debe ser exactamente de 11 dígitos.",InvalidDocumentNumber:"Solo se permiten caracteres numéricos.",twofaDescription:"<p> Hemos enviado el código de verificación a: <p> {destination}. </p> </p> <p> Por favor, ingrese el PIN a continuación. </p>",twofaResendMessage:"¿No recibiste el código de verificación?",twofaResendButton:"Reenviar",PassportLengthError:"El número de pasaporte debe tener 9 dígitos",SAIdLengthError:"El número de identificación de Sudáfrica debe tener 13 dígitos",SAIdInvalidError:"Número de identificación de Sudáfrica inválido",PasswordMustContain:"La contraseña debe contener:"},fr:{dateError:"La date sélectionnée doit être comprise entre {min} et {max}",dateError2:"La date sélectionnée n’est pas dans la plage autorisée",dateFormatError:"Le format de la date sélectionnée est incorrect.",numberLengthError:"Le nombre doit être compris entre {min} et {max}",lengthError:"La longueur doit être comprise entre {minLength} et {maxLength}",requiredError:"Ce champ est obligatoire.",invalidOriginalPasswordError:"Le mot de passe initial ne respecte pas tous les critères.",invalidPassword:"Le mot de passe ne respecte pas tous les critères",passwordStrength:"Robustesse du mot de passe",passwordStrengthWeak:"est insuffisante",passwordStrengthStrong:"est suffisante",SpecialCharactersNotAllowed:"Ne doit pas contenir de caractères spéciaux",InvalidEmailFormat:"Format d’adresse e-mail invalide.",EmailNotMatching:"Les adresses e-mail ne correspondent pas !",PasswordNotMatching:"Les mots de passe ne correspondent pas",MustIncludeNumber:"Le mot de passe doit contenir un chiffre",MustContainCapital:"Le mot de passe doit contenir une lettre majuscule",MustIncludePunctation:"Le mot de passe doit contenir un caractère de ponctuation",MustIncludeLowercase:"Le mot de passe doit contenir une lettre minuscule",OnlyNumbers:"Ce champ ne doit contenir que des chiffres.",InvalidFieldSize:"La longueur doit être exactement de 11 chiffres.",InvalidDocumentNumber:"Seuls les caractères numériques sont autorisés.",twofaDescription:"<p>Nous avons envoyé le code de vérification à <p>{destination}</p>.</p><p>Veuillez saisir le code PIN ci-dessous.</p>",twofaResendMessage:"Vous n’avez pas reçu le code de vérification ?",twofaResendButton:"Renvoyer",enterIEAddressManually:"Pour l’Irlande, saisissez l’adresse manuellement",postalLookUpNoAddressFound:"Aucune adresse trouvée pour ce code postal",searchingForAddresses:"Recherche d’adresses...",SAIdLengthError:"L’identifiant sud-africain doit comporter 13 chiffres",SAIdInvalidError:"Identifiant sud-africain invalide",PassportLengthError:"Le numéro de passeport doit comporter 8 ou 9 chiffres.",PasswordMustContain:"Le mot de passe doit contenir :"}},n={DOCUMENT_NUMBER:"DocumentNumber",FIRSTNAME_ON_DOCUMENT:"FirstnameOnDocument",LASTNAME_ON_DOCUMENT:"LastnameOnDocument",PASSPORT:"Passport",SOUTH_AFRICAN_ID:"SouthAfricanID",BIRTHDATE:"BirthDate",PASSPORT_NUMERIC_REGEX:/^\d{8,9}$/,SA_ID_BASIC_REGEX:/^\d{13}$/,SOUTH_AFRICAN_ID_LENGTH:13,NON_LETTERS_REGEX:/[^A-Za-z]/g,DATE_FORMAT:"yyyy-MM-dd",PASSWORD_COMPLEXITY_PASSED:"passed",PASSWORD_COMPLEXITY_FAILED:"failed"},a=(t,e,i)=>{let s=r[void 0!==e?e:"en"][t];if(void 0!==i)for(const[t,e]of Object.entries(i.values)){const i=new RegExp(`{${t}}`,"g");s=s.replace(i,e)}return s},l="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iNiIgY3k9IjYiIHI9IjUuNSIgc3Ryb2tlPSIjOTc5Nzk3Ii8+CjxyZWN0IHg9IjUiIHk9IjUiIHdpZHRoPSIyIiBoZWlnaHQ9IjUiIGZpbGw9IiM5Nzk3OTciLz4KPGNpcmNsZSBjeD0iNiIgY3k9IjMiIHI9IjEiIGZpbGw9IiM5Nzk3OTciLz4KPC9zdmc+Cg==",h=class{constructor(i){t(this,i),this.sendValidityState=e(this,"sendValidityState",7),this.sendInputValue=e(this,"sendInputValue",7),this.value=null,this.setClientStyling=()=>{let t=document.createElement("style");t.innerHTML=this.clientStyling,this.stylingContainer.prepend(t)},this.name=void 0,this.displayName=void 0,this.defaultValue="",this.autofilled=void 0,this.tooltip=void 0,this.options=void 0,this.validation=void 0,this.language=void 0,this.emitValue=void 0,this.clientStyling="",this.errorMessage=void 0,this.isValid=void 0,this.limitStylingAppends=!1,this.showTooltip=!1,this.selectedValues=[],this.showCheckboxes=!1}handleStylingChange(t,e){t!==e&&this.setClientStyling()}validityChanged(){this.validityStateHandler({valid:this.isValid,name:this.name}),1==this.emitValue&&this.valueHandler({name:this.name,value:this.value,type:"checkboxgroup"})}setValue(){this.value=this.options.reduce(((t,e)=>(t[e.name]=this.selectedValues.includes(e.name),t)),{}),this.emitValueHandler(!0)}validityStateHandler(t){this.sendValidityState.emit(t)}emitValueHandler(t){1==t&&this.isValid&&this.valueHandler({name:this.name,value:this.value,type:"checkboxgroup"})}valueHandler(t){this.sendInputValue.emit(t)}handleClickOutside(t){const e=t.composedPath();e.includes(this.tooltipIconReference)||e.includes(this.tooltipReference)||(this.showTooltip=!1)}componentDidRender(){!this.limitStylingAppends&&this.stylingContainer&&(this.clientStyling&&this.setClientStyling(),this.limitStylingAppends=!0)}componentDidLoad(){this.inputReference=this.element.shadowRoot.querySelector("input"),this.isValid=this.setValidity(),this.defaultValue&&(this.showCheckboxes=!0,this.selectedValues=this.options.map((t=>t.name)),this.value=this.defaultValue,this.valueHandler({name:this.name,value:this.value}))}setValidity(){return this.inputReference.validity.valid}setErrorMessage(){if(this.inputReference.validity.valueMissing)return a("requiredError",this.language)}renderTooltip(){return this.showTooltip?i("div",{class:"checkboxgroup__tooltip "+(this.showTooltip?"visible":""),ref:t=>this.tooltipReference=t,innerHTML:this.tooltip}):null}handleParentCheckbox(t){const e=t.target.checked;this.showCheckboxes=e,this.selectedValues=e?this.options.map((t=>t.name)):[]}renderLabel(){return i("label",{class:"checkbox__label",htmlFor:`${this.name}__input`,slot:"label"},i("div",{class:"checkbox__label-text",innerHTML:`${this.displayName} ${this.validation.mandatory?"*":""}`}))}render(){return i("div",{key:"9985f4050655bc2233090f63abb0e22f2fe0b556",class:`checkboxgroup__wrapper ${this.name}__input`,ref:t=>this.stylingContainer=t},i("div",{key:"9922e45ae7ee74b137ffc8552b3d714b7e3b1f59",class:"checkboxgroup__wrapper--flex"},i("vaadin-checkbox",{key:"f18bae7c3ee6df76edcde75924eb1ad51a227443",class:"checkbox__input",checked:this.selectedValues.length===this.options.length||"true"===this.defaultValue,indeterminate:this.selectedValues.length>0&&this.selectedValues.length<this.options.length,onChange:t=>this.handleParentCheckbox(t)},this.renderLabel()),this.tooltip&&i("img",{key:"3dc2ce07e4d5f8de7ed4707b5e140fb4752ca86b",class:"checkboxgroup__tooltip-icon",src:l,alt:"",ref:t=>this.tooltipIconReference=t,onClick:()=>this.showTooltip=!this.showTooltip}),this.renderTooltip()),i("small",{key:"d55f25f75aa20007ff58cf45b6632517f49b6c00",class:"checkboxgroup__error-message"},this.errorMessage),this.showCheckboxes&&i("vaadin-checkbox-group",{key:"210c3cc2868a07a403494e04336c4f3091eea0e4",theme:"vertical",value:this.selectedValues,"on-value-changed":t=>{this.selectedValues=t.detail.value}},this.options.map((t=>i("vaadin-checkbox",{class:"checkbox__input",name:t.name,value:t.name,label:t.displayName})))))}get element(){return s(this)}static get watchers(){return{clientStyling:["handleStylingChange"],isValid:["validityChanged"],selectedValues:["setValue"],emitValue:["emitValueHandler"]}}};h.style='*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}vaadin-checkbox-group{margin-top:5px;margin-left:40px}.checkboxgroup{font-family:"Roboto";font-style:normal;font-size:15px}.checkboxgroup__wrapper{position:relative}.checkboxgroup__wrapper--flex{display:flex;gap:5px;align-content:flex-start}.checkboxgroup__wrapper--relative{position:relative;display:inline}.checkboxgroup__input{vertical-align:baseline}.checkboxgroup__input[indeterminate]::part(checkbox)::after,.checkboxgroup__input[indeterminate]::part(checkbox),.checkboxgroup__input[checked]::part(checkbox){background-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.checkboxgroup__label{font-style:inherit;font-family:inherit;font-weight:400;font-size:16px;color:var(--emw--registration-typography, var(--emw--color-black, #000000));line-height:1.5;padding-left:10px;vertical-align:baseline}.checkboxgroup__label-text{font-size:16px}.checkboxgroup__label a{color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.checkboxgroup__error-message{position:absolute;top:calc(100% + 5px);left:0;color:var(--emw--color-error, var(--emw--color-red, #ed0909))}.checkboxgroup__tooltip-icon{width:16px;height:auto}.checkboxgroup__tooltip{position:absolute;top:0;right:0;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.checkboxgroup__tooltip.visible{opacity:1}.checkbox__input::part(checkbox){background-color:var(--emw--color-white, #FFFFFF);transform:scale(0.8, 0.8);border-radius:var(--emw--border-radius-small, 2px);box-shadow:0 0px 0px 2px var(--emw--color-gray, #7a7a7a)}.checkbox__input[indeterminate]::part(checkbox),.checkbox__input[checked]::part(checkbox){background-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));box-shadow:none}';const d=class{constructor(i){t(this,i),this.sendValidityState=e(this,"sendValidityState",7),this.sendInputValue=e(this,"sendInputValue",7),this.value="",this.setClientStyling=()=>{let t=document.createElement("style");t.innerHTML=this.clientStyling,this.stylingContainer.prepend(t)},this.name=void 0,this.displayName=void 0,this.defaultValue="",this.autofilled=void 0,this.tooltip=void 0,this.validation=void 0,this.language=void 0,this.emitValue=void 0,this.clientStyling="",this.errorMessage=void 0,this.isValid=void 0,this.limitStylingAppends=!1,this.showTooltip=!1}handleStylingChange(t,e){t!==e&&this.setClientStyling()}validityChanged(){this.validityStateHandler({valid:this.isValid,name:this.name}),1==this.emitValue&&this.valueHandler({name:this.name,value:this.value})}validityStateHandler(t){this.sendValidityState.emit(t)}emitValueHandler(t){1==t&&this.isValid&&this.valueHandler({name:this.name,value:this.value})}valueHandler(t){this.sendInputValue.emit(t)}handleClickOutside(t){const e=t.composedPath();e.includes(this.tooltipIconReference)||e.includes(this.tooltipReference)||(this.showTooltip=!1)}componentDidRender(){!this.limitStylingAppends&&this.stylingContainer&&(this.clientStyling&&this.setClientStyling(),this.limitStylingAppends=!0)}componentDidLoad(){this.inputReference=this.vaadinCheckbox.querySelector("input"),this.defaultValue&&(this.value=this.defaultValue,this.valueHandler({name:this.name,value:this.value}))}handleCheckbox(t){this.value=t.target.checked.toString(),this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.emitValueHandler(!0)}setValidity(){return this.inputReference.validity.valid}setErrorMessage(){if(this.inputReference.validity.valueMissing)return a("requiredError",this.language)}renderLabel(){var t;return i("label",{class:"checkbox__label",htmlFor:`${this.name}__input`,slot:"label"},i("div",{class:{"checkbox__label-text":!0,mandatory:null===(t=this.validation)||void 0===t?void 0:t.mandatory},innerHTML:this.displayName}))}renderTooltip(){return this.showTooltip?i("div",{class:"checkbox__tooltip "+(this.showTooltip?"visible":""),ref:t=>this.tooltipReference=t,innerHTML:this.tooltip}):null}render(){return i("div",{key:"80ed581cec5bb009ea5ea009f11c6453fe24ef7b",class:`checkbox__wrapper ${this.name}__input`,ref:t=>this.stylingContainer=t},i("vaadin-checkbox",{key:"42d793f607af77435f629218f9bdac7736522bc3",class:"checkbox__input",required:this.validation.mandatory,checked:"true"===this.defaultValue,onChange:t=>this.handleCheckbox(t),"error-message":!this.isValid&&this.errorMessage,ref:t=>this.vaadinCheckbox=t},this.renderLabel()),this.tooltip&&i("img",{key:"ce3870810ede8f3905fd8c07c0892ab0d909bab5",class:"checkboxgroup__tooltip-icon",src:l,alt:"",ref:t=>this.tooltipIconReference=t,onClick:()=>this.showTooltip=!this.showTooltip}),this.renderTooltip())}static get watchers(){return{clientStyling:["handleStylingChange"],isValid:["validityChanged"],emitValue:["emitValueHandler"]}}};function c(t){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c(t)}function u(t,e){if(e.length<t)throw new TypeError(t+" argument"+(t>1?"s":"")+" required, but only "+e.length+" present")}function p(t){u(1,arguments);var e=Object.prototype.toString.call(t);return t instanceof Date||"object"===c(t)&&"[object Date]"===e?new Date(t.getTime()):"number"==typeof t||"[object Number]"===e?new Date(t):("string"!=typeof t&&"[object String]"!==e||"undefined"==typeof console||(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments"),console.warn((new Error).stack)),new Date(NaN))}function m(t){if(u(1,arguments),!function(t){return u(1,arguments),t instanceof Date||"object"===c(t)&&"[object Date]"===Object.prototype.toString.call(t)}(t)&&"number"!=typeof t)return!1;var e=p(t);return!isNaN(Number(e))}function v(t){if(null===t||!0===t||!1===t)return NaN;var e=Number(t);return isNaN(e)?e:e<0?Math.ceil(e):Math.floor(e)}function f(t,e){return u(2,arguments),function(t,e){u(2,arguments);var i=p(t).getTime(),s=v(e);return new Date(i+s)}(t,-v(e))}function g(t){u(1,arguments);var e=p(t),i=e.getUTCDay(),s=(i<1?7:0)+i-1;return e.setUTCDate(e.getUTCDate()-s),e.setUTCHours(0,0,0,0),e}function b(t){u(1,arguments);var e=p(t),i=e.getUTCFullYear(),s=new Date(0);s.setUTCFullYear(i+1,0,4),s.setUTCHours(0,0,0,0);var o=g(s),r=new Date(0);r.setUTCFullYear(i,0,4),r.setUTCHours(0,0,0,0);var n=g(r);return e.getTime()>=o.getTime()?i+1:e.getTime()>=n.getTime()?i:i-1}d.style='*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}.checkbox{font-family:"Roboto";font-style:normal;font-size:15px}.checkbox__wrapper{display:flex;gap:10px;position:relative;align-items:baseline}.checkbox__wrapper--relative{position:relative}.checkbox__input[indeterminate]::part(checkbox)::after,.checkbox__input[indeterminate]::part(checkbox),.checkbox__input[checked]::part(checkbox){background-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.checkbox__label{font-style:inherit;font-family:inherit;font-weight:400;font-size:16px;color:var(--emw--registration-typography, var(--emw--color-black, #000000));line-height:1.5;padding:0px;vertical-align:baseline}.checkbox__label a{color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.checkbox__error-message{position:absolute;top:calc(100% + 5px);left:0;color:var(--emw--color-error, var(--emw--color-red, #ed0909))}.checkbox__tooltip-icon{width:16px;height:auto}.checkbox__tooltip{position:absolute;top:0;right:20px;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.checkbox__tooltip.visible{opacity:1}.checkbox__input::part(checkbox){background-color:var(--emw--color-white, #FFFFFF);transform:scale(0.8, 0.8);border-radius:var(--emw--border-radius-small, 2px);box-shadow:0 0px 0px 2px var(--emw--color-gray, #7a7a7a)}.checkbox__input::part(required-indicator)::after{display:none}.checkbox__input[indeterminate]::part(checkbox),.checkbox__input[checked]::part(checkbox){background-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));box-shadow:none}.checkbox__label-text.mandatory::after{content:"*";font-family:inherit;color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));margin-left:2px}';function y(t){u(1,arguments);var e=p(t),i=g(e).getTime()-function(t){u(1,arguments);var e=b(t),i=new Date(0);return i.setUTCFullYear(e,0,4),i.setUTCHours(0,0,0,0),g(i)}(e).getTime();return Math.round(i/6048e5)+1}var w={};function _(){return w}function x(t,e){var i,s,o,r,n,a,l,h;u(1,arguments);var d=_(),c=v(null!==(i=null!==(s=null!==(o=null!==(r=null==e?void 0:e.weekStartsOn)&&void 0!==r?r:null==e||null===(n=e.locale)||void 0===n||null===(a=n.options)||void 0===a?void 0:a.weekStartsOn)&&void 0!==o?o:d.weekStartsOn)&&void 0!==s?s:null===(l=d.locale)||void 0===l||null===(h=l.options)||void 0===h?void 0:h.weekStartsOn)&&void 0!==i?i:0);if(!(c>=0&&c<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var m=p(t),f=m.getUTCDay(),g=(f<c?7:0)+f-c;return m.setUTCDate(m.getUTCDate()-g),m.setUTCHours(0,0,0,0),m}function k(t,e){var i,s,o,r,n,a,l,h;u(1,arguments);var d=p(t),c=d.getUTCFullYear(),m=_(),f=v(null!==(i=null!==(s=null!==(o=null!==(r=null==e?void 0:e.firstWeekContainsDate)&&void 0!==r?r:null==e||null===(n=e.locale)||void 0===n||null===(a=n.options)||void 0===a?void 0:a.firstWeekContainsDate)&&void 0!==o?o:m.firstWeekContainsDate)&&void 0!==s?s:null===(l=m.locale)||void 0===l||null===(h=l.options)||void 0===h?void 0:h.firstWeekContainsDate)&&void 0!==i?i:1);if(!(f>=1&&f<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var g=new Date(0);g.setUTCFullYear(c+1,0,f),g.setUTCHours(0,0,0,0);var b=x(g,e),y=new Date(0);y.setUTCFullYear(c,0,f),y.setUTCHours(0,0,0,0);var w=x(y,e);return d.getTime()>=b.getTime()?c+1:d.getTime()>=w.getTime()?c:c-1}function C(t,e){u(1,arguments);var i=p(t),s=x(i,e).getTime()-function(t,e){var i,s,o,r,n,a,l,h;u(1,arguments);var d=_(),c=v(null!==(i=null!==(s=null!==(o=null!==(r=null==e?void 0:e.firstWeekContainsDate)&&void 0!==r?r:null==e||null===(n=e.locale)||void 0===n||null===(a=n.options)||void 0===a?void 0:a.firstWeekContainsDate)&&void 0!==o?o:d.firstWeekContainsDate)&&void 0!==s?s:null===(l=d.locale)||void 0===l||null===(h=l.options)||void 0===h?void 0:h.firstWeekContainsDate)&&void 0!==i?i:1),p=k(t,e),m=new Date(0);return m.setUTCFullYear(p,0,c),m.setUTCHours(0,0,0,0),x(m,e)}(i,e).getTime();return Math.round(s/6048e5)+1}function S(t,e){for(var i=t<0?"-":"",s=Math.abs(t).toString();s.length<e;)s="0"+s;return i+s}const E=function(t,e){var i=t.getUTCFullYear(),s=i>0?i:1-i;return S("yy"===e?s%100:s,e.length)},A=function(t,e){var i=t.getUTCMonth();return"M"===e?String(i+1):S(i+1,2)},z=function(t,e){return S(t.getUTCDate(),e.length)},I=function(t,e){return S(t.getUTCHours()%12||12,e.length)},T=function(t,e){return S(t.getUTCHours(),e.length)},D=function(t,e){return S(t.getUTCMinutes(),e.length)},M=function(t,e){return S(t.getUTCSeconds(),e.length)},F=function(t,e){var i=e.length,s=t.getUTCMilliseconds();return S(Math.floor(s*Math.pow(10,i-3)),e.length)};function O(t,e){var i=t>0?"-":"+",s=Math.abs(t),o=Math.floor(s/60),r=s%60;if(0===r)return i+String(o);var n=e||"";return i+String(o)+n+S(r,2)}function N(t,e){return t%60==0?(t>0?"-":"+")+S(Math.abs(t)/60,2):B(t,e)}function B(t,e){var i=e||"",s=t>0?"-":"+",o=Math.abs(t);return s+S(Math.floor(o/60),2)+i+S(o%60,2)}const L={G:function(t,e,i){var s=t.getUTCFullYear()>0?1:0;switch(e){case"G":case"GG":case"GGG":return i.era(s,{width:"abbreviated"});case"GGGGG":return i.era(s,{width:"narrow"});default:return i.era(s,{width:"wide"})}},y:function(t,e,i){if("yo"===e){var s=t.getUTCFullYear();return i.ordinalNumber(s>0?s:1-s,{unit:"year"})}return E(t,e)},Y:function(t,e,i,s){var o=k(t,s),r=o>0?o:1-o;return"YY"===e?S(r%100,2):"Yo"===e?i.ordinalNumber(r,{unit:"year"}):S(r,e.length)},R:function(t,e){return S(b(t),e.length)},u:function(t,e){return S(t.getUTCFullYear(),e.length)},Q:function(t,e,i){var s=Math.ceil((t.getUTCMonth()+1)/3);switch(e){case"Q":return String(s);case"QQ":return S(s,2);case"Qo":return i.ordinalNumber(s,{unit:"quarter"});case"QQQ":return i.quarter(s,{width:"abbreviated",context:"formatting"});case"QQQQQ":return i.quarter(s,{width:"narrow",context:"formatting"});default:return i.quarter(s,{width:"wide",context:"formatting"})}},q:function(t,e,i){var s=Math.ceil((t.getUTCMonth()+1)/3);switch(e){case"q":return String(s);case"qq":return S(s,2);case"qo":return i.ordinalNumber(s,{unit:"quarter"});case"qqq":return i.quarter(s,{width:"abbreviated",context:"standalone"});case"qqqqq":return i.quarter(s,{width:"narrow",context:"standalone"});default:return i.quarter(s,{width:"wide",context:"standalone"})}},M:function(t,e,i){var s=t.getUTCMonth();switch(e){case"M":case"MM":return A(t,e);case"Mo":return i.ordinalNumber(s+1,{unit:"month"});case"MMM":return i.month(s,{width:"abbreviated",context:"formatting"});case"MMMMM":return i.month(s,{width:"narrow",context:"formatting"});default:return i.month(s,{width:"wide",context:"formatting"})}},L:function(t,e,i){var s=t.getUTCMonth();switch(e){case"L":return String(s+1);case"LL":return S(s+1,2);case"Lo":return i.ordinalNumber(s+1,{unit:"month"});case"LLL":return i.month(s,{width:"abbreviated",context:"standalone"});case"LLLLL":return i.month(s,{width:"narrow",context:"standalone"});default:return i.month(s,{width:"wide",context:"standalone"})}},w:function(t,e,i,s){var o=C(t,s);return"wo"===e?i.ordinalNumber(o,{unit:"week"}):S(o,e.length)},I:function(t,e,i){var s=y(t);return"Io"===e?i.ordinalNumber(s,{unit:"week"}):S(s,e.length)},d:function(t,e,i){return"do"===e?i.ordinalNumber(t.getUTCDate(),{unit:"date"}):z(t,e)},D:function(t,e,i){var s=function(t){u(1,arguments);var e=p(t),i=e.getTime();e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0);var s=e.getTime();return Math.floor((i-s)/864e5)+1}(t);return"Do"===e?i.ordinalNumber(s,{unit:"dayOfYear"}):S(s,e.length)},E:function(t,e,i){var s=t.getUTCDay();switch(e){case"E":case"EE":case"EEE":return i.day(s,{width:"abbreviated",context:"formatting"});case"EEEEE":return i.day(s,{width:"narrow",context:"formatting"});case"EEEEEE":return i.day(s,{width:"short",context:"formatting"});default:return i.day(s,{width:"wide",context:"formatting"})}},e:function(t,e,i,s){var o=t.getUTCDay(),r=(o-s.weekStartsOn+8)%7||7;switch(e){case"e":return String(r);case"ee":return S(r,2);case"eo":return i.ordinalNumber(r,{unit:"day"});case"eee":return i.day(o,{width:"abbreviated",context:"formatting"});case"eeeee":return i.day(o,{width:"narrow",context:"formatting"});case"eeeeee":return i.day(o,{width:"short",context:"formatting"});default:return i.day(o,{width:"wide",context:"formatting"})}},c:function(t,e,i,s){var o=t.getUTCDay(),r=(o-s.weekStartsOn+8)%7||7;switch(e){case"c":return String(r);case"cc":return S(r,e.length);case"co":return i.ordinalNumber(r,{unit:"day"});case"ccc":return i.day(o,{width:"abbreviated",context:"standalone"});case"ccccc":return i.day(o,{width:"narrow",context:"standalone"});case"cccccc":return i.day(o,{width:"short",context:"standalone"});default:return i.day(o,{width:"wide",context:"standalone"})}},i:function(t,e,i){var s=t.getUTCDay(),o=0===s?7:s;switch(e){case"i":return String(o);case"ii":return S(o,e.length);case"io":return i.ordinalNumber(o,{unit:"day"});case"iii":return i.day(s,{width:"abbreviated",context:"formatting"});case"iiiii":return i.day(s,{width:"narrow",context:"formatting"});case"iiiiii":return i.day(s,{width:"short",context:"formatting"});default:return i.day(s,{width:"wide",context:"formatting"})}},a:function(t,e,i){var s=t.getUTCHours()/12>=1?"pm":"am";switch(e){case"a":case"aa":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"aaa":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return i.dayPeriod(s,{width:"narrow",context:"formatting"});default:return i.dayPeriod(s,{width:"wide",context:"formatting"})}},b:function(t,e,i){var s,o=t.getUTCHours();switch(s=12===o?"noon":0===o?"midnight":o/12>=1?"pm":"am",e){case"b":case"bb":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"bbb":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return i.dayPeriod(s,{width:"narrow",context:"formatting"});default:return i.dayPeriod(s,{width:"wide",context:"formatting"})}},B:function(t,e,i){var s,o=t.getUTCHours();switch(s=o>=17?"evening":o>=12?"afternoon":o>=4?"morning":"night",e){case"B":case"BB":case"BBB":return i.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"BBBBB":return i.dayPeriod(s,{width:"narrow",context:"formatting"});default:return i.dayPeriod(s,{width:"wide",context:"formatting"})}},h:function(t,e,i){if("ho"===e){var s=t.getUTCHours()%12;return 0===s&&(s=12),i.ordinalNumber(s,{unit:"hour"})}return I(t,e)},H:function(t,e,i){return"Ho"===e?i.ordinalNumber(t.getUTCHours(),{unit:"hour"}):T(t,e)},K:function(t,e,i){var s=t.getUTCHours()%12;return"Ko"===e?i.ordinalNumber(s,{unit:"hour"}):S(s,e.length)},k:function(t,e,i){var s=t.getUTCHours();return 0===s&&(s=24),"ko"===e?i.ordinalNumber(s,{unit:"hour"}):S(s,e.length)},m:function(t,e,i){return"mo"===e?i.ordinalNumber(t.getUTCMinutes(),{unit:"minute"}):D(t,e)},s:function(t,e,i){return"so"===e?i.ordinalNumber(t.getUTCSeconds(),{unit:"second"}):M(t,e)},S:function(t,e){return F(t,e)},X:function(t,e,i,s){var o=(s._originalDate||t).getTimezoneOffset();if(0===o)return"Z";switch(e){case"X":return N(o);case"XXXX":case"XX":return B(o);default:return B(o,":")}},x:function(t,e,i,s){var o=(s._originalDate||t).getTimezoneOffset();switch(e){case"x":return N(o);case"xxxx":case"xx":return B(o);default:return B(o,":")}},O:function(t,e,i,s){var o=(s._originalDate||t).getTimezoneOffset();switch(e){case"O":case"OO":case"OOO":return"GMT"+O(o,":");default:return"GMT"+B(o,":")}},z:function(t,e,i,s){var o=(s._originalDate||t).getTimezoneOffset();switch(e){case"z":case"zz":case"zzz":return"GMT"+O(o,":");default:return"GMT"+B(o,":")}},t:function(t,e,i,s){return S(Math.floor((s._originalDate||t).getTime()/1e3),e.length)},T:function(t,e,i,s){return S((s._originalDate||t).getTime(),e.length)}};var j=function(t,e){switch(t){case"P":return e.date({width:"short"});case"PP":return e.date({width:"medium"});case"PPP":return e.date({width:"long"});default:return e.date({width:"full"})}},$=function(t,e){switch(t){case"p":return e.time({width:"short"});case"pp":return e.time({width:"medium"});case"ppp":return e.time({width:"long"});default:return e.time({width:"full"})}},V={p:$,P:function(t,e){var i,s=t.match(/(P+)(p+)?/)||[],o=s[1],r=s[2];if(!r)return j(t,e);switch(o){case"P":i=e.dateTime({width:"short"});break;case"PP":i=e.dateTime({width:"medium"});break;case"PPP":i=e.dateTime({width:"long"});break;default:i=e.dateTime({width:"full"})}return i.replace("{{date}}",j(o,e)).replace("{{time}}",$(r,e))}};const R=V;function q(t){var e=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return e.setUTCFullYear(t.getFullYear()),t.getTime()-e.getTime()}var H=["D","DD"],W=["YY","YYYY"];function U(t){return-1!==H.indexOf(t)}function Y(t){return-1!==W.indexOf(t)}function G(t,e,i){if("YYYY"===t)throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(e,"`) for formatting years to the input `").concat(i,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("YY"===t)throw new RangeError("Use `yy` instead of `YY` (in `".concat(e,"`) for formatting years to the input `").concat(i,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("D"===t)throw new RangeError("Use `d` instead of `D` (in `".concat(e,"`) for formatting days of the month to the input `").concat(i,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("DD"===t)throw new RangeError("Use `dd` instead of `DD` (in `".concat(e,"`) for formatting days of the month to the input `").concat(i,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"))}var K={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function Q(t){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=e.width?String(e.width):t.defaultWidth;return t.formats[i]||t.formats[t.defaultWidth]}}var X,J={date:Q({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:Q({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:Q({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})},Z={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function tt(t){return function(e,i){var s;if("formatting"===(null!=i&&i.context?String(i.context):"standalone")&&t.formattingValues){var o=t.defaultFormattingWidth||t.defaultWidth,r=null!=i&&i.width?String(i.width):o;s=t.formattingValues[r]||t.formattingValues[o]}else{var n=t.defaultWidth,a=null!=i&&i.width?String(i.width):t.defaultWidth;s=t.values[a]||t.values[n]}return s[t.argumentCallback?t.argumentCallback(e):e]}}function et(t){return function(e){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},s=i.width,o=e.match(s&&t.matchPatterns[s]||t.matchPatterns[t.defaultMatchWidth]);if(!o)return null;var r,n=o[0],a=s&&t.parsePatterns[s]||t.parsePatterns[t.defaultParseWidth],l=Array.isArray(a)?function(t){for(var e=0;e<t.length;e++)if(t[e].test(n))return e}(a):function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].test(n))return e}(a);return r=t.valueCallback?t.valueCallback(l):l,{value:r=i.valueCallback?i.valueCallback(r):r,rest:e.slice(n.length)}}}const it={code:"en-US",formatDistance:function(t,e,i){var s,o=K[t];return s="string"==typeof o?o:1===e?o.one:o.other.replace("{{count}}",e.toString()),null!=i&&i.addSuffix?i.comparison&&i.comparison>0?"in "+s:s+" ago":s},formatLong:J,formatRelative:function(t){return Z[t]},localize:{ordinalNumber:function(t){var e=Number(t),i=e%100;if(i>20||i<10)switch(i%10){case 1:return e+"st";case 2:return e+"nd";case 3:return e+"rd"}return e+"th"},era:tt({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:tt({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:tt({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:tt({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:tt({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})},match:{ordinalNumber:(X={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:function(t){return parseInt(t,10)}},function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=t.match(X.matchPattern);if(!i)return null;var s=i[0],o=t.match(X.parsePattern);if(!o)return null;var r=X.valueCallback?X.valueCallback(o[0]):o[0];return{value:r=e.valueCallback?e.valueCallback(r):r,rest:t.slice(s.length)}}),era:et({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:et({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:et({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:et({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:et({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},options:{weekStartsOn:0,firstWeekContainsDate:1}};var st=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,ot=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,rt=/^'([^]*?)'?$/,nt=/''/g,at=/[a-zA-Z]/;function lt(t,e,i){var s,o,r,n,a,l,h,d,c,g,b,y,w,x,k,C,S,E;u(2,arguments);var A=String(e),z=_(),I=null!==(s=null!==(o=null==i?void 0:i.locale)&&void 0!==o?o:z.locale)&&void 0!==s?s:it,T=v(null!==(r=null!==(n=null!==(a=null!==(l=null==i?void 0:i.firstWeekContainsDate)&&void 0!==l?l:null==i||null===(h=i.locale)||void 0===h||null===(d=h.options)||void 0===d?void 0:d.firstWeekContainsDate)&&void 0!==a?a:z.firstWeekContainsDate)&&void 0!==n?n:null===(c=z.locale)||void 0===c||null===(g=c.options)||void 0===g?void 0:g.firstWeekContainsDate)&&void 0!==r?r:1);if(!(T>=1&&T<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var D=v(null!==(b=null!==(y=null!==(w=null!==(x=null==i?void 0:i.weekStartsOn)&&void 0!==x?x:null==i||null===(k=i.locale)||void 0===k||null===(C=k.options)||void 0===C?void 0:C.weekStartsOn)&&void 0!==w?w:z.weekStartsOn)&&void 0!==y?y:null===(S=z.locale)||void 0===S||null===(E=S.options)||void 0===E?void 0:E.weekStartsOn)&&void 0!==b?b:0);if(!(D>=0&&D<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!I.localize)throw new RangeError("locale must contain localize property");if(!I.formatLong)throw new RangeError("locale must contain formatLong property");var M=p(t);if(!m(M))throw new RangeError("Invalid time value");var P=f(M,q(M)),F={firstWeekContainsDate:T,weekStartsOn:D,locale:I,_originalDate:M};return A.match(ot).map((function(t){var e=t[0];return"p"===e||"P"===e?(0,R[e])(t,I.formatLong):t})).join("").match(st).map((function(s){if("''"===s)return"'";var o,r,n=s[0];if("'"===n)return(r=(o=s).match(rt))?r[1].replace(nt,"'"):o;var a=L[n];if(a)return null!=i&&i.useAdditionalWeekYearTokens||!Y(s)||G(s,e,String(t)),null!=i&&i.useAdditionalDayOfYearTokens||!U(s)||G(s,e,String(t)),a(P,s,I.localize,F);if(n.match(at))throw new RangeError("Format string contains an unescaped latin alphabet character `"+n+"`");return s})).join("")}function ht(t,e){(null==e||e>t.length)&&(e=t.length);for(var i=0,s=Array(e);i<e;i++)s[i]=t[i];return s}function dt(t,e){var i="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=function(t,e){if(t){if("string"==typeof t)return ht(t,e);var i={}.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?ht(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){i&&(t=i);var s=0,o=function(){};return{s:o,n:function(){return s>=t.length?{done:!0}:{done:!1,value:t[s++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,n=!0,a=!1;return{s:function(){i=i.call(t)},n:function(){var t=i.next();return n=t.done,t},e:function(t){a=!0,r=t},f:function(){try{n||null==i.return||i.return()}finally{if(a)throw r}}}}function ct(t,e){if(null==t)throw new TypeError("assign requires that input parameter not be null or undefined");for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t}function ut(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function pt(t,e){return pt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},pt(t,e)}function mt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&pt(t,e)}function vt(t){return vt=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},vt(t)}function ft(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ft=function(){return!!t})()}function gt(t){var e=ft();return function(){var i,s=vt(t);if(e){var o=vt(this).constructor;i=Reflect.construct(s,arguments,o)}else i=s.apply(this,arguments);return function(t,e){if(e&&("object"==c(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return ut(t)}(this,i)}}function bt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function yt(t){var e=function(t){if("object"!=c(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,"string");if("object"!=c(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==c(e)?e:e+""}function wt(t,e){for(var i=0;i<e.length;i++){var s=e[i];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(t,yt(s.key),s)}}function _t(t,e,i){return e&&wt(t.prototype,e),i&&wt(t,i),Object.defineProperty(t,"prototype",{writable:!1}),t}function xt(t,e,i){return(e=yt(e))in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t}var kt=function(){function t(){bt(this,t),xt(this,"priority",void 0),xt(this,"subPriority",0)}return _t(t,[{key:"validate",value:function(){return!0}}]),t}(),Ct=function(){mt(e,kt);var t=gt(e);function e(i,s,o,r,n){var a;return bt(this,e),(a=t.call(this)).value=i,a.validateValue=s,a.setValue=o,a.priority=r,n&&(a.subPriority=n),a}return _t(e,[{key:"validate",value:function(t,e){return this.validateValue(t,this.value,e)}},{key:"set",value:function(t,e,i){return this.setValue(t,e,this.value,i)}}]),e}(),St=function(){mt(e,kt);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",10),xt(ut(i),"subPriority",-1),i}return _t(e,[{key:"set",value:function(t,e){if(e.timestampIsSet)return t;var i=new Date(0);return i.setFullYear(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()),i.setHours(t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds(),t.getUTCMilliseconds()),i}}]),e}(),Et=function(){function t(){bt(this,t),xt(this,"incompatibleTokens",void 0),xt(this,"priority",void 0),xt(this,"subPriority",void 0)}return _t(t,[{key:"run",value:function(t,e,i,s){var o=this.parse(t,e,i,s);return o?{setter:new Ct(o.value,this.validate,this.set,this.priority,this.subPriority),rest:o.rest}:null}},{key:"validate",value:function(){return!0}}]),t}(),At=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",140),xt(ut(i),"incompatibleTokens",["R","u","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"G":case"GG":case"GGG":return i.era(t,{width:"abbreviated"})||i.era(t,{width:"narrow"});case"GGGGG":return i.era(t,{width:"narrow"});default:return i.era(t,{width:"wide"})||i.era(t,{width:"abbreviated"})||i.era(t,{width:"narrow"})}}},{key:"set",value:function(t,e,i){return e.era=i,t.setUTCFullYear(i,0,1),t.setUTCHours(0,0,0,0),t}}]),e}(),zt=/^(1[0-2]|0?\d)/,It=/^(3[0-1]|[0-2]?\d)/,Tt=/^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/,Dt=/^(5[0-3]|[0-4]?\d)/,Mt=/^(2[0-3]|[0-1]?\d)/,Pt=/^(2[0-4]|[0-1]?\d)/,Ft=/^(1[0-1]|0?\d)/,Ot=/^(1[0-2]|0?\d)/,Nt=/^[0-5]?\d/,Bt=/^[0-5]?\d/,Lt=/^\d/,jt=/^\d{1,2}/,$t=/^\d{1,3}/,Vt=/^\d{1,4}/,Rt=/^-?\d+/,qt=/^-?\d/,Ht=/^-?\d{1,2}/,Wt=/^-?\d{1,3}/,Ut=/^-?\d{1,4}/,Yt=/^([+-])(\d{2})(\d{2})?|Z/,Gt=/^([+-])(\d{2})(\d{2})|Z/,Kt=/^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,Qt=/^([+-])(\d{2}):(\d{2})|Z/,Xt=/^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/;function Jt(t,e){return t?{value:e(t.value),rest:t.rest}:t}function Zt(t,e){var i=e.match(t);return i?{value:parseInt(i[0],10),rest:e.slice(i[0].length)}:null}function te(t,e){var i=e.match(t);return i?"Z"===i[0]?{value:0,rest:e.slice(1)}:{value:("+"===i[1]?1:-1)*(36e5*(i[2]?parseInt(i[2],10):0)+6e4*(i[3]?parseInt(i[3],10):0)+1e3*(i[5]?parseInt(i[5],10):0)),rest:e.slice(i[0].length)}:null}function ee(t){return Zt(Rt,t)}function ie(t,e){switch(t){case 1:return Zt(Lt,e);case 2:return Zt(jt,e);case 3:return Zt($t,e);case 4:return Zt(Vt,e);default:return Zt(new RegExp("^\\d{1,"+t+"}"),e)}}function se(t,e){switch(t){case 1:return Zt(qt,e);case 2:return Zt(Ht,e);case 3:return Zt(Wt,e);case 4:return Zt(Ut,e);default:return Zt(new RegExp("^-?\\d{1,"+t+"}"),e)}}function oe(t){switch(t){case"morning":return 4;case"evening":return 17;case"pm":case"noon":case"afternoon":return 12;default:return 0}}function re(t,e){var i,s=e>0,o=s?e:1-e;if(o<=50)i=t||100;else{var r=o+50;i=t+100*Math.floor(r/100)-(t>=r%100?100:0)}return s?i:1-i}function ne(t){return t%400==0||t%4==0&&t%100!=0}var ae=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",130),xt(ut(i),"incompatibleTokens",["Y","R","u","w","I","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return{year:t,isTwoDigitYear:"yy"===e}};switch(e){case"y":return Jt(ie(4,t),s);case"yo":return Jt(i.ordinalNumber(t,{unit:"year"}),s);default:return Jt(ie(e.length,t),s)}}},{key:"validate",value:function(t,e){return e.isTwoDigitYear||e.year>0}},{key:"set",value:function(t,e,i){var s=t.getUTCFullYear();if(i.isTwoDigitYear){var o=re(i.year,s);return t.setUTCFullYear(o,0,1),t.setUTCHours(0,0,0,0),t}return t.setUTCFullYear("era"in e&&1!==e.era?1-i.year:i.year,0,1),t.setUTCHours(0,0,0,0),t}}]),e}(),le=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",130),xt(ut(i),"incompatibleTokens",["y","R","u","Q","q","M","L","I","d","D","i","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return{year:t,isTwoDigitYear:"YY"===e}};switch(e){case"Y":return Jt(ie(4,t),s);case"Yo":return Jt(i.ordinalNumber(t,{unit:"year"}),s);default:return Jt(ie(e.length,t),s)}}},{key:"validate",value:function(t,e){return e.isTwoDigitYear||e.year>0}},{key:"set",value:function(t,e,i,s){var o=k(t,s);if(i.isTwoDigitYear){var r=re(i.year,o);return t.setUTCFullYear(r,0,s.firstWeekContainsDate),t.setUTCHours(0,0,0,0),x(t,s)}return t.setUTCFullYear("era"in e&&1!==e.era?1-i.year:i.year,0,s.firstWeekContainsDate),t.setUTCHours(0,0,0,0),x(t,s)}}]),e}(),he=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",130),xt(ut(i),"incompatibleTokens",["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e){return se("R"===e?4:e.length,t)}},{key:"set",value:function(t,e,i){var s=new Date(0);return s.setUTCFullYear(i,0,4),s.setUTCHours(0,0,0,0),g(s)}}]),e}(),de=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",130),xt(ut(i),"incompatibleTokens",["G","y","Y","R","w","I","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e){return se("u"===e?4:e.length,t)}},{key:"set",value:function(t,e,i){return t.setUTCFullYear(i,0,1),t.setUTCHours(0,0,0,0),t}}]),e}(),ce=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",120),xt(ut(i),"incompatibleTokens",["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"Q":case"QQ":return ie(e.length,t);case"Qo":return i.ordinalNumber(t,{unit:"quarter"});case"QQQ":return i.quarter(t,{width:"abbreviated",context:"formatting"})||i.quarter(t,{width:"narrow",context:"formatting"});case"QQQQQ":return i.quarter(t,{width:"narrow",context:"formatting"});default:return i.quarter(t,{width:"wide",context:"formatting"})||i.quarter(t,{width:"abbreviated",context:"formatting"})||i.quarter(t,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(t,e){return e>=1&&e<=4}},{key:"set",value:function(t,e,i){return t.setUTCMonth(3*(i-1),1),t.setUTCHours(0,0,0,0),t}}]),e}(),ue=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",120),xt(ut(i),"incompatibleTokens",["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"q":case"qq":return ie(e.length,t);case"qo":return i.ordinalNumber(t,{unit:"quarter"});case"qqq":return i.quarter(t,{width:"abbreviated",context:"standalone"})||i.quarter(t,{width:"narrow",context:"standalone"});case"qqqqq":return i.quarter(t,{width:"narrow",context:"standalone"});default:return i.quarter(t,{width:"wide",context:"standalone"})||i.quarter(t,{width:"abbreviated",context:"standalone"})||i.quarter(t,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(t,e){return e>=1&&e<=4}},{key:"set",value:function(t,e,i){return t.setUTCMonth(3*(i-1),1),t.setUTCHours(0,0,0,0),t}}]),e}(),pe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"incompatibleTokens",["Y","R","q","Q","L","w","I","D","i","e","c","t","T"]),xt(ut(i),"priority",110),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return t-1};switch(e){case"M":return Jt(Zt(zt,t),s);case"MM":return Jt(ie(2,t),s);case"Mo":return Jt(i.ordinalNumber(t,{unit:"month"}),s);case"MMM":return i.month(t,{width:"abbreviated",context:"formatting"})||i.month(t,{width:"narrow",context:"formatting"});case"MMMMM":return i.month(t,{width:"narrow",context:"formatting"});default:return i.month(t,{width:"wide",context:"formatting"})||i.month(t,{width:"abbreviated",context:"formatting"})||i.month(t,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=11}},{key:"set",value:function(t,e,i){return t.setUTCMonth(i,1),t.setUTCHours(0,0,0,0),t}}]),e}(),me=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",110),xt(ut(i),"incompatibleTokens",["Y","R","q","Q","M","w","I","D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return t-1};switch(e){case"L":return Jt(Zt(zt,t),s);case"LL":return Jt(ie(2,t),s);case"Lo":return Jt(i.ordinalNumber(t,{unit:"month"}),s);case"LLL":return i.month(t,{width:"abbreviated",context:"standalone"})||i.month(t,{width:"narrow",context:"standalone"});case"LLLLL":return i.month(t,{width:"narrow",context:"standalone"});default:return i.month(t,{width:"wide",context:"standalone"})||i.month(t,{width:"abbreviated",context:"standalone"})||i.month(t,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=11}},{key:"set",value:function(t,e,i){return t.setUTCMonth(i,1),t.setUTCHours(0,0,0,0),t}}]),e}(),ve=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",100),xt(ut(i),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","i","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"w":return Zt(Dt,t);case"wo":return i.ordinalNumber(t,{unit:"week"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=1&&e<=53}},{key:"set",value:function(t,e,i,s){return x(function(t,e,i){u(2,arguments);var s=p(t),o=v(e),r=C(s,i)-o;return s.setUTCDate(s.getUTCDate()-7*r),s}(t,i,s),s)}}]),e}(),fe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",100),xt(ut(i),"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"I":return Zt(Dt,t);case"Io":return i.ordinalNumber(t,{unit:"week"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=1&&e<=53}},{key:"set",value:function(t,e,i){return g(function(t,e){u(2,arguments);var i=p(t),s=v(e),o=y(i)-s;return i.setUTCDate(i.getUTCDate()-7*o),i}(t,i))}}]),e}(),ge=[31,28,31,30,31,30,31,31,30,31,30,31],be=[31,29,31,30,31,30,31,31,30,31,30,31],ye=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"subPriority",1),xt(ut(i),"incompatibleTokens",["Y","R","q","Q","w","I","D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"d":return Zt(It,t);case"do":return i.ordinalNumber(t,{unit:"date"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){var i=ne(t.getUTCFullYear()),s=t.getUTCMonth();return i?e>=1&&e<=be[s]:e>=1&&e<=ge[s]}},{key:"set",value:function(t,e,i){return t.setUTCDate(i),t.setUTCHours(0,0,0,0),t}}]),e}(),we=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"subpriority",1),xt(ut(i),"incompatibleTokens",["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"D":case"DD":return Zt(Tt,t);case"Do":return i.ordinalNumber(t,{unit:"date"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return ne(t.getUTCFullYear())?e>=1&&e<=366:e>=1&&e<=365}},{key:"set",value:function(t,e,i){return t.setUTCMonth(0,i),t.setUTCHours(0,0,0,0),t}}]),e}();function _e(t,e,i){var s,o,r,n,a,l,h,d;u(2,arguments);var c=_(),m=v(null!==(s=null!==(o=null!==(r=null!==(n=null==i?void 0:i.weekStartsOn)&&void 0!==n?n:null==i||null===(a=i.locale)||void 0===a||null===(l=a.options)||void 0===l?void 0:l.weekStartsOn)&&void 0!==r?r:c.weekStartsOn)&&void 0!==o?o:null===(h=c.locale)||void 0===h||null===(d=h.options)||void 0===d?void 0:d.weekStartsOn)&&void 0!==s?s:0);if(!(m>=0&&m<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var f=p(t),g=v(e),b=((g%7+7)%7<m?7:0)+g-f.getUTCDay();return f.setUTCDate(f.getUTCDate()+b),f}var xe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"incompatibleTokens",["D","i","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"E":case"EE":case"EEE":return i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"});case"EEEEE":return i.day(t,{width:"narrow",context:"formatting"});case"EEEEEE":return i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"});default:return i.day(t,{width:"wide",context:"formatting"})||i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=6}},{key:"set",value:function(t,e,i,s){return(t=_e(t,i,s)).setUTCHours(0,0,0,0),t}}]),e}(),ke=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i,s){var o=function(t){var e=7*Math.floor((t-1)/7);return(t+s.weekStartsOn+6)%7+e};switch(e){case"e":case"ee":return Jt(ie(e.length,t),o);case"eo":return Jt(i.ordinalNumber(t,{unit:"day"}),o);case"eee":return i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"});case"eeeee":return i.day(t,{width:"narrow",context:"formatting"});case"eeeeee":return i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"});default:return i.day(t,{width:"wide",context:"formatting"})||i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=6}},{key:"set",value:function(t,e,i,s){return(t=_e(t,i,s)).setUTCHours(0,0,0,0),t}}]),e}(),Ce=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i,s){var o=function(t){var e=7*Math.floor((t-1)/7);return(t+s.weekStartsOn+6)%7+e};switch(e){case"c":case"cc":return Jt(ie(e.length,t),o);case"co":return Jt(i.ordinalNumber(t,{unit:"day"}),o);case"ccc":return i.day(t,{width:"abbreviated",context:"standalone"})||i.day(t,{width:"short",context:"standalone"})||i.day(t,{width:"narrow",context:"standalone"});case"ccccc":return i.day(t,{width:"narrow",context:"standalone"});case"cccccc":return i.day(t,{width:"short",context:"standalone"})||i.day(t,{width:"narrow",context:"standalone"});default:return i.day(t,{width:"wide",context:"standalone"})||i.day(t,{width:"abbreviated",context:"standalone"})||i.day(t,{width:"short",context:"standalone"})||i.day(t,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(t,e){return e>=0&&e<=6}},{key:"set",value:function(t,e,i,s){return(t=_e(t,i,s)).setUTCHours(0,0,0,0),t}}]),e}(),Se=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",90),xt(ut(i),"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){var s=function(t){return 0===t?7:t};switch(e){case"i":case"ii":return ie(e.length,t);case"io":return i.ordinalNumber(t,{unit:"day"});case"iii":return Jt(i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"}),s);case"iiiii":return Jt(i.day(t,{width:"narrow",context:"formatting"}),s);case"iiiiii":return Jt(i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"}),s);default:return Jt(i.day(t,{width:"wide",context:"formatting"})||i.day(t,{width:"abbreviated",context:"formatting"})||i.day(t,{width:"short",context:"formatting"})||i.day(t,{width:"narrow",context:"formatting"}),s)}}},{key:"validate",value:function(t,e){return e>=1&&e<=7}},{key:"set",value:function(t,e,i){return t=function(t,e){u(2,arguments);var i=v(e);i%7==0&&(i-=7);var s=p(t),o=((i%7+7)%7<1?7:0)+i-s.getUTCDay();return s.setUTCDate(s.getUTCDate()+o),s}(t,i),t.setUTCHours(0,0,0,0),t}}]),e}(),Ee=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",80),xt(ut(i),"incompatibleTokens",["b","B","H","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"a":case"aa":case"aaa":return i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"});case"aaaaa":return i.dayPeriod(t,{width:"narrow",context:"formatting"});default:return i.dayPeriod(t,{width:"wide",context:"formatting"})||i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(t,e,i){return t.setUTCHours(oe(i),0,0,0),t}}]),e}(),Ae=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",80),xt(ut(i),"incompatibleTokens",["a","B","H","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"b":case"bb":case"bbb":return i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"});case"bbbbb":return i.dayPeriod(t,{width:"narrow",context:"formatting"});default:return i.dayPeriod(t,{width:"wide",context:"formatting"})||i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(t,e,i){return t.setUTCHours(oe(i),0,0,0),t}}]),e}(),ze=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",80),xt(ut(i),"incompatibleTokens",["a","b","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"B":case"BB":case"BBB":return i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"});case"BBBBB":return i.dayPeriod(t,{width:"narrow",context:"formatting"});default:return i.dayPeriod(t,{width:"wide",context:"formatting"})||i.dayPeriod(t,{width:"abbreviated",context:"formatting"})||i.dayPeriod(t,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(t,e,i){return t.setUTCHours(oe(i),0,0,0),t}}]),e}(),Ie=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",70),xt(ut(i),"incompatibleTokens",["H","K","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"h":return Zt(Ot,t);case"ho":return i.ordinalNumber(t,{unit:"hour"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=1&&e<=12}},{key:"set",value:function(t,e,i){var s=t.getUTCHours()>=12;return t.setUTCHours(s&&i<12?i+12:s||12!==i?i:0,0,0,0),t}}]),e}(),Te=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",70),xt(ut(i),"incompatibleTokens",["a","b","h","K","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"H":return Zt(Mt,t);case"Ho":return i.ordinalNumber(t,{unit:"hour"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=0&&e<=23}},{key:"set",value:function(t,e,i){return t.setUTCHours(i,0,0,0),t}}]),e}(),De=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",70),xt(ut(i),"incompatibleTokens",["h","H","k","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"K":return Zt(Ft,t);case"Ko":return i.ordinalNumber(t,{unit:"hour"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=0&&e<=11}},{key:"set",value:function(t,e,i){var s=t.getUTCHours()>=12;return t.setUTCHours(s&&i<12?i+12:i,0,0,0),t}}]),e}(),Me=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",70),xt(ut(i),"incompatibleTokens",["a","b","h","H","K","t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"k":return Zt(Pt,t);case"ko":return i.ordinalNumber(t,{unit:"hour"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=1&&e<=24}},{key:"set",value:function(t,e,i){return t.setUTCHours(i<=24?i%24:i,0,0,0),t}}]),e}(),Pe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",60),xt(ut(i),"incompatibleTokens",["t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"m":return Zt(Nt,t);case"mo":return i.ordinalNumber(t,{unit:"minute"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=0&&e<=59}},{key:"set",value:function(t,e,i){return t.setUTCMinutes(i,0,0),t}}]),e}(),Fe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",50),xt(ut(i),"incompatibleTokens",["t","T"]),i}return _t(e,[{key:"parse",value:function(t,e,i){switch(e){case"s":return Zt(Bt,t);case"so":return i.ordinalNumber(t,{unit:"second"});default:return ie(e.length,t)}}},{key:"validate",value:function(t,e){return e>=0&&e<=59}},{key:"set",value:function(t,e,i){return t.setUTCSeconds(i,0),t}}]),e}(),Oe=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",30),xt(ut(i),"incompatibleTokens",["t","T"]),i}return _t(e,[{key:"parse",value:function(t,e){return Jt(ie(e.length,t),(function(t){return Math.floor(t*Math.pow(10,3-e.length))}))}},{key:"set",value:function(t,e,i){return t.setUTCMilliseconds(i),t}}]),e}(),Ne=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",10),xt(ut(i),"incompatibleTokens",["t","T","x"]),i}return _t(e,[{key:"parse",value:function(t,e){switch(e){case"X":return te(Yt,t);case"XX":return te(Gt,t);case"XXXX":return te(Kt,t);case"XXXXX":return te(Xt,t);default:return te(Qt,t)}}},{key:"set",value:function(t,e,i){return e.timestampIsSet?t:new Date(t.getTime()-i)}}]),e}(),Be=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",10),xt(ut(i),"incompatibleTokens",["t","T","X"]),i}return _t(e,[{key:"parse",value:function(t,e){switch(e){case"x":return te(Yt,t);case"xx":return te(Gt,t);case"xxxx":return te(Kt,t);case"xxxxx":return te(Xt,t);default:return te(Qt,t)}}},{key:"set",value:function(t,e,i){return e.timestampIsSet?t:new Date(t.getTime()-i)}}]),e}(),Le=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",40),xt(ut(i),"incompatibleTokens","*"),i}return _t(e,[{key:"parse",value:function(t){return ee(t)}},{key:"set",value:function(t,e,i){return[new Date(1e3*i),{timestampIsSet:!0}]}}]),e}(),je=function(){mt(e,Et);var t=gt(e);function e(){var i;bt(this,e);for(var s=arguments.length,o=new Array(s),r=0;r<s;r++)o[r]=arguments[r];return xt(ut(i=t.call.apply(t,[this].concat(o))),"priority",20),xt(ut(i),"incompatibleTokens","*"),i}return _t(e,[{key:"parse",value:function(t){return ee(t)}},{key:"set",value:function(t,e,i){return[new Date(i),{timestampIsSet:!0}]}}]),e}(),$e={G:new At,y:new ae,Y:new le,R:new he,u:new de,Q:new ce,q:new ue,M:new pe,L:new me,w:new ve,I:new fe,d:new ye,D:new we,E:new xe,e:new ke,c:new Ce,i:new Se,a:new Ee,b:new Ae,B:new ze,h:new Ie,H:new Te,K:new De,k:new Me,m:new Pe,s:new Fe,S:new Oe,X:new Ne,x:new Be,t:new Le,T:new je},Ve=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Re=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,qe=/^'([^]*?)'?$/,He=/''/g,We=/\S/,Ue=/[a-zA-Z]/;function Ye(t,e,i,s){var o,r,n,a,l,h,d,m,g,b,y,w,x,k,C,S,E,A;u(3,arguments);var z=String(t),I=String(e),T=_(),D=null!==(o=null!==(r=null==s?void 0:s.locale)&&void 0!==r?r:T.locale)&&void 0!==o?o:it;if(!D.match)throw new RangeError("locale must contain match property");var M=v(null!==(n=null!==(a=null!==(l=null!==(h=null==s?void 0:s.firstWeekContainsDate)&&void 0!==h?h:null==s||null===(d=s.locale)||void 0===d||null===(m=d.options)||void 0===m?void 0:m.firstWeekContainsDate)&&void 0!==l?l:T.firstWeekContainsDate)&&void 0!==a?a:null===(g=T.locale)||void 0===g||null===(b=g.options)||void 0===b?void 0:b.firstWeekContainsDate)&&void 0!==n?n:1);if(!(M>=1&&M<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var P=v(null!==(y=null!==(w=null!==(x=null!==(k=null==s?void 0:s.weekStartsOn)&&void 0!==k?k:null==s||null===(C=s.locale)||void 0===C||null===(S=C.options)||void 0===S?void 0:S.weekStartsOn)&&void 0!==x?x:T.weekStartsOn)&&void 0!==w?w:null===(E=T.locale)||void 0===E||null===(A=E.options)||void 0===A?void 0:A.weekStartsOn)&&void 0!==y?y:0);if(!(P>=0&&P<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(""===I)return""===z?p(i):new Date(NaN);var F,O={firstWeekContainsDate:M,weekStartsOn:P,locale:D},N=[new St],B=I.match(Re).map((function(t){var e=t[0];return e in R?(0,R[e])(t,D.formatLong):t})).join("").match(Ve),L=[],j=dt(B);try{var $=function(){var e=F.value;null!=s&&s.useAdditionalWeekYearTokens||!Y(e)||G(e,I,t),null!=s&&s.useAdditionalDayOfYearTokens||!U(e)||G(e,I,t);var i=e[0],o=$e[i];if(o){var r=o.incompatibleTokens;if(Array.isArray(r)){var n=L.find((function(t){return r.includes(t.token)||t.token===i}));if(n)throw new RangeError("The format string mustn't contain `".concat(n.fullToken,"` and `").concat(e,"` at the same time"))}else if("*"===o.incompatibleTokens&&L.length>0)throw new RangeError("The format string mustn't contain `".concat(e,"` and any other token at the same time"));L.push({token:i,fullToken:e});var a=o.run(z,e,D.match,O);if(!a)return{v:new Date(NaN)};N.push(a.setter),z=a.rest}else{if(i.match(Ue))throw new RangeError("Format string contains an unescaped latin alphabet character `"+i+"`");if("''"===e?e="'":"'"===i&&(e=e.match(qe)[1].replace(He,"'")),0!==z.indexOf(e))return{v:new Date(NaN)};z=z.slice(e.length)}};for(j.s();!(F=j.n()).done;){var V=$();if("object"===c(V))return V.v}}catch(t){j.e(t)}finally{j.f()}if(z.length>0&&We.test(z))return new Date(NaN);var H=N.map((function(t){return t.priority})).sort((function(t,e){return e-t})).filter((function(t,e,i){return i.indexOf(t)===e})).map((function(t){return N.filter((function(e){return e.priority===t})).sort((function(t,e){return e.subPriority-t.subPriority}))})).map((function(t){return t[0]})),W=p(i);if(isNaN(W.getTime()))return new Date(NaN);var K,Q=f(W,q(W)),X={},J=dt(H);try{for(J.s();!(K=J.n()).done;){var Z=K.value;if(!Z.validate(Q,O))return new Date(NaN);var tt=Z.set(Q,X,O);Array.isArray(tt)?(Q=tt[0],ct(X,tt[1])):Q=tt}}catch(t){J.e(t)}finally{J.f()}return Q}function Ge(t,e){u(2,arguments);var i=p(t),s=p(e);return i.getTime()>s.getTime()}function Ke(t,e){u(2,arguments);var i=p(t),s=p(e);return i.getTime()<s.getTime()}function Qe(t,e,i){return u(2,arguments),m(Ye(t,e,new Date,i))}const Xe=class{constructor(i){t(this,i),this.sendValidityState=e(this,"sendValidityState",7),this.sendInputValue=e(this,"sendInputValue",7),this.touched=!1,this.formatDate=t=>{const{year:e,month:i,day:s}=t;return lt(new Date(e,i,s),this.dateFormat)},this.parseDate=t=>{const e=Ye(t,this.dateFormat,new Date);return{year:e.getFullYear(),month:e.getMonth(),day:e.getDate()}},this.setClientStyling=()=>{let t=document.createElement("style");t.innerHTML=this.clientStyling,this.stylingContainer.prepend(t)},this.handleDocumentIdUpdate=t=>{this.name===n.BIRTHDATE&&(this.value=t.detail,this.valueAsDate=Ye(this.value||"",n.DATE_FORMAT,new Date),this.touched=!0,this.datePicker&&(this.datePicker.value=this.value),this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.valueHandler({name:this.name,value:this.value}))},this.name=void 0,this.displayName=void 0,this.placeholder=void 0,this.validation=void 0,this.defaultValue=void 0,this.autofilled=void 0,this.tooltip=void 0,this.language=void 0,this.emitValue=void 0,this.clientStyling="",this.dateFormat="yyyy-MM-dd",this.emitOnClick=!1,this.enableSouthAfricanMode=void 0,this.errorMessage=void 0,this.isValid=void 0,this.limitStylingAppends=!1,this.showTooltip=!1}get formattedValue(){return this.value?lt(Ye(this.value,"yyyy-MM-dd",new Date),this.dateFormat):""}handleStylingChange(t,e){t!==e&&this.setClientStyling()}validityChanged(){this.validityStateHandler({valid:this.isValid,name:this.name}),1==this.emitValue&&this.valueHandler({name:this.name,value:this.value})}validityStateHandler(t){this.sendValidityState.emit(t)}emitValueHandler(t){1==t&&this.isValid&&this.valueHandler({name:this.name,value:this.value})}handleCustomRegistrationChange(t){t?window.addEventListener("documentIdUpdated",this.handleDocumentIdUpdate):window.removeEventListener("documentIdUpdated",this.handleDocumentIdUpdate)}valueHandler(t){this.sendInputValue.emit(t)}handleClickOutside(t){const e=t.composedPath();e.includes(this.tooltipIconReference)||e.includes(this.tooltipReference)||(this.showTooltip=!1)}connectedCallback(){var t,e;this.minDate=Ye((null===(t=this.validation.min)||void 0===t?void 0:t.toString())||"","yyyy-MM-dd",new Date),this.maxDate=Ye((null===(e=this.validation.max)||void 0===e?void 0:e.toString())||"","yyyy-MM-dd",new Date)}componentDidRender(){!this.limitStylingAppends&&this.stylingContainer&&(this.clientStyling&&this.setClientStyling(),this.limitStylingAppends=!0)}componentDidLoad(){if(this.datePicker=this.element.shadowRoot.querySelector("vaadin-date-picker"),this.inputReference=this.element.shadowRoot.querySelector("input"),this.datePicker){const t=this.datePicker.shadowRoot.querySelector('[part="toggle-button"]');t&&t.addEventListener("click",(()=>this.handleCalendarIconClick())),this.datePicker.addEventListener("opened-changed",(t=>{!0===t.detail.value?this.errorMessage="":(this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.touched=!0)}))}this.enableSouthAfricanMode&&window.addEventListener("documentIdUpdated",this.handleDocumentIdUpdate),this.datePicker.i18n=Object.assign(Object.assign({},this.datePicker.i18n),{formatDate:this.formatDate,parseDate:this.parseDate}),this.defaultValue&&(this.value=this.defaultValue,this.valueHandler({name:this.name,value:this.value})),this.isValid=this.setValidity()}disconnectedCallback(){this.enableSouthAfricanMode&&window.removeEventListener("documentIdUpdated",this.handleDocumentIdUpdate)}handleCalendarIconClick(){this.datePicker.opened&&this.emitOnClick&&window.postMessage({type:`registration${this.name}Clicked`},window.location.href)}handleInput(t){this.value=t.target.value,this.touched=!0,this.valueAsDate=Ye(this.value||"","yyyy-MM-dd",new Date),this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.emitValueHandler(!0),this.enableSouthAfricanMode&&window.dispatchEvent(new CustomEvent("birthDateUpdated",{detail:{birthDate:this.value}}))}setValidity(){return!(Ke(this.valueAsDate,this.minDate)||Ge(this.valueAsDate,this.maxDate)||!Qe(this.formattedValue,this.dateFormat))&&this.inputReference.validity.valid}setErrorMessage(){return this.inputReference.validity.valueMissing?a("requiredError",this.language):this.inputReference.validity.rangeUnderflow||this.inputReference.validity.rangeOverflow?a("dateError",this.language,{values:{min:this.validation.min,max:this.validation.max}}):Ke(this.valueAsDate,this.minDate)||Ge(this.valueAsDate,this.maxDate)?a("dateError2",this.language):Qe(this.formattedValue,this.dateFormat)?void 0:a("dateFormatError",this.language)}renderTooltip(){return this.showTooltip?i("div",{class:"date__tooltip "+(this.showTooltip?"visible":""),ref:t=>this.tooltipReference=t,innerHTML:this.tooltip}):null}render(){let t="";return this.touched&&(t=1==this.isValid||null==this.isValid?"":"text__input--invalid"),i("div",{key:"9399c1be2edcbe3ed5c0e133cad52b1917e77e96",class:`date__wrapper ${this.autofilled?"date__wrapper--autofilled":""} ${this.name}__input`,ref:t=>this.stylingContainer=t},i("label",{key:"1094491a5fc441c4f704441d376ed965d6946637",class:`date__label ${this.validation.mandatory?"date__label--required":""}}`,htmlFor:`${this.name}__input`},this.displayName,i("span",{key:"14dd041cce018e22d82919f46eabc88f83e639e8",class:this.validation.mandatory?"date__label--required":""})),i("vaadin-date-picker",{key:"eb720200d8d2b07ab00bca70c8e4a25dfc5cd08f",id:`${this.name}__input`,type:"date",class:`date__input ${t}`,value:this.defaultValue,readOnly:this.autofilled,placeholder:`${this.placeholder}`,required:this.validation.mandatory,max:this.validation.max,min:this.validation.min,onChange:t=>this.handleInput(t)}),i("small",{key:"eedeea67c67bdc92ae1bb3e79cab745384bb0db7",class:"date__error-message"},this.errorMessage),this.tooltip&&i("img",{key:"2b9cbbb972e4d07124a3d548eb932a26a44f75f3",class:"date__tooltip-icon",src:l,alt:"",ref:t=>this.tooltipIconReference=t,onClick:()=>this.showTooltip=!this.showTooltip}),this.renderTooltip())}get element(){return s(this)}static get watchers(){return{clientStyling:["handleStylingChange"],isValid:["validityChanged"],emitValue:["emitValueHandler"],enableSouthAfricanMode:["handleCustomRegistrationChange"]}}};Xe.style='*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}.date{font-family:"Roboto";font-style:normal}.date__wrapper{position:relative;width:100%;display:flex;flex-direction:column;gap:5px;height:100%}.date__wrapper--autofilled{pointer-events:none}.date__wrapper--autofilled .date__label{color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.date__wrapper--autofilled .date__input::part(input-field){color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.date__label{font-family:inherit;font-style:normal;font-weight:500;font-size:16px;line-height:20px;color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.date__label--required::after{content:"*";font-family:inherit;color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));margin-left:2px}.date__input{border:none;width:inherit;position:relative}.date__input[focused]::part(input-field){border-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.date__input[invalid]::part(input-field){border:1px solid var(--emw--color-error, var(--emw--color-red, #ed0909))}.date__input::part(input-field){border-radius:4px;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));font-family:inherit;font-style:normal;font-size:16px;font-weight:300;line-height:1.5;padding:0;height:44px}.date__input>input{padding:5px 15px}.date__input::part(toggle-button){position:relative;right:10px}.date__error-message{position:absolute;top:calc(100% + 5px);left:0;color:var(--emw--color-error, var(--emw--color-red, #ed0909))}.date__tooltip-icon{position:absolute;right:0;bottom:10px}.date__tooltip{position:absolute;bottom:35px;right:10px;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.date__tooltip.visible{opacity:1}';const Je=class{constructor(i){t(this,i),this.sendValidityState=e(this,"sendValidityState",7),this.sendInputValue=e(this,"sendInputValue",7),this.validationPattern="",this.touched=!1,this.handleInput=t=>{this.value=t.target.value,this.touched=!0,this.debounceTime&&clearTimeout(this.debounceTime),this.debounceTime=setTimeout((()=>{this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.emitValueHandler(!0)}),500)},this.handleBlur=()=>{this.isValid=this.setValidity(),this.errorMessage=this.setErrorMessage(),this.touched=!0},this.setClientStyling=()=>{let t=document.createElement("style");t.innerHTML=this.clientStyling,this.stylingContainer.prepend(t)},this.name=void 0,this.displayName=void 0,this.placeholder=void 0,this.validation=void 0,this.defaultValue=void 0,this.autofilled=void 0,this.tooltip=void 0,this.language=void 0,this.emitValue=void 0,this.isDuplicateInput=void 0,this.clientStyling="",this.errorMessage=void 0,this.isValid=void 0,this.limitStylingAppends=!1,this.showTooltip=!1}handleStylingChange(t,e){t!==e&&this.setClientStyling()}validityChanged(){this.validityStateHandler({valid:this.isValid,name:this.name}),1==this.emitValue&&this.valueHandler({name:this.name,value:this.value})}emitValueHandler(t){1==t&&this.isValid&&this.valueHandler({name:this.name,value:this.value})}validityStateHandler(t){this.sendValidityState.emit(t)}valueHandler(t){this.sendInputValue.emit(t)}handleClickOutside(t){const e=t.composedPath();e.includes(this.tooltipIconReference)||e.includes(this.tooltipReference)||(this.showTooltip=!1)}valueChangedHandler(t){this.isDuplicateInput&&this.name===t.detail.name+"Duplicate"&&(this.duplicateInputValue=t.detail.value)}connectedCallback(){this.validationPattern=this.setPattern()}componentDidRender(){!this.limitStylingAppends&&this.stylingContainer&&(this.clientStyling&&this.setClientStyling(),this.limitStylingAppends=!0)}componentDidLoad(){this.isValid=this.setValidity(),this.defaultValue&&(this.value=this.defaultValue,this.valueHandler({name:this.name,value:this.value}))}setValidity(){return this.inputReference.validity.valid}setPattern(){var t,e;if((null===(t=this.validation.custom)||void 0===t?void 0:t.length)>0)return null===(e=this.validation.custom.find((t=>"regex"===t.rule)))||void 0===e?void 0:e.pattern}setErrorMessage(){var t,e,i,s;if(this.inputReference.validity.valueMissing)return a("requiredError",this.language);if(this.inputReference.validity.tooShort||this.inputReference.validity.tooLong)return a("lengthError",this.language,{values:{minLength:this.validation.minLength,maxLength:this.validation.maxLength}});if(this.inputReference.validity.patternMismatch){const i=null===(t=this.validation.custom.find((t=>"regex"===t.rule)))||void 0===t?void 0:t.errorKey,s=null===(e=this.validation.custom.find((t=>"regex"===t.rule)))||void 0===e?void 0:e.errorMessage;return a(`${i}`,this.language)?a(`${i}`,this.language):s}if(this.isDuplicateInput&&this.duplicateInputValue!==this.value){const t=null===(i=this.validation.custom.find((t=>"duplicate-input"===t.rule)))||void 0===i?void 0:i.errorKey,e=null===(s=this.validation.custom.find((t=>"duplicate-input"===t.rule)))||void 0===s?void 0:s.errorMessage;return a(`${t}`,this.language)?a(`${t}`,this.language):e}}renderTooltip(){return this.showTooltip?i("div",{class:"email__tooltip "+(this.showTooltip?"visible":""),ref:t=>this.tooltipReference=t,innerHTML:this.tooltip}):null}render(){let t="";return this.touched&&(t=1==this.isValid||null==this.isValid?"":"text__input--invalid"),i("div",{key:"723df8f3a6e8c57fe19082400971daf50f5c981d",class:`email__wrapper ${this.autofilled?"number__wrapper--autofilled":""} ${this.name}__input`,ref:t=>this.stylingContainer=t},i("div",{key:"581d6e02b63d1c659ae44424518f64db450d5365",class:"email__wrapper--flex"},i("label",{key:"11e6a848f6f04903989b3ab2075865f6e279c087",class:"email__label "+(this.validation.mandatory?"email__label--required":""),htmlFor:`${this.name}__input`},this.displayName),i("div",{key:"73e11520cffbddda1a2aeb4b560e7f4cf456e2fb",class:"email__wrapper--relative"},this.tooltip&&i("img",{key:"e8571ce14b9b98311daf1712ebde7d6da9b5a6a6",class:"email__tooltip-icon",src:l,alt:"",ref:t=>this.tooltipIconReference=t,onClick:()=>this.showTooltip=!this.showTooltip}),this.renderTooltip())),i("input",{key:"dd05ef0b4d906598c6d5775a78ccbdc9ea81cb8c",id:`${this.name}__input`,type:"email",class:`email__input ${t}`,value:this.defaultValue,readOnly:this.autofilled,placeholder:`${this.placeholder}`,ref:t=>this.inputReference=t,pattern:this.validationPattern,required:this.validation.mandatory,minlength:this.validation.minLength,maxlength:this.validation.maxLength,onInput:this.handleInput,onBlur:this.handleBlur}),i("small",{key:"0d2d41207f8274d8c6f69143131265ef5b458689",class:"email__error-message"},this.errorMessage))}static get watchers(){return{clientStyling:["handleStylingChange"],isValid:["validityChanged"],emitValue:["emitValueHandler"]}}};Je.style='*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}.email{font-family:"Roboto";font-style:normal}.email__wrapper{position:relative;width:100%}.email__wrapper--autofilled{pointer-events:none}.email__wrapper--autofilled .email__label{color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.email__wrapper--autofilled .email__input{color:var(--emw--color-black, #000000)}.email__wrapper--flex{display:flex;gap:5px}.email__wrapper--relative{position:relative}.email__label{font-family:inherit;font-style:normal;font-weight:500;font-size:16px;line-height:20px;color:var(--emw--registration-typography, var(--emw--color-black, #000000))}.email__label--required::after{content:"*";font-family:inherit;color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E));margin-left:2px}.email__input{font-family:inherit;border-radius:4px;width:100%;height:40px;border:2px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--color-black, #000000);border-radius:5px;box-sizing:border-box;font-size:16px;font-weight:300;line-height:1.5;padding:10px}.email__input:focus{outline-color:var(--emw--login-color-primary, var(--emw--color-primary, #22B04E))}.email__input--invalid{border:1px solid var(--emw--color-error, var(--emw--color-red, #ed0909))}.email__input::placeholder{color:var(--emw--color-gray-150, #828282)}.email__error-message{position:absolute;top:calc(100% + 5px);left:0;color:var(--emw--color-error, var(--emw--color-red, #ed0909))}.email__tooltip-icon{width:16px;height:auto}.email__tooltip{position:absolute;top:0;left:20px;background-color:var(--emw--color-white, #FFFFFF);border:1px solid var(--emw--color-gray-100, #E6E6E6);color:var(--emw--registration-typography, var(--emw--color-black, #000000));padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.email__tooltip.visible{opacity:1}';var Ze=Object.defineProperty,ti=Object.defineProperties,ei=Object.getOwnPropertyDescriptors,ii=Object.getOwnPropertySymbols,si=Object.prototype.hasOwnProperty,oi=Object.prototype.propertyIsEnumerable,ri=(t,e,i)=>e in t?Ze(t,e,{enumerable:!0,configurable:!0,writable:!0,value:i}):t[e]=i,ni=(t,e)=>{for(var i in e||(e={}))si.call(e,i)&&ri(t,i,e[i]);if(ii)for(var i of ii(e))oi.call(e,i)&&ri(t,i,e[i]);return t},ai=(t,e)=>ti(t,ei(e)),li=(t,e,i)=>(ri(t,"symbol"!=typeof e?e+"":e,i),i),hi=(t,e,i)=>new Promise(((s,o)=>{var r=t=>{try{a(i.next(t))}catch(t){o(t)}},n=t=>{try{a(i.throw(t))}catch(t){o(t)}},a=t=>t.done?s(t.value):Promise.resolve(t.value).then(r,n);a((i=i.apply(t,e)).next())}))
2
2
  /**
3
3
  * @license
4
4
  * Copyright (c) 2021 - 2024 Vaadin Ltd.
@@ -1 +1 @@
1
- export{P as PamForgotPassword}from"./pam-forgot-password-fa19e1f6.js";import"./index-3a596979.js";
1
+ export{P as PamForgotPassword}from"./pam-forgot-password-7e70c8eb.js";import"./index-3a596979.js";
@@ -0,0 +1 @@
1
+ import{r as e,h as t}from"./index-3a596979.js";const a={en:{title:"Forgot Password",dropdownDisplayName:"Contact",telDisplayName:"Phone Number",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Enter your email",usernameDisplayName:"Username",usernamePlaceholder:"Enter your username",firstNameDisplayName:"First Name",firstNamePlaceholder:"Enter your first name",dateOfBirthDisplayName:"Date of Birth",dateOfBirthPlaceholder:"1911-11-11",loading:"Loading ...",submitError:"Something went wrong. Please try again later",configError:"Something went wrong. Please try again later",successMsg:"If your account exists, a reset link is on its way",btnSubmit:"submit",sms:"sms",email:"email"},ro:{title:"Parolă uitată",dropdownDisplayName:"Contact",telDisplayName:"Număr de telefon",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Introduceți emailul dvs.",usernameDisplayName:"Nume de utilizator",usernamePlaceholder:"Introduceți numele dvs. de utilizator",firstNameDisplayName:"Prenume",firstNamePlaceholder:"Introduceți prenumele dvs.",dateOfBirthDisplayName:"Data nașterii",dateOfBirthPlaceholder:"1911-11-11",loading:"Se încarcă ...",submitError:"Ceva nu a mers bine. Vă rugăm să încercați din nou mai târziu",configError:"Ceva nu a mers bine. Vă rugăm să încercați din nou mai târziu",successMsg:"Dacă contul dvs. există, un link de resetare este va fi trimis",btnSubmit:"Trimite",sms:"sms",email:"email"},fr:{title:"Mot de passe oublié",dropdownDisplayName:"Contact",telDisplayName:"Numéro de téléphone",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Entrez votre email",usernameDisplayName:"Nom d'utilisateur",usernamePlaceholder:"Entrez votre nom d'utilisateur",firstNameDisplayName:"Prénom",firstNamePlaceholder:"Entrez votre prénom",dateOfBirthDisplayName:"Date de naissance",dateOfBirthPlaceholder:"1911-11-11",loading:"Chargement ...",submitError:"Un problème est survenu. Veuillez réessayer plus tard",configError:"Un problème est survenu. Veuillez réessayer plus tard",successMsg:"Si votre compte existe, un lien de réinitialisation est en route",btnSubmit:"soumettre",sms:"sms",email:"email"},hu:{title:"Elfelejtett jelszó",dropdownDisplayName:"Kapcsolat",telDisplayName:"Telefonszám",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Adja meg az email címét",usernameDisplayName:"Felhasználónév",usernamePlaceholder:"Adja meg a felhasználónevét",firstNameDisplayName:"Keresztnév",firstNamePlaceholder:"Adja meg a keresztnevét",dateOfBirthDisplayName:"Születési dátum",dateOfBirthPlaceholder:"1911-11-11",loading:"Betöltés ...",submitError:"Valami hiba történt. Kérjük, próbálja meg később",configError:"Valami hiba történt. Kérjük, próbálja meg később",successMsg:"Ha létezik a fiókja, egy visszaállítási link úton van",btnSubmit:"Beküldés",sms:"sms",email:"email"},tr:{title:"Şifremi Unuttum",dropdownDisplayName:"İletişim",telDisplayName:"Telefon Numarası",telPlaceholder:"0000000000",emailDisplayName:"E-posta",emailPlaceholder:"E-postanızı girin",usernameDisplayName:"Kullanıcı Adı",usernamePlaceholder:"Kullanıcı adınızı girin",firstNameDisplayName:"İsim",firstNamePlaceholder:"İsminizi girin",dateOfBirthDisplayName:"Doğum Tarihi",dateOfBirthPlaceholder:"1911-11-11",loading:"Yükleniyor ...",submitError:"Bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin",configError:"Bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin",successMsg:"Hesabınız varsa, bir sıfırlama bağlantısı yolda",btnSubmit:"Gönder",sms:"sms",email:"e-posta"},el:{title:"Ξεχάσατε τον κωδικό;",dropdownDisplayName:"Επικοινωνία",telDisplayName:"Αριθμός τηλεφώνου",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Εισάγετε το email σας",usernameDisplayName:"Όνομα χρήστη",usernamePlaceholder:"Εισάγετε το όνομα χρήστη σας",firstNameDisplayName:"Όνομα",firstNamePlaceholder:"Εισάγετε το όνομά σας",dateOfBirthDisplayName:"Ημερομηνία γέννησης",dateOfBirthPlaceholder:"1911-11-11",loading:"Φόρτωση ...",submitError:"Κάτι πήγε στραβά. Παρακαλούμε δοκιμάστε ξανά αργότερα",configError:"Κάτι πήγε στραβά. Παρακαλούμε δοκιμάστε ξανά αργότερα",successMsg:"Αν ο λογαριασμός σας υπάρχει, ένας σύνδεσμος επαναφοράς είναι καθ' οδόν",btnSubmit:"υποβάλλουν",sms:"sms",email:"email"},es:{title:"Olvidé mi contraseña",dropdownDisplayName:"Contacto",telDisplayName:"Número de teléfono",telPlaceholder:"0000000000",emailDisplayName:"Correo electrónico",emailPlaceholder:"Introduce tu correo electrónico",usernameDisplayName:"Nombre de usuario",usernamePlaceholder:"Introduce tu nombre de usuario",firstNameDisplayName:"Nombre",firstNamePlaceholder:"Introduce tu nombre",dateOfBirthDisplayName:"Fecha de nacimiento",dateOfBirthPlaceholder:"1911-11-11",loading:"Cargando ...",submitError:"Algo salió mal. Por favor, inténtalo de nuevo más tarde",configError:"Algo salió mal. Por favor, inténtalo de nuevo más tarde",successMsg:"Si tu cuenta existe, un enlace de restablecimiento está en camino",btnSubmit:"enviar",sms:"sms",email:"email"},pt:{title:"Esqueci a Senha",dropdownDisplayName:"Contato",telDisplayName:"Número de Telefone",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Digite seu email",usernameDisplayName:"Nome de Usuário",usernamePlaceholder:"Digite seu nome de usuário",firstNameDisplayName:"Nome",firstNamePlaceholder:"Digite seu nome",dateOfBirthDisplayName:"Data de Nascimento",dateOfBirthPlaceholder:"1911-11-11",loading:"Carregando ...",submitError:"Algo deu errado. Por favor, tente novamente mais tarde",configError:"Algo deu errado. Por favor, tente novamente mais tarde",successMsg:"Se sua conta existir, um link de redefinição está a caminho",btnSubmit:"enviar",sms:"sms",email:"email"},hr:{title:"Zaboravljena lozinka",dropdownDisplayName:"Kontakt",telDisplayName:"Broj telefona",telPlaceholder:"0000000000",emailDisplayName:"E-mail",emailPlaceholder:"Unesite svoj e-mail",usernameDisplayName:"Korisničko ime",usernamePlaceholder:"Unesite svoje korisničko ime",firstNameDisplayName:"Ime",firstNamePlaceholder:"Unesite svoje ime",dateOfBirthDisplayName:"Datum rođenja",dateOfBirthPlaceholder:"1911-11-11",loading:"Učitavanje ...",submitError:"Nešto je pošlo po zlu. Molimo pokušajte ponovno kasnije",configError:"Nešto je pošlo po zlu. Molimo pokušajte ponovno kasnije",successMsg:"Ako vaš račun postoji, poveznica za poništavanje lozinke je na putu",btnSubmit:"pošalji",sms:"sms",email:"email"}},i=(e,t)=>a[void 0!==t?t:"en"][e];function o(){const e=navigator.userAgent.toLowerCase(),t=screen.availWidth,a=screen.availHeight;if(e.includes("iphone"))return"mobile";if(e.includes("android")){if(a>t&&t<800)return"mobile";if(t>a&&a<800)return"tablet"}return"desktop"}const r="__WIDGET_GLOBAL_STYLE_CACHE__";function n(e,t){if(e){const a=document.createElement("style");a.innerHTML=t,e.appendChild(a)}}function s(e,t){if(!e||!t)return;const a=new URL(t);fetch(a.href).then((e=>e.text())).then((t=>{const a=document.createElement("style");a.innerHTML=t,e&&e.appendChild(a)})).catch((e=>{console.error("There was an error while trying to load client styling from URL",e)}))}const l=class{constructor(t){e(this,t),this.isContactValid=!1,this.validation={mandatory:!0,custom:[]},this.submitRequest=e=>{e.preventDefault();const t=new URL("/api/v1/players/password-management/password/forgot/request",this.endpoint),a=new Headers;this.captchaData.isEnabled&&this.captchaData.token&&a.append("X-Captcha-Response",this.captchaData.token),a.append("Content-Type","application/json");const o=JSON.stringify({contact:this.contact});fetch(t.href,{method:"POST",headers:a,body:o}).then((e=>e.json())).then((e=>{e.errorCode?this.sendErrorNotification(i("submitError",this.language)):(window.postMessage({type:"ForgotPasswordSuccess"}),window.postMessage({type:"WidgetNotification",data:{type:"success",message:i("successMsg",this.language)}},window.location.href))})).catch((()=>{this.sendErrorNotification(i("submitError",this.language))}))},this.toggleScreen=()=>{window.postMessage({type:"OpenLoginRegisterModal",transition:"Login"},window.location.href)},this.endpoint=void 0,this.language=void 0,this.clientStyling=void 0,this.clientStylingUrl=void 0,this.mbSource=void 0,this.translationUrl=void 0,this.contactType="",this.isBtnSubmitEnabled=!1,this.skeletonLoading=!0,this.hasError=!1,this.isMobile="mobile"===o()||"tablet"===o(),this.captchaData={isEnabled:!0,token:"",provider:"",siteKey:""},this.errorMessage=""}sendValidityStateHandler(e){"contact"!==e.detail.name||(this.isContactValid=e.detail.valid)}sendInputValueHandler(e){switch(e.detail.name){case"dropdown":this.contactType=e.detail.value.toLowerCase();break;case"contact":this.contact=e.detail.value}this.updateSubmitButtonState()}updateSubmitButtonState(){this.isBtnSubmitEnabled=this.isContactValid&&!!this.contact&&(!this.captchaData.isEnabled||!!this.captchaData.token)}handleClientStylingChange(e,t){e!=t&&n(this.stylingContainer,this.clientStyling)}handleClientStylingUrlChange(e,t){e!=t&&this.clientStylingUrl&&s(this.stylingContainer,this.clientStylingUrl)}sendErrorNotification(e){window.postMessage({type:"HasError",error:e},window.location.href),window.postMessage({type:"WidgetNotification",data:{type:"error",message:e}},window.location.href)}async componentWillLoad(){var e;this.translationUrl&&await(e=this.translationUrl,new Promise((t=>{fetch(e).then((e=>e.json())).then((e=>{Object.keys(e).forEach((t=>{for(let i in e[t])a[t][i]=e[t][i]})),t(!0)}))}))),this.getConfig().then((()=>{this.appendCaptchaScript()})).catch((e=>{console.error(e),this.hasError=!0,this.errorMessage=i("configError",this.language),this.sendErrorNotification(this.errorMessage)})).finally((()=>{this.skeletonLoading=!1}))}componentDidLoad(){this.stylingContainer&&(null!=window.emMessageBus?function(e,t,a,i=!1){if(!window.emMessageBus)return;if(!("adoptedStyleSheets"in Document.prototype)||!i)return function(e,t){const a=document.createElement("style");return window.emMessageBus.subscribe(t,(t=>{e&&(a.innerHTML=t,e.appendChild(a))}))}(e,t);window[r]||(window[r]={});const o=(a=function(e,t){return window.emMessageBus.subscribe(t,(a=>{if(!e)return;const i=e.getRootNode(),o=window[r];let n=o[t]?.sheet;n?o[t].refCount=o[t].refCount+1:(n=new CSSStyleSheet,n.replaceSync(a),o[t]={sheet:n,refCount:1});const s=i.adoptedStyleSheets||[];s.includes(n)||(i.adoptedStyleSheets=[...s,n])}))}(e,t)).unsubscribe.bind(a);a.unsubscribe=()=>{if(window[r][t]){const e=window[r][t];e.refCount>1?e.refCount=e.refCount-1:delete window[r][t]}o()}}(this.stylingContainer,`${this.mbSource}.Style`,this.stylingSubscription):(this.clientStyling&&n(this.stylingContainer,this.clientStyling),this.clientStylingUrl&&s(this.stylingContainer,this.clientStylingUrl)))}getConfig(){const e=new URL("/api/v1/players/password-management/password/forgot/config",this.endpoint);return new Promise(((t,a)=>{fetch(e.href).then((e=>{if(!e.ok)throw new Error(`HTTP error! Status: ${e.status}`);return e.json()})).then((e=>{const{captcha:a}=e;a&&"string"==typeof a.provider&&(a.provider=a.provider.toLowerCase()),this.captchaData=Object.assign({},a),t()})).catch((e=>{console.error("Error fetching login configuration:",e),a(e)}))}))}appendCaptchaScript(){const{isEnabled:e,provider:t}=this.captchaData;if(!e)return;const a=document.createElement("script");"cloudflare"===t?a.src="https://challenges.cloudflare.com/turnstile/v0/api.js":"google"===t&&(a.src="https://www.google.com/recaptcha/api.js"),a.onload=this.handleCaptcha.bind(this),document.head.appendChild(a)}handleCaptcha(){const{isEnabled:e,provider:t,siteKey:a}=this.captchaData;e&&["cloudflare","google"].includes(t)&&("cloudflare"===t?window.turnstile.render("#turnstileContainer",{sitekey:a,theme:"light",callback:this.captchaCallback.bind(this)}):"google"===t&&window.grecaptcha.ready((()=>{window.grecaptcha.render("googleContainer",{sitekey:a,callback:this.captchaCallback.bind(this),theme:"light"})})))}captchaCallback(e){this.captchaData.token=e,this.captchaData=Object.assign({},this.captchaData),this.updateSubmitButtonState()}disconnectedCallback(){this.stylingSubscription&&this.stylingSubscription.unsubscribe()}render(){return this.skeletonLoading?t("div",{class:"PlayerForgotPassword skeleton"},t("form",{class:"Form"},t("div",{class:"ButtonReturn"},t("ui-skeleton",{structure:"text",width:"auto",height:"30px"})),t("section",{class:"FieldsSection"},t("div",{class:"FieldContainer"},t("div",{class:"FieldTitle"},t("ui-skeleton",{structure:"title",width:"auto",height:"10px"})),t("ui-skeleton",{structure:"rectangle",width:"auto",height:"35px"}))),t("section",{class:"ButtonsSection"},t("div",{class:"Button"},t("ui-skeleton",{structure:"rectangle",width:"auto",height:"50px"}))))):t("div",{class:"PlayerForgotPassword",ref:e=>this.stylingContainer=e},this.hasError?t("h4",{class:"Error"},i("configError",this.language)):t("form",{action:".",class:"Form"},t("div",{class:"ButtonReturn",onClick:this.toggleScreen},t("svg",{xmlns:"http://www.w3.org/2000/svg",width:"15",height:"15",viewBox:"0 0 15 15"},t("g",{transform:"translate(-20 -158)"},t("g",{transform:"translate(20 158)"},t("path",{class:"aaa",d:"M7.5,0,6.136,1.364,11.3,6.526H0V8.474H11.3L6.136,13.636,7.5,15,15,7.5Z",transform:"translate(15 15) rotate(180)"})))),t("h2",{class:"TitleMobile"},i("title",this.language))),t("h2",{class:"Title"},i("title",this.language)),t("section",{class:"FieldsSection"},t("div",{class:"ContactWrapper"+(this.isMobile?"Mobile":"")},t("general-input",{class:"Contact",language:this.language,"client-styling":this.clientStyling,"mb-source":this.mbSource,type:"email",name:"contact",displayName:i("emailDisplayName"),emitValue:!0,validation:this.validation,placeholder:i("emailPlaceholder")})),this.captchaData.isEnabled&&"cloudflare"===this.captchaData.provider&&t("slot",{name:"turnstile"}),this.captchaData.isEnabled&&"google"===this.captchaData.provider&&t("slot",{name:"google"})),t("section",{class:"ButtonsWrapper"},t("button",{class:"Button",disabled:!this.isBtnSubmitEnabled,onClick:this.submitRequest},i("btnSubmit",this.language)))))}static get watchers(){return{clientStyling:["handleClientStylingChange"],clientStylingUrl:["handleClientStylingUrlChange"]}}};l.style="::host {\n display: block;\n}\n\n.PlayerForgotPassword {\n font-family: inherit;\n width: 100%;\n height: 100%;\n container-type: inline-size;\n opacity: 1;\n animation-name: fadeIn;\n animation-iteration-count: 1;\n animation-timing-function: ease-in;\n animation-duration: 0.3s;\n container-type: inline-size;\n}\n.PlayerForgotPassword .Error {\n font-size: var(--emw--font-size-x-small, 12px);\n color: var(--emw--color-error, #ed0909);\n}\n.PlayerForgotPassword .Loading {\n font-size: var(--emw--font-size-x-small, 12px);\n color: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword .Title {\n background-color: transparent;\n font-size: var(--emw--font-size-x-large, 26px);\n color: var(--emw--color-primary, #22B04E);\n font-weight: var(--emw--font-weight-semibold, 500);\n}\n.PlayerForgotPassword .TitleMobile {\n font-size: var(--emw--font-size-x-large, 20px);\n color: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword svg {\n fill: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword .ButtonReturn {\n display: none;\n font-family: inherit;\n align-items: center;\n gap: 10px;\n}\n.PlayerForgotPassword .Form {\n display: grid;\n grid-template-columns: repeat(1, 1fr);\n gap: 40px;\n justify-items: stretch;\n align-content: flex-start;\n overflow: auto;\n width: 100%;\n height: 100%;\n}\n.PlayerForgotPassword .Form .FieldsSection {\n display: flex;\n flex-direction: column;\n gap: 30px;\n}\n.PlayerForgotPassword .Form .ContactWrapper {\n display: flex;\n flex-direction: row;\n width: 100%;\n gap: 5px;\n}\n.PlayerForgotPassword .Form .ContactWrapper .Select {\n width: 25%;\n}\n.PlayerForgotPassword .Form .ContactWrapper .Contact {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile {\n display: flex;\n flex-direction: column;\n width: 100%;\n gap: 30px;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile .Select {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile .Contact {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ButtonsSection {\n display: flex;\n flex-direction: column;\n justify-content: space-around;\n align-items: center;\n position: relative;\n}\n.PlayerForgotPassword .Button {\n font-family: inherit;\n border-radius: var(--emw--button-border-radius, var(--emw--border-radius-large, 50px));\n background: var(--emw--button-background-color, var(--emw--color-primary, #22B04E));\n border: var(--emw--button-border, 1px solid var(--emw--button-border-color, #22B04E));\n color: var(--emw--button-text-color, var(--emw--color-white, #FFFFFF));\n font-size: var(--emw--font-size-large, 20px);\n font-weight: var(--emw--font-weight-normal, 400);\n height: 50px;\n width: 100%;\n text-transform: uppercase;\n cursor: pointer;\n}\n.PlayerForgotPassword .Button:disabled {\n background: var(--emw--color-gray-100, #E6E6E6);\n border: var(--emw--button-border, 1px solid var(--emw--button-border-color, #828282));\n pointer-events: none;\n cursor: not-allowed;\n}\n.PlayerForgotPassword.skeleton .Form .ButtonReturn {\n width: 150px;\n height: 30px;\n margin-top: 15px;\n display: block;\n}\n.PlayerForgotPassword.skeleton .Form .FieldsSection {\n display: block;\n}\n.PlayerForgotPassword.skeleton .Form .FieldsSection .FieldContainer .FieldTitle {\n width: 100px;\n margin-top: 30px;\n margin-bottom: 15px;\n}\n.PlayerForgotPassword.skeleton .Form .ButtonsSection .Button {\n font-family: inherit;\n border-radius: 50px;\n background: transparent;\n border: none;\n overflow: hidden;\n}\n@container (max-width: 425px) {\n .PlayerForgotPassword .Form .ButtonReturn {\n display: inline-flex;\n }\n .PlayerForgotPassword .Form .Title {\n display: none;\n }\n}\n\n@keyframes fadeIn {\n 0% {\n opacity: 0.01;\n }\n 1% {\n opacity: 0;\n }\n 50% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}";export{l as P}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/pam-forgot-password",
3
- "version": "1.87.26",
3
+ "version": "1.87.27",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",
@@ -1 +0,0 @@
1
- import{r as e,h as t}from"./index-3a596979.js";const a={en:{title:"Forgot Password",dropdownDisplayName:"Contact",telDisplayName:"Phone Number",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Enter your email",usernameDisplayName:"Username",usernamePlaceholder:"Enter your username",firstNameDisplayName:"First Name",firstNamePlaceholder:"Enter your first name",dateOfBirthDisplayName:"Date of Birth",dateOfBirthPlaceholder:"1911-11-11",loading:"Loading ...",submitError:"Something went wrong. Please try again later",configError:"Something went wrong. Please try again later",successMsg:"If your account exists, a reset link is on its way",btnSubmit:"submit",sms:"sms",email:"email"},ro:{title:"Parolă uitată",dropdownDisplayName:"Contact",telDisplayName:"Număr de telefon",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Introduceți emailul dvs.",usernameDisplayName:"Nume de utilizator",usernamePlaceholder:"Introduceți numele dvs. de utilizator",firstNameDisplayName:"Prenume",firstNamePlaceholder:"Introduceți prenumele dvs.",dateOfBirthDisplayName:"Data nașterii",dateOfBirthPlaceholder:"1911-11-11",loading:"Se încarcă ...",submitError:"Ceva nu a mers bine. Vă rugăm să încercați din nou mai târziu",configError:"Ceva nu a mers bine. Vă rugăm să încercați din nou mai târziu",successMsg:"Dacă contul dvs. există, un link de resetare este va fi trimis",btnSubmit:"Trimite",sms:"sms",email:"email"},fr:{title:"Mot de passe oublié",dropdownDisplayName:"Contact",telDisplayName:"Numéro de téléphone",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Entrez votre email",usernameDisplayName:"Nom d'utilisateur",usernamePlaceholder:"Entrez votre nom d'utilisateur",firstNameDisplayName:"Prénom",firstNamePlaceholder:"Entrez votre prénom",dateOfBirthDisplayName:"Date de naissance",dateOfBirthPlaceholder:"1911-11-11",loading:"Chargement ...",submitError:"Un problème est survenu. Veuillez réessayer plus tard",configError:"Un problème est survenu. Veuillez réessayer plus tard",successMsg:"Si votre compte existe, un lien de réinitialisation est en route",btnSubmit:"soumettre",sms:"sms",email:"email"},hu:{title:"Elfelejtett jelszó",dropdownDisplayName:"Kapcsolat",telDisplayName:"Telefonszám",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Adja meg az email címét",usernameDisplayName:"Felhasználónév",usernamePlaceholder:"Adja meg a felhasználónevét",firstNameDisplayName:"Keresztnév",firstNamePlaceholder:"Adja meg a keresztnevét",dateOfBirthDisplayName:"Születési dátum",dateOfBirthPlaceholder:"1911-11-11",loading:"Betöltés ...",submitError:"Valami hiba történt. Kérjük, próbálja meg később",configError:"Valami hiba történt. Kérjük, próbálja meg később",successMsg:"Ha létezik a fiókja, egy visszaállítási link úton van",btnSubmit:"Beküldés",sms:"sms",email:"email"},tr:{title:"Şifremi Unuttum",dropdownDisplayName:"İletişim",telDisplayName:"Telefon Numarası",telPlaceholder:"0000000000",emailDisplayName:"E-posta",emailPlaceholder:"E-postanızı girin",usernameDisplayName:"Kullanıcı Adı",usernamePlaceholder:"Kullanıcı adınızı girin",firstNameDisplayName:"İsim",firstNamePlaceholder:"İsminizi girin",dateOfBirthDisplayName:"Doğum Tarihi",dateOfBirthPlaceholder:"1911-11-11",loading:"Yükleniyor ...",submitError:"Bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin",configError:"Bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin",successMsg:"Hesabınız varsa, bir sıfırlama bağlantısı yolda",btnSubmit:"Gönder",sms:"sms",email:"e-posta"},el:{title:"Ξεχάσατε τον κωδικό;",dropdownDisplayName:"Επικοινωνία",telDisplayName:"Αριθμός τηλεφώνου",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Εισάγετε το email σας",usernameDisplayName:"Όνομα χρήστη",usernamePlaceholder:"Εισάγετε το όνομα χρήστη σας",firstNameDisplayName:"Όνομα",firstNamePlaceholder:"Εισάγετε το όνομά σας",dateOfBirthDisplayName:"Ημερομηνία γέννησης",dateOfBirthPlaceholder:"1911-11-11",loading:"Φόρτωση ...",submitError:"Κάτι πήγε στραβά. Παρακαλούμε δοκιμάστε ξανά αργότερα",configError:"Κάτι πήγε στραβά. Παρακαλούμε δοκιμάστε ξανά αργότερα",successMsg:"Αν ο λογαριασμός σας υπάρχει, ένας σύνδεσμος επαναφοράς είναι καθ' οδόν",btnSubmit:"υποβάλλουν",sms:"sms",email:"email"},es:{title:"Olvidé mi contraseña",dropdownDisplayName:"Contacto",telDisplayName:"Número de teléfono",telPlaceholder:"0000000000",emailDisplayName:"Correo electrónico",emailPlaceholder:"Introduce tu correo electrónico",usernameDisplayName:"Nombre de usuario",usernamePlaceholder:"Introduce tu nombre de usuario",firstNameDisplayName:"Nombre",firstNamePlaceholder:"Introduce tu nombre",dateOfBirthDisplayName:"Fecha de nacimiento",dateOfBirthPlaceholder:"1911-11-11",loading:"Cargando ...",submitError:"Algo salió mal. Por favor, inténtalo de nuevo más tarde",configError:"Algo salió mal. Por favor, inténtalo de nuevo más tarde",successMsg:"Si tu cuenta existe, un enlace de restablecimiento está en camino",btnSubmit:"enviar",sms:"sms",email:"email"},pt:{title:"Esqueci a Senha",dropdownDisplayName:"Contato",telDisplayName:"Número de Telefone",telPlaceholder:"0000000000",emailDisplayName:"Email",emailPlaceholder:"Digite seu email",usernameDisplayName:"Nome de Usuário",usernamePlaceholder:"Digite seu nome de usuário",firstNameDisplayName:"Nome",firstNamePlaceholder:"Digite seu nome",dateOfBirthDisplayName:"Data de Nascimento",dateOfBirthPlaceholder:"1911-11-11",loading:"Carregando ...",submitError:"Algo deu errado. Por favor, tente novamente mais tarde",configError:"Algo deu errado. Por favor, tente novamente mais tarde",successMsg:"Se sua conta existir, um link de redefinição está a caminho",btnSubmit:"enviar",sms:"sms",email:"email"},hr:{title:"Zaboravljena lozinka",dropdownDisplayName:"Kontakt",telDisplayName:"Broj telefona",telPlaceholder:"0000000000",emailDisplayName:"E-mail",emailPlaceholder:"Unesite svoj e-mail",usernameDisplayName:"Korisničko ime",usernamePlaceholder:"Unesite svoje korisničko ime",firstNameDisplayName:"Ime",firstNamePlaceholder:"Unesite svoje ime",dateOfBirthDisplayName:"Datum rođenja",dateOfBirthPlaceholder:"1911-11-11",loading:"Učitavanje ...",submitError:"Nešto je pošlo po zlu. Molimo pokušajte ponovno kasnije",configError:"Nešto je pošlo po zlu. Molimo pokušajte ponovno kasnije",successMsg:"Ako vaš račun postoji, poveznica za poništavanje lozinke je na putu",btnSubmit:"pošalji",sms:"sms",email:"email"}},i=(e,t)=>a[void 0!==t?t:"en"][e];function o(){const e=navigator.userAgent.toLowerCase(),t=screen.availWidth,a=screen.availHeight;if(e.includes("iphone"))return"mobile";if(e.includes("android")){if(a>t&&t<800)return"mobile";if(t>a&&a<800)return"tablet"}return"desktop"}function r(e,t){if(e){const a=document.createElement("style");a.innerHTML=t,e.appendChild(a)}}function n(e,t){if(!e||!t)return;const a=new URL(t);fetch(a.href).then((e=>e.text())).then((t=>{const a=document.createElement("style");a.innerHTML=t,e&&e.appendChild(a)})).catch((e=>{console.error("There was an error while trying to load client styling from URL",e)}))}const s=class{constructor(t){e(this,t),this.isContactValid=!1,this.validation={mandatory:!0,custom:[]},this.submitRequest=e=>{e.preventDefault();const t=new URL("/api/v1/players/password-management/password/forgot/request",this.endpoint),a=new Headers;this.captchaData.isEnabled&&this.captchaData.token&&a.append("X-Captcha-Response",this.captchaData.token),a.append("Content-Type","application/json");const o=JSON.stringify({contact:this.contact});fetch(t.href,{method:"POST",headers:a,body:o}).then((e=>e.json())).then((e=>{e.errorCode?this.sendErrorNotification(i("submitError",this.language)):(window.postMessage({type:"ForgotPasswordSuccess"}),window.postMessage({type:"WidgetNotification",data:{type:"success",message:i("successMsg",this.language)}},window.location.href))})).catch((()=>{this.sendErrorNotification(i("submitError",this.language))}))},this.toggleScreen=()=>{window.postMessage({type:"OpenLoginRegisterModal",transition:"Login"},window.location.href)},this.endpoint=void 0,this.language=void 0,this.clientStyling=void 0,this.clientStylingUrl=void 0,this.mbSource=void 0,this.translationUrl=void 0,this.contactType="",this.isBtnSubmitEnabled=!1,this.skeletonLoading=!0,this.hasError=!1,this.isMobile="mobile"===o()||"tablet"===o(),this.captchaData={isEnabled:!0,token:"",provider:"",siteKey:""},this.errorMessage=""}sendValidityStateHandler(e){"contact"!==e.detail.name||(this.isContactValid=e.detail.valid)}sendInputValueHandler(e){switch(e.detail.name){case"dropdown":this.contactType=e.detail.value.toLowerCase();break;case"contact":this.contact=e.detail.value}this.updateSubmitButtonState()}updateSubmitButtonState(){this.isBtnSubmitEnabled=this.isContactValid&&!!this.contact&&(!this.captchaData.isEnabled||!!this.captchaData.token)}handleClientStylingChange(e,t){e!=t&&r(this.stylingContainer,this.clientStyling)}handleClientStylingUrlChange(e,t){e!=t&&this.clientStylingUrl&&n(this.stylingContainer,this.clientStylingUrl)}sendErrorNotification(e){window.postMessage({type:"HasError",error:e},window.location.href),window.postMessage({type:"WidgetNotification",data:{type:"error",message:e}},window.location.href)}async componentWillLoad(){var e;this.translationUrl&&await(e=this.translationUrl,new Promise((t=>{fetch(e).then((e=>e.json())).then((e=>{Object.keys(e).forEach((t=>{for(let i in e[t])a[t][i]=e[t][i]})),t(!0)}))}))),this.getConfig().then((()=>{this.appendCaptchaScript()})).catch((e=>{console.error(e),this.hasError=!0,this.errorMessage=i("configError",this.language),this.sendErrorNotification(this.errorMessage)})).finally((()=>{this.skeletonLoading=!1}))}componentDidLoad(){this.stylingContainer&&(null!=window.emMessageBus?function(e,t){if(window.emMessageBus){const a=document.createElement("style");window.emMessageBus.subscribe(t,(t=>{a.innerHTML=t,e&&e.appendChild(a)}))}}(this.stylingContainer,`${this.mbSource}.Style`):(this.clientStyling&&r(this.stylingContainer,this.clientStyling),this.clientStylingUrl&&n(this.stylingContainer,this.clientStylingUrl)))}getConfig(){const e=new URL("/api/v1/players/password-management/password/forgot/config",this.endpoint);return new Promise(((t,a)=>{fetch(e.href).then((e=>{if(!e.ok)throw new Error(`HTTP error! Status: ${e.status}`);return e.json()})).then((e=>{const{captcha:a}=e;a&&"string"==typeof a.provider&&(a.provider=a.provider.toLowerCase()),this.captchaData=Object.assign({},a),t()})).catch((e=>{console.error("Error fetching login configuration:",e),a(e)}))}))}appendCaptchaScript(){const{isEnabled:e,provider:t}=this.captchaData;if(!e)return;const a=document.createElement("script");"cloudflare"===t?a.src="https://challenges.cloudflare.com/turnstile/v0/api.js":"google"===t&&(a.src="https://www.google.com/recaptcha/api.js"),a.onload=this.handleCaptcha.bind(this),document.head.appendChild(a)}handleCaptcha(){const{isEnabled:e,provider:t,siteKey:a}=this.captchaData;e&&["cloudflare","google"].includes(t)&&("cloudflare"===t?window.turnstile.render("#turnstileContainer",{sitekey:a,theme:"light",callback:this.captchaCallback.bind(this)}):"google"===t&&window.grecaptcha.ready((()=>{window.grecaptcha.render("googleContainer",{sitekey:a,callback:this.captchaCallback.bind(this),theme:"light"})})))}captchaCallback(e){this.captchaData.token=e,this.captchaData=Object.assign({},this.captchaData),this.updateSubmitButtonState()}disconnectedCallback(){this.stylingSubscription&&this.stylingSubscription.unsubscribe()}render(){return this.skeletonLoading?t("div",{class:"PlayerForgotPassword skeleton"},t("form",{class:"Form"},t("div",{class:"ButtonReturn"},t("ui-skeleton",{structure:"text",width:"auto",height:"30px"})),t("section",{class:"FieldsSection"},t("div",{class:"FieldContainer"},t("div",{class:"FieldTitle"},t("ui-skeleton",{structure:"title",width:"auto",height:"10px"})),t("ui-skeleton",{structure:"rectangle",width:"auto",height:"35px"}))),t("section",{class:"ButtonsSection"},t("div",{class:"Button"},t("ui-skeleton",{structure:"rectangle",width:"auto",height:"50px"}))))):t("div",{class:"PlayerForgotPassword",ref:e=>this.stylingContainer=e},this.hasError?t("h4",{class:"Error"},i("configError",this.language)):t("form",{action:".",class:"Form"},t("div",{class:"ButtonReturn",onClick:this.toggleScreen},t("svg",{xmlns:"http://www.w3.org/2000/svg",width:"15",height:"15",viewBox:"0 0 15 15"},t("g",{transform:"translate(-20 -158)"},t("g",{transform:"translate(20 158)"},t("path",{class:"aaa",d:"M7.5,0,6.136,1.364,11.3,6.526H0V8.474H11.3L6.136,13.636,7.5,15,15,7.5Z",transform:"translate(15 15) rotate(180)"})))),t("h2",{class:"TitleMobile"},i("title",this.language))),t("h2",{class:"Title"},i("title",this.language)),t("section",{class:"FieldsSection"},t("div",{class:"ContactWrapper"+(this.isMobile?"Mobile":"")},t("general-input",{class:"Contact",language:this.language,"client-styling":this.clientStyling,"mb-source":this.mbSource,type:"email",name:"contact",displayName:i("emailDisplayName"),emitValue:!0,validation:this.validation,placeholder:i("emailPlaceholder")})),this.captchaData.isEnabled&&"cloudflare"===this.captchaData.provider&&t("slot",{name:"turnstile"}),this.captchaData.isEnabled&&"google"===this.captchaData.provider&&t("slot",{name:"google"})),t("section",{class:"ButtonsWrapper"},t("button",{class:"Button",disabled:!this.isBtnSubmitEnabled,onClick:this.submitRequest},i("btnSubmit",this.language)))))}static get watchers(){return{clientStyling:["handleClientStylingChange"],clientStylingUrl:["handleClientStylingUrlChange"]}}};s.style="::host {\n display: block;\n}\n\n.PlayerForgotPassword {\n font-family: inherit;\n width: 100%;\n height: 100%;\n container-type: inline-size;\n opacity: 1;\n animation-name: fadeIn;\n animation-iteration-count: 1;\n animation-timing-function: ease-in;\n animation-duration: 0.3s;\n container-type: inline-size;\n}\n.PlayerForgotPassword .Error {\n font-size: var(--emw--font-size-x-small, 12px);\n color: var(--emw--color-error, #ed0909);\n}\n.PlayerForgotPassword .Loading {\n font-size: var(--emw--font-size-x-small, 12px);\n color: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword .Title {\n background-color: transparent;\n font-size: var(--emw--font-size-x-large, 26px);\n color: var(--emw--color-primary, #22B04E);\n font-weight: var(--emw--font-weight-semibold, 500);\n}\n.PlayerForgotPassword .TitleMobile {\n font-size: var(--emw--font-size-x-large, 20px);\n color: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword svg {\n fill: var(--emw--color-primary, #22B04E);\n}\n.PlayerForgotPassword .ButtonReturn {\n display: none;\n font-family: inherit;\n align-items: center;\n gap: 10px;\n}\n.PlayerForgotPassword .Form {\n display: grid;\n grid-template-columns: repeat(1, 1fr);\n gap: 40px;\n justify-items: stretch;\n align-content: flex-start;\n overflow: auto;\n width: 100%;\n height: 100%;\n}\n.PlayerForgotPassword .Form .FieldsSection {\n display: flex;\n flex-direction: column;\n gap: 30px;\n}\n.PlayerForgotPassword .Form .ContactWrapper {\n display: flex;\n flex-direction: row;\n width: 100%;\n gap: 5px;\n}\n.PlayerForgotPassword .Form .ContactWrapper .Select {\n width: 25%;\n}\n.PlayerForgotPassword .Form .ContactWrapper .Contact {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile {\n display: flex;\n flex-direction: column;\n width: 100%;\n gap: 30px;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile .Select {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ContactWrapperMobile .Contact {\n width: 100%;\n}\n.PlayerForgotPassword .Form .ButtonsSection {\n display: flex;\n flex-direction: column;\n justify-content: space-around;\n align-items: center;\n position: relative;\n}\n.PlayerForgotPassword .Button {\n font-family: inherit;\n border-radius: var(--emw--button-border-radius, var(--emw--border-radius-large, 50px));\n background: var(--emw--button-background-color, var(--emw--color-primary, #22B04E));\n border: var(--emw--button-border, 1px solid var(--emw--button-border-color, #22B04E));\n color: var(--emw--button-text-color, var(--emw--color-white, #FFFFFF));\n font-size: var(--emw--font-size-large, 20px);\n font-weight: var(--emw--font-weight-normal, 400);\n height: 50px;\n width: 100%;\n text-transform: uppercase;\n cursor: pointer;\n}\n.PlayerForgotPassword .Button:disabled {\n background: var(--emw--color-gray-100, #E6E6E6);\n border: var(--emw--button-border, 1px solid var(--emw--button-border-color, #828282));\n pointer-events: none;\n cursor: not-allowed;\n}\n.PlayerForgotPassword.skeleton .Form .ButtonReturn {\n width: 150px;\n height: 30px;\n margin-top: 15px;\n display: block;\n}\n.PlayerForgotPassword.skeleton .Form .FieldsSection {\n display: block;\n}\n.PlayerForgotPassword.skeleton .Form .FieldsSection .FieldContainer .FieldTitle {\n width: 100px;\n margin-top: 30px;\n margin-bottom: 15px;\n}\n.PlayerForgotPassword.skeleton .Form .ButtonsSection .Button {\n font-family: inherit;\n border-radius: 50px;\n background: transparent;\n border: none;\n overflow: hidden;\n}\n@container (max-width: 425px) {\n .PlayerForgotPassword .Form .ButtonReturn {\n display: inline-flex;\n }\n .PlayerForgotPassword .Form .Title {\n display: none;\n }\n}\n\n@keyframes fadeIn {\n 0% {\n opacity: 0.01;\n }\n 1% {\n opacity: 0;\n }\n 50% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}";export{s as P}