@italia/chip 0.1.0-alpha.2 → 1.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/custom-elements.json +8 -8
- package/dist/src/it-chip.js +59 -8
- package/dist/src/it-chip.js.map +1 -1
- package/package.json +11 -7
- package/styles/globals.scss +54 -1
package/README.md
CHANGED
|
@@ -5,14 +5,14 @@ This webcomponent follows the [open-wc](https://github.com/open-wc/open-wc) reco
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm i
|
|
8
|
+
npm i @italia/chip
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```html
|
|
14
14
|
<script type="module">
|
|
15
|
-
import '@italia/
|
|
15
|
+
import '@italia/chip';
|
|
16
16
|
</script>
|
|
17
17
|
|
|
18
18
|
<it-chip></it-chip>
|
package/custom-elements.json
CHANGED
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
{
|
|
290
290
|
"kind": "variable",
|
|
291
291
|
"name": "meta",
|
|
292
|
-
"default": "{ title: 'Componenti/Chip', component: 'it-chip', tags: ['
|
|
292
|
+
"default": "{ title: 'Componenti/Chip', component: 'it-chip', tags: ['a11y-ok', 'web-component'], args: { size: 'sm', label: 'Etichetta', href: undefined, variant: 'primary', isDisabled: false, avatar: '', avatarAlt: 'Avatar', a11yDescription: '', dismissable: false, withIcon: false, withDismissButton: false, }, argTypes: { size: { control: 'select', description: 'Dimensione del chip (`sm` o `lg`).', options: CHIP_SIZES, table: { defaultValue: { summary: 'sm' } }, }, label: { control: 'text', description: \"Testo mostrato all'interno della chip.\", }, href: { control: 'text', description: 'Se valorizzato, la chip sarà un link (elemento `<a>`).', type: 'string', table: { defaultValue: { summary: undefined } }, }, variant: { control: 'select', description: 'Colore della chip, secondo le varianti di Bootstrap Italia.', options: CHIP_VARIANTS, }, dismissable: { control: 'boolean', description: \"Indica che la chip può essere chiusa, ma non inserisce alcun pulsante automaticamente. Il pulsante deve essere inserito nello slot `dismiss-button` dall'utilizzatore, comprensivo di eventuale JavaScript per handling di eventi. Per un esempio completo con Javascript, vedi la story [Chip con chiusura](?path=/story/componenti-chip--chip-con-chiusura).\", table: { defaultValue: { summary: 'false' } }, }, isDisabled: { control: 'boolean', description: 'Disabilita la chip. Utile in contesti non interattivi o di sola lettura.', table: { defaultValue: { summary: 'false' } }, }, avatar: { control: 'text', description: `Percorso a un'immagine da mostrare come avatar, es. [randomuser.me](https://randomuser.me/api/portraits/men/46.jpg).`, table: { defaultValue: { summary: 'https://randomuser.me/api/portraits/men/46.jpg' } }, }, avatarAlt: { control: 'text', description: `Testo alternativo per l'immagine dell'avatar, utile per l'accessibilità.`, table: { defaultValue: { summary: 'Alt avatar' } }, }, a11yDescription: { control: 'text', description: `Testo descrittivo aggiuntivo per la chip, utile per l'accessibilità. Viene inserito come contenuto visivamente nascosto all'inizio della chip, ad esempio per specificare a che contenuto si fa riferimento, o assegnare una dicitur come \"Argomento:\".`, table: { defaultValue: { summary: '' } }, }, withIcon: { control: 'boolean', description: \"Simula la presenza di un'icona nella chip. Non è una proprietà del componente, ma serve per mostrare composizioni nel playground interattivo.\", }, withDismissButton: { control: 'boolean', description: 'Simula la presenza di un pulsante di rimozione nella chip. Non è una proprietà del componente, ma serve per mostrare composizioni nel playground interattivo.', }, }, parameters: { docs: { page: null, }, }, } satisfies Meta< ChipProps & { withIcon?: boolean; withDismissButton?: boolean; } >"
|
|
293
293
|
},
|
|
294
294
|
{
|
|
295
295
|
"kind": "variable",
|
|
@@ -305,7 +305,7 @@
|
|
|
305
305
|
"type": {
|
|
306
306
|
"text": "Story"
|
|
307
307
|
},
|
|
308
|
-
"default": "{ name: 'Personalizzazione degli stili', tags: ['!dev'], parameters: { viewMode: 'docs',
|
|
308
|
+
"default": "{ name: 'Personalizzazione degli stili', tags: ['!dev', '!autodocs'], parameters: { viewMode: 'docs', docs: { canvas: { hidden: true, sourceState: 'none' }, }, }, render: () => html`<div class=\"hide-preview\"></div>`, }"
|
|
309
309
|
},
|
|
310
310
|
{
|
|
311
311
|
"kind": "variable",
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
"type": {
|
|
322
322
|
"text": "Story"
|
|
323
323
|
},
|
|
324
|
-
"default": "{ name: 'Varianti di colore', args: { label: 'Etichetta', size: 'sm', dismissable: false },
|
|
324
|
+
"default": "{ name: 'Varianti di colore', args: { label: 'Etichetta', size: 'sm', dismissable: false }, render: () => html` <div style=\"display: flex; gap: 1rem; flex-wrap: wrap;\"> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"primary\"></it-chip> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"secondary\"></it-chip> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"success\"></it-chip> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"danger\"></it-chip> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"warning\"></it-chip> </div> `, }"
|
|
325
325
|
},
|
|
326
326
|
{
|
|
327
327
|
"kind": "variable",
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"type": {
|
|
330
330
|
"text": "Story"
|
|
331
331
|
},
|
|
332
|
-
"default": "{ name: 'Varianti di colore link', args: { label: 'Etichetta', size: 'sm', dismissable: false },
|
|
332
|
+
"default": "{ name: 'Varianti di colore link', args: { label: 'Etichetta', size: 'sm', dismissable: false }, render: () => html` <div style=\"display: flex; gap: 1rem; flex-wrap: wrap;\"> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"primary\" href=\"#\"></it-chip> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"secondary\" href=\"#\"></it-chip> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"success\" href=\"#\"></it-chip> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"danger\" href=\"#\"></it-chip> <it-chip label=\"Etichetta\" size=\"sm\" variant=\"warning\" href=\"#\"></it-chip> </div> `, }"
|
|
333
333
|
},
|
|
334
334
|
{
|
|
335
335
|
"kind": "variable",
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
"type": {
|
|
346
346
|
"text": "Story"
|
|
347
347
|
},
|
|
348
|
-
"default": "{ name: 'Chip con chiusura', render: () => html` <it-chip label=\"Etichetta\" size=\"sm\" variant=\"primary\" dismissable id=\"chip-dismissable\"> <it-button slot=\"dismiss-button\" icon it-aria-label=\"Elimina etichetta\" it-aria-description=\"Puoi premere per eliminare la chip.\" @click=${(e: Event) => { const chip = (e.currentTarget as HTMLElement).closest('it-chip'); if (chip) chip.remove(); }} @keydown=${(e: KeyboardEvent) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); const chip = (e.currentTarget as HTMLElement).closest('it-chip'); if (chip) chip.remove(); } }} > <it-icon name=\"it-close\" size=\"sm\"></it-icon> </it-button> </it-chip> `, parameters: { docs: { canvas: { sourceState: 'shown', },
|
|
348
|
+
"default": "{ name: 'Chip con chiusura', render: () => html` <it-chip label=\"Etichetta\" size=\"sm\" variant=\"primary\" dismissable id=\"chip-dismissable\"> <it-button slot=\"dismiss-button\" icon it-aria-label=\"Elimina etichetta\" it-aria-description=\"Puoi premere per eliminare la chip.\" @click=${(e: Event) => { const chip = (e.currentTarget as HTMLElement).closest('it-chip'); if (chip) chip.remove(); }} @keydown=${(e: KeyboardEvent) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); const chip = (e.currentTarget as HTMLElement).closest('it-chip'); if (chip) chip.remove(); } }} > <it-icon name=\"it-close\" size=\"sm\"></it-icon> </it-button> </it-chip> `, parameters: { docs: { canvas: { sourceState: 'shown', }, source: { code: `<it-chip label=\"Etichetta\" size=\"sm\" variant=\"primary\" dismissable id=\"chip-dismissable\"> <it-button slot=\"dismiss-button\" icon it-aria-label=\"Elimina etichetta\" it-aria-description=\"Puoi premere per eliminare la chip.\" > <it-icon name=\"it-close\" size=\"sm\"></it-icon> </it-button> </it-chip> <script type=\"module\"> const dismissButtons = document.querySelectorAll('it-chip#chip-dismissable [slot=\"dismiss-button\"]'); dismissButtons.forEach((btn) => { const removeChip = (e) => { const chip = btn.closest('it-chip'); if (chip) chip.remove(); }; btn.addEventListener('click', removeChip); btn.addEventListener('keydown', (e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); removeChip(e); } }); }); </script> `, language: 'html', }, }, }, }"
|
|
349
349
|
},
|
|
350
350
|
{
|
|
351
351
|
"kind": "variable",
|
|
@@ -353,7 +353,7 @@
|
|
|
353
353
|
"type": {
|
|
354
354
|
"text": "Story"
|
|
355
355
|
},
|
|
356
|
-
"default": "{ name: 'Chip disabilitata', args: { isDisabled: true, },
|
|
356
|
+
"default": "{ name: 'Chip disabilitata', args: { isDisabled: true, }, render: (args) => html` <it-chip label=\"Etichetta\" size=\"sm\" variant=\"${args.variant}\" dismissable ?is-disabled=\"${args.isDisabled}\"> <it-button slot=\"dismiss-button\" icon it-aria-label=\"Elimina etichetta\" ?disabled=\"${args.isDisabled}\" it-aria-description=\"Questa chip è disabilitata e non può essere rimossa.\" > <it-icon name=\"it-close\" size=\"sm\"></it-icon> </it-button> </it-chip> `, }"
|
|
357
357
|
},
|
|
358
358
|
{
|
|
359
359
|
"kind": "variable",
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
"type": {
|
|
362
362
|
"text": "Story"
|
|
363
363
|
},
|
|
364
|
-
"default": "{ name: 'Chip con avatar',
|
|
364
|
+
"default": "{ name: 'Chip con avatar', render: () => html` <div class=\"d-flex gap-2 flex-wrap align-items-center\"> <it-chip label=\"Mario Rossi\" size=\"sm\" variant=\"primary\" avatar=\"https://randomuser.me/api/portraits/men/46.jpg\" avatar-alt=\"Mario Rossi\" dismissable > <it-button slot=\"dismiss-button\" icon it-aria-label=\"Rimuovi Mario Rossi\" it-aria-description=\"Puoi premere per rimuovere questo utente.\" > <it-icon name=\"it-close\" size=\"sm\"></it-icon> </it-button> </it-chip> <it-chip label=\"Anna Verdi\" size=\"lg\" variant=\"secondary\" avatar=\"https://randomuser.me/api/portraits/women/32.jpg\" avatar-alt=\"Anna Verdi\" dismissable > <it-button slot=\"dismiss-button\" icon it-aria-label=\"Rimuovi Anna Verdi\" it-aria-description=\"Puoi premere per rimuovere questo utente.\" > <it-icon name=\"it-close\" size=\"sm\"></it-icon> </it-button> </it-chip> </div> `, }"
|
|
365
365
|
},
|
|
366
366
|
{
|
|
367
367
|
"kind": "variable",
|
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
"type": {
|
|
370
370
|
"text": "Story"
|
|
371
371
|
},
|
|
372
|
-
"default": "{ name: 'Chip con icona',
|
|
372
|
+
"default": "{ name: 'Chip con icona', render: () => html` <div class=\"d-flex gap-2 flex-wrap align-items-center\"> <it-chip label=\"Download\" size=\"sm\" variant=\"primary\" dismissable> <it-icon slot=\"icon\" name=\"it-download\"></it-icon> <it-button slot=\"dismiss-button\" icon it-aria-label=\"Rimuovi download\" it-aria-description=\"Puoi premere per rimuovere questa azione.\" > <it-icon name=\"it-close\" size=\"sm\"></it-icon> </it-button> </it-chip> <it-chip label=\"Carica file\" size=\"lg\" variant=\"success\" dismissable> <it-icon slot=\"icon\" name=\"it-upload\"></it-icon> <it-button slot=\"dismiss-button\" icon it-aria-label=\"Rimuovi carica file\" it-aria-description=\"Puoi premere per rimuovere questa azione.\" > <it-icon name=\"it-close\" size=\"sm\"></it-icon> </it-button> </it-chip> <it-chip href=\"#\" label=\"Preferiti\" size=\"sm\" variant=\"warning\"> <it-icon slot=\"icon\" name=\"it-star-full\"></it-icon> </it-chip> </div> `, }"
|
|
373
373
|
}
|
|
374
374
|
],
|
|
375
375
|
"exports": [
|
package/dist/src/it-chip.js
CHANGED
|
@@ -437,6 +437,7 @@ const interactions = new WeakMap();
|
|
|
437
437
|
/** A reactive controller to allow form controls to participate in form submission, validation, etc. */
|
|
438
438
|
class FormControlController {
|
|
439
439
|
constructor(host, options) {
|
|
440
|
+
this.submittedOnce = false;
|
|
440
441
|
this.handleFormData = (event) => {
|
|
441
442
|
// console.log('handleFormData');
|
|
442
443
|
const disabled = this.options.disabled(this.host);
|
|
@@ -458,6 +459,17 @@ class FormControlController {
|
|
|
458
459
|
event.formData.append(name, value);
|
|
459
460
|
}
|
|
460
461
|
break;
|
|
462
|
+
case 'it-checkbox':
|
|
463
|
+
if (this.host.checked) {
|
|
464
|
+
if (event.formData.getAll(name).indexOf(value) < 0) {
|
|
465
|
+
// handle group checkbox
|
|
466
|
+
event.formData.append(name, value);
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
break;
|
|
470
|
+
case 'it-checkbox-group':
|
|
471
|
+
// non settare valori in formData, perchè ogni singola checkbox setta il suo valore
|
|
472
|
+
break;
|
|
461
473
|
default:
|
|
462
474
|
if (Array.isArray(value)) {
|
|
463
475
|
value.forEach((val) => {
|
|
@@ -479,13 +491,30 @@ class FormControlController {
|
|
|
479
491
|
this.setUserInteracted(control, true);
|
|
480
492
|
});
|
|
481
493
|
}
|
|
482
|
-
|
|
494
|
+
const resReportValidity = reportValidity(this.host);
|
|
495
|
+
if (this.form && !this.form.noValidate && !disabled && !resReportValidity) {
|
|
483
496
|
event.preventDefault();
|
|
484
497
|
// event.stopImmediatePropagation(); // se lo attiviamo, valida un campo alla volta
|
|
498
|
+
// Scroll al primo controllo non valido
|
|
499
|
+
const formControls = formCollections.get(this.form);
|
|
500
|
+
if (formControls) {
|
|
501
|
+
for (const control of formControls) {
|
|
502
|
+
if (!control.validity?.valid) {
|
|
503
|
+
// Scroll smooth verso il controllo non valido
|
|
504
|
+
control.scrollIntoView({
|
|
505
|
+
behavior: 'smooth',
|
|
506
|
+
block: 'center',
|
|
507
|
+
});
|
|
508
|
+
break;
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
}
|
|
485
512
|
}
|
|
513
|
+
this.submittedOnce = true;
|
|
486
514
|
};
|
|
487
515
|
this.handleFormReset = () => {
|
|
488
516
|
this.options.setValue(this.host, '');
|
|
517
|
+
this.submittedOnce = false;
|
|
489
518
|
this.setUserInteracted(this.host, false);
|
|
490
519
|
interactions.set(this.host, []);
|
|
491
520
|
};
|
|
@@ -650,6 +679,7 @@ class FormControlController {
|
|
|
650
679
|
if (!formCollection) {
|
|
651
680
|
return;
|
|
652
681
|
}
|
|
682
|
+
this.submittedOnce = false;
|
|
653
683
|
// Remove this host from the form's collection
|
|
654
684
|
formCollection.delete(this.host);
|
|
655
685
|
// Check to make sure there's no other form controls in the collection. If we do this
|
|
@@ -746,6 +776,10 @@ class FormControlController {
|
|
|
746
776
|
host.toggleAttribute('data-user-invalid', !isValid && hasInteracted);
|
|
747
777
|
host.toggleAttribute('data-user-valid', isValid && hasInteracted);
|
|
748
778
|
}
|
|
779
|
+
userInteracted() {
|
|
780
|
+
const hasInteracted = Boolean(userInteractedControls.has(this.host));
|
|
781
|
+
return hasInteracted;
|
|
782
|
+
}
|
|
749
783
|
/**
|
|
750
784
|
* Updates the form control's validity based on the current value of `host.validity.valid`. Call this when anything
|
|
751
785
|
* that affects constraint validation changes so the component receives the correct validity states.
|
|
@@ -782,6 +816,7 @@ const translation = {
|
|
|
782
816
|
$name: 'Italiano',
|
|
783
817
|
$dir: 'ltr',
|
|
784
818
|
validityRequired: 'Questo campo è obbligatorio.',
|
|
819
|
+
validityGroupRequired: "Scegli almeno un'opzione",
|
|
785
820
|
validityPattern: 'Il valore non corrisponde al formato richiesto.',
|
|
786
821
|
validityMinlength: 'Il valore deve essere lungo almeno {minlength} caratteri.',
|
|
787
822
|
validityMaxlength: 'Il valore deve essere lungo al massimo {maxlength} caratteri.',
|
|
@@ -826,24 +861,27 @@ class FormControl extends BaseLocalizedComponent {
|
|
|
826
861
|
this.maxlength = -1;
|
|
827
862
|
/** If the input is required. */
|
|
828
863
|
this.required = false;
|
|
864
|
+
/* For grouped input, like checkbox-group */
|
|
865
|
+
this.isInGroup = false;
|
|
829
866
|
this.validationMessage = '';
|
|
830
867
|
}
|
|
831
868
|
/** Gets the validity state object */
|
|
832
869
|
get validity() {
|
|
833
870
|
return this.inputElement?.validity;
|
|
834
871
|
}
|
|
872
|
+
/** Gets the associated form, if one exists. */
|
|
873
|
+
getForm() {
|
|
874
|
+
return this.formControlController.getForm();
|
|
875
|
+
}
|
|
835
876
|
// Form validation methods
|
|
836
877
|
checkValidity() {
|
|
837
878
|
const inputValid = this.inputElement?.checkValidity() ?? true; // this.inputElement.checkValidity() è la validazione del browser
|
|
838
879
|
return inputValid;
|
|
839
880
|
}
|
|
840
|
-
/** Gets the associated form, if one exists. */
|
|
841
|
-
getForm() {
|
|
842
|
-
return this.formControlController.getForm();
|
|
843
|
-
}
|
|
844
881
|
/** Checks for validity and shows the browser's validation message if the control is invalid. */
|
|
845
882
|
reportValidity() {
|
|
846
|
-
const ret = this.inputElement.checkValidity();
|
|
883
|
+
// const ret = this.inputElement.checkValidity();
|
|
884
|
+
const ret = this.checkValidity(); // chiama la checkValidity, che se è stata overridata chiama quella
|
|
847
885
|
this.handleValidationMessages();
|
|
848
886
|
return ret; // this.inputElement.reportValidity();
|
|
849
887
|
}
|
|
@@ -888,7 +926,8 @@ class FormControl extends BaseLocalizedComponent {
|
|
|
888
926
|
handleValidationMessages() {
|
|
889
927
|
if (!this.customValidation) {
|
|
890
928
|
const _v = this.inputElement.validity;
|
|
891
|
-
|
|
929
|
+
const isRequiredHandledByGroup = this.isInGroup === true;
|
|
930
|
+
if (_v.valueMissing && !isRequiredHandledByGroup) {
|
|
892
931
|
this.setCustomValidity(this.$t('validityRequired'));
|
|
893
932
|
}
|
|
894
933
|
else if (_v.patternMismatch) {
|
|
@@ -959,7 +998,7 @@ class FormControl extends BaseLocalizedComponent {
|
|
|
959
998
|
if (this.customValidation) {
|
|
960
999
|
this.setCustomValidity(this.validationText ?? '');
|
|
961
1000
|
}
|
|
962
|
-
else {
|
|
1001
|
+
else if (this.formControlController.userInteracted()) {
|
|
963
1002
|
this.formControlController.updateValidity();
|
|
964
1003
|
}
|
|
965
1004
|
}
|
|
@@ -1027,11 +1066,23 @@ __decorate([
|
|
|
1027
1066
|
,
|
|
1028
1067
|
__metadata("design:type", Object)
|
|
1029
1068
|
], FormControl.prototype, "required", void 0);
|
|
1069
|
+
__decorate([
|
|
1070
|
+
property({ type: Boolean }),
|
|
1071
|
+
__metadata("design:type", Object)
|
|
1072
|
+
], FormControl.prototype, "isInGroup", void 0);
|
|
1030
1073
|
__decorate([
|
|
1031
1074
|
state(),
|
|
1032
1075
|
__metadata("design:type", Object)
|
|
1033
1076
|
], FormControl.prototype, "validationMessage", void 0);
|
|
1034
1077
|
|
|
1078
|
+
if (typeof window !== 'undefined') {
|
|
1079
|
+
window._itAnalytics = window._itAnalytics || {};
|
|
1080
|
+
window._itAnalytics = {
|
|
1081
|
+
...window._itAnalytics,
|
|
1082
|
+
version: '1.0.0-alpha.4',
|
|
1083
|
+
};
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1035
1086
|
var styles = css`/***************************** 1 ****************************************/
|
|
1036
1087
|
/***************************** 2 ****************************************/
|
|
1037
1088
|
/***************************** 1 ****************************************/
|
package/dist/src/it-chip.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"it-chip.js","sources":["../../../../node_modules/.pnpm/@rollup+plugin-typescript@12.3.0_rollup@4.52.5_tslib@2.8.1_typescript@5.8.3/node_modules/tslib/tslib.es6.js","../../../globals/dist/src/directives/setAttributes.js","../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","../../../i18n/dist/src/index.js","../../../globals/dist/src/utils/logger.js","../../../globals/dist/src/base-component/base-component.js","../../../globals/dist/src/form/form-controller.js","../../../globals/dist/src/form/locales/it.js","../../../globals/dist/src/form/form-control.js","../../../src/it-chip.ts"],"sourcesContent":["/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nexport function __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nexport function __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nexport function __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\r\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\r\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nvar ownKeys = function(o) {\r\n ownKeys = Object.getOwnPropertyNames || function (o) {\r\n var ar = [];\r\n for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;\r\n return ar;\r\n };\r\n return ownKeys(o);\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== \"default\") __createBinding(result, mod, k[i]);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nexport function __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose, inner;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n if (async) inner = dispose;\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nexport function __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n var r, s = 0;\r\n function next() {\r\n while (r = env.stack.pop()) {\r\n try {\r\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\r\n if (r.dispose) {\r\n var result = r.dispose.call(r.value);\r\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n else s |= 1;\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\nexport function __rewriteRelativeImportExtension(path, preserveJsx) {\r\n if (typeof path === \"string\" && /^\\.\\.?\\//.test(path)) {\r\n return path.replace(/\\.(tsx)$|((?:\\.d)?)((?:\\.[^./]+?)?)\\.([cm]?)ts$/i, function (m, tsx, d, ext, cm) {\r\n return tsx ? preserveJsx ? \".jsx\" : \".js\" : d && (!ext || !cm) ? m : (d + ext + \".\" + cm.toLowerCase() + \"js\");\r\n });\r\n }\r\n return path;\r\n}\r\n\r\nexport default {\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __esDecorate: __esDecorate,\r\n __runInitializers: __runInitializers,\r\n __propKey: __propKey,\r\n __setFunctionName: __setFunctionName,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n __rewriteRelativeImportExtension: __rewriteRelativeImportExtension,\r\n};\r\n","import { directive, Directive } from 'lit/directive.js';\nclass SetAttributesDirective extends Directive {\n update(part, [attributes]) {\n const el = part.element;\n for (const [name, value] of Object.entries(attributes)) {\n if (value != null)\n el.setAttribute(name, value);\n else\n el.removeAttribute(name);\n }\n return null;\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n render(_attributes) {\n return null;\n }\n}\n/* How to use:\n\n<textarea ${setAttributes(this._ariaAttributes)} ... />\n*/\nconst setAttributes = directive(SetAttributesDirective);\nexport default setAttributes;\n//# sourceMappingURL=setAttributes.js.map","function r(e){var t,f,n=\"\";if(\"string\"==typeof e||\"number\"==typeof e)n+=e;else if(\"object\"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=\" \"),n+=f)}else for(f in e)e[f]&&(n&&(n+=\" \"),n+=f);return n}export function clsx(){for(var e,t,f=0,n=\"\",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=\" \"),n+=t);return n}export default clsx;","const connectedElements = new Set();\nif (window && !window.translations) {\n window.translations = new Map();\n}\nconst { translations } = window;\nlet fallback;\n// TODO: We need some way for users to be able to set these on the server.\nlet documentDirection = 'ltr';\n// Fallback for server.\nlet documentLanguage = 'en';\nconst isClient = typeof MutationObserver !== 'undefined' &&\n typeof document !== 'undefined' &&\n typeof document.documentElement !== 'undefined';\n/** Updates all localized elements that are currently connected */\nfunction update() {\n if (isClient) {\n documentDirection = document.documentElement.dir || 'ltr';\n documentLanguage = document.documentElement.lang || navigator.language;\n }\n [...connectedElements.keys()].forEach((el) => {\n const litEl = el;\n if (typeof litEl.requestUpdate === 'function') {\n litEl.requestUpdate();\n }\n });\n}\nif (isClient) {\n const documentElementObserver = new MutationObserver(update);\n documentDirection = document.documentElement.dir || 'ltr';\n documentLanguage = document.documentElement.lang || navigator.language;\n // Watch for changes on <html lang>\n documentElementObserver.observe(document.documentElement, {\n attributes: true,\n attributeFilter: ['dir', 'lang'],\n });\n}\n/** Registers one or more translations */\nfunction registerTranslation(...translation) {\n translation.forEach((t) => {\n const code = t.$code.toLowerCase();\n if (translations.has(code)) {\n // Merge translations that share the same language code\n translations.set(code, { ...translations.get(code), ...t });\n }\n else {\n translations.set(code, t);\n }\n // The first translation that's registered is the fallback\n if (!fallback) {\n fallback = t;\n }\n });\n update();\n}\nwindow.registerTranslation = registerTranslation;\n/**\n * Localize Reactive Controller for components built with Lit\n *\n * To use this controller, import the class and instantiate it in a custom element constructor:\n *\n * private localize = new LocalizeController(this);\n *\n * This will add the element to the set and make it respond to changes to <html dir|lang> automatically. To make it\n * respond to changes to its own dir|lang properties, make it a property:\n *\n * @property() dir: string;\n * @property() lang: string;\n *\n * To use a translation method, call it like this:\n *\n * ${this.localize.term('term_key_here')}\n * ${this.localize.date('2021-12-03')}\n * ${this.localize.number(1000000)}\n */\nclass LocalizeController {\n constructor(host) {\n this.host = host;\n this.host.addController(this);\n }\n hostConnected() {\n connectedElements.add(this.host);\n }\n hostDisconnected() {\n connectedElements.delete(this.host);\n }\n /**\n * Gets the host element's directionality as determined by the `dir` attribute. The return value is transformed to\n * lowercase.\n */\n dir() {\n return `${this.host.dir || documentDirection}`.toLowerCase();\n }\n /**\n * Gets the host element's language as determined by the `lang` attribute. The return value is transformed to\n * lowercase.\n */\n lang() {\n return `${this.host.lang || documentLanguage}`.toLowerCase();\n }\n // eslint-disable-next-line class-methods-use-this\n getTranslationData(lang) {\n // Convert \"en_US\" to \"en-US\". Note that both underscores and dashes are allowed per spec, but underscores result in\n // a RangeError by the call to `new Intl.Locale()`. See: https://unicode.org/reports/tr35/#unicode-locale-identifier\n const locale = new Intl.Locale(lang.replace(/_/g, '-'));\n const language = locale?.language.toLowerCase();\n const region = locale?.region?.toLowerCase() ?? '';\n const primary = translations.get(`${language}-${region}`);\n const secondary = translations.get(language);\n return { locale, language, region, primary, secondary };\n }\n /** Determines if the specified term exists, optionally checking the fallback translation. */\n exists(key, options) {\n const { primary, secondary } = this.getTranslationData(options.lang ?? this.lang());\n const mergedOptions = {\n includeFallback: false,\n ...options,\n };\n if ((primary && primary[key]) ||\n (secondary && secondary[key]) ||\n (mergedOptions.includeFallback && fallback && fallback[key])) {\n return true;\n }\n return false;\n }\n /** Outputs a translated term. */\n term(key, ...args) {\n const { primary, secondary } = this.getTranslationData(this.lang());\n let term;\n // Look for a matching term using regionCode, code, then the fallback\n if (primary && primary[key]) {\n term = primary[key];\n }\n else if (secondary && secondary[key]) {\n term = secondary[key];\n }\n else if (fallback && fallback[key]) {\n term = fallback[key];\n }\n else {\n // eslint-disable-next-line no-console\n console.error(`No translation found for: ${String(key)}`);\n return String(key);\n }\n if (typeof term === 'function') {\n return term(...args);\n }\n return term;\n }\n /** Outputs a localized date in the specified format. */\n date(dateToFormat, options) {\n const date = new Date(dateToFormat);\n return new Intl.DateTimeFormat(this.lang(), options).format(date);\n }\n /** Outputs a localized number in the specified format. */\n number(numberToFormat, options) {\n const num = Number(numberToFormat);\n return Number.isNaN(num) ? '' : new Intl.NumberFormat(this.lang(), options).format(num);\n }\n /** Outputs a localized time in relative format. */\n relativeTime(value, unit, options) {\n return new Intl.RelativeTimeFormat(this.lang(), options).format(value, unit);\n }\n}\n\n/**\n * @param Base The base class.\n * @returns A mix-in implementing `localizations` method.\n *\n *@example\n * <!-- Terms -->\n ${this.$localize.term('hello')}\n or\n ${this.$t('hello')}\n\n <!-- Dates -->\n ${this.$localize.date('2021-09-15 14:00:00 ET', { month: 'long', day: 'numeric', year: 'numeric' })}\n or\n ${this.$d('2021-09-15 14:00:00 ET', { month: 'long', day: 'numeric', year: 'numeric' })}\n\n <!-- Numbers/currency -->\n ${this.$localize.number(1000, { style: 'currency', currency: 'USD'})}\n or\n ${this.$n(1000,{ style: 'currency', currency: 'USD'})}\n\n <!-- Determining language -->\n ${this.$localize.lang()}\n\n <!-- Determining directionality, e.g. 'ltr' or 'rtl' -->\n ${this.$localize.dir()}\n\n\n *** HOW TO DEFINE TRANSLATIONS: ***\n // Simple terms\n upload: 'Upload',\n\n // Terms with placeholders\n greetUser: (name: string) => `Hello, ${name}!`,\n\n // Plurals\n numFilesSelected: (count: number) => {\n if (count === 0) return 'No files selected';\n if (count === 1) return '1 file selected';\n return `${count} files selected`;\n }\n */\nconst LocalizeMixin = (Base) => class extends Base {\n constructor() {\n super(...arguments);\n this.localize = new LocalizeController(this);\n }\n // Provide default values to avoid definite assignment errors and avoid decorators\n // commentati perchè danno problemi su React.js. Sono attributi nativi, e assegnare un valore di default a react da fastidio\n // dir: string = '';\n // lang: string = '';\n /**\n * Restituisce tutta l'utility di traduzione\n *\n\n *\n * @returns tutta l'utility di traduzione\n *\n * @example\n * this.$localize.lang() -> ritorna la lingua corrente\n * this.$localize.dir() -> ritorna la direzione della lingua corrente\n */\n get $localize() {\n return this.localize;\n }\n /**\n * Restituisce una stringa localizzata a partire da una chiave di termine.\n *\n * Utilizza il `LocalizeController` per accedere al dizionario corrente e\n * tradurre la chiave fornita secondo la lingua attiva.\n *\n * @param t - La chiave del termine da localizzare (es. 'hello', 'submit', ecc.).\n * @returns La stringa tradotta in base alla lingua attiva. Se la chiave non è trovata, restituisce la chiave stessa.\n *\n * @example\n * this.$t('hello'); // → \"Ciao\" (in locale it-IT)\n */\n $t(t) {\n // format term\n return this.localize.term(t);\n }\n /**\n * Formatta una data in base alla localizzazione attiva.\n *\n * Utilizza il `LocalizeController` per restituire una stringa localizzata\n * secondo le opzioni fornite (es. mese esteso, anno, ecc.).\n *\n * @param n - La data da formattare come stringa compatibile (es. ISO o con timezone, es. '2021-09-15 14:00:00 ET').\n * @param p - Le opzioni di formattazione per `Intl.DateTimeFormat` (es. { year: 'numeric', month: 'long', day: 'numeric' }).\n * @returns Una stringa rappresentante la data formattata secondo la localizzazione attiva.\n *\n * @example\n * this.$d('2021-09-15 14:00:00 ET', { year: 'numeric', month: 'long', day: 'numeric' });\n * // → \"15 settembre 2021\" (in locale it-IT)\n */\n $d(d, p) {\n // format date\n return this.localize.date(d, p);\n }\n /**\n * Formatta un numero secondo le impostazioni locali dell'utente corrente.\n *\n * Utilizza il `LocalizeController` per applicare formattazione numerica,\n * incluse opzioni come separatori, decimali, valute, ecc.\n *\n * @param d - Il numero da formattare.\n * @param p - Le opzioni di formattazione (es. { style: 'currency', currency: 'EUR' }).\n * @returns Una stringa rappresentante il numero formattato secondo la localizzazione attiva.\n *\n * @example\n * this.$n(1234.56, { style: 'currency', currency: 'USD' }); // → \"$1,234.56\" (in locale en-US)\n */\n $n(d, p) {\n return this.localize.number(d, p);\n }\n};\n// export interface LocalizedComponent {\n// $t(t: string): string;\n// $d(d: Date | string, p?: Intl.DateTimeFormatOptions): string;\n// $n(n: number, p?: Intl.NumberFormatOptions): string;\n// $localize: LocalizeController;\n// }\n\nexport { LocalizeController, LocalizeMixin, registerTranslation };\n//# sourceMappingURL=index.js.map\n","/* eslint-disable no-console */\nexport class Logger {\n constructor(tag) {\n this.tag = tag;\n }\n format(level, msg) {\n return [`[${this.tag}] ${msg}`];\n }\n warn(msg) {\n console.warn(...this.format('warn', msg));\n }\n error(msg) {\n console.error(...this.format('error', msg));\n }\n info(msg) {\n console.info(...this.format('info', msg));\n }\n}\n//# sourceMappingURL=logger.js.map","import clsx from 'clsx';\nimport { LitElement } from 'lit';\nimport { LocalizeMixin } from '@italia/i18n';\nimport { Logger } from '../utils/logger.js';\n/**\n * Factory function per creare una base class estendibile\n * con stili personalizzati.\n */\nexport class BaseComponent extends LitElement {\n constructor() {\n super();\n this.composeClass = clsx;\n this.logger = new Logger(this.tagName.toLowerCase());\n }\n get _ariaAttributes() {\n const attributes = {};\n for (const attr of this.getAttributeNames()) {\n if (attr === 'it-role') {\n attributes.role = this.getAttribute(attr);\n }\n else if (attr.startsWith('it-aria-')) {\n attributes[attr.replace(/^it-/, '')] = this.getAttribute(attr);\n }\n }\n return attributes;\n }\n // eslint-disable-next-line class-methods-use-this\n generateId(prefix) {\n return `${prefix}-${Math.random().toString(36).slice(2)}`;\n }\n // eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars\n addFocus(element) {\n // new TrackFocus(element); // per il momento è stato disattivato perchè ci sono le pseudo classi ::focus-visible per fare quello che fa TrackFocus. Si possono aggiungere regole css in bsi-italia 3 dato che stiamo facendo una breaking release di bsi.\n }\n // eslint-disable-next-line class-methods-use-this\n getActiveElement() {\n let active = document.activeElement;\n while (active && active.shadowRoot && active.shadowRoot.activeElement) {\n active = active.shadowRoot.activeElement;\n }\n return active;\n }\n get focusElement() {\n return this;\n }\n // eslint-disable-next-line class-methods-use-this\n get prefersReducedMotion() {\n return window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n }\n connectedCallback() {\n super.connectedCallback();\n // generate internal _id\n const prefix = this.id?.length > 0 ? this.id : this.tagName.toLowerCase();\n this._id = this.generateId(prefix);\n }\n}\nexport const BaseLocalizedComponent = LocalizeMixin(BaseComponent);\n//# sourceMappingURL=base-component.js.map","//\n// We store a WeakMap of forms + controls so we can keep references to all FormControl within a given form. As\n// elements connect and disconnect to/from the DOM, their containing form is used as the key and the form control is\n// added and removed from the form's set, respectively.\n//\nexport const formCollections = new WeakMap();\n//\n// We store a WeakMap of reportValidity() overloads so we can override it when form controls connect to the DOM and\n// restore the original behavior when they disconnect.\n//\nconst reportValidityOverloads = new WeakMap();\nconst checkValidityOverloads = new WeakMap();\n//\n// We store a Set of controls that users have interacted with. This allows us to determine the interaction state\n// without littering the DOM with additional data attributes.\n//\nconst userInteractedControls = new WeakSet();\n//\n// We store a WeakMap of interactions for each form control so we can track when all conditions are met for validation.\n//\nconst interactions = new WeakMap();\n/** A reactive controller to allow form controls to participate in form submission, validation, etc. */\nexport class FormControlController {\n constructor(host, options) {\n this.handleFormData = (event) => {\n // console.log('handleFormData');\n const disabled = this.options.disabled(this.host);\n const name = this.options.name(this.host);\n const value = this.options.value(this.host);\n const tagName = this.host.tagName.toLowerCase();\n // For buttons, we only submit the value if they were the submitter. This is currently done in doAction() by\n // injecting the name/value on a temporary button, so we can just skip them here.\n const isButton = tagName === 'it-button';\n if (this.host.isConnected &&\n !disabled &&\n !isButton &&\n typeof name === 'string' &&\n name.length > 0 &&\n typeof value !== 'undefined') {\n switch (tagName) {\n case 'it-radio':\n if (this.host.checked) {\n event.formData.append(name, value);\n }\n break;\n default:\n if (Array.isArray(value)) {\n value.forEach((val) => {\n event.formData.append(name, val.toString());\n });\n }\n else {\n event.formData.append(name, value.toString());\n }\n }\n }\n };\n this.handleFormSubmit = (event) => {\n const disabled = this.options.disabled(this.host);\n const reportValidity = this.options.reportValidity;\n // Update the interacted state for all controls when the form is submitted\n if (this.form && !this.form.noValidate) {\n formCollections.get(this.form)?.forEach((control) => {\n this.setUserInteracted(control, true);\n });\n }\n if (this.form && !this.form.noValidate && !disabled && !reportValidity(this.host)) {\n event.preventDefault();\n // event.stopImmediatePropagation(); // se lo attiviamo, valida un campo alla volta\n }\n };\n this.handleFormReset = () => {\n this.options.setValue(this.host, '');\n this.setUserInteracted(this.host, false);\n interactions.set(this.host, []);\n };\n this.handleInteraction = (event) => {\n const emittedEvents = interactions.get(this.host);\n if (!emittedEvents.includes(event.type)) {\n emittedEvents.push(event.type);\n }\n // Mark it as user-interacted as soon as all associated events have been emitted\n if (emittedEvents.length === this.options.assumeInteractionOn.length) {\n this.setUserInteracted(this.host, true);\n }\n };\n this.checkFormValidity = () => {\n // console.log('checkFormValidity');\n //\n // This is very similar to the `reportFormValidity` function, but it does not trigger native constraint validation\n // Allow the user to simply check if the form is valid and handling validity in their own way.\n //\n // We preserve the original method in a WeakMap, but we don't call it from the overload because that would trigger\n // validations in an unexpected order. When the element disconnects, we revert to the original behavior. This won't\n // be necessary once we can use ElementInternals.\n //\n // Note that we're also honoring the form's novalidate attribute.\n //\n if (this.form && !this.form.noValidate) {\n // This seems sloppy, but checking all elements will cover native inputs, Shoelace inputs, and other custom\n // elements that support the constraint validation API.\n const elements = this.form.querySelectorAll('*');\n for (const element of elements) {\n if (typeof element.checkValidity === 'function') {\n if (!element.checkValidity()) {\n return false;\n }\n }\n }\n }\n return true;\n };\n this.reportFormValidity = () => {\n // console.log('reportFormValidity');\n //\n // FormControl work hard to act like regular form controls. They support the Constraint Validation API\n // and its associated methods such as setCustomValidity() and reportValidity(). However, the HTMLFormElement also\n // has a reportValidity() method that will trigger validation on all child controls. Since we're not yet using\n // ElementInternals, we need to overload this method so it looks for any element with the reportValidity() method.\n //\n // We preserve the original method in a WeakMap, but we don't call it from the overload because that would trigger\n // validations in an unexpected order. When the element disconnects, we revert to the original behavior. This won't\n // be necessary once we can use ElementInternals.\n //\n // Note that we're also honoring the form's novalidate attribute.\n //\n if (this.form && !this.form.noValidate) {\n // This seems sloppy, but checking all elements will cover native inputs, Shoelace inputs, and other custom\n // elements that support the constraint validation API.\n const elements = this.form.querySelectorAll('*');\n for (const element of elements) {\n if (typeof element.reportValidity === 'function') {\n if (!element.reportValidity()) {\n return false;\n }\n }\n }\n }\n return true;\n };\n (this.host = host).addController(this);\n this.options = {\n form: (input) => {\n // If there's a form attribute, use it to find the target form by id\n // Controls may not always reflect the 'form' property. For example, `<it-button>` doesn't reflect.\n const formId = input.form;\n if (formId) {\n const root = input.getRootNode();\n const form = root.querySelector(`#${formId}`);\n if (form) {\n return form;\n }\n }\n return input.closest('form');\n },\n name: (input) => input.name,\n value: (input) => input.value,\n disabled: (input) => input.disabled ?? false,\n reportValidity: (input) => typeof input.reportValidity === 'function' ? input.reportValidity() : true,\n checkValidity: (input) => (typeof input.checkValidity === 'function' ? input.checkValidity() : true),\n setValue: (input, value) => {\n // eslint-disable-next-line no-param-reassign\n input.value = value;\n },\n assumeInteractionOn: ['it-input'],\n ...options,\n };\n }\n hostConnected() {\n const form = this.options.form(this.host);\n if (form) {\n this.attachForm(form);\n }\n // Listen for interactions\n interactions.set(this.host, []);\n this.options.assumeInteractionOn.forEach((event) => {\n this.host.addEventListener(event, this.handleInteraction);\n });\n }\n hostDisconnected() {\n this.detachForm();\n // Clean up interactions\n interactions.delete(this.host);\n this.options.assumeInteractionOn.forEach((event) => {\n this.host.removeEventListener(event, this.handleInteraction);\n });\n }\n hostUpdated() {\n const form = this.options.form(this.host);\n // Detach if the form no longer exists\n if (!form) {\n this.detachForm();\n }\n // If the form has changed, reattach it\n if (form && this.form !== form) {\n this.detachForm();\n this.attachForm(form);\n }\n if (this.host.hasUpdated) {\n this.setValidity(this.host.validity.valid);\n }\n }\n attachForm(form) {\n if (form) {\n this.form = form;\n // Add this element to the form's collection\n if (formCollections.has(this.form)) {\n formCollections.get(this.form).add(this.host);\n }\n else {\n formCollections.set(this.form, new Set([this.host]));\n }\n this.form.addEventListener('formdata', this.handleFormData);\n this.form.addEventListener('submit', this.handleFormSubmit);\n this.form.addEventListener('reset', this.handleFormReset);\n // Overload the form's reportValidity() method so it looks at FormControl\n if (!reportValidityOverloads.has(this.form)) {\n reportValidityOverloads.set(this.form, this.form.reportValidity);\n this.form.reportValidity = () => this.reportFormValidity();\n }\n // Overload the form's checkValidity() method so it looks at FormControl\n if (!checkValidityOverloads.has(this.form)) {\n checkValidityOverloads.set(this.form, this.form.checkValidity);\n this.form.checkValidity = () => this.checkFormValidity();\n }\n }\n else {\n this.form = undefined;\n }\n }\n detachForm() {\n if (!this.form)\n return;\n const formCollection = formCollections.get(this.form);\n if (!formCollection) {\n return;\n }\n // Remove this host from the form's collection\n formCollection.delete(this.host);\n // Check to make sure there's no other form controls in the collection. If we do this\n // without checking if any other controls are still in the collection, then we will wipe out the\n // validity checks for all other elements.\n // see: https://github.com/shoelace-style/shoelace/issues/1703\n if (formCollection.size <= 0) {\n this.form.removeEventListener('formdata', this.handleFormData);\n this.form.removeEventListener('submit', this.handleFormSubmit);\n this.form.removeEventListener('reset', this.handleFormReset);\n // Remove the overload and restore the original method\n if (reportValidityOverloads.has(this.form)) {\n this.form.reportValidity = reportValidityOverloads.get(this.form);\n reportValidityOverloads.delete(this.form);\n }\n if (checkValidityOverloads.has(this.form)) {\n this.form.checkValidity = checkValidityOverloads.get(this.form);\n checkValidityOverloads.delete(this.form);\n }\n // So it looks weird here to not always set the form to undefined. But I _think_ if we unattach this.form here,\n // we end up in this fun spot where future validity checks don't have a reference to the form validity handler.\n // First form element in sets the validity handler. So we can't clean up `this.form` until there are no other form elements in the form.\n this.form = undefined;\n }\n }\n // eslint-disable-next-line class-methods-use-this\n setUserInteracted(el, hasInteracted) {\n if (hasInteracted) {\n userInteractedControls.add(el);\n }\n else {\n userInteractedControls.delete(el);\n }\n el.requestUpdate();\n }\n doAction(type, submitter) {\n // console.log('doaction', type);\n if (this.form) {\n const button = document.createElement('button');\n button.type = type;\n button.style.position = 'absolute';\n button.style.width = '0';\n button.style.height = '0';\n button.style.clipPath = 'inset(50%)';\n button.style.overflow = 'hidden';\n button.style.whiteSpace = 'nowrap';\n // Pass name, value, and form attributes through to the temporary button\n if (submitter) {\n button.name = submitter.name;\n button.value = submitter.value;\n ['formaction', 'formenctype', 'formmethod', 'formnovalidate', 'formtarget'].forEach((attr) => {\n if (submitter.hasAttribute(attr)) {\n button.setAttribute(attr, submitter.getAttribute(attr));\n }\n });\n }\n this.form.append(button);\n button.click();\n button.remove();\n }\n }\n /** Returns the associated `<form>` element, if one exists. */\n getForm() {\n return this.form ?? null;\n }\n /** Resets the form, restoring all the control to their default value */\n reset(submitter) {\n this.doAction('reset', submitter);\n }\n /** Submits the form, triggering validation and form data injection. */\n submit(submitter) {\n // Calling form.submit() bypasses the submit event and constraint validation. To prevent this, we can inject a\n // native submit button into the form, \"click\" it, then remove it to simulate a standard form submission.\n this.doAction('submit', submitter);\n }\n /**\n * Synchronously sets the form control's validity. Call this when you know the future validity but need to update\n * the host element immediately, i.e. before Lit updates the component in the next update.\n */\n setValidity(isValid) {\n const host = this.host;\n const hasInteracted = Boolean(userInteractedControls.has(host));\n const required = Boolean(host.required);\n //\n // We're mapping the following \"states\" to data attributes. In the future, we can use ElementInternals.states to\n // create a similar mapping, but instead of [data-invalid] it will look like :--invalid.\n //\n // See this RFC for more details: https://github.com/shoelace-style/shoelace/issues/1011\n //\n host.toggleAttribute('data-required', required);\n host.toggleAttribute('data-optional', !required);\n host.toggleAttribute('data-invalid', !isValid);\n host.toggleAttribute('data-valid', isValid);\n host.toggleAttribute('data-user-invalid', !isValid && hasInteracted);\n host.toggleAttribute('data-user-valid', isValid && hasInteracted);\n }\n /**\n * Updates the form control's validity based on the current value of `host.validity.valid`. Call this when anything\n * that affects constraint validation changes so the component receives the correct validity states.\n */\n updateValidity() {\n const host = this.host;\n this.setValidity(host.validity.valid);\n }\n /**\n * Dispatches a non-bubbling, cancelable custom event of type `it-invalid`.\n * If the `it-invalid` event will be cancelled then the original `invalid`\n * event (which may have been passed as argument) will also be cancelled.\n * If no original `invalid` event has been passed then the `it-invalid`\n * event will be cancelled before being dispatched.\n */\n emitInvalidEvent(originalInvalidEvent) {\n const itInvalidEvent = new CustomEvent('it-invalid', {\n bubbles: false,\n composed: false,\n cancelable: true,\n detail: {},\n });\n if (!originalInvalidEvent) {\n itInvalidEvent.preventDefault();\n }\n if (!this.host.dispatchEvent(itInvalidEvent)) {\n originalInvalidEvent?.preventDefault();\n }\n }\n}\n//# sourceMappingURL=form-controller.js.map","const translation = {\n $code: 'it',\n $name: 'Italiano',\n $dir: 'ltr',\n validityRequired: 'Questo campo è obbligatorio.',\n validityPattern: 'Il valore non corrisponde al formato richiesto.',\n validityMinlength: 'Il valore deve essere lungo almeno {minlength} caratteri.',\n validityMaxlength: 'Il valore deve essere lungo al massimo {maxlength} caratteri.',\n};\nexport default translation;\n//# sourceMappingURL=it.js.map","import { __decorate, __metadata } from \"tslib\";\nimport { property, query, state } from 'lit/decorators.js';\nimport { registerTranslation } from '@italia/i18n';\nimport { BaseLocalizedComponent } from '../base-component/base-component.js';\nimport { FormControlController } from './form-controller.js';\nimport it from './locales/it.js';\nregisterTranslation(it);\nexport class FormControl extends BaseLocalizedComponent {\n constructor() {\n super(...arguments);\n this.formControlController = new FormControlController(this, {\n assumeInteractionOn: ['it-input', 'it-blur', 'it-change'],\n });\n // TODO: verificare se serve davvero con il fatto che usiamo form-controller\n // static formAssociated = true;\n // @property()\n // internals = this.attachInternals();\n this._touched = false;\n /** The name of the input, submitted as a name/value pair with form data. */\n this.name = '';\n /** The current value of the input, submitted as a name/value pair with form data. */\n this.value = '';\n /** If the input is disabled. */\n this.disabled = false;\n /**\n * By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\n * to place the form control outside of a form and associate it with the form that has this `id`. The form must be in\n * the same document or shadow root for this to work.\n */\n this.form = '';\n /** If you implement your custom validation and you won't to trigger default validation */\n this.customValidation = false;\n /** If your input is invalid from your custom validition, set this attribute with message validation */\n this.validationText = '';\n /**\n * Specifies the granularity that the value must adhere to, or the special value `any` which means no stepping is\n * implied, allowing any numeric value. Only applies to date and number input types.\n */\n this.step = 'any';\n /** The input's minimum length. */\n this.minlength = -1;\n /** The input's maximum length. */\n this.maxlength = -1;\n /** If the input is required. */\n this.required = false;\n this.validationMessage = '';\n }\n /** Gets the validity state object */\n get validity() {\n return this.inputElement?.validity;\n }\n // Form validation methods\n checkValidity() {\n const inputValid = this.inputElement?.checkValidity() ?? true; // this.inputElement.checkValidity() è la validazione del browser\n return inputValid;\n }\n /** Gets the associated form, if one exists. */\n getForm() {\n return this.formControlController.getForm();\n }\n /** Checks for validity and shows the browser's validation message if the control is invalid. */\n reportValidity() {\n const ret = this.inputElement.checkValidity();\n this.handleValidationMessages();\n return ret; // this.inputElement.reportValidity();\n }\n /** Sets a custom validation message. Pass an empty string to restore validity. */\n setCustomValidity(message) {\n this.inputElement.setCustomValidity(message);\n this.validationMessage = this.inputElement.validationMessage;\n this.formControlController.updateValidity();\n }\n // Handlers\n _handleReady() {\n requestAnimationFrame(() => {\n this.dispatchEvent(new CustomEvent('it-input-ready', { bubbles: true, detail: { el: this.inputElement } }));\n });\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n _handleInput(e) {\n this.handleValidationMessages();\n this.dispatchEvent(new CustomEvent('it-input', {\n detail: { value: this.inputElement.value, el: this.inputElement },\n bubbles: true,\n composed: true,\n }));\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n _handleBlur(e) {\n this._touched = true;\n this.handleValidationMessages();\n this.dispatchEvent(new FocusEvent('it-blur', { bubbles: true, composed: true }));\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n _handleFocus(e) {\n this.dispatchEvent(new FocusEvent('it-focus', { bubbles: true, composed: true }));\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n _handleClick(e) {\n this.dispatchEvent(new MouseEvent('it-click', { bubbles: true, composed: true }));\n }\n /*\n Override default browser validation messages\n */\n handleValidationMessages() {\n if (!this.customValidation) {\n const _v = this.inputElement.validity;\n if (_v.valueMissing) {\n this.setCustomValidity(this.$t('validityRequired'));\n }\n else if (_v.patternMismatch) {\n this.setCustomValidity(this.$t('validityPattern'));\n }\n else if (_v.tooShort) {\n this.setCustomValidity(this.$t('validityMinlength').replace('{minlength}', this.minlength.toString()));\n }\n else if (_v.tooLong) {\n this.setCustomValidity(this.$t('validityMaxlength').replace('{maxlength}', this.maxlength.toString()));\n }\n else {\n /* nothing. Usa il messaggio di errore della validazione\n di default del browser per altri errori di validità come:\n - typeMismatch\n - rangeUnderflow\n - rangeOverflow\n - stepMismatch\n - badInput */\n const otherConstraintErrors = _v.typeMismatch || _v.rangeUnderflow || _v.rangeOverflow || _v.stepMismatch || _v.badInput;\n if (!otherConstraintErrors) {\n this.setCustomValidity('');\n }\n }\n }\n this.validationMessage = this.inputElement.validationMessage;\n }\n _handleInvalid(event) {\n this.formControlController.setValidity(false);\n this.formControlController.emitInvalidEvent(event);\n }\n _handleChange(e) {\n const target = e.target;\n let value;\n if (target instanceof HTMLInputElement) {\n switch (target.type) {\n case 'checkbox':\n case 'radio':\n value = target.checked;\n break;\n case 'file':\n value = target.files; // FileList\n break;\n default:\n value = target.value;\n }\n }\n else if (target instanceof HTMLSelectElement) {\n if (target.multiple) {\n value = Array.from(target.selectedOptions).map((o) => o.value);\n }\n else {\n value = target.value;\n }\n }\n else {\n // textarea o altri input con value\n value = target.value;\n }\n this.dispatchEvent(new CustomEvent('it-change', {\n detail: { value, el: target },\n bubbles: true,\n composed: true,\n }));\n }\n updated(changedProperties) {\n super.updated?.(changedProperties);\n if (this.customValidation) {\n this.setCustomValidity(this.validationText ?? '');\n }\n else {\n this.formControlController.updateValidity();\n }\n }\n}\n__decorate([\n state(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"_touched\", void 0);\n__decorate([\n query('.it-form__control'),\n __metadata(\"design:type\", HTMLInputElement)\n], FormControl.prototype, \"inputElement\", void 0);\n__decorate([\n property({ type: String, reflect: true }) // from FormControl\n ,\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"name\", void 0);\n__decorate([\n property({ reflect: true }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"value\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true }) // from FormControl\n ,\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"disabled\", void 0);\n__decorate([\n property({ reflect: true, type: String }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"form\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true, attribute: 'custom-validation' }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"customValidation\", void 0);\n__decorate([\n property({ attribute: 'validity-message', reflect: true }),\n __metadata(\"design:type\", String)\n], FormControl.prototype, \"validationText\", void 0);\n__decorate([\n property(),\n __metadata(\"design:type\", String)\n], FormControl.prototype, \"pattern\", void 0);\n__decorate([\n property(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"min\", void 0);\n__decorate([\n property(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"max\", void 0);\n__decorate([\n property(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"step\", void 0);\n__decorate([\n property({ type: Number }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"minlength\", void 0);\n__decorate([\n property({ type: Number }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"maxlength\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true }) // from FormControl\n ,\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"required\", void 0);\n__decorate([\n state(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"validationMessage\", void 0);\n//# sourceMappingURL=form-control.js.map","import { html, nothing } from 'lit';\nimport { BaseComponent } from '@italia/globals';\nimport { customElement, property, queryAssignedElements } from 'lit/decorators.js';\nimport { classMap } from 'lit/directives/class-map.js';\nimport type { ItIcon } from '@italia/icon';\nimport { ChipSize, ChipVariant } from './types.js';\n\nimport styles from './chip.scss';\n\n@customElement('it-chip')\nexport class ItChip extends BaseComponent {\n static styles = styles;\n\n @property({ type: Boolean, reflect: true }) dismissable = false;\n\n @property({ type: String, reflect: true }) size: ChipSize = 'sm';\n\n @property({ type: String, reflect: true }) avatar = '';\n\n @property({ type: String, reflect: true, attribute: 'avatar-alt' }) avatarAlt = '';\n\n @property({ type: String, reflect: true }) label = '';\n\n @property({ type: String, reflect: true }) href = '';\n\n @property({ type: String, reflect: true, attribute: 'a11y-description' }) a11yDescription = '';\n\n @property({ type: String, reflect: true }) variant: ChipVariant = '';\n\n @property({ type: Boolean, reflect: true, attribute: 'is-disabled' }) isDisabled = false;\n\n @queryAssignedElements({ slot: 'dismiss-button', flatten: true })\n closeButton!: HTMLButtonElement[];\n\n @queryAssignedElements({ slot: 'icon', flatten: true })\n icon!: ItIcon[];\n\n private getAvatarSize() {\n // Per chip lg usa avatar sm, per gli altri usa avatar xs\n return this.size === 'lg' ? 'sm' : 'xs';\n }\n\n private updateIcon() {\n if (this.icon.length) {\n const icon = this.icon[0];\n\n if (this.size === 'lg') {\n icon.size = 'sm';\n } else {\n icon.size = 'xs';\n }\n icon.color = this.variant ?? '';\n }\n }\n\n override updated() {\n if (this.dismissable) {\n if (!this.closeButton.length) {\n this.logger.warn(\n 'The `dismissable` property is enabled, but no <button slot=\"dismiss-button\"> was found. ' +\n 'This button is required to allow chip removal.',\n );\n } else {\n this.closeButton.forEach((btn) => {\n if (\n (btn.tagName.toLowerCase() === 'it-button' &&\n !btn.hasAttribute('it-aria-label') &&\n btn.textContent?.trim().length === 0) ||\n (btn.tagName.toLowerCase() === 'button' &&\n !btn.hasAttribute('aria-label') &&\n btn.textContent?.trim().length === 0)\n ) {\n this.logger.warn(\n 'Dismiss button lacks both a `label`, an `aria-label` and text content. ' +\n 'Providing an accessible label or visually hidden text content is strongly recommended.',\n );\n }\n });\n }\n }\n\n if (this.avatar && !this.avatarAlt) {\n this.logger.warn(\n 'Avatar image provided without an alternative text (`avatarAlt`). ' +\n 'This negatively impacts accessibility compliance.',\n );\n }\n this.updateIcon();\n }\n\n render() {\n const avatarSize = this.getAvatarSize();\n const avatarHeights = {\n xs: '1rem',\n sm: '1.5rem',\n md: '2.5rem',\n lg: '3.5rem',\n xl: '5rem',\n xxl: '7rem',\n };\n\n const avatarHeight = avatarHeights[avatarSize];\n\n const classes = {\n chip: true,\n [`chip-${this.size}`]: this.size,\n [`chip-${this.variant}`]: !!this.variant && !this.isDisabled,\n 'chip-disabled': this.isDisabled,\n };\n\n const content = html`\n ${this.a11yDescription ? html`<span class=\"visually-hidden\">${this.a11yDescription}</span>` : nothing}\n <slot name=\"icon\"></slot>\n ${this.avatar\n ? html`\n <it-avatar\n size=\"${avatarSize}\"\n src=\"${this.avatar}\"\n alt=\"${this.avatarAlt}\"\n style=\"height: ${avatarHeight}\"\n ></it-avatar>\n `\n : null}\n <span class=\"chip-label\">${this.label}</span>\n <slot name=\"dismiss-button\"></slot>\n `;\n\n return this.href\n ? html`<a class=\"${classMap(classes)}\" part=\"chip focusable\" href=\"${this.href}\">${content}</a>`\n : html`<div class=\"${classMap(classes)}\" part=\"chip\">${content}</div>`;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'it-chip': ItChip;\n }\n}\n"],"names":["it"],"mappings":"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","x_google_ignoreList":[0,2]}
|
|
1
|
+
{"version":3,"file":"it-chip.js","sources":["../../../../node_modules/.pnpm/@rollup+plugin-typescript@12.3.0_rollup@4.52.5_tslib@2.8.1_typescript@5.9.3/node_modules/tslib/tslib.es6.js","../../../globals/dist/src/directives/setAttributes.js","../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","../../../i18n/dist/src/index.js","../../../globals/dist/src/utils/logger.js","../../../globals/dist/src/base-component/base-component.js","../../../globals/dist/src/form/form-controller.js","../../../globals/dist/src/form/locales/it.js","../../../globals/dist/src/form/form-control.js","../../../globals/dist/src/index.js","../../../src/it-chip.ts"],"sourcesContent":["/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nexport function __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nexport function __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nexport function __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\r\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\r\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nvar ownKeys = function(o) {\r\n ownKeys = Object.getOwnPropertyNames || function (o) {\r\n var ar = [];\r\n for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;\r\n return ar;\r\n };\r\n return ownKeys(o);\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== \"default\") __createBinding(result, mod, k[i]);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nexport function __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose, inner;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n if (async) inner = dispose;\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nexport function __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n var r, s = 0;\r\n function next() {\r\n while (r = env.stack.pop()) {\r\n try {\r\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\r\n if (r.dispose) {\r\n var result = r.dispose.call(r.value);\r\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n else s |= 1;\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\nexport function __rewriteRelativeImportExtension(path, preserveJsx) {\r\n if (typeof path === \"string\" && /^\\.\\.?\\//.test(path)) {\r\n return path.replace(/\\.(tsx)$|((?:\\.d)?)((?:\\.[^./]+?)?)\\.([cm]?)ts$/i, function (m, tsx, d, ext, cm) {\r\n return tsx ? preserveJsx ? \".jsx\" : \".js\" : d && (!ext || !cm) ? m : (d + ext + \".\" + cm.toLowerCase() + \"js\");\r\n });\r\n }\r\n return path;\r\n}\r\n\r\nexport default {\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __esDecorate: __esDecorate,\r\n __runInitializers: __runInitializers,\r\n __propKey: __propKey,\r\n __setFunctionName: __setFunctionName,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n __rewriteRelativeImportExtension: __rewriteRelativeImportExtension,\r\n};\r\n","import { directive, Directive } from 'lit/directive.js';\nclass SetAttributesDirective extends Directive {\n update(part, [attributes]) {\n const el = part.element;\n for (const [name, value] of Object.entries(attributes)) {\n if (value != null)\n el.setAttribute(name, value);\n else\n el.removeAttribute(name);\n }\n return null;\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n render(_attributes) {\n return null;\n }\n}\n/* How to use:\n\n<textarea ${setAttributes(this._ariaAttributes)} ... />\n*/\nconst setAttributes = directive(SetAttributesDirective);\nexport default setAttributes;\n//# sourceMappingURL=setAttributes.js.map","function r(e){var t,f,n=\"\";if(\"string\"==typeof e||\"number\"==typeof e)n+=e;else if(\"object\"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=\" \"),n+=f)}else for(f in e)e[f]&&(n&&(n+=\" \"),n+=f);return n}export function clsx(){for(var e,t,f=0,n=\"\",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=\" \"),n+=t);return n}export default clsx;","const connectedElements = new Set();\nif (window && !window.translations) {\n window.translations = new Map();\n}\nconst { translations } = window;\nlet fallback;\n// TODO: We need some way for users to be able to set these on the server.\nlet documentDirection = 'ltr';\n// Fallback for server.\nlet documentLanguage = 'en';\nconst isClient = typeof MutationObserver !== 'undefined' &&\n typeof document !== 'undefined' &&\n typeof document.documentElement !== 'undefined';\n/** Updates all localized elements that are currently connected */\nfunction update() {\n if (isClient) {\n documentDirection = document.documentElement.dir || 'ltr';\n documentLanguage = document.documentElement.lang || navigator.language;\n }\n [...connectedElements.keys()].forEach((el) => {\n const litEl = el;\n if (typeof litEl.requestUpdate === 'function') {\n litEl.requestUpdate();\n }\n });\n}\nif (isClient) {\n const documentElementObserver = new MutationObserver(update);\n documentDirection = document.documentElement.dir || 'ltr';\n documentLanguage = document.documentElement.lang || navigator.language;\n // Watch for changes on <html lang>\n documentElementObserver.observe(document.documentElement, {\n attributes: true,\n attributeFilter: ['dir', 'lang'],\n });\n}\n/** Registers one or more translations */\nfunction registerTranslation(...translation) {\n translation.forEach((t) => {\n const code = t.$code.toLowerCase();\n if (translations.has(code)) {\n // Merge translations that share the same language code\n translations.set(code, { ...translations.get(code), ...t });\n }\n else {\n translations.set(code, t);\n }\n // The first translation that's registered is the fallback\n if (!fallback) {\n fallback = t;\n }\n });\n update();\n}\nwindow.registerTranslation = registerTranslation;\n/**\n * Localize Reactive Controller for components built with Lit\n *\n * To use this controller, import the class and instantiate it in a custom element constructor:\n *\n * private localize = new LocalizeController(this);\n *\n * This will add the element to the set and make it respond to changes to <html dir|lang> automatically. To make it\n * respond to changes to its own dir|lang properties, make it a property:\n *\n * @property() dir: string;\n * @property() lang: string;\n *\n * To use a translation method, call it like this:\n *\n * ${this.localize.term('term_key_here')}\n * ${this.localize.date('2021-12-03')}\n * ${this.localize.number(1000000)}\n */\nclass LocalizeController {\n constructor(host) {\n this.host = host;\n this.host.addController(this);\n }\n hostConnected() {\n connectedElements.add(this.host);\n }\n hostDisconnected() {\n connectedElements.delete(this.host);\n }\n /**\n * Gets the host element's directionality as determined by the `dir` attribute. The return value is transformed to\n * lowercase.\n */\n dir() {\n return `${this.host.dir || documentDirection}`.toLowerCase();\n }\n /**\n * Gets the host element's language as determined by the `lang` attribute. The return value is transformed to\n * lowercase.\n */\n lang() {\n return `${this.host.lang || documentLanguage}`.toLowerCase();\n }\n // eslint-disable-next-line class-methods-use-this\n getTranslationData(lang) {\n // Convert \"en_US\" to \"en-US\". Note that both underscores and dashes are allowed per spec, but underscores result in\n // a RangeError by the call to `new Intl.Locale()`. See: https://unicode.org/reports/tr35/#unicode-locale-identifier\n const locale = new Intl.Locale(lang.replace(/_/g, '-'));\n const language = locale?.language.toLowerCase();\n const region = locale?.region?.toLowerCase() ?? '';\n const primary = translations.get(`${language}-${region}`);\n const secondary = translations.get(language);\n return { locale, language, region, primary, secondary };\n }\n /** Determines if the specified term exists, optionally checking the fallback translation. */\n exists(key, options) {\n const { primary, secondary } = this.getTranslationData(options.lang ?? this.lang());\n const mergedOptions = {\n includeFallback: false,\n ...options,\n };\n if ((primary && primary[key]) ||\n (secondary && secondary[key]) ||\n (mergedOptions.includeFallback && fallback && fallback[key])) {\n return true;\n }\n return false;\n }\n /** Outputs a translated term. */\n term(key, ...args) {\n const { primary, secondary } = this.getTranslationData(this.lang());\n let term;\n // Look for a matching term using regionCode, code, then the fallback\n if (primary && primary[key]) {\n term = primary[key];\n }\n else if (secondary && secondary[key]) {\n term = secondary[key];\n }\n else if (fallback && fallback[key]) {\n term = fallback[key];\n }\n else {\n // eslint-disable-next-line no-console\n console.error(`No translation found for: ${String(key)}`);\n return String(key);\n }\n if (typeof term === 'function') {\n return term(...args);\n }\n return term;\n }\n /** Outputs a localized date in the specified format. */\n date(dateToFormat, options) {\n const date = new Date(dateToFormat);\n return new Intl.DateTimeFormat(this.lang(), options).format(date);\n }\n /** Outputs a localized number in the specified format. */\n number(numberToFormat, options) {\n const num = Number(numberToFormat);\n return Number.isNaN(num) ? '' : new Intl.NumberFormat(this.lang(), options).format(num);\n }\n /** Outputs a localized time in relative format. */\n relativeTime(value, unit, options) {\n return new Intl.RelativeTimeFormat(this.lang(), options).format(value, unit);\n }\n}\n\n/**\n * @param Base The base class.\n * @returns A mix-in implementing `localizations` method.\n *\n *@example\n * <!-- Terms -->\n ${this.$localize.term('hello')}\n or\n ${this.$t('hello')}\n\n <!-- Dates -->\n ${this.$localize.date('2021-09-15 14:00:00 ET', { month: 'long', day: 'numeric', year: 'numeric' })}\n or\n ${this.$d('2021-09-15 14:00:00 ET', { month: 'long', day: 'numeric', year: 'numeric' })}\n\n <!-- Numbers/currency -->\n ${this.$localize.number(1000, { style: 'currency', currency: 'USD'})}\n or\n ${this.$n(1000,{ style: 'currency', currency: 'USD'})}\n\n <!-- Determining language -->\n ${this.$localize.lang()}\n\n <!-- Determining directionality, e.g. 'ltr' or 'rtl' -->\n ${this.$localize.dir()}\n\n\n *** HOW TO DEFINE TRANSLATIONS: ***\n // Simple terms\n upload: 'Upload',\n\n // Terms with placeholders\n greetUser: (name: string) => `Hello, ${name}!`,\n\n // Plurals\n numFilesSelected: (count: number) => {\n if (count === 0) return 'No files selected';\n if (count === 1) return '1 file selected';\n return `${count} files selected`;\n }\n */\nconst LocalizeMixin = (Base) => class extends Base {\n constructor() {\n super(...arguments);\n this.localize = new LocalizeController(this);\n }\n // Provide default values to avoid definite assignment errors and avoid decorators\n // commentati perchè danno problemi su React.js. Sono attributi nativi, e assegnare un valore di default a react da fastidio\n // dir: string = '';\n // lang: string = '';\n /**\n * Restituisce tutta l'utility di traduzione\n *\n\n *\n * @returns tutta l'utility di traduzione\n *\n * @example\n * this.$localize.lang() -> ritorna la lingua corrente\n * this.$localize.dir() -> ritorna la direzione della lingua corrente\n */\n get $localize() {\n return this.localize;\n }\n /**\n * Restituisce una stringa localizzata a partire da una chiave di termine.\n *\n * Utilizza il `LocalizeController` per accedere al dizionario corrente e\n * tradurre la chiave fornita secondo la lingua attiva.\n *\n * @param t - La chiave del termine da localizzare (es. 'hello', 'submit', ecc.).\n * @returns La stringa tradotta in base alla lingua attiva. Se la chiave non è trovata, restituisce la chiave stessa.\n *\n * @example\n * this.$t('hello'); // → \"Ciao\" (in locale it-IT)\n */\n $t(t) {\n // format term\n return this.localize.term(t);\n }\n /**\n * Formatta una data in base alla localizzazione attiva.\n *\n * Utilizza il `LocalizeController` per restituire una stringa localizzata\n * secondo le opzioni fornite (es. mese esteso, anno, ecc.).\n *\n * @param n - La data da formattare come stringa compatibile (es. ISO o con timezone, es. '2021-09-15 14:00:00 ET').\n * @param p - Le opzioni di formattazione per `Intl.DateTimeFormat` (es. { year: 'numeric', month: 'long', day: 'numeric' }).\n * @returns Una stringa rappresentante la data formattata secondo la localizzazione attiva.\n *\n * @example\n * this.$d('2021-09-15 14:00:00 ET', { year: 'numeric', month: 'long', day: 'numeric' });\n * // → \"15 settembre 2021\" (in locale it-IT)\n */\n $d(d, p) {\n // format date\n return this.localize.date(d, p);\n }\n /**\n * Formatta un numero secondo le impostazioni locali dell'utente corrente.\n *\n * Utilizza il `LocalizeController` per applicare formattazione numerica,\n * incluse opzioni come separatori, decimali, valute, ecc.\n *\n * @param d - Il numero da formattare.\n * @param p - Le opzioni di formattazione (es. { style: 'currency', currency: 'EUR' }).\n * @returns Una stringa rappresentante il numero formattato secondo la localizzazione attiva.\n *\n * @example\n * this.$n(1234.56, { style: 'currency', currency: 'USD' }); // → \"$1,234.56\" (in locale en-US)\n */\n $n(d, p) {\n return this.localize.number(d, p);\n }\n};\n// export interface LocalizedComponent {\n// $t(t: string): string;\n// $d(d: Date | string, p?: Intl.DateTimeFormatOptions): string;\n// $n(n: number, p?: Intl.NumberFormatOptions): string;\n// $localize: LocalizeController;\n// }\n\nexport { LocalizeController, LocalizeMixin, registerTranslation };\n//# sourceMappingURL=index.js.map\n","/* eslint-disable no-console */\nexport class Logger {\n constructor(tag) {\n this.tag = tag;\n }\n format(level, msg) {\n return [`[${this.tag}] ${msg}`];\n }\n warn(msg) {\n console.warn(...this.format('warn', msg));\n }\n error(msg) {\n console.error(...this.format('error', msg));\n }\n info(msg) {\n console.info(...this.format('info', msg));\n }\n}\n//# sourceMappingURL=logger.js.map","import clsx from 'clsx';\nimport { LitElement } from 'lit';\nimport { LocalizeMixin } from '@italia/i18n';\nimport { Logger } from '../utils/logger.js';\n/**\n * Factory function per creare una base class estendibile\n * con stili personalizzati.\n */\nexport class BaseComponent extends LitElement {\n constructor() {\n super();\n this.composeClass = clsx;\n this.logger = new Logger(this.tagName.toLowerCase());\n }\n get _ariaAttributes() {\n const attributes = {};\n for (const attr of this.getAttributeNames()) {\n if (attr === 'it-role') {\n attributes.role = this.getAttribute(attr);\n }\n else if (attr.startsWith('it-aria-')) {\n attributes[attr.replace(/^it-/, '')] = this.getAttribute(attr);\n }\n }\n return attributes;\n }\n // eslint-disable-next-line class-methods-use-this\n generateId(prefix) {\n return `${prefix}-${Math.random().toString(36).slice(2)}`;\n }\n // eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars\n addFocus(element) {\n // new TrackFocus(element); // per il momento è stato disattivato perchè ci sono le pseudo classi ::focus-visible per fare quello che fa TrackFocus. Si possono aggiungere regole css in bsi-italia 3 dato che stiamo facendo una breaking release di bsi.\n }\n // eslint-disable-next-line class-methods-use-this\n getActiveElement() {\n let active = document.activeElement;\n while (active && active.shadowRoot && active.shadowRoot.activeElement) {\n active = active.shadowRoot.activeElement;\n }\n return active;\n }\n get focusElement() {\n return this;\n }\n // eslint-disable-next-line class-methods-use-this\n get prefersReducedMotion() {\n return window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n }\n connectedCallback() {\n super.connectedCallback();\n // generate internal _id\n const prefix = this.id?.length > 0 ? this.id : this.tagName.toLowerCase();\n this._id = this.generateId(prefix);\n }\n}\nexport const BaseLocalizedComponent = LocalizeMixin(BaseComponent);\n//# sourceMappingURL=base-component.js.map","//\n// We store a WeakMap of forms + controls so we can keep references to all FormControl within a given form. As\n// elements connect and disconnect to/from the DOM, their containing form is used as the key and the form control is\n// added and removed from the form's set, respectively.\n//\nexport const formCollections = new WeakMap();\n//\n// We store a WeakMap of reportValidity() overloads so we can override it when form controls connect to the DOM and\n// restore the original behavior when they disconnect.\n//\nconst reportValidityOverloads = new WeakMap();\nconst checkValidityOverloads = new WeakMap();\n//\n// We store a Set of controls that users have interacted with. This allows us to determine the interaction state\n// without littering the DOM with additional data attributes.\n//\nconst userInteractedControls = new WeakSet();\n//\n// We store a WeakMap of interactions for each form control so we can track when all conditions are met for validation.\n//\nconst interactions = new WeakMap();\n/** A reactive controller to allow form controls to participate in form submission, validation, etc. */\nexport class FormControlController {\n constructor(host, options) {\n this.submittedOnce = false;\n this.handleFormData = (event) => {\n // console.log('handleFormData');\n const disabled = this.options.disabled(this.host);\n const name = this.options.name(this.host);\n const value = this.options.value(this.host);\n const tagName = this.host.tagName.toLowerCase();\n // For buttons, we only submit the value if they were the submitter. This is currently done in doAction() by\n // injecting the name/value on a temporary button, so we can just skip them here.\n const isButton = tagName === 'it-button';\n if (this.host.isConnected &&\n !disabled &&\n !isButton &&\n typeof name === 'string' &&\n name.length > 0 &&\n typeof value !== 'undefined') {\n switch (tagName) {\n case 'it-radio':\n if (this.host.checked) {\n event.formData.append(name, value);\n }\n break;\n case 'it-checkbox':\n if (this.host.checked) {\n if (event.formData.getAll(name).indexOf(value) < 0) {\n // handle group checkbox\n event.formData.append(name, value);\n }\n }\n break;\n case 'it-checkbox-group':\n // non settare valori in formData, perchè ogni singola checkbox setta il suo valore\n break;\n default:\n if (Array.isArray(value)) {\n value.forEach((val) => {\n event.formData.append(name, val.toString());\n });\n }\n else {\n event.formData.append(name, value.toString());\n }\n }\n }\n };\n this.handleFormSubmit = (event) => {\n const disabled = this.options.disabled(this.host);\n const reportValidity = this.options.reportValidity;\n // Update the interacted state for all controls when the form is submitted\n if (this.form && !this.form.noValidate) {\n formCollections.get(this.form)?.forEach((control) => {\n this.setUserInteracted(control, true);\n });\n }\n const resReportValidity = reportValidity(this.host);\n if (this.form && !this.form.noValidate && !disabled && !resReportValidity) {\n event.preventDefault();\n // event.stopImmediatePropagation(); // se lo attiviamo, valida un campo alla volta\n // Scroll al primo controllo non valido\n const formControls = formCollections.get(this.form);\n if (formControls) {\n for (const control of formControls) {\n if (!control.validity?.valid) {\n // Scroll smooth verso il controllo non valido\n control.scrollIntoView({\n behavior: 'smooth',\n block: 'center',\n });\n break;\n }\n }\n }\n }\n this.submittedOnce = true;\n };\n this.handleFormReset = () => {\n this.options.setValue(this.host, '');\n this.submittedOnce = false;\n this.setUserInteracted(this.host, false);\n interactions.set(this.host, []);\n };\n this.handleInteraction = (event) => {\n const emittedEvents = interactions.get(this.host);\n if (!emittedEvents.includes(event.type)) {\n emittedEvents.push(event.type);\n }\n // Mark it as user-interacted as soon as all associated events have been emitted\n if (emittedEvents.length === this.options.assumeInteractionOn.length) {\n this.setUserInteracted(this.host, true);\n }\n };\n this.checkFormValidity = () => {\n // console.log('checkFormValidity');\n //\n // This is very similar to the `reportFormValidity` function, but it does not trigger native constraint validation\n // Allow the user to simply check if the form is valid and handling validity in their own way.\n //\n // We preserve the original method in a WeakMap, but we don't call it from the overload because that would trigger\n // validations in an unexpected order. When the element disconnects, we revert to the original behavior. This won't\n // be necessary once we can use ElementInternals.\n //\n // Note that we're also honoring the form's novalidate attribute.\n //\n if (this.form && !this.form.noValidate) {\n // This seems sloppy, but checking all elements will cover native inputs, Shoelace inputs, and other custom\n // elements that support the constraint validation API.\n const elements = this.form.querySelectorAll('*');\n for (const element of elements) {\n if (typeof element.checkValidity === 'function') {\n if (!element.checkValidity()) {\n return false;\n }\n }\n }\n }\n return true;\n };\n this.reportFormValidity = () => {\n // console.log('reportFormValidity');\n //\n // FormControl work hard to act like regular form controls. They support the Constraint Validation API\n // and its associated methods such as setCustomValidity() and reportValidity(). However, the HTMLFormElement also\n // has a reportValidity() method that will trigger validation on all child controls. Since we're not yet using\n // ElementInternals, we need to overload this method so it looks for any element with the reportValidity() method.\n //\n // We preserve the original method in a WeakMap, but we don't call it from the overload because that would trigger\n // validations in an unexpected order. When the element disconnects, we revert to the original behavior. This won't\n // be necessary once we can use ElementInternals.\n //\n // Note that we're also honoring the form's novalidate attribute.\n //\n if (this.form && !this.form.noValidate) {\n // This seems sloppy, but checking all elements will cover native inputs, Shoelace inputs, and other custom\n // elements that support the constraint validation API.\n const elements = this.form.querySelectorAll('*');\n for (const element of elements) {\n if (typeof element.reportValidity === 'function') {\n if (!element.reportValidity()) {\n return false;\n }\n }\n }\n }\n return true;\n };\n (this.host = host).addController(this);\n this.options = {\n form: (input) => {\n // If there's a form attribute, use it to find the target form by id\n // Controls may not always reflect the 'form' property. For example, `<it-button>` doesn't reflect.\n const formId = input.form;\n if (formId) {\n const root = input.getRootNode();\n const form = root.querySelector(`#${formId}`);\n if (form) {\n return form;\n }\n }\n return input.closest('form');\n },\n name: (input) => input.name,\n value: (input) => input.value,\n disabled: (input) => input.disabled ?? false,\n reportValidity: (input) => typeof input.reportValidity === 'function' ? input.reportValidity() : true,\n checkValidity: (input) => (typeof input.checkValidity === 'function' ? input.checkValidity() : true),\n setValue: (input, value) => {\n // eslint-disable-next-line no-param-reassign\n input.value = value;\n },\n assumeInteractionOn: ['it-input'],\n ...options,\n };\n }\n hostConnected() {\n const form = this.options.form(this.host);\n if (form) {\n this.attachForm(form);\n }\n // Listen for interactions\n interactions.set(this.host, []);\n this.options.assumeInteractionOn.forEach((event) => {\n this.host.addEventListener(event, this.handleInteraction);\n });\n }\n hostDisconnected() {\n this.detachForm();\n // Clean up interactions\n interactions.delete(this.host);\n this.options.assumeInteractionOn.forEach((event) => {\n this.host.removeEventListener(event, this.handleInteraction);\n });\n }\n hostUpdated() {\n const form = this.options.form(this.host);\n // Detach if the form no longer exists\n if (!form) {\n this.detachForm();\n }\n // If the form has changed, reattach it\n if (form && this.form !== form) {\n this.detachForm();\n this.attachForm(form);\n }\n if (this.host.hasUpdated) {\n this.setValidity(this.host.validity.valid);\n }\n }\n attachForm(form) {\n if (form) {\n this.form = form;\n // Add this element to the form's collection\n if (formCollections.has(this.form)) {\n formCollections.get(this.form).add(this.host);\n }\n else {\n formCollections.set(this.form, new Set([this.host]));\n }\n this.form.addEventListener('formdata', this.handleFormData);\n this.form.addEventListener('submit', this.handleFormSubmit);\n this.form.addEventListener('reset', this.handleFormReset);\n // Overload the form's reportValidity() method so it looks at FormControl\n if (!reportValidityOverloads.has(this.form)) {\n reportValidityOverloads.set(this.form, this.form.reportValidity);\n this.form.reportValidity = () => this.reportFormValidity();\n }\n // Overload the form's checkValidity() method so it looks at FormControl\n if (!checkValidityOverloads.has(this.form)) {\n checkValidityOverloads.set(this.form, this.form.checkValidity);\n this.form.checkValidity = () => this.checkFormValidity();\n }\n }\n else {\n this.form = undefined;\n }\n }\n detachForm() {\n if (!this.form)\n return;\n const formCollection = formCollections.get(this.form);\n if (!formCollection) {\n return;\n }\n this.submittedOnce = false;\n // Remove this host from the form's collection\n formCollection.delete(this.host);\n // Check to make sure there's no other form controls in the collection. If we do this\n // without checking if any other controls are still in the collection, then we will wipe out the\n // validity checks for all other elements.\n // see: https://github.com/shoelace-style/shoelace/issues/1703\n if (formCollection.size <= 0) {\n this.form.removeEventListener('formdata', this.handleFormData);\n this.form.removeEventListener('submit', this.handleFormSubmit);\n this.form.removeEventListener('reset', this.handleFormReset);\n // Remove the overload and restore the original method\n if (reportValidityOverloads.has(this.form)) {\n this.form.reportValidity = reportValidityOverloads.get(this.form);\n reportValidityOverloads.delete(this.form);\n }\n if (checkValidityOverloads.has(this.form)) {\n this.form.checkValidity = checkValidityOverloads.get(this.form);\n checkValidityOverloads.delete(this.form);\n }\n // So it looks weird here to not always set the form to undefined. But I _think_ if we unattach this.form here,\n // we end up in this fun spot where future validity checks don't have a reference to the form validity handler.\n // First form element in sets the validity handler. So we can't clean up `this.form` until there are no other form elements in the form.\n this.form = undefined;\n }\n }\n // eslint-disable-next-line class-methods-use-this\n setUserInteracted(el, hasInteracted) {\n if (hasInteracted) {\n userInteractedControls.add(el);\n }\n else {\n userInteractedControls.delete(el);\n }\n el.requestUpdate();\n }\n doAction(type, submitter) {\n // console.log('doaction', type);\n if (this.form) {\n const button = document.createElement('button');\n button.type = type;\n button.style.position = 'absolute';\n button.style.width = '0';\n button.style.height = '0';\n button.style.clipPath = 'inset(50%)';\n button.style.overflow = 'hidden';\n button.style.whiteSpace = 'nowrap';\n // Pass name, value, and form attributes through to the temporary button\n if (submitter) {\n button.name = submitter.name;\n button.value = submitter.value;\n ['formaction', 'formenctype', 'formmethod', 'formnovalidate', 'formtarget'].forEach((attr) => {\n if (submitter.hasAttribute(attr)) {\n button.setAttribute(attr, submitter.getAttribute(attr));\n }\n });\n }\n this.form.append(button);\n button.click();\n button.remove();\n }\n }\n /** Returns the associated `<form>` element, if one exists. */\n getForm() {\n return this.form ?? null;\n }\n /** Resets the form, restoring all the control to their default value */\n reset(submitter) {\n this.doAction('reset', submitter);\n }\n /** Submits the form, triggering validation and form data injection. */\n submit(submitter) {\n // Calling form.submit() bypasses the submit event and constraint validation. To prevent this, we can inject a\n // native submit button into the form, \"click\" it, then remove it to simulate a standard form submission.\n this.doAction('submit', submitter);\n }\n /**\n * Synchronously sets the form control's validity. Call this when you know the future validity but need to update\n * the host element immediately, i.e. before Lit updates the component in the next update.\n */\n setValidity(isValid) {\n const host = this.host;\n const hasInteracted = Boolean(userInteractedControls.has(host));\n const required = Boolean(host.required);\n //\n // We're mapping the following \"states\" to data attributes. In the future, we can use ElementInternals.states to\n // create a similar mapping, but instead of [data-invalid] it will look like :--invalid.\n //\n // See this RFC for more details: https://github.com/shoelace-style/shoelace/issues/1011\n //\n host.toggleAttribute('data-required', required);\n host.toggleAttribute('data-optional', !required);\n host.toggleAttribute('data-invalid', !isValid);\n host.toggleAttribute('data-valid', isValid);\n host.toggleAttribute('data-user-invalid', !isValid && hasInteracted);\n host.toggleAttribute('data-user-valid', isValid && hasInteracted);\n }\n userInteracted() {\n const hasInteracted = Boolean(userInteractedControls.has(this.host));\n return hasInteracted;\n }\n /**\n * Updates the form control's validity based on the current value of `host.validity.valid`. Call this when anything\n * that affects constraint validation changes so the component receives the correct validity states.\n */\n updateValidity() {\n const host = this.host;\n this.setValidity(host.validity.valid);\n }\n /**\n * Dispatches a non-bubbling, cancelable custom event of type `it-invalid`.\n * If the `it-invalid` event will be cancelled then the original `invalid`\n * event (which may have been passed as argument) will also be cancelled.\n * If no original `invalid` event has been passed then the `it-invalid`\n * event will be cancelled before being dispatched.\n */\n emitInvalidEvent(originalInvalidEvent) {\n const itInvalidEvent = new CustomEvent('it-invalid', {\n bubbles: false,\n composed: false,\n cancelable: true,\n detail: {},\n });\n if (!originalInvalidEvent) {\n itInvalidEvent.preventDefault();\n }\n if (!this.host.dispatchEvent(itInvalidEvent)) {\n originalInvalidEvent?.preventDefault();\n }\n }\n}\n//# sourceMappingURL=form-controller.js.map","const translation = {\n $code: 'it',\n $name: 'Italiano',\n $dir: 'ltr',\n validityRequired: 'Questo campo è obbligatorio.',\n validityGroupRequired: \"Scegli almeno un'opzione\",\n validityPattern: 'Il valore non corrisponde al formato richiesto.',\n validityMinlength: 'Il valore deve essere lungo almeno {minlength} caratteri.',\n validityMaxlength: 'Il valore deve essere lungo al massimo {maxlength} caratteri.',\n};\nexport default translation;\n//# sourceMappingURL=it.js.map","import { __decorate, __metadata } from \"tslib\";\nimport { property, query, state } from 'lit/decorators.js';\nimport { registerTranslation } from '@italia/i18n';\nimport { BaseLocalizedComponent } from '../base-component/base-component.js';\nimport { FormControlController } from './form-controller.js';\nimport it from './locales/it.js';\nregisterTranslation(it);\nexport class FormControl extends BaseLocalizedComponent {\n constructor() {\n super(...arguments);\n this.formControlController = new FormControlController(this, {\n assumeInteractionOn: ['it-input', 'it-blur', 'it-change'],\n });\n // TODO: verificare se serve davvero con il fatto che usiamo form-controller\n // static formAssociated = true;\n // @property()\n // internals = this.attachInternals();\n this._touched = false;\n /** The name of the input, submitted as a name/value pair with form data. */\n this.name = '';\n /** The current value of the input, submitted as a name/value pair with form data. */\n this.value = '';\n /** If the input is disabled. */\n this.disabled = false;\n /**\n * By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\n * to place the form control outside of a form and associate it with the form that has this `id`. The form must be in\n * the same document or shadow root for this to work.\n */\n this.form = '';\n /** If you implement your custom validation and you won't to trigger default validation */\n this.customValidation = false;\n /** If your input is invalid from your custom validition, set this attribute with message validation */\n this.validationText = '';\n /**\n * Specifies the granularity that the value must adhere to, or the special value `any` which means no stepping is\n * implied, allowing any numeric value. Only applies to date and number input types.\n */\n this.step = 'any';\n /** The input's minimum length. */\n this.minlength = -1;\n /** The input's maximum length. */\n this.maxlength = -1;\n /** If the input is required. */\n this.required = false;\n /* For grouped input, like checkbox-group */\n this.isInGroup = false;\n this.validationMessage = '';\n }\n /** Gets the validity state object */\n get validity() {\n return this.inputElement?.validity;\n }\n /** Gets the associated form, if one exists. */\n getForm() {\n return this.formControlController.getForm();\n }\n // Form validation methods\n checkValidity() {\n const inputValid = this.inputElement?.checkValidity() ?? true; // this.inputElement.checkValidity() è la validazione del browser\n return inputValid;\n }\n /** Checks for validity and shows the browser's validation message if the control is invalid. */\n reportValidity() {\n // const ret = this.inputElement.checkValidity();\n const ret = this.checkValidity(); // chiama la checkValidity, che se è stata overridata chiama quella\n this.handleValidationMessages();\n return ret; // this.inputElement.reportValidity();\n }\n /** Sets a custom validation message. Pass an empty string to restore validity. */\n setCustomValidity(message) {\n this.inputElement.setCustomValidity(message);\n this.validationMessage = this.inputElement.validationMessage;\n this.formControlController.updateValidity();\n }\n // Handlers\n _handleReady() {\n requestAnimationFrame(() => {\n this.dispatchEvent(new CustomEvent('it-input-ready', { bubbles: true, detail: { el: this.inputElement } }));\n });\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n _handleInput(e) {\n this.handleValidationMessages();\n this.dispatchEvent(new CustomEvent('it-input', {\n detail: { value: this.inputElement.value, el: this.inputElement },\n bubbles: true,\n composed: true,\n }));\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n _handleBlur(e) {\n this._touched = true;\n this.handleValidationMessages();\n this.dispatchEvent(new FocusEvent('it-blur', { bubbles: true, composed: true }));\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n _handleFocus(e) {\n this.dispatchEvent(new FocusEvent('it-focus', { bubbles: true, composed: true }));\n }\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n _handleClick(e) {\n this.dispatchEvent(new MouseEvent('it-click', { bubbles: true, composed: true }));\n }\n /*\n Override default browser validation messages\n */\n handleValidationMessages() {\n if (!this.customValidation) {\n const _v = this.inputElement.validity;\n const isRequiredHandledByGroup = this.isInGroup === true;\n if (_v.valueMissing && !isRequiredHandledByGroup) {\n this.setCustomValidity(this.$t('validityRequired'));\n }\n else if (_v.patternMismatch) {\n this.setCustomValidity(this.$t('validityPattern'));\n }\n else if (_v.tooShort) {\n this.setCustomValidity(this.$t('validityMinlength').replace('{minlength}', this.minlength.toString()));\n }\n else if (_v.tooLong) {\n this.setCustomValidity(this.$t('validityMaxlength').replace('{maxlength}', this.maxlength.toString()));\n }\n else {\n /* nothing. Usa il messaggio di errore della validazione\n di default del browser per altri errori di validità come:\n - typeMismatch\n - rangeUnderflow\n - rangeOverflow\n - stepMismatch\n - badInput */\n const otherConstraintErrors = _v.typeMismatch || _v.rangeUnderflow || _v.rangeOverflow || _v.stepMismatch || _v.badInput;\n if (!otherConstraintErrors) {\n this.setCustomValidity('');\n }\n }\n }\n this.validationMessage = this.inputElement.validationMessage;\n }\n _handleInvalid(event) {\n this.formControlController.setValidity(false);\n this.formControlController.emitInvalidEvent(event);\n }\n _handleChange(e) {\n const target = e.target;\n let value;\n if (target instanceof HTMLInputElement) {\n switch (target.type) {\n case 'checkbox':\n case 'radio':\n value = target.checked;\n break;\n case 'file':\n value = target.files; // FileList\n break;\n default:\n value = target.value;\n }\n }\n else if (target instanceof HTMLSelectElement) {\n if (target.multiple) {\n value = Array.from(target.selectedOptions).map((o) => o.value);\n }\n else {\n value = target.value;\n }\n }\n else {\n // textarea o altri input con value\n value = target.value;\n }\n this.dispatchEvent(new CustomEvent('it-change', {\n detail: { value, el: target },\n bubbles: true,\n composed: true,\n }));\n }\n updated(changedProperties) {\n super.updated?.(changedProperties);\n if (this.customValidation) {\n this.setCustomValidity(this.validationText ?? '');\n }\n else if (this.formControlController.userInteracted()) {\n this.formControlController.updateValidity();\n }\n }\n}\n__decorate([\n state(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"_touched\", void 0);\n__decorate([\n query('.it-form__control'),\n __metadata(\"design:type\", HTMLInputElement)\n], FormControl.prototype, \"inputElement\", void 0);\n__decorate([\n property({ type: String, reflect: true }) // from FormControl\n ,\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"name\", void 0);\n__decorate([\n property({ reflect: true }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"value\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true }) // from FormControl\n ,\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"disabled\", void 0);\n__decorate([\n property({ reflect: true, type: String }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"form\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true, attribute: 'custom-validation' }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"customValidation\", void 0);\n__decorate([\n property({ attribute: 'validity-message', reflect: true }),\n __metadata(\"design:type\", String)\n], FormControl.prototype, \"validationText\", void 0);\n__decorate([\n property(),\n __metadata(\"design:type\", String)\n], FormControl.prototype, \"pattern\", void 0);\n__decorate([\n property(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"min\", void 0);\n__decorate([\n property(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"max\", void 0);\n__decorate([\n property(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"step\", void 0);\n__decorate([\n property({ type: Number }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"minlength\", void 0);\n__decorate([\n property({ type: Number }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"maxlength\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true }) // from FormControl\n ,\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"required\", void 0);\n__decorate([\n property({ type: Boolean }),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"isInGroup\", void 0);\n__decorate([\n state(),\n __metadata(\"design:type\", Object)\n], FormControl.prototype, \"validationMessage\", void 0);\n//# sourceMappingURL=form-control.js.map","import TrackFocus from './utils/track-focus.js';\nimport setAttributes from './directives/setAttributes.js';\nimport AriaKeyboardListController from './controllers/aria-keyboard-list-controller.js';\nimport { StoryFormControlMethodAndProps } from './stories/formControlReusableStories.js';\nimport { CollapsibleOrHiddenContentGuidelines } from './stories/reusableUsageGuidelinesStories.js';\nif (typeof window !== 'undefined') {\n window._itAnalytics = window._itAnalytics || {};\n window._itAnalytics = {\n ...window._itAnalytics,\n version: '1.0.0-alpha.4',\n };\n}\nexport { TrackFocus, setAttributes, AriaKeyboardListController };\nexport { RovingTabindexController } from './controllers/roving-tabindex-controller.js';\nexport { BaseComponent, BaseLocalizedComponent, } from './base-component/base-component.js';\nexport { AriaKeyboardAccordionController, } from './controllers/aria-keyboard-accordion-controller.js';\nexport { CollapseAnimationController } from './controllers/collapse-controller.js';\nexport { FormControl } from './form/form-control.js';\nexport { formCollections, FormControlController } from './form/form-controller.js';\nexport { cookies } from './utils/cookies.js';\nexport { WindowManager } from './window-manager.js';\nexport { StoryFormControlMethodAndProps, CollapsibleOrHiddenContentGuidelines };\n//# sourceMappingURL=index.js.map","import { html, nothing } from 'lit';\nimport { BaseComponent } from '@italia/globals';\nimport { customElement, property, queryAssignedElements } from 'lit/decorators.js';\nimport { classMap } from 'lit/directives/class-map.js';\nimport type { ItIcon } from '@italia/icon';\nimport { ChipSize, ChipVariant } from './types.js';\n\nimport styles from './chip.scss';\n\n@customElement('it-chip')\nexport class ItChip extends BaseComponent {\n static styles = styles;\n\n @property({ type: Boolean, reflect: true }) dismissable = false;\n\n @property({ type: String, reflect: true }) size: ChipSize = 'sm';\n\n @property({ type: String, reflect: true }) avatar = '';\n\n @property({ type: String, reflect: true, attribute: 'avatar-alt' }) avatarAlt = '';\n\n @property({ type: String, reflect: true }) label = '';\n\n @property({ type: String, reflect: true }) href = '';\n\n @property({ type: String, reflect: true, attribute: 'a11y-description' }) a11yDescription = '';\n\n @property({ type: String, reflect: true }) variant: ChipVariant = '';\n\n @property({ type: Boolean, reflect: true, attribute: 'is-disabled' }) isDisabled = false;\n\n @queryAssignedElements({ slot: 'dismiss-button', flatten: true })\n closeButton!: HTMLButtonElement[];\n\n @queryAssignedElements({ slot: 'icon', flatten: true })\n icon!: ItIcon[];\n\n private getAvatarSize() {\n // Per chip lg usa avatar sm, per gli altri usa avatar xs\n return this.size === 'lg' ? 'sm' : 'xs';\n }\n\n private updateIcon() {\n if (this.icon.length) {\n const icon = this.icon[0];\n\n if (this.size === 'lg') {\n icon.size = 'sm';\n } else {\n icon.size = 'xs';\n }\n icon.color = this.variant ?? '';\n }\n }\n\n override updated() {\n if (this.dismissable) {\n if (!this.closeButton.length) {\n this.logger.warn(\n 'The `dismissable` property is enabled, but no <button slot=\"dismiss-button\"> was found. ' +\n 'This button is required to allow chip removal.',\n );\n } else {\n this.closeButton.forEach((btn) => {\n if (\n (btn.tagName.toLowerCase() === 'it-button' &&\n !btn.hasAttribute('it-aria-label') &&\n btn.textContent?.trim().length === 0) ||\n (btn.tagName.toLowerCase() === 'button' &&\n !btn.hasAttribute('aria-label') &&\n btn.textContent?.trim().length === 0)\n ) {\n this.logger.warn(\n 'Dismiss button lacks both a `label`, an `aria-label` and text content. ' +\n 'Providing an accessible label or visually hidden text content is strongly recommended.',\n );\n }\n });\n }\n }\n\n if (this.avatar && !this.avatarAlt) {\n this.logger.warn(\n 'Avatar image provided without an alternative text (`avatarAlt`). ' +\n 'This negatively impacts accessibility compliance.',\n );\n }\n this.updateIcon();\n }\n\n render() {\n const avatarSize = this.getAvatarSize();\n const avatarHeights = {\n xs: '1rem',\n sm: '1.5rem',\n md: '2.5rem',\n lg: '3.5rem',\n xl: '5rem',\n xxl: '7rem',\n };\n\n const avatarHeight = avatarHeights[avatarSize];\n\n const classes = {\n chip: true,\n [`chip-${this.size}`]: this.size,\n [`chip-${this.variant}`]: !!this.variant && !this.isDisabled,\n 'chip-disabled': this.isDisabled,\n };\n\n const content = html`\n ${this.a11yDescription ? html`<span class=\"visually-hidden\">${this.a11yDescription}</span>` : nothing}\n <slot name=\"icon\"></slot>\n ${this.avatar\n ? html`\n <it-avatar\n size=\"${avatarSize}\"\n src=\"${this.avatar}\"\n alt=\"${this.avatarAlt}\"\n style=\"height: ${avatarHeight}\"\n ></it-avatar>\n `\n : null}\n <span class=\"chip-label\">${this.label}</span>\n <slot name=\"dismiss-button\"></slot>\n `;\n\n return this.href\n ? html`<a class=\"${classMap(classes)}\" part=\"chip focusable\" href=\"${this.href}\">${content}</a>`\n : html`<div class=\"${classMap(classes)}\" part=\"chip\">${content}</div>`;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'it-chip': ItChip;\n }\n}\n"],"names":["it"],"mappings":"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","x_google_ignoreList":[0,2]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@italia/chip",
|
|
3
3
|
"description": "Web component it-chip del Design system .italia",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.0.0-alpha.4",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -34,10 +34,9 @@
|
|
|
34
34
|
"custom-elements.json"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"bootstrap-italia": "github:italia/bootstrap-italia#
|
|
37
|
+
"bootstrap-italia": "github:italia/bootstrap-italia#ba6eddb24194f44d1080deb24701e0603457d176",
|
|
38
38
|
"lit": "^3.3.0",
|
|
39
|
-
"@italia/
|
|
40
|
-
"@italia/globals": "^0.1.0-alpha.2"
|
|
39
|
+
"@italia/globals": "^1.0.0-alpha.4"
|
|
41
40
|
},
|
|
42
41
|
"devDependencies": {
|
|
43
42
|
"@custom-elements-manifest/analyzer": "^0.10.3",
|
|
@@ -52,12 +51,17 @@
|
|
|
52
51
|
"sass": "^1.89.0",
|
|
53
52
|
"tslib": "^2.6.3",
|
|
54
53
|
"typescript": "^5.5.3",
|
|
55
|
-
"@italia/avatar": "^
|
|
56
|
-
"@italia/button": "^
|
|
57
|
-
"@italia/icon": "^
|
|
54
|
+
"@italia/avatar": "^1.0.0-alpha.4",
|
|
55
|
+
"@italia/button": "^1.0.0-alpha.4",
|
|
56
|
+
"@italia/icon": "^1.0.0-alpha.4",
|
|
58
57
|
"@italia/test-config": "^0.0.0",
|
|
59
58
|
"@italia/typescript-config": "^0.0.0"
|
|
60
59
|
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"@italia/avatar": "^1.0.0-alpha.4",
|
|
62
|
+
"@italia/button": "^1.0.0-alpha.4",
|
|
63
|
+
"@italia/icon": "^1.0.0-alpha.4"
|
|
64
|
+
},
|
|
61
65
|
"customElements": "custom-elements.json",
|
|
62
66
|
"scripts": {
|
|
63
67
|
"analyze": "cem analyze --litelement --exclude dist",
|
package/styles/globals.scss
CHANGED
|
@@ -4,7 +4,7 @@ it-chip {
|
|
|
4
4
|
vertical-align: middle;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
//
|
|
7
|
+
// Styles for the defined state
|
|
8
8
|
it-chip:defined {
|
|
9
9
|
it-button::part(button) {
|
|
10
10
|
padding: 0;
|
|
@@ -28,3 +28,56 @@ it-chip:defined {
|
|
|
28
28
|
display: inline-flex;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
+
// Styles for the loading state
|
|
32
|
+
it-chip:not(:defined) {
|
|
33
|
+
--it-host-display: flex;
|
|
34
|
+
--it-chip-fouc-font-size: 16px;
|
|
35
|
+
--it-chip-fouc-children-size: 16px;
|
|
36
|
+
width: fit-content;
|
|
37
|
+
height: 34px;
|
|
38
|
+
align-items: center;
|
|
39
|
+
padding: var(--it-spacing-3xs) var(--it-spacing-xs);
|
|
40
|
+
font-size: var(--it-chip-fouc-font-size);
|
|
41
|
+
gap: var(--it-spacing-xxs);
|
|
42
|
+
|
|
43
|
+
::after {
|
|
44
|
+
order: 1;
|
|
45
|
+
font-size: var(--it-chip-fouc-font-size);
|
|
46
|
+
font-weight: var(--it-font-weight-semibold);
|
|
47
|
+
line-height: var(--it-font-line-height-5);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
it-button,
|
|
51
|
+
it-icon {
|
|
52
|
+
width: var(--it-chip-fouc-children-size);
|
|
53
|
+
height: var(--it-chip-fouc-children-size);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
it-button {
|
|
57
|
+
order: 2;
|
|
58
|
+
padding: 0;
|
|
59
|
+
border-radius: 50%;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
it-icon {
|
|
63
|
+
order: 0;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&[avatar] {
|
|
67
|
+
&::before {
|
|
68
|
+
display: inline-block;
|
|
69
|
+
width: var(--it-chip-fouc-children-size);
|
|
70
|
+
height: var(--it-chip-fouc-children-size);
|
|
71
|
+
order: 0;
|
|
72
|
+
border-radius: 50%;
|
|
73
|
+
margin-right: 0.5rem;
|
|
74
|
+
background-color: var(--it-fouc-bg);
|
|
75
|
+
content: '';
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&[size='lg'] {
|
|
80
|
+
--it-chip-fouc-children-size: 24px;
|
|
81
|
+
--it-chip-fouc-font-size: 18px;
|
|
82
|
+
}
|
|
83
|
+
}
|