@genesislcap/grid-tabulator 14.101.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/custom-elements-manifest.config.js +14 -0
- package/dist/custom-elements.json +1956 -0
- package/dist/dts/cell/index.d.ts +2 -0
- package/dist/dts/cell/index.d.ts.map +1 -0
- package/dist/dts/cell-renderers/index.d.ts +2 -0
- package/dist/dts/cell-renderers/index.d.ts.map +1 -0
- package/dist/dts/column/index.d.ts +2 -0
- package/dist/dts/column/index.d.ts.map +1 -0
- package/dist/dts/datasource/client-side.datasource.d.ts +472 -0
- package/dist/dts/datasource/client-side.datasource.d.ts.map +1 -0
- package/dist/dts/datasource/index.d.ts +2 -0
- package/dist/dts/datasource/index.d.ts.map +1 -0
- package/dist/dts/external/fonts.d.ts +7 -0
- package/dist/dts/external/fonts.d.ts.map +1 -0
- package/dist/dts/external/index.d.ts +4 -0
- package/dist/dts/external/index.d.ts.map +1 -0
- package/dist/dts/external/tabulator-theme-simple-css.d.ts +2 -0
- package/dist/dts/external/tabulator-theme-simple-css.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.components.d.ts +16 -0
- package/dist/dts/grid-tabulator.components.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.d.ts +397 -0
- package/dist/dts/grid-tabulator.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.definitions.d.ts +7 -0
- package/dist/dts/grid-tabulator.definitions.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.styles.d.ts +3 -0
- package/dist/dts/grid-tabulator.styles.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.template.d.ts +3 -0
- package/dist/dts/grid-tabulator.template.d.ts.map +1 -0
- package/dist/dts/grid-tabulator.types.d.ts +26 -0
- package/dist/dts/grid-tabulator.types.d.ts.map +1 -0
- package/dist/dts/index.d.ts +14 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/dts/index.federated.d.ts +1 -0
- package/dist/dts/index.federated.d.ts.map +1 -0
- package/dist/dts/style/colors.d.ts +2 -0
- package/dist/dts/style/colors.d.ts.map +1 -0
- package/dist/dts/style/index.d.ts +3 -0
- package/dist/dts/style/index.d.ts.map +1 -0
- package/dist/dts/style/tokens.d.ts +2 -0
- package/dist/dts/style/tokens.d.ts.map +1 -0
- package/dist/dts/utils/index.d.ts +2 -0
- package/dist/dts/utils/index.d.ts.map +1 -0
- package/dist/dts/utils/logger.d.ts +2 -0
- package/dist/dts/utils/logger.d.ts.map +1 -0
- package/dist/esm/cell/index.js +1 -0
- package/dist/esm/cell-renderers/index.js +1 -0
- package/dist/esm/column/index.js +1 -0
- package/dist/esm/datasource/client-side.datasource.js +526 -0
- package/dist/esm/datasource/index.js +1 -0
- package/dist/esm/external/fonts.js +16 -0
- package/dist/esm/external/index.js +6 -0
- package/dist/esm/external/tabulator-theme-simple-css.js +1379 -0
- package/dist/esm/grid-tabulator.components.js +29 -0
- package/dist/esm/grid-tabulator.definitions.js +77 -0
- package/dist/esm/grid-tabulator.js +192 -0
- package/dist/esm/grid-tabulator.styles.js +14 -0
- package/dist/esm/grid-tabulator.template.js +6 -0
- package/dist/esm/grid-tabulator.types.js +77 -0
- package/dist/esm/index.federated.js +1 -0
- package/dist/esm/index.js +13 -0
- package/dist/esm/style/colors.js +3 -0
- package/dist/esm/style/index.js +2 -0
- package/dist/esm/style/tokens.js +4 -0
- package/dist/esm/utils/index.js +1 -0
- package/dist/esm/utils/logger.js +2 -0
- package/externals.js +5 -0
- package/genx.config.ts +14 -0
- package/license.txt +46 -0
- package/package.json +63 -0
|
@@ -0,0 +1,397 @@
|
|
|
1
|
+
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
|
+
import { DownloadOptions, FilterParams, Options, RowRangeLookup, TabulatorFull as Tabulator } from 'tabulator-tables';
|
|
3
|
+
declare const GridTabulator_base: (new (...args: any[]) => {
|
|
4
|
+
"__#1@#_container": import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
5
|
+
"__#1@#_latestTokenCode": string;
|
|
6
|
+
"__#1@#_hasFirstLoaded": boolean;
|
|
7
|
+
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
|
8
|
+
"__#1@#_shouldForceLifecycle": boolean;
|
|
9
|
+
cloneNode(deep?: boolean): Node;
|
|
10
|
+
deepClone(): Node;
|
|
11
|
+
readonly shouldRunDisconnect: boolean;
|
|
12
|
+
readonly shouldRunConnect: boolean;
|
|
13
|
+
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
14
|
+
"__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
15
|
+
connectedCallback(): void;
|
|
16
|
+
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
17
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
|
18
|
+
disconnectedCallback(): void;
|
|
19
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
20
|
+
accessKey: string;
|
|
21
|
+
readonly accessKeyLabel: string;
|
|
22
|
+
autocapitalize: string;
|
|
23
|
+
dir: string;
|
|
24
|
+
draggable: boolean;
|
|
25
|
+
hidden: boolean;
|
|
26
|
+
inert: boolean;
|
|
27
|
+
innerText: string;
|
|
28
|
+
lang: string;
|
|
29
|
+
readonly offsetHeight: number;
|
|
30
|
+
readonly offsetLeft: number;
|
|
31
|
+
readonly offsetParent: Element;
|
|
32
|
+
readonly offsetTop: number;
|
|
33
|
+
readonly offsetWidth: number;
|
|
34
|
+
outerText: string;
|
|
35
|
+
spellcheck: boolean;
|
|
36
|
+
title: string;
|
|
37
|
+
translate: boolean;
|
|
38
|
+
attachInternals(): ElementInternals;
|
|
39
|
+
click(): void;
|
|
40
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
41
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
42
|
+
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
43
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
44
|
+
readonly attributes: NamedNodeMap;
|
|
45
|
+
readonly classList: DOMTokenList;
|
|
46
|
+
className: string;
|
|
47
|
+
readonly clientHeight: number;
|
|
48
|
+
readonly clientLeft: number;
|
|
49
|
+
readonly clientTop: number;
|
|
50
|
+
readonly clientWidth: number;
|
|
51
|
+
id: string;
|
|
52
|
+
readonly localName: string;
|
|
53
|
+
readonly namespaceURI: string;
|
|
54
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
55
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
56
|
+
outerHTML: string;
|
|
57
|
+
readonly ownerDocument: Document;
|
|
58
|
+
readonly part: DOMTokenList;
|
|
59
|
+
readonly prefix: string;
|
|
60
|
+
readonly scrollHeight: number;
|
|
61
|
+
scrollLeft: number;
|
|
62
|
+
scrollTop: number;
|
|
63
|
+
readonly scrollWidth: number;
|
|
64
|
+
readonly shadowRoot: ShadowRoot;
|
|
65
|
+
slot: string;
|
|
66
|
+
readonly tagName: string;
|
|
67
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
68
|
+
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
69
|
+
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
70
|
+
closest<E extends Element = Element>(selectors: string): E;
|
|
71
|
+
getAttribute(qualifiedName: string): string;
|
|
72
|
+
getAttributeNS(namespace: string, localName: string): string;
|
|
73
|
+
getAttributeNames(): string[];
|
|
74
|
+
getAttributeNode(qualifiedName: string): Attr;
|
|
75
|
+
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
76
|
+
getBoundingClientRect(): DOMRect;
|
|
77
|
+
getClientRects(): DOMRectList;
|
|
78
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
79
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
80
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
81
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
82
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
83
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
84
|
+
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
85
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
86
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
87
|
+
hasAttributes(): boolean;
|
|
88
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
89
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
90
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
91
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
92
|
+
matches(selectors: string): boolean;
|
|
93
|
+
releasePointerCapture(pointerId: number): void;
|
|
94
|
+
removeAttribute(qualifiedName: string): void;
|
|
95
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
|
96
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
97
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
98
|
+
requestPointerLock(): void;
|
|
99
|
+
scroll(options?: ScrollToOptions): void;
|
|
100
|
+
scroll(x: number, y: number): void;
|
|
101
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
102
|
+
scrollBy(x: number, y: number): void;
|
|
103
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
104
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
105
|
+
scrollTo(x: number, y: number): void;
|
|
106
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
107
|
+
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
108
|
+
setAttributeNode(attr: Attr): Attr;
|
|
109
|
+
setAttributeNodeNS(attr: Attr): Attr;
|
|
110
|
+
setPointerCapture(pointerId: number): void;
|
|
111
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
112
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
113
|
+
readonly baseURI: string;
|
|
114
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
115
|
+
readonly firstChild: ChildNode;
|
|
116
|
+
readonly isConnected: boolean;
|
|
117
|
+
readonly lastChild: ChildNode;
|
|
118
|
+
readonly nextSibling: ChildNode;
|
|
119
|
+
readonly nodeName: string;
|
|
120
|
+
readonly nodeType: number;
|
|
121
|
+
nodeValue: string;
|
|
122
|
+
readonly parentElement: HTMLElement;
|
|
123
|
+
readonly parentNode: ParentNode;
|
|
124
|
+
readonly previousSibling: ChildNode;
|
|
125
|
+
textContent: string;
|
|
126
|
+
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
127
|
+
compareDocumentPosition(other: Node): number;
|
|
128
|
+
contains(other: Node): boolean;
|
|
129
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
130
|
+
hasChildNodes(): boolean;
|
|
131
|
+
insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
|
|
132
|
+
isDefaultNamespace(namespace: string): boolean;
|
|
133
|
+
isEqualNode(otherNode: Node): boolean;
|
|
134
|
+
isSameNode(otherNode: Node): boolean;
|
|
135
|
+
lookupNamespaceURI(prefix: string): string;
|
|
136
|
+
lookupPrefix(namespace: string): string;
|
|
137
|
+
normalize(): void;
|
|
138
|
+
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
139
|
+
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
140
|
+
readonly ATTRIBUTE_NODE: number;
|
|
141
|
+
readonly CDATA_SECTION_NODE: number;
|
|
142
|
+
readonly COMMENT_NODE: number;
|
|
143
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
144
|
+
readonly DOCUMENT_NODE: number;
|
|
145
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
146
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
147
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
148
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
149
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
150
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
151
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
152
|
+
readonly ELEMENT_NODE: number;
|
|
153
|
+
readonly ENTITY_NODE: number;
|
|
154
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
155
|
+
readonly NOTATION_NODE: number;
|
|
156
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
157
|
+
readonly TEXT_NODE: number;
|
|
158
|
+
dispatchEvent(event: Event): boolean;
|
|
159
|
+
ariaAtomic: string;
|
|
160
|
+
ariaAutoComplete: string;
|
|
161
|
+
ariaBusy: string;
|
|
162
|
+
ariaChecked: string;
|
|
163
|
+
ariaColCount: string;
|
|
164
|
+
ariaColIndex: string;
|
|
165
|
+
ariaColIndexText: string;
|
|
166
|
+
ariaColSpan: string;
|
|
167
|
+
ariaCurrent: string;
|
|
168
|
+
ariaDisabled: string;
|
|
169
|
+
ariaExpanded: string;
|
|
170
|
+
ariaHasPopup: string;
|
|
171
|
+
ariaHidden: string;
|
|
172
|
+
ariaInvalid: string;
|
|
173
|
+
ariaKeyShortcuts: string;
|
|
174
|
+
ariaLabel: string;
|
|
175
|
+
ariaLevel: string;
|
|
176
|
+
ariaLive: string;
|
|
177
|
+
ariaModal: string;
|
|
178
|
+
ariaMultiLine: string;
|
|
179
|
+
ariaMultiSelectable: string;
|
|
180
|
+
ariaOrientation: string;
|
|
181
|
+
ariaPlaceholder: string;
|
|
182
|
+
ariaPosInSet: string;
|
|
183
|
+
ariaPressed: string;
|
|
184
|
+
ariaReadOnly: string;
|
|
185
|
+
ariaRequired: string;
|
|
186
|
+
ariaRoleDescription: string;
|
|
187
|
+
ariaRowCount: string;
|
|
188
|
+
ariaRowIndex: string;
|
|
189
|
+
ariaRowIndexText: string;
|
|
190
|
+
ariaRowSpan: string;
|
|
191
|
+
ariaSelected: string;
|
|
192
|
+
ariaSetSize: string;
|
|
193
|
+
ariaSort: string;
|
|
194
|
+
ariaValueMax: string;
|
|
195
|
+
ariaValueMin: string;
|
|
196
|
+
ariaValueNow: string;
|
|
197
|
+
ariaValueText: string;
|
|
198
|
+
role: string;
|
|
199
|
+
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
|
200
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
201
|
+
after(...nodes: (string | Node)[]): void;
|
|
202
|
+
before(...nodes: (string | Node)[]): void;
|
|
203
|
+
remove(): void;
|
|
204
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
|
205
|
+
innerHTML: string;
|
|
206
|
+
readonly nextElementSibling: Element;
|
|
207
|
+
readonly previousElementSibling: Element;
|
|
208
|
+
readonly childElementCount: number;
|
|
209
|
+
readonly children: HTMLCollection;
|
|
210
|
+
readonly firstElementChild: Element;
|
|
211
|
+
readonly lastElementChild: Element;
|
|
212
|
+
append(...nodes: (string | Node)[]): void;
|
|
213
|
+
prepend(...nodes: (string | Node)[]): void;
|
|
214
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
215
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
216
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
217
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
218
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
219
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
220
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
|
221
|
+
readonly assignedSlot: HTMLSlotElement;
|
|
222
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
223
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
224
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
225
|
+
readonly style: CSSStyleDeclaration;
|
|
226
|
+
contentEditable: string;
|
|
227
|
+
enterKeyHint: string;
|
|
228
|
+
inputMode: string;
|
|
229
|
+
readonly isContentEditable: boolean;
|
|
230
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
231
|
+
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
232
|
+
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
233
|
+
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
234
|
+
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
235
|
+
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
236
|
+
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
237
|
+
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
238
|
+
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
239
|
+
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
240
|
+
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
|
241
|
+
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
242
|
+
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
243
|
+
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
244
|
+
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
245
|
+
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
246
|
+
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
247
|
+
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
248
|
+
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
249
|
+
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
250
|
+
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
251
|
+
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
252
|
+
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
253
|
+
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
254
|
+
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
255
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
|
256
|
+
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
|
257
|
+
onerror: OnErrorEventHandlerNonNull;
|
|
258
|
+
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
259
|
+
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
|
260
|
+
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
261
|
+
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
|
262
|
+
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
|
263
|
+
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
264
|
+
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
265
|
+
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
266
|
+
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
|
267
|
+
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
268
|
+
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
269
|
+
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
270
|
+
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
271
|
+
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
272
|
+
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
273
|
+
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
274
|
+
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
275
|
+
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
276
|
+
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
277
|
+
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
278
|
+
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
279
|
+
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
280
|
+
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
281
|
+
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
282
|
+
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
283
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
284
|
+
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
285
|
+
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
286
|
+
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
287
|
+
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
288
|
+
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
289
|
+
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
|
290
|
+
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
291
|
+
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
292
|
+
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
293
|
+
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
294
|
+
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
295
|
+
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
296
|
+
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
297
|
+
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
|
298
|
+
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
299
|
+
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
300
|
+
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
301
|
+
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
|
302
|
+
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
|
303
|
+
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
304
|
+
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
|
305
|
+
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
306
|
+
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
307
|
+
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
308
|
+
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
309
|
+
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
310
|
+
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
311
|
+
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
312
|
+
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
313
|
+
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
314
|
+
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
315
|
+
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
|
316
|
+
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
317
|
+
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
|
318
|
+
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
319
|
+
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
320
|
+
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
|
321
|
+
autofocus: boolean;
|
|
322
|
+
readonly dataset: DOMStringMap;
|
|
323
|
+
nonce?: string;
|
|
324
|
+
tabIndex: number;
|
|
325
|
+
blur(): void;
|
|
326
|
+
focus(options?: FocusOptions): void;
|
|
327
|
+
}) & typeof FoundationElement;
|
|
328
|
+
/**
|
|
329
|
+
* @alpha
|
|
330
|
+
* @tagname %%prefix%%-grid-tabulator
|
|
331
|
+
*/
|
|
332
|
+
export declare class GridTabulator extends GridTabulator_base {
|
|
333
|
+
grid: Tabulator | undefined;
|
|
334
|
+
gridDiv: HTMLDivElement;
|
|
335
|
+
gridFontFace: string;
|
|
336
|
+
classNames: string;
|
|
337
|
+
autoCellRendererByType: boolean;
|
|
338
|
+
onlyTemplateColDefs: boolean;
|
|
339
|
+
persistColumnStateKey: string;
|
|
340
|
+
rowHeight: number;
|
|
341
|
+
theme: string;
|
|
342
|
+
themeChanged(oldValue: string, newValue: string): void;
|
|
343
|
+
private rehydrationAttempted;
|
|
344
|
+
connectedCallback(): void;
|
|
345
|
+
disconnectedCallback(): void;
|
|
346
|
+
set gridOptions(options: Options);
|
|
347
|
+
get statePersistanceEnabled(): boolean;
|
|
348
|
+
saveGridState(): void;
|
|
349
|
+
restoreGridState(): void;
|
|
350
|
+
/**
|
|
351
|
+
* Set the Grid client-side filters.
|
|
352
|
+
* @public
|
|
353
|
+
* @param column - column name
|
|
354
|
+
* @param operator - filter operator
|
|
355
|
+
* @param value - filter value
|
|
356
|
+
* @param filterParams - optional filter params
|
|
357
|
+
*/
|
|
358
|
+
setFilter(column: string, operator: string, value: string, filterParams?: FilterParams): void;
|
|
359
|
+
/**
|
|
360
|
+
* Download the Grid data as a file of the specified type.
|
|
361
|
+
* @public
|
|
362
|
+
* @privateRemarks
|
|
363
|
+
* See https://tabulator.info/docs/5.5/download#overview, xlsx/pdf require extra libraries.
|
|
364
|
+
* @param type - csv | json | html
|
|
365
|
+
* @param fileName - name of the file to download
|
|
366
|
+
* @param params - optional download params
|
|
367
|
+
* @param filter - optional row range lookup filter
|
|
368
|
+
*/
|
|
369
|
+
downloadDataAs(type: 'csv' | 'json' | 'html', fileName: string, params?: DownloadOptions, filter?: RowRangeLookup): void;
|
|
370
|
+
private fontFaceDestroy;
|
|
371
|
+
private insertFontFace;
|
|
372
|
+
private destroyFontFace;
|
|
373
|
+
}
|
|
374
|
+
export declare const gridTabulatorShadowOptions: ShadowRootInit;
|
|
375
|
+
export declare const defaultGridTabulatorConfig: {
|
|
376
|
+
shadowOptions: any;
|
|
377
|
+
};
|
|
378
|
+
/**
|
|
379
|
+
* The Foundation GridTabulator
|
|
380
|
+
*
|
|
381
|
+
* @alpha
|
|
382
|
+
* @remarks
|
|
383
|
+
* HTML Element: \<grid-tabulator\>
|
|
384
|
+
*/
|
|
385
|
+
export declare const foundationGridTabulator: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
386
|
+
shadowOptions: any;
|
|
387
|
+
baseName: string;
|
|
388
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
389
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
390
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
391
|
+
shadowOptions: any;
|
|
392
|
+
baseName: string;
|
|
393
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
394
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
395
|
+
}, typeof GridTabulator>;
|
|
396
|
+
export {};
|
|
397
|
+
//# sourceMappingURL=grid-tabulator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-tabulator.d.ts","sourceRoot":"","sources":["../../src/grid-tabulator.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAE/D,OAAO,EACL,eAAe,EACf,YAAY,EACZ,OAAO,EACP,cAAc,EACd,aAAa,IAAI,SAAS,EAC3B,MAAM,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiB1B;;;GAGG;AACH,qBAAa,aAAc,SAAQ,kBAAiC;IACtD,IAAI,EAAE,SAAS,GAAG,SAAS,CAAC;IAC5B,OAAO,EAAE,cAAc,CAAC;IAExB,YAAY,SAAgC;IAC5C,UAAU,EAAE,MAAM,CAAC;IAG/B,sBAAsB,EAAE,OAAO,CAAS;IAEwB,mBAAmB,EAAE,OAAO,CACpF;IAEyC,qBAAqB,EAAE,MAAM,CAAC;IAEzE,SAAS,EAAE,MAAM,CAAoB;IAErC,KAAK,EAAE,MAAM,CAAY;IAC/B,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAY/C,OAAO,CAAC,oBAAoB,CAAS;IAOrC,iBAAiB,IAAI,IAAI;IAOzB,oBAAoB,IAAI,IAAI;IAO5B,IAAI,WAAW,CAAC,OAAO,EAAE,OAAO,EAyB/B;IAED,IAAI,uBAAuB,IAAI,OAAO,CAKrC;IAED,aAAa;IAcb,gBAAgB;IAoBhB;;;;;;;OAOG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,YAAY;IAItF;;;;;;;;;OASG;IACH,cAAc,CACZ,IAAI,EAAE,KAAK,GAAG,MAAM,GAAG,MAAM,EAC7B,QAAQ,EAAE,MAAM,EAChB,MAAM,CAAC,EAAE,eAAe,EACxB,MAAM,CAAC,EAAE,cAAc;IAKzB,OAAO,CAAC,eAAe,CAAa;IAEpC,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,eAAe;CAMxB;AAGD,eAAO,MAAM,0BAA0B,EAAE,cAA0B,CAAC;AAEpE,eAAO,MAAM,0BAA0B;;CAEtC,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;wBAMlC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare function getFilterByFieldType(type: string): any;
|
|
2
|
+
export declare function getColumnType(metadataType: string): any;
|
|
3
|
+
export declare function getFilterParamsByFieldType(type: string): any;
|
|
4
|
+
export declare function dateValueFormatter({ value }: any): any;
|
|
5
|
+
export declare function dateTimeValueFormatter({ value }: any): any;
|
|
6
|
+
export declare function formatDateExtra(epoch: number): string;
|
|
7
|
+
//# sourceMappingURL=grid-tabulator.definitions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-tabulator.definitions.d.ts","sourceRoot":"","sources":["../../src/grid-tabulator.definitions.ts"],"names":[],"mappings":"AAEA,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,GAAG,CActD;AAED,wBAAgB,aAAa,CAAC,YAAY,EAAE,MAAM,GAAG,GAAG,CASvD;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,MAAM,GAAG,GAAG,CAwC5D;AAED,wBAAgB,kBAAkB,CAAC,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,GAAG,CAEtD;AAED,wBAAgB,sBAAsB,CAAC,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,GAAG,CAE1D;AAID,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAMrD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-tabulator.styles.d.ts","sourceRoot":"","sources":["../../src/grid-tabulator.styles.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAG7D,eAAO,MAAM,mBAAmB,EAAE,aAWjC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-tabulator.template.d.ts","sourceRoot":"","sources":["../../src/grid-tabulator.template.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAG5D,eAAO,MAAM,qBAAqB,EAAE,YAInC,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CSSVarTokenMap } from '@genesislcap/foundation-ui';
|
|
2
|
+
/**
|
|
3
|
+
* All official Tabulator CSS variables
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export declare enum GridCSSVars {
|
|
7
|
+
}
|
|
8
|
+
export declare enum GridTabulatorTheme {
|
|
9
|
+
default = "default-theme",
|
|
10
|
+
rapid = "rapid-theme"
|
|
11
|
+
}
|
|
12
|
+
export declare const themeTokenMapClassname: (themeName: string) => string;
|
|
13
|
+
export declare const themeFontsId: (themeName: string) => string;
|
|
14
|
+
export declare const themeTokenMapCSS: (themeName: string, tokenMap: CSSVarTokenMap<any>) => import("@microsoft/fast-element").ElementStyles;
|
|
15
|
+
/**
|
|
16
|
+
* The available Grid Pro Renderer Types
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare enum GridTabulatorCellRendererTypes {
|
|
20
|
+
action = "action",
|
|
21
|
+
actionsMenu = "actionsMenu",
|
|
22
|
+
boolean = "boolean",
|
|
23
|
+
text = "text",
|
|
24
|
+
select = "select"
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=grid-tabulator.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-tabulator.types.d.ts","sourceRoot":"","sources":["../../src/grid-tabulator.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAGhF;;;GAGG;AACH,oBAAY,WAAW;CAAG;AA8C1B,oBAAY,kBAAkB;IAC5B,OAAO,kBAAkB;IACzB,KAAK,gBAAgB;CACtB;AAED,eAAO,MAAM,sBAAsB,cAAe,MAAM,WAA6B,CAAC;AACtF,eAAO,MAAM,YAAY,cAAe,MAAM,WAAyB,CAAC;AAExE,eAAO,MAAM,gBAAgB,cAAe,MAAM,YAAY,eAAe,GAAG,CAAC,oDAIhF,CAAC;AAEF;;;GAGG;AACH,oBAAY,8BAA8B;IACxC,MAAM,WAAW;IACjB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,MAAM,WAAW;CAClB"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from './grid-tabulator.definitions';
|
|
2
|
+
export * from './grid-tabulator.styles';
|
|
3
|
+
export * from './grid-tabulator.template';
|
|
4
|
+
export * from './grid-tabulator.types';
|
|
5
|
+
export * from './grid-tabulator';
|
|
6
|
+
export * from './external';
|
|
7
|
+
export * from './style';
|
|
8
|
+
export * from './cell';
|
|
9
|
+
export * from './cell-renderers';
|
|
10
|
+
export * from './column';
|
|
11
|
+
export * from './datasource';
|
|
12
|
+
export * from './grid-tabulator.components';
|
|
13
|
+
export * from './utils';
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AAExB,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC;AACjC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAE7B,cAAc,6BAA6B,CAAC;AAE5C,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.federated.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.federated.d.ts","sourceRoot":"","sources":["../../src/index.federated.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../src/style/colors.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/style/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../src/style/tokens.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/utils/logger.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,iDAAiC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|