@italia/input 0.1.0-alpha.0 → 0.1.0-alpha.2

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.
@@ -1,1099 +1,48 @@
1
+ import { FormControl } from '@italia/globals';
1
2
  import { type InputType, type Sizes } from './types.js';
2
- declare const ItInput_base: (abstract new (...args: any[]) => {
3
- _getValidityMessage(state: string, translations: Record<string, string>): string | undefined;
4
- invalid: boolean;
5
- required: boolean;
6
- validityMessage: string;
7
- _value: string;
8
- pattern?: string;
9
- disabled: boolean;
10
- minlength: number;
11
- maxlength: number;
12
- customValidation: boolean;
13
- _touched: boolean;
14
- _checkValidity(translations: Record<string, string>, htmlValidity?: boolean): boolean | undefined;
15
- setCustomValidity(validityMessage: string): void;
16
- _handleBlur(): void;
17
- _handleFocus(): void;
18
- _handleClick(): void;
19
- _handleChange(e: Event): void;
20
- accessKey: string;
21
- readonly accessKeyLabel: string;
22
- autocapitalize: string;
23
- dir: string;
24
- draggable: boolean;
25
- hidden: boolean;
26
- inert: boolean;
27
- innerText: string;
28
- lang: string;
29
- readonly offsetHeight: number;
30
- readonly offsetLeft: number;
31
- readonly offsetParent: Element | null;
32
- readonly offsetTop: number;
33
- readonly offsetWidth: number;
34
- outerText: string;
35
- popover: string | null;
36
- spellcheck: boolean;
37
- title: string;
38
- translate: boolean;
39
- writingSuggestions: string;
40
- attachInternals(): ElementInternals;
41
- click(): void;
42
- hidePopover(): void;
43
- showPopover(): void;
44
- togglePopover(options?: boolean): boolean;
45
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
46
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
47
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
48
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
49
- readonly attributes: NamedNodeMap;
50
- get classList(): DOMTokenList;
51
- set classList(value: string): any;
52
- className: string;
53
- readonly clientHeight: number;
54
- readonly clientLeft: number;
55
- readonly clientTop: number;
56
- readonly clientWidth: number;
57
- readonly currentCSSZoom: number;
58
- id: string;
59
- innerHTML: string;
60
- readonly localName: string;
61
- readonly namespaceURI: string | null;
62
- onfullscreenchange: ((this: Element, ev: Event) => any) | null;
63
- onfullscreenerror: ((this: Element, ev: Event) => any) | null;
64
- outerHTML: string;
65
- readonly ownerDocument: Document;
66
- get part(): DOMTokenList;
67
- set part(value: string): any;
68
- readonly prefix: string | null;
69
- readonly scrollHeight: number;
70
- scrollLeft: number;
71
- scrollTop: number;
72
- readonly scrollWidth: number;
73
- readonly shadowRoot: ShadowRoot | null;
74
- slot: string;
75
- readonly tagName: string;
76
- attachShadow(init: ShadowRootInit): ShadowRoot;
77
- checkVisibility(options?: CheckVisibilityOptions): boolean;
78
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
79
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
80
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
81
- closest<E extends Element = Element>(selectors: string): E | null;
82
- computedStyleMap(): StylePropertyMapReadOnly;
83
- getAttribute(qualifiedName: string): string | null;
84
- getAttributeNS(namespace: string | null, localName: string): string | null;
85
- getAttributeNames(): string[];
86
- getAttributeNode(qualifiedName: string): Attr | null;
87
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
88
- getBoundingClientRect(): DOMRect;
89
- getClientRects(): DOMRectList;
90
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
91
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
92
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
93
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
94
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
95
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
96
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
97
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
98
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
99
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
100
- getHTML(options?: GetHTMLOptions): string;
101
- hasAttribute(qualifiedName: string): boolean;
102
- hasAttributeNS(namespace: string | null, localName: string): boolean;
103
- hasAttributes(): boolean;
104
- hasPointerCapture(pointerId: number): boolean;
105
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
106
- insertAdjacentHTML(position: InsertPosition, string: string): void;
107
- insertAdjacentText(where: InsertPosition, data: string): void;
108
- matches(selectors: string): boolean;
109
- releasePointerCapture(pointerId: number): void;
110
- removeAttribute(qualifiedName: string): void;
111
- removeAttributeNS(namespace: string | null, localName: string): void;
112
- removeAttributeNode(attr: Attr): Attr;
113
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
114
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
115
- scroll(options?: ScrollToOptions): void;
116
- scroll(x: number, y: number): void;
117
- scrollBy(options?: ScrollToOptions): void;
118
- scrollBy(x: number, y: number): void;
119
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
120
- scrollTo(options?: ScrollToOptions): void;
121
- scrollTo(x: number, y: number): void;
122
- setAttribute(qualifiedName: string, value: string): void;
123
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
124
- setAttributeNode(attr: Attr): Attr | null;
125
- setAttributeNodeNS(attr: Attr): Attr | null;
126
- setHTMLUnsafe(html: string): void;
127
- setPointerCapture(pointerId: number): void;
128
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
129
- webkitMatchesSelector(selectors: string): boolean;
130
- readonly baseURI: string;
131
- readonly childNodes: NodeListOf<ChildNode>;
132
- readonly firstChild: ChildNode | null;
133
- readonly isConnected: boolean;
134
- readonly lastChild: ChildNode | null;
135
- readonly nextSibling: ChildNode | null;
136
- readonly nodeName: string;
137
- readonly nodeType: number;
138
- nodeValue: string | null;
139
- readonly parentElement: HTMLElement | null;
140
- readonly parentNode: ParentNode | null;
141
- readonly previousSibling: ChildNode | null;
142
- textContent: string | null;
143
- appendChild<T_1 extends Node>(node: T_1): T_1;
144
- cloneNode(subtree?: boolean): Node;
145
- compareDocumentPosition(other: Node): number;
146
- contains(other: Node | null): boolean;
147
- getRootNode(options?: GetRootNodeOptions): Node;
148
- hasChildNodes(): boolean;
149
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
150
- isDefaultNamespace(namespace: string | null): boolean;
151
- isEqualNode(otherNode: Node | null): boolean;
152
- isSameNode(otherNode: Node | null): boolean;
153
- lookupNamespaceURI(prefix: string | null): string | null;
154
- lookupPrefix(namespace: string | null): string | null;
155
- normalize(): void;
156
- removeChild<T_1 extends Node>(child: T_1): T_1;
157
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
158
- readonly ELEMENT_NODE: 1;
159
- readonly ATTRIBUTE_NODE: 2;
160
- readonly TEXT_NODE: 3;
161
- readonly CDATA_SECTION_NODE: 4;
162
- readonly ENTITY_REFERENCE_NODE: 5;
163
- readonly ENTITY_NODE: 6;
164
- readonly PROCESSING_INSTRUCTION_NODE: 7;
165
- readonly COMMENT_NODE: 8;
166
- readonly DOCUMENT_NODE: 9;
167
- readonly DOCUMENT_TYPE_NODE: 10;
168
- readonly DOCUMENT_FRAGMENT_NODE: 11;
169
- readonly NOTATION_NODE: 12;
170
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
171
- readonly DOCUMENT_POSITION_PRECEDING: 2;
172
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
173
- readonly DOCUMENT_POSITION_CONTAINS: 8;
174
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
175
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
176
- dispatchEvent(event: Event): boolean;
177
- ariaAtomic: string | null;
178
- ariaAutoComplete: string | null;
179
- ariaBrailleLabel: string | null;
180
- ariaBrailleRoleDescription: string | null;
181
- ariaBusy: string | null;
182
- ariaChecked: string | null;
183
- ariaColCount: string | null;
184
- ariaColIndex: string | null;
185
- ariaColIndexText: string | null;
186
- ariaColSpan: string | null;
187
- ariaCurrent: string | null;
188
- ariaDescription: string | null;
189
- ariaDisabled: string | null;
190
- ariaExpanded: string | null;
191
- ariaHasPopup: string | null;
192
- ariaHidden: string | null;
193
- ariaInvalid: string | null;
194
- ariaKeyShortcuts: string | null;
195
- ariaLabel: string | null;
196
- ariaLevel: string | null;
197
- ariaLive: string | null;
198
- ariaModal: string | null;
199
- ariaMultiLine: string | null;
200
- ariaMultiSelectable: string | null;
201
- ariaOrientation: string | null;
202
- ariaPlaceholder: string | null;
203
- ariaPosInSet: string | null;
204
- ariaPressed: string | null;
205
- ariaReadOnly: string | null;
206
- ariaRelevant: string | null;
207
- ariaRequired: string | null;
208
- ariaRoleDescription: string | null;
209
- ariaRowCount: string | null;
210
- ariaRowIndex: string | null;
211
- ariaRowIndexText: string | null;
212
- ariaRowSpan: string | null;
213
- ariaSelected: string | null;
214
- ariaSetSize: string | null;
215
- ariaSort: string | null;
216
- ariaValueMax: string | null;
217
- ariaValueMin: string | null;
218
- ariaValueNow: string | null;
219
- ariaValueText: string | null;
220
- role: string | null;
221
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
222
- getAnimations(options?: GetAnimationsOptions): Animation[];
223
- after(...nodes: (Node | string)[]): void;
224
- before(...nodes: (Node | string)[]): void;
225
- remove(): void;
226
- replaceWith(...nodes: (Node | string)[]): void;
227
- readonly nextElementSibling: Element | null;
228
- readonly previousElementSibling: Element | null;
229
- readonly childElementCount: number;
230
- readonly children: HTMLCollection;
231
- readonly firstElementChild: Element | null;
232
- readonly lastElementChild: Element | null;
233
- append(...nodes: (Node | string)[]): void;
234
- prepend(...nodes: (Node | string)[]): void;
235
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
236
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
237
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
238
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
239
- querySelector<E extends Element = Element>(selectors: string): E | null;
240
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
241
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
242
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
243
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
244
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
245
- replaceChildren(...nodes: (Node | string)[]): void;
246
- readonly assignedSlot: HTMLSlotElement | null;
247
- readonly attributeStyleMap: StylePropertyMap;
248
- get style(): CSSStyleDeclaration;
249
- set style(cssText: string): any;
250
- contentEditable: string;
251
- enterKeyHint: string;
252
- inputMode: string;
253
- readonly isContentEditable: boolean;
254
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
255
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
256
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
257
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
258
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
259
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
260
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
261
- onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
262
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
263
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
264
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
265
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
266
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
267
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
268
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
269
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
270
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
271
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
272
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
273
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
274
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
275
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
276
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
277
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
278
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
279
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
280
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
281
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
282
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
283
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
284
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
285
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
286
- onerror: OnErrorEventHandler;
287
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
288
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
289
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
290
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
291
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
292
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
293
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
294
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
295
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
297
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
298
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
299
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
300
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
301
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
302
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
303
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
304
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
305
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
306
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
307
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
308
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
309
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
310
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
311
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
312
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
313
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
314
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
315
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
316
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
317
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
318
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
319
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
320
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
322
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
323
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
324
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
325
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
326
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
327
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
328
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
329
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
330
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
331
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
332
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
334
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
337
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
338
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
339
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
340
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
341
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
342
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
343
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
344
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
345
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
348
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
349
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
350
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
351
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
352
- autofocus: boolean;
353
- readonly dataset: DOMStringMap;
354
- nonce?: string;
355
- tabIndex: number;
356
- blur(): void;
357
- focus(options?: FocusOptions): void;
358
- }) & (abstract new (...args: any[]) => {
359
- _handleFormdata(event: Event): void;
360
- connectedCallback(): void;
361
- disconnectedCallback(): void;
362
- accessKey: string;
363
- readonly accessKeyLabel: string;
364
- autocapitalize: string;
365
- dir: string;
366
- draggable: boolean;
367
- hidden: boolean;
368
- inert: boolean;
369
- innerText: string;
370
- lang: string;
371
- readonly offsetHeight: number;
372
- readonly offsetLeft: number;
373
- readonly offsetParent: Element | null;
374
- readonly offsetTop: number;
375
- readonly offsetWidth: number;
376
- outerText: string;
377
- popover: string | null;
378
- spellcheck: boolean;
379
- title: string;
380
- translate: boolean;
381
- writingSuggestions: string;
382
- attachInternals(): ElementInternals;
383
- click(): void;
384
- hidePopover(): void;
385
- showPopover(): void;
386
- togglePopover(options?: boolean): boolean;
387
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
388
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
389
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
390
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
391
- readonly attributes: NamedNodeMap;
392
- get classList(): DOMTokenList;
393
- set classList(value: string): any;
394
- className: string;
395
- readonly clientHeight: number;
396
- readonly clientLeft: number;
397
- readonly clientTop: number;
398
- readonly clientWidth: number;
399
- readonly currentCSSZoom: number;
400
- id: string;
401
- innerHTML: string;
402
- readonly localName: string;
403
- readonly namespaceURI: string | null;
404
- onfullscreenchange: ((this: Element, ev: Event) => any) | null;
405
- onfullscreenerror: ((this: Element, ev: Event) => any) | null;
406
- outerHTML: string;
407
- readonly ownerDocument: Document;
408
- get part(): DOMTokenList;
409
- set part(value: string): any;
410
- readonly prefix: string | null;
411
- readonly scrollHeight: number;
412
- scrollLeft: number;
413
- scrollTop: number;
414
- readonly scrollWidth: number;
415
- readonly shadowRoot: ShadowRoot | null;
416
- slot: string;
417
- readonly tagName: string;
418
- attachShadow(init: ShadowRootInit): ShadowRoot;
419
- checkVisibility(options?: CheckVisibilityOptions): boolean;
420
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
421
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
422
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
423
- closest<E extends Element = Element>(selectors: string): E | null;
424
- computedStyleMap(): StylePropertyMapReadOnly;
425
- getAttribute(qualifiedName: string): string | null;
426
- getAttributeNS(namespace: string | null, localName: string): string | null;
427
- getAttributeNames(): string[];
428
- getAttributeNode(qualifiedName: string): Attr | null;
429
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
430
- getBoundingClientRect(): DOMRect;
431
- getClientRects(): DOMRectList;
432
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
433
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
434
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
435
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
436
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
437
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
438
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
439
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
440
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
441
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
442
- getHTML(options?: GetHTMLOptions): string;
443
- hasAttribute(qualifiedName: string): boolean;
444
- hasAttributeNS(namespace: string | null, localName: string): boolean;
445
- hasAttributes(): boolean;
446
- hasPointerCapture(pointerId: number): boolean;
447
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
448
- insertAdjacentHTML(position: InsertPosition, string: string): void;
449
- insertAdjacentText(where: InsertPosition, data: string): void;
450
- matches(selectors: string): boolean;
451
- releasePointerCapture(pointerId: number): void;
452
- removeAttribute(qualifiedName: string): void;
453
- removeAttributeNS(namespace: string | null, localName: string): void;
454
- removeAttributeNode(attr: Attr): Attr;
455
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
456
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
457
- scroll(options?: ScrollToOptions): void;
458
- scroll(x: number, y: number): void;
459
- scrollBy(options?: ScrollToOptions): void;
460
- scrollBy(x: number, y: number): void;
461
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
462
- scrollTo(options?: ScrollToOptions): void;
463
- scrollTo(x: number, y: number): void;
464
- setAttribute(qualifiedName: string, value: string): void;
465
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
466
- setAttributeNode(attr: Attr): Attr | null;
467
- setAttributeNodeNS(attr: Attr): Attr | null;
468
- setHTMLUnsafe(html: string): void;
469
- setPointerCapture(pointerId: number): void;
470
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
471
- webkitMatchesSelector(selectors: string): boolean;
472
- readonly baseURI: string;
473
- readonly childNodes: NodeListOf<ChildNode>;
474
- readonly firstChild: ChildNode | null;
475
- readonly isConnected: boolean;
476
- readonly lastChild: ChildNode | null;
477
- readonly nextSibling: ChildNode | null;
478
- readonly nodeName: string;
479
- readonly nodeType: number;
480
- nodeValue: string | null;
481
- readonly parentElement: HTMLElement | null;
482
- readonly parentNode: ParentNode | null;
483
- readonly previousSibling: ChildNode | null;
484
- textContent: string | null;
485
- appendChild<T extends Node>(node: T): T;
486
- cloneNode(subtree?: boolean): Node;
487
- compareDocumentPosition(other: Node): number;
488
- contains(other: Node | null): boolean;
489
- getRootNode(options?: GetRootNodeOptions): Node;
490
- hasChildNodes(): boolean;
491
- insertBefore<T extends Node>(node: T, child: Node | null): T;
492
- isDefaultNamespace(namespace: string | null): boolean;
493
- isEqualNode(otherNode: Node | null): boolean;
494
- isSameNode(otherNode: Node | null): boolean;
495
- lookupNamespaceURI(prefix: string | null): string | null;
496
- lookupPrefix(namespace: string | null): string | null;
497
- normalize(): void;
498
- removeChild<T extends Node>(child: T): T;
499
- replaceChild<T extends Node>(node: Node, child: T): T;
500
- readonly ELEMENT_NODE: 1;
501
- readonly ATTRIBUTE_NODE: 2;
502
- readonly TEXT_NODE: 3;
503
- readonly CDATA_SECTION_NODE: 4;
504
- readonly ENTITY_REFERENCE_NODE: 5;
505
- readonly ENTITY_NODE: 6;
506
- readonly PROCESSING_INSTRUCTION_NODE: 7;
507
- readonly COMMENT_NODE: 8;
508
- readonly DOCUMENT_NODE: 9;
509
- readonly DOCUMENT_TYPE_NODE: 10;
510
- readonly DOCUMENT_FRAGMENT_NODE: 11;
511
- readonly NOTATION_NODE: 12;
512
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
513
- readonly DOCUMENT_POSITION_PRECEDING: 2;
514
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
515
- readonly DOCUMENT_POSITION_CONTAINS: 8;
516
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
517
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
518
- dispatchEvent(event: Event): boolean;
519
- ariaAtomic: string | null;
520
- ariaAutoComplete: string | null;
521
- ariaBrailleLabel: string | null;
522
- ariaBrailleRoleDescription: string | null;
523
- ariaBusy: string | null;
524
- ariaChecked: string | null;
525
- ariaColCount: string | null;
526
- ariaColIndex: string | null;
527
- ariaColIndexText: string | null;
528
- ariaColSpan: string | null;
529
- ariaCurrent: string | null;
530
- ariaDescription: string | null;
531
- ariaDisabled: string | null;
532
- ariaExpanded: string | null;
533
- ariaHasPopup: string | null;
534
- ariaHidden: string | null;
535
- ariaInvalid: string | null;
536
- ariaKeyShortcuts: string | null;
537
- ariaLabel: string | null;
538
- ariaLevel: string | null;
539
- ariaLive: string | null;
540
- ariaModal: string | null;
541
- ariaMultiLine: string | null;
542
- ariaMultiSelectable: string | null;
543
- ariaOrientation: string | null;
544
- ariaPlaceholder: string | null;
545
- ariaPosInSet: string | null;
546
- ariaPressed: string | null;
547
- ariaReadOnly: string | null;
548
- ariaRelevant: string | null;
549
- ariaRequired: string | null;
550
- ariaRoleDescription: string | null;
551
- ariaRowCount: string | null;
552
- ariaRowIndex: string | null;
553
- ariaRowIndexText: string | null;
554
- ariaRowSpan: string | null;
555
- ariaSelected: string | null;
556
- ariaSetSize: string | null;
557
- ariaSort: string | null;
558
- ariaValueMax: string | null;
559
- ariaValueMin: string | null;
560
- ariaValueNow: string | null;
561
- ariaValueText: string | null;
562
- role: string | null;
563
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
564
- getAnimations(options?: GetAnimationsOptions): Animation[];
565
- after(...nodes: (Node | string)[]): void;
566
- before(...nodes: (Node | string)[]): void;
567
- remove(): void;
568
- replaceWith(...nodes: (Node | string)[]): void;
569
- readonly nextElementSibling: Element | null;
570
- readonly previousElementSibling: Element | null;
571
- readonly childElementCount: number;
572
- readonly children: HTMLCollection;
573
- readonly firstElementChild: Element | null;
574
- readonly lastElementChild: Element | null;
575
- append(...nodes: (Node | string)[]): void;
576
- prepend(...nodes: (Node | string)[]): void;
577
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
578
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
579
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
580
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
581
- querySelector<E extends Element = Element>(selectors: string): E | null;
582
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
583
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
584
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
585
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
586
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
587
- replaceChildren(...nodes: (Node | string)[]): void;
588
- readonly assignedSlot: HTMLSlotElement | null;
589
- readonly attributeStyleMap: StylePropertyMap;
590
- get style(): CSSStyleDeclaration;
591
- set style(cssText: string): any;
592
- contentEditable: string;
593
- enterKeyHint: string;
594
- inputMode: string;
595
- readonly isContentEditable: boolean;
596
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
597
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
598
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
599
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
600
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
601
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
602
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
603
- onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
604
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
605
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
606
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
607
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
608
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
609
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
610
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
611
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
612
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
613
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
614
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
615
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
616
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
617
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
618
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
619
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
620
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
621
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
622
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
623
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
624
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
625
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
626
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
627
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
628
- onerror: OnErrorEventHandler;
629
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
630
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
631
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
632
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
633
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
634
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
635
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
636
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
637
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
638
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
639
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
640
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
641
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
642
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
643
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
644
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
645
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
646
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
647
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
648
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
649
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
650
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
651
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
652
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
653
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
654
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
655
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
656
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
657
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
658
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
659
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
660
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
661
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
662
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
663
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
664
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
665
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
666
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
667
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
668
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
669
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
670
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
671
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
672
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
673
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
674
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
675
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
676
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
677
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
678
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
679
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
680
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
681
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
682
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
683
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
684
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
685
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
686
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
687
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
688
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
689
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
690
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
691
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
692
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
693
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
694
- autofocus: boolean;
695
- readonly dataset: DOMStringMap;
696
- nonce?: string;
697
- tabIndex: number;
698
- blur(): void;
699
- focus(options?: FocusOptions): void;
700
- }) & (new (...args: any[]) => {
701
- localize: import("@italia/i18n").LocalizeController;
702
- dir: string;
703
- lang: string;
704
- readonly $localize: import("@italia/i18n").LocalizeController<import("@italia/i18n").DefaultTranslation>;
705
- $t(t: string): string;
706
- $d(d: Date | string, p: Intl.DateTimeFormatOptions): string;
707
- $n(d: number, p: Intl.NumberFormatOptions): string;
708
- addController(controller: import("lit").ReactiveController): void;
709
- removeController(controller: import("lit").ReactiveController): void;
710
- requestUpdate(): void;
711
- readonly updateComplete: Promise<boolean>;
712
- accessKey: string;
713
- readonly accessKeyLabel: string;
714
- autocapitalize: string;
715
- draggable: boolean;
716
- hidden: boolean;
717
- inert: boolean;
718
- innerText: string;
719
- readonly offsetHeight: number;
720
- readonly offsetLeft: number;
721
- readonly offsetParent: Element | null;
722
- readonly offsetTop: number;
723
- readonly offsetWidth: number;
724
- outerText: string;
725
- popover: string | null;
726
- spellcheck: boolean;
727
- title: string;
728
- translate: boolean;
729
- writingSuggestions: string;
730
- attachInternals(): ElementInternals;
731
- click(): void;
732
- hidePopover(): void;
733
- showPopover(): void;
734
- togglePopover(options?: boolean): boolean;
735
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
736
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
737
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
738
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
739
- readonly attributes: NamedNodeMap;
740
- get classList(): DOMTokenList;
741
- set classList(value: string): any;
742
- className: string;
743
- readonly clientHeight: number;
744
- readonly clientLeft: number;
745
- readonly clientTop: number;
746
- readonly clientWidth: number;
747
- readonly currentCSSZoom: number;
748
- id: string;
749
- innerHTML: string;
750
- readonly localName: string;
751
- readonly namespaceURI: string | null;
752
- onfullscreenchange: ((this: Element, ev: Event) => any) | null;
753
- onfullscreenerror: ((this: Element, ev: Event) => any) | null;
754
- outerHTML: string;
755
- readonly ownerDocument: Document;
756
- get part(): DOMTokenList;
757
- set part(value: string): any;
758
- readonly prefix: string | null;
759
- readonly scrollHeight: number;
760
- scrollLeft: number;
761
- scrollTop: number;
762
- readonly scrollWidth: number;
763
- readonly shadowRoot: ShadowRoot | null;
764
- slot: string;
765
- readonly tagName: string;
766
- attachShadow(init: ShadowRootInit): ShadowRoot;
767
- checkVisibility(options?: CheckVisibilityOptions): boolean;
768
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
769
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
770
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
771
- closest<E extends Element = Element>(selectors: string): E | null;
772
- computedStyleMap(): StylePropertyMapReadOnly;
773
- getAttribute(qualifiedName: string): string | null;
774
- getAttributeNS(namespace: string | null, localName: string): string | null;
775
- getAttributeNames(): string[];
776
- getAttributeNode(qualifiedName: string): Attr | null;
777
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
778
- getBoundingClientRect(): DOMRect;
779
- getClientRects(): DOMRectList;
780
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
781
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
782
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
783
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
784
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
785
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
786
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
787
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
788
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
789
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
790
- getHTML(options?: GetHTMLOptions): string;
791
- hasAttribute(qualifiedName: string): boolean;
792
- hasAttributeNS(namespace: string | null, localName: string): boolean;
793
- hasAttributes(): boolean;
794
- hasPointerCapture(pointerId: number): boolean;
795
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
796
- insertAdjacentHTML(position: InsertPosition, string: string): void;
797
- insertAdjacentText(where: InsertPosition, data: string): void;
798
- matches(selectors: string): boolean;
799
- releasePointerCapture(pointerId: number): void;
800
- removeAttribute(qualifiedName: string): void;
801
- removeAttributeNS(namespace: string | null, localName: string): void;
802
- removeAttributeNode(attr: Attr): Attr;
803
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
804
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
805
- scroll(options?: ScrollToOptions): void;
806
- scroll(x: number, y: number): void;
807
- scrollBy(options?: ScrollToOptions): void;
808
- scrollBy(x: number, y: number): void;
809
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
810
- scrollTo(options?: ScrollToOptions): void;
811
- scrollTo(x: number, y: number): void;
812
- setAttribute(qualifiedName: string, value: string): void;
813
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
814
- setAttributeNode(attr: Attr): Attr | null;
815
- setAttributeNodeNS(attr: Attr): Attr | null;
816
- setHTMLUnsafe(html: string): void;
817
- setPointerCapture(pointerId: number): void;
818
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
819
- webkitMatchesSelector(selectors: string): boolean;
820
- readonly baseURI: string;
821
- readonly childNodes: NodeListOf<ChildNode>;
822
- readonly firstChild: ChildNode | null;
823
- readonly isConnected: boolean;
824
- readonly lastChild: ChildNode | null;
825
- readonly nextSibling: ChildNode | null;
826
- readonly nodeName: string;
827
- readonly nodeType: number;
828
- nodeValue: string | null;
829
- readonly parentElement: HTMLElement | null;
830
- readonly parentNode: ParentNode | null;
831
- readonly previousSibling: ChildNode | null;
832
- textContent: string | null;
833
- appendChild<T_1 extends Node>(node: T_1): T_1;
834
- cloneNode(subtree?: boolean): Node;
835
- compareDocumentPosition(other: Node): number;
836
- contains(other: Node | null): boolean;
837
- getRootNode(options?: GetRootNodeOptions): Node;
838
- hasChildNodes(): boolean;
839
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
840
- isDefaultNamespace(namespace: string | null): boolean;
841
- isEqualNode(otherNode: Node | null): boolean;
842
- isSameNode(otherNode: Node | null): boolean;
843
- lookupNamespaceURI(prefix: string | null): string | null;
844
- lookupPrefix(namespace: string | null): string | null;
845
- normalize(): void;
846
- removeChild<T_1 extends Node>(child: T_1): T_1;
847
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
848
- readonly ELEMENT_NODE: 1;
849
- readonly ATTRIBUTE_NODE: 2;
850
- readonly TEXT_NODE: 3;
851
- readonly CDATA_SECTION_NODE: 4;
852
- readonly ENTITY_REFERENCE_NODE: 5;
853
- readonly ENTITY_NODE: 6;
854
- readonly PROCESSING_INSTRUCTION_NODE: 7;
855
- readonly COMMENT_NODE: 8;
856
- readonly DOCUMENT_NODE: 9;
857
- readonly DOCUMENT_TYPE_NODE: 10;
858
- readonly DOCUMENT_FRAGMENT_NODE: 11;
859
- readonly NOTATION_NODE: 12;
860
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
861
- readonly DOCUMENT_POSITION_PRECEDING: 2;
862
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
863
- readonly DOCUMENT_POSITION_CONTAINS: 8;
864
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
865
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
866
- dispatchEvent(event: Event): boolean;
867
- ariaAtomic: string | null;
868
- ariaAutoComplete: string | null;
869
- ariaBrailleLabel: string | null;
870
- ariaBrailleRoleDescription: string | null;
871
- ariaBusy: string | null;
872
- ariaChecked: string | null;
873
- ariaColCount: string | null;
874
- ariaColIndex: string | null;
875
- ariaColIndexText: string | null;
876
- ariaColSpan: string | null;
877
- ariaCurrent: string | null;
878
- ariaDescription: string | null;
879
- ariaDisabled: string | null;
880
- ariaExpanded: string | null;
881
- ariaHasPopup: string | null;
882
- ariaHidden: string | null;
883
- ariaInvalid: string | null;
884
- ariaKeyShortcuts: string | null;
885
- ariaLabel: string | null;
886
- ariaLevel: string | null;
887
- ariaLive: string | null;
888
- ariaModal: string | null;
889
- ariaMultiLine: string | null;
890
- ariaMultiSelectable: string | null;
891
- ariaOrientation: string | null;
892
- ariaPlaceholder: string | null;
893
- ariaPosInSet: string | null;
894
- ariaPressed: string | null;
895
- ariaReadOnly: string | null;
896
- ariaRelevant: string | null;
897
- ariaRequired: string | null;
898
- ariaRoleDescription: string | null;
899
- ariaRowCount: string | null;
900
- ariaRowIndex: string | null;
901
- ariaRowIndexText: string | null;
902
- ariaRowSpan: string | null;
903
- ariaSelected: string | null;
904
- ariaSetSize: string | null;
905
- ariaSort: string | null;
906
- ariaValueMax: string | null;
907
- ariaValueMin: string | null;
908
- ariaValueNow: string | null;
909
- ariaValueText: string | null;
910
- role: string | null;
911
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
912
- getAnimations(options?: GetAnimationsOptions): Animation[];
913
- after(...nodes: (Node | string)[]): void;
914
- before(...nodes: (Node | string)[]): void;
915
- remove(): void;
916
- replaceWith(...nodes: (Node | string)[]): void;
917
- readonly nextElementSibling: Element | null;
918
- readonly previousElementSibling: Element | null;
919
- readonly childElementCount: number;
920
- readonly children: HTMLCollection;
921
- readonly firstElementChild: Element | null;
922
- readonly lastElementChild: Element | null;
923
- append(...nodes: (Node | string)[]): void;
924
- prepend(...nodes: (Node | string)[]): void;
925
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
926
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
927
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
928
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
929
- querySelector<E extends Element = Element>(selectors: string): E | null;
930
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
931
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
932
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
933
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
934
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
935
- replaceChildren(...nodes: (Node | string)[]): void;
936
- readonly assignedSlot: HTMLSlotElement | null;
937
- readonly attributeStyleMap: StylePropertyMap;
938
- get style(): CSSStyleDeclaration;
939
- set style(cssText: string): any;
940
- contentEditable: string;
941
- enterKeyHint: string;
942
- inputMode: string;
943
- readonly isContentEditable: boolean;
944
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
945
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
946
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
947
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
948
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
949
- onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
950
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
951
- onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
952
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
953
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
954
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
955
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
956
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
957
- onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
958
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
959
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
960
- oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
961
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
962
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
963
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
964
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
965
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
966
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
967
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
968
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
969
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
970
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
971
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
972
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
973
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
974
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
975
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
976
- onerror: OnErrorEventHandler;
977
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
978
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
979
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
980
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
981
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
982
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
983
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
984
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
985
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
986
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
987
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
988
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
989
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
990
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
991
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
992
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
993
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
994
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
995
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
996
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
997
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
998
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
999
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1000
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1001
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1002
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1003
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1004
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1005
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1006
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1007
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1008
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1009
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
1010
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1011
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1012
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1013
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1014
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1015
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
1016
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1017
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1018
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1019
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1020
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1021
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1022
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1023
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1024
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1025
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1026
- ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1027
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1028
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1029
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1030
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1031
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1032
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1033
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1034
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1035
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1036
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1037
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1038
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1039
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1040
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1041
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1042
- autofocus: boolean;
1043
- readonly dataset: DOMStringMap;
1044
- nonce?: string;
1045
- tabIndex: number;
1046
- blur(): void;
1047
- focus(options?: FocusOptions): void;
1048
- }) & typeof import("@italia/globals").BaseComponent;
1049
- export declare class ItInput extends ItInput_base {
3
+ export declare class ItInput extends FormControl {
1050
4
  static styles: import("lit").CSSResultGroup;
1051
- static get formAssociated(): boolean;
1052
- internals: ElementInternals;
1053
- slotted: boolean;
1054
- invalid: boolean;
1055
- customValidation: boolean;
1056
- required: boolean;
1057
- validationText: string;
1058
- protected _inputElement: HTMLInputElement;
5
+ private _slotPrepend;
6
+ private _slotAppend;
7
+ /**
8
+ * The type of input. Works the same as a native `<input>` element, but only a subset of types are supported. Defaults
9
+ * to `text`.
10
+ */
11
+ type: InputType;
12
+ /** The input's size. */
1059
13
  size?: Sizes;
1060
- label: string;
14
+ /** If you want number-input to be adaptive in width */
15
+ adaptive: boolean;
16
+ /** If you want label to be hidden. */
1061
17
  labelHidden: boolean;
1062
- type: InputType;
1063
- name: string;
18
+ /** Placeholder text to show as a hint when the input is empty. */
1064
19
  placeholder: string;
20
+ /** The input's help text. */
1065
21
  supportText: string;
1066
- disabled: boolean;
22
+ /** If you want the input to be displayed as plaintext. */
1067
23
  plaintext: boolean;
24
+ /** If the input is read-only. */
1068
25
  readonly: boolean;
26
+ /** If your input is of type 'password' and you want to display a strength meter */
1069
27
  passwordStrengthMeter: boolean;
28
+ /** If your input is of type 'password' and you want to show password suggestions. */
1070
29
  suggestions: boolean;
1071
- minlength: number;
1072
- maxlength: number;
1073
- /**
1074
- * Pattern the `value` must match to be valid
1075
- */
1076
- pattern?: string;
30
+ labelElements: HTMLElement[];
31
+ get label(): string;
1077
32
  private _passwordVisible;
1078
33
  private _strengthInfos;
1079
34
  private _score;
1080
- _value: string;
1081
- _touched: boolean;
1082
- validityMessage: string;
1083
- get value(): string;
1084
- set value(value: string);
1085
- get inputElement(): HTMLInputElement | null | undefined;
1086
- _handleFormdata(event: FormDataEvent): void;
1087
- private _handleInput;
1088
- checkValidity(): void;
1089
- _handleBlur(): void;
35
+ get slotted(): HTMLSlotElement | null;
1090
36
  firstUpdated(): void;
1091
37
  connectedCallback(): void;
1092
38
  updated(changedProperties: Map<string | number | symbol, unknown>): void;
39
+ _handleInput(e: Event): void;
1093
40
  private _togglePasswordVisibility;
1094
41
  private _checkPasswordStrength;
1095
42
  private _getPasswordConfig;
1096
43
  private _updateStrengthInfos;
44
+ private static _cleanFloat;
45
+ private _inputNumberIncDec;
1097
46
  private _renderTogglePasswordButton;
1098
47
  private _renderSuggestions;
1099
48
  private _renderpasswordStrengthMeter;
@@ -1105,5 +54,4 @@ declare global {
1105
54
  'it-input': ItInput;
1106
55
  }
1107
56
  }
1108
- export {};
1109
57
  //# sourceMappingURL=it-input.d.ts.map