@genesislcap/grid-pro 14.107.1-alpha-afbc4d7.0 → 14.107.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 +24 -5
- package/dist/dts/datasource/server-side.datasource.d.ts +29 -37
- 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 +31 -51
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +35 -39
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +14 -2
- package/dist/esm/grid-pro.js +1 -20
- package/dist/grid-pro.api.json +2 -598
- package/dist/grid-pro.d.ts +95 -126
- package/docs/api/grid-pro.gridpro.enablerowflashing.md +0 -5
- package/docs/api/grid-pro.md +0 -7
- package/docs/api-report.md +0 -2
- package/package.json +9 -9
- package/docs/api/grid-pro.formatdateextra.md +0 -34
- package/docs/api/grid-pro.getcolumntype.md +0 -33
- package/docs/api/grid-pro.getfilterbyfieldtype.md +0 -33
- package/docs/api/grid-pro.getfilterparamsbyfieldtype.md +0 -33
- package/docs/api/grid-pro.gridproserversidedatasource.md +0 -30
- package/docs/api/grid-pro.gridproserversidedatasource.pagination.md +0 -14
- package/docs/api/grid-pro.gridproserversidedatasource.params.md +0 -14
- package/docs/api/grid-pro.gridproserversidedatasource.rowid.md +0 -14
- package/docs/api/grid-pro.streamdatasource._constructor_.md +0 -23
- package/docs/api/grid-pro.streamdatasource.auth.md +0 -14
- package/docs/api/grid-pro.streamdatasource.connect.md +0 -14
- package/docs/api/grid-pro.streamdatasource.dataserverstream.md +0 -14
- package/docs/api/grid-pro.streamdatasource.md +0 -34
- package/docs/api/grid-pro.streamdatasource.resourceparams.md +0 -14
- package/docs/api/grid-pro.streamdatasource.streamsourceref.md +0 -14
- package/docs/api/grid-pro.streamdatasourceoptions.md +0 -31
package/dist/grid-pro.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
|
|
3
1
|
import { ActionMenuItem } from '@genesislcap/foundation-ui';
|
|
4
2
|
import { Auth } from '@genesislcap/foundation-comms';
|
|
5
3
|
import { Binding } from '@microsoft/fast-element';
|
|
@@ -1006,7 +1004,6 @@ export declare class GridPro extends GridPro_base {
|
|
|
1006
1004
|
enabledRowFlashing: boolean;
|
|
1007
1005
|
/**
|
|
1008
1006
|
* If true, will enable row flashing for all rows for `add` async transactions
|
|
1009
|
-
* @remarks Requires `asyncAdd` to be `true`
|
|
1010
1007
|
*/
|
|
1011
1008
|
enableRowFlashing: boolean;
|
|
1012
1009
|
/**
|
|
@@ -1065,7 +1062,6 @@ export declare class GridPro extends GridPro_base {
|
|
|
1065
1062
|
get gridOptions(): GridOptions;
|
|
1066
1063
|
get gridProDatasource(): GridProBaseDatasource;
|
|
1067
1064
|
set gridOptions(options: GridOptions);
|
|
1068
|
-
private enableFlashingRows;
|
|
1069
1065
|
/**
|
|
1070
1066
|
* Will merge templated column definitions with `columnDefs` plus localStorage's column state or `deferredColumnStates`.
|
|
1071
1067
|
* @deprecated use `applyTemplateDefinitions` instead.
|
|
@@ -1157,10 +1153,8 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1157
1153
|
slot: string;
|
|
1158
1154
|
readonly tagName: string;
|
|
1159
1155
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1160
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1161
1156
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
1162
1157
|
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];
|
|
1164
1158
|
closest<E extends Element = Element>(selectors: string): E;
|
|
1165
1159
|
getAttribute(qualifiedName: string): string;
|
|
1166
1160
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -1170,14 +1164,11 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1170
1164
|
getBoundingClientRect(): DOMRect;
|
|
1171
1165
|
getClientRects(): DOMRectList;
|
|
1172
1166
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1173
|
-
getElementsByTagName<
|
|
1174
|
-
getElementsByTagName<
|
|
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]>;
|
|
1167
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
1168
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
1177
1169
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1178
1170
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1179
1171
|
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>;
|
|
1181
1172
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
1182
1173
|
hasAttribute(qualifiedName: string): boolean;
|
|
1183
1174
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -1192,6 +1183,12 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1192
1183
|
removeAttributeNS(namespace: string, localName: string): void;
|
|
1193
1184
|
removeAttributeNode(attr: Attr): Attr;
|
|
1194
1185
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
1186
|
+
/**
|
|
1187
|
+
* Gets the saved grid ColumnState[] from local storage
|
|
1188
|
+
* @remarks This is used to restore the grid state when the grid is rehydrated
|
|
1189
|
+
* @privateRemarks Not using `columnApi.get|setColumnState()` for these flows as it doesn't work setting new columnDefs vs different ordering.
|
|
1190
|
+
* @public
|
|
1191
|
+
*/
|
|
1195
1192
|
requestPointerLock(): void;
|
|
1196
1193
|
scroll(options?: ScrollToOptions): void;
|
|
1197
1194
|
scroll(x: number, y: number): void;
|
|
@@ -1234,24 +1231,24 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1234
1231
|
normalize(): void;
|
|
1235
1232
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
1236
1233
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
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
|
|
1251
|
-
readonly
|
|
1252
|
-
readonly
|
|
1253
|
-
readonly
|
|
1254
|
-
readonly
|
|
1234
|
+
readonly ATTRIBUTE_NODE: number;
|
|
1235
|
+
readonly CDATA_SECTION_NODE: number;
|
|
1236
|
+
readonly COMMENT_NODE: number;
|
|
1237
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
1238
|
+
readonly DOCUMENT_NODE: number;
|
|
1239
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
1240
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
1241
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
1242
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
1243
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
1244
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
1245
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
1246
|
+
readonly ELEMENT_NODE: number;
|
|
1247
|
+
readonly ENTITY_NODE: number;
|
|
1248
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
1249
|
+
readonly NOTATION_NODE: number;
|
|
1250
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
1251
|
+
readonly TEXT_NODE: number;
|
|
1255
1252
|
dispatchEvent(event: Event): boolean;
|
|
1256
1253
|
ariaAtomic: string;
|
|
1257
1254
|
ariaAutoComplete: string;
|
|
@@ -1259,6 +1256,7 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1259
1256
|
ariaChecked: string;
|
|
1260
1257
|
ariaColCount: string;
|
|
1261
1258
|
ariaColIndex: string;
|
|
1259
|
+
ariaColIndexText: string;
|
|
1262
1260
|
ariaColSpan: string;
|
|
1263
1261
|
ariaCurrent: string;
|
|
1264
1262
|
ariaDisabled: string;
|
|
@@ -1282,6 +1280,7 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1282
1280
|
ariaRoleDescription: string;
|
|
1283
1281
|
ariaRowCount: string;
|
|
1284
1282
|
ariaRowIndex: string;
|
|
1283
|
+
ariaRowIndexText: string;
|
|
1285
1284
|
ariaRowSpan: string;
|
|
1286
1285
|
ariaSelected: string;
|
|
1287
1286
|
ariaSetSize: string;
|
|
@@ -1306,18 +1305,17 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1306
1305
|
readonly lastElementChild: Element;
|
|
1307
1306
|
append(...nodes: (string | Node)[]): void;
|
|
1308
1307
|
prepend(...nodes: (string | Node)[]): void;
|
|
1309
|
-
querySelector<
|
|
1310
|
-
querySelector<
|
|
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];
|
|
1308
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
1309
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
1313
1310
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
1314
|
-
querySelectorAll<
|
|
1315
|
-
querySelectorAll<
|
|
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]>;
|
|
1311
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
1312
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
1318
1313
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
1319
1314
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1320
1315
|
readonly assignedSlot: HTMLSlotElement;
|
|
1316
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1317
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1318
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1321
1319
|
readonly style: CSSStyleDeclaration;
|
|
1322
1320
|
contentEditable: string;
|
|
1323
1321
|
enterKeyHint: string;
|
|
@@ -1338,9 +1336,7 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1338
1336
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1339
1337
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1340
1338
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1341
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1342
1339
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1343
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1344
1340
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1345
1341
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1346
1342
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -1373,7 +1369,6 @@ declare const GridPro_base: (new (...args: any[]) => {
|
|
|
1373
1369
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1374
1370
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1375
1371
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1376
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1377
1372
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1378
1373
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1379
1374
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1597,6 +1592,7 @@ export declare class GridProGenesisDatasource extends GridProGenesisDatasource_b
|
|
|
1597
1592
|
private applyRequestServerData;
|
|
1598
1593
|
private applyDataserverData;
|
|
1599
1594
|
private applyAllAgTransactions;
|
|
1595
|
+
private flashAddedCells;
|
|
1600
1596
|
private applyMappedAgTransaction;
|
|
1601
1597
|
/**
|
|
1602
1598
|
* Maps the transaction data to the row data mapper function, if it exists.
|
|
@@ -1620,9 +1616,6 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1620
1616
|
"__#1@#_hasFirstLoaded": boolean;
|
|
1621
1617
|
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
|
1622
1618
|
"__#1@#_shouldForceLifecycle": boolean;
|
|
1623
|
-
/**
|
|
1624
|
-
* Allows grid data updates to be processed via and external function before applying in grid
|
|
1625
|
-
*/
|
|
1626
1619
|
cloneNode(deep?: boolean): Node;
|
|
1627
1620
|
deepClone(): Node;
|
|
1628
1621
|
readonly shouldRunDisconnect: boolean;
|
|
@@ -1664,11 +1657,6 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1664
1657
|
readonly clientHeight: number;
|
|
1665
1658
|
readonly clientLeft: number;
|
|
1666
1659
|
readonly clientTop: number;
|
|
1667
|
-
/**
|
|
1668
|
-
* Resets the datasource to its initial state.
|
|
1669
|
-
* @public
|
|
1670
|
-
* @deprecated Use `deinit` instead
|
|
1671
|
-
*/
|
|
1672
1660
|
readonly clientWidth: number;
|
|
1673
1661
|
id: string;
|
|
1674
1662
|
readonly localName: string;
|
|
@@ -1687,32 +1675,22 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1687
1675
|
slot: string;
|
|
1688
1676
|
readonly tagName: string;
|
|
1689
1677
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1690
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1691
1678
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
1692
1679
|
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];
|
|
1694
1680
|
closest<E extends Element = Element>(selectors: string): E;
|
|
1695
1681
|
getAttribute(qualifiedName: string): string;
|
|
1696
1682
|
getAttributeNS(namespace: string, localName: string): string;
|
|
1697
1683
|
getAttributeNames(): string[];
|
|
1698
1684
|
getAttributeNode(qualifiedName: string): Attr;
|
|
1699
1685
|
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
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
|
-
*/
|
|
1686
|
+
getBoundingClientRect(): DOMRect;
|
|
1706
1687
|
getClientRects(): DOMRectList;
|
|
1707
1688
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1708
|
-
getElementsByTagName<
|
|
1709
|
-
getElementsByTagName<
|
|
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
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
1690
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
1712
1691
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1713
1692
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1714
1693
|
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>;
|
|
1716
1694
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
1717
1695
|
hasAttribute(qualifiedName: string): boolean;
|
|
1718
1696
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -1769,24 +1747,24 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1769
1747
|
normalize(): void;
|
|
1770
1748
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
1771
1749
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
1772
|
-
readonly
|
|
1773
|
-
readonly
|
|
1774
|
-
readonly
|
|
1775
|
-
readonly
|
|
1776
|
-
readonly
|
|
1777
|
-
readonly
|
|
1778
|
-
readonly
|
|
1779
|
-
readonly
|
|
1780
|
-
readonly
|
|
1781
|
-
readonly
|
|
1782
|
-
readonly
|
|
1783
|
-
readonly
|
|
1784
|
-
readonly
|
|
1785
|
-
readonly
|
|
1786
|
-
readonly
|
|
1787
|
-
readonly
|
|
1788
|
-
readonly
|
|
1789
|
-
readonly
|
|
1750
|
+
readonly ATTRIBUTE_NODE: number;
|
|
1751
|
+
readonly CDATA_SECTION_NODE: number;
|
|
1752
|
+
readonly COMMENT_NODE: number;
|
|
1753
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
1754
|
+
readonly DOCUMENT_NODE: number;
|
|
1755
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
1756
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
1757
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
1758
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
1759
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
1760
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
1761
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
1762
|
+
readonly ELEMENT_NODE: number;
|
|
1763
|
+
readonly ENTITY_NODE: number;
|
|
1764
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
1765
|
+
readonly NOTATION_NODE: number;
|
|
1766
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
1767
|
+
readonly TEXT_NODE: number;
|
|
1790
1768
|
dispatchEvent(event: Event): boolean;
|
|
1791
1769
|
ariaAtomic: string;
|
|
1792
1770
|
ariaAutoComplete: string;
|
|
@@ -1794,6 +1772,7 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1794
1772
|
ariaChecked: string;
|
|
1795
1773
|
ariaColCount: string;
|
|
1796
1774
|
ariaColIndex: string;
|
|
1775
|
+
ariaColIndexText: string;
|
|
1797
1776
|
ariaColSpan: string;
|
|
1798
1777
|
ariaCurrent: string;
|
|
1799
1778
|
ariaDisabled: string;
|
|
@@ -1817,6 +1796,7 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1817
1796
|
ariaRoleDescription: string;
|
|
1818
1797
|
ariaRowCount: string;
|
|
1819
1798
|
ariaRowIndex: string;
|
|
1799
|
+
ariaRowIndexText: string;
|
|
1820
1800
|
ariaRowSpan: string;
|
|
1821
1801
|
ariaSelected: string;
|
|
1822
1802
|
ariaSetSize: string;
|
|
@@ -1841,18 +1821,17 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1841
1821
|
readonly lastElementChild: Element;
|
|
1842
1822
|
append(...nodes: (string | Node)[]): void;
|
|
1843
1823
|
prepend(...nodes: (string | Node)[]): void;
|
|
1844
|
-
querySelector<
|
|
1845
|
-
querySelector<
|
|
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
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
1825
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
1848
1826
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
1849
|
-
querySelectorAll<
|
|
1850
|
-
querySelectorAll<
|
|
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
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
1828
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
1853
1829
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
1854
1830
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1855
1831
|
readonly assignedSlot: HTMLSlotElement;
|
|
1832
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1833
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1834
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1856
1835
|
readonly style: CSSStyleDeclaration;
|
|
1857
1836
|
contentEditable: string;
|
|
1858
1837
|
enterKeyHint: string;
|
|
@@ -1873,9 +1852,7 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1873
1852
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1874
1853
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1875
1854
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1876
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1877
1855
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1878
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1879
1856
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1880
1857
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1881
1858
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -1908,7 +1885,6 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1908
1885
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1909
1886
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1910
1887
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1911
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1912
1888
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1913
1889
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1914
1890
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2068,10 +2044,8 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2068
2044
|
slot: string;
|
|
2069
2045
|
readonly tagName: string;
|
|
2070
2046
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
2071
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
2072
2047
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
2073
2048
|
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];
|
|
2075
2049
|
closest<E extends Element = Element>(selectors: string): E;
|
|
2076
2050
|
getAttribute(qualifiedName: string): string;
|
|
2077
2051
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -2081,14 +2055,11 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2081
2055
|
getBoundingClientRect(): DOMRect;
|
|
2082
2056
|
getClientRects(): DOMRectList;
|
|
2083
2057
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
2084
|
-
getElementsByTagName<
|
|
2085
|
-
getElementsByTagName<
|
|
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
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
2059
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
2088
2060
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
2089
2061
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
2090
2062
|
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>;
|
|
2092
2063
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
2093
2064
|
hasAttribute(qualifiedName: string): boolean;
|
|
2094
2065
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -2145,24 +2116,24 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2145
2116
|
normalize(): void;
|
|
2146
2117
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
2147
2118
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
2148
|
-
readonly
|
|
2149
|
-
readonly
|
|
2150
|
-
readonly
|
|
2151
|
-
readonly
|
|
2152
|
-
readonly
|
|
2153
|
-
readonly
|
|
2154
|
-
readonly
|
|
2155
|
-
readonly
|
|
2156
|
-
readonly
|
|
2157
|
-
readonly
|
|
2158
|
-
readonly
|
|
2159
|
-
readonly
|
|
2160
|
-
readonly
|
|
2161
|
-
readonly
|
|
2162
|
-
readonly
|
|
2163
|
-
readonly
|
|
2164
|
-
readonly
|
|
2165
|
-
readonly
|
|
2119
|
+
readonly ATTRIBUTE_NODE: number;
|
|
2120
|
+
readonly CDATA_SECTION_NODE: number;
|
|
2121
|
+
readonly COMMENT_NODE: number;
|
|
2122
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
2123
|
+
readonly DOCUMENT_NODE: number;
|
|
2124
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
2125
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
2126
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
2127
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
2128
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
2129
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
2130
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
2131
|
+
readonly ELEMENT_NODE: number;
|
|
2132
|
+
readonly ENTITY_NODE: number;
|
|
2133
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
2134
|
+
readonly NOTATION_NODE: number;
|
|
2135
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
2136
|
+
readonly TEXT_NODE: number;
|
|
2166
2137
|
dispatchEvent(event: Event): boolean;
|
|
2167
2138
|
ariaAtomic: string;
|
|
2168
2139
|
ariaAutoComplete: string;
|
|
@@ -2170,6 +2141,7 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2170
2141
|
ariaChecked: string;
|
|
2171
2142
|
ariaColCount: string;
|
|
2172
2143
|
ariaColIndex: string;
|
|
2144
|
+
ariaColIndexText: string;
|
|
2173
2145
|
ariaColSpan: string;
|
|
2174
2146
|
ariaCurrent: string;
|
|
2175
2147
|
ariaDisabled: string;
|
|
@@ -2193,6 +2165,7 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2193
2165
|
ariaRoleDescription: string;
|
|
2194
2166
|
ariaRowCount: string;
|
|
2195
2167
|
ariaRowIndex: string;
|
|
2168
|
+
ariaRowIndexText: string;
|
|
2196
2169
|
ariaRowSpan: string;
|
|
2197
2170
|
ariaSelected: string;
|
|
2198
2171
|
ariaSetSize: string;
|
|
@@ -2217,18 +2190,17 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2217
2190
|
readonly lastElementChild: Element;
|
|
2218
2191
|
append(...nodes: (string | Node)[]): void;
|
|
2219
2192
|
prepend(...nodes: (string | Node)[]): void;
|
|
2220
|
-
querySelector<
|
|
2221
|
-
querySelector<
|
|
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
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
2194
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
2224
2195
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
2225
|
-
querySelectorAll<
|
|
2226
|
-
querySelectorAll<
|
|
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
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
2197
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
2229
2198
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
2230
2199
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
2231
2200
|
readonly assignedSlot: HTMLSlotElement;
|
|
2201
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2202
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2203
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2232
2204
|
readonly style: CSSStyleDeclaration;
|
|
2233
2205
|
contentEditable: string;
|
|
2234
2206
|
enterKeyHint: string;
|
|
@@ -2249,9 +2221,7 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2249
2221
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2250
2222
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2251
2223
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2252
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2253
2224
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2254
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2255
2225
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2256
2226
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
2257
2227
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -2284,7 +2254,6 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
2284
2254
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2285
2255
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2286
2256
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2287
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2288
2257
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2289
2258
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2290
2259
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
package/docs/api/grid-pro.md
CHANGED
|
@@ -19,12 +19,10 @@
|
|
|
19
19
|
| [GridProClientSideDatasource](./grid-pro.gridproclientsidedatasource.md) | The Genesis Datasource element, for client-side \| CSRM-compatible data fetching and used exclusively by the GridPro element. |
|
|
20
20
|
| [GridProColumn](./grid-pro.gridprocolumn.md) | The Grid Pro Column element. |
|
|
21
21
|
| [GridProGenesisDatasource](./grid-pro.gridprogenesisdatasource.md) | The Genesis Datasource element, for CSRM-compatible data fetching and used exclusively by the GridPro element. |
|
|
22
|
-
| [GridProServerSideDatasource](./grid-pro.gridproserversidedatasource.md) | **_(ALPHA)_** A Genesis Datasource element, for server-side \| SSRM-compatible data fetching and used exclusively by the GridPro element. |
|
|
23
22
|
| [MultiselectEditor](./grid-pro.multiselecteditor.md) | The AG Multiselect Editor element. |
|
|
24
23
|
| [NumberEditor](./grid-pro.numbereditor.md) | The AG Number Editor element. |
|
|
25
24
|
| [SelectEditor](./grid-pro.selecteditor.md) | The AG Select Editor element. |
|
|
26
25
|
| [SelectRenderer](./grid-pro.selectrenderer.md) | The AG Select Renderer element. |
|
|
27
|
-
| [StreamDatasource](./grid-pro.streamdatasource.md) | **_(ALPHA)_** The IServerSideDatasource implementation, used for SSRM (Server-Side Row Model) in the grid. |
|
|
28
26
|
|
|
29
27
|
## Enumerations
|
|
30
28
|
|
|
@@ -40,10 +38,6 @@
|
|
|
40
38
|
| --- | --- |
|
|
41
39
|
| [dateTimeValueFormatter({ value })](./grid-pro.datetimevalueformatter.md) | Returns a formatted date time value from the Grid Pro cell value. |
|
|
42
40
|
| [dateValueFormatter({ value })](./grid-pro.datevalueformatter.md) | Returns a formatted date value from the Grid Pro cell value. |
|
|
43
|
-
| [formatDateExtra(epoch)](./grid-pro.formatdateextra.md) | **_(ALPHA)_** Returns a formatted date value from an epoch number. |
|
|
44
|
-
| [getColumnType(metadataType)](./grid-pro.getcolumntype.md) | **_(ALPHA)_** Return a column type base on each field's metadata from the selected resource. |
|
|
45
|
-
| [getFilterByFieldType(type)](./grid-pro.getfilterbyfieldtype.md) | **_(ALPHA)_** Returns a filter type based on the Grid Pro field/column type. |
|
|
46
|
-
| [getFilterParamsByFieldType(type)](./grid-pro.getfilterparamsbyfieldtype.md) | **_(ALPHA)_** Returns the filter params based on the Grid Pro field/column type. |
|
|
47
41
|
| [gridProColumns(itemsBinding, includeRenderers)](./grid-pro.gridprocolumns.md) | A directive that renders a set of grid-pro-column elements from a given input binding |
|
|
48
42
|
| [mergeAndDedupColDefWithColumnState(colDefs, columnStates)](./grid-pro.mergeanddedupcoldefwithcolumnstate.md) | Merges two arrays, one of <code>ColDef</code> and one of <code>ColumnState</code>, and deduplicates them. |
|
|
49
43
|
|
|
@@ -122,5 +116,4 @@
|
|
|
122
116
|
| [ActionRendererParams](./grid-pro.actionrendererparams.md) | Parameters for the [GridPro](./grid-pro.gridpro.md) action renderer. |
|
|
123
117
|
| [AgThemeFontFaceMap](./grid-pro.agthemefontfacemap.md) | Type for mapping of a [AgGridTheme](./grid-pro.aggridtheme.md) to a font face. |
|
|
124
118
|
| [GridComponents](./grid-pro.gridcomponents.md) | Grid Pro Components type, used to define the custom components that will be registered in the grid |
|
|
125
|
-
| [StreamDatasourceOptions](./grid-pro.streamdatasourceoptions.md) | **_(ALPHA)_** Type definition for configuration options used for streams. |
|
|
126
119
|
|
package/docs/api-report.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/grid-pro",
|
|
3
3
|
"description": "Genesis Foundation AG Grid",
|
|
4
|
-
"version": "14.107.1
|
|
4
|
+
"version": "14.107.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"test:debug": "genx test --debug"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@genesislcap/foundation-testing": "14.107.1
|
|
34
|
-
"@genesislcap/genx": "14.107.1
|
|
33
|
+
"@genesislcap/foundation-testing": "14.107.1",
|
|
34
|
+
"@genesislcap/genx": "14.107.1",
|
|
35
35
|
"rimraf": "^3.0.2"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@genesislcap/foundation-comms": "14.107.1
|
|
39
|
-
"@genesislcap/foundation-logger": "14.107.1
|
|
40
|
-
"@genesislcap/foundation-ui": "14.107.1
|
|
41
|
-
"@genesislcap/foundation-utils": "14.107.1
|
|
38
|
+
"@genesislcap/foundation-comms": "14.107.1",
|
|
39
|
+
"@genesislcap/foundation-logger": "14.107.1",
|
|
40
|
+
"@genesislcap/foundation-ui": "14.107.1",
|
|
41
|
+
"@genesislcap/foundation-utils": "14.107.1",
|
|
42
42
|
"@microsoft/fast-colors": "^5.1.4",
|
|
43
43
|
"@microsoft/fast-components": "^2.21.3",
|
|
44
44
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@microsoft/fast-web-utilities": "^5.0.2",
|
|
47
47
|
"dayjs": "^1.11.7",
|
|
48
48
|
"rxjs": "^7.5.4",
|
|
49
|
-
"tslib": "^2.
|
|
49
|
+
"tslib": "^2.3.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@ag-grid-community/client-side-row-model": "29.2.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
64
|
"customElements": "dist/custom-elements.json",
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "afc294d9a52a1eac3286416444bfd29c18910490"
|
|
66
66
|
}
|
|
@@ -1,34 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,33 +0,0 @@
|
|
|
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
|
-
|