@genesislcap/grid-pro 14.107.0 → 14.107.1-alpha-afbc4d7.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/dts/datasource/server-side.datasource.d.ts +37 -29
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +51 -30
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +38 -33
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/grid-pro.api.json +597 -1
- package/dist/grid-pro.d.ts +125 -92
- package/docs/api/grid-pro.formatdateextra.md +34 -0
- package/docs/api/grid-pro.getcolumntype.md +33 -0
- package/docs/api/grid-pro.getfilterbyfieldtype.md +33 -0
- package/docs/api/grid-pro.getfilterparamsbyfieldtype.md +33 -0
- package/docs/api/grid-pro.gridproserversidedatasource.md +30 -0
- package/docs/api/grid-pro.gridproserversidedatasource.pagination.md +14 -0
- package/docs/api/grid-pro.gridproserversidedatasource.params.md +14 -0
- package/docs/api/grid-pro.gridproserversidedatasource.rowid.md +14 -0
- package/docs/api/grid-pro.md +7 -0
- package/docs/api/grid-pro.streamdatasource._constructor_.md +23 -0
- package/docs/api/grid-pro.streamdatasource.auth.md +14 -0
- package/docs/api/grid-pro.streamdatasource.connect.md +14 -0
- package/docs/api/grid-pro.streamdatasource.dataserverstream.md +14 -0
- package/docs/api/grid-pro.streamdatasource.md +34 -0
- package/docs/api/grid-pro.streamdatasource.resourceparams.md +14 -0
- package/docs/api/grid-pro.streamdatasource.streamsourceref.md +14 -0
- package/docs/api/grid-pro.streamdatasourceoptions.md +31 -0
- package/docs/api-report.md +2 -0
- package/package.json +9 -9
package/dist/grid-pro.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
|
|
1
3
|
import { ActionMenuItem } from '@genesislcap/foundation-ui';
|
|
2
4
|
import { Auth } from '@genesislcap/foundation-comms';
|
|
3
5
|
import { Binding } from '@microsoft/fast-element';
|
|
@@ -1099,10 +1101,7 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1099
1101
|
cloneNode(deep?: boolean): Node;
|
|
1100
1102
|
deepClone(): Node;
|
|
1101
1103
|
readonly shouldRunDisconnect: boolean;
|
|
1102
|
-
readonly shouldRunConnect: boolean;
|
|
1103
|
-
* Whether to use the `applyTransactionAsync` function for *update* transactions
|
|
1104
|
-
* @remarks Defaults to true
|
|
1105
|
-
*/
|
|
1104
|
+
readonly shouldRunConnect: boolean;
|
|
1106
1105
|
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
1107
1106
|
"__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
|
1108
1107
|
connectedCallback(): void;
|
|
@@ -1158,8 +1157,10 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1158
1157
|
slot: string;
|
|
1159
1158
|
readonly tagName: string;
|
|
1160
1159
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1160
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1161
1161
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
1162
1162
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
1163
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
1163
1164
|
closest<E extends Element = Element>(selectors: string): E;
|
|
1164
1165
|
getAttribute(qualifiedName: string): string;
|
|
1165
1166
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -1169,11 +1170,14 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1169
1170
|
getBoundingClientRect(): DOMRect;
|
|
1170
1171
|
getClientRects(): DOMRectList;
|
|
1171
1172
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1172
|
-
getElementsByTagName<
|
|
1173
|
-
getElementsByTagName<
|
|
1173
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
1174
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
1175
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
1176
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
1174
1177
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1175
1178
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1176
1179
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
1180
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
1177
1181
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
1178
1182
|
hasAttribute(qualifiedName: string): boolean;
|
|
1179
1183
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -1230,24 +1234,24 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1230
1234
|
normalize(): void;
|
|
1231
1235
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
1232
1236
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
1233
|
-
readonly
|
|
1234
|
-
readonly
|
|
1235
|
-
readonly
|
|
1236
|
-
readonly
|
|
1237
|
-
readonly
|
|
1238
|
-
readonly
|
|
1239
|
-
readonly
|
|
1240
|
-
readonly
|
|
1241
|
-
readonly
|
|
1242
|
-
readonly
|
|
1243
|
-
readonly
|
|
1244
|
-
readonly
|
|
1245
|
-
readonly
|
|
1246
|
-
readonly
|
|
1247
|
-
readonly
|
|
1248
|
-
readonly
|
|
1249
|
-
readonly
|
|
1250
|
-
readonly
|
|
1237
|
+
readonly ELEMENT_NODE: 1;
|
|
1238
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
1239
|
+
readonly TEXT_NODE: 3;
|
|
1240
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
1241
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
1242
|
+
readonly ENTITY_NODE: 6;
|
|
1243
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
1244
|
+
readonly COMMENT_NODE: 8;
|
|
1245
|
+
readonly DOCUMENT_NODE: 9;
|
|
1246
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
1247
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
1248
|
+
readonly NOTATION_NODE: 12;
|
|
1249
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
1250
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
1251
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
1252
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
1253
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
1254
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
1251
1255
|
dispatchEvent(event: Event): boolean;
|
|
1252
1256
|
ariaAtomic: string;
|
|
1253
1257
|
ariaAutoComplete: string;
|
|
@@ -1255,7 +1259,6 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1255
1259
|
ariaChecked: string;
|
|
1256
1260
|
ariaColCount: string;
|
|
1257
1261
|
ariaColIndex: string;
|
|
1258
|
-
ariaColIndexText: string;
|
|
1259
1262
|
ariaColSpan: string;
|
|
1260
1263
|
ariaCurrent: string;
|
|
1261
1264
|
ariaDisabled: string;
|
|
@@ -1279,7 +1282,6 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1279
1282
|
ariaRoleDescription: string;
|
|
1280
1283
|
ariaRowCount: string;
|
|
1281
1284
|
ariaRowIndex: string;
|
|
1282
|
-
ariaRowIndexText: string;
|
|
1283
1285
|
ariaRowSpan: string;
|
|
1284
1286
|
ariaSelected: string;
|
|
1285
1287
|
ariaSetSize: string;
|
|
@@ -1304,17 +1306,18 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1304
1306
|
readonly lastElementChild: Element;
|
|
1305
1307
|
append(...nodes: (string | Node)[]): void;
|
|
1306
1308
|
prepend(...nodes: (string | Node)[]): void;
|
|
1307
|
-
querySelector<
|
|
1308
|
-
querySelector<
|
|
1309
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
1310
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
1311
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
1312
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
1309
1313
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
1310
|
-
querySelectorAll<
|
|
1311
|
-
querySelectorAll<
|
|
1314
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
1315
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
1316
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
1317
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
1312
1318
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
1313
1319
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1314
1320
|
readonly assignedSlot: HTMLSlotElement;
|
|
1315
|
-
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1316
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1317
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1318
1321
|
readonly style: CSSStyleDeclaration;
|
|
1319
1322
|
contentEditable: string;
|
|
1320
1323
|
enterKeyHint: string;
|
|
@@ -1335,7 +1338,9 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1335
1338
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1336
1339
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1337
1340
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1341
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1338
1342
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1343
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1339
1344
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1340
1345
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1341
1346
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -1368,6 +1373,7 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1368
1373
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1369
1374
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1370
1375
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1376
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1371
1377
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1372
1378
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1373
1379
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1614,6 +1620,9 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1614
1620
|
"__#1@#_hasFirstLoaded": boolean;
|
|
1615
1621
|
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
|
1616
1622
|
"__#1@#_shouldForceLifecycle": boolean;
|
|
1623
|
+
/**
|
|
1624
|
+
* Allows grid data updates to be processed via and external function before applying in grid
|
|
1625
|
+
*/
|
|
1617
1626
|
cloneNode(deep?: boolean): Node;
|
|
1618
1627
|
deepClone(): Node;
|
|
1619
1628
|
readonly shouldRunDisconnect: boolean;
|
|
@@ -1655,6 +1664,11 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1655
1664
|
readonly clientHeight: number;
|
|
1656
1665
|
readonly clientLeft: number;
|
|
1657
1666
|
readonly clientTop: number;
|
|
1667
|
+
/**
|
|
1668
|
+
* Resets the datasource to its initial state.
|
|
1669
|
+
* @public
|
|
1670
|
+
* @deprecated Use `deinit` instead
|
|
1671
|
+
*/
|
|
1658
1672
|
readonly clientWidth: number;
|
|
1659
1673
|
id: string;
|
|
1660
1674
|
readonly localName: string;
|
|
@@ -1673,22 +1687,32 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1673
1687
|
slot: string;
|
|
1674
1688
|
readonly tagName: string;
|
|
1675
1689
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1690
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1676
1691
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
1677
1692
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
1693
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
1678
1694
|
closest<E extends Element = Element>(selectors: string): E;
|
|
1679
1695
|
getAttribute(qualifiedName: string): string;
|
|
1680
1696
|
getAttributeNS(namespace: string, localName: string): string;
|
|
1681
1697
|
getAttributeNames(): string[];
|
|
1682
1698
|
getAttributeNode(qualifiedName: string): Attr;
|
|
1683
1699
|
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
1684
|
-
getBoundingClientRect(): DOMRect;
|
|
1700
|
+
getBoundingClientRect(): DOMRect; /**
|
|
1701
|
+
* Clears the rowData and columnDefs for the grid.
|
|
1702
|
+
* @remarks This is called when `reloadResourceData` happens, on criteria and filters change or full `reset`.
|
|
1703
|
+
* @param withColumnDefs - Whether to clear the columnDefs as well. Defaults to true.
|
|
1704
|
+
* @internal
|
|
1705
|
+
*/
|
|
1685
1706
|
getClientRects(): DOMRectList;
|
|
1686
1707
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1687
|
-
getElementsByTagName<
|
|
1688
|
-
getElementsByTagName<
|
|
1708
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
1709
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
1710
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
1711
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
1689
1712
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1690
1713
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1691
1714
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
1715
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
1692
1716
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
1693
1717
|
hasAttribute(qualifiedName: string): boolean;
|
|
1694
1718
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -1745,24 +1769,24 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1745
1769
|
normalize(): void;
|
|
1746
1770
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
1747
1771
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
1748
|
-
readonly
|
|
1749
|
-
readonly
|
|
1750
|
-
readonly
|
|
1751
|
-
readonly
|
|
1752
|
-
readonly
|
|
1753
|
-
readonly
|
|
1754
|
-
readonly
|
|
1755
|
-
readonly
|
|
1756
|
-
readonly
|
|
1757
|
-
readonly
|
|
1758
|
-
readonly
|
|
1759
|
-
readonly
|
|
1760
|
-
readonly
|
|
1761
|
-
readonly
|
|
1762
|
-
readonly
|
|
1763
|
-
readonly
|
|
1764
|
-
readonly
|
|
1765
|
-
readonly
|
|
1772
|
+
readonly ELEMENT_NODE: 1;
|
|
1773
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
1774
|
+
readonly TEXT_NODE: 3;
|
|
1775
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
1776
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
1777
|
+
readonly ENTITY_NODE: 6;
|
|
1778
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
1779
|
+
readonly COMMENT_NODE: 8;
|
|
1780
|
+
readonly DOCUMENT_NODE: 9;
|
|
1781
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
1782
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
1783
|
+
readonly NOTATION_NODE: 12;
|
|
1784
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
1785
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
1786
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
1787
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
1788
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
1789
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
1766
1790
|
dispatchEvent(event: Event): boolean;
|
|
1767
1791
|
ariaAtomic: string;
|
|
1768
1792
|
ariaAutoComplete: string;
|
|
@@ -1770,7 +1794,6 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1770
1794
|
ariaChecked: string;
|
|
1771
1795
|
ariaColCount: string;
|
|
1772
1796
|
ariaColIndex: string;
|
|
1773
|
-
ariaColIndexText: string;
|
|
1774
1797
|
ariaColSpan: string;
|
|
1775
1798
|
ariaCurrent: string;
|
|
1776
1799
|
ariaDisabled: string;
|
|
@@ -1794,7 +1817,6 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1794
1817
|
ariaRoleDescription: string;
|
|
1795
1818
|
ariaRowCount: string;
|
|
1796
1819
|
ariaRowIndex: string;
|
|
1797
|
-
ariaRowIndexText: string;
|
|
1798
1820
|
ariaRowSpan: string;
|
|
1799
1821
|
ariaSelected: string;
|
|
1800
1822
|
ariaSetSize: string;
|
|
@@ -1819,17 +1841,18 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1819
1841
|
readonly lastElementChild: Element;
|
|
1820
1842
|
append(...nodes: (string | Node)[]): void;
|
|
1821
1843
|
prepend(...nodes: (string | Node)[]): void;
|
|
1822
|
-
querySelector<
|
|
1823
|
-
querySelector<
|
|
1844
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
1845
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
1846
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
1847
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
1824
1848
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
1825
|
-
querySelectorAll<
|
|
1826
|
-
querySelectorAll<
|
|
1849
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
1850
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
1851
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
1852
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
1827
1853
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
1828
1854
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1829
1855
|
readonly assignedSlot: HTMLSlotElement;
|
|
1830
|
-
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1831
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1832
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1833
1856
|
readonly style: CSSStyleDeclaration;
|
|
1834
1857
|
contentEditable: string;
|
|
1835
1858
|
enterKeyHint: string;
|
|
@@ -1850,7 +1873,9 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1850
1873
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1851
1874
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1852
1875
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1876
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1853
1877
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1878
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1854
1879
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1855
1880
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1856
1881
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -1883,6 +1908,7 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1883
1908
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1884
1909
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1885
1910
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1911
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1886
1912
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1887
1913
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1888
1914
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2042,8 +2068,10 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2042
2068
|
slot: string;
|
|
2043
2069
|
readonly tagName: string;
|
|
2044
2070
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
2071
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
2045
2072
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
2046
2073
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
2074
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
2047
2075
|
closest<E extends Element = Element>(selectors: string): E;
|
|
2048
2076
|
getAttribute(qualifiedName: string): string;
|
|
2049
2077
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -2053,11 +2081,14 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2053
2081
|
getBoundingClientRect(): DOMRect;
|
|
2054
2082
|
getClientRects(): DOMRectList;
|
|
2055
2083
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
2056
|
-
getElementsByTagName<
|
|
2057
|
-
getElementsByTagName<
|
|
2084
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
2085
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
2086
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
2087
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
2058
2088
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
2059
2089
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
2060
2090
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
2091
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
2061
2092
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
2062
2093
|
hasAttribute(qualifiedName: string): boolean;
|
|
2063
2094
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -2114,24 +2145,24 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2114
2145
|
normalize(): void;
|
|
2115
2146
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
2116
2147
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
2117
|
-
readonly
|
|
2118
|
-
readonly
|
|
2119
|
-
readonly
|
|
2120
|
-
readonly
|
|
2121
|
-
readonly
|
|
2122
|
-
readonly
|
|
2123
|
-
readonly
|
|
2124
|
-
readonly
|
|
2125
|
-
readonly
|
|
2126
|
-
readonly
|
|
2127
|
-
readonly
|
|
2128
|
-
readonly
|
|
2129
|
-
readonly
|
|
2130
|
-
readonly
|
|
2131
|
-
readonly
|
|
2132
|
-
readonly
|
|
2133
|
-
readonly
|
|
2134
|
-
readonly
|
|
2148
|
+
readonly ELEMENT_NODE: 1;
|
|
2149
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
2150
|
+
readonly TEXT_NODE: 3;
|
|
2151
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
2152
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
2153
|
+
readonly ENTITY_NODE: 6;
|
|
2154
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
2155
|
+
readonly COMMENT_NODE: 8;
|
|
2156
|
+
readonly DOCUMENT_NODE: 9;
|
|
2157
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
2158
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
2159
|
+
readonly NOTATION_NODE: 12;
|
|
2160
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
2161
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
2162
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
2163
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
2164
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
2165
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
2135
2166
|
dispatchEvent(event: Event): boolean;
|
|
2136
2167
|
ariaAtomic: string;
|
|
2137
2168
|
ariaAutoComplete: string;
|
|
@@ -2139,7 +2170,6 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2139
2170
|
ariaChecked: string;
|
|
2140
2171
|
ariaColCount: string;
|
|
2141
2172
|
ariaColIndex: string;
|
|
2142
|
-
ariaColIndexText: string;
|
|
2143
2173
|
ariaColSpan: string;
|
|
2144
2174
|
ariaCurrent: string;
|
|
2145
2175
|
ariaDisabled: string;
|
|
@@ -2163,7 +2193,6 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2163
2193
|
ariaRoleDescription: string;
|
|
2164
2194
|
ariaRowCount: string;
|
|
2165
2195
|
ariaRowIndex: string;
|
|
2166
|
-
ariaRowIndexText: string;
|
|
2167
2196
|
ariaRowSpan: string;
|
|
2168
2197
|
ariaSelected: string;
|
|
2169
2198
|
ariaSetSize: string;
|
|
@@ -2188,17 +2217,18 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2188
2217
|
readonly lastElementChild: Element;
|
|
2189
2218
|
append(...nodes: (string | Node)[]): void;
|
|
2190
2219
|
prepend(...nodes: (string | Node)[]): void;
|
|
2191
|
-
querySelector<
|
|
2192
|
-
querySelector<
|
|
2220
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
2221
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
2222
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
2223
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
2193
2224
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
2194
|
-
querySelectorAll<
|
|
2195
|
-
querySelectorAll<
|
|
2225
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
2226
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
2227
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
2228
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
2196
2229
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
2197
2230
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
2198
2231
|
readonly assignedSlot: HTMLSlotElement;
|
|
2199
|
-
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2200
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2201
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2202
2232
|
readonly style: CSSStyleDeclaration;
|
|
2203
2233
|
contentEditable: string;
|
|
2204
2234
|
enterKeyHint: string;
|
|
@@ -2219,7 +2249,9 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2219
2249
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2220
2250
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2221
2251
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2252
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2222
2253
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2254
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2223
2255
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2224
2256
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
2225
2257
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -2252,6 +2284,7 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2252
2284
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2253
2285
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2254
2286
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2287
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2255
2288
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2256
2289
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2257
2290
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [formatDateExtra](./grid-pro.formatdateextra.md)
|
|
4
|
+
|
|
5
|
+
## formatDateExtra() function
|
|
6
|
+
|
|
7
|
+
> This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
> Warning: This API is now obsolete.
|
|
11
|
+
>
|
|
12
|
+
> No longer used in the Grid Pro package.
|
|
13
|
+
>
|
|
14
|
+
|
|
15
|
+
Returns a formatted date value from an epoch number.
|
|
16
|
+
|
|
17
|
+
**Signature:**
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
export declare function formatDateExtra(epoch: number): string;
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Parameters
|
|
24
|
+
|
|
25
|
+
| Parameter | Type | Description |
|
|
26
|
+
| --- | --- | --- |
|
|
27
|
+
| epoch | number | A number representing the number of milliseconds since the Unix epoch (1 January 1970 00:00:00 UTC). |
|
|
28
|
+
|
|
29
|
+
**Returns:**
|
|
30
|
+
|
|
31
|
+
string
|
|
32
|
+
|
|
33
|
+
A formatted date value.
|
|
34
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [getColumnType](./grid-pro.getcolumntype.md)
|
|
4
|
+
|
|
5
|
+
## getColumnType() function
|
|
6
|
+
|
|
7
|
+
> This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
Return a column type base on each field's metadata from the selected resource.
|
|
11
|
+
|
|
12
|
+
**Signature:**
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
export declare function getColumnType(metadataType: string): string;
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Parameters
|
|
19
|
+
|
|
20
|
+
| Parameter | Type | Description |
|
|
21
|
+
| --- | --- | --- |
|
|
22
|
+
| metadataType | string | The type of the field/column |
|
|
23
|
+
|
|
24
|
+
**Returns:**
|
|
25
|
+
|
|
26
|
+
string
|
|
27
|
+
|
|
28
|
+
the column type
|
|
29
|
+
|
|
30
|
+
## Remarks
|
|
31
|
+
|
|
32
|
+
Currently only handles numeric columns
|
|
33
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [getFilterByFieldType](./grid-pro.getfilterbyfieldtype.md)
|
|
4
|
+
|
|
5
|
+
## getFilterByFieldType() function
|
|
6
|
+
|
|
7
|
+
> This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
Returns a filter type based on the Grid Pro field/column type.
|
|
11
|
+
|
|
12
|
+
**Signature:**
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
export declare function getFilterByFieldType(type: string): string;
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Parameters
|
|
19
|
+
|
|
20
|
+
| Parameter | Type | Description |
|
|
21
|
+
| --- | --- | --- |
|
|
22
|
+
| type | string | The type of the field/column |
|
|
23
|
+
|
|
24
|
+
**Returns:**
|
|
25
|
+
|
|
26
|
+
string
|
|
27
|
+
|
|
28
|
+
The ag-grid filter type
|
|
29
|
+
|
|
30
|
+
## Remarks
|
|
31
|
+
|
|
32
|
+
Currently only returns agTextColumnFilter
|
|
33
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [getFilterParamsByFieldType](./grid-pro.getfilterparamsbyfieldtype.md)
|
|
4
|
+
|
|
5
|
+
## getFilterParamsByFieldType() function
|
|
6
|
+
|
|
7
|
+
> This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
Returns the filter params based on the Grid Pro field/column type.
|
|
11
|
+
|
|
12
|
+
**Signature:**
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
export declare function getFilterParamsByFieldType(type: string): any;
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Parameters
|
|
19
|
+
|
|
20
|
+
| Parameter | Type | Description |
|
|
21
|
+
| --- | --- | --- |
|
|
22
|
+
| type | string | The type of the field/column |
|
|
23
|
+
|
|
24
|
+
**Returns:**
|
|
25
|
+
|
|
26
|
+
any
|
|
27
|
+
|
|
28
|
+
the filter params for the specified field type
|
|
29
|
+
|
|
30
|
+
## Remarks
|
|
31
|
+
|
|
32
|
+
Currently only returns a default filter params object, for all field types
|
|
33
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [GridProServerSideDatasource](./grid-pro.gridproserversidedatasource.md)
|
|
4
|
+
|
|
5
|
+
## GridProServerSideDatasource class
|
|
6
|
+
|
|
7
|
+
> This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
A Genesis Datasource element, for server-side \| SSRM-compatible data fetching and used exclusively by the GridPro element.
|
|
11
|
+
|
|
12
|
+
**Signature:**
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
export declare class GridProServerSideDatasource extends GridProServerSideDatasource_base
|
|
16
|
+
```
|
|
17
|
+
**Extends:** GridProServerSideDatasource\_base
|
|
18
|
+
|
|
19
|
+
## Remarks
|
|
20
|
+
|
|
21
|
+
Only supports Server-Side Row Model. Requires `@ag-grid-enterprise/server-side-row-model` setup and valid AG Grid Enterprise license.
|
|
22
|
+
|
|
23
|
+
## Properties
|
|
24
|
+
|
|
25
|
+
| Property | Modifiers | Type | Description |
|
|
26
|
+
| --- | --- | --- | --- |
|
|
27
|
+
| [pagination](./grid-pro.gridproserversidedatasource.pagination.md) | | boolean | **_(ALPHA)_** |
|
|
28
|
+
| [params](./grid-pro.gridproserversidedatasource.params.md) | <code>readonly</code> | any | **_(ALPHA)_** |
|
|
29
|
+
| [rowId](./grid-pro.gridproserversidedatasource.rowid.md) | | string | **_(ALPHA)_** |
|
|
30
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [GridProServerSideDatasource](./grid-pro.gridproserversidedatasource.md) > [pagination](./grid-pro.gridproserversidedatasource.pagination.md)
|
|
4
|
+
|
|
5
|
+
## GridProServerSideDatasource.pagination property
|
|
6
|
+
|
|
7
|
+
> This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
**Signature:**
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
pagination: boolean;
|
|
14
|
+
```
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [GridProServerSideDatasource](./grid-pro.gridproserversidedatasource.md) > [params](./grid-pro.gridproserversidedatasource.params.md)
|
|
4
|
+
|
|
5
|
+
## GridProServerSideDatasource.params property
|
|
6
|
+
|
|
7
|
+
> This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
**Signature:**
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
get params(): any;
|
|
14
|
+
```
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [GridProServerSideDatasource](./grid-pro.gridproserversidedatasource.md) > [rowId](./grid-pro.gridproserversidedatasource.rowid.md)
|
|
4
|
+
|
|
5
|
+
## GridProServerSideDatasource.rowId property
|
|
6
|
+
|
|
7
|
+
> This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
|
|
8
|
+
>
|
|
9
|
+
|
|
10
|
+
**Signature:**
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
rowId: string;
|
|
14
|
+
```
|