@genesislcap/foundation-forms 14.302.1-alpha-475e82d.0 → 14.302.1-alpha-ecc0cfb.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/dts/filters/filters.template.d.ts.map +1 -1
  2. package/dist/dts/form.d.ts +226 -272
  3. package/dist/dts/form.d.ts.map +1 -1
  4. package/dist/dts/form.styles.d.ts.map +1 -1
  5. package/dist/dts/form.template.d.ts.map +1 -1
  6. package/dist/dts/jsonforms/json-forms.d.ts.map +1 -1
  7. package/dist/dts/jsonforms/renderers/ArrayListWrapperRenderer.d.ts.map +1 -1
  8. package/dist/dts/jsonforms/renderers/BooleanControlRenderer.d.ts.map +1 -1
  9. package/dist/dts/jsonforms/renderers/CategorizationWrapperRenderer.d.ts.map +1 -1
  10. package/dist/dts/jsonforms/renderers/ConnectedMultiselectControlRenderer.d.ts.map +1 -1
  11. package/dist/dts/jsonforms/renderers/ConnectedSelectControlRenderer.d.ts.map +1 -1
  12. package/dist/dts/jsonforms/renderers/DateControlRenderer.d.ts.map +1 -1
  13. package/dist/dts/jsonforms/renderers/EnumControlRenderer.d.ts.map +1 -1
  14. package/dist/dts/jsonforms/renderers/FilterDateControlRenderer.d.ts.map +1 -1
  15. package/dist/dts/jsonforms/renderers/FilterNumberControlRenderer.d.ts.map +1 -1
  16. package/dist/dts/jsonforms/renderers/FilterTimeControlRenderer.d.ts.map +1 -1
  17. package/dist/dts/jsonforms/renderers/NumberControlRenderer.d.ts.map +1 -1
  18. package/dist/dts/jsonforms/renderers/StepperWrapperRenderer.d.ts.map +1 -1
  19. package/dist/dts/jsonforms/renderers/StringArrayControlRenderer.d.ts.map +1 -1
  20. package/dist/dts/jsonforms/renderers/StringControlRenderer.d.ts.map +1 -1
  21. package/dist/dts/jsonforms/testers/isArray.d.ts.map +1 -1
  22. package/dist/dts/jsonforms/testers/optionIs.d.ts.map +1 -1
  23. package/dist/dts/tsdoc-metadata.json +1 -1
  24. package/dist/dts/utils/filters.d.ts.map +1 -1
  25. package/dist/dts/utils/validation.d.ts.map +1 -1
  26. package/dist/esm/filters/filters.js +1 -1
  27. package/dist/esm/form.js +1 -1
  28. package/dist/foundation-forms.api.json +11 -29
  29. package/dist/foundation-forms.d.ts +226 -272
  30. package/docs/api/foundation-forms.filters.filternamechanged.md +4 -45
  31. package/docs/api/foundation-forms.filters.loadfilterdata.md +3 -31
  32. package/docs/api/foundation-forms.filters.md +21 -314
  33. package/docs/api/foundation-forms.form.md +14 -224
  34. package/docs/api/foundation-forms.form.reset.md +3 -33
  35. package/docs/api/foundation-forms.md +28 -293
  36. package/docs/api/foundation-forms.mustmatch.md +1 -44
  37. package/docs/api/index.md +3 -21
  38. package/package.json +19 -17
  39. package/docs/api-report.md.api.md +0 -302
@@ -462,26 +462,25 @@ export declare class Form extends Form_base {
462
462
  }
463
463
 
464
464
  declare const Form_base: (new (...args: any[]) => {
465
- #_container: FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
466
- #_latestTokenCode: string;
467
- #_hasFirstLoaded: boolean;
468
- #_cleanupTimeout: NodeJS.Timeout;
469
- #_shouldForceLifecycle: boolean;
465
+ "__#1@#_container": FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
466
+ "__#1@#_latestTokenCode": string;
467
+ "__#1@#_hasFirstLoaded": boolean;
468
+ "__#1@#_cleanupTimeout": NodeJS.Timeout;
469
+ "__#1@#_shouldForceLifecycle": boolean;
470
470
  cloneNode(deep?: boolean): Node;
471
471
  deepClone(): Node;
472
- get shouldRunDisconnect(): boolean;
473
- get shouldRunConnect(): boolean;
474
- #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
475
- #_tryFindContainingLayout(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
472
+ readonly shouldRunDisconnect: boolean;
473
+ readonly shouldRunConnect: boolean;
474
+ "__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
475
+ "__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
476
476
  connectedCallback(): void;
477
477
  readonly $fastController: Controller;
478
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
478
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
479
479
  disconnectedCallback(): void;
480
480
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
481
481
  accessKey: string;
482
482
  readonly accessKeyLabel: string;
483
483
  autocapitalize: string;
484
- autocorrect: boolean;
485
484
  dir: string;
486
485
  draggable: boolean;
487
486
  hidden: boolean;
@@ -490,98 +489,77 @@ declare const Form_base: (new (...args: any[]) => {
490
489
  lang: string;
491
490
  readonly offsetHeight: number;
492
491
  readonly offsetLeft: number;
493
- readonly offsetParent: Element | null;
492
+ readonly offsetParent: Element;
494
493
  readonly offsetTop: number;
495
494
  readonly offsetWidth: number;
496
495
  outerText: string;
497
- popover: string | null;
498
496
  spellcheck: boolean;
499
497
  title: string;
500
498
  translate: boolean;
501
- writingSuggestions: string;
502
499
  attachInternals(): ElementInternals;
503
500
  click(): void;
504
- hidePopover(): void;
505
- showPopover(): void;
506
- togglePopover(options?: boolean): boolean;
507
501
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
508
502
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
509
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
503
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
510
504
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
511
505
  readonly attributes: NamedNodeMap;
512
- get classList(): DOMTokenList;
513
- set classList(value: string): any;
506
+ readonly classList: DOMTokenList;
514
507
  className: string;
515
508
  readonly clientHeight: number;
516
509
  readonly clientLeft: number;
517
510
  readonly clientTop: number;
518
511
  readonly clientWidth: number;
519
- readonly currentCSSZoom: number;
520
512
  id: string;
521
- innerHTML: string;
522
513
  readonly localName: string;
523
- readonly namespaceURI: string | null;
514
+ readonly namespaceURI: string;
524
515
  onfullscreenchange: (this: Element, ev: Event) => any;
525
516
  onfullscreenerror: (this: Element, ev: Event) => any;
526
517
  outerHTML: string;
527
518
  readonly ownerDocument: Document;
528
- get part(): DOMTokenList;
529
- set part(value: string): any;
530
- readonly prefix: string | null;
519
+ readonly part: DOMTokenList;
520
+ readonly prefix: string;
531
521
  readonly scrollHeight: number;
532
522
  scrollLeft: number;
533
523
  scrollTop: number;
534
524
  readonly scrollWidth: number;
535
- readonly shadowRoot: ShadowRoot | null;
525
+ readonly shadowRoot: ShadowRoot;
536
526
  slot: string;
537
- readonly tagName: string;
538
- attachShadow(init: ShadowRootInit): ShadowRoot;
539
- checkVisibility(options
540
- /**
541
- * Controls the visibility of the submit button.
527
+ readonly tagName: string; /**
528
+ * Initial data for the form.
542
529
  * @public
543
530
  */
544
- ? /**
545
- * Controls the visibility of the submit button.
546
- * @public
547
- */: CheckVisibilityOptions): boolean;
548
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
549
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
550
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
531
+ attachShadow(init: ShadowRootInit): ShadowRoot;
532
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
533
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
551
534
  closest<E extends Element = Element>(selectors: string): E;
552
- computedStyleMap(): StylePropertyMapReadOnly;
553
- getAttribute(qualifiedName: string): string | null;
554
- getAttributeNS(namespace: string | null, localName: string): string | null;
535
+ getAttribute(qualifiedName: string): string;
536
+ getAttributeNS(namespace: string, localName: string): string;
555
537
  getAttributeNames(): string[];
556
- getAttributeNode(qualifiedName: string): Attr | null;
557
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
538
+ getAttributeNode(qualifiedName: string): Attr;
539
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
558
540
  getBoundingClientRect(): DOMRect;
559
541
  getClientRects(): DOMRectList;
560
542
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
561
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
562
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
563
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
564
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
543
+ getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
544
+ getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
565
545
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
566
546
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
567
547
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
568
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
569
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
570
- getHTML(options?: GetHTMLOptions): string;
548
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
571
549
  hasAttribute(qualifiedName: string): boolean;
572
- hasAttributeNS(namespace: string | null, localName: string): boolean;
550
+ hasAttributeNS(namespace: string, localName: string): boolean;
573
551
  hasAttributes(): boolean;
574
552
  hasPointerCapture(pointerId: number): boolean;
575
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
576
- insertAdjacentHTML(position: InsertPosition, string: string): void;
553
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
554
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
577
555
  insertAdjacentText(where: InsertPosition, data: string): void;
578
556
  matches(selectors: string): boolean;
579
557
  releasePointerCapture(pointerId: number): void;
580
558
  removeAttribute(qualifiedName: string): void;
581
- removeAttributeNS(namespace: string | null, localName: string): void;
559
+ removeAttributeNS(namespace: string, localName: string): void;
582
560
  removeAttributeNode(attr: Attr): Attr;
583
561
  requestFullscreen(options?: FullscreenOptions): Promise<void>;
584
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
562
+ requestPointerLock(): void;
585
563
  scroll(options?: ScrollToOptions): void;
586
564
  scroll(x: number, y: number): void;
587
565
  scrollBy(options?: ScrollToOptions): void;
@@ -590,244 +568,220 @@ declare const Form_base: (new (...args: any[]) => {
590
568
  scrollTo(options?: ScrollToOptions): void;
591
569
  scrollTo(x: number, y: number): void;
592
570
  setAttribute(qualifiedName: string, value: string): void;
593
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
594
- setAttributeNode(attr: Attr): Attr | null;
595
- setAttributeNodeNS(attr: Attr): Attr | null;
596
- setHTMLUnsafe(html: string): void;
571
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
572
+ setAttributeNode(attr: Attr): Attr;
573
+ setAttributeNodeNS(attr: Attr): Attr;
597
574
  setPointerCapture(pointerId: number): void;
598
575
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
599
576
  webkitMatchesSelector(selectors: string): boolean;
600
- textContent: string;
601
577
  readonly baseURI: string;
602
578
  readonly childNodes: NodeListOf<ChildNode>;
603
- readonly firstChild: ChildNode | null;
579
+ readonly firstChild: ChildNode;
604
580
  readonly isConnected: boolean;
605
- readonly lastChild: ChildNode | null;
606
- readonly nextSibling: ChildNode | null;
581
+ readonly lastChild: ChildNode;
582
+ readonly nextSibling: ChildNode;
607
583
  readonly nodeName: string;
608
584
  readonly nodeType: number;
609
- nodeValue: string | null;
610
- readonly parentElement: HTMLElement | null;
611
- readonly parentNode: ParentNode | null;
612
- readonly previousSibling: ChildNode | null;
585
+ nodeValue: string;
586
+ readonly parentElement: HTMLElement;
587
+ readonly parentNode: ParentNode;
588
+ readonly previousSibling: ChildNode;
589
+ textContent: string;
613
590
  appendChild<T_1 extends Node>(node: T_1): T_1;
614
591
  compareDocumentPosition(other: Node): number;
615
- contains(other: Node | null): boolean;
592
+ contains(other: Node): boolean;
616
593
  getRootNode(options?: GetRootNodeOptions): Node;
617
594
  hasChildNodes(): boolean;
618
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
619
- isDefaultNamespace(namespace: string | null): boolean;
620
- isEqualNode(otherNode: Node | null): boolean;
621
- isSameNode(otherNode: Node | null): boolean;
622
- lookupNamespaceURI(prefix: string | null): string | null;
623
- lookupPrefix(namespace: string | null): string | null;
595
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
596
+ isDefaultNamespace(namespace: string): boolean;
597
+ isEqualNode(otherNode: Node): boolean;
598
+ isSameNode(otherNode: Node): boolean;
599
+ lookupNamespaceURI(prefix: string): string;
600
+ lookupPrefix(namespace: string): string;
624
601
  normalize(): void;
625
- removeChild<T_1 extends Node>(child: T_1): T_1;
626
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
627
- readonly ELEMENT_NODE: 1;
628
- readonly ATTRIBUTE_NODE: 2;
629
- readonly TEXT_NODE: 3;
630
- readonly CDATA_SECTION_NODE: 4;
631
- readonly ENTITY_REFERENCE_NODE: 5;
632
- readonly ENTITY_NODE: 6;
633
- readonly PROCESSING_INSTRUCTION_NODE: 7;
634
- readonly COMMENT_NODE: 8;
635
- readonly DOCUMENT_NODE: 9;
636
- readonly DOCUMENT_TYPE_NODE: 10;
637
- readonly DOCUMENT_FRAGMENT_NODE: 11;
638
- readonly NOTATION_NODE: 12;
639
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
640
- readonly DOCUMENT_POSITION_PRECEDING: 2;
641
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
642
- readonly DOCUMENT_POSITION_CONTAINS: 8;
643
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
644
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
602
+ removeChild<T_3 extends Node>(child: T_3): T_3;
603
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
604
+ readonly ATTRIBUTE_NODE: number;
605
+ readonly CDATA_SECTION_NODE: number;
606
+ readonly COMMENT_NODE: number;
607
+ readonly DOCUMENT_FRAGMENT_NODE: number;
608
+ readonly DOCUMENT_NODE: number;
609
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
610
+ readonly DOCUMENT_POSITION_CONTAINS: number;
611
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
612
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
613
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
614
+ readonly DOCUMENT_POSITION_PRECEDING: number;
615
+ readonly DOCUMENT_TYPE_NODE: number;
616
+ readonly ELEMENT_NODE: number;
617
+ readonly ENTITY_NODE: number;
618
+ readonly ENTITY_REFERENCE_NODE: number;
619
+ readonly NOTATION_NODE: number;
620
+ readonly PROCESSING_INSTRUCTION_NODE: number;
621
+ readonly TEXT_NODE: number;
645
622
  dispatchEvent(event: Event): boolean;
646
- ariaActiveDescendantElement: Element | null;
647
- ariaAtomic: string | null;
648
- ariaAutoComplete: string | null;
649
- ariaBrailleLabel: string | null;
650
- ariaBrailleRoleDescription: string | null;
651
- ariaBusy: string | null;
652
- ariaChecked: string | null;
653
- ariaColCount: string | null;
654
- ariaColIndex: string | null;
655
- ariaColIndexText: string | null;
656
- ariaColSpan: string | null;
657
- ariaControlsElements: ReadonlyArray<Element> | null;
658
- ariaCurrent: string | null;
659
- ariaDescribedByElements: ReadonlyArray<Element> | null;
660
- ariaDescription: string | null;
661
- ariaDetailsElements: ReadonlyArray<Element> | null;
662
- ariaDisabled: string | null;
663
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
664
- ariaExpanded: string | null;
665
- ariaFlowToElements: ReadonlyArray<Element> | null;
666
- ariaHasPopup: string | null;
667
- ariaHidden: string | null;
668
- ariaInvalid: string | null;
669
- ariaKeyShortcuts: string | null;
670
- ariaLabel: string | null;
671
- ariaLabelledByElements: ReadonlyArray<Element> | null;
672
- ariaLevel: string | null;
673
- ariaLive: string | null;
674
- ariaModal: string | null;
675
- ariaMultiLine: string | null;
676
- ariaMultiSelectable: string | null;
677
- ariaOrientation: string | null;
678
- ariaOwnsElements: ReadonlyArray<Element> | null;
679
- ariaPlaceholder: string | null;
680
- ariaPosInSet: string | null;
681
- ariaPressed: string | null;
682
- ariaReadOnly: string | null;
683
- ariaRelevant: string | null;
684
- ariaRequired: string | null;
685
- ariaRoleDescription: string | null;
686
- ariaRowCount: string | null;
687
- ariaRowIndex: string | null;
688
- ariaRowIndexText: string | null;
689
- ariaRowSpan: string | null;
690
- ariaSelected: string | null;
691
- ariaSetSize: string | null;
692
- ariaSort: string | null;
693
- ariaValueMax: string | null;
694
- ariaValueMin: string | null;
695
- ariaValueNow: string | null;
696
- ariaValueText: string | null;
697
- role: string | null;
698
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
623
+ ariaAtomic: string;
624
+ ariaAutoComplete: string;
625
+ ariaBusy: string;
626
+ ariaChecked: string;
627
+ ariaColCount: string;
628
+ ariaColIndex: string;
629
+ ariaColIndexText: string;
630
+ ariaColSpan: string;
631
+ ariaCurrent: string;
632
+ ariaDisabled: string;
633
+ ariaExpanded: string;
634
+ ariaHasPopup: string;
635
+ ariaHidden: string;
636
+ ariaInvalid: string;
637
+ ariaKeyShortcuts: string;
638
+ ariaLabel: string;
639
+ ariaLevel: string;
640
+ ariaLive: string;
641
+ ariaModal: string;
642
+ ariaMultiLine: string;
643
+ ariaMultiSelectable: string;
644
+ ariaOrientation: string;
645
+ ariaPlaceholder: string;
646
+ ariaPosInSet: string;
647
+ ariaPressed: string;
648
+ ariaReadOnly: string;
649
+ ariaRequired: string;
650
+ ariaRoleDescription: string;
651
+ ariaRowCount: string;
652
+ ariaRowIndex: string;
653
+ ariaRowIndexText: string;
654
+ ariaRowSpan: string;
655
+ ariaSelected: string;
656
+ ariaSetSize: string;
657
+ ariaSort: string;
658
+ ariaValueMax: string;
659
+ ariaValueMin: string;
660
+ ariaValueNow: string;
661
+ ariaValueText: string;
662
+ role: string;
663
+ animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
699
664
  getAnimations(options?: GetAnimationsOptions): Animation[];
700
- after(...nodes: (Node | string)[]): void;
701
- before(...nodes: (Node | string)[]): void;
665
+ after(...nodes: (string | Node)[]): void;
666
+ before(...nodes: (string | Node)[]): void;
702
667
  remove(): void;
703
- replaceWith(...nodes: (Node | string)[]): void;
704
- readonly nextElementSibling: Element | null;
705
- readonly previousElementSibling: Element | null;
668
+ replaceWith(...nodes: (string | Node)[]): void;
669
+ innerHTML: string;
670
+ readonly nextElementSibling: Element;
671
+ readonly previousElementSibling: Element;
706
672
  readonly childElementCount: number;
707
673
  readonly children: HTMLCollection;
708
- readonly firstElementChild: Element | null;
709
- readonly lastElementChild: Element | null;
710
- append(...nodes: (Node | string)[]): void;
711
- prepend(...nodes: (Node | string)[]): void;
712
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
713
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
714
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
715
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
716
- querySelector<E extends Element = Element>(selectors: string): E | null;
717
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
718
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
719
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
720
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
721
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
722
- replaceChildren(...nodes: (Node | string)[]): void;
723
- readonly assignedSlot: HTMLSlotElement | null;
724
- readonly attributeStyleMap: StylePropertyMap;
725
- get style(): CSSStyleDeclaration;
726
- set style(cssText: string): any;
674
+ readonly firstElementChild: Element;
675
+ readonly lastElementChild: Element;
676
+ append(...nodes: (string | Node)[]): void;
677
+ prepend(...nodes: (string | Node)[]): void;
678
+ querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
679
+ querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
680
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
681
+ querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
682
+ querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
683
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
684
+ replaceChildren(...nodes: (string | Node)[]): void;
685
+ readonly assignedSlot: HTMLSlotElement;
686
+ oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
687
+ oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
688
+ onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
689
+ readonly style: CSSStyleDeclaration;
727
690
  contentEditable: string;
728
691
  enterKeyHint: string;
729
692
  inputMode: string;
730
693
  readonly isContentEditable: boolean;
731
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
732
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
733
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
734
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
735
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
736
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
737
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
738
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
739
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
740
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
741
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
742
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
743
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
744
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
745
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
746
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
747
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
748
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
749
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
750
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
751
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
752
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
753
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
754
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
755
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
756
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
757
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
758
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
759
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
760
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
761
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
762
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
763
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
764
- onerror: OnErrorEventHandler;
765
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
766
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
767
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
768
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
769
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
770
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
771
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
772
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
773
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
774
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
775
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
776
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
777
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
778
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
779
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
780
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
781
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
782
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
783
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
784
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
785
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
786
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
787
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
788
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
789
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
790
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
791
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
792
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
793
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
794
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
795
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
796
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
797
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
798
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
799
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
800
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
801
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
802
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
803
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
804
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
805
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
806
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
807
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
808
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
809
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
810
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
811
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
812
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
813
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
814
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
815
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
816
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
817
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
818
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
819
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
820
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
821
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
822
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
823
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
824
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
825
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
826
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
827
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
828
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
829
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
830
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
694
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
695
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
696
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
697
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
698
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
699
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
700
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
701
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
702
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
703
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
704
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
705
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
706
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
707
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
708
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
709
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
710
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
711
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
712
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
713
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
714
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
715
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
716
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
717
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
718
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
719
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
720
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
721
+ onerror: OnErrorEventHandlerNonNull;
722
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
723
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
724
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
725
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
726
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
727
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
728
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
729
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
730
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
731
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
732
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
733
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
734
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
735
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
736
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
737
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
738
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
739
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
740
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
741
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
742
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
743
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
744
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
745
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
746
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
747
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
748
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
749
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
750
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
751
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
752
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
753
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
754
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
755
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
756
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
757
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
758
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
759
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
760
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
761
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
762
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
763
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
764
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
765
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
766
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
767
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
768
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
769
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
770
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
771
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
772
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
773
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
774
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
775
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
776
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
777
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
778
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
779
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
780
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
781
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
782
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
783
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
784
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
831
785
  autofocus: boolean;
832
786
  readonly dataset: DOMStringMap;
833
787
  nonce?: string;