@genesislcap/g2plot-chart 14.237.1 → 14.237.2-alpha-78ebbc0.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.
- package/dist/custom-elements.json +1273 -1273
- package/dist/dts/chart-datasource/chart-datasource.d.ts +47 -33
- package/dist/dts/chart-datasource/chart-datasource.d.ts.map +1 -1
- package/dist/dts/chart.d.ts +46 -37
- package/dist/dts/chart.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/g2plot-chart.api.json +1 -1
- package/dist/g2plot-chart.d.ts +93 -70
- package/docs/{api-report.md → api-report.md.api.md} +2 -0
- package/package.json +15 -15
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
import { FieldMetadata } from '@genesislcap/foundation-comms';
|
|
2
3
|
import { BaseDatasource } from '@genesislcap/foundation-ui';
|
|
3
4
|
import type { BaseDatasourceErrorHandlingOptions } from '@genesislcap/foundation-ui';
|
|
@@ -52,10 +53,7 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
52
53
|
dir: string;
|
|
53
54
|
draggable: boolean;
|
|
54
55
|
hidden: boolean;
|
|
55
|
-
inert: boolean;
|
|
56
|
-
* If true, will enable grouped chart plotting numeric values for levels of two categorical variables instead of one.
|
|
57
|
-
* @public
|
|
58
|
-
*/
|
|
56
|
+
inert: boolean;
|
|
59
57
|
innerText: string;
|
|
60
58
|
lang: string;
|
|
61
59
|
readonly offsetHeight: number;
|
|
@@ -64,11 +62,15 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
64
62
|
readonly offsetTop: number;
|
|
65
63
|
readonly offsetWidth: number;
|
|
66
64
|
outerText: string;
|
|
65
|
+
popover: string;
|
|
67
66
|
spellcheck: boolean;
|
|
68
67
|
title: string;
|
|
69
68
|
translate: boolean;
|
|
70
69
|
attachInternals(): ElementInternals;
|
|
71
70
|
click(): void;
|
|
71
|
+
hidePopover(): void;
|
|
72
|
+
showPopover(): void;
|
|
73
|
+
togglePopover(force?: boolean): boolean;
|
|
72
74
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
73
75
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
74
76
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -97,9 +99,12 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
97
99
|
slot: string;
|
|
98
100
|
readonly tagName: string;
|
|
99
101
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
102
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
100
103
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
101
104
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
105
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
102
106
|
closest<E extends Element = Element>(selectors: string): E;
|
|
107
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
103
108
|
getAttribute(qualifiedName: string): string;
|
|
104
109
|
getAttributeNS(namespace: string, localName: string): string;
|
|
105
110
|
getAttributeNames(): string[];
|
|
@@ -108,11 +113,14 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
108
113
|
getBoundingClientRect(): DOMRect;
|
|
109
114
|
getClientRects(): DOMRectList;
|
|
110
115
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
111
|
-
getElementsByTagName<
|
|
112
|
-
getElementsByTagName<
|
|
116
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
117
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
118
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
119
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
113
120
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
114
121
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
115
122
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
123
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
116
124
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
117
125
|
hasAttribute(qualifiedName: string): boolean;
|
|
118
126
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -169,24 +177,24 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
169
177
|
normalize(): void;
|
|
170
178
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
171
179
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
172
|
-
readonly
|
|
173
|
-
readonly
|
|
174
|
-
readonly
|
|
175
|
-
readonly
|
|
176
|
-
readonly
|
|
177
|
-
readonly
|
|
178
|
-
readonly
|
|
179
|
-
readonly
|
|
180
|
-
readonly
|
|
181
|
-
readonly
|
|
182
|
-
readonly
|
|
183
|
-
readonly
|
|
184
|
-
readonly
|
|
185
|
-
readonly
|
|
186
|
-
readonly
|
|
187
|
-
readonly
|
|
188
|
-
readonly
|
|
189
|
-
readonly
|
|
180
|
+
readonly ELEMENT_NODE: 1;
|
|
181
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
182
|
+
readonly TEXT_NODE: 3;
|
|
183
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
184
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
185
|
+
readonly ENTITY_NODE: 6;
|
|
186
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
187
|
+
readonly COMMENT_NODE: 8;
|
|
188
|
+
readonly DOCUMENT_NODE: 9;
|
|
189
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
190
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
191
|
+
readonly NOTATION_NODE: 12;
|
|
192
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
193
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
194
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
195
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
196
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
197
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
190
198
|
dispatchEvent(event: Event): boolean;
|
|
191
199
|
ariaAtomic: string;
|
|
192
200
|
ariaAutoComplete: string;
|
|
@@ -194,9 +202,9 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
194
202
|
ariaChecked: string;
|
|
195
203
|
ariaColCount: string;
|
|
196
204
|
ariaColIndex: string;
|
|
197
|
-
ariaColIndexText: string;
|
|
198
205
|
ariaColSpan: string;
|
|
199
206
|
ariaCurrent: string;
|
|
207
|
+
ariaDescription: string;
|
|
200
208
|
ariaDisabled: string;
|
|
201
209
|
ariaExpanded: string;
|
|
202
210
|
ariaHasPopup: string;
|
|
@@ -218,7 +226,6 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
218
226
|
ariaRoleDescription: string;
|
|
219
227
|
ariaRowCount: string;
|
|
220
228
|
ariaRowIndex: string;
|
|
221
|
-
ariaRowIndexText: string;
|
|
222
229
|
ariaRowSpan: string;
|
|
223
230
|
ariaSelected: string;
|
|
224
231
|
ariaSetSize: string;
|
|
@@ -243,17 +250,19 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
243
250
|
readonly lastElementChild: Element;
|
|
244
251
|
append(...nodes: (string | Node)[]): void;
|
|
245
252
|
prepend(...nodes: (string | Node)[]): void;
|
|
246
|
-
querySelector<
|
|
247
|
-
querySelector<
|
|
253
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
254
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
255
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
256
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
248
257
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
249
|
-
querySelectorAll<
|
|
250
|
-
querySelectorAll<
|
|
258
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
259
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
260
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
261
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
251
262
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
252
263
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
253
264
|
readonly assignedSlot: HTMLSlotElement;
|
|
254
|
-
|
|
255
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
256
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
265
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
257
266
|
readonly style: CSSStyleDeclaration;
|
|
258
267
|
contentEditable: string;
|
|
259
268
|
enterKeyHint: string;
|
|
@@ -266,6 +275,7 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
266
275
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
267
276
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
268
277
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
278
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
269
279
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
270
280
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
271
281
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -274,7 +284,9 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
274
284
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
275
285
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
276
286
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
287
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
277
288
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
289
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
278
290
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
279
291
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
280
292
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -307,6 +319,7 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
307
319
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
308
320
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
309
321
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
322
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
310
323
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
311
324
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
312
325
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -323,6 +336,7 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
323
336
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
324
337
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
325
338
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
339
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
326
340
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
327
341
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
328
342
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
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,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,4BAA4B,CAAC;AAGrF,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAO5C;;;;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;IAMT,iBAAiB,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE;IAuCtC,mBAAmB,CAAC,YAAY,EAAE,GAAG,EAAE;IAQvC,mBAAmB,CAAC,WAAW,EAAE,GAAG,EAAE;IAQtC,mBAAmB,CAAC,WAAW,EAAE,GAAG,EAAE;CAUvC
|
|
1
|
+
{"version":3,"file":"chart-datasource.d.ts","sourceRoot":"","sources":["../../../src/chart-datasource/chart-datasource.ts"],"names":[],"mappings":"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"}
|
package/dist/dts/chart.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
2
3
|
import { ChartTypes, ChartErrorEvent, ChartErrorItem, ChartConfig } from './chart.types';
|
|
3
4
|
declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
@@ -32,11 +33,15 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
32
33
|
readonly offsetTop: number;
|
|
33
34
|
readonly offsetWidth: number;
|
|
34
35
|
outerText: string;
|
|
36
|
+
popover: string;
|
|
35
37
|
spellcheck: boolean;
|
|
36
38
|
title: string;
|
|
37
39
|
translate: boolean;
|
|
38
40
|
attachInternals(): ElementInternals;
|
|
39
41
|
click(): void;
|
|
42
|
+
hidePopover(): void;
|
|
43
|
+
showPopover(): void;
|
|
44
|
+
togglePopover(force?: boolean): boolean;
|
|
40
45
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
41
46
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
42
47
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -65,9 +70,12 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
65
70
|
slot: string;
|
|
66
71
|
readonly tagName: string;
|
|
67
72
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
73
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
68
74
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
69
75
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
76
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
70
77
|
closest<E extends Element = Element>(selectors: string): E;
|
|
78
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
71
79
|
getAttribute(qualifiedName: string): string;
|
|
72
80
|
getAttributeNS(namespace: string, localName: string): string;
|
|
73
81
|
getAttributeNames(): string[];
|
|
@@ -76,11 +84,14 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
76
84
|
getBoundingClientRect(): DOMRect;
|
|
77
85
|
getClientRects(): DOMRectList;
|
|
78
86
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
79
|
-
getElementsByTagName<
|
|
80
|
-
getElementsByTagName<
|
|
87
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
88
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
89
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
90
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
81
91
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
82
92
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
83
93
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
94
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
84
95
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
85
96
|
hasAttribute(qualifiedName: string): boolean;
|
|
86
97
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -101,15 +112,7 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
101
112
|
scrollBy(options?: ScrollToOptions): void;
|
|
102
113
|
scrollBy(x: number, y: number): void;
|
|
103
114
|
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
104
|
-
/**
|
|
105
|
-
* The default `g2plot-chart` configuration.
|
|
106
|
-
* @public
|
|
107
|
-
*/
|
|
108
115
|
scrollTo(options?: ScrollToOptions): void;
|
|
109
|
-
/**
|
|
110
|
-
* The default `g2plot-chart` configuration.
|
|
111
|
-
* @public
|
|
112
|
-
*/
|
|
113
116
|
scrollTo(x: number, y: number): void;
|
|
114
117
|
setAttribute(qualifiedName: string, value: string): void;
|
|
115
118
|
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
@@ -145,24 +148,24 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
145
148
|
normalize(): void;
|
|
146
149
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
147
150
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
148
|
-
readonly
|
|
149
|
-
readonly
|
|
150
|
-
readonly
|
|
151
|
-
readonly
|
|
152
|
-
readonly
|
|
153
|
-
readonly
|
|
154
|
-
readonly
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
158
|
-
readonly
|
|
159
|
-
readonly
|
|
160
|
-
readonly
|
|
161
|
-
readonly
|
|
162
|
-
readonly
|
|
163
|
-
readonly
|
|
164
|
-
readonly
|
|
165
|
-
readonly
|
|
151
|
+
readonly ELEMENT_NODE: 1;
|
|
152
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
153
|
+
readonly TEXT_NODE: 3;
|
|
154
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
155
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
156
|
+
readonly ENTITY_NODE: 6;
|
|
157
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
158
|
+
readonly COMMENT_NODE: 8;
|
|
159
|
+
readonly DOCUMENT_NODE: 9;
|
|
160
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
161
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
162
|
+
readonly NOTATION_NODE: 12;
|
|
163
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
164
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
165
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
166
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
167
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
168
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
166
169
|
dispatchEvent(event: Event): boolean;
|
|
167
170
|
ariaAtomic: string;
|
|
168
171
|
ariaAutoComplete: string;
|
|
@@ -170,9 +173,9 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
170
173
|
ariaChecked: string;
|
|
171
174
|
ariaColCount: string;
|
|
172
175
|
ariaColIndex: string;
|
|
173
|
-
ariaColIndexText: string;
|
|
174
176
|
ariaColSpan: string;
|
|
175
177
|
ariaCurrent: string;
|
|
178
|
+
ariaDescription: string;
|
|
176
179
|
ariaDisabled: string;
|
|
177
180
|
ariaExpanded: string;
|
|
178
181
|
ariaHasPopup: string;
|
|
@@ -194,7 +197,6 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
194
197
|
ariaRoleDescription: string;
|
|
195
198
|
ariaRowCount: string;
|
|
196
199
|
ariaRowIndex: string;
|
|
197
|
-
ariaRowIndexText: string;
|
|
198
200
|
ariaRowSpan: string;
|
|
199
201
|
ariaSelected: string;
|
|
200
202
|
ariaSetSize: string;
|
|
@@ -219,17 +221,19 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
219
221
|
readonly lastElementChild: Element;
|
|
220
222
|
append(...nodes: (string | Node)[]): void;
|
|
221
223
|
prepend(...nodes: (string | Node)[]): void;
|
|
222
|
-
querySelector<
|
|
223
|
-
querySelector<
|
|
224
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
225
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
226
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
227
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
224
228
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
225
|
-
querySelectorAll<
|
|
226
|
-
querySelectorAll<
|
|
229
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
230
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
231
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
232
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
227
233
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
228
234
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
229
235
|
readonly assignedSlot: HTMLSlotElement;
|
|
230
|
-
|
|
231
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
232
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
236
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
233
237
|
readonly style: CSSStyleDeclaration;
|
|
234
238
|
contentEditable: string;
|
|
235
239
|
enterKeyHint: string;
|
|
@@ -242,6 +246,7 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
242
246
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
243
247
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
244
248
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
249
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
245
250
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
246
251
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
247
252
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -250,7 +255,9 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
250
255
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
251
256
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
252
257
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
258
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
253
259
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
260
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
254
261
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
255
262
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
256
263
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -283,6 +290,7 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
283
290
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
284
291
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
285
292
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
293
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
286
294
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
287
295
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
288
296
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -299,6 +307,7 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
|
|
|
299
307
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
300
308
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
301
309
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
310
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
302
311
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
303
312
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
304
313
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
package/dist/dts/chart.d.ts.map
CHANGED
|
@@ -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
|
|
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;;;;GAIG;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,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"}
|