@genesislcap/g2plot-chart 15.6.0 → 15.6.1-ts7-migration.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.
@@ -1 +1 @@
1
- {"version":3,"file":"chart-datasource.config.d.ts","sourceRoot":"","sources":["../../../src/chart-datasource/chart-datasource.config.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,yBAAyB;;CAErC,CAAC"}
1
+ {"version":3,"file":"chart-datasource.config.d.ts","sourceRoot":"","sources":["../../../src/chart-datasource/chart-datasource.config.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,yBAAyB;IACpC,KAAK;CACN,CAAC"}
@@ -29,381 +29,7 @@ declare class ConcreteDatasource extends BaseDatasource {
29
29
  handleStreamDeletes(deletedRows: any[]): void;
30
30
  handleStreamUpdates(updatedRows: any[]): void;
31
31
  }
32
- declare const ChartDatasource_base: (new (...args: any[]) => {
33
- #_container: import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
34
- #_latestTokenCode: string;
35
- #_hasFirstLoaded: boolean;
36
- #_cleanupTimeout: NodeJS.Timeout;
37
- #_shouldForceLifecycle: boolean;
38
- #_blockedDisconnectSurvivedGracePeriod: boolean;
39
- cloneNode(deep?: boolean): Node;
40
- deepClone(): Node;
41
- get shouldRunDisconnect(): boolean;
42
- get shouldRunConnect(): boolean;
43
- #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
44
- #_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
45
- connectedCallback(): void;
46
- readonly $fastController: import("@microsoft/fast-element").Controller;
47
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
48
- disconnectedCallback(): void;
49
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
50
- accessKey: string;
51
- readonly accessKeyLabel: string;
52
- autocapitalize: string;
53
- autocorrect: boolean;
54
- dir: string;
55
- draggable: boolean;
56
- hidden: boolean;
57
- inert: boolean;
58
- innerText: string;
59
- lang: string;
60
- readonly offsetHeight: number;
61
- readonly offsetLeft: number;
62
- readonly offsetParent: Element | null;
63
- readonly offsetTop: number;
64
- readonly offsetWidth: number;
65
- outerText: string;
66
- popover: string | null;
67
- spellcheck: boolean;
68
- title: string;
69
- translate: boolean;
70
- writingSuggestions: string;
71
- attachInternals(): ElementInternals;
72
- click(): void;
73
- hidePopover(): void;
74
- showPopover(): void;
75
- togglePopover(options?: boolean): boolean;
76
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options
77
- /**
78
- * Name of the backend resource which contain the data.
79
- * @public
80
- */
81
- ? /**
82
- * Name of the backend resource which contain the data.
83
- * @public
84
- */: boolean | AddEventListenerOptions): void;
85
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
86
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
87
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
88
- readonly attributes: NamedNodeMap;
89
- get classList(): DOMTokenList;
90
- set classList(value: string): any;
91
- className: string;
92
- readonly clientHeight: number;
93
- readonly clientLeft: number;
94
- readonly clientTop: number;
95
- readonly clientWidth: number;
96
- readonly currentCSSZoom: number;
97
- id: string;
98
- innerHTML: string;
99
- readonly localName: string;
100
- readonly namespaceURI: string | null;
101
- onfullscreenchange: (this: Element, ev: Event) => any;
102
- onfullscreenerror: (this: Element, ev: Event) => any;
103
- outerHTML: string;
104
- readonly ownerDocument: Document;
105
- get part(): DOMTokenList;
106
- set part(value: string): any;
107
- readonly prefix: string | null;
108
- readonly scrollHeight: number;
109
- scrollLeft: number;
110
- scrollTop: number;
111
- readonly scrollWidth: number;
112
- readonly shadowRoot: ShadowRoot | null;
113
- slot: string;
114
- readonly tagName: string;
115
- attachShadow(init: ShadowRootInit): ShadowRoot;
116
- checkVisibility(options?: CheckVisibilityOptions): boolean;
117
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
118
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
119
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
120
- closest<E extends Element = Element>(selectors: string): E;
121
- computedStyleMap(): StylePropertyMapReadOnly;
122
- getAttribute(qualifiedName: string): string | null;
123
- getAttributeNS(namespace: string | null, localName: string): string | null;
124
- getAttributeNames(): string[];
125
- getAttributeNode(qualifiedName: string): Attr | null;
126
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
127
- getBoundingClientRect(): DOMRect;
128
- getClientRects(): DOMRectList;
129
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
130
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
131
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
132
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
133
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
134
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
135
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
136
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
137
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
138
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
139
- getHTML(options?: GetHTMLOptions): string;
140
- hasAttribute(qualifiedName: string): boolean;
141
- hasAttributeNS(namespace: string | null, localName: string): boolean;
142
- hasAttributes(): boolean;
143
- hasPointerCapture(pointerId: number): boolean;
144
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
145
- insertAdjacentHTML(position: InsertPosition, string: string): void;
146
- insertAdjacentText(where: InsertPosition, data: string): void;
147
- matches(selectors: string): boolean;
148
- releasePointerCapture(pointerId: number): void;
149
- removeAttribute(qualifiedName: string): void;
150
- removeAttributeNS(namespace: string | null, localName: string): void;
151
- removeAttributeNode(attr: Attr): Attr;
152
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
153
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
154
- scroll(options?: ScrollToOptions): void;
155
- scroll(x: number, y: number): void;
156
- scrollBy(options?: ScrollToOptions): void;
157
- scrollBy(x: number, y: number): void;
158
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
159
- scrollTo(options?: ScrollToOptions): void;
160
- scrollTo(x: number, y: number): void;
161
- setAttribute(qualifiedName: string, value: string): void;
162
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
163
- setAttributeNode(attr: Attr): Attr | null;
164
- setAttributeNodeNS(attr: Attr): Attr | null;
165
- setHTMLUnsafe(html: string): void;
166
- setPointerCapture(pointerId: number): void;
167
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
168
- webkitMatchesSelector(selectors: string): boolean;
169
- textContent: string;
170
- readonly baseURI: string;
171
- readonly childNodes: NodeListOf<ChildNode>;
172
- readonly firstChild: ChildNode | null;
173
- readonly isConnected: boolean;
174
- readonly lastChild: ChildNode | null;
175
- readonly nextSibling: ChildNode | null;
176
- readonly nodeName: string;
177
- readonly nodeType: number;
178
- nodeValue: string | null;
179
- readonly parentElement: HTMLElement | null;
180
- readonly parentNode: ParentNode | null;
181
- readonly previousSibling: ChildNode | null;
182
- appendChild<T_1 extends Node>(node: T_1): T_1;
183
- compareDocumentPosition(other: Node): number;
184
- contains(other: Node | null): boolean;
185
- getRootNode(options?: GetRootNodeOptions): Node;
186
- hasChildNodes(): boolean;
187
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
188
- isDefaultNamespace(namespace: string | null): boolean;
189
- isEqualNode(otherNode: Node | null): boolean;
190
- isSameNode(otherNode: Node | null): boolean;
191
- lookupNamespaceURI(prefix: string | null): string | null;
192
- lookupPrefix(namespace: string | null): string | null;
193
- normalize(): void;
194
- removeChild<T_1 extends Node>(child: T_1): T_1;
195
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
196
- readonly ELEMENT_NODE: 1;
197
- readonly ATTRIBUTE_NODE: 2;
198
- readonly TEXT_NODE: 3;
199
- readonly CDATA_SECTION_NODE: 4;
200
- readonly ENTITY_REFERENCE_NODE: 5;
201
- readonly ENTITY_NODE: 6;
202
- readonly PROCESSING_INSTRUCTION_NODE: 7;
203
- readonly COMMENT_NODE: 8;
204
- readonly DOCUMENT_NODE: 9;
205
- readonly DOCUMENT_TYPE_NODE: 10;
206
- readonly DOCUMENT_FRAGMENT_NODE: 11;
207
- readonly NOTATION_NODE: 12;
208
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
209
- readonly DOCUMENT_POSITION_PRECEDING: 2;
210
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
211
- readonly DOCUMENT_POSITION_CONTAINS: 8;
212
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
213
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
214
- dispatchEvent(event: Event): boolean;
215
- ariaActiveDescendantElement: Element | null;
216
- ariaAtomic: string | null;
217
- ariaAutoComplete: string | null;
218
- ariaBrailleLabel: string | null;
219
- ariaBrailleRoleDescription: string | null;
220
- ariaBusy: string | null;
221
- ariaChecked: string | null;
222
- ariaColCount: string | null;
223
- ariaColIndex: string | null;
224
- ariaColIndexText: string | null;
225
- ariaColSpan: string | null;
226
- ariaControlsElements: ReadonlyArray<Element> | null;
227
- ariaCurrent: string | null;
228
- ariaDescribedByElements: ReadonlyArray<Element> | null;
229
- ariaDescription: string | null;
230
- ariaDetailsElements: ReadonlyArray<Element> | null;
231
- ariaDisabled: string | null;
232
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
233
- ariaExpanded: string | null;
234
- ariaFlowToElements: ReadonlyArray<Element> | null;
235
- ariaHasPopup: string | null;
236
- ariaHidden: string | null;
237
- ariaInvalid: string | null;
238
- ariaKeyShortcuts: string | null;
239
- ariaLabel: string | null;
240
- ariaLabelledByElements: ReadonlyArray<Element> | null;
241
- ariaLevel: string | null;
242
- ariaLive: string | null;
243
- ariaModal: string | null;
244
- ariaMultiLine: string | null;
245
- ariaMultiSelectable: string | null;
246
- ariaOrientation: string | null;
247
- ariaOwnsElements: ReadonlyArray<Element> | null;
248
- ariaPlaceholder: string | null;
249
- ariaPosInSet: string | null;
250
- ariaPressed: string | null;
251
- ariaReadOnly: string | null;
252
- ariaRelevant: string | null;
253
- ariaRequired: string | null;
254
- ariaRoleDescription: string | null;
255
- ariaRowCount: string | null;
256
- ariaRowIndex: string | null;
257
- ariaRowIndexText: string | null;
258
- ariaRowSpan: string | null;
259
- ariaSelected: string | null;
260
- ariaSetSize: string | null;
261
- ariaSort: string | null;
262
- ariaValueMax: string | null;
263
- ariaValueMin: string | null;
264
- ariaValueNow: string | null;
265
- ariaValueText: string | null;
266
- role: string | null;
267
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
268
- getAnimations(options?: GetAnimationsOptions): Animation[];
269
- after(...nodes: (Node | string)[]): void;
270
- before(...nodes: (Node | string)[]): void;
271
- remove(): void;
272
- replaceWith(...nodes: (Node | string)[]): void;
273
- readonly nextElementSibling: Element | null;
274
- readonly previousElementSibling: Element | null;
275
- readonly childElementCount: number;
276
- readonly children: HTMLCollection;
277
- readonly firstElementChild: Element | null;
278
- readonly lastElementChild: Element | null;
279
- append(...nodes: (Node | string)[]): void;
280
- prepend(...nodes: (Node | string)[]): void;
281
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
282
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
283
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
284
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
285
- querySelector<E extends Element = Element>(selectors: string): E | null;
286
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
287
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
288
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
289
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
290
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
291
- replaceChildren(...nodes: (Node | string)[]): void;
292
- readonly assignedSlot: HTMLSlotElement | null;
293
- readonly attributeStyleMap: StylePropertyMap;
294
- get style(): CSSStyleDeclaration;
295
- set style(cssText: string): any;
296
- contentEditable: string;
297
- enterKeyHint: string;
298
- inputMode: string;
299
- readonly isContentEditable: boolean;
300
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
301
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
302
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
303
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
304
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
305
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
306
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
307
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
308
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
309
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
310
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
311
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
312
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
313
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
314
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
315
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
316
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
317
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
318
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
319
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
320
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
322
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
323
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
324
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
325
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
326
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
327
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
328
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
329
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
330
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
331
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
332
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
- onerror: OnErrorEventHandler;
334
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
335
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
336
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
337
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
339
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
340
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
341
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
342
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
344
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
345
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
347
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
348
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
349
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
350
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
351
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
352
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
353
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
354
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
355
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
356
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
357
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
358
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
359
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
360
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
361
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
362
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
363
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
364
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
365
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
366
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
367
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
368
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
369
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
370
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
371
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
372
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
373
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
374
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
375
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
376
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
377
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
378
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
379
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
380
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
381
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
382
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
383
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
384
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
385
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
386
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
387
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
388
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
389
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
390
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
391
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
392
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
393
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
394
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
395
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
396
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
397
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
398
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
399
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
400
- autofocus: boolean;
401
- readonly dataset: DOMStringMap;
402
- nonce?: string;
403
- tabIndex: number;
404
- blur(): void;
405
- focus(options?: FocusOptions): void;
406
- }) & typeof ConcreteDatasource;
32
+ declare const ChartDatasource_base: typeof ConcreteDatasource & import("@microsoft/fast-element").Constructable<import("@genesislcap/foundation-utils").LifecycleMixinInstance>;
407
33
  /**
408
34
  * The Genesis Datasource for the `g2plot-chart` component.
409
35
  * @public
@@ -1 +1 @@
1
- {"version":3,"file":"chart-datasource.d.ts","sourceRoot":"","sources":["../../../src/chart-datasource/chart-datasource.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"chart-datasource.d.ts","sourceRoot":"","sources":["../../../src/chart-datasource/chart-datasource.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAElF,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,4BAA4B,CAAC;AACrF,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAI5D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAY5C;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,kBAAkB,CAAC;AAElD;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,WAAW,CAAC;AAQhD,cAAM,kBAAmB,SAAQ,cAAc;IAC7C,SAAS,CAAC,KAAK,EAAE,WAAW,CAAC;IAC7B,SAAS,CAAC,qBAAqB,EAAE,MAAM,EAAE,CAAC;IAC1C,SAAS,CAAC,yBAAyB,EAAE,GAAG,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;IAChE,SAAS,CAAC,gBAAgB,EAAE,MAAM,CAAC;IACnC,SAAS,CAAC,qBAAqB,EAAE,MAAM,EAAE,CAAC;IAC1C,SAAS,CAAC,iBAAiB,UAAS;IACpC,SAAS,CAAC,OAAO,UAAQ;IAEzB,IAAI,sBAAsB,IAAI,MAAM,CAEnC;IAID,SAAS,SAIR;IAED,iBAAiB,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,QAwCrC;IAED,mBAAmB,CAAC,YAAY,EAAE,GAAG,EAAE,QAMtC;IAED,mBAAmB,CAAC,WAAW,EAAE,GAAG,EAAE,QAMrC;IAED,mBAAmB,CAAC,WAAW,EAAE,GAAG,EAAE,QASrC;CACF;;AAED;;;;;GAKG;AACH,qBAGa,eAAgB,SAAQ,oBAAkC;IACrE;;;;;;;;OAQG;IACkC,WAAW,EAAE,MAAM,CAAsB;IAE9E;;;;;;;;OAQG;IACmC,YAAY,EAAE,MAAM,CAAC;IAE3D;;;OAGG;IAC+C,OAAO,UAAS;IAClE;;;OAGG;IAC+C,OAAO,UAAS;IAElE;;;OAGG;IACwB,OAAO,UAAQ;IAE1C;;;;;;OAMG;IAC0D,iBAAiB,UAAS;IAEvF;;;OAGG;IACgE,uBAAuB,UAAQ;IAElG;;;OAGG;IACG,YAAY,EAAE,MAAM,CAAC;IAE3B;;;;OAIG;IACG,QAAQ,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACS,IAAI,EAAE,GAAG,EAAE,CAAC;IAExB;;;OAGG;IACwB,UAAU,EAAE,OAAO,CAAS;IAEvD;;;;;OAKG;IACG,OAAO,EAAE,MAAM,CAAmC;IAExD;;OAEG;IACG,OAAO,EAAE,MAAM,CAAoC;IAEzD;;;;;OAKG;IACG,OAAO,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,OAAO,EAAE,GAAG,CAAC;IAEb;;;;;OAKG;IACwB,OAAO,EAAE,OAAO,CAAS;IAEpD;;;;;OAKG;IACG,KAAK,EAAE,MAAM,CAAC;IAEpB,OAAO,CAAC,aAAa,CAA2B;IAEhD;;OAEG;IACH,iBAAiB,SAMhB;YAEa,YAAY;IAuC1B,OAAO,CAAC,qBAAqB;IAU7B,OAAO,CAAC,yBAAyB;IAKjC;;OAEG;IACH,WAAW,CAAC,MAAM,EAAE,kCAAkC,GAAG,IAAI,CAU5D;IAED;;OAEG;IACM,oBAAoB,IAAI,IAAI,CAIpC;IAID;;OAEG;IACa,gBAAgB,CAAC,YAAY,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAGtE;IAED,OAAO,CAAC,kBAAkB;IAuC1B,OAAO,CAAC,gCAAgC;IAiBxC;;OAEG;IACH,IAAI,oBAAoB,IAAI,OAAO,CAElC;IAED;;OAEG;IACH,IAAI,mBAAmB,IAAI,OAAO,CAEjC;IAED,OAAO,CAAC,uBAAuB;CAOhC"}
@@ -1 +1 @@
1
- {"version":3,"file":"chart-datasource.utils.d.ts","sourceRoot":"","sources":["../../../src/chart-datasource/chart-datasource.utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAG9D,eAAO,MAAM,aAAa,GAAI,WAAM,KAA4C,MAAM,EAAE,CAAC;AAEzF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,uBAAuB,GAAI,YAAY,GAAG,EAAE,YAAY,aAAa,QAOjF,CAAC;AAEF,eAAO,MAAM,uBAAuB,GAClC,mBAAmB,GAAG,EACtB,WAAW,aAAa,EACxB,WAAW,OAAO,QAOnB,CAAC;AAEF,eAAO,MAAM,UAAU,GACrB,SAAS,GAAG,EAAE,EACd,cAAc,MAAM,EACpB,YAAY,MAAM,EAClB,cAAc,MAAM,KACnB,GAAG,EAaL,CAAC"}
1
+ {"version":3,"file":"chart-datasource.utils.d.ts","sourceRoot":"","sources":["../../../src/chart-datasource/chart-datasource.utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAG9D,eAAO,MAAM,aAAa,mBAAsD,MAAM,EAAE,CAAC;AAEzF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,uBAAuB,eAAgB,GAAG,cAAc,aAAa,QAOjF,CAAC;AAEF,eAAO,MAAM,uBAAuB,sBACf,GAAG,aACX,aAAa,aACb,OAAO,QAOnB,CAAC;AAEF,eAAO,MAAM,UAAU,YACZ,GAAG,EAAE,gBACA,MAAM,cACR,MAAM,gBACJ,MAAM,KACnB,GAAG,EAaL,CAAC"}