@genesislcap/grid-tabulator 14.107.0 → 14.107.1-alpha-afbc4d7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
import { Auth, Connect, Datasource } from '@genesislcap/foundation-comms';
|
|
2
3
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
3
4
|
import { Options } from 'tabulator-tables';
|
|
@@ -18,9 +19,6 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
18
19
|
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
|
19
20
|
"__#1@#_shouldForceLifecycle": boolean;
|
|
20
21
|
cloneNode(deep?: boolean): Node;
|
|
21
|
-
/**
|
|
22
|
-
* Allows grid data updates to be processed via and external function before applying in grid
|
|
23
|
-
*/
|
|
24
22
|
deepClone(): Node;
|
|
25
23
|
readonly shouldRunDisconnect: boolean;
|
|
26
24
|
readonly shouldRunConnect: boolean;
|
|
@@ -38,7 +36,11 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
38
36
|
draggable: boolean;
|
|
39
37
|
hidden: boolean;
|
|
40
38
|
inert: boolean;
|
|
41
|
-
innerText: string;
|
|
39
|
+
innerText: string; /**
|
|
40
|
+
* Initializes the datasource.
|
|
41
|
+
* @public
|
|
42
|
+
* @remarks This method is called automatically when the element is connected to the DOM.
|
|
43
|
+
*/
|
|
42
44
|
lang: string;
|
|
43
45
|
readonly offsetHeight: number;
|
|
44
46
|
readonly offsetLeft: number;
|
|
@@ -79,8 +81,10 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
79
81
|
slot: string;
|
|
80
82
|
readonly tagName: string;
|
|
81
83
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
84
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
82
85
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
83
86
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
87
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
84
88
|
closest<E extends Element = Element>(selectors: string): E;
|
|
85
89
|
getAttribute(qualifiedName: string): string;
|
|
86
90
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -90,11 +94,14 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
90
94
|
getBoundingClientRect(): DOMRect;
|
|
91
95
|
getClientRects(): DOMRectList;
|
|
92
96
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
93
|
-
getElementsByTagName<
|
|
94
|
-
getElementsByTagName<
|
|
97
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
98
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
99
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
100
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
95
101
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
96
102
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
97
103
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
104
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
98
105
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
99
106
|
hasAttribute(qualifiedName: string): boolean;
|
|
100
107
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -151,24 +158,24 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
151
158
|
normalize(): void;
|
|
152
159
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
153
160
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
154
|
-
readonly
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
158
|
-
readonly
|
|
159
|
-
readonly
|
|
160
|
-
readonly
|
|
161
|
-
readonly
|
|
162
|
-
readonly
|
|
163
|
-
readonly
|
|
164
|
-
readonly
|
|
165
|
-
readonly
|
|
166
|
-
readonly
|
|
167
|
-
readonly
|
|
168
|
-
readonly
|
|
169
|
-
readonly
|
|
170
|
-
readonly
|
|
171
|
-
readonly
|
|
161
|
+
readonly ELEMENT_NODE: 1;
|
|
162
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
163
|
+
readonly TEXT_NODE: 3;
|
|
164
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
165
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
166
|
+
readonly ENTITY_NODE: 6;
|
|
167
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
168
|
+
readonly COMMENT_NODE: 8;
|
|
169
|
+
readonly DOCUMENT_NODE: 9;
|
|
170
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
171
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
172
|
+
readonly NOTATION_NODE: 12;
|
|
173
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
174
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
175
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
176
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
177
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
178
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
172
179
|
dispatchEvent(event: Event): boolean;
|
|
173
180
|
ariaAtomic: string;
|
|
174
181
|
ariaAutoComplete: string;
|
|
@@ -176,7 +183,6 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
176
183
|
ariaChecked: string;
|
|
177
184
|
ariaColCount: string;
|
|
178
185
|
ariaColIndex: string;
|
|
179
|
-
ariaColIndexText: string;
|
|
180
186
|
ariaColSpan: string;
|
|
181
187
|
ariaCurrent: string;
|
|
182
188
|
ariaDisabled: string;
|
|
@@ -200,7 +206,6 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
200
206
|
ariaRoleDescription: string;
|
|
201
207
|
ariaRowCount: string;
|
|
202
208
|
ariaRowIndex: string;
|
|
203
|
-
ariaRowIndexText: string;
|
|
204
209
|
ariaRowSpan: string;
|
|
205
210
|
ariaSelected: string;
|
|
206
211
|
ariaSetSize: string;
|
|
@@ -225,17 +230,18 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
225
230
|
readonly lastElementChild: Element;
|
|
226
231
|
append(...nodes: (string | Node)[]): void;
|
|
227
232
|
prepend(...nodes: (string | Node)[]): void;
|
|
228
|
-
querySelector<
|
|
229
|
-
querySelector<
|
|
233
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
234
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
235
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
236
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
230
237
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
231
|
-
querySelectorAll<
|
|
232
|
-
querySelectorAll<
|
|
238
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
239
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
240
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
241
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
233
242
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
234
243
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
235
244
|
readonly assignedSlot: HTMLSlotElement;
|
|
236
|
-
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
237
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
238
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
239
245
|
readonly style: CSSStyleDeclaration;
|
|
240
246
|
contentEditable: string;
|
|
241
247
|
enterKeyHint: string;
|
|
@@ -256,7 +262,9 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
256
262
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
257
263
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
258
264
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
265
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
259
266
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
267
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
260
268
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
261
269
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
262
270
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -289,6 +297,7 @@ declare const GridTabulatorClientSideDatasource_base: (new (...args: any[]) => {
|
|
|
289
297
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
290
298
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
291
299
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
300
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
292
301
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
293
302
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
294
303
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-side.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/client-side.datasource.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,IAAI,EACJ,OAAO,EAEP,UAAU,EAUX,MAAM,+BAA+B,CAAC;AAGvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAG/D,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAW3C,MAAM,WAAW,kBAAkB,CAAC,KAAK,GAAG,GAAG;IAC7C,wBAAwB;IACxB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,kBAAkB;IAClB,GAAG,CAAC,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC;IACrB,qBAAqB;IACrB,MAAM,CAAC,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC;IACxB,qBAAqB;IACrB,MAAM,CAAC,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC;CACzB
|
|
1
|
+
{"version":3,"file":"client-side.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/client-side.datasource.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
3
|
import { DownloadOptions, FilterParams, Options, RowRangeLookup, TabulatorFull as Tabulator } from 'tabulator-tables';
|
|
3
4
|
declare const GridTabulator_base: (new (...args: any[]) => {
|
|
@@ -65,8 +66,10 @@ declare const GridTabulator_base: (new (...args: any[]) => {
|
|
|
65
66
|
slot: string;
|
|
66
67
|
readonly tagName: string;
|
|
67
68
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
69
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
68
70
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
69
71
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
72
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
70
73
|
closest<E extends Element = Element>(selectors: string): E;
|
|
71
74
|
getAttribute(qualifiedName: string): string;
|
|
72
75
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -76,11 +79,14 @@ declare const GridTabulator_base: (new (...args: any[]) => {
|
|
|
76
79
|
getBoundingClientRect(): DOMRect;
|
|
77
80
|
getClientRects(): DOMRectList;
|
|
78
81
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
79
|
-
getElementsByTagName<
|
|
80
|
-
getElementsByTagName<
|
|
82
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
83
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
84
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
85
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
81
86
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
82
87
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
83
88
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
89
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
84
90
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
85
91
|
hasAttribute(qualifiedName: string): boolean;
|
|
86
92
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -137,24 +143,24 @@ declare const GridTabulator_base: (new (...args: any[]) => {
|
|
|
137
143
|
normalize(): void;
|
|
138
144
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
139
145
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
140
|
-
readonly
|
|
141
|
-
readonly
|
|
142
|
-
readonly
|
|
143
|
-
readonly
|
|
144
|
-
readonly
|
|
145
|
-
readonly
|
|
146
|
-
readonly
|
|
147
|
-
readonly
|
|
148
|
-
readonly
|
|
149
|
-
readonly
|
|
150
|
-
readonly
|
|
151
|
-
readonly
|
|
152
|
-
readonly
|
|
153
|
-
readonly
|
|
154
|
-
readonly
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
146
|
+
readonly ELEMENT_NODE: 1;
|
|
147
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
148
|
+
readonly TEXT_NODE: 3;
|
|
149
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
150
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
151
|
+
readonly ENTITY_NODE: 6;
|
|
152
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
153
|
+
readonly COMMENT_NODE: 8;
|
|
154
|
+
readonly DOCUMENT_NODE: 9;
|
|
155
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
156
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
157
|
+
readonly NOTATION_NODE: 12;
|
|
158
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
159
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
160
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
161
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
162
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
163
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
158
164
|
dispatchEvent(event: Event): boolean;
|
|
159
165
|
ariaAtomic: string;
|
|
160
166
|
ariaAutoComplete: string;
|
|
@@ -162,7 +168,6 @@ declare const GridTabulator_base: (new (...args: any[]) => {
|
|
|
162
168
|
ariaChecked: string;
|
|
163
169
|
ariaColCount: string;
|
|
164
170
|
ariaColIndex: string;
|
|
165
|
-
ariaColIndexText: string;
|
|
166
171
|
ariaColSpan: string;
|
|
167
172
|
ariaCurrent: string;
|
|
168
173
|
ariaDisabled: string;
|
|
@@ -186,7 +191,6 @@ declare const GridTabulator_base: (new (...args: any[]) => {
|
|
|
186
191
|
ariaRoleDescription: string;
|
|
187
192
|
ariaRowCount: string;
|
|
188
193
|
ariaRowIndex: string;
|
|
189
|
-
ariaRowIndexText: string;
|
|
190
194
|
ariaRowSpan: string;
|
|
191
195
|
ariaSelected: string;
|
|
192
196
|
ariaSetSize: string;
|
|
@@ -211,17 +215,18 @@ declare const GridTabulator_base: (new (...args: any[]) => {
|
|
|
211
215
|
readonly lastElementChild: Element;
|
|
212
216
|
append(...nodes: (string | Node)[]): void;
|
|
213
217
|
prepend(...nodes: (string | Node)[]): void;
|
|
214
|
-
querySelector<
|
|
215
|
-
querySelector<
|
|
218
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
219
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
220
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
221
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
216
222
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
217
|
-
querySelectorAll<
|
|
218
|
-
querySelectorAll<
|
|
223
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
224
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
225
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
226
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
219
227
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
220
228
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
221
229
|
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
230
|
readonly style: CSSStyleDeclaration;
|
|
226
231
|
contentEditable: string;
|
|
227
232
|
enterKeyHint: string;
|
|
@@ -242,7 +247,9 @@ declare const GridTabulator_base: (new (...args: any[]) => {
|
|
|
242
247
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
243
248
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
244
249
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
250
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
245
251
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
252
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
246
253
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
247
254
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
248
255
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -275,6 +282,7 @@ declare const GridTabulator_base: (new (...args: any[]) => {
|
|
|
275
282
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
276
283
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
277
284
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
285
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
278
286
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
279
287
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
280
288
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +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
|
|
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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/grid-tabulator",
|
|
3
3
|
"description": "Genesis Foundation Grid Tabulator",
|
|
4
|
-
"version": "14.107.0",
|
|
4
|
+
"version": "14.107.1-alpha-afbc4d7.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"test:debug": "genx test --debug"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@genesislcap/foundation-testing": "14.107.0",
|
|
35
|
-
"@genesislcap/genx": "14.107.0",
|
|
34
|
+
"@genesislcap/foundation-testing": "14.107.1-alpha-afbc4d7.0",
|
|
35
|
+
"@genesislcap/genx": "14.107.1-alpha-afbc4d7.0",
|
|
36
36
|
"@types/tabulator-tables": "^5.5.2",
|
|
37
37
|
"rimraf": "^3.0.2"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@genesislcap/foundation-comms": "14.107.0",
|
|
41
|
-
"@genesislcap/foundation-logger": "14.107.0",
|
|
42
|
-
"@genesislcap/foundation-ui": "14.107.0",
|
|
43
|
-
"@genesislcap/foundation-utils": "14.107.0",
|
|
40
|
+
"@genesislcap/foundation-comms": "14.107.1-alpha-afbc4d7.0",
|
|
41
|
+
"@genesislcap/foundation-logger": "14.107.1-alpha-afbc4d7.0",
|
|
42
|
+
"@genesislcap/foundation-ui": "14.107.1-alpha-afbc4d7.0",
|
|
43
|
+
"@genesislcap/foundation-utils": "14.107.1-alpha-afbc4d7.0",
|
|
44
44
|
"@microsoft/fast-colors": "^5.1.4",
|
|
45
45
|
"@microsoft/fast-components": "^2.21.3",
|
|
46
46
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
61
|
"customElements": "dist/custom-elements.json",
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "bb64624e9bb6cea2cad088305e8c82d088f20da4"
|
|
63
63
|
}
|