@genesislcap/grid-pro 15.20.2 → 15.21.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.
- package/dist/custom-elements.json +2161 -163
- package/dist/dts/datasource/base.datasource.d.ts +17 -3
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/base.types.d.ts +1 -1
- package/dist/dts/datasource/base.types.d.ts.map +1 -1
- package/dist/dts/datasource/datasource.types.d.ts +5 -2
- package/dist/dts/datasource/datasource.types.d.ts.map +1 -1
- package/dist/dts/datasource/filter.utils.d.ts +40 -0
- package/dist/dts/datasource/filter.utils.d.ts.map +1 -0
- package/dist/dts/datasource/index.d.ts +2 -0
- package/dist/dts/datasource/index.d.ts.map +1 -1
- package/dist/dts/datasource/infinite.datasource.d.ts +464 -0
- package/dist/dts/datasource/infinite.datasource.d.ts.map +1 -0
- package/dist/dts/datasource/infinite.resource.d.ts +231 -0
- package/dist/dts/datasource/infinite.resource.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.datasource.d.ts +0 -2
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-base.d.ts +1 -1
- package/dist/dts/datasource/server-side.resource-base.d.ts.map +1 -1
- package/dist/dts/grid-pro-beta.d.ts +37 -2
- package/dist/dts/grid-pro-beta.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts +20 -1
- package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +0 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +6 -0
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/react.d.ts +25 -1
- package/dist/dts/utils/map.d.ts +2 -2
- package/dist/dts/utils/map.d.ts.map +1 -1
- package/dist/esm/datasource/base.datasource.js +39 -2
- package/dist/esm/datasource/filter.utils.js +241 -0
- package/dist/esm/datasource/index.js +2 -0
- package/dist/esm/datasource/infinite.datasource.js +373 -0
- package/dist/esm/datasource/infinite.resource.js +581 -0
- package/dist/esm/datasource/server-side.datasource.js +0 -38
- package/dist/esm/datasource/server-side.grid-definitions.js +1 -1
- package/dist/esm/datasource/server-side.resource-base.js +7 -105
- package/dist/esm/grid-pro-beta.js +73 -6
- package/dist/esm/grid-pro-genesis-datasource/datasource-events.types.js +3 -0
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +0 -3
- package/dist/esm/grid-pro.js +12 -1
- package/dist/grid-pro.api.json +1355 -477
- package/dist/grid-pro.d.ts +962 -165
- package/dist/react.cjs +84 -0
- package/dist/react.mjs +83 -0
- package/package.json +13 -13
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ColDef, ColumnState, GridOptions } from '@ag-grid-community/core';
|
|
2
|
-
import { Connect, Datasource, DatasourceOptions, DatasourceStatus, FieldMetadata, FieldTypeEnum } from '@genesislcap/foundation-comms';
|
|
2
|
+
import { Connect, Datasource, DatasourceOptions, DatasourceStatus, FieldMetadata, FieldTypeEnum, IndexDetail } from '@genesislcap/foundation-comms';
|
|
3
3
|
import { BehaviorSubject, Subscription } from 'rxjs';
|
|
4
4
|
import { type BaseDatasourceErrorEventDetail } from './base.types';
|
|
5
5
|
/**
|
|
@@ -49,7 +49,12 @@ declare const GenesisGridDatasourceElement_base: new () => {
|
|
|
49
49
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
50
50
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
51
51
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
52
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options
|
|
52
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options
|
|
53
|
+
/**
|
|
54
|
+
* Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.
|
|
55
|
+
* @remarks DATASERVER only.
|
|
56
|
+
*/
|
|
57
|
+
?: boolean | EventListenerOptions): void;
|
|
53
58
|
readonly attributes: NamedNodeMap;
|
|
54
59
|
get classList(): DOMTokenList;
|
|
55
60
|
set classList(value: string): any;
|
|
@@ -558,7 +563,16 @@ export declare class GridProBaseDatasource extends GenesisGridDatasourceElement
|
|
|
558
563
|
protected handleStreamUpdates(updatedRows: any[]): void;
|
|
559
564
|
protected applyAllTransactions(): void;
|
|
560
565
|
private applyMappedTransaction;
|
|
561
|
-
|
|
566
|
+
/**
|
|
567
|
+
* Builds the index map used for server-side sorting from the resource's metadata.
|
|
568
|
+
* @remarks Real DATASERVER indexes keep their names; when the resource also (or only) reports
|
|
569
|
+
* SORTABLE_FIELDS - the synthetic bucket a req/rep resource uses for its sortable columns -
|
|
570
|
+
* those fields are merged in under the synthetic `SORTABLE_FIELDS` key. Note an index with no
|
|
571
|
+
* NAME lands under `undefined`: its fields count as indexed, but it cannot be named in an
|
|
572
|
+
* ORDER_BY, so sorting-related consumers must consider named entries only.
|
|
573
|
+
* @internal
|
|
574
|
+
*/
|
|
575
|
+
protected getResourceIndexes(availableIndexes: IndexDetail[], availableSortableFields: string[]): Map<string, string[]>;
|
|
562
576
|
/**
|
|
563
577
|
* Maps the transaction data to the row data mapper function, if it exists.
|
|
564
578
|
* @param transaction - The transaction data to be mapped.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.datasource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAChF,OAAO,EACL,OAAO,EACP,UAAU,EAGV,iBAAiB,EACjB,gBAAgB,EAChB,aAAa,EACb,aAAa,
|
|
1
|
+
{"version":3,"file":"base.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.datasource.ts"],"names":[],"mappings":"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"}
|
|
@@ -34,7 +34,7 @@ export type ServerSideDatasourceOptions = {
|
|
|
34
34
|
onDataAvailableFunc?: () => void;
|
|
35
35
|
resourceName: string;
|
|
36
36
|
resourceParams?: DataserverParams | RequestParams;
|
|
37
|
-
resourceIndexes?: Map<string, [
|
|
37
|
+
resourceIndexes?: Map<string, string[]>;
|
|
38
38
|
resourceColDefs?: MetadataDetail[];
|
|
39
39
|
maxRows?: number;
|
|
40
40
|
maxView?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.types.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,wBAAwB,EACxB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,aAAa,EACb,UAAU,EACX,MAAM,+BAA+B,CAAC;AAEvC;;;;;GAKG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACxC,0BAA0B,CAAC,EAAE,CAC3B,cAAc,CAAC,EAAE,GAAG,KACjB,OAAO,CAAC,gBAAgB,CAAC,wBAAwB,CAAC,CAAC,CAAC;IACzD,uBAAuB,CAAC,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,KAAK,OAAO,CAAC,mBAAmB,CAAC,CAAC;IACjF;;;OAGG;IACH,sBAAsB,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,KAAK,OAAO,CAAC;QACjD,MAAM,EAAE,gBAAgB,CAAC,mBAAmB,CAAC,CAAC;QAC9C,UAAU,EAAE,UAAU,CAAC;KACxB,CAAC,CAAC;IACH;;;OAGG;IACH,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAC;IAC5D;;;OAGG;IACH,2BAA2B,CAAC,EAAE,MAAM,IAAI,CAAC;IACzC,sBAAsB,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACxD,gBAAgB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3D,8DAA8D;IAC9D,qBAAqB,CAAC,EAAE,MAAM,IAAI,CAAC;IACnC,qEAAqE;IACrE,mBAAmB,CAAC,EAAE,MAAM,IAAI,CAAC;IACjC,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,gBAAgB,GAAG,aAAa,CAAC;IAClD,eAAe,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"base.types.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,wBAAwB,EACxB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,aAAa,EACb,UAAU,EACX,MAAM,+BAA+B,CAAC;AAEvC;;;;;GAKG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACxC,0BAA0B,CAAC,EAAE,CAC3B,cAAc,CAAC,EAAE,GAAG,KACjB,OAAO,CAAC,gBAAgB,CAAC,wBAAwB,CAAC,CAAC,CAAC;IACzD,uBAAuB,CAAC,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,KAAK,OAAO,CAAC,mBAAmB,CAAC,CAAC;IACjF;;;OAGG;IACH,sBAAsB,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,KAAK,OAAO,CAAC;QACjD,MAAM,EAAE,gBAAgB,CAAC,mBAAmB,CAAC,CAAC;QAC9C,UAAU,EAAE,UAAU,CAAC;KACxB,CAAC,CAAC;IACH;;;OAGG;IACH,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAC;IAC5D;;;OAGG;IACH,2BAA2B,CAAC,EAAE,MAAM,IAAI,CAAC;IACzC,sBAAsB,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACxD,gBAAgB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3D,8DAA8D;IAC9D,qBAAqB,CAAC,EAAE,MAAM,IAAI,CAAC;IACnC,qEAAqE;IACrE,mBAAmB,CAAC,EAAE,MAAM,IAAI,CAAC;IACjC,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,gBAAgB,GAAG,aAAa,CAAC;IAClD,eAAe,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACxC,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IAEnC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB;;;CAG3B,CAAC;AAEX;;;GAGG;AACH,MAAM,MAAM,8BAA8B,GAAG;IAC3C,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EACA,YAAY,GACZ,qBAAqB,GACrB,eAAe,GACf,UAAU,GACV,QAAQ,GACR,UAAU,GACV,SAAS,CAAC;CACf,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,wBAAwB,GAAG,WAAW,CAAC,8BAA8B,CAAC,CAAC"}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Available datasource types
|
|
3
3
|
* @remarks - This type is used to define what kind of datasource will be used in components like entity manager.
|
|
4
|
-
*
|
|
4
|
+
* Available options:
|
|
5
|
+
* - 'client' for `grid-pro-client-side-datasource` (Client-Side Row Model - loads all data into browser)
|
|
6
|
+
* - 'server' for `grid-pro-server-side-datasource` (Server-Side Row Model - Enterprise lazy loading)
|
|
7
|
+
* - 'infinite' for `grid-pro-infinite-datasource` (Infinite Row Model - Community lazy loading)
|
|
5
8
|
* @public
|
|
6
9
|
*/
|
|
7
|
-
export type DatasourceType = 'client' | 'server';
|
|
10
|
+
export type DatasourceType = 'client' | 'server' | 'infinite';
|
|
8
11
|
//# sourceMappingURL=datasource.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datasource.types.d.ts","sourceRoot":"","sources":["../../../src/datasource/datasource.types.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"datasource.types.d.ts","sourceRoot":"","sources":["../../../src/datasource/datasource.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { MetadataDetail } from '@genesislcap/foundation-comms';
|
|
2
|
+
/**
|
|
3
|
+
* Converts text filters to Genesis criteria strings.
|
|
4
|
+
* @param filterModel - The AG Grid filter model
|
|
5
|
+
* @param fieldName - The field name being filtered
|
|
6
|
+
* @returns Genesis criteria string or null
|
|
7
|
+
*/
|
|
8
|
+
export declare function convertTextFilterToCriteria(filterModel: any, fieldName: string): string | null;
|
|
9
|
+
/**
|
|
10
|
+
* Converts set filters (for enum fields) to Genesis criteria strings.
|
|
11
|
+
* @param filterModel - The AG Grid filter model
|
|
12
|
+
* @param fieldName - The field name being filtered
|
|
13
|
+
* @param colMeta - Column metadata for detecting all values
|
|
14
|
+
* @returns Genesis criteria string or null
|
|
15
|
+
*/
|
|
16
|
+
export declare function convertSetFilterToCriteria(filterModel: any, fieldName: string, colMeta?: MetadataDetail): string | null;
|
|
17
|
+
/**
|
|
18
|
+
* Converts number filters to Genesis criteria strings.
|
|
19
|
+
* @param filterModel - The AG Grid filter model
|
|
20
|
+
* @param fieldName - The field name being filtered
|
|
21
|
+
* @returns Genesis criteria string or null
|
|
22
|
+
*/
|
|
23
|
+
export declare function convertNumberFilterToCriteria(filterModel: any, fieldName: string): string | null;
|
|
24
|
+
/**
|
|
25
|
+
* Converts date filters to Genesis criteria strings.
|
|
26
|
+
* @param filterModel - The AG Grid filter model
|
|
27
|
+
* @param fieldName - The field name being filtered
|
|
28
|
+
* @returns Genesis criteria string or null
|
|
29
|
+
*/
|
|
30
|
+
export declare function convertDateFilterToCriteria(filterModel: any, fieldName: string): string | null;
|
|
31
|
+
/**
|
|
32
|
+
* Converts AG Grid filter model to Genesis criteria string.
|
|
33
|
+
* This is the main entry point for converting filters.
|
|
34
|
+
* Handles both simple filters and multi-filters (filterType: "multi" with filterModels array).
|
|
35
|
+
* @param filterModel - The AG Grid filter model
|
|
36
|
+
* @param colDefs - Column definitions for metadata (optional but recommended)
|
|
37
|
+
* @returns Genesis criteria string
|
|
38
|
+
*/
|
|
39
|
+
export declare function convertFilterModelToCriteria(filterModel: any, colDefs?: MetadataDetail[]): string;
|
|
40
|
+
//# sourceMappingURL=filter.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter.utils.d.ts","sourceRoot":"","sources":["../../../src/datasource/filter.utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAqBpE;;;;;GAKG;AACH,wBAAgB,2BAA2B,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAyB9F;AAED;;;;;;GAMG;AACH,wBAAgB,0BAA0B,CACxC,WAAW,EAAE,GAAG,EAChB,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,cAAc,GACvB,MAAM,GAAG,IAAI,CAwCf;AAED;;;;;GAKG;AACH,wBAAgB,6BAA6B,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAiChG;AAED;;;;;GAKG;AACH,wBAAgB,2BAA2B,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAmC9F;AA6DD;;;;;;;GAOG;AACH,wBAAgB,4BAA4B,CAAC,WAAW,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,cAAc,EAAE,GAAG,MAAM,CAqBjG"}
|
|
@@ -3,6 +3,8 @@ export * from './base.types';
|
|
|
3
3
|
export * from './client-side.datasource';
|
|
4
4
|
export * from './error-handler.dialog';
|
|
5
5
|
export * from './datasource.types';
|
|
6
|
+
export * from './filter.utils';
|
|
7
|
+
export * from './infinite.datasource';
|
|
6
8
|
export * from './row-match.types';
|
|
7
9
|
export * from './row-match.tracker';
|
|
8
10
|
export * from './row-match.classes';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/datasource/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/datasource/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,464 @@
|
|
|
1
|
+
import { Connect, ConnectEvents, Datasource } from '@genesislcap/foundation-comms';
|
|
2
|
+
import { GridProBaseDatasource } from './base.datasource';
|
|
3
|
+
declare const GridProInfiniteDatasource_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 GridProBaseDatasource;
|
|
370
|
+
/**
|
|
371
|
+
* A Genesis Datasource element for AG Grid's Infinite Row Model.
|
|
372
|
+
* @remarks
|
|
373
|
+
* The Infinite Row Model is part of AG Grid Community (free) and provides:
|
|
374
|
+
* - Lazy loading of data as user scrolls
|
|
375
|
+
* - Server-side sorting and filtering
|
|
376
|
+
* - Simple infinite scroll without grouping/aggregation
|
|
377
|
+
* - Live updates for DATASERVER resources: the DATA_LOGON stream the grid pages over pushes
|
|
378
|
+
* every change, so no flag or second subscription is needed
|
|
379
|
+
*
|
|
380
|
+
* REQUEST_SERVER resources are read on demand only - a change on the server shows up when the
|
|
381
|
+
* grid re-reads (scroll, filter/sort change, or an explicit refresh), not live. The exception
|
|
382
|
+
* is a write made through this session: a commit ACK for an event listed in `pollTriggerEvents`
|
|
383
|
+
* re-reads the loaded blocks, so entity-management CRUD is reflected immediately.
|
|
384
|
+
*
|
|
385
|
+
* Unlike the other datasources, this element deliberately does not consume `deferredGridOptions`
|
|
386
|
+
* (the mechanism is being retired): grid options set there - including via entity-management's
|
|
387
|
+
* `gridOptions` with `datasource-type="infinite"` - are not applied. Set options on the grid
|
|
388
|
+
* element itself instead.
|
|
389
|
+
*
|
|
390
|
+
* Use this instead of Server-Side Row Model when you don't need Enterprise features
|
|
391
|
+
* like row grouping, aggregation, or pivoting.
|
|
392
|
+
*
|
|
393
|
+
* @see https://www.ag-grid.com/javascript-data-grid/infinite-scrolling/
|
|
394
|
+
* @beta
|
|
395
|
+
*
|
|
396
|
+
* @fires base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`
|
|
397
|
+
* @fires datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`
|
|
398
|
+
* @fires base-datasource-connected - Fired when error state is cleared after connection succeeds
|
|
399
|
+
* @fires datasource-initialize - Fired to hand off infinite row model grid options. detail: `InitializeEventDetail`
|
|
400
|
+
* @fires datasource-init - Fired when the infinite grid model should initialize data
|
|
401
|
+
* @fires datasource-schema-updated - Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`
|
|
402
|
+
* @fires set-infinite-datasource - Fired to attach or clear the infinite row model datasource. detail: `SetInfiniteDatasourceEventDetail`
|
|
403
|
+
* @fires refresh-infinite-cache - Fired to request an infinite row model refresh; `purge` drops the block cache and re-reads. detail: `RefreshInfiniteCacheEventDetail`
|
|
404
|
+
* @fires cache-filter-config - Fired to persist filter configuration for the grid
|
|
405
|
+
* @fires datasource-data-cleared - Fired when infinite row data is cleared. detail: `DataClearedEventDetail`
|
|
406
|
+
* @fires datasource-filters-restored - Fired when persisted filters are reapplied
|
|
407
|
+
*/
|
|
408
|
+
export declare class GridProInfiniteDatasource extends GridProInfiniteDatasource_base {
|
|
409
|
+
connect: Connect;
|
|
410
|
+
connectEvents: ConnectEvents;
|
|
411
|
+
datasource: Datasource;
|
|
412
|
+
request: any;
|
|
413
|
+
private indexes;
|
|
414
|
+
private infiniteDatasource;
|
|
415
|
+
/** Unsubscribes the commit-response listener behind `pollTriggerEvents`. @internal */
|
|
416
|
+
private commitResponseUnsubscribe?;
|
|
417
|
+
resourceNameChanged(oldValue: string, newValue: string): void;
|
|
418
|
+
criteriaChanged(oldCriteria: string, newCriteria: string): void;
|
|
419
|
+
connectedCallback(): void;
|
|
420
|
+
disconnectedCallback(): void;
|
|
421
|
+
deepClone(): Node;
|
|
422
|
+
/**
|
|
423
|
+
* Resets the grid data while keeping columnDefs and reloads data.
|
|
424
|
+
* @remarks This is used when the grid is already initialized and we want to reload the data due to a criteria/filter change.
|
|
425
|
+
* @beta
|
|
426
|
+
*/
|
|
427
|
+
reloadResourceData(): Promise<void>;
|
|
428
|
+
init(): Promise<void>;
|
|
429
|
+
/** @internal */
|
|
430
|
+
private clearReadyListener;
|
|
431
|
+
/** @internal */
|
|
432
|
+
private onDatasourceReady;
|
|
433
|
+
destroy(): Promise<void>;
|
|
434
|
+
restart(): Promise<void>;
|
|
435
|
+
private clearRowData;
|
|
436
|
+
/**
|
|
437
|
+
* Honours `pollTriggerEvents` without polling: a commit ACK for one of the listed events
|
|
438
|
+
* means a write went through this session, so the loaded blocks are re-read in place - the
|
|
439
|
+
* same action as `applyTransaction`, which keeps the grid's row count and scroll position.
|
|
440
|
+
* @remarks REQUEST_SERVER only. DATASERVER already receives every change on the paging
|
|
441
|
+
* subscription, so a commit-triggered re-read there would just duplicate the live push.
|
|
442
|
+
* @internal
|
|
443
|
+
*/
|
|
444
|
+
private setupCommitTriggeredRefresh;
|
|
445
|
+
/** Safe to call when the listener was never registered. @internal */
|
|
446
|
+
private teardownCommitTriggeredRefresh;
|
|
447
|
+
/**
|
|
448
|
+
* Creates a snapshot request to the server.
|
|
449
|
+
* @param existingParams - Optional existing parameters to include
|
|
450
|
+
* @returns The server response
|
|
451
|
+
*/
|
|
452
|
+
private createSnapshot;
|
|
453
|
+
/**
|
|
454
|
+
* Opens the paged DATASERVER subscription used to serve grid blocks.
|
|
455
|
+
* @remarks Deliberately a stream and not a snapshot: paging is a MORE_ROWS request against a
|
|
456
|
+
* live subscription, and a fresh DATA_LOGON would always come back with page 1.
|
|
457
|
+
* @internal
|
|
458
|
+
*/
|
|
459
|
+
private createDataserverStream;
|
|
460
|
+
private getAgColumnDefs;
|
|
461
|
+
loadMore(): void;
|
|
462
|
+
}
|
|
463
|
+
export {};
|
|
464
|
+
//# sourceMappingURL=infinite.datasource.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"infinite.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/infinite.datasource.ts"],"names":[],"mappings":"AACA,OAAO,EACL,OAAO,EACP,aAAa,EACb,UAAU,EAOX,MAAM,+BAA+B,CAAC;AAavC,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;;;;;;;;kBA4ClC,CAAC;;;;;;;;8BAmDI,CAAC,cACxB,CAAD;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAyBmC,CAAC;4IAMxB,CAAA;wFAGP,CAAC;+IAQA,CAAC;2FAMN,CAAL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BA2BsF,CAAC;;;;;;;;;;;;;;;;;;;;;;;mBAsDxB,CAAC;;;;;;;;;;;;;6BAgBlC,CAAC;8BAEd,CAAC;kBACG,CAAC;;oBAGI,CAAC;;sBAID,CAAC;oBACK,CAAC;;;;;;;;gDAU9B,CAAD;;;;;;;;;;;;;;;;;;uBA+BM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAsFD,CAAC;yBAA8E,CAAC;UAC9C,GAAG;WAC1C,GAAE;;gBAC6B,GAAG;;;;;;;WAYhC,GAFC;YAAiD,GAAG;;;;;;;;;;;oBAmBqiB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAiiO,CAAC;cAA6F,CAAC;eAA8F,CAAC;gBAA+F,CAAC;;;;;;;;;;;;;;SAAulC,CAAC;;;iBAA+E,CAAC;;AAlZ1kS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,qBAGa,yBAA0B,SAAQ,8BAAqC;IACzE,OAAO,EAAG,OAAO,CAAC;IACZ,aAAa,EAAG,aAAa,CAAC;IACjC,UAAU,EAAG,UAAU,CAAC;IAExB,OAAO,EAAE,GAAG,CAAM;IAE9B,OAAO,CAAC,OAAO,CAAwB;IACvC,OAAO,CAAC,kBAAkB,CAA4B;IAEtD,sFAAsF;IACtF,OAAO,CAAC,yBAAyB,CAAC,CAAa;IAE/C,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAOtD,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM;IAWxD,iBAAiB;IAUjB,oBAAoB;IAUX,SAAS,IAAI,IAAI;IAM1B;;;;OAIG;IACG,kBAAkB,IAAI,OAAO,CAAC,IAAI,CAAC;IAuBnC,IAAI;IAoDV,gBAAgB;IAChB,OAAO,CAAC,kBAAkB;IAI1B,gBAAgB;IAChB,OAAO,CAAC,iBAAiB,CAsEvB;IAEa,OAAO;IAmBP,OAAO;IAKtB,OAAO,CAAC,YAAY;IAapB;;;;;;;OAOG;IACH,OAAO,CAAC,2BAA2B;IAkBnC,qEAAqE;IACrE,OAAO,CAAC,8BAA8B;IAKtC;;;;OAIG;YACW,cAAc;IAO5B;;;;;OAKG;IACH,OAAO,CAAC,sBAAsB;YAchB,eAAe;IAsCpB,QAAQ;CAMlB"}
|