@genesislcap/grid-tabulator 15.6.2 → 15.7.0-ts7.1

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.
@@ -2,26 +2,31 @@ import { Auth } from '@genesislcap/foundation-comms';
2
2
  import { CellComponent } from 'tabulator-tables';
3
3
  import { ColumnDefinition as ColumnDefinition_2 } from 'tabulator-tables';
4
4
  import { Connect } from '@genesislcap/foundation-comms';
5
+ import { Constructable } from '@microsoft/fast-element';
5
6
  import type { Container } from '@microsoft/fast-foundation';
6
- import { Controller } from '@microsoft/fast-element';
7
7
  import { CSSVarTokenMap } from '@genesislcap/foundation-ui';
8
8
  import { Datasource } from '@genesislcap/foundation-comms';
9
+ import { DatasourceEventHandlerElement } from '@genesislcap/foundation-comms';
9
10
  import { DatasourceStatus } from '@genesislcap/foundation-comms';
10
- import { DatasourceStatusChangedEvent } from '@genesislcap/foundation-comms';
11
- import { DOMContainer } from '@genesislcap/foundation-utils';
11
+ import { DateEditor } from './cell-editors';
12
12
  import { DownloadOptions } from 'tabulator-tables';
13
13
  import { ElementStyles } from '@microsoft/fast-element';
14
+ import { FASTElement } from '@microsoft/fast-element';
14
15
  import { FilterParams } from 'tabulator-tables';
15
16
  import type { Formatter } from 'tabulator-tables';
16
17
  import { FormatterParams as FormatterParams_2 } from 'tabulator-tables';
17
18
  import { FoundationElement } from '@microsoft/fast-foundation';
18
19
  import { FoundationElementRegistry } from '@microsoft/fast-foundation';
19
- import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
20
- import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
20
+ import { GridTabulator as GridTabulator_2 } from './grid-tabulator';
21
+ import { LifecycleElement } from '@genesislcap/foundation-utils';
21
22
  import { Logger } from '@genesislcap/foundation-logger';
23
+ import { MultiselectEditor } from './cell-editors';
24
+ import { NumberEditor } from './cell-editors';
22
25
  import { Options as Options_2 } from 'tabulator-tables';
23
26
  import { OverrideFoundationElementDefinition } from '@microsoft/fast-foundation';
24
27
  import { RowRangeLookup } from 'tabulator-tables';
28
+ import { SelectEditor } from './cell-editors';
29
+ import { StringEditor } from './cell-editors';
25
30
  import { TabulatorFull } from 'tabulator-tables';
26
31
  import { ViewTemplate } from '@microsoft/fast-element';
27
32
 
@@ -205,58 +210,6 @@ export declare const criteriaDelimiter = ";";
205
210
  */
206
211
  export declare const criteriaJoin = " && ";
207
212
 
208
- /**
209
- * The date editor class for grid-tabulator
210
- * @public
211
- */
212
- declare class DateEditor extends FoundationElement {
213
- params: DateEditorParams;
214
- dateField: any;
215
- /**
216
- * Initialize the editor with parameters
217
- */
218
- init(params: DateEditorParams): void;
219
- /**
220
- * Get current value
221
- */
222
- getValue(): any;
223
- /**
224
- * Format value for display
225
- */
226
- getFormattedValue(): string;
227
- /**
228
- * Set focus to the input
229
- */
230
- focus(): void;
231
- /**
232
- * Process key down events
233
- */
234
- handleKeyDown(event: KeyboardEvent): void;
235
- }
236
-
237
- /**
238
- * Date Editor interface for grid-tabulator
239
- *
240
- * `value`: The current cell value as timestamp or date string
241
- *
242
- * `min`: Min date
243
- *
244
- * `max`: Max date
245
- *
246
- * `success`: Cell changed callback
247
- *
248
- * `cancel`: Cancel edit callback
249
- *
250
- * @alpha
251
- */
252
- declare interface DateEditorParams {
253
- value?: number | string;
254
- min?: string;
255
- max?: string;
256
- success?: (value: string) => void;
257
- cancel?: () => void;
258
- }
259
-
260
213
  /**
261
214
  * Format a date time value to a readable string.
262
215
  * @remarks Formats [DATETIME] UNIX Timestamps (with time) to readable strings
@@ -489,7 +442,7 @@ export declare const foundationGridTabulatorComponents: {
489
442
  baseName: string;
490
443
  styles: ElementStyles;
491
444
  template: ViewTemplate<any, any>;
492
- }, GridTabulator>;
445
+ }, GridTabulator_2>;
493
446
  register(container?: Container, ...rest: any[]): void;
494
447
  };
495
448
 
@@ -705,373 +658,7 @@ export declare class GridTabulator extends GridTabulator_base {
705
658
  private registerFormattersWithTabulator;
706
659
  }
707
660
 
708
- declare const GridTabulator_base: (new (...args: any[]) => {
709
- #_container: FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
710
- #_latestTokenCode: string;
711
- #_hasFirstLoaded: boolean;
712
- #_cleanupTimeout: NodeJS.Timeout;
713
- #_shouldForceLifecycle: boolean;
714
- #_blockedDisconnectSurvivedGracePeriod: boolean;
715
- cloneNode(deep?: boolean): Node;
716
- deepClone(): Node;
717
- get shouldRunDisconnect(): boolean;
718
- get shouldRunConnect(): boolean;
719
- #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
720
- #_tryFindContainingLayout(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
721
- connectedCallback(): void;
722
- readonly $fastController: Controller;
723
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
724
- disconnectedCallback(): void;
725
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
726
- accessKey: string;
727
- readonly accessKeyLabel: string;
728
- autocapitalize: string;
729
- autocorrect: boolean;
730
- dir: string;
731
- draggable: boolean;
732
- hidden: boolean;
733
- inert: boolean;
734
- innerText: string;
735
- lang: string;
736
- readonly offsetHeight: number;
737
- readonly offsetLeft: number;
738
- readonly offsetParent: Element | null;
739
- readonly offsetTop: number;
740
- readonly offsetWidth: number;
741
- outerText: string;
742
- popover: string | null;
743
- spellcheck: boolean;
744
- title: string;
745
- translate: boolean;
746
- writingSuggestions: string;
747
- attachInternals(): ElementInternals;
748
- click(): void;
749
- hidePopover(): void;
750
- showPopover(): void;
751
- togglePopover(options?: boolean): boolean;
752
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
753
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
754
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
755
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
756
- readonly attributes: NamedNodeMap;
757
- get classList(): DOMTokenList;
758
- set classList(value: string): any;
759
- className: string;
760
- readonly clientHeight: number;
761
- readonly clientLeft: number;
762
- readonly clientTop: number;
763
- readonly clientWidth: number;
764
- readonly currentCSSZoom: number;
765
- id: string;
766
- innerHTML: string;
767
- readonly localName: string;
768
- readonly namespaceURI: string | null;
769
- onfullscreenchange: (this: Element, ev: Event) => any;
770
- onfullscreenerror: (this: Element, ev: Event) => any;
771
- outerHTML: string;
772
- readonly ownerDocument: Document;
773
- get part(): DOMTokenList;
774
- set part(value: string): any;
775
- readonly prefix: string | null;
776
- readonly scrollHeight: number;
777
- scrollLeft: number;
778
- scrollTop: number;
779
- readonly scrollWidth: number;
780
- readonly shadowRoot: ShadowRoot | null;
781
- slot: string;
782
- readonly tagName: string;
783
- attachShadow(init: ShadowRootInit): ShadowRoot;
784
- checkVisibility(options?: CheckVisibilityOptions): boolean;
785
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
786
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
787
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
788
- closest<E extends Element = Element>(selectors: string): E;
789
- computedStyleMap(): StylePropertyMapReadOnly;
790
- getAttribute(qualifiedName: string): string | null;
791
- getAttributeNS(namespace: string | null, localName: string): string | null;
792
- getAttributeNames(): string[];
793
- getAttributeNode(qualifiedName: string): Attr | null;
794
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
795
- getBoundingClientRect(): DOMRect;
796
- getClientRects(): DOMRectList;
797
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
798
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
799
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
800
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
801
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
802
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
803
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
804
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
805
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
806
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
807
- getHTML(options?: GetHTMLOptions): string;
808
- hasAttribute(qualifiedName: string): boolean;
809
- hasAttributeNS(namespace: string | null, localName: string): boolean;
810
- hasAttributes(): boolean;
811
- hasPointerCapture(pointerId: number): boolean;
812
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
813
- insertAdjacentHTML(position: InsertPosition, string: string): void;
814
- insertAdjacentText(where: InsertPosition, data: string): void;
815
- matches(selectors: string): boolean;
816
- releasePointerCapture(pointerId: number): void;
817
- removeAttribute(qualifiedName: string): void;
818
- removeAttributeNS(namespace: string | null, localName: string): void;
819
- removeAttributeNode(attr: Attr): Attr;
820
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
821
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
822
- scroll(options?: ScrollToOptions): void;
823
- scroll(x: number, y: number): void;
824
- scrollBy(options?: ScrollToOptions): void;
825
- scrollBy(x: number, y: number): void;
826
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
827
- scrollTo(options?: ScrollToOptions): void;
828
- scrollTo(x: number, y: number): void;
829
- setAttribute(qualifiedName: string, value: string): void;
830
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
831
- setAttributeNode(attr: Attr): Attr | null;
832
- setAttributeNodeNS(attr: Attr): Attr | null;
833
- setHTMLUnsafe(html: string): void;
834
- setPointerCapture(pointerId: number): void;
835
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
836
- webkitMatchesSelector(selectors: string): boolean;
837
- textContent: string;
838
- readonly baseURI: string;
839
- readonly childNodes: NodeListOf<ChildNode>;
840
- readonly firstChild: ChildNode | null;
841
- readonly isConnected: boolean;
842
- readonly lastChild: ChildNode | null;
843
- readonly nextSibling: ChildNode | null;
844
- readonly nodeName: string;
845
- readonly nodeType: number;
846
- nodeValue: string | null;
847
- readonly parentElement: HTMLElement | null;
848
- readonly parentNode: ParentNode | null;
849
- readonly previousSibling: ChildNode | null;
850
- appendChild<T_1 extends Node>(node: T_1): T_1;
851
- compareDocumentPosition(other: Node): number;
852
- contains(other: Node | null): boolean;
853
- getRootNode(options?: GetRootNodeOptions): Node;
854
- hasChildNodes(): boolean;
855
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
856
- isDefaultNamespace(namespace: string | null): boolean;
857
- isEqualNode(otherNode: Node | null): boolean;
858
- isSameNode(otherNode: Node | null): boolean;
859
- lookupNamespaceURI(prefix: string | null): string | null;
860
- lookupPrefix(namespace: string | null): string | null;
861
- normalize(): void;
862
- removeChild<T_1 extends Node>(child: T_1): T_1;
863
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
864
- readonly ELEMENT_NODE: 1;
865
- readonly ATTRIBUTE_NODE: 2;
866
- readonly TEXT_NODE: 3;
867
- readonly CDATA_SECTION_NODE: 4;
868
- readonly ENTITY_REFERENCE_NODE: 5;
869
- readonly ENTITY_NODE: 6;
870
- readonly PROCESSING_INSTRUCTION_NODE: 7;
871
- readonly COMMENT_NODE: 8;
872
- readonly DOCUMENT_NODE: 9;
873
- readonly DOCUMENT_TYPE_NODE: 10;
874
- readonly DOCUMENT_FRAGMENT_NODE: 11;
875
- readonly NOTATION_NODE: 12;
876
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
877
- readonly DOCUMENT_POSITION_PRECEDING: 2;
878
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
879
- readonly DOCUMENT_POSITION_CONTAINS: 8;
880
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
881
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
882
- dispatchEvent(event: Event): boolean;
883
- ariaActiveDescendantElement: Element | null;
884
- ariaAtomic: string | null;
885
- ariaAutoComplete: string | null;
886
- ariaBrailleLabel: string | null;
887
- ariaBrailleRoleDescription: string | null;
888
- ariaBusy: string | null;
889
- ariaChecked: string | null;
890
- ariaColCount: string | null;
891
- ariaColIndex: string | null;
892
- ariaColIndexText: string | null;
893
- ariaColSpan: string | null;
894
- ariaControlsElements: ReadonlyArray<Element> | null;
895
- ariaCurrent: string | null;
896
- ariaDescribedByElements: ReadonlyArray<Element> | null;
897
- ariaDescription: string | null;
898
- ariaDetailsElements: ReadonlyArray<Element> | null;
899
- ariaDisabled: string | null;
900
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
901
- ariaExpanded: string | null;
902
- ariaFlowToElements: ReadonlyArray<Element> | null;
903
- ariaHasPopup: string | null;
904
- ariaHidden: string | null;
905
- ariaInvalid: string | null;
906
- ariaKeyShortcuts: string | null;
907
- ariaLabel: string | null;
908
- ariaLabelledByElements: ReadonlyArray<Element> | null;
909
- ariaLevel: string | null;
910
- ariaLive: string | null;
911
- ariaModal: string | null;
912
- ariaMultiLine: string | null;
913
- ariaMultiSelectable: string | null;
914
- ariaOrientation: string | null;
915
- ariaOwnsElements: ReadonlyArray<Element> | null;
916
- ariaPlaceholder: string | null;
917
- ariaPosInSet: string | null;
918
- ariaPressed: string | null;
919
- ariaReadOnly: string | null;
920
- ariaRelevant: string | null;
921
- ariaRequired: string | null;
922
- ariaRoleDescription: string | null;
923
- ariaRowCount: string | null;
924
- ariaRowIndex: string | null;
925
- ariaRowIndexText: string | null;
926
- ariaRowSpan: string | null;
927
- ariaSelected: string | null;
928
- ariaSetSize: string | null;
929
- ariaSort: string | null;
930
- ariaValueMax: string | null;
931
- ariaValueMin: string | null;
932
- ariaValueNow: string | null;
933
- ariaValueText: string | null;
934
- role: string | null;
935
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
936
- getAnimations(options?: GetAnimationsOptions): Animation[];
937
- after(...nodes: (Node | string)[]): void;
938
- before(...nodes: (Node | string)[]): void;
939
- remove(): void;
940
- replaceWith(...nodes: (Node | string)[]): void;
941
- readonly nextElementSibling: Element | null;
942
- readonly previousElementSibling: Element | null;
943
- readonly childElementCount: number;
944
- readonly children: HTMLCollection;
945
- readonly firstElementChild: Element | null;
946
- readonly lastElementChild: Element | null;
947
- append(...nodes: (Node | string)[]): void;
948
- prepend(...nodes: (Node | string)[]): void;
949
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
950
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
951
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
952
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
953
- querySelector<E extends Element = Element>(selectors: string): E | null;
954
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
955
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
956
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
957
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
958
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
959
- replaceChildren(...nodes: (Node | string)[]): void;
960
- readonly assignedSlot: HTMLSlotElement | null;
961
- readonly attributeStyleMap: StylePropertyMap;
962
- get style(): CSSStyleDeclaration;
963
- set style(cssText: string): any;
964
- contentEditable: string;
965
- enterKeyHint: string;
966
- inputMode: string;
967
- readonly isContentEditable: boolean;
968
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
969
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
970
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
971
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
972
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
973
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
974
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
975
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
976
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
977
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
978
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
979
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
980
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
981
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
982
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
983
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
984
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
985
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
986
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
987
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
988
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
989
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
990
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
991
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
992
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
993
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
994
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
995
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
996
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
997
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
998
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
999
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1000
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1001
- onerror: OnErrorEventHandler;
1002
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1003
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
1004
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1005
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1006
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1007
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1008
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1009
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1010
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1011
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1012
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1013
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1014
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1015
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1016
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1017
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1018
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1019
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1020
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1021
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1022
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1023
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1024
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1025
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1026
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1027
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1028
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1029
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1030
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1031
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1032
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1033
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1034
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1035
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
1036
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1037
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1038
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1039
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1040
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1041
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
1042
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1043
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1044
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1045
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1046
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1047
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1048
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1049
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1050
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1051
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1052
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1053
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1054
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1055
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1056
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1057
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1058
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1059
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1060
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1061
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1062
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1063
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1064
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1065
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1066
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1067
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1068
- autofocus: boolean;
1069
- readonly dataset: DOMStringMap;
1070
- nonce?: string;
1071
- tabIndex: number;
1072
- blur(): void;
1073
- focus(options?: FocusOptions): void;
1074
- }) & typeof FoundationElement;
661
+ declare const GridTabulator_base: typeof FoundationElement & Constructable<LifecycleElement>;
1075
662
 
1076
663
  /**
1077
664
  * The case types supported for header formatting
@@ -1275,738 +862,7 @@ export declare class GridTabulatorClientSideDatasource extends GridTabulatorClie
1275
862
  datasourceStatusChanged(prev: DatasourceStatus, next: DatasourceStatus): void;
1276
863
  }
1277
864
 
1278
- declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
1279
- #_container: FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
1280
- #_latestTokenCode: string;
1281
- #_hasFirstLoaded: boolean;
1282
- #_cleanupTimeout: NodeJS.Timeout;
1283
- #_shouldForceLifecycle: boolean;
1284
- #_blockedDisconnectSurvivedGracePeriod: boolean;
1285
- cloneNode(deep?: boolean): Node;
1286
- deepClone(): Node;
1287
- get shouldRunDisconnect(): boolean;
1288
- get shouldRunConnect(): boolean;
1289
- #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
1290
- #_tryFindContainingLayout(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
1291
- connectedCallback(): void;
1292
- readonly $fastController: Controller;
1293
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
1294
- disconnectedCallback(): void;
1295
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
1296
- accessKey: string;
1297
- readonly accessKeyLabel: string;
1298
- autocapitalize: string;
1299
- autocorrect: boolean;
1300
- dir: string;
1301
- draggable: boolean;
1302
- hidden: boolean;
1303
- inert: boolean;
1304
- innerText: string;
1305
- lang: string;
1306
- readonly offsetHeight: number;
1307
- readonly offsetLeft: number;
1308
- readonly offsetParent: Element | null;
1309
- readonly offsetTop: number;
1310
- readonly offsetWidth: number;
1311
- outerText: string;
1312
- popover: string | null;
1313
- spellcheck: boolean;
1314
- title: string;
1315
- translate: boolean;
1316
- writingSuggestions: string;
1317
- attachInternals(): ElementInternals;
1318
- click(): void;
1319
- hidePopover(): void;
1320
- showPopover(): void;
1321
- togglePopover(options?: boolean): boolean;
1322
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1323
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1324
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
1325
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options
1326
- /**
1327
- * Returns whether the `row-id` attribute is the default one, depending on the resource type.
1328
- * @internal
1329
- */
1330
- ?: boolean | EventListenerOptions): void;
1331
- readonly attributes: NamedNodeMap;
1332
- get classList(): DOMTokenList;
1333
- set classList(value: string): any;
1334
- className: string;
1335
- readonly clientHeight: number;
1336
- readonly clientLeft: number;
1337
- readonly clientTop: number;
1338
- readonly clientWidth: number;
1339
- readonly currentCSSZoom: number;
1340
- id: string;
1341
- innerHTML: string;
1342
- readonly localName: string;
1343
- readonly namespaceURI: string | null;
1344
- onfullscreenchange: (this: Element, ev: Event) => any;
1345
- onfullscreenerror: (this: Element, ev: Event) => any;
1346
- outerHTML: string;
1347
- readonly ownerDocument: Document;
1348
- get part(): DOMTokenList;
1349
- set part(value: string): any;
1350
- readonly prefix: string | null;
1351
- readonly scrollHeight: number;
1352
- scrollLeft: number;
1353
- scrollTop: number;
1354
- readonly scrollWidth: number;
1355
- readonly shadowRoot: ShadowRoot | null;
1356
- slot: string;
1357
- readonly tagName: string;
1358
- attachShadow(init: ShadowRootInit): ShadowRoot;
1359
- checkVisibility(options?: CheckVisibilityOptions): boolean;
1360
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
1361
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
1362
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
1363
- closest<E extends Element = Element>(selectors: string): E;
1364
- computedStyleMap(): StylePropertyMapReadOnly;
1365
- getAttribute(qualifiedName: string): string | null;
1366
- getAttributeNS(namespace: string | null, localName: string): string | null;
1367
- getAttributeNames(): string[];
1368
- getAttributeNode(qualifiedName: string): Attr | null;
1369
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
1370
- getBoundingClientRect(): DOMRect;
1371
- getClientRects(): DOMRectList;
1372
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1373
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
1374
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
1375
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
1376
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
1377
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1378
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1379
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
1380
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
1381
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
1382
- getHTML(options?: GetHTMLOptions): string;
1383
- hasAttribute(qualifiedName: string): boolean;
1384
- hasAttributeNS(namespace: string | null, localName: string): boolean;
1385
- hasAttributes(): boolean;
1386
- hasPointerCapture(pointerId: number): boolean;
1387
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
1388
- insertAdjacentHTML(position: InsertPosition, string: string): void;
1389
- insertAdjacentText(where: InsertPosition, data: string): void;
1390
- matches(selectors: string): boolean;
1391
- releasePointerCapture(pointerId: number): void;
1392
- removeAttribute(qualifiedName: string): void;
1393
- removeAttributeNS(namespace: string | null, localName: string): void;
1394
- removeAttributeNode(attr: Attr): Attr;
1395
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
1396
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
1397
- scroll(options?: ScrollToOptions): void;
1398
- scroll(x: number, y: number): void;
1399
- scrollBy(options?: ScrollToOptions): void;
1400
- scrollBy(x: number, y: number): void;
1401
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
1402
- scrollTo(options?: ScrollToOptions): void;
1403
- scrollTo(x: number, y: number): void;
1404
- setAttribute(qualifiedName: string, value: string): void;
1405
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
1406
- setAttributeNode(attr: Attr): Attr | null;
1407
- setAttributeNodeNS(attr: Attr): Attr | null;
1408
- setHTMLUnsafe(html: string): void;
1409
- setPointerCapture(pointerId: number): void;
1410
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
1411
- webkitMatchesSelector(selectors: string): boolean;
1412
- textContent: string;
1413
- readonly baseURI: string;
1414
- readonly childNodes: NodeListOf<ChildNode>;
1415
- readonly firstChild: ChildNode | null;
1416
- readonly isConnected: boolean;
1417
- readonly lastChild: ChildNode | null;
1418
- readonly nextSibling: ChildNode | null;
1419
- readonly nodeName: string;
1420
- readonly nodeType: number;
1421
- nodeValue: string | null;
1422
- readonly parentElement: HTMLElement | null;
1423
- readonly parentNode: ParentNode | null;
1424
- readonly previousSibling: ChildNode | null;
1425
- appendChild<T_1 extends Node>(node: T_1): T_1;
1426
- compareDocumentPosition(other: Node): number;
1427
- contains(other: Node | null): boolean;
1428
- getRootNode(options?: GetRootNodeOptions): Node;
1429
- hasChildNodes(): boolean;
1430
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
1431
- isDefaultNamespace(namespace: string | null): boolean;
1432
- isEqualNode(otherNode: Node | null): boolean;
1433
- isSameNode(otherNode: Node | null): boolean;
1434
- lookupNamespaceURI(prefix: string | null): string | null;
1435
- lookupPrefix(namespace: string | null): string | null;
1436
- normalize(): void;
1437
- removeChild<T_1 extends Node>(child: T_1): T_1;
1438
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
1439
- readonly ELEMENT_NODE: 1;
1440
- readonly ATTRIBUTE_NODE: 2;
1441
- readonly TEXT_NODE: 3;
1442
- readonly CDATA_SECTION_NODE: 4;
1443
- readonly ENTITY_REFERENCE_NODE: 5;
1444
- readonly ENTITY_NODE: 6;
1445
- readonly PROCESSING_INSTRUCTION_NODE: 7;
1446
- readonly COMMENT_NODE: 8;
1447
- readonly DOCUMENT_NODE: 9;
1448
- readonly DOCUMENT_TYPE_NODE: 10;
1449
- readonly DOCUMENT_FRAGMENT_NODE: 11;
1450
- readonly NOTATION_NODE: 12;
1451
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
1452
- readonly DOCUMENT_POSITION_PRECEDING: 2;
1453
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
1454
- readonly DOCUMENT_POSITION_CONTAINS: 8;
1455
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
1456
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
1457
- dispatchEvent(event: Event): boolean;
1458
- ariaActiveDescendantElement: Element | null;
1459
- ariaAtomic: string | null;
1460
- ariaAutoComplete: string | null;
1461
- ariaBrailleLabel: string | null;
1462
- ariaBrailleRoleDescription: string | null;
1463
- ariaBusy: string | null;
1464
- ariaChecked: string | null;
1465
- ariaColCount: string | null;
1466
- ariaColIndex: string | null;
1467
- ariaColIndexText: string | null;
1468
- ariaColSpan: string | null;
1469
- ariaControlsElements: ReadonlyArray<Element> | null;
1470
- ariaCurrent: string | null;
1471
- ariaDescribedByElements: ReadonlyArray<Element> | null;
1472
- ariaDescription: string | null;
1473
- ariaDetailsElements: ReadonlyArray<Element> | null;
1474
- ariaDisabled: string | null;
1475
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
1476
- ariaExpanded: string | null;
1477
- ariaFlowToElements: ReadonlyArray<Element> | null;
1478
- ariaHasPopup: string | null;
1479
- ariaHidden: string | null;
1480
- ariaInvalid: string | null;
1481
- ariaKeyShortcuts: string | null;
1482
- ariaLabel: string | null;
1483
- ariaLabelledByElements: ReadonlyArray<Element> | null;
1484
- ariaLevel: string | null;
1485
- ariaLive: string | null;
1486
- ariaModal: string | null;
1487
- ariaMultiLine: string | null;
1488
- ariaMultiSelectable: string | null;
1489
- ariaOrientation: string | null;
1490
- ariaOwnsElements: ReadonlyArray<Element> | null;
1491
- ariaPlaceholder: string | null;
1492
- ariaPosInSet: string | null;
1493
- ariaPressed: string | null;
1494
- ariaReadOnly: string | null;
1495
- ariaRelevant: string | null;
1496
- ariaRequired: string | null;
1497
- ariaRoleDescription: string | null;
1498
- ariaRowCount: string | null;
1499
- ariaRowIndex: string | null;
1500
- ariaRowIndexText: string | null;
1501
- ariaRowSpan: string | null;
1502
- ariaSelected: string | null;
1503
- ariaSetSize: string | null;
1504
- ariaSort: string | null;
1505
- ariaValueMax: string | null;
1506
- ariaValueMin: string | null;
1507
- ariaValueNow: string | null;
1508
- ariaValueText: string | null;
1509
- role: string | null;
1510
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
1511
- getAnimations(options?: GetAnimationsOptions): Animation[];
1512
- after(...nodes: (Node | string)[]): void;
1513
- before(...nodes: (Node | string)[]): void;
1514
- remove(): void;
1515
- replaceWith(...nodes: (Node | string)[]): void;
1516
- readonly nextElementSibling: Element | null;
1517
- readonly previousElementSibling: Element | null;
1518
- readonly childElementCount: number;
1519
- readonly children: HTMLCollection;
1520
- readonly firstElementChild: Element | null;
1521
- readonly lastElementChild: Element | null;
1522
- append(...nodes: (Node | string)[]): void;
1523
- prepend(...nodes: (Node | string)[]): void;
1524
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
1525
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
1526
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
1527
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
1528
- querySelector<E extends Element = Element>(selectors: string): E | null;
1529
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
1530
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
1531
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
1532
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
1533
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
1534
- replaceChildren(...nodes: (Node | string)[]): void;
1535
- readonly assignedSlot: HTMLSlotElement | null;
1536
- readonly attributeStyleMap: StylePropertyMap;
1537
- get style(): CSSStyleDeclaration;
1538
- set style(cssText: string): any;
1539
- contentEditable: string;
1540
- enterKeyHint: string;
1541
- inputMode: string;
1542
- readonly isContentEditable: boolean;
1543
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1544
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1545
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1546
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1547
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1548
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1549
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
1550
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1551
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1552
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1553
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1554
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1555
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1556
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1557
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1558
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1559
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1560
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1561
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1562
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1563
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1564
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1565
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1566
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1567
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1568
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1569
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1570
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1571
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1572
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1573
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1574
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1575
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1576
- onerror: OnErrorEventHandler;
1577
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1578
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
1579
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1580
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1581
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1582
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1583
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1584
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1585
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1586
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1587
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1588
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1589
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1590
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1591
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1592
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1593
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1594
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1595
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1596
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1597
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1598
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1599
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1600
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1601
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1602
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1603
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1604
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1605
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1606
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1607
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1608
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1609
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1610
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
1611
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1612
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1613
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1614
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1615
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1616
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
1617
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1618
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1619
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1620
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1621
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1622
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1623
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1624
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1625
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1626
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1627
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1628
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1629
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1630
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1631
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1632
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1633
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1634
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1635
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1636
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1637
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1638
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1639
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1640
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1641
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1642
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1643
- autofocus: boolean;
1644
- readonly dataset: DOMStringMap;
1645
- nonce?: string;
1646
- tabIndex: number;
1647
- blur(): void;
1648
- focus(options?: FocusOptions): void;
1649
- }) & (new () => {
1650
- datasourceStatus: DatasourceStatus;
1651
- resourceName: string;
1652
- data?: unknown;
1653
- onDatasourceStatusChanged: (event: DatasourceStatusChangedEvent) => void;
1654
- datasourceStatusChanged(prev: DatasourceStatus, next: DatasourceStatus): void;
1655
- connectedCallback(): void;
1656
- disconnectedCallback(): void;
1657
- accessKey: string;
1658
- readonly accessKeyLabel: string;
1659
- autocapitalize: string;
1660
- autocorrect: boolean;
1661
- dir: string;
1662
- draggable: boolean;
1663
- hidden: boolean;
1664
- inert: boolean;
1665
- innerText: string;
1666
- lang: string;
1667
- readonly offsetHeight: number;
1668
- readonly offsetLeft: number;
1669
- readonly offsetParent: Element | null;
1670
- readonly offsetTop: number;
1671
- readonly offsetWidth: number;
1672
- outerText: string;
1673
- popover: string | null;
1674
- spellcheck: boolean;
1675
- title: string;
1676
- translate: boolean;
1677
- writingSuggestions: string;
1678
- attachInternals(): ElementInternals;
1679
- click(): void;
1680
- hidePopover(): void;
1681
- showPopover(): void;
1682
- togglePopover(options?: boolean): boolean;
1683
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1684
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1685
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
1686
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
1687
- readonly attributes: NamedNodeMap;
1688
- get classList(): DOMTokenList;
1689
- set classList(value: string): any;
1690
- className: string;
1691
- readonly clientHeight: number;
1692
- readonly clientLeft: number;
1693
- readonly clientTop: number;
1694
- readonly clientWidth: number;
1695
- readonly currentCSSZoom: number;
1696
- id: string;
1697
- innerHTML: string;
1698
- readonly localName: string;
1699
- readonly namespaceURI: string | null;
1700
- onfullscreenchange: ((this: Element, ev: Event) => any) | null;
1701
- onfullscreenerror: ((this: Element, ev: Event) => any) | null;
1702
- outerHTML: string;
1703
- readonly ownerDocument: Document;
1704
- get part(): DOMTokenList;
1705
- set part(value: string): any;
1706
- readonly prefix: string | null;
1707
- readonly scrollHeight: number;
1708
- scrollLeft: number;
1709
- scrollTop: number;
1710
- readonly scrollWidth: number;
1711
- readonly shadowRoot: ShadowRoot | null;
1712
- slot: string;
1713
- readonly tagName: string;
1714
- attachShadow(init: ShadowRootInit): ShadowRoot;
1715
- checkVisibility(options?: CheckVisibilityOptions): boolean;
1716
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
1717
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
1718
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
1719
- closest<E extends Element = Element>(selectors: string): E | null;
1720
- computedStyleMap(): StylePropertyMapReadOnly;
1721
- getAttribute(qualifiedName: string): string | null;
1722
- getAttributeNS(namespace: string | null, localName: string): string | null;
1723
- getAttributeNames(): string[];
1724
- getAttributeNode(qualifiedName: string): Attr | null;
1725
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
1726
- getBoundingClientRect(): DOMRect;
1727
- getClientRects(): DOMRectList;
1728
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
1729
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
1730
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
1731
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
1732
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
1733
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
1734
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
1735
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
1736
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
1737
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
1738
- getHTML(options?: GetHTMLOptions): string;
1739
- hasAttribute(qualifiedName: string): boolean;
1740
- hasAttributeNS(namespace: string | null, localName: string): boolean;
1741
- hasAttributes(): boolean;
1742
- hasPointerCapture(pointerId: number): boolean;
1743
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
1744
- insertAdjacentHTML(position: InsertPosition, string: string): void;
1745
- insertAdjacentText(where: InsertPosition, data: string): void;
1746
- matches(selectors: string): boolean;
1747
- releasePointerCapture(pointerId: number): void;
1748
- removeAttribute(qualifiedName: string): void;
1749
- removeAttributeNS(namespace: string | null, localName: string): void;
1750
- removeAttributeNode(attr: Attr): Attr;
1751
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
1752
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
1753
- scroll(options?: ScrollToOptions): void;
1754
- scroll(x: number, y: number): void;
1755
- scrollBy(options?: ScrollToOptions): void;
1756
- scrollBy(x: number, y: number): void;
1757
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
1758
- scrollTo(options?: ScrollToOptions): void;
1759
- scrollTo(x: number, y: number): void;
1760
- setAttribute(qualifiedName: string, value: string): void;
1761
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
1762
- setAttributeNode(attr: Attr): Attr | null;
1763
- setAttributeNodeNS(attr: Attr): Attr | null;
1764
- setHTMLUnsafe(html: string): void;
1765
- setPointerCapture(pointerId: number): void;
1766
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
1767
- webkitMatchesSelector(selectors: string): boolean;
1768
- textContent: string;
1769
- readonly baseURI: string;
1770
- readonly childNodes: NodeListOf<ChildNode>;
1771
- readonly firstChild: ChildNode | null;
1772
- readonly isConnected: boolean;
1773
- readonly lastChild: ChildNode | null;
1774
- readonly nextSibling: ChildNode | null;
1775
- readonly nodeName: string;
1776
- readonly nodeType: number;
1777
- nodeValue: string | null;
1778
- readonly parentElement: HTMLElement | null;
1779
- readonly parentNode: ParentNode | null;
1780
- readonly previousSibling: ChildNode | null;
1781
- appendChild<T extends Node>(node: T): T;
1782
- cloneNode(subtree?: boolean): Node;
1783
- compareDocumentPosition(other: Node): number;
1784
- contains(other: Node | null): boolean;
1785
- getRootNode(options?: GetRootNodeOptions): Node;
1786
- hasChildNodes(): boolean;
1787
- insertBefore<T extends Node>(node: T, child: Node | null): T;
1788
- isDefaultNamespace(namespace: string | null): boolean;
1789
- isEqualNode(otherNode: Node | null): boolean;
1790
- isSameNode(otherNode: Node | null): boolean;
1791
- lookupNamespaceURI(prefix: string | null): string | null;
1792
- lookupPrefix(namespace: string | null): string | null;
1793
- normalize(): void;
1794
- removeChild<T extends Node>(child: T): T;
1795
- replaceChild<T extends Node>(node: Node, child: T): T;
1796
- readonly ELEMENT_NODE: 1;
1797
- readonly ATTRIBUTE_NODE: 2;
1798
- readonly TEXT_NODE: 3;
1799
- readonly CDATA_SECTION_NODE: 4;
1800
- readonly ENTITY_REFERENCE_NODE: 5;
1801
- readonly ENTITY_NODE: 6;
1802
- readonly PROCESSING_INSTRUCTION_NODE: 7;
1803
- readonly COMMENT_NODE: 8;
1804
- readonly DOCUMENT_NODE: 9;
1805
- readonly DOCUMENT_TYPE_NODE: 10;
1806
- readonly DOCUMENT_FRAGMENT_NODE: 11;
1807
- readonly NOTATION_NODE: 12;
1808
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
1809
- readonly DOCUMENT_POSITION_PRECEDING: 2;
1810
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
1811
- readonly DOCUMENT_POSITION_CONTAINS: 8;
1812
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
1813
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
1814
- dispatchEvent(event: Event): boolean;
1815
- ariaActiveDescendantElement: Element | null;
1816
- ariaAtomic: string | null;
1817
- ariaAutoComplete: string | null;
1818
- ariaBrailleLabel: string | null;
1819
- ariaBrailleRoleDescription: string | null;
1820
- ariaBusy: string | null;
1821
- ariaChecked: string | null;
1822
- ariaColCount: string | null;
1823
- ariaColIndex: string | null;
1824
- ariaColIndexText: string | null;
1825
- ariaColSpan: string | null;
1826
- ariaControlsElements: ReadonlyArray<Element> | null;
1827
- ariaCurrent: string | null;
1828
- ariaDescribedByElements: ReadonlyArray<Element> | null;
1829
- ariaDescription: string | null;
1830
- ariaDetailsElements: ReadonlyArray<Element> | null;
1831
- ariaDisabled: string | null;
1832
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
1833
- ariaExpanded: string | null;
1834
- ariaFlowToElements: ReadonlyArray<Element> | null;
1835
- ariaHasPopup: string | null;
1836
- ariaHidden: string | null;
1837
- ariaInvalid: string | null;
1838
- ariaKeyShortcuts: string | null;
1839
- ariaLabel: string | null;
1840
- ariaLabelledByElements: ReadonlyArray<Element> | null;
1841
- ariaLevel: string | null;
1842
- ariaLive: string | null;
1843
- ariaModal: string | null;
1844
- ariaMultiLine: string | null;
1845
- ariaMultiSelectable: string | null;
1846
- ariaOrientation: string | null;
1847
- ariaOwnsElements: ReadonlyArray<Element> | null;
1848
- ariaPlaceholder: string | null;
1849
- ariaPosInSet: string | null;
1850
- ariaPressed: string | null;
1851
- ariaReadOnly: string | null;
1852
- ariaRelevant: string | null;
1853
- ariaRequired: string | null;
1854
- ariaRoleDescription: string | null;
1855
- ariaRowCount: string | null;
1856
- ariaRowIndex: string | null;
1857
- ariaRowIndexText: string | null;
1858
- ariaRowSpan: string | null;
1859
- ariaSelected: string | null;
1860
- ariaSetSize: string | null;
1861
- ariaSort: string | null;
1862
- ariaValueMax: string | null;
1863
- ariaValueMin: string | null;
1864
- ariaValueNow: string | null;
1865
- ariaValueText: string | null;
1866
- role: string | null;
1867
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
1868
- getAnimations(options?: GetAnimationsOptions): Animation[];
1869
- after(...nodes: (Node | string)[]): void;
1870
- before(...nodes: (Node | string)[]): void;
1871
- remove(): void;
1872
- replaceWith(...nodes: (Node | string)[]): void;
1873
- readonly nextElementSibling: Element | null;
1874
- readonly previousElementSibling: Element | null;
1875
- readonly childElementCount: number;
1876
- readonly children: HTMLCollection;
1877
- readonly firstElementChild: Element | null;
1878
- readonly lastElementChild: Element | null;
1879
- append(...nodes: (Node | string)[]): void;
1880
- prepend(...nodes: (Node | string)[]): void;
1881
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
1882
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
1883
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
1884
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
1885
- querySelector<E extends Element = Element>(selectors: string): E | null;
1886
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
1887
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
1888
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
1889
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
1890
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
1891
- replaceChildren(...nodes: (Node | string)[]): void;
1892
- readonly assignedSlot: HTMLSlotElement | null;
1893
- readonly attributeStyleMap: StylePropertyMap;
1894
- get style(): CSSStyleDeclaration;
1895
- set style(cssText: string): any;
1896
- contentEditable: string;
1897
- enterKeyHint: string;
1898
- inputMode: string;
1899
- readonly isContentEditable: boolean;
1900
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1901
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1902
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1903
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1904
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1905
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1906
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
1907
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1908
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1909
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1910
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1911
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1912
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1913
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1914
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1915
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1916
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1917
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1918
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1919
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1920
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1921
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1922
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1923
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1924
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1925
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1926
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1927
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1928
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1929
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1930
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1931
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1932
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1933
- onerror: OnErrorEventHandler;
1934
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1935
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
1936
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1937
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1938
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1939
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1940
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1941
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1942
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1943
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1944
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1945
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1946
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1947
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1948
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1949
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1950
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1951
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1952
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1953
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1954
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
1955
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1956
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1957
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1958
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1959
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1960
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1961
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1962
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1963
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1964
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1965
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1966
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1967
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
1968
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1969
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1970
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1971
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1972
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1973
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
1974
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1975
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1976
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1977
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1978
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1979
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1980
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1981
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1982
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1983
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1984
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
1985
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1986
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1987
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1988
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1989
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1990
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1991
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1992
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1993
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1994
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1995
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1996
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1997
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1998
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1999
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
2000
- autofocus: boolean;
2001
- readonly dataset: DOMStringMap;
2002
- nonce?: string;
2003
- tabIndex: number;
2004
- blur(): void;
2005
- focus(options?: FocusOptions): void;
2006
- readonly $fastController: Controller;
2007
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
2008
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
2009
- });
865
+ declare const GridTabulatorClientSideDatasource_base: (new () => HTMLElement & FASTElement & DatasourceEventHandlerElement) & Constructable<LifecycleElement>;
2010
866
 
2011
867
  /**
2012
868
  * The GridTabulator Column element.
@@ -2020,373 +876,7 @@ export declare class GridTabulatorColumn extends GridTabulatorColumn_base {
2020
876
  deepClone(): Node;
2021
877
  }
2022
878
 
2023
- declare const GridTabulatorColumn_base: (new (...args: any[]) => {
2024
- #_container: FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
2025
- #_latestTokenCode: string;
2026
- #_hasFirstLoaded: boolean;
2027
- #_cleanupTimeout: NodeJS.Timeout;
2028
- #_shouldForceLifecycle: boolean;
2029
- #_blockedDisconnectSurvivedGracePeriod: boolean;
2030
- cloneNode(deep?: boolean): Node;
2031
- deepClone(): Node;
2032
- get shouldRunDisconnect(): boolean;
2033
- get shouldRunConnect(): boolean;
2034
- #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
2035
- #_tryFindContainingLayout(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
2036
- connectedCallback(): void;
2037
- readonly $fastController: Controller;
2038
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
2039
- disconnectedCallback(): void;
2040
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
2041
- accessKey: string;
2042
- readonly accessKeyLabel: string;
2043
- autocapitalize: string;
2044
- autocorrect: boolean;
2045
- dir: string;
2046
- draggable: boolean;
2047
- hidden: boolean;
2048
- inert: boolean;
2049
- innerText: string;
2050
- lang: string;
2051
- readonly offsetHeight: number;
2052
- readonly offsetLeft: number;
2053
- readonly offsetParent: Element | null;
2054
- readonly offsetTop: number;
2055
- readonly offsetWidth: number;
2056
- outerText: string;
2057
- popover: string | null;
2058
- spellcheck: boolean;
2059
- title: string;
2060
- translate: boolean;
2061
- writingSuggestions: string;
2062
- attachInternals(): ElementInternals;
2063
- click(): void;
2064
- hidePopover(): void;
2065
- showPopover(): void;
2066
- togglePopover(options?: boolean): boolean;
2067
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2068
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
2069
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
2070
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
2071
- readonly attributes: NamedNodeMap;
2072
- get classList(): DOMTokenList;
2073
- set classList(value: string): any;
2074
- className: string;
2075
- readonly clientHeight: number;
2076
- readonly clientLeft: number;
2077
- readonly clientTop: number;
2078
- readonly clientWidth: number;
2079
- readonly currentCSSZoom: number;
2080
- id: string;
2081
- innerHTML: string;
2082
- readonly localName: string;
2083
- readonly namespaceURI: string | null;
2084
- onfullscreenchange: (this: Element, ev: Event) => any;
2085
- onfullscreenerror: (this: Element, ev: Event) => any;
2086
- outerHTML: string;
2087
- readonly ownerDocument: Document;
2088
- get part(): DOMTokenList;
2089
- set part(value: string): any;
2090
- readonly prefix: string | null;
2091
- readonly scrollHeight: number;
2092
- scrollLeft: number;
2093
- scrollTop: number;
2094
- readonly scrollWidth: number;
2095
- readonly shadowRoot: ShadowRoot | null;
2096
- slot: string;
2097
- readonly tagName: string;
2098
- attachShadow(init: ShadowRootInit): ShadowRoot;
2099
- checkVisibility(options?: CheckVisibilityOptions): boolean;
2100
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
2101
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
2102
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
2103
- closest<E extends Element = Element>(selectors: string): E;
2104
- computedStyleMap(): StylePropertyMapReadOnly;
2105
- getAttribute(qualifiedName: string): string | null;
2106
- getAttributeNS(namespace: string | null, localName: string): string | null;
2107
- getAttributeNames(): string[];
2108
- getAttributeNode(qualifiedName: string): Attr | null;
2109
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
2110
- getBoundingClientRect(): DOMRect;
2111
- getClientRects(): DOMRectList;
2112
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
2113
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
2114
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
2115
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
2116
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
2117
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
2118
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
2119
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
2120
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
2121
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
2122
- getHTML(options?: GetHTMLOptions): string;
2123
- hasAttribute(qualifiedName: string): boolean;
2124
- hasAttributeNS(namespace: string | null, localName: string): boolean;
2125
- hasAttributes(): boolean;
2126
- hasPointerCapture(pointerId: number): boolean;
2127
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
2128
- insertAdjacentHTML(position: InsertPosition, string: string): void;
2129
- insertAdjacentText(where: InsertPosition, data: string): void;
2130
- matches(selectors: string): boolean;
2131
- releasePointerCapture(pointerId: number): void;
2132
- removeAttribute(qualifiedName: string): void;
2133
- removeAttributeNS(namespace: string | null, localName: string): void;
2134
- removeAttributeNode(attr: Attr): Attr;
2135
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
2136
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
2137
- scroll(options?: ScrollToOptions): void;
2138
- scroll(x: number, y: number): void;
2139
- scrollBy(options?: ScrollToOptions): void;
2140
- scrollBy(x: number, y: number): void;
2141
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
2142
- scrollTo(options?: ScrollToOptions): void;
2143
- scrollTo(x: number, y: number): void;
2144
- setAttribute(qualifiedName: string, value: string): void;
2145
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
2146
- setAttributeNode(attr: Attr): Attr | null;
2147
- setAttributeNodeNS(attr: Attr): Attr | null;
2148
- setHTMLUnsafe(html: string): void;
2149
- setPointerCapture(pointerId: number): void;
2150
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
2151
- webkitMatchesSelector(selectors: string): boolean;
2152
- textContent: string;
2153
- readonly baseURI: string;
2154
- readonly childNodes: NodeListOf<ChildNode>;
2155
- readonly firstChild: ChildNode | null;
2156
- readonly isConnected: boolean;
2157
- readonly lastChild: ChildNode | null;
2158
- readonly nextSibling: ChildNode | null;
2159
- readonly nodeName: string;
2160
- readonly nodeType: number;
2161
- nodeValue: string | null;
2162
- readonly parentElement: HTMLElement | null;
2163
- readonly parentNode: ParentNode | null;
2164
- readonly previousSibling: ChildNode | null;
2165
- appendChild<T_1 extends Node>(node: T_1): T_1;
2166
- compareDocumentPosition(other: Node): number;
2167
- contains(other: Node | null): boolean;
2168
- getRootNode(options?: GetRootNodeOptions): Node;
2169
- hasChildNodes(): boolean;
2170
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
2171
- isDefaultNamespace(namespace: string | null): boolean;
2172
- isEqualNode(otherNode: Node | null): boolean;
2173
- isSameNode(otherNode: Node | null): boolean;
2174
- lookupNamespaceURI(prefix: string | null): string | null;
2175
- lookupPrefix(namespace: string | null): string | null;
2176
- normalize(): void;
2177
- removeChild<T_1 extends Node>(child: T_1): T_1;
2178
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
2179
- readonly ELEMENT_NODE: 1;
2180
- readonly ATTRIBUTE_NODE: 2;
2181
- readonly TEXT_NODE: 3;
2182
- readonly CDATA_SECTION_NODE: 4;
2183
- readonly ENTITY_REFERENCE_NODE: 5;
2184
- readonly ENTITY_NODE: 6;
2185
- readonly PROCESSING_INSTRUCTION_NODE: 7;
2186
- readonly COMMENT_NODE: 8;
2187
- readonly DOCUMENT_NODE: 9;
2188
- readonly DOCUMENT_TYPE_NODE: 10;
2189
- readonly DOCUMENT_FRAGMENT_NODE: 11;
2190
- readonly NOTATION_NODE: 12;
2191
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
2192
- readonly DOCUMENT_POSITION_PRECEDING: 2;
2193
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
2194
- readonly DOCUMENT_POSITION_CONTAINS: 8;
2195
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
2196
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
2197
- dispatchEvent(event: Event): boolean;
2198
- ariaActiveDescendantElement: Element | null;
2199
- ariaAtomic: string | null;
2200
- ariaAutoComplete: string | null;
2201
- ariaBrailleLabel: string | null;
2202
- ariaBrailleRoleDescription: string | null;
2203
- ariaBusy: string | null;
2204
- ariaChecked: string | null;
2205
- ariaColCount: string | null;
2206
- ariaColIndex: string | null;
2207
- ariaColIndexText: string | null;
2208
- ariaColSpan: string | null;
2209
- ariaControlsElements: ReadonlyArray<Element> | null;
2210
- ariaCurrent: string | null;
2211
- ariaDescribedByElements: ReadonlyArray<Element> | null;
2212
- ariaDescription: string | null;
2213
- ariaDetailsElements: ReadonlyArray<Element> | null;
2214
- ariaDisabled: string | null;
2215
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
2216
- ariaExpanded: string | null;
2217
- ariaFlowToElements: ReadonlyArray<Element> | null;
2218
- ariaHasPopup: string | null;
2219
- ariaHidden: string | null;
2220
- ariaInvalid: string | null;
2221
- ariaKeyShortcuts: string | null;
2222
- ariaLabel: string | null;
2223
- ariaLabelledByElements: ReadonlyArray<Element> | null;
2224
- ariaLevel: string | null;
2225
- ariaLive: string | null;
2226
- ariaModal: string | null;
2227
- ariaMultiLine: string | null;
2228
- ariaMultiSelectable: string | null;
2229
- ariaOrientation: string | null;
2230
- ariaOwnsElements: ReadonlyArray<Element> | null;
2231
- ariaPlaceholder: string | null;
2232
- ariaPosInSet: string | null;
2233
- ariaPressed: string | null;
2234
- ariaReadOnly: string | null;
2235
- ariaRelevant: string | null;
2236
- ariaRequired: string | null;
2237
- ariaRoleDescription: string | null;
2238
- ariaRowCount: string | null;
2239
- ariaRowIndex: string | null;
2240
- ariaRowIndexText: string | null;
2241
- ariaRowSpan: string | null;
2242
- ariaSelected: string | null;
2243
- ariaSetSize: string | null;
2244
- ariaSort: string | null;
2245
- ariaValueMax: string | null;
2246
- ariaValueMin: string | null;
2247
- ariaValueNow: string | null;
2248
- ariaValueText: string | null;
2249
- role: string | null;
2250
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
2251
- getAnimations(options?: GetAnimationsOptions): Animation[];
2252
- after(...nodes: (Node | string)[]): void;
2253
- before(...nodes: (Node | string)[]): void;
2254
- remove(): void;
2255
- replaceWith(...nodes: (Node | string)[]): void;
2256
- readonly nextElementSibling: Element | null;
2257
- readonly previousElementSibling: Element | null;
2258
- readonly childElementCount: number;
2259
- readonly children: HTMLCollection;
2260
- readonly firstElementChild: Element | null;
2261
- readonly lastElementChild: Element | null;
2262
- append(...nodes: (Node | string)[]): void;
2263
- prepend(...nodes: (Node | string)[]): void;
2264
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
2265
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
2266
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
2267
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
2268
- querySelector<E extends Element = Element>(selectors: string): E | null;
2269
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
2270
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
2271
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
2272
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
2273
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
2274
- replaceChildren(...nodes: (Node | string)[]): void;
2275
- readonly assignedSlot: HTMLSlotElement | null;
2276
- readonly attributeStyleMap: StylePropertyMap;
2277
- get style(): CSSStyleDeclaration;
2278
- set style(cssText: string): any;
2279
- contentEditable: string;
2280
- enterKeyHint: string;
2281
- inputMode: string;
2282
- readonly isContentEditable: boolean;
2283
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
2284
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2285
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2286
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2287
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
2288
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2289
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
2290
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2291
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
2292
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
2293
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2294
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2295
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2296
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2297
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2298
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2299
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2300
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2301
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2302
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2303
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2304
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2305
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2306
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2307
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2308
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2309
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2310
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2311
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2312
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
2313
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2314
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2315
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2316
- onerror: OnErrorEventHandler;
2317
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
2318
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
2319
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2320
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2321
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2322
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2323
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2324
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
2325
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2326
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2327
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2328
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2329
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2330
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2331
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2332
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2333
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2334
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2335
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2336
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
2337
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
2338
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2339
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2340
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2341
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2342
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2343
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2344
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2345
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2346
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2347
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2348
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2349
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
2350
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
2351
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2352
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2353
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
2354
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2355
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2356
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
2357
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2358
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2359
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2360
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2361
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2362
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2363
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2364
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
2365
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2366
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2367
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
2368
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2369
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2370
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2371
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
2372
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2373
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2374
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2375
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
2376
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2377
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2378
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2379
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2380
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2381
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
2382
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
2383
- autofocus: boolean;
2384
- readonly dataset: DOMStringMap;
2385
- nonce?: string;
2386
- tabIndex: number;
2387
- blur(): void;
2388
- focus(options?: FocusOptions): void;
2389
- }) & typeof FoundationElement;
879
+ declare const GridTabulatorColumn_base: typeof FoundationElement & Constructable<LifecycleElement>;
2390
880
 
2391
881
  /**
2392
882
  * Detail payload for the `gridTabulator:error` event.
@@ -2465,110 +955,6 @@ export declare const logger: Logger;
2465
955
  */
2466
956
  export declare function mergeAndDedupColDefWithColumnState(colDefs: any[], columnState: any[]): any[];
2467
957
 
2468
- /**
2469
- * The multiselect editor class for grid-tabulator
2470
- * @alpha
2471
- */
2472
- declare class MultiselectEditor extends FoundationElement {
2473
- params: MultiselectEditorParams;
2474
- select: any;
2475
- /**
2476
- * Initialize the editor with parameters
2477
- */
2478
- init(params: MultiselectEditorParams): void;
2479
- /**
2480
- * Get current values
2481
- */
2482
- getValues(): (string | number)[];
2483
- /**
2484
- * Set focus to the select
2485
- */
2486
- focus(): void;
2487
- /**
2488
- * Check if a value is selected
2489
- */
2490
- isSelected(value: string | number): boolean;
2491
- /**
2492
- * Process key down events
2493
- */
2494
- handleKeyDown(event: KeyboardEvent): void;
2495
- /**
2496
- * Handle change event to save when selection changes
2497
- */
2498
- handleChange(): void;
2499
- }
2500
-
2501
- /**
2502
- * Multiselect Editor interface for grid-tabulator
2503
- *
2504
- * `value`: The current cell values as array
2505
- *
2506
- * `options`: Select options
2507
- *
2508
- * `success`: Cell changed callback
2509
- *
2510
- * `cancel`: Cancel edit callback
2511
- *
2512
- * @alpha
2513
- */
2514
- declare interface MultiselectEditorParams {
2515
- value?: (string | number)[];
2516
- options?: SelectOption_2[];
2517
- success?: (values: (string | number)[]) => void;
2518
- cancel?: () => void;
2519
- }
2520
-
2521
- /**
2522
- * The number editor class for grid-tabulator
2523
- * @alpha
2524
- */
2525
- declare class NumberEditor extends FoundationElement {
2526
- params: NumberEditorParams;
2527
- numberField: any;
2528
- /**
2529
- * Initialize the editor with parameters
2530
- */
2531
- init(params: NumberEditorParams): void;
2532
- /**
2533
- * Get current value
2534
- */
2535
- getValue(): number;
2536
- /**
2537
- * Set focus to the input
2538
- */
2539
- focus(): void;
2540
- /**
2541
- * Process key down events
2542
- */
2543
- handleKeyDown(event: KeyboardEvent): void;
2544
- }
2545
-
2546
- /**
2547
- * Number Editor interface for grid-tabulator
2548
- *
2549
- * `value`: The current cell value
2550
- *
2551
- * `min`: Min value
2552
- *
2553
- * `max`: Max value
2554
- *
2555
- * `step`: Step value
2556
- *
2557
- * `success`: Cell changed callback
2558
- *
2559
- * `cancel`: Cancel edit callback
2560
- *
2561
- * @alpha
2562
- */
2563
- declare interface NumberEditorParams {
2564
- value?: number;
2565
- min?: number;
2566
- max?: number;
2567
- step?: number;
2568
- success?: (value: number) => void;
2569
- cancel?: () => void;
2570
- }
2571
-
2572
958
  /**
2573
959
  * Extended Tabulator Options with custom formatters
2574
960
  * @alpha
@@ -2593,55 +979,6 @@ export declare interface RowDataTransaction<TData = any> {
2593
979
  update?: TData[] | null;
2594
980
  }
2595
981
 
2596
- /**
2597
- * The select editor class for grid-tabulator
2598
- * @public
2599
- */
2600
- declare class SelectEditor extends FoundationElement {
2601
- params: SelectEditorParams;
2602
- select: any;
2603
- /**
2604
- * Initialize the editor with parameters
2605
- */
2606
- init(params: SelectEditorParams): void;
2607
- /**
2608
- * Get current value
2609
- */
2610
- getValue(): any;
2611
- /**
2612
- * Set focus to the select
2613
- */
2614
- focus(): void;
2615
- /**
2616
- * Process key down events
2617
- */
2618
- handleKeyDown(event: KeyboardEvent): void;
2619
- /**
2620
- * Handle change event
2621
- */
2622
- handleChange(): void;
2623
- }
2624
-
2625
- /**
2626
- * Select Editor interface for grid-tabulator
2627
- *
2628
- * `value`: The current cell value
2629
- *
2630
- * `options`: Select options
2631
- *
2632
- * `success`: Cell changed callback
2633
- *
2634
- * `cancel`: Cancel edit callback
2635
- *
2636
- * @alpha
2637
- */
2638
- declare interface SelectEditorParams {
2639
- value?: string | number;
2640
- options?: SelectOption_2[];
2641
- success?: (value: string | number) => void;
2642
- cancel?: () => void;
2643
- }
2644
-
2645
982
  /**
2646
983
  * Formatter that displays a select component with options.
2647
984
  * Returns a wrapped div containing the select, similar to boolean.formatter.
@@ -2693,60 +1030,6 @@ declare interface SelectOption<T = any> {
2693
1030
  isDisabled?: (rowData: T) => boolean;
2694
1031
  }
2695
1032
 
2696
- /** @beta
2697
- * Select option interface
2698
- *
2699
- * `value`: Option value
2700
- *
2701
- * `label`: Option label
2702
- */
2703
- declare interface SelectOption_2 {
2704
- value: string | number;
2705
- label: string;
2706
- }
2707
-
2708
- /**
2709
- * The string editor class for grid-tabulator
2710
- * @alpha
2711
- */
2712
- declare class StringEditor extends FoundationElement {
2713
- params: StringEditorParams;
2714
- textField: any;
2715
- /**
2716
- * Initialize the editor with parameters
2717
- */
2718
- init(params: StringEditorParams): void;
2719
- /**
2720
- * Get current value
2721
- */
2722
- getValue(): any;
2723
- /**
2724
- * Set focus to the input
2725
- */
2726
- focus(): void;
2727
- /**
2728
- * Process key down events
2729
- */
2730
- handleKeyDown(event: KeyboardEvent): void;
2731
- }
2732
-
2733
- /**
2734
- * String Editor interface for grid-tabulator
2735
- *
2736
- * `value`: The current cell value
2737
- *
2738
- * `success`: Cell changed callback
2739
- *
2740
- * `cancel`: Cancel edit callback
2741
- *
2742
- * @alpha
2743
- */
2744
- declare interface StringEditorParams {
2745
- value?: string;
2746
- success?: (value: string) => void;
2747
- cancel?: () => void;
2748
- }
2749
-
2750
1033
  /**
2751
1034
  * External styles for the Tabulator grid.
2752
1035
  * @public