@genesislcap/g2plot-chart 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.
@@ -1,372 +1,6 @@
1
1
  import { FoundationElement } from '@microsoft/fast-foundation';
2
2
  import { ChartTypes, ChartErrorEvent, ChartErrorItem, ChartConfig } from './chart.types';
3
- declare const G2PlotChart_base: (new (...args: any[]) => {
4
- #_container: import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
5
- #_latestTokenCode: string;
6
- #_hasFirstLoaded: boolean;
7
- #_cleanupTimeout: NodeJS.Timeout;
8
- #_shouldForceLifecycle: boolean;
9
- #_blockedDisconnectSurvivedGracePeriod: boolean;
10
- cloneNode(deep?: boolean): Node;
11
- deepClone(): Node;
12
- get shouldRunDisconnect(): boolean;
13
- get shouldRunConnect(): boolean;
14
- #_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
15
- #_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
16
- connectedCallback(): void;
17
- readonly $fastController: import("@microsoft/fast-element").Controller;
18
- $emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
19
- disconnectedCallback(): void;
20
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
21
- accessKey: string;
22
- readonly accessKeyLabel: string;
23
- autocapitalize: string;
24
- autocorrect: boolean;
25
- dir: string;
26
- draggable: boolean;
27
- hidden: boolean;
28
- inert: boolean;
29
- innerText: string;
30
- lang: string;
31
- readonly offsetHeight: number;
32
- readonly offsetLeft: number;
33
- readonly offsetParent: Element | null;
34
- readonly offsetTop: number;
35
- readonly offsetWidth: number;
36
- outerText: string;
37
- popover: string | null;
38
- spellcheck: boolean;
39
- title: string;
40
- translate: boolean;
41
- writingSuggestions: string;
42
- attachInternals(): ElementInternals;
43
- click(): void;
44
- hidePopover(): void;
45
- showPopover(): void;
46
- togglePopover(options?: boolean): boolean;
47
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
48
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
49
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
50
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
51
- readonly attributes: NamedNodeMap;
52
- get classList(): DOMTokenList;
53
- set classList(value: string): any;
54
- className: string;
55
- readonly clientHeight: number;
56
- readonly clientLeft: number;
57
- readonly clientTop: number;
58
- readonly clientWidth: number;
59
- readonly currentCSSZoom: number;
60
- id: string;
61
- innerHTML: string;
62
- readonly localName: string;
63
- readonly namespaceURI: string | null;
64
- onfullscreenchange: (this: Element, ev: Event) => any;
65
- onfullscreenerror: (this: Element, ev: Event) => any;
66
- outerHTML: string;
67
- readonly ownerDocument: Document;
68
- get part(): DOMTokenList;
69
- set part(value: string): any;
70
- readonly prefix: string | null;
71
- readonly scrollHeight: number;
72
- scrollLeft: number;
73
- scrollTop: number;
74
- readonly scrollWidth: number;
75
- readonly shadowRoot: ShadowRoot | null;
76
- slot: string;
77
- readonly tagName: string;
78
- attachShadow(init: ShadowRootInit): ShadowRoot;
79
- checkVisibility(options?: CheckVisibilityOptions): boolean;
80
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
81
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
82
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
83
- closest<E extends Element = Element>(selectors: string): E;
84
- computedStyleMap(): StylePropertyMapReadOnly;
85
- getAttribute(qualifiedName: string): string | null;
86
- getAttributeNS(namespace: string | null, localName: string): string | null;
87
- getAttributeNames(): string[];
88
- getAttributeNode(qualifiedName: string): Attr | null;
89
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
90
- getBoundingClientRect(): DOMRect;
91
- getClientRects(): DOMRectList;
92
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
93
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
94
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
95
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
96
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
97
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
98
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
99
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
100
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
101
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
102
- getHTML(options?: GetHTMLOptions): string;
103
- hasAttribute(qualifiedName: string): boolean;
104
- hasAttributeNS(namespace: string | null, localName: string): boolean;
105
- hasAttributes(): boolean;
106
- hasPointerCapture(pointerId: number): boolean;
107
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
108
- insertAdjacentHTML(position: InsertPosition, string: string): void;
109
- insertAdjacentText(where: InsertPosition, data: string): void;
110
- matches(selectors: string): boolean;
111
- releasePointerCapture(pointerId: number): void;
112
- removeAttribute(qualifiedName: string): void;
113
- removeAttributeNS(namespace: string | null, localName: string): void;
114
- removeAttributeNode(attr: Attr): Attr;
115
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
116
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
117
- scroll(options?: ScrollToOptions): void;
118
- scroll(x: number, y: number): void;
119
- scrollBy(options?: ScrollToOptions): void;
120
- scrollBy(x: number, y: number): void;
121
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
122
- scrollTo(options?: ScrollToOptions): void;
123
- scrollTo(x: number, y: number): void;
124
- setAttribute(qualifiedName: string, value: string): void;
125
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
126
- setAttributeNode(attr: Attr): Attr | null;
127
- setAttributeNodeNS(attr: Attr): Attr | null;
128
- setHTMLUnsafe(html: string): void;
129
- setPointerCapture(pointerId: number): void;
130
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
131
- webkitMatchesSelector(selectors: string): boolean;
132
- textContent: string;
133
- readonly baseURI: string;
134
- readonly childNodes: NodeListOf<ChildNode>;
135
- readonly firstChild: ChildNode | null;
136
- readonly isConnected: boolean;
137
- readonly lastChild: ChildNode | null;
138
- readonly nextSibling: ChildNode | null;
139
- readonly nodeName: string;
140
- readonly nodeType: number;
141
- nodeValue: string | null;
142
- readonly parentElement: HTMLElement | null;
143
- readonly parentNode: ParentNode | null;
144
- readonly previousSibling: ChildNode | null;
145
- appendChild<T_1 extends Node>(node: T_1): T_1;
146
- compareDocumentPosition(other: Node): number;
147
- contains(other: Node | null): boolean;
148
- getRootNode(options?: GetRootNodeOptions): Node;
149
- hasChildNodes(): boolean;
150
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
151
- isDefaultNamespace(namespace: string | null): boolean;
152
- isEqualNode(otherNode: Node | null): boolean;
153
- isSameNode(otherNode: Node | null): boolean;
154
- lookupNamespaceURI(prefix: string | null): string | null;
155
- lookupPrefix(namespace: string | null): string | null;
156
- normalize(): void;
157
- removeChild<T_1 extends Node>(child: T_1): T_1;
158
- replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
159
- readonly ELEMENT_NODE: 1;
160
- readonly ATTRIBUTE_NODE: 2;
161
- readonly TEXT_NODE: 3;
162
- readonly CDATA_SECTION_NODE: 4;
163
- readonly ENTITY_REFERENCE_NODE: 5;
164
- readonly ENTITY_NODE: 6;
165
- readonly PROCESSING_INSTRUCTION_NODE: 7;
166
- readonly COMMENT_NODE: 8;
167
- readonly DOCUMENT_NODE: 9;
168
- readonly DOCUMENT_TYPE_NODE: 10;
169
- readonly DOCUMENT_FRAGMENT_NODE: 11;
170
- readonly NOTATION_NODE: 12;
171
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
172
- readonly DOCUMENT_POSITION_PRECEDING: 2;
173
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
174
- readonly DOCUMENT_POSITION_CONTAINS: 8;
175
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
176
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
177
- dispatchEvent(event: Event): boolean;
178
- ariaActiveDescendantElement: Element | null;
179
- ariaAtomic: string | null;
180
- ariaAutoComplete: string | null;
181
- ariaBrailleLabel: string | null;
182
- ariaBrailleRoleDescription: string | null;
183
- ariaBusy: string | null;
184
- ariaChecked: string | null;
185
- ariaColCount: string | null;
186
- ariaColIndex: string | null;
187
- ariaColIndexText: string | null;
188
- ariaColSpan: string | null;
189
- ariaControlsElements: ReadonlyArray<Element> | null;
190
- ariaCurrent: string | null;
191
- ariaDescribedByElements: ReadonlyArray<Element> | null;
192
- ariaDescription: string | null;
193
- ariaDetailsElements: ReadonlyArray<Element> | null;
194
- ariaDisabled: string | null;
195
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
196
- ariaExpanded: string | null;
197
- ariaFlowToElements: ReadonlyArray<Element> | null;
198
- ariaHasPopup: string | null;
199
- ariaHidden: string | null;
200
- ariaInvalid: string | null;
201
- ariaKeyShortcuts: string | null;
202
- ariaLabel: string | null;
203
- ariaLabelledByElements: ReadonlyArray<Element> | null;
204
- ariaLevel: string | null;
205
- ariaLive: string | null;
206
- ariaModal: string | null;
207
- ariaMultiLine: string | null;
208
- ariaMultiSelectable: string | null;
209
- ariaOrientation: string | null;
210
- ariaOwnsElements: ReadonlyArray<Element> | null;
211
- ariaPlaceholder: string | null;
212
- ariaPosInSet: string | null;
213
- ariaPressed: string | null;
214
- ariaReadOnly: string | null;
215
- ariaRelevant: string | null;
216
- ariaRequired: string | null;
217
- ariaRoleDescription: string | null;
218
- ariaRowCount: string | null;
219
- ariaRowIndex: string | null;
220
- ariaRowIndexText: string | null;
221
- ariaRowSpan: string | null;
222
- ariaSelected: string | null;
223
- ariaSetSize: string | null;
224
- ariaSort: string | null;
225
- ariaValueMax: string | null;
226
- ariaValueMin: string | null;
227
- ariaValueNow: string | null;
228
- ariaValueText: string | null;
229
- role: string | null;
230
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
231
- getAnimations(options?: GetAnimationsOptions): Animation[];
232
- after(...nodes: (Node | string)[]): void;
233
- before(...nodes: (Node | string)[]): void;
234
- remove(): void;
235
- replaceWith(...nodes: (Node | string)[]): void;
236
- readonly nextElementSibling: Element | null;
237
- readonly previousElementSibling: Element | null;
238
- readonly childElementCount: number;
239
- readonly children: HTMLCollection;
240
- readonly firstElementChild: Element | null;
241
- readonly lastElementChild: Element | null;
242
- append(...nodes: (Node | string)[]): void;
243
- prepend(...nodes: (Node | string)[]): void;
244
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
245
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
246
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
247
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
248
- querySelector<E extends Element = Element>(selectors: string): E | null;
249
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
250
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
251
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
252
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
253
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
254
- replaceChildren(...nodes: (Node | string)[]): void;
255
- readonly assignedSlot: HTMLSlotElement | null;
256
- readonly attributeStyleMap: StylePropertyMap;
257
- get style(): CSSStyleDeclaration;
258
- set style(cssText: string): any;
259
- contentEditable: string;
260
- enterKeyHint: string;
261
- inputMode: string;
262
- readonly isContentEditable: boolean;
263
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
264
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
265
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
266
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
267
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
268
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
269
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
270
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
271
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
272
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
273
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
274
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
275
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
276
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
277
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
278
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
279
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
280
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
281
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
282
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
283
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
284
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
285
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
286
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
287
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
288
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
289
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
290
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
291
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
292
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
293
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
294
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
- onerror: OnErrorEventHandler;
297
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
298
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
299
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
300
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
301
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
303
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
304
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
305
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
306
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
307
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
308
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
309
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
310
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
311
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
312
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
313
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
314
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
315
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
316
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
317
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
318
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
319
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
320
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
322
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
323
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
324
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
325
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
326
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
327
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
328
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
329
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
330
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
331
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
332
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
334
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
337
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
339
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
342
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
344
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
345
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
348
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
349
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
350
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
351
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
352
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
353
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
354
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
355
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
356
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
357
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
358
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
363
- autofocus: boolean;
364
- readonly dataset: DOMStringMap;
365
- nonce?: string;
366
- tabIndex: number;
367
- blur(): void;
368
- focus(options?: FocusOptions): void;
369
- }) & typeof FoundationElement;
3
+ declare const G2PlotChart_base: typeof FoundationElement & import("@microsoft/fast-element").Constructable<import("@genesislcap/foundation-utils").LifecycleElement>;
370
4
  /**
371
5
  * The G2Plot Chart component
372
6
  * @public
@@ -1 +1 @@
1
- {"version":3,"file":"chart.d.ts","sourceRoot":"","sources":["../../src/chart.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAK/D,OAAO,EAEL,UAAU,EAGV,eAAe,EACf,cAAc,EACd,WAAW,EACZ,MAAM,eAAe,CAAC;;;;;;;;kBA4GlB,CAAC;;;;;;;;8BAqEF,CAAJ,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAoC2B,CAAC;4IAG/B,CAAC;wFAGP,CAAA;+IAGF,CAAC;2FAEsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAwBqF,CAAC;;;;;;;;;;;;;;;;;;;;;;;mBAoEjH,CAAA;;;;;;;;;;;;;6BAQymB,CAAC;8BAAuE,CAAC;kBAA4D,CAAC;;oBAA8F,CAAC;;sBAAkG,CAAC;oBAAkE,CAAC;;;;;;;;gDAAme,CAAC;;;;;;;;;;;;;;;;;;uBAA8yB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAiiH,CAAC;yBAA8E,CAAC;UAAoD,GAAG;WAAgD,GAAG;;gBAA6E,GAAG;;;;;;;WAA4V,GAAG;YAAiD,GAAG;;;;;;;;;;;oBAAupC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAiiO,CAAC;cAA6F,CAAC;eAA8F,CAAC;gBAA+F,CAAC;;;;;;;;;;;;;;SAAulC,CAAC;;;iBAA+E,CAAC;;AAlTvkgB;;;;;;;GAOG;AACH,qBAAa,WAAY,SAAQ,gBAAiC;IAChE,OAAO,CAAC,KAAK,CAAc;IAC3B;;OAEG;IACI,cAAc,EAAE,WAAW,CAAC;IACnC;;;;OAIG;IACG,IAAI,EAAE,UAAU,CAAS;IAE/B;;;;;;;;;;;;;;;;;;OAkBG;IACS,MAAM,EAAE,WAAW,CAAC;IAChC;;OAEG;IACH,aAAa;IAUb;;;;OAIG;IACS,IAAI,EAAE,GAAG,EAAE,CAAM;IAC7B;;OAEG;IACH,WAAW,CAAC,QAAQ,EAAE,GAAG,EAAE,EAAE,QAAQ,EAAE,GAAG,EAAE;IAO5C;;OAEG;IACS,UAAU,EAAE,cAAc,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAM;IAEzE,OAAO,CAAC,cAAc,CAAkC;IACxD,OAAO,CAAC,YAAY,CAAC,CAAqB;IAC1C,OAAO,CAAC,mBAAmB,CAA4B;IAEvD;;OAEG;;IAYH,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,YAAY;IAUpB;;;OAGG;IACM,SAAS,IAAI,IAAI;IAU1B;;;OAGG;IACH,WAAW;IAKX;;;OAGG;IACH,iBAAiB;IAqBjB;;OAEG;IACH,oBAAoB,IAAI,IAAI;IAkB5B;;OAEG;IACH,YAAY,GAAI,MAAC,UAEf;IAEF;;;OAGG;IACH,OAAO,CAAC,cAAc,CAuBpB;IAEF,OAAO,CAAC,qBAAqB,CAO3B;IAEF;;;;;;;;;;;;;;OAcG;IACH,OAAO,CAAC,8BAA8B;IA0BtC,OAAO,CAAC,sBAAsB,CAc5B;CACH;AAED;;;;GAIG;AACH,eAAO,MAAM,4BAA4B,EAAE,cAA0B,CAAC;AAEtE;;;GAGG;AACH,eAAO,MAAM,kBAAkB,IAAK,CAAC;AAErC;;;;;;GAMG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;sBAMtB,CAAC"}
1
+ {"version":3,"file":"chart.d.ts","sourceRoot":"","sources":["../../src/chart.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAK/D,OAAO,EAEL,UAAU,EAGV,eAAe,EACf,cAAc,EACd,WAAW,EACZ,MAAM,eAAe,CAAC;;AAkBvB;;;;;;;GAOG;AACH,qBAAa,WAAY,SAAQ,gBAAiC;IAChE,OAAO,CAAC,KAAK,CAAc;IAC3B;;OAEG;IACI,cAAc,EAAE,WAAW,CAAC;IACnC;;;;OAIG;IACG,IAAI,EAAE,UAAU,CAAS;IAE/B;;;;;;;;;;;;;;;;;;OAkBG;IACS,MAAM,EAAE,WAAW,CAAC;IAChC;;OAEG;IACH,aAAa,SASZ;IACD;;;;OAIG;IACS,IAAI,EAAE,GAAG,EAAE,CAAM;IAC7B;;OAEG;IACH,WAAW,CAAC,QAAQ,EAAE,GAAG,EAAE,EAAE,QAAQ,EAAE,GAAG,EAAE,QAM3C;IACD;;OAEG;IACS,UAAU,EAAE,cAAc,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAM;IAEzE,OAAO,CAAC,cAAc,CAAkC;IACxD,OAAO,CAAC,YAAY,CAAC,CAAqB;IAC1C,OAAO,CAAC,mBAAmB,CAA4B;IAEvD;;OAEG;IACH,cASC;IAED,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,YAAY;IAUpB;;;OAGG;IACM,SAAS,IAAI,IAAI,CAQzB;IAED;;;OAGG;IACH,WAAW,SAGV;IAED;;;OAGG;IACH,iBAAiB,SAoBhB;IACD;;OAEG;IACH,oBAAoB,IAAI,IAAI,CAgB3B;IAED;;OAEG;IACH,YAAY,mBAEV;IAEF;;;OAGG;IACH,OAAO,CAAC,cAAc,CAuBpB;IAEF,OAAO,CAAC,qBAAqB,CAO3B;IAEF;;;;;;;;;;;;;;OAcG;IACH,OAAO,CAAC,8BAA8B;IA0BtC,OAAO,CAAC,sBAAsB,CAc5B;CACH;AAED;;;;GAIG;AACH,eAAO,MAAM,4BAA4B,EAAE,cAA0B,CAAC;AAEtE;;;GAGG;AACH,eAAO,MAAM,kBAAkB,IAAK,CAAC;AAErC;;;;;;GAMG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;sBAMtB,CAAC"}
@@ -10,7 +10,7 @@ export declare const chartEventNames: {
10
10
  * @public
11
11
  */
12
12
  export declare const chartErrorNames: {
13
- readonly datasource: "datasource";
14
- readonly unknown: "unknown";
13
+ readonly datasource: 'datasource';
14
+ readonly unknown: 'unknown';
15
15
  };
16
16
  //# sourceMappingURL=chart.definitions.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"chart.definitions.d.ts","sourceRoot":"","sources":["../../src/chart.definitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,eAAe;;CAE3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe;;;CAGlB,CAAC"}
1
+ {"version":3,"file":"chart.definitions.d.ts","sourceRoot":"","sources":["../../src/chart.definitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,eAAe;IAC1B,oBAAoB;CACrB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe;aAC1B,UAAU,EAAE,YAAY;aACxB,OAAO,EAAE,SAAS;CACV,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"area-chart.d.ts","sourceRoot":"","sources":["../../../src/models/area-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAGjD,eAAO,MAAM,SAAS,GAAI,WAAW,WAAW,EAAE,QAAQ,WAAW,SAQpE,CAAC"}
1
+ {"version":3,"file":"area-chart.d.ts","sourceRoot":"","sources":["../../../src/models/area-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAGjD,eAAO,MAAM,SAAS,cAAe,WAAW,UAAU,WAAW,SAQpE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"bar-chart.d.ts","sourceRoot":"","sources":["../../../src/models/bar-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,eAAO,MAAM,QAAQ,GAAI,WAAW,WAAW,EAAE,QAAQ,UAAU,QAQlE,CAAC"}
1
+ {"version":3,"file":"bar-chart.d.ts","sourceRoot":"","sources":["../../../src/models/bar-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,eAAO,MAAM,QAAQ,cAAe,WAAW,UAAU,UAAU,QAQlE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"column-chart.d.ts","sourceRoot":"","sources":["../../../src/models/column-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAGrD,eAAO,MAAM,WAAW,GAAI,WAAW,WAAW,EAAE,QAAQ,aAAa,WAWxE,CAAC"}
1
+ {"version":3,"file":"column-chart.d.ts","sourceRoot":"","sources":["../../../src/models/column-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAGrD,eAAO,MAAM,WAAW,cAAe,WAAW,UAAU,aAAa,WAWxE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"donut-chart.d.ts","sourceRoot":"","sources":["../../../src/models/donut-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,eAAO,MAAM,UAAU,GAAI,WAAW,WAAW,EAAE,QAAQ,UAAU,QAiBpE,CAAC"}
1
+ {"version":3,"file":"donut-chart.d.ts","sourceRoot":"","sources":["../../../src/models/donut-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,eAAO,MAAM,UAAU,cAAe,WAAW,UAAU,UAAU,QAiBpE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"dual-axes-chart.d.ts","sourceRoot":"","sources":["../../../src/models/dual-axes-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAGzD,eAAO,MAAM,aAAa,GAAI,WAAW,WAAW,EAAE,QAAQ,eAAe,aAoB5E,CAAC"}
1
+ {"version":3,"file":"dual-axes-chart.d.ts","sourceRoot":"","sources":["../../../src/models/dual-axes-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAGzD,eAAO,MAAM,aAAa,cAAe,WAAW,UAAU,eAAe,aAoB5E,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"line-chart.d.ts","sourceRoot":"","sources":["../../../src/models/line-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAGjD,eAAO,MAAM,SAAS,GAAI,WAAW,WAAW,EAAE,QAAQ,WAAW,SA2BpE,CAAC"}
1
+ {"version":3,"file":"line-chart.d.ts","sourceRoot":"","sources":["../../../src/models/line-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAGjD,eAAO,MAAM,SAAS,cAAe,WAAW,UAAU,WAAW,SA2BpE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"mix-chart.d.ts","sourceRoot":"","sources":["../../../src/models/mix-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI/C,eAAO,MAAM,QAAQ,GAAI,WAAW,WAAW,EAAE,QAAQ,UAAU,QA8BlE,CAAC"}
1
+ {"version":3,"file":"mix-chart.d.ts","sourceRoot":"","sources":["../../../src/models/mix-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI/C,eAAO,MAAM,QAAQ,cAAe,WAAW,UAAU,UAAU,QA8BlE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"pie-chart.d.ts","sourceRoot":"","sources":["../../../src/models/pie-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,eAAO,MAAM,QAAQ,GAAI,WAAW,WAAW,EAAE,QAAQ,UAAU,QAqBlE,CAAC"}
1
+ {"version":3,"file":"pie-chart.d.ts","sourceRoot":"","sources":["../../../src/models/pie-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,eAAO,MAAM,QAAQ,cAAe,WAAW,UAAU,UAAU,QAqBlE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"rose-chart.d.ts","sourceRoot":"","sources":["../../../src/models/rose-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAGjD,eAAO,MAAM,SAAS,GAAI,WAAW,WAAW,EAAE,QAAQ,WAAW,SASpE,CAAC"}
1
+ {"version":3,"file":"rose-chart.d.ts","sourceRoot":"","sources":["../../../src/models/rose-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAGjD,eAAO,MAAM,SAAS,cAAe,WAAW,UAAU,WAAW,SASpE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"scatter-chart.d.ts","sourceRoot":"","sources":["../../../src/models/scatter-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAEvD,eAAO,MAAM,YAAY,GAAI,WAAW,WAAW,EAAE,QAAQ,cAAc,YAE1E,CAAC"}
1
+ {"version":3,"file":"scatter-chart.d.ts","sourceRoot":"","sources":["../../../src/models/scatter-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAEvD,eAAO,MAAM,YAAY,cAAe,WAAW,UAAU,cAAc,YAE1E,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"stock-chart.d.ts","sourceRoot":"","sources":["../../../src/models/stock-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAGnD,eAAO,MAAM,UAAU,GAAI,WAAW,WAAW,EAAE,QAAQ,YAAY,UAWtE,CAAC"}
1
+ {"version":3,"file":"stock-chart.d.ts","sourceRoot":"","sources":["../../../src/models/stock-chart.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAGnD,eAAO,MAAM,UAAU,cAAe,WAAW,UAAU,YAAY,UAWtE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../src/settings/colors.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;CAW3B,CAAC"}
1
+ {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../src/settings/colors.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,eAAO,MAAM,eAAe;IAC1B,SAAS;IACT,UAAU;IACV,QAAQ;IACR,YAAY;IACZ,cAAc;IACd,YAAY;IACZ,UAAU;IACV,eAAe;IACf,QAAQ;IACR,WAAW;CACZ,CAAC"}
@@ -1235,7 +1235,7 @@
1235
1235
  },
1236
1236
  {
1237
1237
  "kind": "Content",
1238
- "text": "{\n readonly datasource: \"datasource\";\n readonly unknown: \"unknown\";\n}"
1238
+ "text": "{\n readonly datasource: 'datasource';\n readonly unknown: 'unknown';\n}"
1239
1239
  }
1240
1240
  ],
1241
1241
  "fileUrlPath": "src/chart.definitions.ts",