@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.
@@ -1,3 +1,5 @@
1
+ /// <reference types="node" />
2
+
1
3
  import { Area } from '@antv/g2plot';
2
4
  import { AreaOptions } from '@antv/g2plot';
3
5
  import { Bar } from '@antv/g2plot';
@@ -199,10 +201,7 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
199
201
  dir: string;
200
202
  draggable: boolean;
201
203
  hidden: boolean;
202
- inert: boolean; /**
203
- * If true, will enable grouped chart plotting numeric values for levels of two categorical variables instead of one.
204
- * @public
205
- */
204
+ inert: boolean;
206
205
  innerText: string;
207
206
  lang: string;
208
207
  readonly offsetHeight: number;
@@ -211,11 +210,15 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
211
210
  readonly offsetTop: number;
212
211
  readonly offsetWidth: number;
213
212
  outerText: string;
213
+ popover: string;
214
214
  spellcheck: boolean;
215
215
  title: string;
216
216
  translate: boolean;
217
217
  attachInternals(): ElementInternals;
218
218
  click(): void;
219
+ hidePopover(): void;
220
+ showPopover(): void;
221
+ togglePopover(force?: boolean): boolean;
219
222
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
220
223
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
221
224
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
@@ -244,9 +247,12 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
244
247
  slot: string;
245
248
  readonly tagName: string;
246
249
  attachShadow(init: ShadowRootInit): ShadowRoot;
250
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
247
251
  closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
248
252
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
253
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
249
254
  closest<E extends Element = Element>(selectors: string): E;
255
+ computedStyleMap(): StylePropertyMapReadOnly;
250
256
  getAttribute(qualifiedName: string): string;
251
257
  getAttributeNS(namespace: string, localName: string): string;
252
258
  getAttributeNames(): string[];
@@ -255,11 +261,14 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
255
261
  getBoundingClientRect(): DOMRect;
256
262
  getClientRects(): DOMRectList;
257
263
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
258
- getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
259
- getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
264
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
265
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
266
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
267
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
260
268
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
261
269
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
262
270
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
271
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
263
272
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
264
273
  hasAttribute(qualifiedName: string): boolean;
265
274
  hasAttributeNS(namespace: string, localName: string): boolean;
@@ -316,24 +325,24 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
316
325
  normalize(): void;
317
326
  removeChild<T_3 extends Node>(child: T_3): T_3;
318
327
  replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
319
- readonly ATTRIBUTE_NODE: number;
320
- readonly CDATA_SECTION_NODE: number;
321
- readonly COMMENT_NODE: number;
322
- readonly DOCUMENT_FRAGMENT_NODE: number;
323
- readonly DOCUMENT_NODE: number;
324
- readonly DOCUMENT_POSITION_CONTAINED_BY: number;
325
- readonly DOCUMENT_POSITION_CONTAINS: number;
326
- readonly DOCUMENT_POSITION_DISCONNECTED: number;
327
- readonly DOCUMENT_POSITION_FOLLOWING: number;
328
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
329
- readonly DOCUMENT_POSITION_PRECEDING: number;
330
- readonly DOCUMENT_TYPE_NODE: number;
331
- readonly ELEMENT_NODE: number;
332
- readonly ENTITY_NODE: number;
333
- readonly ENTITY_REFERENCE_NODE: number;
334
- readonly NOTATION_NODE: number;
335
- readonly PROCESSING_INSTRUCTION_NODE: number;
336
- readonly TEXT_NODE: number;
328
+ readonly ELEMENT_NODE: 1;
329
+ readonly ATTRIBUTE_NODE: 2;
330
+ readonly TEXT_NODE: 3;
331
+ readonly CDATA_SECTION_NODE: 4;
332
+ readonly ENTITY_REFERENCE_NODE: 5;
333
+ readonly ENTITY_NODE: 6;
334
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
335
+ readonly COMMENT_NODE: 8;
336
+ readonly DOCUMENT_NODE: 9;
337
+ readonly DOCUMENT_TYPE_NODE: 10;
338
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
339
+ readonly NOTATION_NODE: 12;
340
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
341
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
342
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
343
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
344
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
345
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
337
346
  dispatchEvent(event: Event): boolean;
338
347
  ariaAtomic: string;
339
348
  ariaAutoComplete: string;
@@ -341,9 +350,9 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
341
350
  ariaChecked: string;
342
351
  ariaColCount: string;
343
352
  ariaColIndex: string;
344
- ariaColIndexText: string;
345
353
  ariaColSpan: string;
346
354
  ariaCurrent: string;
355
+ ariaDescription: string;
347
356
  ariaDisabled: string;
348
357
  ariaExpanded: string;
349
358
  ariaHasPopup: string;
@@ -365,7 +374,6 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
365
374
  ariaRoleDescription: string;
366
375
  ariaRowCount: string;
367
376
  ariaRowIndex: string;
368
- ariaRowIndexText: string;
369
377
  ariaRowSpan: string;
370
378
  ariaSelected: string;
371
379
  ariaSetSize: string;
@@ -390,17 +398,19 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
390
398
  readonly lastElementChild: Element;
391
399
  append(...nodes: (string | Node)[]): void;
392
400
  prepend(...nodes: (string | Node)[]): void;
393
- querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
394
- querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
401
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
402
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
403
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
404
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
395
405
  querySelector<E_1 extends Element = Element>(selectors: string): E_1;
396
- querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
397
- querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
406
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
407
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
408
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
409
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
398
410
  querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
399
411
  replaceChildren(...nodes: (string | Node)[]): void;
400
412
  readonly assignedSlot: HTMLSlotElement;
401
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
402
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
403
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
413
+ readonly attributeStyleMap: StylePropertyMap;
404
414
  readonly style: CSSStyleDeclaration;
405
415
  contentEditable: string;
406
416
  enterKeyHint: string;
@@ -413,6 +423,7 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
413
423
  onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
414
424
  onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
415
425
  onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
426
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
416
427
  onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
417
428
  oncancel: (this: GlobalEventHandlers, ev: Event) => any;
418
429
  oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
@@ -421,7 +432,9 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
421
432
  onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
422
433
  onclose: (this: GlobalEventHandlers, ev: Event) => any;
423
434
  oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
435
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
424
436
  oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
437
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
425
438
  ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
426
439
  ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
427
440
  ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
@@ -454,6 +467,7 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
454
467
  onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
455
468
  onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
456
469
  onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
470
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
457
471
  onpause: (this: GlobalEventHandlers, ev: Event) => any;
458
472
  onplay: (this: GlobalEventHandlers, ev: Event) => any;
459
473
  onplaying: (this: GlobalEventHandlers, ev: Event) => any;
@@ -470,6 +484,7 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
470
484
  onreset: (this: GlobalEventHandlers, ev: Event) => any;
471
485
  onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
472
486
  onscroll: (this: GlobalEventHandlers, ev: Event) => any;
487
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
473
488
  onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
474
489
  onseeked: (this: GlobalEventHandlers, ev: Event) => any;
475
490
  onseeking: (this: GlobalEventHandlers, ev: Event) => any;
@@ -809,11 +824,15 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
809
824
  readonly offsetTop: number;
810
825
  readonly offsetWidth: number;
811
826
  outerText: string;
827
+ popover: string;
812
828
  spellcheck: boolean;
813
829
  title: string;
814
830
  translate: boolean;
815
831
  attachInternals(): ElementInternals;
816
832
  click(): void;
833
+ hidePopover(): void;
834
+ showPopover(): void;
835
+ togglePopover(force?: boolean): boolean;
817
836
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
818
837
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
819
838
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
@@ -842,9 +861,12 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
842
861
  slot: string;
843
862
  readonly tagName: string;
844
863
  attachShadow(init: ShadowRootInit): ShadowRoot;
864
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
845
865
  closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
846
866
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
867
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
847
868
  closest<E extends Element = Element>(selectors: string): E;
869
+ computedStyleMap(): StylePropertyMapReadOnly;
848
870
  getAttribute(qualifiedName: string): string;
849
871
  getAttributeNS(namespace: string, localName: string): string;
850
872
  getAttributeNames(): string[];
@@ -853,11 +875,14 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
853
875
  getBoundingClientRect(): DOMRect;
854
876
  getClientRects(): DOMRectList;
855
877
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
856
- getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
857
- getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
878
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
879
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
880
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
881
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
858
882
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
859
883
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
860
884
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
885
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
861
886
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
862
887
  hasAttribute(qualifiedName: string): boolean;
863
888
  hasAttributeNS(namespace: string, localName: string): boolean;
@@ -878,15 +903,7 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
878
903
  scrollBy(options?: ScrollToOptions): void;
879
904
  scrollBy(x: number, y: number): void;
880
905
  scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
881
- /**
882
- * The default `g2plot-chart` configuration.
883
- * @public
884
- */
885
906
  scrollTo(options?: ScrollToOptions): void;
886
- /**
887
- * The default `g2plot-chart` configuration.
888
- * @public
889
- */
890
907
  scrollTo(x: number, y: number): void;
891
908
  setAttribute(qualifiedName: string, value: string): void;
892
909
  setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
@@ -922,24 +939,24 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
922
939
  normalize(): void;
923
940
  removeChild<T_3 extends Node>(child: T_3): T_3;
924
941
  replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
925
- readonly ATTRIBUTE_NODE: number;
926
- readonly CDATA_SECTION_NODE: number;
927
- readonly COMMENT_NODE: number;
928
- readonly DOCUMENT_FRAGMENT_NODE: number;
929
- readonly DOCUMENT_NODE: number;
930
- readonly DOCUMENT_POSITION_CONTAINED_BY: number;
931
- readonly DOCUMENT_POSITION_CONTAINS: number;
932
- readonly DOCUMENT_POSITION_DISCONNECTED: number;
933
- readonly DOCUMENT_POSITION_FOLLOWING: number;
934
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
935
- readonly DOCUMENT_POSITION_PRECEDING: number;
936
- readonly DOCUMENT_TYPE_NODE: number;
937
- readonly ELEMENT_NODE: number;
938
- readonly ENTITY_NODE: number;
939
- readonly ENTITY_REFERENCE_NODE: number;
940
- readonly NOTATION_NODE: number;
941
- readonly PROCESSING_INSTRUCTION_NODE: number;
942
- readonly TEXT_NODE: number;
942
+ readonly ELEMENT_NODE: 1;
943
+ readonly ATTRIBUTE_NODE: 2;
944
+ readonly TEXT_NODE: 3;
945
+ readonly CDATA_SECTION_NODE: 4;
946
+ readonly ENTITY_REFERENCE_NODE: 5;
947
+ readonly ENTITY_NODE: 6;
948
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
949
+ readonly COMMENT_NODE: 8;
950
+ readonly DOCUMENT_NODE: 9;
951
+ readonly DOCUMENT_TYPE_NODE: 10;
952
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
953
+ readonly NOTATION_NODE: 12;
954
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
955
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
956
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
957
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
958
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
959
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
943
960
  dispatchEvent(event: Event): boolean;
944
961
  ariaAtomic: string;
945
962
  ariaAutoComplete: string;
@@ -947,9 +964,9 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
947
964
  ariaChecked: string;
948
965
  ariaColCount: string;
949
966
  ariaColIndex: string;
950
- ariaColIndexText: string;
951
967
  ariaColSpan: string;
952
968
  ariaCurrent: string;
969
+ ariaDescription: string;
953
970
  ariaDisabled: string;
954
971
  ariaExpanded: string;
955
972
  ariaHasPopup: string;
@@ -971,7 +988,6 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
971
988
  ariaRoleDescription: string;
972
989
  ariaRowCount: string;
973
990
  ariaRowIndex: string;
974
- ariaRowIndexText: string;
975
991
  ariaRowSpan: string;
976
992
  ariaSelected: string;
977
993
  ariaSetSize: string;
@@ -996,17 +1012,19 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
996
1012
  readonly lastElementChild: Element;
997
1013
  append(...nodes: (string | Node)[]): void;
998
1014
  prepend(...nodes: (string | Node)[]): void;
999
- querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
1000
- querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
1015
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
1016
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
1017
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
1018
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
1001
1019
  querySelector<E_1 extends Element = Element>(selectors: string): E_1;
1002
- querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
1003
- querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
1020
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
1021
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
1022
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
1023
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
1004
1024
  querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
1005
1025
  replaceChildren(...nodes: (string | Node)[]): void;
1006
1026
  readonly assignedSlot: HTMLSlotElement;
1007
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1008
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1009
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1027
+ readonly attributeStyleMap: StylePropertyMap;
1010
1028
  readonly style: CSSStyleDeclaration;
1011
1029
  contentEditable: string;
1012
1030
  enterKeyHint: string;
@@ -1019,6 +1037,7 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
1019
1037
  onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
1020
1038
  onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1021
1039
  onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
1040
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
1022
1041
  onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
1023
1042
  oncancel: (this: GlobalEventHandlers, ev: Event) => any;
1024
1043
  oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
@@ -1027,7 +1046,9 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
1027
1046
  onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1028
1047
  onclose: (this: GlobalEventHandlers, ev: Event) => any;
1029
1048
  oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1049
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
1030
1050
  oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
1051
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
1031
1052
  ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1032
1053
  ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
1033
1054
  ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
@@ -1060,6 +1081,7 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
1060
1081
  onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1061
1082
  onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1062
1083
  onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1084
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
1063
1085
  onpause: (this: GlobalEventHandlers, ev: Event) => any;
1064
1086
  onplay: (this: GlobalEventHandlers, ev: Event) => any;
1065
1087
  onplaying: (this: GlobalEventHandlers, ev: Event) => any;
@@ -1076,6 +1098,7 @@ declare const G2PlotChart_base: (new (...args: any[]) => {
1076
1098
  onreset: (this: GlobalEventHandlers, ev: Event) => any;
1077
1099
  onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
1078
1100
  onscroll: (this: GlobalEventHandlers, ev: Event) => any;
1101
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
1079
1102
  onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
1080
1103
  onseeked: (this: GlobalEventHandlers, ev: Event) => any;
1081
1104
  onseeking: (this: GlobalEventHandlers, ev: Event) => any;
@@ -4,6 +4,8 @@
4
4
 
5
5
  ```ts
6
6
 
7
+ /// <reference types="node" />
8
+
7
9
  import { Area } from '@antv/g2plot';
8
10
  import { AreaOptions } from '@antv/g2plot';
9
11
  import { Bar } from '@antv/g2plot';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/g2plot-chart",
3
3
  "description": "Genesis G2plot Chart",
4
- "version": "14.237.1",
4
+ "version": "14.237.2-alpha-78ebbc0.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -53,25 +53,25 @@
53
53
  }
54
54
  },
55
55
  "devDependencies": {
56
- "@genesislcap/foundation-testing": "14.237.1",
57
- "@genesislcap/genx": "14.237.1",
58
- "@genesislcap/rollup-builder": "14.237.1",
59
- "@genesislcap/ts-builder": "14.237.1",
60
- "@genesislcap/uvu-playwright-builder": "14.237.1",
61
- "@genesislcap/vite-builder": "14.237.1",
62
- "@genesislcap/webpack-builder": "14.237.1",
56
+ "@genesislcap/foundation-testing": "14.237.2-alpha-78ebbc0.0",
57
+ "@genesislcap/genx": "14.237.2-alpha-78ebbc0.0",
58
+ "@genesislcap/rollup-builder": "14.237.2-alpha-78ebbc0.0",
59
+ "@genesislcap/ts-builder": "14.237.2-alpha-78ebbc0.0",
60
+ "@genesislcap/uvu-playwright-builder": "14.237.2-alpha-78ebbc0.0",
61
+ "@genesislcap/vite-builder": "14.237.2-alpha-78ebbc0.0",
62
+ "@genesislcap/webpack-builder": "14.237.2-alpha-78ebbc0.0",
63
63
  "rimraf": "^5.0.0"
64
64
  },
65
65
  "dependencies": {
66
66
  "@antv/g2plot": "^2.4.32",
67
- "@genesislcap/foundation-comms": "14.237.1",
68
- "@genesislcap/foundation-logger": "14.237.1",
69
- "@genesislcap/foundation-ui": "14.237.1",
70
- "@genesislcap/foundation-utils": "14.237.1",
71
- "@genesislcap/foundation-zero": "14.237.1",
67
+ "@genesislcap/foundation-comms": "14.237.2-alpha-78ebbc0.0",
68
+ "@genesislcap/foundation-logger": "14.237.2-alpha-78ebbc0.0",
69
+ "@genesislcap/foundation-ui": "14.237.2-alpha-78ebbc0.0",
70
+ "@genesislcap/foundation-utils": "14.237.2-alpha-78ebbc0.0",
71
+ "@genesislcap/foundation-zero": "14.237.2-alpha-78ebbc0.0",
72
72
  "@microsoft/fast-element": "1.14.0",
73
73
  "@microsoft/fast-foundation": "2.49.6",
74
- "tslib": "^2.3.1"
74
+ "tslib": "2.8.1"
75
75
  },
76
76
  "repository": {
77
77
  "type": "git",
@@ -82,5 +82,5 @@
82
82
  "access": "public"
83
83
  },
84
84
  "customElements": "dist/custom-elements.json",
85
- "gitHead": "bcda3ef5a5b349a2aff30cc91e391528483e5189"
85
+ "gitHead": "ab5fa0da6c1d82b0d69754c35801e2b17ae7d018"
86
86
  }