@genesislcap/g2plot-chart 14.302.0 → 14.302.1-alpha-945e484.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 +2 -0
- package/dist/dts/chart-datasource/chart-datasource.d.ts +265 -227
- package/dist/dts/chart-datasource/chart-datasource.d.ts.map +1 -1
- package/dist/dts/chart-datasource/chart-datasource.utils.d.ts.map +1 -1
- package/dist/dts/chart.d.ts +264 -231
- package/dist/dts/chart.d.ts.map +1 -1
- package/dist/dts/models/area-chart.d.ts.map +1 -1
- package/dist/dts/models/bar-chart.d.ts.map +1 -1
- package/dist/dts/models/column-chart.d.ts.map +1 -1
- package/dist/dts/models/donut-chart.d.ts.map +1 -1
- package/dist/dts/models/dual-axes-chart.d.ts.map +1 -1
- package/dist/dts/models/line-chart.d.ts.map +1 -1
- package/dist/dts/models/mix-chart.d.ts.map +1 -1
- package/dist/dts/models/pie-chart.d.ts.map +1 -1
- package/dist/dts/models/rose-chart.d.ts.map +1 -1
- package/dist/dts/models/scatter-chart.d.ts.map +1 -1
- package/dist/dts/models/stock-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 +529 -458
- package/docs/api/g2plot-chart.chartdatasource.md +351 -19
- package/docs/api/g2plot-chart.charterroritem.md +56 -4
- package/docs/api/g2plot-chart.g2plotchart.md +79 -5
- package/docs/api/g2plot-chart.md +257 -27
- package/docs/api/index.md +21 -3
- package/docs/api-report.md.api.md +229 -0
- package/package.json +15 -15
|
@@ -694,6 +694,7 @@
|
|
|
694
694
|
"type": {
|
|
695
695
|
"text": "string"
|
|
696
696
|
},
|
|
697
|
+
"default": "''",
|
|
697
698
|
"inheritedFrom": {
|
|
698
699
|
"name": "BaseDatasource",
|
|
699
700
|
"module": "src/utils/base-datasource.ts"
|
|
@@ -1695,6 +1696,7 @@
|
|
|
1695
1696
|
"type": {
|
|
1696
1697
|
"text": "string"
|
|
1697
1698
|
},
|
|
1699
|
+
"default": "''",
|
|
1698
1700
|
"fieldName": "resourceName",
|
|
1699
1701
|
"inheritedFrom": {
|
|
1700
1702
|
"name": "BaseDatasource",
|
|
@@ -30,104 +30,118 @@ declare class ConcreteDatasource extends BaseDatasource {
|
|
|
30
30
|
handleStreamUpdates(updatedRows: any[]): void;
|
|
31
31
|
}
|
|
32
32
|
declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
38
|
cloneNode(deep?: boolean): Node;
|
|
39
39
|
deepClone(): Node;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
40
|
+
get shouldRunDisconnect(): boolean;
|
|
41
|
+
get shouldRunConnect(): boolean;
|
|
42
|
+
#_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
43
|
+
#_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
44
44
|
connectedCallback(): void;
|
|
45
45
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
46
|
-
$emit(type: string, detail?: any, options?: Omit<CustomEventInit
|
|
46
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
|
|
47
47
|
disconnectedCallback(): void;
|
|
48
48
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
49
49
|
accessKey: string;
|
|
50
50
|
readonly accessKeyLabel: string;
|
|
51
51
|
autocapitalize: string;
|
|
52
|
+
autocorrect: boolean;
|
|
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;
|
|
62
60
|
readonly offsetLeft: number;
|
|
63
|
-
readonly offsetParent: Element;
|
|
61
|
+
readonly offsetParent: Element | null;
|
|
64
62
|
readonly offsetTop: number;
|
|
65
63
|
readonly offsetWidth: number;
|
|
66
64
|
outerText: string;
|
|
65
|
+
popover: string | null;
|
|
67
66
|
spellcheck: boolean;
|
|
68
67
|
title: string;
|
|
69
68
|
translate: boolean;
|
|
69
|
+
writingSuggestions: string;
|
|
70
70
|
attachInternals(): ElementInternals;
|
|
71
71
|
click(): void;
|
|
72
|
+
hidePopover(): void;
|
|
73
|
+
showPopover(): void;
|
|
74
|
+
togglePopover(options?: boolean): boolean;
|
|
72
75
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
73
76
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
74
|
-
removeEventListener<
|
|
77
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
75
78
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
76
79
|
readonly attributes: NamedNodeMap;
|
|
77
|
-
|
|
80
|
+
get classList(): DOMTokenList;
|
|
81
|
+
set classList(value: string): any;
|
|
78
82
|
className: string;
|
|
79
83
|
readonly clientHeight: number;
|
|
80
84
|
readonly clientLeft: number;
|
|
81
85
|
readonly clientTop: number;
|
|
82
86
|
readonly clientWidth: number;
|
|
87
|
+
readonly currentCSSZoom: number;
|
|
83
88
|
id: string;
|
|
89
|
+
innerHTML: string;
|
|
84
90
|
readonly localName: string;
|
|
85
|
-
readonly namespaceURI: string;
|
|
91
|
+
readonly namespaceURI: string | null;
|
|
86
92
|
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
87
93
|
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
88
94
|
outerHTML: string;
|
|
89
95
|
readonly ownerDocument: Document;
|
|
90
|
-
|
|
91
|
-
|
|
96
|
+
get part(): DOMTokenList;
|
|
97
|
+
set part(value: string): any;
|
|
98
|
+
readonly prefix: string | null;
|
|
92
99
|
readonly scrollHeight: number;
|
|
93
100
|
scrollLeft: number;
|
|
94
101
|
scrollTop: number;
|
|
95
102
|
readonly scrollWidth: number;
|
|
96
|
-
readonly shadowRoot: ShadowRoot;
|
|
103
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
97
104
|
slot: string;
|
|
98
105
|
readonly tagName: string;
|
|
99
106
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
100
|
-
|
|
101
|
-
closest<
|
|
107
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
108
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
|
109
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
|
110
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
|
102
111
|
closest<E extends Element = Element>(selectors: string): E;
|
|
103
|
-
|
|
104
|
-
|
|
112
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
113
|
+
getAttribute(qualifiedName: string): string | null;
|
|
114
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
105
115
|
getAttributeNames(): string[];
|
|
106
|
-
getAttributeNode(qualifiedName: string): Attr;
|
|
107
|
-
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
116
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
117
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
108
118
|
getBoundingClientRect(): DOMRect;
|
|
109
119
|
getClientRects(): DOMRectList;
|
|
110
120
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
111
|
-
getElementsByTagName<
|
|
112
|
-
getElementsByTagName<
|
|
121
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
122
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
123
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
124
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
113
125
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
114
126
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
115
127
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
116
|
-
getElementsByTagNameNS(
|
|
128
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
129
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
130
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
117
131
|
hasAttribute(qualifiedName: string): boolean;
|
|
118
|
-
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
132
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
119
133
|
hasAttributes(): boolean;
|
|
120
134
|
hasPointerCapture(pointerId: number): boolean;
|
|
121
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
122
|
-
insertAdjacentHTML(position: InsertPosition,
|
|
135
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
136
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
123
137
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
124
138
|
matches(selectors: string): boolean;
|
|
125
139
|
releasePointerCapture(pointerId: number): void;
|
|
126
140
|
removeAttribute(qualifiedName: string): void;
|
|
127
|
-
removeAttributeNS(namespace: string, localName: string): void;
|
|
141
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
128
142
|
removeAttributeNode(attr: Attr): Attr;
|
|
129
143
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
130
|
-
requestPointerLock(): void
|
|
144
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
131
145
|
scroll(options?: ScrollToOptions): void;
|
|
132
146
|
scroll(x: number, y: number): void;
|
|
133
147
|
scrollBy(options?: ScrollToOptions): void;
|
|
@@ -136,220 +150,244 @@ declare const ChartDatasource_base: (new (...args: any[]) => {
|
|
|
136
150
|
scrollTo(options?: ScrollToOptions): void;
|
|
137
151
|
scrollTo(x: number, y: number): void;
|
|
138
152
|
setAttribute(qualifiedName: string, value: string): void;
|
|
139
|
-
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
140
|
-
setAttributeNode(attr: Attr): Attr;
|
|
141
|
-
setAttributeNodeNS(attr: Attr): Attr;
|
|
153
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
154
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
155
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
156
|
+
setHTMLUnsafe(html: string): void;
|
|
142
157
|
setPointerCapture(pointerId: number): void;
|
|
143
158
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
144
159
|
webkitMatchesSelector(selectors: string): boolean;
|
|
160
|
+
textContent: string;
|
|
145
161
|
readonly baseURI: string;
|
|
146
162
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
147
|
-
readonly firstChild: ChildNode;
|
|
163
|
+
readonly firstChild: ChildNode | null;
|
|
148
164
|
readonly isConnected: boolean;
|
|
149
|
-
readonly lastChild: ChildNode;
|
|
150
|
-
readonly nextSibling: ChildNode;
|
|
165
|
+
readonly lastChild: ChildNode | null;
|
|
166
|
+
readonly nextSibling: ChildNode | null;
|
|
151
167
|
readonly nodeName: string;
|
|
152
168
|
readonly nodeType: number;
|
|
153
|
-
nodeValue: string;
|
|
154
|
-
readonly parentElement: HTMLElement;
|
|
155
|
-
readonly parentNode: ParentNode;
|
|
156
|
-
readonly previousSibling: ChildNode;
|
|
157
|
-
textContent: string;
|
|
169
|
+
nodeValue: string | null;
|
|
170
|
+
readonly parentElement: HTMLElement | null;
|
|
171
|
+
readonly parentNode: ParentNode | null;
|
|
172
|
+
readonly previousSibling: ChildNode | null;
|
|
158
173
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
159
174
|
compareDocumentPosition(other: Node): number;
|
|
160
|
-
contains(other: Node): boolean;
|
|
175
|
+
contains(other: Node | null): boolean;
|
|
161
176
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
162
177
|
hasChildNodes(): boolean;
|
|
163
|
-
insertBefore<
|
|
164
|
-
isDefaultNamespace(namespace: string): boolean;
|
|
165
|
-
isEqualNode(otherNode: Node): boolean;
|
|
166
|
-
isSameNode(otherNode: Node): boolean;
|
|
167
|
-
lookupNamespaceURI(prefix: string): string;
|
|
168
|
-
lookupPrefix(namespace: string): string;
|
|
178
|
+
insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
|
|
179
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
180
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
181
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
182
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
183
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
169
184
|
normalize(): void;
|
|
170
|
-
removeChild<
|
|
171
|
-
replaceChild<
|
|
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
|
|
185
|
+
removeChild<T_1 extends Node>(child: T_1): T_1;
|
|
186
|
+
replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
|
|
187
|
+
readonly ELEMENT_NODE: 1;
|
|
188
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
189
|
+
readonly TEXT_NODE: 3;
|
|
190
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
191
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
192
|
+
readonly ENTITY_NODE: 6;
|
|
193
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
194
|
+
readonly COMMENT_NODE: 8;
|
|
195
|
+
readonly DOCUMENT_NODE: 9;
|
|
196
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
197
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
198
|
+
readonly NOTATION_NODE: 12;
|
|
199
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
200
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
201
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
202
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
203
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
204
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
190
205
|
dispatchEvent(event: Event): boolean;
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
206
|
+
ariaActiveDescendantElement: Element | null;
|
|
207
|
+
ariaAtomic: string | null;
|
|
208
|
+
ariaAutoComplete: string | null;
|
|
209
|
+
ariaBrailleLabel: string | null;
|
|
210
|
+
ariaBrailleRoleDescription: string | null;
|
|
211
|
+
ariaBusy: string | null;
|
|
212
|
+
ariaChecked: string | null;
|
|
213
|
+
ariaColCount: string | null;
|
|
214
|
+
ariaColIndex: string | null;
|
|
215
|
+
ariaColIndexText: string | null;
|
|
216
|
+
ariaColSpan: string | null;
|
|
217
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
218
|
+
ariaCurrent: string | null;
|
|
219
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
220
|
+
ariaDescription: string | null;
|
|
221
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
222
|
+
ariaDisabled: string | null;
|
|
223
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
224
|
+
ariaExpanded: string | null;
|
|
225
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
226
|
+
ariaHasPopup: string | null;
|
|
227
|
+
ariaHidden: string | null;
|
|
228
|
+
ariaInvalid: string | null;
|
|
229
|
+
ariaKeyShortcuts: string | null;
|
|
230
|
+
ariaLabel: string | null;
|
|
231
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
232
|
+
ariaLevel: string | null;
|
|
233
|
+
ariaLive: string | null;
|
|
234
|
+
ariaModal: string | null;
|
|
235
|
+
ariaMultiLine: string | null;
|
|
236
|
+
ariaMultiSelectable: string | null;
|
|
237
|
+
ariaOrientation: string | null;
|
|
238
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
239
|
+
ariaPlaceholder: string | null;
|
|
240
|
+
ariaPosInSet: string | null;
|
|
241
|
+
ariaPressed: string | null;
|
|
242
|
+
ariaReadOnly: string | null;
|
|
243
|
+
ariaRelevant: string | null;
|
|
244
|
+
ariaRequired: string | null;
|
|
245
|
+
ariaRoleDescription: string | null;
|
|
246
|
+
ariaRowCount: string | null;
|
|
247
|
+
ariaRowIndex: string | null;
|
|
248
|
+
ariaRowIndexText: string | null;
|
|
249
|
+
ariaRowSpan: string | null;
|
|
250
|
+
ariaSelected: string | null;
|
|
251
|
+
ariaSetSize: string | null;
|
|
252
|
+
ariaSort: string | null;
|
|
253
|
+
ariaValueMax: string | null;
|
|
254
|
+
ariaValueMin: string | null;
|
|
255
|
+
ariaValueNow: string | null;
|
|
256
|
+
ariaValueText: string | null;
|
|
257
|
+
role: string | null;
|
|
258
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
232
259
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
233
|
-
after(...nodes: (
|
|
234
|
-
before(...nodes: (
|
|
260
|
+
after(...nodes: (Node | string)[]): void;
|
|
261
|
+
before(...nodes: (Node | string)[]): void;
|
|
235
262
|
remove(): void;
|
|
236
|
-
replaceWith(...nodes: (
|
|
237
|
-
|
|
238
|
-
readonly
|
|
239
|
-
readonly previousElementSibling: Element;
|
|
263
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
264
|
+
readonly nextElementSibling: Element | null;
|
|
265
|
+
readonly previousElementSibling: Element | null;
|
|
240
266
|
readonly childElementCount: number;
|
|
241
267
|
readonly children: HTMLCollection;
|
|
242
|
-
readonly firstElementChild: Element;
|
|
243
|
-
readonly lastElementChild: Element;
|
|
244
|
-
append(...nodes: (
|
|
245
|
-
prepend(...nodes: (
|
|
246
|
-
querySelector<
|
|
247
|
-
querySelector<
|
|
248
|
-
querySelector<
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
querySelectorAll<
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
readonly
|
|
268
|
+
readonly firstElementChild: Element | null;
|
|
269
|
+
readonly lastElementChild: Element | null;
|
|
270
|
+
append(...nodes: (Node | string)[]): void;
|
|
271
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
272
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
273
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
274
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
275
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
276
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
277
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
278
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
279
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
280
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
281
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
282
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
283
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
284
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
285
|
+
get style(): CSSStyleDeclaration;
|
|
286
|
+
set style(cssText: string): any;
|
|
258
287
|
contentEditable: string;
|
|
259
288
|
enterKeyHint: string;
|
|
260
289
|
inputMode: string;
|
|
261
290
|
readonly isContentEditable: boolean;
|
|
262
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
263
|
-
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
264
|
-
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
265
|
-
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
266
|
-
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
267
|
-
onauxclick: (this: GlobalEventHandlers, ev:
|
|
268
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
291
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
292
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
293
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
294
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
295
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
296
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
297
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
298
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
299
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
300
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
301
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
302
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
303
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
304
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
305
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
306
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
308
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
309
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
310
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
311
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
312
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
313
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
314
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
315
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
316
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
317
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
318
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
319
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
320
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
321
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
322
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
323
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
324
|
+
onerror: OnErrorEventHandler;
|
|
325
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
326
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
327
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
328
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
329
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
330
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
331
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
332
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
333
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
334
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
335
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
336
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
337
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
338
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
339
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
340
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
341
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
342
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
343
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
344
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
345
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
346
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
347
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
348
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
349
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
350
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
351
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
352
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
353
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
354
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
355
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
356
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
357
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
358
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
359
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
360
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
361
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
362
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
363
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
364
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
365
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
366
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
367
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
368
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
369
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
370
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
371
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
372
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
373
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
374
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
375
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
376
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
377
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
378
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
379
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
380
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
381
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
382
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
383
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
384
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
385
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
386
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
387
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
388
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
389
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
390
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
353
391
|
autofocus: boolean;
|
|
354
392
|
readonly dataset: DOMStringMap;
|
|
355
393
|
nonce?: string;
|