@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/esm/grid-pro.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __decorate, __rest } from "tslib";
|
|
2
2
|
import { ClientSideRowModelModule } from '@ag-grid-community/client-side-row-model';
|
|
3
|
-
import { ComponentUtil,
|
|
3
|
+
import { ComponentUtil, Grid, ModuleRegistry } from '@ag-grid-community/core';
|
|
4
4
|
import { CsvExportModule } from '@ag-grid-community/csv-export';
|
|
5
5
|
import { Session } from '@genesislcap/foundation-comms';
|
|
6
6
|
import { insertDocumentCSSRule, LifecycleMixin, respondToVisibility, } from '@genesislcap/foundation-utils';
|
|
@@ -90,7 +90,6 @@ export class GridPro extends LifecycleMixin(FoundationElement) {
|
|
|
90
90
|
this.enabledRowFlashing = false;
|
|
91
91
|
/**
|
|
92
92
|
* If true, will enable row flashing for all rows for `add` async transactions
|
|
93
|
-
* @remarks Requires `asyncAdd` to be `true`
|
|
94
93
|
*/
|
|
95
94
|
this.enableRowFlashing = false;
|
|
96
95
|
this.gridFontFace = defaultAgGridFontFace;
|
|
@@ -267,7 +266,6 @@ export class GridPro extends LifecycleMixin(FoundationElement) {
|
|
|
267
266
|
this.restoreColumnState.bind(this)();
|
|
268
267
|
this.debouncedColumnAutosize.bind(this)();
|
|
269
268
|
}, onFirstDataRendered: (event) => {
|
|
270
|
-
this.enableFlashingRows.bind(this)();
|
|
271
269
|
this.restoreCachedFilterConfig.bind(this)();
|
|
272
270
|
if (onFirstDataRendered) {
|
|
273
271
|
onFirstDataRendered(event);
|
|
@@ -295,23 +293,6 @@ export class GridPro extends LifecycleMixin(FoundationElement) {
|
|
|
295
293
|
this.initialised = true;
|
|
296
294
|
});
|
|
297
295
|
}
|
|
298
|
-
enableFlashingRows() {
|
|
299
|
-
if (this.enableRowFlashing || this.enabledRowFlashing) {
|
|
300
|
-
if (!this.asyncAdd) {
|
|
301
|
-
logger.warn('Row Flashing (enableRowFlashing) only works when Grid has async Add Transactions (asyncAdd) enabled');
|
|
302
|
-
return;
|
|
303
|
-
}
|
|
304
|
-
this.gridApi.addEventListener(Events.EVENT_ASYNC_TRANSACTIONS_FLUSHED, (e) => {
|
|
305
|
-
e.results.forEach((result) => {
|
|
306
|
-
if (result.add.length) {
|
|
307
|
-
this.gridApi.flashCells({
|
|
308
|
-
rowNodes: result.add,
|
|
309
|
-
});
|
|
310
|
-
}
|
|
311
|
-
});
|
|
312
|
-
});
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
296
|
/**
|
|
316
297
|
* Will merge templated column definitions with `columnDefs` plus localStorage's column state or `deferredColumnStates`.
|
|
317
298
|
* @deprecated use `applyTemplateDefinitions` instead.
|
package/dist/grid-pro.api.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"metadata": {
|
|
3
3
|
"toolPackage": "@microsoft/api-extractor",
|
|
4
|
-
"toolVersion": "7.
|
|
4
|
+
"toolVersion": "7.34.9",
|
|
5
5
|
"schemaVersion": 1011,
|
|
6
6
|
"oldestForwardsCompatibleVersion": 1001,
|
|
7
7
|
"tsdocConfig": {
|
|
@@ -3862,51 +3862,6 @@
|
|
|
3862
3862
|
"endIndex": 2
|
|
3863
3863
|
}
|
|
3864
3864
|
},
|
|
3865
|
-
{
|
|
3866
|
-
"kind": "Function",
|
|
3867
|
-
"canonicalReference": "@genesislcap/grid-pro!formatDateExtra:function(1)",
|
|
3868
|
-
"docComment": "/**\n * Returns a formatted date value from an epoch number.\n *\n * @deprecated\n *\n * No longer used in the Grid Pro package.\n *\n * @param epoch - A number representing the number of milliseconds since the Unix epoch (1 January 1970 00:00:00 UTC).\n *\n * @returns A formatted date value.\n *\n * @alpha\n */\n",
|
|
3869
|
-
"excerptTokens": [
|
|
3870
|
-
{
|
|
3871
|
-
"kind": "Content",
|
|
3872
|
-
"text": "export declare function formatDateExtra(epoch: "
|
|
3873
|
-
},
|
|
3874
|
-
{
|
|
3875
|
-
"kind": "Content",
|
|
3876
|
-
"text": "number"
|
|
3877
|
-
},
|
|
3878
|
-
{
|
|
3879
|
-
"kind": "Content",
|
|
3880
|
-
"text": "): "
|
|
3881
|
-
},
|
|
3882
|
-
{
|
|
3883
|
-
"kind": "Content",
|
|
3884
|
-
"text": "string"
|
|
3885
|
-
},
|
|
3886
|
-
{
|
|
3887
|
-
"kind": "Content",
|
|
3888
|
-
"text": ";"
|
|
3889
|
-
}
|
|
3890
|
-
],
|
|
3891
|
-
"fileUrlPath": "src/grid-pro.definitions.ts",
|
|
3892
|
-
"returnTypeTokenRange": {
|
|
3893
|
-
"startIndex": 3,
|
|
3894
|
-
"endIndex": 4
|
|
3895
|
-
},
|
|
3896
|
-
"releaseTag": "Alpha",
|
|
3897
|
-
"overloadIndex": 1,
|
|
3898
|
-
"parameters": [
|
|
3899
|
-
{
|
|
3900
|
-
"parameterName": "epoch",
|
|
3901
|
-
"parameterTypeTokenRange": {
|
|
3902
|
-
"startIndex": 1,
|
|
3903
|
-
"endIndex": 2
|
|
3904
|
-
},
|
|
3905
|
-
"isOptional": false
|
|
3906
|
-
}
|
|
3907
|
-
],
|
|
3908
|
-
"name": "formatDateExtra"
|
|
3909
|
-
},
|
|
3910
3865
|
{
|
|
3911
3866
|
"kind": "Variable",
|
|
3912
3867
|
"canonicalReference": "@genesislcap/grid-pro!foundationAgBooleanRenderer:var",
|
|
@@ -5965,51 +5920,6 @@
|
|
|
5965
5920
|
"endIndex": 6
|
|
5966
5921
|
}
|
|
5967
5922
|
},
|
|
5968
|
-
{
|
|
5969
|
-
"kind": "Function",
|
|
5970
|
-
"canonicalReference": "@genesislcap/grid-pro!getColumnType:function(1)",
|
|
5971
|
-
"docComment": "/**\n * Return a column type base on each field's metadata from the selected resource.\n *\n * @remarks\n *\n * Currently only handles numeric columns\n *\n * @param metadataType - The type of the field/column\n *\n * @returns the column type\n *\n * @alpha\n */\n",
|
|
5972
|
-
"excerptTokens": [
|
|
5973
|
-
{
|
|
5974
|
-
"kind": "Content",
|
|
5975
|
-
"text": "export declare function getColumnType(metadataType: "
|
|
5976
|
-
},
|
|
5977
|
-
{
|
|
5978
|
-
"kind": "Content",
|
|
5979
|
-
"text": "string"
|
|
5980
|
-
},
|
|
5981
|
-
{
|
|
5982
|
-
"kind": "Content",
|
|
5983
|
-
"text": "): "
|
|
5984
|
-
},
|
|
5985
|
-
{
|
|
5986
|
-
"kind": "Content",
|
|
5987
|
-
"text": "string"
|
|
5988
|
-
},
|
|
5989
|
-
{
|
|
5990
|
-
"kind": "Content",
|
|
5991
|
-
"text": ";"
|
|
5992
|
-
}
|
|
5993
|
-
],
|
|
5994
|
-
"fileUrlPath": "src/grid-pro.definitions.ts",
|
|
5995
|
-
"returnTypeTokenRange": {
|
|
5996
|
-
"startIndex": 3,
|
|
5997
|
-
"endIndex": 4
|
|
5998
|
-
},
|
|
5999
|
-
"releaseTag": "Alpha",
|
|
6000
|
-
"overloadIndex": 1,
|
|
6001
|
-
"parameters": [
|
|
6002
|
-
{
|
|
6003
|
-
"parameterName": "metadataType",
|
|
6004
|
-
"parameterTypeTokenRange": {
|
|
6005
|
-
"startIndex": 1,
|
|
6006
|
-
"endIndex": 2
|
|
6007
|
-
},
|
|
6008
|
-
"isOptional": false
|
|
6009
|
-
}
|
|
6010
|
-
],
|
|
6011
|
-
"name": "getColumnType"
|
|
6012
|
-
},
|
|
6013
5923
|
{
|
|
6014
5924
|
"kind": "Variable",
|
|
6015
5925
|
"canonicalReference": "@genesislcap/grid-pro!getDateEditorTemplate:var",
|
|
@@ -6051,96 +5961,6 @@
|
|
|
6051
5961
|
"endIndex": 6
|
|
6052
5962
|
}
|
|
6053
5963
|
},
|
|
6054
|
-
{
|
|
6055
|
-
"kind": "Function",
|
|
6056
|
-
"canonicalReference": "@genesislcap/grid-pro!getFilterByFieldType:function(1)",
|
|
6057
|
-
"docComment": "/**\n * Returns a filter type based on the Grid Pro field/column type.\n *\n * @remarks\n *\n * Currently only returns agTextColumnFilter\n *\n * @param type - The type of the field/column\n *\n * @returns The ag-grid filter type\n *\n * @alpha\n */\n",
|
|
6058
|
-
"excerptTokens": [
|
|
6059
|
-
{
|
|
6060
|
-
"kind": "Content",
|
|
6061
|
-
"text": "export declare function getFilterByFieldType(type: "
|
|
6062
|
-
},
|
|
6063
|
-
{
|
|
6064
|
-
"kind": "Content",
|
|
6065
|
-
"text": "string"
|
|
6066
|
-
},
|
|
6067
|
-
{
|
|
6068
|
-
"kind": "Content",
|
|
6069
|
-
"text": "): "
|
|
6070
|
-
},
|
|
6071
|
-
{
|
|
6072
|
-
"kind": "Content",
|
|
6073
|
-
"text": "string"
|
|
6074
|
-
},
|
|
6075
|
-
{
|
|
6076
|
-
"kind": "Content",
|
|
6077
|
-
"text": ";"
|
|
6078
|
-
}
|
|
6079
|
-
],
|
|
6080
|
-
"fileUrlPath": "src/grid-pro.definitions.ts",
|
|
6081
|
-
"returnTypeTokenRange": {
|
|
6082
|
-
"startIndex": 3,
|
|
6083
|
-
"endIndex": 4
|
|
6084
|
-
},
|
|
6085
|
-
"releaseTag": "Alpha",
|
|
6086
|
-
"overloadIndex": 1,
|
|
6087
|
-
"parameters": [
|
|
6088
|
-
{
|
|
6089
|
-
"parameterName": "type",
|
|
6090
|
-
"parameterTypeTokenRange": {
|
|
6091
|
-
"startIndex": 1,
|
|
6092
|
-
"endIndex": 2
|
|
6093
|
-
},
|
|
6094
|
-
"isOptional": false
|
|
6095
|
-
}
|
|
6096
|
-
],
|
|
6097
|
-
"name": "getFilterByFieldType"
|
|
6098
|
-
},
|
|
6099
|
-
{
|
|
6100
|
-
"kind": "Function",
|
|
6101
|
-
"canonicalReference": "@genesislcap/grid-pro!getFilterParamsByFieldType:function(1)",
|
|
6102
|
-
"docComment": "/**\n * Returns the filter params based on the Grid Pro field/column type.\n *\n * @remarks\n *\n * Currently only returns a default filter params object, for all field types\n *\n * @param type - The type of the field/column\n *\n * @returns the filter params for the specified field type\n *\n * @alpha\n */\n",
|
|
6103
|
-
"excerptTokens": [
|
|
6104
|
-
{
|
|
6105
|
-
"kind": "Content",
|
|
6106
|
-
"text": "export declare function getFilterParamsByFieldType(type: "
|
|
6107
|
-
},
|
|
6108
|
-
{
|
|
6109
|
-
"kind": "Content",
|
|
6110
|
-
"text": "string"
|
|
6111
|
-
},
|
|
6112
|
-
{
|
|
6113
|
-
"kind": "Content",
|
|
6114
|
-
"text": "): "
|
|
6115
|
-
},
|
|
6116
|
-
{
|
|
6117
|
-
"kind": "Content",
|
|
6118
|
-
"text": "any"
|
|
6119
|
-
},
|
|
6120
|
-
{
|
|
6121
|
-
"kind": "Content",
|
|
6122
|
-
"text": ";"
|
|
6123
|
-
}
|
|
6124
|
-
],
|
|
6125
|
-
"fileUrlPath": "src/grid-pro.definitions.ts",
|
|
6126
|
-
"returnTypeTokenRange": {
|
|
6127
|
-
"startIndex": 3,
|
|
6128
|
-
"endIndex": 4
|
|
6129
|
-
},
|
|
6130
|
-
"releaseTag": "Alpha",
|
|
6131
|
-
"overloadIndex": 1,
|
|
6132
|
-
"parameters": [
|
|
6133
|
-
{
|
|
6134
|
-
"parameterName": "type",
|
|
6135
|
-
"parameterTypeTokenRange": {
|
|
6136
|
-
"startIndex": 1,
|
|
6137
|
-
"endIndex": 2
|
|
6138
|
-
},
|
|
6139
|
-
"isOptional": false
|
|
6140
|
-
}
|
|
6141
|
-
],
|
|
6142
|
-
"name": "getFilterParamsByFieldType"
|
|
6143
|
-
},
|
|
6144
5964
|
{
|
|
6145
5965
|
"kind": "Variable",
|
|
6146
5966
|
"canonicalReference": "@genesislcap/grid-pro!getMultiselectEditorTemplate:var",
|
|
@@ -7173,7 +6993,7 @@
|
|
|
7173
6993
|
{
|
|
7174
6994
|
"kind": "Property",
|
|
7175
6995
|
"canonicalReference": "@genesislcap/grid-pro!GridPro#enableRowFlashing:member",
|
|
7176
|
-
"docComment": "/**\n * If true, will enable row flashing for all rows for `add` async transactions\n
|
|
6996
|
+
"docComment": "/**\n * If true, will enable row flashing for all rows for `add` async transactions\n */\n",
|
|
7177
6997
|
"excerptTokens": [
|
|
7178
6998
|
{
|
|
7179
6999
|
"kind": "Content",
|
|
@@ -9550,128 +9370,6 @@
|
|
|
9550
9370
|
}
|
|
9551
9371
|
]
|
|
9552
9372
|
},
|
|
9553
|
-
{
|
|
9554
|
-
"kind": "Class",
|
|
9555
|
-
"canonicalReference": "@genesislcap/grid-pro!GridProServerSideDatasource:class",
|
|
9556
|
-
"docComment": "/**\n * A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.\n *\n * @remarks\n *\n * Only supports Server-Side Row Model. Requires `@ag-grid-enterprise/server-side-row-model` setup and valid AG Grid Enterprise license.\n *\n * @alpha\n */\n",
|
|
9557
|
-
"excerptTokens": [
|
|
9558
|
-
{
|
|
9559
|
-
"kind": "Content",
|
|
9560
|
-
"text": "export declare class GridProServerSideDatasource extends "
|
|
9561
|
-
},
|
|
9562
|
-
{
|
|
9563
|
-
"kind": "Reference",
|
|
9564
|
-
"text": "GridProServerSideDatasource_base",
|
|
9565
|
-
"canonicalReference": "@genesislcap/grid-pro!~GridProServerSideDatasource_base"
|
|
9566
|
-
},
|
|
9567
|
-
{
|
|
9568
|
-
"kind": "Content",
|
|
9569
|
-
"text": " "
|
|
9570
|
-
}
|
|
9571
|
-
],
|
|
9572
|
-
"fileUrlPath": "src/datasource/server-side.datasource.ts",
|
|
9573
|
-
"releaseTag": "Alpha",
|
|
9574
|
-
"isAbstract": false,
|
|
9575
|
-
"name": "GridProServerSideDatasource",
|
|
9576
|
-
"preserveMemberOrder": false,
|
|
9577
|
-
"members": [
|
|
9578
|
-
{
|
|
9579
|
-
"kind": "Property",
|
|
9580
|
-
"canonicalReference": "@genesislcap/grid-pro!GridProServerSideDatasource#pagination:member",
|
|
9581
|
-
"docComment": "",
|
|
9582
|
-
"excerptTokens": [
|
|
9583
|
-
{
|
|
9584
|
-
"kind": "Content",
|
|
9585
|
-
"text": "pagination: "
|
|
9586
|
-
},
|
|
9587
|
-
{
|
|
9588
|
-
"kind": "Content",
|
|
9589
|
-
"text": "boolean"
|
|
9590
|
-
},
|
|
9591
|
-
{
|
|
9592
|
-
"kind": "Content",
|
|
9593
|
-
"text": ";"
|
|
9594
|
-
}
|
|
9595
|
-
],
|
|
9596
|
-
"isReadonly": false,
|
|
9597
|
-
"isOptional": false,
|
|
9598
|
-
"releaseTag": "Alpha",
|
|
9599
|
-
"name": "pagination",
|
|
9600
|
-
"propertyTypeTokenRange": {
|
|
9601
|
-
"startIndex": 1,
|
|
9602
|
-
"endIndex": 2
|
|
9603
|
-
},
|
|
9604
|
-
"isStatic": false,
|
|
9605
|
-
"isProtected": false,
|
|
9606
|
-
"isAbstract": false
|
|
9607
|
-
},
|
|
9608
|
-
{
|
|
9609
|
-
"kind": "Property",
|
|
9610
|
-
"canonicalReference": "@genesislcap/grid-pro!GridProServerSideDatasource#params:member",
|
|
9611
|
-
"docComment": "",
|
|
9612
|
-
"excerptTokens": [
|
|
9613
|
-
{
|
|
9614
|
-
"kind": "Content",
|
|
9615
|
-
"text": "get params(): "
|
|
9616
|
-
},
|
|
9617
|
-
{
|
|
9618
|
-
"kind": "Content",
|
|
9619
|
-
"text": "any"
|
|
9620
|
-
},
|
|
9621
|
-
{
|
|
9622
|
-
"kind": "Content",
|
|
9623
|
-
"text": ";"
|
|
9624
|
-
}
|
|
9625
|
-
],
|
|
9626
|
-
"isReadonly": true,
|
|
9627
|
-
"isOptional": false,
|
|
9628
|
-
"releaseTag": "Alpha",
|
|
9629
|
-
"name": "params",
|
|
9630
|
-
"propertyTypeTokenRange": {
|
|
9631
|
-
"startIndex": 1,
|
|
9632
|
-
"endIndex": 2
|
|
9633
|
-
},
|
|
9634
|
-
"isStatic": false,
|
|
9635
|
-
"isProtected": false,
|
|
9636
|
-
"isAbstract": false
|
|
9637
|
-
},
|
|
9638
|
-
{
|
|
9639
|
-
"kind": "Property",
|
|
9640
|
-
"canonicalReference": "@genesislcap/grid-pro!GridProServerSideDatasource#rowId:member",
|
|
9641
|
-
"docComment": "",
|
|
9642
|
-
"excerptTokens": [
|
|
9643
|
-
{
|
|
9644
|
-
"kind": "Content",
|
|
9645
|
-
"text": "rowId: "
|
|
9646
|
-
},
|
|
9647
|
-
{
|
|
9648
|
-
"kind": "Content",
|
|
9649
|
-
"text": "string"
|
|
9650
|
-
},
|
|
9651
|
-
{
|
|
9652
|
-
"kind": "Content",
|
|
9653
|
-
"text": ";"
|
|
9654
|
-
}
|
|
9655
|
-
],
|
|
9656
|
-
"isReadonly": false,
|
|
9657
|
-
"isOptional": false,
|
|
9658
|
-
"releaseTag": "Alpha",
|
|
9659
|
-
"name": "rowId",
|
|
9660
|
-
"propertyTypeTokenRange": {
|
|
9661
|
-
"startIndex": 1,
|
|
9662
|
-
"endIndex": 2
|
|
9663
|
-
},
|
|
9664
|
-
"isStatic": false,
|
|
9665
|
-
"isProtected": false,
|
|
9666
|
-
"isAbstract": false
|
|
9667
|
-
}
|
|
9668
|
-
],
|
|
9669
|
-
"extendsTokenRange": {
|
|
9670
|
-
"startIndex": 1,
|
|
9671
|
-
"endIndex": 2
|
|
9672
|
-
},
|
|
9673
|
-
"implementsTokenRanges": []
|
|
9674
|
-
},
|
|
9675
9373
|
{
|
|
9676
9374
|
"kind": "Variable",
|
|
9677
9375
|
"canonicalReference": "@genesislcap/grid-pro!gridProTemplate:var",
|
|
@@ -11897,300 +11595,6 @@
|
|
|
11897
11595
|
}
|
|
11898
11596
|
]
|
|
11899
11597
|
},
|
|
11900
|
-
{
|
|
11901
|
-
"kind": "Class",
|
|
11902
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasource:class",
|
|
11903
|
-
"docComment": "/**\n * The IServerSideDatasource implementation, used for SSRM (Server-Side Row Model) in the grid.\n *\n * @alpha\n */\n",
|
|
11904
|
-
"excerptTokens": [
|
|
11905
|
-
{
|
|
11906
|
-
"kind": "Content",
|
|
11907
|
-
"text": "export declare class StreamDatasource implements "
|
|
11908
|
-
},
|
|
11909
|
-
{
|
|
11910
|
-
"kind": "Reference",
|
|
11911
|
-
"text": "IServerSideDatasource",
|
|
11912
|
-
"canonicalReference": "@ag-grid-community/core!IServerSideDatasource:interface"
|
|
11913
|
-
},
|
|
11914
|
-
{
|
|
11915
|
-
"kind": "Content",
|
|
11916
|
-
"text": " "
|
|
11917
|
-
}
|
|
11918
|
-
],
|
|
11919
|
-
"fileUrlPath": "src/datasource/server-side.datasource.ts",
|
|
11920
|
-
"releaseTag": "Alpha",
|
|
11921
|
-
"isAbstract": false,
|
|
11922
|
-
"name": "StreamDatasource",
|
|
11923
|
-
"preserveMemberOrder": false,
|
|
11924
|
-
"members": [
|
|
11925
|
-
{
|
|
11926
|
-
"kind": "Constructor",
|
|
11927
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasource:constructor(1)",
|
|
11928
|
-
"docComment": "/**\n * Constructs a new instance of the `StreamDatasource` class\n */\n",
|
|
11929
|
-
"excerptTokens": [
|
|
11930
|
-
{
|
|
11931
|
-
"kind": "Content",
|
|
11932
|
-
"text": "constructor(options: "
|
|
11933
|
-
},
|
|
11934
|
-
{
|
|
11935
|
-
"kind": "Reference",
|
|
11936
|
-
"text": "StreamDatasourceOptions",
|
|
11937
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasourceOptions:type"
|
|
11938
|
-
},
|
|
11939
|
-
{
|
|
11940
|
-
"kind": "Content",
|
|
11941
|
-
"text": ");"
|
|
11942
|
-
}
|
|
11943
|
-
],
|
|
11944
|
-
"releaseTag": "Alpha",
|
|
11945
|
-
"isProtected": false,
|
|
11946
|
-
"overloadIndex": 1,
|
|
11947
|
-
"parameters": [
|
|
11948
|
-
{
|
|
11949
|
-
"parameterName": "options",
|
|
11950
|
-
"parameterTypeTokenRange": {
|
|
11951
|
-
"startIndex": 1,
|
|
11952
|
-
"endIndex": 2
|
|
11953
|
-
},
|
|
11954
|
-
"isOptional": false
|
|
11955
|
-
}
|
|
11956
|
-
]
|
|
11957
|
-
},
|
|
11958
|
-
{
|
|
11959
|
-
"kind": "Property",
|
|
11960
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasource#auth:member",
|
|
11961
|
-
"docComment": "",
|
|
11962
|
-
"excerptTokens": [
|
|
11963
|
-
{
|
|
11964
|
-
"kind": "Content",
|
|
11965
|
-
"text": "auth: "
|
|
11966
|
-
},
|
|
11967
|
-
{
|
|
11968
|
-
"kind": "Reference",
|
|
11969
|
-
"text": "Auth",
|
|
11970
|
-
"canonicalReference": "@genesislcap/foundation-comms!Auth:interface"
|
|
11971
|
-
},
|
|
11972
|
-
{
|
|
11973
|
-
"kind": "Content",
|
|
11974
|
-
"text": ";"
|
|
11975
|
-
}
|
|
11976
|
-
],
|
|
11977
|
-
"isReadonly": false,
|
|
11978
|
-
"isOptional": false,
|
|
11979
|
-
"releaseTag": "Alpha",
|
|
11980
|
-
"name": "auth",
|
|
11981
|
-
"propertyTypeTokenRange": {
|
|
11982
|
-
"startIndex": 1,
|
|
11983
|
-
"endIndex": 2
|
|
11984
|
-
},
|
|
11985
|
-
"isStatic": false,
|
|
11986
|
-
"isProtected": false,
|
|
11987
|
-
"isAbstract": false
|
|
11988
|
-
},
|
|
11989
|
-
{
|
|
11990
|
-
"kind": "Property",
|
|
11991
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasource#connect:member",
|
|
11992
|
-
"docComment": "",
|
|
11993
|
-
"excerptTokens": [
|
|
11994
|
-
{
|
|
11995
|
-
"kind": "Content",
|
|
11996
|
-
"text": "connect: "
|
|
11997
|
-
},
|
|
11998
|
-
{
|
|
11999
|
-
"kind": "Reference",
|
|
12000
|
-
"text": "Connect",
|
|
12001
|
-
"canonicalReference": "@genesislcap/foundation-comms!Connect:interface"
|
|
12002
|
-
},
|
|
12003
|
-
{
|
|
12004
|
-
"kind": "Content",
|
|
12005
|
-
"text": ";"
|
|
12006
|
-
}
|
|
12007
|
-
],
|
|
12008
|
-
"isReadonly": false,
|
|
12009
|
-
"isOptional": false,
|
|
12010
|
-
"releaseTag": "Alpha",
|
|
12011
|
-
"name": "connect",
|
|
12012
|
-
"propertyTypeTokenRange": {
|
|
12013
|
-
"startIndex": 1,
|
|
12014
|
-
"endIndex": 2
|
|
12015
|
-
},
|
|
12016
|
-
"isStatic": false,
|
|
12017
|
-
"isProtected": false,
|
|
12018
|
-
"isAbstract": false
|
|
12019
|
-
},
|
|
12020
|
-
{
|
|
12021
|
-
"kind": "Property",
|
|
12022
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasource#dataserverStream:member",
|
|
12023
|
-
"docComment": "",
|
|
12024
|
-
"excerptTokens": [
|
|
12025
|
-
{
|
|
12026
|
-
"kind": "Content",
|
|
12027
|
-
"text": "dataserverStream: "
|
|
12028
|
-
},
|
|
12029
|
-
{
|
|
12030
|
-
"kind": "Reference",
|
|
12031
|
-
"text": "SocketObservable",
|
|
12032
|
-
"canonicalReference": "@genesislcap/foundation-comms!SocketObservable:class"
|
|
12033
|
-
},
|
|
12034
|
-
{
|
|
12035
|
-
"kind": "Content",
|
|
12036
|
-
"text": "<"
|
|
12037
|
-
},
|
|
12038
|
-
{
|
|
12039
|
-
"kind": "Reference",
|
|
12040
|
-
"text": "FilteredDataServerResult",
|
|
12041
|
-
"canonicalReference": "@genesislcap/foundation-comms!FilteredDataServerResult:type"
|
|
12042
|
-
},
|
|
12043
|
-
{
|
|
12044
|
-
"kind": "Content",
|
|
12045
|
-
"text": ">"
|
|
12046
|
-
},
|
|
12047
|
-
{
|
|
12048
|
-
"kind": "Content",
|
|
12049
|
-
"text": ";"
|
|
12050
|
-
}
|
|
12051
|
-
],
|
|
12052
|
-
"isReadonly": false,
|
|
12053
|
-
"isOptional": false,
|
|
12054
|
-
"releaseTag": "Alpha",
|
|
12055
|
-
"name": "dataserverStream",
|
|
12056
|
-
"propertyTypeTokenRange": {
|
|
12057
|
-
"startIndex": 1,
|
|
12058
|
-
"endIndex": 5
|
|
12059
|
-
},
|
|
12060
|
-
"isStatic": false,
|
|
12061
|
-
"isProtected": false,
|
|
12062
|
-
"isAbstract": false
|
|
12063
|
-
},
|
|
12064
|
-
{
|
|
12065
|
-
"kind": "Property",
|
|
12066
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasource#resourceParams:member",
|
|
12067
|
-
"docComment": "",
|
|
12068
|
-
"excerptTokens": [
|
|
12069
|
-
{
|
|
12070
|
-
"kind": "Content",
|
|
12071
|
-
"text": "resourceParams: "
|
|
12072
|
-
},
|
|
12073
|
-
{
|
|
12074
|
-
"kind": "Content",
|
|
12075
|
-
"text": "any"
|
|
12076
|
-
},
|
|
12077
|
-
{
|
|
12078
|
-
"kind": "Content",
|
|
12079
|
-
"text": ";"
|
|
12080
|
-
}
|
|
12081
|
-
],
|
|
12082
|
-
"isReadonly": false,
|
|
12083
|
-
"isOptional": false,
|
|
12084
|
-
"releaseTag": "Alpha",
|
|
12085
|
-
"name": "resourceParams",
|
|
12086
|
-
"propertyTypeTokenRange": {
|
|
12087
|
-
"startIndex": 1,
|
|
12088
|
-
"endIndex": 2
|
|
12089
|
-
},
|
|
12090
|
-
"isStatic": false,
|
|
12091
|
-
"isProtected": false,
|
|
12092
|
-
"isAbstract": false
|
|
12093
|
-
},
|
|
12094
|
-
{
|
|
12095
|
-
"kind": "Property",
|
|
12096
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasource#streamSourceRef:member",
|
|
12097
|
-
"docComment": "",
|
|
12098
|
-
"excerptTokens": [
|
|
12099
|
-
{
|
|
12100
|
-
"kind": "Content",
|
|
12101
|
-
"text": "streamSourceRef: "
|
|
12102
|
-
},
|
|
12103
|
-
{
|
|
12104
|
-
"kind": "Content",
|
|
12105
|
-
"text": "string"
|
|
12106
|
-
},
|
|
12107
|
-
{
|
|
12108
|
-
"kind": "Content",
|
|
12109
|
-
"text": ";"
|
|
12110
|
-
}
|
|
12111
|
-
],
|
|
12112
|
-
"isReadonly": false,
|
|
12113
|
-
"isOptional": false,
|
|
12114
|
-
"releaseTag": "Alpha",
|
|
12115
|
-
"name": "streamSourceRef",
|
|
12116
|
-
"propertyTypeTokenRange": {
|
|
12117
|
-
"startIndex": 1,
|
|
12118
|
-
"endIndex": 2
|
|
12119
|
-
},
|
|
12120
|
-
"isStatic": false,
|
|
12121
|
-
"isProtected": false,
|
|
12122
|
-
"isAbstract": false
|
|
12123
|
-
}
|
|
12124
|
-
],
|
|
12125
|
-
"implementsTokenRanges": [
|
|
12126
|
-
{
|
|
12127
|
-
"startIndex": 1,
|
|
12128
|
-
"endIndex": 2
|
|
12129
|
-
}
|
|
12130
|
-
]
|
|
12131
|
-
},
|
|
12132
|
-
{
|
|
12133
|
-
"kind": "TypeAlias",
|
|
12134
|
-
"canonicalReference": "@genesislcap/grid-pro!StreamDatasourceOptions:type",
|
|
12135
|
-
"docComment": "/**\n * Type definition for configuration options used for streams.\n *\n * @remarks\n *\n * Used by {@link @genesislcap/grid-pro#StreamDatasource} constructor to configure options for the stream.\n *\n * @alpha\n */\n",
|
|
12136
|
-
"excerptTokens": [
|
|
12137
|
-
{
|
|
12138
|
-
"kind": "Content",
|
|
12139
|
-
"text": "export type StreamDatasourceOptions = "
|
|
12140
|
-
},
|
|
12141
|
-
{
|
|
12142
|
-
"kind": "Content",
|
|
12143
|
-
"text": "{\n stream: "
|
|
12144
|
-
},
|
|
12145
|
-
{
|
|
12146
|
-
"kind": "Reference",
|
|
12147
|
-
"text": "SocketObservable",
|
|
12148
|
-
"canonicalReference": "@genesislcap/foundation-comms!SocketObservable:class"
|
|
12149
|
-
},
|
|
12150
|
-
{
|
|
12151
|
-
"kind": "Content",
|
|
12152
|
-
"text": "<"
|
|
12153
|
-
},
|
|
12154
|
-
{
|
|
12155
|
-
"kind": "Reference",
|
|
12156
|
-
"text": "FilteredDataServerResult",
|
|
12157
|
-
"canonicalReference": "@genesislcap/foundation-comms!FilteredDataServerResult:type"
|
|
12158
|
-
},
|
|
12159
|
-
{
|
|
12160
|
-
"kind": "Content",
|
|
12161
|
-
"text": ">;\n resourceName: string;\n resourceParams?: any;\n resourceIndexes?: "
|
|
12162
|
-
},
|
|
12163
|
-
{
|
|
12164
|
-
"kind": "Reference",
|
|
12165
|
-
"text": "Map",
|
|
12166
|
-
"canonicalReference": "!Map:interface"
|
|
12167
|
-
},
|
|
12168
|
-
{
|
|
12169
|
-
"kind": "Content",
|
|
12170
|
-
"text": "<string, [string]>;\n resourceColDefs?: "
|
|
12171
|
-
},
|
|
12172
|
-
{
|
|
12173
|
-
"kind": "Reference",
|
|
12174
|
-
"text": "MetadataDetail",
|
|
12175
|
-
"canonicalReference": "@genesislcap/foundation-comms!MetadataDetail:type"
|
|
12176
|
-
},
|
|
12177
|
-
{
|
|
12178
|
-
"kind": "Content",
|
|
12179
|
-
"text": "[];\n maxRows?: number;\n maxView?: number;\n rowId?: string;\n pagination?: boolean;\n}"
|
|
12180
|
-
},
|
|
12181
|
-
{
|
|
12182
|
-
"kind": "Content",
|
|
12183
|
-
"text": ";"
|
|
12184
|
-
}
|
|
12185
|
-
],
|
|
12186
|
-
"fileUrlPath": "src/datasource/server-side.datasource.ts",
|
|
12187
|
-
"releaseTag": "Alpha",
|
|
12188
|
-
"name": "StreamDatasourceOptions",
|
|
12189
|
-
"typeTokenRange": {
|
|
12190
|
-
"startIndex": 1,
|
|
12191
|
-
"endIndex": 10
|
|
12192
|
-
}
|
|
12193
|
-
},
|
|
12194
11598
|
{
|
|
12195
11599
|
"kind": "Variable",
|
|
12196
11600
|
"canonicalReference": "@genesislcap/grid-pro!textFieldRendererStyles:var",
|