@genesislcap/grid-pro 14.199.2 → 14.199.3-alpha-40ecfcd.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/README.md +117 -111
- package/dist/custom-elements.json +2742 -840
- package/dist/dts/datasource/base.datasource.d.ts +22 -6
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/base.types.d.ts +22 -0
- package/dist/dts/datasource/base.types.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.datasource.d.ts +27 -83
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.grid-definitions.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-base.d.ts +55 -0
- package/dist/dts/datasource/server-side.resource-base.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts +20 -0
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts +17 -0
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts.map +1 -0
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +13 -13
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +16 -2
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/esm/datasource/base.datasource.js +79 -9
- package/dist/esm/datasource/base.types.js +1 -0
- package/dist/esm/datasource/client-side.grid-definitions.js +1 -1
- package/dist/esm/datasource/server-side.datasource.js +220 -396
- package/dist/esm/datasource/server-side.grid-definitions.js +42 -7
- package/dist/esm/datasource/server-side.resource-base.js +285 -0
- package/dist/esm/datasource/server-side.resource-dataserver.js +132 -0
- package/dist/esm/datasource/server-side.resource-reqrep.js +131 -0
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +55 -61
- package/dist/esm/grid-pro.js +7 -4
- package/dist/grid-pro.api.json +21 -142
- package/dist/grid-pro.d.ts +77 -112
- package/docs/api/grid-pro.gridpro.addeventlistener.md +2 -2
- package/docs/api/grid-pro.gridpro.md +1 -1
- package/docs/api/grid-pro.gridprogenesisdatasource.deinit.md +5 -0
- package/docs/api/{grid-pro.gridprogenesisdatasource.auth.md → grid-pro.gridprogenesisdatasource.destroy.md} +9 -3
- package/docs/api/grid-pro.gridprogenesisdatasource.handleerrors.md +2 -2
- package/docs/api/grid-pro.gridprogenesisdatasource.md +2 -6
- package/docs/api/grid-pro.gridprogenesisdatasource.reset.md +1 -1
- package/docs/api-report.md +19 -68
- package/package.json +13 -13
- package/docs/api/grid-pro.gridprogenesisdatasource.datasource.md +0 -11
- package/docs/api/grid-pro.gridprogenesisdatasource.disablepolling.md +0 -11
- package/docs/api/grid-pro.gridprogenesisdatasource.pollinginterval.md +0 -11
- package/docs/api/grid-pro.gridprogenesisdatasource.request.md +0 -11
|
@@ -667,9 +667,9 @@
|
|
|
667
667
|
"name": "addEventListener",
|
|
668
668
|
"parameters": [
|
|
669
669
|
{
|
|
670
|
-
"name": "
|
|
670
|
+
"name": "eventType",
|
|
671
671
|
"type": {
|
|
672
|
-
"text": "
|
|
672
|
+
"text": "string"
|
|
673
673
|
}
|
|
674
674
|
},
|
|
675
675
|
{
|
|
@@ -690,7 +690,7 @@
|
|
|
690
690
|
"privacy": "private",
|
|
691
691
|
"parameters": [
|
|
692
692
|
{
|
|
693
|
-
"name": "
|
|
693
|
+
"name": "eventType",
|
|
694
694
|
"type": {
|
|
695
695
|
"text": "string"
|
|
696
696
|
}
|
|
@@ -5782,6 +5782,22 @@
|
|
|
5782
5782
|
"kind": "javascript-module",
|
|
5783
5783
|
"path": "src/datasource/base.datasource.ts",
|
|
5784
5784
|
"declarations": [
|
|
5785
|
+
{
|
|
5786
|
+
"kind": "variable",
|
|
5787
|
+
"name": "criteriaDelimiter",
|
|
5788
|
+
"type": {
|
|
5789
|
+
"text": "string"
|
|
5790
|
+
},
|
|
5791
|
+
"default": "';'"
|
|
5792
|
+
},
|
|
5793
|
+
{
|
|
5794
|
+
"kind": "variable",
|
|
5795
|
+
"name": "criteriaJoin",
|
|
5796
|
+
"type": {
|
|
5797
|
+
"text": "string"
|
|
5798
|
+
},
|
|
5799
|
+
"default": "' && '"
|
|
5800
|
+
},
|
|
5785
5801
|
{
|
|
5786
5802
|
"kind": "class",
|
|
5787
5803
|
"description": "",
|
|
@@ -5794,6 +5810,13 @@
|
|
|
5794
5810
|
"text": "Connect"
|
|
5795
5811
|
}
|
|
5796
5812
|
},
|
|
5813
|
+
{
|
|
5814
|
+
"kind": "field",
|
|
5815
|
+
"name": "datasource",
|
|
5816
|
+
"type": {
|
|
5817
|
+
"text": "Datasource"
|
|
5818
|
+
}
|
|
5819
|
+
},
|
|
5797
5820
|
{
|
|
5798
5821
|
"kind": "field",
|
|
5799
5822
|
"name": "deferredGridOptions",
|
|
@@ -5882,6 +5905,44 @@
|
|
|
5882
5905
|
},
|
|
5883
5906
|
"default": "false"
|
|
5884
5907
|
},
|
|
5908
|
+
{
|
|
5909
|
+
"kind": "field",
|
|
5910
|
+
"name": "viewNumber",
|
|
5911
|
+
"type": {
|
|
5912
|
+
"text": "number"
|
|
5913
|
+
}
|
|
5914
|
+
},
|
|
5915
|
+
{
|
|
5916
|
+
"kind": "field",
|
|
5917
|
+
"name": "pollingInterval",
|
|
5918
|
+
"type": {
|
|
5919
|
+
"text": "number"
|
|
5920
|
+
}
|
|
5921
|
+
},
|
|
5922
|
+
{
|
|
5923
|
+
"kind": "field",
|
|
5924
|
+
"name": "disablePolling",
|
|
5925
|
+
"type": {
|
|
5926
|
+
"text": "boolean"
|
|
5927
|
+
},
|
|
5928
|
+
"default": "false"
|
|
5929
|
+
},
|
|
5930
|
+
{
|
|
5931
|
+
"kind": "field",
|
|
5932
|
+
"name": "request",
|
|
5933
|
+
"type": {
|
|
5934
|
+
"text": "any"
|
|
5935
|
+
}
|
|
5936
|
+
},
|
|
5937
|
+
{
|
|
5938
|
+
"kind": "field",
|
|
5939
|
+
"name": "requestAutoSetup",
|
|
5940
|
+
"type": {
|
|
5941
|
+
"text": "boolean"
|
|
5942
|
+
},
|
|
5943
|
+
"default": "true",
|
|
5944
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up."
|
|
5945
|
+
},
|
|
5885
5946
|
{
|
|
5886
5947
|
"kind": "field",
|
|
5887
5948
|
"name": "rowIdAttr",
|
|
@@ -5905,14 +5966,83 @@
|
|
|
5905
5966
|
"privacy": "protected",
|
|
5906
5967
|
"readonly": true
|
|
5907
5968
|
},
|
|
5969
|
+
{
|
|
5970
|
+
"kind": "field",
|
|
5971
|
+
"name": "criteriaFromFilters",
|
|
5972
|
+
"type": {
|
|
5973
|
+
"text": "Map<string, string>"
|
|
5974
|
+
},
|
|
5975
|
+
"privacy": "protected",
|
|
5976
|
+
"default": "new Map()"
|
|
5977
|
+
},
|
|
5978
|
+
{
|
|
5979
|
+
"kind": "field",
|
|
5980
|
+
"name": "update",
|
|
5981
|
+
"type": {
|
|
5982
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
5983
|
+
},
|
|
5984
|
+
"privacy": "protected",
|
|
5985
|
+
"default": "new BehaviorSubject(new Map())"
|
|
5986
|
+
},
|
|
5987
|
+
{
|
|
5988
|
+
"kind": "method",
|
|
5989
|
+
"name": "datasourceOptions",
|
|
5990
|
+
"privacy": "protected",
|
|
5991
|
+
"return": {
|
|
5992
|
+
"type": {
|
|
5993
|
+
"text": "DatasourceOptions"
|
|
5994
|
+
}
|
|
5995
|
+
}
|
|
5996
|
+
},
|
|
5997
|
+
{
|
|
5998
|
+
"kind": "method",
|
|
5999
|
+
"name": "buildCriteria",
|
|
6000
|
+
"privacy": "private",
|
|
6001
|
+
"return": {
|
|
6002
|
+
"type": {
|
|
6003
|
+
"text": "string"
|
|
6004
|
+
}
|
|
6005
|
+
}
|
|
6006
|
+
},
|
|
6007
|
+
{
|
|
6008
|
+
"kind": "method",
|
|
6009
|
+
"name": "setFilter",
|
|
6010
|
+
"privacy": "public",
|
|
6011
|
+
"parameters": [
|
|
6012
|
+
{
|
|
6013
|
+
"name": "fieldName",
|
|
6014
|
+
"type": {
|
|
6015
|
+
"text": "string"
|
|
6016
|
+
}
|
|
6017
|
+
},
|
|
6018
|
+
{
|
|
6019
|
+
"name": "newFilter",
|
|
6020
|
+
"type": {
|
|
6021
|
+
"text": "string"
|
|
6022
|
+
}
|
|
6023
|
+
}
|
|
6024
|
+
]
|
|
6025
|
+
},
|
|
6026
|
+
{
|
|
6027
|
+
"kind": "method",
|
|
6028
|
+
"name": "removeFilter",
|
|
6029
|
+
"privacy": "public",
|
|
6030
|
+
"parameters": [
|
|
6031
|
+
{
|
|
6032
|
+
"name": "fieldName",
|
|
6033
|
+
"type": {
|
|
6034
|
+
"text": "string"
|
|
6035
|
+
}
|
|
6036
|
+
}
|
|
6037
|
+
]
|
|
6038
|
+
},
|
|
5908
6039
|
{
|
|
5909
6040
|
"kind": "field",
|
|
5910
6041
|
"name": "isRequestServer",
|
|
5911
6042
|
"type": {
|
|
5912
6043
|
"text": "boolean"
|
|
5913
6044
|
},
|
|
5914
|
-
"
|
|
5915
|
-
"default": "false"
|
|
6045
|
+
"readonly": true
|
|
5916
6046
|
},
|
|
5917
6047
|
{
|
|
5918
6048
|
"kind": "method",
|
|
@@ -6119,6 +6249,37 @@
|
|
|
6119
6249
|
"default": "false",
|
|
6120
6250
|
"fieldName": "reverse"
|
|
6121
6251
|
},
|
|
6252
|
+
{
|
|
6253
|
+
"name": "view-number",
|
|
6254
|
+
"type": {
|
|
6255
|
+
"text": "number"
|
|
6256
|
+
},
|
|
6257
|
+
"fieldName": "viewNumber"
|
|
6258
|
+
},
|
|
6259
|
+
{
|
|
6260
|
+
"name": "polling-interval",
|
|
6261
|
+
"type": {
|
|
6262
|
+
"text": "number"
|
|
6263
|
+
},
|
|
6264
|
+
"fieldName": "pollingInterval"
|
|
6265
|
+
},
|
|
6266
|
+
{
|
|
6267
|
+
"name": "disable-polling",
|
|
6268
|
+
"type": {
|
|
6269
|
+
"text": "boolean"
|
|
6270
|
+
},
|
|
6271
|
+
"default": "false",
|
|
6272
|
+
"fieldName": "disablePolling"
|
|
6273
|
+
},
|
|
6274
|
+
{
|
|
6275
|
+
"name": "request-auto-setup",
|
|
6276
|
+
"type": {
|
|
6277
|
+
"text": "boolean"
|
|
6278
|
+
},
|
|
6279
|
+
"default": "true",
|
|
6280
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
6281
|
+
"fieldName": "requestAutoSetup"
|
|
6282
|
+
},
|
|
6122
6283
|
{
|
|
6123
6284
|
"name": "row-id",
|
|
6124
6285
|
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
@@ -6363,6 +6524,17 @@
|
|
|
6363
6524
|
"module": "src/datasource/base.datasource.ts"
|
|
6364
6525
|
}
|
|
6365
6526
|
},
|
|
6527
|
+
{
|
|
6528
|
+
"kind": "field",
|
|
6529
|
+
"name": "datasource",
|
|
6530
|
+
"type": {
|
|
6531
|
+
"text": "Datasource"
|
|
6532
|
+
},
|
|
6533
|
+
"inheritedFrom": {
|
|
6534
|
+
"name": "GenesisGridDatasourceElement",
|
|
6535
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6536
|
+
}
|
|
6537
|
+
},
|
|
6366
6538
|
{
|
|
6367
6539
|
"kind": "field",
|
|
6368
6540
|
"name": "deferredGridOptions",
|
|
@@ -6501,8 +6673,10 @@
|
|
|
6501
6673
|
},
|
|
6502
6674
|
{
|
|
6503
6675
|
"kind": "field",
|
|
6504
|
-
"name": "
|
|
6505
|
-
"
|
|
6676
|
+
"name": "viewNumber",
|
|
6677
|
+
"type": {
|
|
6678
|
+
"text": "number"
|
|
6679
|
+
},
|
|
6506
6680
|
"inheritedFrom": {
|
|
6507
6681
|
"name": "GenesisGridDatasourceElement",
|
|
6508
6682
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -6510,12 +6684,10 @@
|
|
|
6510
6684
|
},
|
|
6511
6685
|
{
|
|
6512
6686
|
"kind": "field",
|
|
6513
|
-
"name": "
|
|
6687
|
+
"name": "pollingInterval",
|
|
6514
6688
|
"type": {
|
|
6515
|
-
"text": "
|
|
6689
|
+
"text": "number"
|
|
6516
6690
|
},
|
|
6517
|
-
"privacy": "protected",
|
|
6518
|
-
"readonly": true,
|
|
6519
6691
|
"inheritedFrom": {
|
|
6520
6692
|
"name": "GenesisGridDatasourceElement",
|
|
6521
6693
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -6523,12 +6695,11 @@
|
|
|
6523
6695
|
},
|
|
6524
6696
|
{
|
|
6525
6697
|
"kind": "field",
|
|
6526
|
-
"name": "
|
|
6698
|
+
"name": "disablePolling",
|
|
6527
6699
|
"type": {
|
|
6528
|
-
"text": "
|
|
6700
|
+
"text": "boolean"
|
|
6529
6701
|
},
|
|
6530
|
-
"
|
|
6531
|
-
"readonly": true,
|
|
6702
|
+
"default": "false",
|
|
6532
6703
|
"inheritedFrom": {
|
|
6533
6704
|
"name": "GenesisGridDatasourceElement",
|
|
6534
6705
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -6536,34 +6707,32 @@
|
|
|
6536
6707
|
},
|
|
6537
6708
|
{
|
|
6538
6709
|
"kind": "field",
|
|
6539
|
-
"name": "
|
|
6710
|
+
"name": "request",
|
|
6711
|
+
"type": {
|
|
6712
|
+
"text": "any"
|
|
6713
|
+
},
|
|
6714
|
+
"inheritedFrom": {
|
|
6715
|
+
"name": "GenesisGridDatasourceElement",
|
|
6716
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6717
|
+
}
|
|
6718
|
+
},
|
|
6719
|
+
{
|
|
6720
|
+
"kind": "field",
|
|
6721
|
+
"name": "requestAutoSetup",
|
|
6540
6722
|
"type": {
|
|
6541
6723
|
"text": "boolean"
|
|
6542
6724
|
},
|
|
6543
|
-
"
|
|
6544
|
-
"
|
|
6725
|
+
"default": "true",
|
|
6726
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
6545
6727
|
"inheritedFrom": {
|
|
6546
6728
|
"name": "GenesisGridDatasourceElement",
|
|
6547
6729
|
"module": "src/datasource/base.datasource.ts"
|
|
6548
6730
|
}
|
|
6549
6731
|
},
|
|
6550
6732
|
{
|
|
6551
|
-
"kind": "
|
|
6552
|
-
"name": "
|
|
6553
|
-
"
|
|
6554
|
-
{
|
|
6555
|
-
"name": "prev",
|
|
6556
|
-
"type": {
|
|
6557
|
-
"text": "DatasourceStatus"
|
|
6558
|
-
}
|
|
6559
|
-
},
|
|
6560
|
-
{
|
|
6561
|
-
"name": "next",
|
|
6562
|
-
"type": {
|
|
6563
|
-
"text": "DatasourceStatus"
|
|
6564
|
-
}
|
|
6565
|
-
}
|
|
6566
|
-
],
|
|
6733
|
+
"kind": "field",
|
|
6734
|
+
"name": "rowIdAttr",
|
|
6735
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
6567
6736
|
"inheritedFrom": {
|
|
6568
6737
|
"name": "GenesisGridDatasourceElement",
|
|
6569
6738
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -6571,9 +6740,9 @@
|
|
|
6571
6740
|
},
|
|
6572
6741
|
{
|
|
6573
6742
|
"kind": "field",
|
|
6574
|
-
"name": "
|
|
6743
|
+
"name": "rowId",
|
|
6575
6744
|
"type": {
|
|
6576
|
-
"text": "
|
|
6745
|
+
"text": "string"
|
|
6577
6746
|
},
|
|
6578
6747
|
"privacy": "protected",
|
|
6579
6748
|
"readonly": true,
|
|
@@ -6584,38 +6753,192 @@
|
|
|
6584
6753
|
},
|
|
6585
6754
|
{
|
|
6586
6755
|
"kind": "field",
|
|
6587
|
-
"name": "
|
|
6756
|
+
"name": "defaultRowIdByResourceType",
|
|
6588
6757
|
"type": {
|
|
6589
|
-
"text": "
|
|
6758
|
+
"text": "string"
|
|
6590
6759
|
},
|
|
6591
|
-
"privacy": "
|
|
6592
|
-
"
|
|
6760
|
+
"privacy": "protected",
|
|
6761
|
+
"readonly": true,
|
|
6593
6762
|
"inheritedFrom": {
|
|
6594
|
-
"name": "
|
|
6595
|
-
"module": "src/
|
|
6763
|
+
"name": "GenesisGridDatasourceElement",
|
|
6764
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6596
6765
|
}
|
|
6597
6766
|
},
|
|
6598
6767
|
{
|
|
6599
6768
|
"kind": "field",
|
|
6600
|
-
"name": "
|
|
6769
|
+
"name": "criteriaFromFilters",
|
|
6601
6770
|
"type": {
|
|
6602
|
-
"text": "
|
|
6771
|
+
"text": "Map<string, string>"
|
|
6603
6772
|
},
|
|
6604
|
-
"privacy": "
|
|
6605
|
-
"
|
|
6773
|
+
"privacy": "protected",
|
|
6774
|
+
"default": "new Map()",
|
|
6606
6775
|
"inheritedFrom": {
|
|
6607
|
-
"name": "
|
|
6608
|
-
"module": "src/
|
|
6776
|
+
"name": "GenesisGridDatasourceElement",
|
|
6777
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6609
6778
|
}
|
|
6610
6779
|
},
|
|
6611
6780
|
{
|
|
6612
6781
|
"kind": "field",
|
|
6613
|
-
"name": "
|
|
6782
|
+
"name": "update",
|
|
6614
6783
|
"type": {
|
|
6615
|
-
"text": "
|
|
6784
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
6616
6785
|
},
|
|
6617
|
-
"privacy": "
|
|
6618
|
-
"
|
|
6786
|
+
"privacy": "protected",
|
|
6787
|
+
"default": "new BehaviorSubject(new Map())",
|
|
6788
|
+
"inheritedFrom": {
|
|
6789
|
+
"name": "GenesisGridDatasourceElement",
|
|
6790
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6791
|
+
}
|
|
6792
|
+
},
|
|
6793
|
+
{
|
|
6794
|
+
"kind": "method",
|
|
6795
|
+
"name": "datasourceOptions",
|
|
6796
|
+
"privacy": "protected",
|
|
6797
|
+
"return": {
|
|
6798
|
+
"type": {
|
|
6799
|
+
"text": "DatasourceOptions"
|
|
6800
|
+
}
|
|
6801
|
+
},
|
|
6802
|
+
"inheritedFrom": {
|
|
6803
|
+
"name": "GenesisGridDatasourceElement",
|
|
6804
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6805
|
+
}
|
|
6806
|
+
},
|
|
6807
|
+
{
|
|
6808
|
+
"kind": "method",
|
|
6809
|
+
"name": "buildCriteria",
|
|
6810
|
+
"privacy": "private",
|
|
6811
|
+
"return": {
|
|
6812
|
+
"type": {
|
|
6813
|
+
"text": "string"
|
|
6814
|
+
}
|
|
6815
|
+
},
|
|
6816
|
+
"inheritedFrom": {
|
|
6817
|
+
"name": "GenesisGridDatasourceElement",
|
|
6818
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6819
|
+
}
|
|
6820
|
+
},
|
|
6821
|
+
{
|
|
6822
|
+
"kind": "method",
|
|
6823
|
+
"name": "setFilter",
|
|
6824
|
+
"privacy": "public",
|
|
6825
|
+
"parameters": [
|
|
6826
|
+
{
|
|
6827
|
+
"name": "fieldName",
|
|
6828
|
+
"type": {
|
|
6829
|
+
"text": "string"
|
|
6830
|
+
}
|
|
6831
|
+
},
|
|
6832
|
+
{
|
|
6833
|
+
"name": "newFilter",
|
|
6834
|
+
"type": {
|
|
6835
|
+
"text": "string"
|
|
6836
|
+
}
|
|
6837
|
+
}
|
|
6838
|
+
],
|
|
6839
|
+
"inheritedFrom": {
|
|
6840
|
+
"name": "GenesisGridDatasourceElement",
|
|
6841
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6842
|
+
}
|
|
6843
|
+
},
|
|
6844
|
+
{
|
|
6845
|
+
"kind": "method",
|
|
6846
|
+
"name": "removeFilter",
|
|
6847
|
+
"privacy": "public",
|
|
6848
|
+
"parameters": [
|
|
6849
|
+
{
|
|
6850
|
+
"name": "fieldName",
|
|
6851
|
+
"type": {
|
|
6852
|
+
"text": "string"
|
|
6853
|
+
}
|
|
6854
|
+
}
|
|
6855
|
+
],
|
|
6856
|
+
"inheritedFrom": {
|
|
6857
|
+
"name": "GenesisGridDatasourceElement",
|
|
6858
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6859
|
+
}
|
|
6860
|
+
},
|
|
6861
|
+
{
|
|
6862
|
+
"kind": "field",
|
|
6863
|
+
"name": "isRequestServer",
|
|
6864
|
+
"type": {
|
|
6865
|
+
"text": "boolean"
|
|
6866
|
+
},
|
|
6867
|
+
"readonly": true,
|
|
6868
|
+
"inheritedFrom": {
|
|
6869
|
+
"name": "GenesisGridDatasourceElement",
|
|
6870
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6871
|
+
}
|
|
6872
|
+
},
|
|
6873
|
+
{
|
|
6874
|
+
"kind": "method",
|
|
6875
|
+
"name": "datasourceStatusChanged",
|
|
6876
|
+
"parameters": [
|
|
6877
|
+
{
|
|
6878
|
+
"name": "prev",
|
|
6879
|
+
"type": {
|
|
6880
|
+
"text": "DatasourceStatus"
|
|
6881
|
+
}
|
|
6882
|
+
},
|
|
6883
|
+
{
|
|
6884
|
+
"name": "next",
|
|
6885
|
+
"type": {
|
|
6886
|
+
"text": "DatasourceStatus"
|
|
6887
|
+
}
|
|
6888
|
+
}
|
|
6889
|
+
],
|
|
6890
|
+
"inheritedFrom": {
|
|
6891
|
+
"name": "GenesisGridDatasourceElement",
|
|
6892
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6893
|
+
}
|
|
6894
|
+
},
|
|
6895
|
+
{
|
|
6896
|
+
"kind": "field",
|
|
6897
|
+
"name": "agGrid",
|
|
6898
|
+
"type": {
|
|
6899
|
+
"text": "GridPro | null"
|
|
6900
|
+
},
|
|
6901
|
+
"privacy": "protected",
|
|
6902
|
+
"readonly": true,
|
|
6903
|
+
"inheritedFrom": {
|
|
6904
|
+
"name": "GenesisGridDatasourceElement",
|
|
6905
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6906
|
+
}
|
|
6907
|
+
},
|
|
6908
|
+
{
|
|
6909
|
+
"kind": "field",
|
|
6910
|
+
"name": "_presentation",
|
|
6911
|
+
"type": {
|
|
6912
|
+
"text": "ComponentPresentation | null | undefined"
|
|
6913
|
+
},
|
|
6914
|
+
"privacy": "private",
|
|
6915
|
+
"default": "void 0",
|
|
6916
|
+
"inheritedFrom": {
|
|
6917
|
+
"name": "FoundationElement",
|
|
6918
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6919
|
+
}
|
|
6920
|
+
},
|
|
6921
|
+
{
|
|
6922
|
+
"kind": "field",
|
|
6923
|
+
"name": "$presentation",
|
|
6924
|
+
"type": {
|
|
6925
|
+
"text": "ComponentPresentation | null"
|
|
6926
|
+
},
|
|
6927
|
+
"privacy": "public",
|
|
6928
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
6929
|
+
"inheritedFrom": {
|
|
6930
|
+
"name": "FoundationElement",
|
|
6931
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6932
|
+
}
|
|
6933
|
+
},
|
|
6934
|
+
{
|
|
6935
|
+
"kind": "field",
|
|
6936
|
+
"name": "template",
|
|
6937
|
+
"type": {
|
|
6938
|
+
"text": "ElementViewTemplate | void | null"
|
|
6939
|
+
},
|
|
6940
|
+
"privacy": "public",
|
|
6941
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
6619
6942
|
"inheritedFrom": {
|
|
6620
6943
|
"name": "FoundationElement",
|
|
6621
6944
|
"module": "src/foundation-element/foundation-element.ts"
|
|
@@ -6801,36 +7124,60 @@
|
|
|
6801
7124
|
}
|
|
6802
7125
|
},
|
|
6803
7126
|
{
|
|
6804
|
-
"name": "
|
|
6805
|
-
"
|
|
6806
|
-
|
|
7127
|
+
"name": "view-number",
|
|
7128
|
+
"type": {
|
|
7129
|
+
"text": "number"
|
|
7130
|
+
},
|
|
7131
|
+
"fieldName": "viewNumber",
|
|
6807
7132
|
"inheritedFrom": {
|
|
6808
7133
|
"name": "GenesisGridDatasourceElement",
|
|
6809
7134
|
"module": "src/datasource/base.datasource.ts"
|
|
6810
7135
|
}
|
|
6811
|
-
}
|
|
6812
|
-
]
|
|
6813
|
-
},
|
|
6814
|
-
{
|
|
6815
|
-
"kind": "class",
|
|
6816
|
-
"description": "",
|
|
6817
|
-
"name": "StreamBaseDatasource",
|
|
6818
|
-
"members": [
|
|
7136
|
+
},
|
|
6819
7137
|
{
|
|
6820
|
-
"
|
|
6821
|
-
"name": "rowId",
|
|
7138
|
+
"name": "polling-interval",
|
|
6822
7139
|
"type": {
|
|
6823
|
-
"text": "
|
|
7140
|
+
"text": "number"
|
|
6824
7141
|
},
|
|
6825
|
-
"
|
|
7142
|
+
"fieldName": "pollingInterval",
|
|
7143
|
+
"inheritedFrom": {
|
|
7144
|
+
"name": "GenesisGridDatasourceElement",
|
|
7145
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7146
|
+
}
|
|
6826
7147
|
},
|
|
6827
7148
|
{
|
|
6828
|
-
"
|
|
6829
|
-
"name": "rowData",
|
|
7149
|
+
"name": "disable-polling",
|
|
6830
7150
|
"type": {
|
|
6831
|
-
"text": "
|
|
7151
|
+
"text": "boolean"
|
|
6832
7152
|
},
|
|
6833
|
-
"default": "
|
|
7153
|
+
"default": "false",
|
|
7154
|
+
"fieldName": "disablePolling",
|
|
7155
|
+
"inheritedFrom": {
|
|
7156
|
+
"name": "GenesisGridDatasourceElement",
|
|
7157
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7158
|
+
}
|
|
7159
|
+
},
|
|
7160
|
+
{
|
|
7161
|
+
"name": "request-auto-setup",
|
|
7162
|
+
"type": {
|
|
7163
|
+
"text": "boolean"
|
|
7164
|
+
},
|
|
7165
|
+
"default": "true",
|
|
7166
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
7167
|
+
"fieldName": "requestAutoSetup",
|
|
7168
|
+
"inheritedFrom": {
|
|
7169
|
+
"name": "GenesisGridDatasourceElement",
|
|
7170
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7171
|
+
}
|
|
7172
|
+
},
|
|
7173
|
+
{
|
|
7174
|
+
"name": "row-id",
|
|
7175
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
7176
|
+
"fieldName": "rowIdAttr",
|
|
7177
|
+
"inheritedFrom": {
|
|
7178
|
+
"name": "GenesisGridDatasourceElement",
|
|
7179
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7180
|
+
}
|
|
6834
7181
|
}
|
|
6835
7182
|
]
|
|
6836
7183
|
}
|
|
@@ -6838,30 +7185,44 @@
|
|
|
6838
7185
|
"exports": [
|
|
6839
7186
|
{
|
|
6840
7187
|
"kind": "js",
|
|
6841
|
-
"name": "
|
|
7188
|
+
"name": "criteriaDelimiter",
|
|
6842
7189
|
"declaration": {
|
|
6843
|
-
"name": "
|
|
7190
|
+
"name": "criteriaDelimiter",
|
|
6844
7191
|
"module": "src/datasource/base.datasource.ts"
|
|
6845
7192
|
}
|
|
6846
7193
|
},
|
|
6847
7194
|
{
|
|
6848
7195
|
"kind": "js",
|
|
6849
|
-
"name": "
|
|
7196
|
+
"name": "criteriaJoin",
|
|
6850
7197
|
"declaration": {
|
|
6851
|
-
"name": "
|
|
7198
|
+
"name": "criteriaJoin",
|
|
7199
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7200
|
+
}
|
|
7201
|
+
},
|
|
7202
|
+
{
|
|
7203
|
+
"kind": "js",
|
|
7204
|
+
"name": "GenesisGridDatasourceElement",
|
|
7205
|
+
"declaration": {
|
|
7206
|
+
"name": "GenesisGridDatasourceElement",
|
|
6852
7207
|
"module": "src/datasource/base.datasource.ts"
|
|
6853
7208
|
}
|
|
6854
7209
|
},
|
|
6855
7210
|
{
|
|
6856
7211
|
"kind": "js",
|
|
6857
|
-
"name": "
|
|
7212
|
+
"name": "GridProBaseDatasource",
|
|
6858
7213
|
"declaration": {
|
|
6859
|
-
"name": "
|
|
7214
|
+
"name": "GridProBaseDatasource",
|
|
6860
7215
|
"module": "src/datasource/base.datasource.ts"
|
|
6861
7216
|
}
|
|
6862
7217
|
}
|
|
6863
7218
|
]
|
|
6864
7219
|
},
|
|
7220
|
+
{
|
|
7221
|
+
"kind": "javascript-module",
|
|
7222
|
+
"path": "src/datasource/base.types.ts",
|
|
7223
|
+
"declarations": [],
|
|
7224
|
+
"exports": []
|
|
7225
|
+
},
|
|
6865
7226
|
{
|
|
6866
7227
|
"kind": "javascript-module",
|
|
6867
7228
|
"path": "src/datasource/client-side.datasource.ts",
|
|
@@ -6961,28 +7322,6 @@
|
|
|
6961
7322
|
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
6962
7323
|
}
|
|
6963
7324
|
},
|
|
6964
|
-
{
|
|
6965
|
-
"kind": "field",
|
|
6966
|
-
"name": "auth",
|
|
6967
|
-
"type": {
|
|
6968
|
-
"text": "Auth"
|
|
6969
|
-
},
|
|
6970
|
-
"inheritedFrom": {
|
|
6971
|
-
"name": "GridProGenesisDatasource",
|
|
6972
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
6973
|
-
}
|
|
6974
|
-
},
|
|
6975
|
-
{
|
|
6976
|
-
"kind": "field",
|
|
6977
|
-
"name": "datasource",
|
|
6978
|
-
"type": {
|
|
6979
|
-
"text": "Datasource"
|
|
6980
|
-
},
|
|
6981
|
-
"inheritedFrom": {
|
|
6982
|
-
"name": "GridProGenesisDatasource",
|
|
6983
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
6984
|
-
}
|
|
6985
|
-
},
|
|
6986
7325
|
{
|
|
6987
7326
|
"kind": "field",
|
|
6988
7327
|
"name": "applyFuncName",
|
|
@@ -7031,40 +7370,6 @@
|
|
|
7031
7370
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7032
7371
|
}
|
|
7033
7372
|
},
|
|
7034
|
-
{
|
|
7035
|
-
"kind": "field",
|
|
7036
|
-
"name": "pollingInterval",
|
|
7037
|
-
"type": {
|
|
7038
|
-
"text": "number"
|
|
7039
|
-
},
|
|
7040
|
-
"inheritedFrom": {
|
|
7041
|
-
"name": "GridProGenesisDatasource",
|
|
7042
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7043
|
-
}
|
|
7044
|
-
},
|
|
7045
|
-
{
|
|
7046
|
-
"kind": "field",
|
|
7047
|
-
"name": "disablePolling",
|
|
7048
|
-
"type": {
|
|
7049
|
-
"text": "boolean"
|
|
7050
|
-
},
|
|
7051
|
-
"default": "false",
|
|
7052
|
-
"inheritedFrom": {
|
|
7053
|
-
"name": "GridProGenesisDatasource",
|
|
7054
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7055
|
-
}
|
|
7056
|
-
},
|
|
7057
|
-
{
|
|
7058
|
-
"kind": "field",
|
|
7059
|
-
"name": "request",
|
|
7060
|
-
"type": {
|
|
7061
|
-
"text": "any"
|
|
7062
|
-
},
|
|
7063
|
-
"inheritedFrom": {
|
|
7064
|
-
"name": "GridProGenesisDatasource",
|
|
7065
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7066
|
-
}
|
|
7067
|
-
},
|
|
7068
7373
|
{
|
|
7069
7374
|
"kind": "method",
|
|
7070
7375
|
"name": "requestChanged",
|
|
@@ -7182,32 +7487,6 @@
|
|
|
7182
7487
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7183
7488
|
}
|
|
7184
7489
|
},
|
|
7185
|
-
{
|
|
7186
|
-
"kind": "field",
|
|
7187
|
-
"name": "criteriaFromFilters",
|
|
7188
|
-
"type": {
|
|
7189
|
-
"text": "Map<string, string>"
|
|
7190
|
-
},
|
|
7191
|
-
"privacy": "private",
|
|
7192
|
-
"default": "new Map()",
|
|
7193
|
-
"inheritedFrom": {
|
|
7194
|
-
"name": "GridProGenesisDatasource",
|
|
7195
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7196
|
-
}
|
|
7197
|
-
},
|
|
7198
|
-
{
|
|
7199
|
-
"kind": "field",
|
|
7200
|
-
"name": "update",
|
|
7201
|
-
"type": {
|
|
7202
|
-
"text": "BehaviorSubject<Map<string, string>>"
|
|
7203
|
-
},
|
|
7204
|
-
"privacy": "private",
|
|
7205
|
-
"default": "new BehaviorSubject(new Map())",
|
|
7206
|
-
"inheritedFrom": {
|
|
7207
|
-
"name": "GridProGenesisDatasource",
|
|
7208
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7209
|
-
}
|
|
7210
|
-
},
|
|
7211
7490
|
{
|
|
7212
7491
|
"kind": "method",
|
|
7213
7492
|
"name": "colDefsDeepClone",
|
|
@@ -7264,10 +7543,21 @@
|
|
|
7264
7543
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7265
7544
|
}
|
|
7266
7545
|
},
|
|
7546
|
+
{
|
|
7547
|
+
"kind": "method",
|
|
7548
|
+
"name": "destroy",
|
|
7549
|
+
"description": "Destroys the datasource, resetting it to its initial state.",
|
|
7550
|
+
"privacy": "public",
|
|
7551
|
+
"inheritedFrom": {
|
|
7552
|
+
"name": "GridProGenesisDatasource",
|
|
7553
|
+
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7554
|
+
}
|
|
7555
|
+
},
|
|
7267
7556
|
{
|
|
7268
7557
|
"kind": "method",
|
|
7269
7558
|
"name": "deinit",
|
|
7270
7559
|
"description": "Deinitialises the datasource, resetting it to its initial state.",
|
|
7560
|
+
"deprecated": "Use `destroy` instead",
|
|
7271
7561
|
"privacy": "public",
|
|
7272
7562
|
"inheritedFrom": {
|
|
7273
7563
|
"name": "GridProGenesisDatasource",
|
|
@@ -7279,7 +7569,7 @@
|
|
|
7279
7569
|
"name": "reset",
|
|
7280
7570
|
"description": "Resets the datasource to its initial state.",
|
|
7281
7571
|
"privacy": "public",
|
|
7282
|
-
"deprecated": "Use `
|
|
7572
|
+
"deprecated": "Use `destroy` instead",
|
|
7283
7573
|
"inheritedFrom": {
|
|
7284
7574
|
"name": "GridProGenesisDatasource",
|
|
7285
7575
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
@@ -7323,9 +7613,9 @@
|
|
|
7323
7613
|
"name": "handleErrors",
|
|
7324
7614
|
"parameters": [
|
|
7325
7615
|
{
|
|
7326
|
-
"name": "
|
|
7616
|
+
"name": "errors",
|
|
7327
7617
|
"type": {
|
|
7328
|
-
"text": "string"
|
|
7618
|
+
"text": "string | any[]"
|
|
7329
7619
|
}
|
|
7330
7620
|
}
|
|
7331
7621
|
],
|
|
@@ -7334,20 +7624,6 @@
|
|
|
7334
7624
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7335
7625
|
}
|
|
7336
7626
|
},
|
|
7337
|
-
{
|
|
7338
|
-
"kind": "method",
|
|
7339
|
-
"name": "datasourceOptions",
|
|
7340
|
-
"privacy": "private",
|
|
7341
|
-
"return": {
|
|
7342
|
-
"type": {
|
|
7343
|
-
"text": "DatasourceOptions"
|
|
7344
|
-
}
|
|
7345
|
-
},
|
|
7346
|
-
"inheritedFrom": {
|
|
7347
|
-
"name": "GridProGenesisDatasource",
|
|
7348
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7349
|
-
}
|
|
7350
|
-
},
|
|
7351
7627
|
{
|
|
7352
7628
|
"kind": "method",
|
|
7353
7629
|
"name": "handleStreamResult",
|
|
@@ -7416,20 +7692,6 @@
|
|
|
7416
7692
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7417
7693
|
}
|
|
7418
7694
|
},
|
|
7419
|
-
{
|
|
7420
|
-
"kind": "method",
|
|
7421
|
-
"name": "buildCriteria",
|
|
7422
|
-
"privacy": "private",
|
|
7423
|
-
"return": {
|
|
7424
|
-
"type": {
|
|
7425
|
-
"text": "string"
|
|
7426
|
-
}
|
|
7427
|
-
},
|
|
7428
|
-
"inheritedFrom": {
|
|
7429
|
-
"name": "GridProGenesisDatasource",
|
|
7430
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7431
|
-
}
|
|
7432
|
-
},
|
|
7433
7695
|
{
|
|
7434
7696
|
"kind": "method",
|
|
7435
7697
|
"name": "setFilter",
|
|
@@ -7449,8 +7711,8 @@
|
|
|
7449
7711
|
}
|
|
7450
7712
|
],
|
|
7451
7713
|
"inheritedFrom": {
|
|
7452
|
-
"name": "
|
|
7453
|
-
"module": "src/
|
|
7714
|
+
"name": "GenesisGridDatasourceElement",
|
|
7715
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7454
7716
|
}
|
|
7455
7717
|
},
|
|
7456
7718
|
{
|
|
@@ -7466,8 +7728,8 @@
|
|
|
7466
7728
|
}
|
|
7467
7729
|
],
|
|
7468
7730
|
"inheritedFrom": {
|
|
7469
|
-
"name": "
|
|
7470
|
-
"module": "src/
|
|
7731
|
+
"name": "GenesisGridDatasourceElement",
|
|
7732
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7471
7733
|
}
|
|
7472
7734
|
},
|
|
7473
7735
|
{
|
|
@@ -7756,6 +8018,17 @@
|
|
|
7756
8018
|
"module": "src/datasource/base.datasource.ts"
|
|
7757
8019
|
}
|
|
7758
8020
|
},
|
|
8021
|
+
{
|
|
8022
|
+
"kind": "field",
|
|
8023
|
+
"name": "datasource",
|
|
8024
|
+
"type": {
|
|
8025
|
+
"text": "Datasource"
|
|
8026
|
+
},
|
|
8027
|
+
"inheritedFrom": {
|
|
8028
|
+
"name": "GenesisGridDatasourceElement",
|
|
8029
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8030
|
+
}
|
|
8031
|
+
},
|
|
7759
8032
|
{
|
|
7760
8033
|
"kind": "field",
|
|
7761
8034
|
"name": "deferredGridOptions",
|
|
@@ -7892,6 +8165,64 @@
|
|
|
7892
8165
|
"module": "src/datasource/base.datasource.ts"
|
|
7893
8166
|
}
|
|
7894
8167
|
},
|
|
8168
|
+
{
|
|
8169
|
+
"kind": "field",
|
|
8170
|
+
"name": "viewNumber",
|
|
8171
|
+
"type": {
|
|
8172
|
+
"text": "number"
|
|
8173
|
+
},
|
|
8174
|
+
"inheritedFrom": {
|
|
8175
|
+
"name": "GenesisGridDatasourceElement",
|
|
8176
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8177
|
+
}
|
|
8178
|
+
},
|
|
8179
|
+
{
|
|
8180
|
+
"kind": "field",
|
|
8181
|
+
"name": "pollingInterval",
|
|
8182
|
+
"type": {
|
|
8183
|
+
"text": "number"
|
|
8184
|
+
},
|
|
8185
|
+
"inheritedFrom": {
|
|
8186
|
+
"name": "GenesisGridDatasourceElement",
|
|
8187
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8188
|
+
}
|
|
8189
|
+
},
|
|
8190
|
+
{
|
|
8191
|
+
"kind": "field",
|
|
8192
|
+
"name": "disablePolling",
|
|
8193
|
+
"type": {
|
|
8194
|
+
"text": "boolean"
|
|
8195
|
+
},
|
|
8196
|
+
"default": "false",
|
|
8197
|
+
"inheritedFrom": {
|
|
8198
|
+
"name": "GenesisGridDatasourceElement",
|
|
8199
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8200
|
+
}
|
|
8201
|
+
},
|
|
8202
|
+
{
|
|
8203
|
+
"kind": "field",
|
|
8204
|
+
"name": "request",
|
|
8205
|
+
"type": {
|
|
8206
|
+
"text": "any"
|
|
8207
|
+
},
|
|
8208
|
+
"inheritedFrom": {
|
|
8209
|
+
"name": "GenesisGridDatasourceElement",
|
|
8210
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8211
|
+
}
|
|
8212
|
+
},
|
|
8213
|
+
{
|
|
8214
|
+
"kind": "field",
|
|
8215
|
+
"name": "requestAutoSetup",
|
|
8216
|
+
"type": {
|
|
8217
|
+
"text": "boolean"
|
|
8218
|
+
},
|
|
8219
|
+
"default": "true",
|
|
8220
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
8221
|
+
"inheritedFrom": {
|
|
8222
|
+
"name": "GenesisGridDatasourceElement",
|
|
8223
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8224
|
+
}
|
|
8225
|
+
},
|
|
7895
8226
|
{
|
|
7896
8227
|
"kind": "field",
|
|
7897
8228
|
"name": "rowIdAttr",
|
|
@@ -7927,14 +8258,67 @@
|
|
|
7927
8258
|
"module": "src/datasource/base.datasource.ts"
|
|
7928
8259
|
}
|
|
7929
8260
|
},
|
|
8261
|
+
{
|
|
8262
|
+
"kind": "field",
|
|
8263
|
+
"name": "criteriaFromFilters",
|
|
8264
|
+
"type": {
|
|
8265
|
+
"text": "Map<string, string>"
|
|
8266
|
+
},
|
|
8267
|
+
"privacy": "protected",
|
|
8268
|
+
"default": "new Map()",
|
|
8269
|
+
"inheritedFrom": {
|
|
8270
|
+
"name": "GenesisGridDatasourceElement",
|
|
8271
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8272
|
+
}
|
|
8273
|
+
},
|
|
8274
|
+
{
|
|
8275
|
+
"kind": "field",
|
|
8276
|
+
"name": "update",
|
|
8277
|
+
"type": {
|
|
8278
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
8279
|
+
},
|
|
8280
|
+
"privacy": "protected",
|
|
8281
|
+
"default": "new BehaviorSubject(new Map())",
|
|
8282
|
+
"inheritedFrom": {
|
|
8283
|
+
"name": "GenesisGridDatasourceElement",
|
|
8284
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8285
|
+
}
|
|
8286
|
+
},
|
|
8287
|
+
{
|
|
8288
|
+
"kind": "method",
|
|
8289
|
+
"name": "datasourceOptions",
|
|
8290
|
+
"privacy": "protected",
|
|
8291
|
+
"return": {
|
|
8292
|
+
"type": {
|
|
8293
|
+
"text": "DatasourceOptions"
|
|
8294
|
+
}
|
|
8295
|
+
},
|
|
8296
|
+
"inheritedFrom": {
|
|
8297
|
+
"name": "GenesisGridDatasourceElement",
|
|
8298
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8299
|
+
}
|
|
8300
|
+
},
|
|
8301
|
+
{
|
|
8302
|
+
"kind": "method",
|
|
8303
|
+
"name": "buildCriteria",
|
|
8304
|
+
"privacy": "private",
|
|
8305
|
+
"return": {
|
|
8306
|
+
"type": {
|
|
8307
|
+
"text": "string"
|
|
8308
|
+
}
|
|
8309
|
+
},
|
|
8310
|
+
"inheritedFrom": {
|
|
8311
|
+
"name": "GenesisGridDatasourceElement",
|
|
8312
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8313
|
+
}
|
|
8314
|
+
},
|
|
7930
8315
|
{
|
|
7931
8316
|
"kind": "field",
|
|
7932
8317
|
"name": "isRequestServer",
|
|
7933
8318
|
"type": {
|
|
7934
8319
|
"text": "boolean"
|
|
7935
8320
|
},
|
|
7936
|
-
"
|
|
7937
|
-
"default": "false",
|
|
8321
|
+
"readonly": true,
|
|
7938
8322
|
"inheritedFrom": {
|
|
7939
8323
|
"name": "GenesisGridDatasourceElement",
|
|
7940
8324
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -8088,29 +8472,6 @@
|
|
|
8088
8472
|
}
|
|
8089
8473
|
],
|
|
8090
8474
|
"attributes": [
|
|
8091
|
-
{
|
|
8092
|
-
"name": "polling-interval",
|
|
8093
|
-
"type": {
|
|
8094
|
-
"text": "number"
|
|
8095
|
-
},
|
|
8096
|
-
"fieldName": "pollingInterval",
|
|
8097
|
-
"inheritedFrom": {
|
|
8098
|
-
"name": "GridProGenesisDatasource",
|
|
8099
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
8100
|
-
}
|
|
8101
|
-
},
|
|
8102
|
-
{
|
|
8103
|
-
"name": "disable-polling",
|
|
8104
|
-
"type": {
|
|
8105
|
-
"text": "boolean"
|
|
8106
|
-
},
|
|
8107
|
-
"default": "false",
|
|
8108
|
-
"fieldName": "disablePolling",
|
|
8109
|
-
"inheritedFrom": {
|
|
8110
|
-
"name": "GridProGenesisDatasource",
|
|
8111
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
8112
|
-
}
|
|
8113
|
-
},
|
|
8114
8475
|
{
|
|
8115
8476
|
"name": "restart-on-reconnection",
|
|
8116
8477
|
"type": {
|
|
@@ -8237,16 +8598,63 @@
|
|
|
8237
8598
|
}
|
|
8238
8599
|
},
|
|
8239
8600
|
{
|
|
8240
|
-
"name": "
|
|
8241
|
-
"
|
|
8242
|
-
|
|
8601
|
+
"name": "view-number",
|
|
8602
|
+
"type": {
|
|
8603
|
+
"text": "number"
|
|
8604
|
+
},
|
|
8605
|
+
"fieldName": "viewNumber",
|
|
8243
8606
|
"inheritedFrom": {
|
|
8244
8607
|
"name": "GenesisGridDatasourceElement",
|
|
8245
8608
|
"module": "src/datasource/base.datasource.ts"
|
|
8246
8609
|
}
|
|
8247
|
-
}
|
|
8248
|
-
|
|
8249
|
-
|
|
8610
|
+
},
|
|
8611
|
+
{
|
|
8612
|
+
"name": "polling-interval",
|
|
8613
|
+
"type": {
|
|
8614
|
+
"text": "number"
|
|
8615
|
+
},
|
|
8616
|
+
"fieldName": "pollingInterval",
|
|
8617
|
+
"inheritedFrom": {
|
|
8618
|
+
"name": "GenesisGridDatasourceElement",
|
|
8619
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8620
|
+
}
|
|
8621
|
+
},
|
|
8622
|
+
{
|
|
8623
|
+
"name": "disable-polling",
|
|
8624
|
+
"type": {
|
|
8625
|
+
"text": "boolean"
|
|
8626
|
+
},
|
|
8627
|
+
"default": "false",
|
|
8628
|
+
"fieldName": "disablePolling",
|
|
8629
|
+
"inheritedFrom": {
|
|
8630
|
+
"name": "GenesisGridDatasourceElement",
|
|
8631
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8632
|
+
}
|
|
8633
|
+
},
|
|
8634
|
+
{
|
|
8635
|
+
"name": "request-auto-setup",
|
|
8636
|
+
"type": {
|
|
8637
|
+
"text": "boolean"
|
|
8638
|
+
},
|
|
8639
|
+
"default": "true",
|
|
8640
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
8641
|
+
"fieldName": "requestAutoSetup",
|
|
8642
|
+
"inheritedFrom": {
|
|
8643
|
+
"name": "GenesisGridDatasourceElement",
|
|
8644
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8645
|
+
}
|
|
8646
|
+
},
|
|
8647
|
+
{
|
|
8648
|
+
"name": "row-id",
|
|
8649
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
8650
|
+
"fieldName": "rowIdAttr",
|
|
8651
|
+
"inheritedFrom": {
|
|
8652
|
+
"name": "GenesisGridDatasourceElement",
|
|
8653
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8654
|
+
}
|
|
8655
|
+
}
|
|
8656
|
+
]
|
|
8657
|
+
}
|
|
8250
8658
|
],
|
|
8251
8659
|
"exports": [
|
|
8252
8660
|
{
|
|
@@ -8345,90 +8753,34 @@
|
|
|
8345
8753
|
"declarations": [
|
|
8346
8754
|
{
|
|
8347
8755
|
"kind": "class",
|
|
8348
|
-
"description": "
|
|
8349
|
-
"name": "
|
|
8756
|
+
"description": "A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
8757
|
+
"name": "GridProServerSideDatasource",
|
|
8350
8758
|
"members": [
|
|
8351
8759
|
{
|
|
8352
8760
|
"kind": "field",
|
|
8353
|
-
"name": "
|
|
8354
|
-
"type": {
|
|
8355
|
-
"text": "Auth"
|
|
8356
|
-
}
|
|
8357
|
-
},
|
|
8358
|
-
{
|
|
8359
|
-
"kind": "field",
|
|
8360
|
-
"name": "connect",
|
|
8361
|
-
"type": {
|
|
8362
|
-
"text": "Connect"
|
|
8363
|
-
}
|
|
8364
|
-
},
|
|
8365
|
-
{
|
|
8366
|
-
"kind": "field",
|
|
8367
|
-
"name": "dataserverStream",
|
|
8368
|
-
"type": {
|
|
8369
|
-
"text": "SocketObservable<FilteredDataServerResult>"
|
|
8370
|
-
}
|
|
8371
|
-
},
|
|
8372
|
-
{
|
|
8373
|
-
"kind": "field",
|
|
8374
|
-
"name": "dataserverStreamSubscription",
|
|
8375
|
-
"type": {
|
|
8376
|
-
"text": "SocketSubscription"
|
|
8377
|
-
}
|
|
8378
|
-
},
|
|
8379
|
-
{
|
|
8380
|
-
"kind": "field",
|
|
8381
|
-
"name": "createDataserverStreamFunc",
|
|
8382
|
-
"type": {
|
|
8383
|
-
"text": "(\n existingParams?: any,\n ) => Promise<SocketObservable<FilteredDataServerResult>>"
|
|
8384
|
-
}
|
|
8385
|
-
},
|
|
8386
|
-
{
|
|
8387
|
-
"kind": "field",
|
|
8388
|
-
"name": "resourceName",
|
|
8761
|
+
"name": "applyFuncName",
|
|
8389
8762
|
"type": {
|
|
8390
8763
|
"text": "string"
|
|
8391
8764
|
},
|
|
8392
|
-
"privacy": "
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
"type": {
|
|
8398
|
-
"text": "any"
|
|
8765
|
+
"privacy": "protected",
|
|
8766
|
+
"default": "'applyServerSideTransaction'",
|
|
8767
|
+
"inheritedFrom": {
|
|
8768
|
+
"name": "GridProBaseDatasource",
|
|
8769
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8399
8770
|
}
|
|
8400
8771
|
},
|
|
8401
8772
|
{
|
|
8402
8773
|
"kind": "field",
|
|
8403
|
-
"name": "
|
|
8404
|
-
"type": {
|
|
8405
|
-
"text": "Map<string, [string]>"
|
|
8406
|
-
},
|
|
8407
|
-
"privacy": "private"
|
|
8408
|
-
},
|
|
8409
|
-
{
|
|
8410
|
-
"kind": "field",
|
|
8411
|
-
"name": "resourceColDefs",
|
|
8412
|
-
"type": {
|
|
8413
|
-
"text": "MetadataDetail[]"
|
|
8414
|
-
},
|
|
8415
|
-
"privacy": "private"
|
|
8416
|
-
},
|
|
8417
|
-
{
|
|
8418
|
-
"kind": "field",
|
|
8419
|
-
"name": "maxRows",
|
|
8420
|
-
"type": {
|
|
8421
|
-
"text": "number"
|
|
8422
|
-
},
|
|
8423
|
-
"privacy": "private"
|
|
8424
|
-
},
|
|
8425
|
-
{
|
|
8426
|
-
"kind": "field",
|
|
8427
|
-
"name": "maxView",
|
|
8774
|
+
"name": "applyAsyncFuncName",
|
|
8428
8775
|
"type": {
|
|
8429
|
-
"text": "
|
|
8776
|
+
"text": "string"
|
|
8430
8777
|
},
|
|
8431
|
-
"privacy": "
|
|
8778
|
+
"privacy": "protected",
|
|
8779
|
+
"default": "'applyServerSideTransactionAsync'",
|
|
8780
|
+
"inheritedFrom": {
|
|
8781
|
+
"name": "GridProBaseDatasource",
|
|
8782
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8783
|
+
}
|
|
8432
8784
|
},
|
|
8433
8785
|
{
|
|
8434
8786
|
"kind": "field",
|
|
@@ -8436,397 +8788,193 @@
|
|
|
8436
8788
|
"type": {
|
|
8437
8789
|
"text": "boolean"
|
|
8438
8790
|
},
|
|
8439
|
-
"
|
|
8440
|
-
},
|
|
8441
|
-
{
|
|
8442
|
-
"kind": "field",
|
|
8443
|
-
"name": "streamSourceRef",
|
|
8444
|
-
"type": {
|
|
8445
|
-
"text": "string"
|
|
8446
|
-
}
|
|
8791
|
+
"default": "false"
|
|
8447
8792
|
},
|
|
8448
8793
|
{
|
|
8449
8794
|
"kind": "field",
|
|
8450
|
-
"name": "
|
|
8795
|
+
"name": "zeroBasedViewNumber",
|
|
8451
8796
|
"type": {
|
|
8452
8797
|
"text": "boolean"
|
|
8453
8798
|
},
|
|
8454
|
-
"
|
|
8455
|
-
"
|
|
8799
|
+
"default": "false",
|
|
8800
|
+
"description": "The starting VIEW_NUMBER of the data to be fetched."
|
|
8456
8801
|
},
|
|
8457
8802
|
{
|
|
8458
8803
|
"kind": "field",
|
|
8459
|
-
"name": "
|
|
8804
|
+
"name": "liveUpdates",
|
|
8460
8805
|
"type": {
|
|
8461
|
-
"text": "
|
|
8806
|
+
"text": "boolean"
|
|
8462
8807
|
},
|
|
8463
|
-
"
|
|
8464
|
-
"
|
|
8808
|
+
"default": "false",
|
|
8809
|
+
"description": "Enable live updates for the grid."
|
|
8465
8810
|
},
|
|
8466
8811
|
{
|
|
8467
8812
|
"kind": "field",
|
|
8468
|
-
"name": "
|
|
8813
|
+
"name": "request",
|
|
8469
8814
|
"type": {
|
|
8470
|
-
"text": "
|
|
8815
|
+
"text": "any"
|
|
8471
8816
|
},
|
|
8472
|
-
"
|
|
8473
|
-
|
|
8817
|
+
"inheritedFrom": {
|
|
8818
|
+
"name": "GenesisGridDatasourceElement",
|
|
8819
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8820
|
+
},
|
|
8821
|
+
"default": "{}"
|
|
8474
8822
|
},
|
|
8475
8823
|
{
|
|
8476
8824
|
"kind": "field",
|
|
8477
|
-
"name": "
|
|
8825
|
+
"name": "indexes",
|
|
8478
8826
|
"type": {
|
|
8479
|
-
"text": "
|
|
8827
|
+
"text": "Map<string, [string]>"
|
|
8480
8828
|
},
|
|
8481
8829
|
"privacy": "private"
|
|
8482
8830
|
},
|
|
8483
8831
|
{
|
|
8484
8832
|
"kind": "field",
|
|
8485
|
-
"name": "
|
|
8833
|
+
"name": "ssrmDatasource",
|
|
8486
8834
|
"type": {
|
|
8487
|
-
"text": "
|
|
8835
|
+
"text": "DataserverServerSideDatasource | ReqRepServerSideDatasource"
|
|
8488
8836
|
},
|
|
8489
8837
|
"privacy": "private"
|
|
8490
8838
|
},
|
|
8491
8839
|
{
|
|
8492
8840
|
"kind": "field",
|
|
8493
|
-
"name": "
|
|
8841
|
+
"name": "liveUpdatesStream",
|
|
8494
8842
|
"type": {
|
|
8495
|
-
"text": "
|
|
8843
|
+
"text": "SocketSubscription"
|
|
8496
8844
|
},
|
|
8497
8845
|
"privacy": "private"
|
|
8498
8846
|
},
|
|
8499
8847
|
{
|
|
8500
8848
|
"kind": "method",
|
|
8501
|
-
"name": "
|
|
8849
|
+
"name": "resourceNameChanged",
|
|
8502
8850
|
"parameters": [
|
|
8503
8851
|
{
|
|
8504
|
-
"name": "
|
|
8852
|
+
"name": "oldValue",
|
|
8505
8853
|
"type": {
|
|
8506
|
-
"text": "
|
|
8854
|
+
"text": "string"
|
|
8855
|
+
}
|
|
8856
|
+
},
|
|
8857
|
+
{
|
|
8858
|
+
"name": "newValue",
|
|
8859
|
+
"type": {
|
|
8860
|
+
"text": "string"
|
|
8507
8861
|
}
|
|
8508
8862
|
}
|
|
8509
8863
|
]
|
|
8510
8864
|
},
|
|
8511
8865
|
{
|
|
8512
8866
|
"kind": "method",
|
|
8513
|
-
"name": "
|
|
8514
|
-
"privacy": "private",
|
|
8867
|
+
"name": "criteriaChanged",
|
|
8515
8868
|
"parameters": [
|
|
8516
8869
|
{
|
|
8517
|
-
"name": "
|
|
8870
|
+
"name": "oldCriteria",
|
|
8518
8871
|
"type": {
|
|
8519
|
-
"text": "
|
|
8872
|
+
"text": "string"
|
|
8520
8873
|
}
|
|
8521
8874
|
},
|
|
8522
8875
|
{
|
|
8523
|
-
"name": "
|
|
8876
|
+
"name": "newCriteria",
|
|
8524
8877
|
"type": {
|
|
8525
|
-
"text": "
|
|
8878
|
+
"text": "string"
|
|
8526
8879
|
}
|
|
8527
8880
|
}
|
|
8528
8881
|
]
|
|
8529
8882
|
},
|
|
8530
8883
|
{
|
|
8531
8884
|
"kind": "method",
|
|
8532
|
-
"name": "
|
|
8533
|
-
"privacy": "private",
|
|
8885
|
+
"name": "deepClone",
|
|
8534
8886
|
"return": {
|
|
8535
8887
|
"type": {
|
|
8536
|
-
"text": "
|
|
8888
|
+
"text": "Node"
|
|
8537
8889
|
}
|
|
8538
8890
|
},
|
|
8539
|
-
"
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
"text": "Map<string, any>"
|
|
8544
|
-
}
|
|
8545
|
-
}
|
|
8546
|
-
]
|
|
8891
|
+
"inheritedFrom": {
|
|
8892
|
+
"name": "LifecycleMixin",
|
|
8893
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
8894
|
+
}
|
|
8547
8895
|
},
|
|
8548
8896
|
{
|
|
8549
8897
|
"kind": "method",
|
|
8550
|
-
"name": "
|
|
8898
|
+
"name": "init"
|
|
8551
8899
|
},
|
|
8552
8900
|
{
|
|
8553
8901
|
"kind": "method",
|
|
8554
|
-
"name": "
|
|
8555
|
-
"privacy": "private",
|
|
8556
|
-
"return": {
|
|
8557
|
-
"type": {
|
|
8558
|
-
"text": "Promise<void>"
|
|
8559
|
-
}
|
|
8560
|
-
},
|
|
8902
|
+
"name": "onPaginationChanged",
|
|
8561
8903
|
"parameters": [
|
|
8562
8904
|
{
|
|
8563
|
-
"name": "
|
|
8905
|
+
"name": "event",
|
|
8564
8906
|
"type": {
|
|
8565
|
-
"text": "
|
|
8907
|
+
"text": "PaginationChangedEvent"
|
|
8566
8908
|
}
|
|
8567
8909
|
}
|
|
8568
8910
|
]
|
|
8569
8911
|
},
|
|
8570
8912
|
{
|
|
8571
8913
|
"kind": "method",
|
|
8572
|
-
"name": "
|
|
8914
|
+
"name": "destroy"
|
|
8915
|
+
},
|
|
8916
|
+
{
|
|
8917
|
+
"kind": "method",
|
|
8918
|
+
"name": "restart"
|
|
8919
|
+
},
|
|
8920
|
+
{
|
|
8921
|
+
"kind": "method",
|
|
8922
|
+
"name": "clearRowData",
|
|
8573
8923
|
"privacy": "private",
|
|
8574
8924
|
"parameters": [
|
|
8575
8925
|
{
|
|
8576
|
-
"name": "
|
|
8577
|
-
|
|
8578
|
-
{
|
|
8579
|
-
"name": "searchValue"
|
|
8926
|
+
"name": "withColumnDefs",
|
|
8927
|
+
"default": "true"
|
|
8580
8928
|
}
|
|
8581
8929
|
]
|
|
8582
8930
|
},
|
|
8583
8931
|
{
|
|
8584
8932
|
"kind": "method",
|
|
8585
|
-
"name": "
|
|
8933
|
+
"name": "getResourceIndexes",
|
|
8586
8934
|
"privacy": "private",
|
|
8587
8935
|
"return": {
|
|
8588
8936
|
"type": {
|
|
8589
|
-
"text": "
|
|
8937
|
+
"text": "Map<string, [string]>"
|
|
8590
8938
|
}
|
|
8591
8939
|
},
|
|
8592
8940
|
"parameters": [
|
|
8593
8941
|
{
|
|
8594
|
-
"name": "
|
|
8942
|
+
"name": "avaialbleIndexes",
|
|
8595
8943
|
"type": {
|
|
8596
|
-
"text": "
|
|
8944
|
+
"text": "IndexDetail[]"
|
|
8597
8945
|
}
|
|
8598
8946
|
}
|
|
8599
8947
|
]
|
|
8600
8948
|
},
|
|
8949
|
+
{
|
|
8950
|
+
"kind": "field",
|
|
8951
|
+
"name": "params",
|
|
8952
|
+
"readonly": true
|
|
8953
|
+
},
|
|
8954
|
+
{
|
|
8955
|
+
"kind": "field",
|
|
8956
|
+
"name": "rowModel",
|
|
8957
|
+
"type": {
|
|
8958
|
+
"text": "IServerSideRowModel"
|
|
8959
|
+
},
|
|
8960
|
+
"readonly": true
|
|
8961
|
+
},
|
|
8601
8962
|
{
|
|
8602
8963
|
"kind": "method",
|
|
8603
|
-
"name": "
|
|
8964
|
+
"name": "createReqRepRequest",
|
|
8604
8965
|
"privacy": "private",
|
|
8605
8966
|
"return": {
|
|
8606
8967
|
"type": {
|
|
8607
|
-
"text": "
|
|
8608
|
-
}
|
|
8609
|
-
}
|
|
8610
|
-
},
|
|
8611
|
-
{
|
|
8612
|
-
"kind": "method",
|
|
8613
|
-
"name": "criteriaFromFilters",
|
|
8614
|
-
"privacy": "private",
|
|
8615
|
-
"return": {
|
|
8616
|
-
"type": {
|
|
8617
|
-
"text": "string[]"
|
|
8618
|
-
}
|
|
8619
|
-
}
|
|
8620
|
-
},
|
|
8621
|
-
{
|
|
8622
|
-
"kind": "method",
|
|
8623
|
-
"name": "getFiltersByType",
|
|
8624
|
-
"privacy": "private",
|
|
8625
|
-
"parameters": [
|
|
8626
|
-
{
|
|
8627
|
-
"name": "filterType",
|
|
8628
|
-
"type": {
|
|
8629
|
-
"text": "string"
|
|
8630
|
-
}
|
|
8631
|
-
}
|
|
8632
|
-
]
|
|
8633
|
-
},
|
|
8634
|
-
{
|
|
8635
|
-
"kind": "field",
|
|
8636
|
-
"name": "rowId",
|
|
8637
|
-
"type": {
|
|
8638
|
-
"text": "string"
|
|
8639
|
-
},
|
|
8640
|
-
"privacy": "protected",
|
|
8641
|
-
"inheritedFrom": {
|
|
8642
|
-
"name": "StreamBaseDatasource",
|
|
8643
|
-
"module": "src/datasource/base.datasource.ts"
|
|
8644
|
-
}
|
|
8645
|
-
},
|
|
8646
|
-
{
|
|
8647
|
-
"kind": "field",
|
|
8648
|
-
"name": "rowData",
|
|
8649
|
-
"type": {
|
|
8650
|
-
"text": "Map<string, any>"
|
|
8651
|
-
},
|
|
8652
|
-
"default": "new Map()",
|
|
8653
|
-
"inheritedFrom": {
|
|
8654
|
-
"name": "StreamBaseDatasource",
|
|
8655
|
-
"module": "src/datasource/base.datasource.ts"
|
|
8656
|
-
}
|
|
8657
|
-
}
|
|
8658
|
-
],
|
|
8659
|
-
"superclass": {
|
|
8660
|
-
"name": "StreamBaseDatasource",
|
|
8661
|
-
"module": "/src/datasource/base.datasource"
|
|
8662
|
-
}
|
|
8663
|
-
},
|
|
8664
|
-
{
|
|
8665
|
-
"kind": "class",
|
|
8666
|
-
"description": "A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
8667
|
-
"name": "GridProServerSideDatasource",
|
|
8668
|
-
"members": [
|
|
8669
|
-
{
|
|
8670
|
-
"kind": "field",
|
|
8671
|
-
"name": "applyFuncName",
|
|
8672
|
-
"type": {
|
|
8673
|
-
"text": "string"
|
|
8674
|
-
},
|
|
8675
|
-
"privacy": "protected",
|
|
8676
|
-
"default": "'applyServerSideTransaction'",
|
|
8677
|
-
"inheritedFrom": {
|
|
8678
|
-
"name": "GridProBaseDatasource",
|
|
8679
|
-
"module": "src/datasource/base.datasource.ts"
|
|
8680
|
-
}
|
|
8681
|
-
},
|
|
8682
|
-
{
|
|
8683
|
-
"kind": "field",
|
|
8684
|
-
"name": "applyAsyncFuncName",
|
|
8685
|
-
"type": {
|
|
8686
|
-
"text": "string"
|
|
8687
|
-
},
|
|
8688
|
-
"privacy": "protected",
|
|
8689
|
-
"default": "'applyServerSideTransactionAsync'",
|
|
8690
|
-
"inheritedFrom": {
|
|
8691
|
-
"name": "GridProBaseDatasource",
|
|
8692
|
-
"module": "src/datasource/base.datasource.ts"
|
|
8693
|
-
}
|
|
8694
|
-
},
|
|
8695
|
-
{
|
|
8696
|
-
"kind": "method",
|
|
8697
|
-
"name": "criteriaChanged",
|
|
8698
|
-
"parameters": [
|
|
8699
|
-
{
|
|
8700
|
-
"name": "oldCriteria",
|
|
8701
|
-
"type": {
|
|
8702
|
-
"text": "string"
|
|
8703
|
-
}
|
|
8704
|
-
},
|
|
8705
|
-
{
|
|
8706
|
-
"name": "newCriteria",
|
|
8707
|
-
"type": {
|
|
8708
|
-
"text": "string"
|
|
8709
|
-
}
|
|
8710
|
-
}
|
|
8711
|
-
]
|
|
8712
|
-
},
|
|
8713
|
-
{
|
|
8714
|
-
"kind": "method",
|
|
8715
|
-
"name": "resourceNameChanged",
|
|
8716
|
-
"parameters": [
|
|
8717
|
-
{
|
|
8718
|
-
"name": "oldValue",
|
|
8719
|
-
"type": {
|
|
8720
|
-
"text": "string"
|
|
8721
|
-
}
|
|
8722
|
-
},
|
|
8723
|
-
{
|
|
8724
|
-
"name": "newValue",
|
|
8725
|
-
"type": {
|
|
8726
|
-
"text": "string"
|
|
8727
|
-
}
|
|
8728
|
-
}
|
|
8729
|
-
]
|
|
8730
|
-
},
|
|
8731
|
-
{
|
|
8732
|
-
"kind": "field",
|
|
8733
|
-
"name": "pagination",
|
|
8734
|
-
"type": {
|
|
8735
|
-
"text": "boolean"
|
|
8736
|
-
},
|
|
8737
|
-
"default": "false"
|
|
8738
|
-
},
|
|
8739
|
-
{
|
|
8740
|
-
"kind": "field",
|
|
8741
|
-
"name": "indexes",
|
|
8742
|
-
"type": {
|
|
8743
|
-
"text": "Map<string, [string]>"
|
|
8744
|
-
},
|
|
8745
|
-
"privacy": "private"
|
|
8746
|
-
},
|
|
8747
|
-
{
|
|
8748
|
-
"kind": "field",
|
|
8749
|
-
"name": "ssrmDatasource",
|
|
8750
|
-
"type": {
|
|
8751
|
-
"text": "StreamDatasource"
|
|
8752
|
-
},
|
|
8753
|
-
"privacy": "private"
|
|
8754
|
-
},
|
|
8755
|
-
{
|
|
8756
|
-
"kind": "field",
|
|
8757
|
-
"name": "originalFieldDef",
|
|
8758
|
-
"type": {
|
|
8759
|
-
"text": "MetadataDetail[]"
|
|
8760
|
-
},
|
|
8761
|
-
"privacy": "private"
|
|
8762
|
-
},
|
|
8763
|
-
{
|
|
8764
|
-
"kind": "method",
|
|
8765
|
-
"name": "deepClone",
|
|
8766
|
-
"return": {
|
|
8767
|
-
"type": {
|
|
8768
|
-
"text": "Node"
|
|
8769
|
-
}
|
|
8770
|
-
},
|
|
8771
|
-
"inheritedFrom": {
|
|
8772
|
-
"name": "LifecycleMixin",
|
|
8773
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
8774
|
-
}
|
|
8775
|
-
},
|
|
8776
|
-
{
|
|
8777
|
-
"kind": "method",
|
|
8778
|
-
"name": "deinit"
|
|
8779
|
-
},
|
|
8780
|
-
{
|
|
8781
|
-
"kind": "method",
|
|
8782
|
-
"name": "init"
|
|
8783
|
-
},
|
|
8784
|
-
{
|
|
8785
|
-
"kind": "method",
|
|
8786
|
-
"name": "restart"
|
|
8787
|
-
},
|
|
8788
|
-
{
|
|
8789
|
-
"kind": "method",
|
|
8790
|
-
"name": "clearRowData",
|
|
8791
|
-
"privacy": "private",
|
|
8792
|
-
"parameters": [
|
|
8793
|
-
{
|
|
8794
|
-
"name": "withColumnDefs",
|
|
8795
|
-
"default": "true"
|
|
8796
|
-
}
|
|
8797
|
-
]
|
|
8798
|
-
},
|
|
8799
|
-
{
|
|
8800
|
-
"kind": "method",
|
|
8801
|
-
"name": "getResourceIndexes",
|
|
8802
|
-
"privacy": "private",
|
|
8803
|
-
"return": {
|
|
8804
|
-
"type": {
|
|
8805
|
-
"text": "Map<string, [string]>"
|
|
8968
|
+
"text": "Promise<RequestServerResult>"
|
|
8806
8969
|
}
|
|
8807
8970
|
},
|
|
8808
8971
|
"parameters": [
|
|
8809
8972
|
{
|
|
8810
|
-
"name": "
|
|
8811
|
-
"
|
|
8812
|
-
"text": "IndexDetail[]"
|
|
8813
|
-
}
|
|
8973
|
+
"name": "existingParams",
|
|
8974
|
+
"default": "null"
|
|
8814
8975
|
}
|
|
8815
8976
|
]
|
|
8816
8977
|
},
|
|
8817
|
-
{
|
|
8818
|
-
"kind": "field",
|
|
8819
|
-
"name": "params",
|
|
8820
|
-
"readonly": true
|
|
8821
|
-
},
|
|
8822
|
-
{
|
|
8823
|
-
"kind": "field",
|
|
8824
|
-
"name": "rowModel",
|
|
8825
|
-
"type": {
|
|
8826
|
-
"text": "IServerSideRowModel"
|
|
8827
|
-
},
|
|
8828
|
-
"readonly": true
|
|
8829
|
-
},
|
|
8830
8978
|
{
|
|
8831
8979
|
"kind": "method",
|
|
8832
8980
|
"name": "createDataserverStream",
|
|
@@ -8843,19 +8991,6 @@
|
|
|
8843
8991
|
}
|
|
8844
8992
|
]
|
|
8845
8993
|
},
|
|
8846
|
-
{
|
|
8847
|
-
"kind": "method",
|
|
8848
|
-
"name": "handleStreamDeletesTemp",
|
|
8849
|
-
"privacy": "private",
|
|
8850
|
-
"parameters": [
|
|
8851
|
-
{
|
|
8852
|
-
"name": "deletes",
|
|
8853
|
-
"type": {
|
|
8854
|
-
"text": "RowData[]"
|
|
8855
|
-
}
|
|
8856
|
-
}
|
|
8857
|
-
]
|
|
8858
|
-
},
|
|
8859
8994
|
{
|
|
8860
8995
|
"kind": "method",
|
|
8861
8996
|
"name": "getAgColumnDefs",
|
|
@@ -9203,6 +9338,17 @@
|
|
|
9203
9338
|
"module": "src/datasource/base.datasource.ts"
|
|
9204
9339
|
}
|
|
9205
9340
|
},
|
|
9341
|
+
{
|
|
9342
|
+
"kind": "field",
|
|
9343
|
+
"name": "datasource",
|
|
9344
|
+
"type": {
|
|
9345
|
+
"text": "Datasource"
|
|
9346
|
+
},
|
|
9347
|
+
"inheritedFrom": {
|
|
9348
|
+
"name": "GenesisGridDatasourceElement",
|
|
9349
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9350
|
+
}
|
|
9351
|
+
},
|
|
9206
9352
|
{
|
|
9207
9353
|
"kind": "field",
|
|
9208
9354
|
"name": "deferredGridOptions",
|
|
@@ -9341,8 +9487,10 @@
|
|
|
9341
9487
|
},
|
|
9342
9488
|
{
|
|
9343
9489
|
"kind": "field",
|
|
9344
|
-
"name": "
|
|
9345
|
-
"
|
|
9490
|
+
"name": "viewNumber",
|
|
9491
|
+
"type": {
|
|
9492
|
+
"text": "number"
|
|
9493
|
+
},
|
|
9346
9494
|
"inheritedFrom": {
|
|
9347
9495
|
"name": "GenesisGridDatasourceElement",
|
|
9348
9496
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9350,12 +9498,10 @@
|
|
|
9350
9498
|
},
|
|
9351
9499
|
{
|
|
9352
9500
|
"kind": "field",
|
|
9353
|
-
"name": "
|
|
9501
|
+
"name": "pollingInterval",
|
|
9354
9502
|
"type": {
|
|
9355
|
-
"text": "
|
|
9503
|
+
"text": "number"
|
|
9356
9504
|
},
|
|
9357
|
-
"privacy": "protected",
|
|
9358
|
-
"readonly": true,
|
|
9359
9505
|
"inheritedFrom": {
|
|
9360
9506
|
"name": "GenesisGridDatasourceElement",
|
|
9361
9507
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9363,12 +9509,11 @@
|
|
|
9363
9509
|
},
|
|
9364
9510
|
{
|
|
9365
9511
|
"kind": "field",
|
|
9366
|
-
"name": "
|
|
9512
|
+
"name": "disablePolling",
|
|
9367
9513
|
"type": {
|
|
9368
|
-
"text": "
|
|
9514
|
+
"text": "boolean"
|
|
9369
9515
|
},
|
|
9370
|
-
"
|
|
9371
|
-
"readonly": true,
|
|
9516
|
+
"default": "false",
|
|
9372
9517
|
"inheritedFrom": {
|
|
9373
9518
|
"name": "GenesisGridDatasourceElement",
|
|
9374
9519
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9376,22 +9521,163 @@
|
|
|
9376
9521
|
},
|
|
9377
9522
|
{
|
|
9378
9523
|
"kind": "field",
|
|
9379
|
-
"name": "
|
|
9524
|
+
"name": "requestAutoSetup",
|
|
9380
9525
|
"type": {
|
|
9381
9526
|
"text": "boolean"
|
|
9382
9527
|
},
|
|
9383
|
-
"
|
|
9384
|
-
"
|
|
9528
|
+
"default": "true",
|
|
9529
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
9385
9530
|
"inheritedFrom": {
|
|
9386
9531
|
"name": "GenesisGridDatasourceElement",
|
|
9387
9532
|
"module": "src/datasource/base.datasource.ts"
|
|
9388
9533
|
}
|
|
9389
9534
|
},
|
|
9390
9535
|
{
|
|
9391
|
-
"kind": "
|
|
9392
|
-
"name": "
|
|
9393
|
-
"
|
|
9394
|
-
|
|
9536
|
+
"kind": "field",
|
|
9537
|
+
"name": "rowIdAttr",
|
|
9538
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
9539
|
+
"inheritedFrom": {
|
|
9540
|
+
"name": "GenesisGridDatasourceElement",
|
|
9541
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9542
|
+
}
|
|
9543
|
+
},
|
|
9544
|
+
{
|
|
9545
|
+
"kind": "field",
|
|
9546
|
+
"name": "rowId",
|
|
9547
|
+
"type": {
|
|
9548
|
+
"text": "string"
|
|
9549
|
+
},
|
|
9550
|
+
"privacy": "protected",
|
|
9551
|
+
"readonly": true,
|
|
9552
|
+
"inheritedFrom": {
|
|
9553
|
+
"name": "GenesisGridDatasourceElement",
|
|
9554
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9555
|
+
}
|
|
9556
|
+
},
|
|
9557
|
+
{
|
|
9558
|
+
"kind": "field",
|
|
9559
|
+
"name": "defaultRowIdByResourceType",
|
|
9560
|
+
"type": {
|
|
9561
|
+
"text": "string"
|
|
9562
|
+
},
|
|
9563
|
+
"privacy": "protected",
|
|
9564
|
+
"readonly": true,
|
|
9565
|
+
"inheritedFrom": {
|
|
9566
|
+
"name": "GenesisGridDatasourceElement",
|
|
9567
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9568
|
+
}
|
|
9569
|
+
},
|
|
9570
|
+
{
|
|
9571
|
+
"kind": "field",
|
|
9572
|
+
"name": "criteriaFromFilters",
|
|
9573
|
+
"type": {
|
|
9574
|
+
"text": "Map<string, string>"
|
|
9575
|
+
},
|
|
9576
|
+
"privacy": "protected",
|
|
9577
|
+
"default": "new Map()",
|
|
9578
|
+
"inheritedFrom": {
|
|
9579
|
+
"name": "GenesisGridDatasourceElement",
|
|
9580
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9581
|
+
}
|
|
9582
|
+
},
|
|
9583
|
+
{
|
|
9584
|
+
"kind": "field",
|
|
9585
|
+
"name": "update",
|
|
9586
|
+
"type": {
|
|
9587
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
9588
|
+
},
|
|
9589
|
+
"privacy": "protected",
|
|
9590
|
+
"default": "new BehaviorSubject(new Map())",
|
|
9591
|
+
"inheritedFrom": {
|
|
9592
|
+
"name": "GenesisGridDatasourceElement",
|
|
9593
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9594
|
+
}
|
|
9595
|
+
},
|
|
9596
|
+
{
|
|
9597
|
+
"kind": "method",
|
|
9598
|
+
"name": "datasourceOptions",
|
|
9599
|
+
"privacy": "protected",
|
|
9600
|
+
"return": {
|
|
9601
|
+
"type": {
|
|
9602
|
+
"text": "DatasourceOptions"
|
|
9603
|
+
}
|
|
9604
|
+
},
|
|
9605
|
+
"inheritedFrom": {
|
|
9606
|
+
"name": "GenesisGridDatasourceElement",
|
|
9607
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9608
|
+
}
|
|
9609
|
+
},
|
|
9610
|
+
{
|
|
9611
|
+
"kind": "method",
|
|
9612
|
+
"name": "buildCriteria",
|
|
9613
|
+
"privacy": "private",
|
|
9614
|
+
"return": {
|
|
9615
|
+
"type": {
|
|
9616
|
+
"text": "string"
|
|
9617
|
+
}
|
|
9618
|
+
},
|
|
9619
|
+
"inheritedFrom": {
|
|
9620
|
+
"name": "GenesisGridDatasourceElement",
|
|
9621
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9622
|
+
}
|
|
9623
|
+
},
|
|
9624
|
+
{
|
|
9625
|
+
"kind": "method",
|
|
9626
|
+
"name": "setFilter",
|
|
9627
|
+
"privacy": "public",
|
|
9628
|
+
"parameters": [
|
|
9629
|
+
{
|
|
9630
|
+
"name": "fieldName",
|
|
9631
|
+
"type": {
|
|
9632
|
+
"text": "string"
|
|
9633
|
+
}
|
|
9634
|
+
},
|
|
9635
|
+
{
|
|
9636
|
+
"name": "newFilter",
|
|
9637
|
+
"type": {
|
|
9638
|
+
"text": "string"
|
|
9639
|
+
}
|
|
9640
|
+
}
|
|
9641
|
+
],
|
|
9642
|
+
"inheritedFrom": {
|
|
9643
|
+
"name": "GenesisGridDatasourceElement",
|
|
9644
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9645
|
+
}
|
|
9646
|
+
},
|
|
9647
|
+
{
|
|
9648
|
+
"kind": "method",
|
|
9649
|
+
"name": "removeFilter",
|
|
9650
|
+
"privacy": "public",
|
|
9651
|
+
"parameters": [
|
|
9652
|
+
{
|
|
9653
|
+
"name": "fieldName",
|
|
9654
|
+
"type": {
|
|
9655
|
+
"text": "string"
|
|
9656
|
+
}
|
|
9657
|
+
}
|
|
9658
|
+
],
|
|
9659
|
+
"inheritedFrom": {
|
|
9660
|
+
"name": "GenesisGridDatasourceElement",
|
|
9661
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9662
|
+
}
|
|
9663
|
+
},
|
|
9664
|
+
{
|
|
9665
|
+
"kind": "field",
|
|
9666
|
+
"name": "isRequestServer",
|
|
9667
|
+
"type": {
|
|
9668
|
+
"text": "boolean"
|
|
9669
|
+
},
|
|
9670
|
+
"readonly": true,
|
|
9671
|
+
"inheritedFrom": {
|
|
9672
|
+
"name": "GenesisGridDatasourceElement",
|
|
9673
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9674
|
+
}
|
|
9675
|
+
},
|
|
9676
|
+
{
|
|
9677
|
+
"kind": "method",
|
|
9678
|
+
"name": "datasourceStatusChanged",
|
|
9679
|
+
"parameters": [
|
|
9680
|
+
{
|
|
9395
9681
|
"name": "prev",
|
|
9396
9682
|
"type": {
|
|
9397
9683
|
"text": "DatasourceStatus"
|
|
@@ -9546,6 +9832,24 @@
|
|
|
9546
9832
|
"module": "src/datasource/base.datasource.ts"
|
|
9547
9833
|
}
|
|
9548
9834
|
},
|
|
9835
|
+
{
|
|
9836
|
+
"name": "zero-based-view-number",
|
|
9837
|
+
"type": {
|
|
9838
|
+
"text": "boolean"
|
|
9839
|
+
},
|
|
9840
|
+
"default": "false",
|
|
9841
|
+
"description": "The starting VIEW_NUMBER of the data to be fetched.",
|
|
9842
|
+
"fieldName": "zeroBasedViewNumber"
|
|
9843
|
+
},
|
|
9844
|
+
{
|
|
9845
|
+
"name": "live-updates",
|
|
9846
|
+
"type": {
|
|
9847
|
+
"text": "boolean"
|
|
9848
|
+
},
|
|
9849
|
+
"default": "false",
|
|
9850
|
+
"description": "Enable live updates for the grid.",
|
|
9851
|
+
"fieldName": "liveUpdates"
|
|
9852
|
+
},
|
|
9549
9853
|
{
|
|
9550
9854
|
"name": "criteria",
|
|
9551
9855
|
"type": {
|
|
@@ -9558,166 +9862,1669 @@
|
|
|
9558
9862
|
}
|
|
9559
9863
|
},
|
|
9560
9864
|
{
|
|
9561
|
-
"name": "fields",
|
|
9562
|
-
"type": {
|
|
9563
|
-
"text": "string"
|
|
9865
|
+
"name": "fields",
|
|
9866
|
+
"type": {
|
|
9867
|
+
"text": "string"
|
|
9868
|
+
},
|
|
9869
|
+
"fieldName": "fields",
|
|
9870
|
+
"inheritedFrom": {
|
|
9871
|
+
"name": "GenesisGridDatasourceElement",
|
|
9872
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9873
|
+
}
|
|
9874
|
+
},
|
|
9875
|
+
{
|
|
9876
|
+
"name": "is-snapshot",
|
|
9877
|
+
"type": {
|
|
9878
|
+
"text": "boolean"
|
|
9879
|
+
},
|
|
9880
|
+
"default": "false",
|
|
9881
|
+
"fieldName": "isSnapshot",
|
|
9882
|
+
"inheritedFrom": {
|
|
9883
|
+
"name": "GenesisGridDatasourceElement",
|
|
9884
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9885
|
+
}
|
|
9886
|
+
},
|
|
9887
|
+
{
|
|
9888
|
+
"name": "max-rows",
|
|
9889
|
+
"type": {
|
|
9890
|
+
"text": "number"
|
|
9891
|
+
},
|
|
9892
|
+
"fieldName": "maxRows",
|
|
9893
|
+
"inheritedFrom": {
|
|
9894
|
+
"name": "GenesisGridDatasourceElement",
|
|
9895
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9896
|
+
}
|
|
9897
|
+
},
|
|
9898
|
+
{
|
|
9899
|
+
"name": "max-view",
|
|
9900
|
+
"type": {
|
|
9901
|
+
"text": "number"
|
|
9902
|
+
},
|
|
9903
|
+
"fieldName": "maxView",
|
|
9904
|
+
"inheritedFrom": {
|
|
9905
|
+
"name": "GenesisGridDatasourceElement",
|
|
9906
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9907
|
+
}
|
|
9908
|
+
},
|
|
9909
|
+
{
|
|
9910
|
+
"name": "moving-view",
|
|
9911
|
+
"type": {
|
|
9912
|
+
"text": "boolean"
|
|
9913
|
+
},
|
|
9914
|
+
"default": "false",
|
|
9915
|
+
"fieldName": "movingView",
|
|
9916
|
+
"inheritedFrom": {
|
|
9917
|
+
"name": "GenesisGridDatasourceElement",
|
|
9918
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9919
|
+
}
|
|
9920
|
+
},
|
|
9921
|
+
{
|
|
9922
|
+
"name": "order-by",
|
|
9923
|
+
"type": {
|
|
9924
|
+
"text": "string"
|
|
9925
|
+
},
|
|
9926
|
+
"fieldName": "orderBy",
|
|
9927
|
+
"inheritedFrom": {
|
|
9928
|
+
"name": "GenesisGridDatasourceElement",
|
|
9929
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9930
|
+
}
|
|
9931
|
+
},
|
|
9932
|
+
{
|
|
9933
|
+
"name": "resource-name",
|
|
9934
|
+
"type": {
|
|
9935
|
+
"text": "string"
|
|
9936
|
+
},
|
|
9937
|
+
"fieldName": "resourceName",
|
|
9938
|
+
"inheritedFrom": {
|
|
9939
|
+
"name": "GenesisGridDatasourceElement",
|
|
9940
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9941
|
+
}
|
|
9942
|
+
},
|
|
9943
|
+
{
|
|
9944
|
+
"name": "view-number",
|
|
9945
|
+
"type": {
|
|
9946
|
+
"text": "number"
|
|
9947
|
+
},
|
|
9948
|
+
"fieldName": "viewNumber",
|
|
9949
|
+
"inheritedFrom": {
|
|
9950
|
+
"name": "GenesisGridDatasourceElement",
|
|
9951
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9952
|
+
}
|
|
9953
|
+
},
|
|
9954
|
+
{
|
|
9955
|
+
"name": "polling-interval",
|
|
9956
|
+
"type": {
|
|
9957
|
+
"text": "number"
|
|
9958
|
+
},
|
|
9959
|
+
"fieldName": "pollingInterval",
|
|
9960
|
+
"inheritedFrom": {
|
|
9961
|
+
"name": "GenesisGridDatasourceElement",
|
|
9962
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9963
|
+
}
|
|
9964
|
+
},
|
|
9965
|
+
{
|
|
9966
|
+
"name": "disable-polling",
|
|
9967
|
+
"type": {
|
|
9968
|
+
"text": "boolean"
|
|
9969
|
+
},
|
|
9970
|
+
"default": "false",
|
|
9971
|
+
"fieldName": "disablePolling",
|
|
9972
|
+
"inheritedFrom": {
|
|
9973
|
+
"name": "GenesisGridDatasourceElement",
|
|
9974
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9975
|
+
}
|
|
9976
|
+
},
|
|
9977
|
+
{
|
|
9978
|
+
"name": "request-auto-setup",
|
|
9979
|
+
"type": {
|
|
9980
|
+
"text": "boolean"
|
|
9981
|
+
},
|
|
9982
|
+
"default": "true",
|
|
9983
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
9984
|
+
"fieldName": "requestAutoSetup",
|
|
9985
|
+
"inheritedFrom": {
|
|
9986
|
+
"name": "GenesisGridDatasourceElement",
|
|
9987
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9988
|
+
}
|
|
9989
|
+
},
|
|
9990
|
+
{
|
|
9991
|
+
"name": "row-id",
|
|
9992
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
9993
|
+
"fieldName": "rowIdAttr",
|
|
9994
|
+
"inheritedFrom": {
|
|
9995
|
+
"name": "GenesisGridDatasourceElement",
|
|
9996
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9997
|
+
}
|
|
9998
|
+
}
|
|
9999
|
+
],
|
|
10000
|
+
"mixins": [
|
|
10001
|
+
{
|
|
10002
|
+
"name": "LifecycleMixin",
|
|
10003
|
+
"package": "@genesislcap/foundation-utils"
|
|
10004
|
+
}
|
|
10005
|
+
],
|
|
10006
|
+
"superclass": {
|
|
10007
|
+
"name": "GridProBaseDatasource",
|
|
10008
|
+
"module": "/src/datasource/base.datasource"
|
|
10009
|
+
},
|
|
10010
|
+
"tagName": "grid-pro-server-side-datasource",
|
|
10011
|
+
"customElement": true
|
|
10012
|
+
}
|
|
10013
|
+
],
|
|
10014
|
+
"exports": [
|
|
10015
|
+
{
|
|
10016
|
+
"kind": "js",
|
|
10017
|
+
"name": "GridProServerSideDatasource",
|
|
10018
|
+
"declaration": {
|
|
10019
|
+
"name": "GridProServerSideDatasource",
|
|
10020
|
+
"module": "src/datasource/server-side.datasource.ts"
|
|
10021
|
+
}
|
|
10022
|
+
},
|
|
10023
|
+
{
|
|
10024
|
+
"kind": "custom-element-definition",
|
|
10025
|
+
"name": "grid-pro-server-side-datasource",
|
|
10026
|
+
"declaration": {
|
|
10027
|
+
"name": "GridProServerSideDatasource",
|
|
10028
|
+
"module": "src/datasource/server-side.datasource.ts"
|
|
10029
|
+
}
|
|
10030
|
+
}
|
|
10031
|
+
]
|
|
10032
|
+
},
|
|
10033
|
+
{
|
|
10034
|
+
"kind": "javascript-module",
|
|
10035
|
+
"path": "src/datasource/server-side.grid-definitions.ts",
|
|
10036
|
+
"declarations": [
|
|
10037
|
+
{
|
|
10038
|
+
"kind": "function",
|
|
10039
|
+
"name": "getServerSideFilterParamsByFieldType",
|
|
10040
|
+
"return": {
|
|
10041
|
+
"type": {
|
|
10042
|
+
"text": ""
|
|
10043
|
+
}
|
|
10044
|
+
},
|
|
10045
|
+
"parameters": [
|
|
10046
|
+
{
|
|
10047
|
+
"name": "type",
|
|
10048
|
+
"type": {
|
|
10049
|
+
"text": "string"
|
|
10050
|
+
},
|
|
10051
|
+
"description": "The type of the field/column"
|
|
10052
|
+
}
|
|
10053
|
+
],
|
|
10054
|
+
"description": "Returns the filter params based on the Grid Pro field/column type."
|
|
10055
|
+
}
|
|
10056
|
+
],
|
|
10057
|
+
"exports": [
|
|
10058
|
+
{
|
|
10059
|
+
"kind": "js",
|
|
10060
|
+
"name": "getServerSideFilterParamsByFieldType",
|
|
10061
|
+
"declaration": {
|
|
10062
|
+
"name": "getServerSideFilterParamsByFieldType",
|
|
10063
|
+
"module": "src/datasource/server-side.grid-definitions.ts"
|
|
10064
|
+
}
|
|
10065
|
+
}
|
|
10066
|
+
]
|
|
10067
|
+
},
|
|
10068
|
+
{
|
|
10069
|
+
"kind": "javascript-module",
|
|
10070
|
+
"path": "src/datasource/server-side.resource-base.ts",
|
|
10071
|
+
"declarations": [
|
|
10072
|
+
{
|
|
10073
|
+
"kind": "class",
|
|
10074
|
+
"description": "",
|
|
10075
|
+
"name": "BaseServerSideDatasource",
|
|
10076
|
+
"members": [
|
|
10077
|
+
{
|
|
10078
|
+
"kind": "field",
|
|
10079
|
+
"name": "auth",
|
|
10080
|
+
"type": {
|
|
10081
|
+
"text": "Auth"
|
|
10082
|
+
}
|
|
10083
|
+
},
|
|
10084
|
+
{
|
|
10085
|
+
"kind": "field",
|
|
10086
|
+
"name": "connect",
|
|
10087
|
+
"type": {
|
|
10088
|
+
"text": "Connect"
|
|
10089
|
+
}
|
|
10090
|
+
},
|
|
10091
|
+
{
|
|
10092
|
+
"kind": "field",
|
|
10093
|
+
"name": "uuid",
|
|
10094
|
+
"type": {
|
|
10095
|
+
"text": "UUID"
|
|
10096
|
+
}
|
|
10097
|
+
},
|
|
10098
|
+
{
|
|
10099
|
+
"kind": "field",
|
|
10100
|
+
"name": "rowId",
|
|
10101
|
+
"type": {
|
|
10102
|
+
"text": "string"
|
|
10103
|
+
},
|
|
10104
|
+
"privacy": "protected"
|
|
10105
|
+
},
|
|
10106
|
+
{
|
|
10107
|
+
"kind": "field",
|
|
10108
|
+
"name": "rowData",
|
|
10109
|
+
"type": {
|
|
10110
|
+
"text": "Map<string, any>"
|
|
10111
|
+
},
|
|
10112
|
+
"privacy": "protected",
|
|
10113
|
+
"default": "new Map()"
|
|
10114
|
+
},
|
|
10115
|
+
{
|
|
10116
|
+
"kind": "field",
|
|
10117
|
+
"name": "reloadResourceDataFunc",
|
|
10118
|
+
"type": {
|
|
10119
|
+
"text": "(params: DatasourceOptions) => Promise<void>"
|
|
10120
|
+
}
|
|
10121
|
+
},
|
|
10122
|
+
{
|
|
10123
|
+
"kind": "field",
|
|
10124
|
+
"name": "resourceName",
|
|
10125
|
+
"type": {
|
|
10126
|
+
"text": "string"
|
|
10127
|
+
},
|
|
10128
|
+
"privacy": "protected"
|
|
10129
|
+
},
|
|
10130
|
+
{
|
|
10131
|
+
"kind": "field",
|
|
10132
|
+
"name": "resourceParams",
|
|
10133
|
+
"type": {
|
|
10134
|
+
"text": "any"
|
|
10135
|
+
}
|
|
10136
|
+
},
|
|
10137
|
+
{
|
|
10138
|
+
"kind": "field",
|
|
10139
|
+
"name": "resourceIndexes",
|
|
10140
|
+
"type": {
|
|
10141
|
+
"text": "Map<string, [string]>"
|
|
10142
|
+
},
|
|
10143
|
+
"privacy": "protected"
|
|
10144
|
+
},
|
|
10145
|
+
{
|
|
10146
|
+
"kind": "field",
|
|
10147
|
+
"name": "resourceColDefs",
|
|
10148
|
+
"type": {
|
|
10149
|
+
"text": "MetadataDetail[]"
|
|
10150
|
+
},
|
|
10151
|
+
"privacy": "protected"
|
|
10152
|
+
},
|
|
10153
|
+
{
|
|
10154
|
+
"kind": "field",
|
|
10155
|
+
"name": "maxRows",
|
|
10156
|
+
"type": {
|
|
10157
|
+
"text": "number"
|
|
10158
|
+
},
|
|
10159
|
+
"privacy": "protected"
|
|
10160
|
+
},
|
|
10161
|
+
{
|
|
10162
|
+
"kind": "field",
|
|
10163
|
+
"name": "maxView",
|
|
10164
|
+
"type": {
|
|
10165
|
+
"text": "number"
|
|
10166
|
+
},
|
|
10167
|
+
"privacy": "protected"
|
|
10168
|
+
},
|
|
10169
|
+
{
|
|
10170
|
+
"kind": "field",
|
|
10171
|
+
"name": "pagination",
|
|
10172
|
+
"type": {
|
|
10173
|
+
"text": "boolean"
|
|
10174
|
+
},
|
|
10175
|
+
"privacy": "protected"
|
|
10176
|
+
},
|
|
10177
|
+
{
|
|
10178
|
+
"kind": "field",
|
|
10179
|
+
"name": "zeroBasedViewNumber",
|
|
10180
|
+
"type": {
|
|
10181
|
+
"text": "boolean"
|
|
10182
|
+
},
|
|
10183
|
+
"privacy": "protected"
|
|
10184
|
+
},
|
|
10185
|
+
{
|
|
10186
|
+
"kind": "field",
|
|
10187
|
+
"name": "sourceRef",
|
|
10188
|
+
"type": {
|
|
10189
|
+
"text": "string"
|
|
10190
|
+
}
|
|
10191
|
+
},
|
|
10192
|
+
{
|
|
10193
|
+
"kind": "field",
|
|
10194
|
+
"name": "isNewPageSize",
|
|
10195
|
+
"type": {
|
|
10196
|
+
"text": "boolean"
|
|
10197
|
+
}
|
|
10198
|
+
},
|
|
10199
|
+
{
|
|
10200
|
+
"kind": "field",
|
|
10201
|
+
"name": "lastSuccessRowData",
|
|
10202
|
+
"type": {
|
|
10203
|
+
"text": "LoadSuccessParams"
|
|
10204
|
+
}
|
|
10205
|
+
},
|
|
10206
|
+
{
|
|
10207
|
+
"kind": "field",
|
|
10208
|
+
"name": "moreRows",
|
|
10209
|
+
"type": {
|
|
10210
|
+
"text": "boolean"
|
|
10211
|
+
},
|
|
10212
|
+
"privacy": "protected",
|
|
10213
|
+
"default": "false"
|
|
10214
|
+
},
|
|
10215
|
+
{
|
|
10216
|
+
"kind": "field",
|
|
10217
|
+
"name": "calculatedRowsCount",
|
|
10218
|
+
"type": {
|
|
10219
|
+
"text": "number"
|
|
10220
|
+
},
|
|
10221
|
+
"privacy": "protected",
|
|
10222
|
+
"default": "0"
|
|
10223
|
+
},
|
|
10224
|
+
{
|
|
10225
|
+
"kind": "field",
|
|
10226
|
+
"name": "currentSequenceId",
|
|
10227
|
+
"type": {
|
|
10228
|
+
"text": "null"
|
|
10229
|
+
},
|
|
10230
|
+
"privacy": "protected",
|
|
10231
|
+
"default": "null"
|
|
10232
|
+
},
|
|
10233
|
+
{
|
|
10234
|
+
"kind": "field",
|
|
10235
|
+
"name": "currentFilterModel",
|
|
10236
|
+
"type": {
|
|
10237
|
+
"text": "SetFilterModel"
|
|
10238
|
+
},
|
|
10239
|
+
"privacy": "protected"
|
|
10240
|
+
},
|
|
10241
|
+
{
|
|
10242
|
+
"kind": "field",
|
|
10243
|
+
"name": "originalCriteriaMatch",
|
|
10244
|
+
"type": {
|
|
10245
|
+
"text": "string | string[]"
|
|
10246
|
+
},
|
|
10247
|
+
"privacy": "protected"
|
|
10248
|
+
},
|
|
10249
|
+
{
|
|
10250
|
+
"kind": "field",
|
|
10251
|
+
"name": "currentSortModel",
|
|
10252
|
+
"type": {
|
|
10253
|
+
"text": "SortModelItem[]"
|
|
10254
|
+
},
|
|
10255
|
+
"privacy": "protected"
|
|
10256
|
+
},
|
|
10257
|
+
{
|
|
10258
|
+
"kind": "method",
|
|
10259
|
+
"name": "getRows",
|
|
10260
|
+
"return": {
|
|
10261
|
+
"type": {
|
|
10262
|
+
"text": "void"
|
|
10263
|
+
}
|
|
10264
|
+
},
|
|
10265
|
+
"parameters": [
|
|
10266
|
+
{
|
|
10267
|
+
"name": "params",
|
|
10268
|
+
"type": {
|
|
10269
|
+
"text": "IServerSideGetRowsParams<any, any>"
|
|
10270
|
+
}
|
|
10271
|
+
}
|
|
10272
|
+
]
|
|
10273
|
+
},
|
|
10274
|
+
{
|
|
10275
|
+
"kind": "method",
|
|
10276
|
+
"name": "setupFilteringAndSorting",
|
|
10277
|
+
"privacy": "protected",
|
|
10278
|
+
"parameters": [
|
|
10279
|
+
{
|
|
10280
|
+
"name": "params",
|
|
10281
|
+
"type": {
|
|
10282
|
+
"text": "IServerSideGetRowsParams"
|
|
10283
|
+
}
|
|
10284
|
+
}
|
|
10285
|
+
]
|
|
10286
|
+
},
|
|
10287
|
+
{
|
|
10288
|
+
"kind": "method",
|
|
10289
|
+
"name": "destroy",
|
|
10290
|
+
"return": {
|
|
10291
|
+
"type": {
|
|
10292
|
+
"text": "void"
|
|
10293
|
+
}
|
|
10294
|
+
}
|
|
10295
|
+
},
|
|
10296
|
+
{
|
|
10297
|
+
"kind": "method",
|
|
10298
|
+
"name": "refreshDatasource",
|
|
10299
|
+
"privacy": "protected",
|
|
10300
|
+
"return": {
|
|
10301
|
+
"type": {
|
|
10302
|
+
"text": "Promise<void>"
|
|
10303
|
+
}
|
|
10304
|
+
},
|
|
10305
|
+
"parameters": [
|
|
10306
|
+
{
|
|
10307
|
+
"name": "params",
|
|
10308
|
+
"type": {
|
|
10309
|
+
"text": "IServerSideGetRowsParams"
|
|
10310
|
+
}
|
|
10311
|
+
}
|
|
10312
|
+
]
|
|
10313
|
+
},
|
|
10314
|
+
{
|
|
10315
|
+
"kind": "method",
|
|
10316
|
+
"name": "getOrderByAndToBeSortedColIds",
|
|
10317
|
+
"privacy": "protected",
|
|
10318
|
+
"parameters": [
|
|
10319
|
+
{
|
|
10320
|
+
"name": "map"
|
|
10321
|
+
},
|
|
10322
|
+
{
|
|
10323
|
+
"name": "searchValue"
|
|
10324
|
+
}
|
|
10325
|
+
]
|
|
10326
|
+
},
|
|
10327
|
+
{
|
|
10328
|
+
"kind": "method",
|
|
10329
|
+
"name": "buildCriteriaMatchFromFilters",
|
|
10330
|
+
"privacy": "protected",
|
|
10331
|
+
"return": {
|
|
10332
|
+
"type": {
|
|
10333
|
+
"text": "string"
|
|
10334
|
+
}
|
|
10335
|
+
}
|
|
10336
|
+
},
|
|
10337
|
+
{
|
|
10338
|
+
"kind": "method",
|
|
10339
|
+
"name": "criteriaFromFilters",
|
|
10340
|
+
"privacy": "protected",
|
|
10341
|
+
"return": {
|
|
10342
|
+
"type": {
|
|
10343
|
+
"text": "string[]"
|
|
10344
|
+
}
|
|
10345
|
+
}
|
|
10346
|
+
},
|
|
10347
|
+
{
|
|
10348
|
+
"kind": "method",
|
|
10349
|
+
"name": "getFiltersByType",
|
|
10350
|
+
"privacy": "protected",
|
|
10351
|
+
"parameters": [
|
|
10352
|
+
{
|
|
10353
|
+
"name": "filterType",
|
|
10354
|
+
"type": {
|
|
10355
|
+
"text": "string"
|
|
10356
|
+
}
|
|
10357
|
+
}
|
|
10358
|
+
]
|
|
10359
|
+
},
|
|
10360
|
+
{
|
|
10361
|
+
"kind": "method",
|
|
10362
|
+
"name": "getPageNumber",
|
|
10363
|
+
"privacy": "protected",
|
|
10364
|
+
"parameters": [
|
|
10365
|
+
{
|
|
10366
|
+
"name": "start",
|
|
10367
|
+
"type": {
|
|
10368
|
+
"text": "number"
|
|
10369
|
+
}
|
|
10370
|
+
},
|
|
10371
|
+
{
|
|
10372
|
+
"name": "recordsPerPage",
|
|
10373
|
+
"type": {
|
|
10374
|
+
"text": "number"
|
|
10375
|
+
}
|
|
10376
|
+
},
|
|
10377
|
+
{
|
|
10378
|
+
"name": "totalRecords",
|
|
10379
|
+
"type": {
|
|
10380
|
+
"text": "number"
|
|
10381
|
+
}
|
|
10382
|
+
},
|
|
10383
|
+
{
|
|
10384
|
+
"name": "zeroBasedViewNumber",
|
|
10385
|
+
"default": "true"
|
|
10386
|
+
}
|
|
10387
|
+
]
|
|
10388
|
+
},
|
|
10389
|
+
{
|
|
10390
|
+
"kind": "method",
|
|
10391
|
+
"name": "getCorrectRowCount",
|
|
10392
|
+
"privacy": "protected",
|
|
10393
|
+
"parameters": [
|
|
10394
|
+
{
|
|
10395
|
+
"name": "params",
|
|
10396
|
+
"type": {
|
|
10397
|
+
"text": "IServerSideGetRowsParams<any, any>"
|
|
10398
|
+
}
|
|
10399
|
+
}
|
|
10400
|
+
]
|
|
10401
|
+
},
|
|
10402
|
+
{
|
|
10403
|
+
"kind": "field",
|
|
10404
|
+
"name": "isNotFirstViewNumber",
|
|
10405
|
+
"type": {
|
|
10406
|
+
"text": "boolean"
|
|
10407
|
+
},
|
|
10408
|
+
"privacy": "protected",
|
|
10409
|
+
"readonly": true
|
|
10410
|
+
}
|
|
10411
|
+
]
|
|
10412
|
+
}
|
|
10413
|
+
],
|
|
10414
|
+
"exports": [
|
|
10415
|
+
{
|
|
10416
|
+
"kind": "js",
|
|
10417
|
+
"name": "BaseServerSideDatasource",
|
|
10418
|
+
"declaration": {
|
|
10419
|
+
"name": "BaseServerSideDatasource",
|
|
10420
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10421
|
+
}
|
|
10422
|
+
}
|
|
10423
|
+
]
|
|
10424
|
+
},
|
|
10425
|
+
{
|
|
10426
|
+
"kind": "javascript-module",
|
|
10427
|
+
"path": "src/datasource/server-side.resource-dataserver.ts",
|
|
10428
|
+
"declarations": [
|
|
10429
|
+
{
|
|
10430
|
+
"kind": "class",
|
|
10431
|
+
"description": "The DATASERVER IServerSideDatasource implementation, used for SSRM (Server-Side Row Model) in the grid.",
|
|
10432
|
+
"name": "DataserverServerSideDatasource",
|
|
10433
|
+
"members": [
|
|
10434
|
+
{
|
|
10435
|
+
"kind": "field",
|
|
10436
|
+
"name": "dataserverStream",
|
|
10437
|
+
"type": {
|
|
10438
|
+
"text": "SocketObservable<FilteredDataServerResult>"
|
|
10439
|
+
}
|
|
10440
|
+
},
|
|
10441
|
+
{
|
|
10442
|
+
"kind": "field",
|
|
10443
|
+
"name": "dataserverStreamSubscription",
|
|
10444
|
+
"type": {
|
|
10445
|
+
"text": "SocketSubscription"
|
|
10446
|
+
}
|
|
10447
|
+
},
|
|
10448
|
+
{
|
|
10449
|
+
"kind": "field",
|
|
10450
|
+
"name": "createDataserverStreamFunc",
|
|
10451
|
+
"type": {
|
|
10452
|
+
"text": "(\n existingParams?: any,\n ) => Promise<SocketObservable<FilteredDataServerResult>>"
|
|
10453
|
+
}
|
|
10454
|
+
},
|
|
10455
|
+
{
|
|
10456
|
+
"kind": "method",
|
|
10457
|
+
"name": "refreshDatasource",
|
|
10458
|
+
"privacy": "protected",
|
|
10459
|
+
"return": {
|
|
10460
|
+
"type": {
|
|
10461
|
+
"text": "Promise<void>"
|
|
10462
|
+
}
|
|
10463
|
+
},
|
|
10464
|
+
"parameters": [
|
|
10465
|
+
{
|
|
10466
|
+
"name": "params",
|
|
10467
|
+
"type": {
|
|
10468
|
+
"text": "IServerSideGetRowsParams"
|
|
10469
|
+
}
|
|
10470
|
+
}
|
|
10471
|
+
],
|
|
10472
|
+
"inheritedFrom": {
|
|
10473
|
+
"name": "BaseServerSideDatasource",
|
|
10474
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10475
|
+
}
|
|
10476
|
+
},
|
|
10477
|
+
{
|
|
10478
|
+
"kind": "method",
|
|
10479
|
+
"name": "getRows",
|
|
10480
|
+
"return": {
|
|
10481
|
+
"type": {
|
|
10482
|
+
"text": "void"
|
|
10483
|
+
}
|
|
10484
|
+
},
|
|
10485
|
+
"parameters": [
|
|
10486
|
+
{
|
|
10487
|
+
"name": "params",
|
|
10488
|
+
"type": {
|
|
10489
|
+
"text": "IServerSideGetRowsParams"
|
|
10490
|
+
}
|
|
10491
|
+
}
|
|
10492
|
+
],
|
|
10493
|
+
"inheritedFrom": {
|
|
10494
|
+
"name": "BaseServerSideDatasource",
|
|
10495
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10496
|
+
}
|
|
10497
|
+
},
|
|
10498
|
+
{
|
|
10499
|
+
"kind": "method",
|
|
10500
|
+
"name": "applyServerSideData",
|
|
10501
|
+
"privacy": "private",
|
|
10502
|
+
"parameters": [
|
|
10503
|
+
{
|
|
10504
|
+
"name": "params",
|
|
10505
|
+
"type": {
|
|
10506
|
+
"text": "IServerSideGetRowsParams"
|
|
10507
|
+
}
|
|
10508
|
+
},
|
|
10509
|
+
{
|
|
10510
|
+
"name": "result",
|
|
10511
|
+
"type": {
|
|
10512
|
+
"text": "RawDataServerResult"
|
|
10513
|
+
}
|
|
10514
|
+
}
|
|
10515
|
+
]
|
|
10516
|
+
},
|
|
10517
|
+
{
|
|
10518
|
+
"kind": "method",
|
|
10519
|
+
"name": "destroy",
|
|
10520
|
+
"return": {
|
|
10521
|
+
"type": {
|
|
10522
|
+
"text": "void"
|
|
10523
|
+
}
|
|
10524
|
+
},
|
|
10525
|
+
"inheritedFrom": {
|
|
10526
|
+
"name": "BaseServerSideDatasource",
|
|
10527
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10528
|
+
}
|
|
10529
|
+
},
|
|
10530
|
+
{
|
|
10531
|
+
"kind": "method",
|
|
10532
|
+
"name": "handleCurrentStreamLoad",
|
|
10533
|
+
"privacy": "private",
|
|
10534
|
+
"return": {
|
|
10535
|
+
"type": {
|
|
10536
|
+
"text": "any[]"
|
|
10537
|
+
}
|
|
10538
|
+
},
|
|
10539
|
+
"parameters": [
|
|
10540
|
+
{
|
|
10541
|
+
"name": "result",
|
|
10542
|
+
"type": {
|
|
10543
|
+
"text": "FilteredDataServerResult"
|
|
10544
|
+
}
|
|
10545
|
+
}
|
|
10546
|
+
]
|
|
10547
|
+
},
|
|
10548
|
+
{
|
|
10549
|
+
"kind": "field",
|
|
10550
|
+
"name": "auth",
|
|
10551
|
+
"type": {
|
|
10552
|
+
"text": "Auth"
|
|
10553
|
+
},
|
|
10554
|
+
"inheritedFrom": {
|
|
10555
|
+
"name": "BaseServerSideDatasource",
|
|
10556
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10557
|
+
}
|
|
10558
|
+
},
|
|
10559
|
+
{
|
|
10560
|
+
"kind": "field",
|
|
10561
|
+
"name": "connect",
|
|
10562
|
+
"type": {
|
|
10563
|
+
"text": "Connect"
|
|
10564
|
+
},
|
|
10565
|
+
"inheritedFrom": {
|
|
10566
|
+
"name": "BaseServerSideDatasource",
|
|
10567
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10568
|
+
}
|
|
10569
|
+
},
|
|
10570
|
+
{
|
|
10571
|
+
"kind": "field",
|
|
10572
|
+
"name": "uuid",
|
|
10573
|
+
"type": {
|
|
10574
|
+
"text": "UUID"
|
|
10575
|
+
},
|
|
10576
|
+
"inheritedFrom": {
|
|
10577
|
+
"name": "BaseServerSideDatasource",
|
|
10578
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10579
|
+
}
|
|
10580
|
+
},
|
|
10581
|
+
{
|
|
10582
|
+
"kind": "field",
|
|
10583
|
+
"name": "rowId",
|
|
10584
|
+
"type": {
|
|
10585
|
+
"text": "string"
|
|
10586
|
+
},
|
|
10587
|
+
"privacy": "protected",
|
|
10588
|
+
"inheritedFrom": {
|
|
10589
|
+
"name": "BaseServerSideDatasource",
|
|
10590
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10591
|
+
}
|
|
10592
|
+
},
|
|
10593
|
+
{
|
|
10594
|
+
"kind": "field",
|
|
10595
|
+
"name": "rowData",
|
|
10596
|
+
"type": {
|
|
10597
|
+
"text": "Map<string, any>"
|
|
10598
|
+
},
|
|
10599
|
+
"privacy": "protected",
|
|
10600
|
+
"default": "new Map()",
|
|
10601
|
+
"inheritedFrom": {
|
|
10602
|
+
"name": "BaseServerSideDatasource",
|
|
10603
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10604
|
+
}
|
|
10605
|
+
},
|
|
10606
|
+
{
|
|
10607
|
+
"kind": "field",
|
|
10608
|
+
"name": "reloadResourceDataFunc",
|
|
10609
|
+
"type": {
|
|
10610
|
+
"text": "(params: DatasourceOptions) => Promise<void>"
|
|
10611
|
+
},
|
|
10612
|
+
"inheritedFrom": {
|
|
10613
|
+
"name": "BaseServerSideDatasource",
|
|
10614
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10615
|
+
}
|
|
10616
|
+
},
|
|
10617
|
+
{
|
|
10618
|
+
"kind": "field",
|
|
10619
|
+
"name": "resourceName",
|
|
10620
|
+
"type": {
|
|
10621
|
+
"text": "string"
|
|
10622
|
+
},
|
|
10623
|
+
"privacy": "protected",
|
|
10624
|
+
"inheritedFrom": {
|
|
10625
|
+
"name": "BaseServerSideDatasource",
|
|
10626
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10627
|
+
}
|
|
10628
|
+
},
|
|
10629
|
+
{
|
|
10630
|
+
"kind": "field",
|
|
10631
|
+
"name": "resourceParams",
|
|
10632
|
+
"type": {
|
|
10633
|
+
"text": "any"
|
|
10634
|
+
},
|
|
10635
|
+
"inheritedFrom": {
|
|
10636
|
+
"name": "BaseServerSideDatasource",
|
|
10637
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10638
|
+
}
|
|
10639
|
+
},
|
|
10640
|
+
{
|
|
10641
|
+
"kind": "field",
|
|
10642
|
+
"name": "resourceIndexes",
|
|
10643
|
+
"type": {
|
|
10644
|
+
"text": "Map<string, [string]>"
|
|
10645
|
+
},
|
|
10646
|
+
"privacy": "protected",
|
|
10647
|
+
"inheritedFrom": {
|
|
10648
|
+
"name": "BaseServerSideDatasource",
|
|
10649
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10650
|
+
}
|
|
10651
|
+
},
|
|
10652
|
+
{
|
|
10653
|
+
"kind": "field",
|
|
10654
|
+
"name": "resourceColDefs",
|
|
10655
|
+
"type": {
|
|
10656
|
+
"text": "MetadataDetail[]"
|
|
10657
|
+
},
|
|
10658
|
+
"privacy": "protected",
|
|
10659
|
+
"inheritedFrom": {
|
|
10660
|
+
"name": "BaseServerSideDatasource",
|
|
10661
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10662
|
+
}
|
|
10663
|
+
},
|
|
10664
|
+
{
|
|
10665
|
+
"kind": "field",
|
|
10666
|
+
"name": "maxRows",
|
|
10667
|
+
"type": {
|
|
10668
|
+
"text": "number"
|
|
10669
|
+
},
|
|
10670
|
+
"privacy": "protected",
|
|
10671
|
+
"inheritedFrom": {
|
|
10672
|
+
"name": "BaseServerSideDatasource",
|
|
10673
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10674
|
+
}
|
|
10675
|
+
},
|
|
10676
|
+
{
|
|
10677
|
+
"kind": "field",
|
|
10678
|
+
"name": "maxView",
|
|
10679
|
+
"type": {
|
|
10680
|
+
"text": "number"
|
|
10681
|
+
},
|
|
10682
|
+
"privacy": "protected",
|
|
10683
|
+
"inheritedFrom": {
|
|
10684
|
+
"name": "BaseServerSideDatasource",
|
|
10685
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10686
|
+
}
|
|
10687
|
+
},
|
|
10688
|
+
{
|
|
10689
|
+
"kind": "field",
|
|
10690
|
+
"name": "pagination",
|
|
10691
|
+
"type": {
|
|
10692
|
+
"text": "boolean"
|
|
10693
|
+
},
|
|
10694
|
+
"privacy": "protected",
|
|
10695
|
+
"inheritedFrom": {
|
|
10696
|
+
"name": "BaseServerSideDatasource",
|
|
10697
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10698
|
+
}
|
|
10699
|
+
},
|
|
10700
|
+
{
|
|
10701
|
+
"kind": "field",
|
|
10702
|
+
"name": "zeroBasedViewNumber",
|
|
10703
|
+
"type": {
|
|
10704
|
+
"text": "boolean"
|
|
10705
|
+
},
|
|
10706
|
+
"privacy": "protected",
|
|
10707
|
+
"inheritedFrom": {
|
|
10708
|
+
"name": "BaseServerSideDatasource",
|
|
10709
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10710
|
+
}
|
|
10711
|
+
},
|
|
10712
|
+
{
|
|
10713
|
+
"kind": "field",
|
|
10714
|
+
"name": "sourceRef",
|
|
10715
|
+
"type": {
|
|
10716
|
+
"text": "string"
|
|
10717
|
+
},
|
|
10718
|
+
"inheritedFrom": {
|
|
10719
|
+
"name": "BaseServerSideDatasource",
|
|
10720
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10721
|
+
}
|
|
10722
|
+
},
|
|
10723
|
+
{
|
|
10724
|
+
"kind": "field",
|
|
10725
|
+
"name": "isNewPageSize",
|
|
10726
|
+
"type": {
|
|
10727
|
+
"text": "boolean"
|
|
10728
|
+
},
|
|
10729
|
+
"inheritedFrom": {
|
|
10730
|
+
"name": "BaseServerSideDatasource",
|
|
10731
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10732
|
+
}
|
|
10733
|
+
},
|
|
10734
|
+
{
|
|
10735
|
+
"kind": "field",
|
|
10736
|
+
"name": "lastSuccessRowData",
|
|
10737
|
+
"type": {
|
|
10738
|
+
"text": "LoadSuccessParams"
|
|
10739
|
+
},
|
|
10740
|
+
"inheritedFrom": {
|
|
10741
|
+
"name": "BaseServerSideDatasource",
|
|
10742
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10743
|
+
}
|
|
10744
|
+
},
|
|
10745
|
+
{
|
|
10746
|
+
"kind": "field",
|
|
10747
|
+
"name": "moreRows",
|
|
10748
|
+
"type": {
|
|
10749
|
+
"text": "boolean"
|
|
10750
|
+
},
|
|
10751
|
+
"privacy": "protected",
|
|
10752
|
+
"default": "false",
|
|
10753
|
+
"inheritedFrom": {
|
|
10754
|
+
"name": "BaseServerSideDatasource",
|
|
10755
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10756
|
+
}
|
|
10757
|
+
},
|
|
10758
|
+
{
|
|
10759
|
+
"kind": "field",
|
|
10760
|
+
"name": "calculatedRowsCount",
|
|
10761
|
+
"type": {
|
|
10762
|
+
"text": "number"
|
|
10763
|
+
},
|
|
10764
|
+
"privacy": "protected",
|
|
10765
|
+
"default": "0",
|
|
10766
|
+
"inheritedFrom": {
|
|
10767
|
+
"name": "BaseServerSideDatasource",
|
|
10768
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10769
|
+
}
|
|
10770
|
+
},
|
|
10771
|
+
{
|
|
10772
|
+
"kind": "field",
|
|
10773
|
+
"name": "currentSequenceId",
|
|
10774
|
+
"type": {
|
|
10775
|
+
"text": "null"
|
|
10776
|
+
},
|
|
10777
|
+
"privacy": "protected",
|
|
10778
|
+
"default": "null",
|
|
10779
|
+
"inheritedFrom": {
|
|
10780
|
+
"name": "BaseServerSideDatasource",
|
|
10781
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10782
|
+
}
|
|
10783
|
+
},
|
|
10784
|
+
{
|
|
10785
|
+
"kind": "field",
|
|
10786
|
+
"name": "currentFilterModel",
|
|
10787
|
+
"type": {
|
|
10788
|
+
"text": "SetFilterModel"
|
|
10789
|
+
},
|
|
10790
|
+
"privacy": "protected",
|
|
10791
|
+
"inheritedFrom": {
|
|
10792
|
+
"name": "BaseServerSideDatasource",
|
|
10793
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10794
|
+
}
|
|
10795
|
+
},
|
|
10796
|
+
{
|
|
10797
|
+
"kind": "field",
|
|
10798
|
+
"name": "originalCriteriaMatch",
|
|
10799
|
+
"type": {
|
|
10800
|
+
"text": "string | string[]"
|
|
10801
|
+
},
|
|
10802
|
+
"privacy": "protected",
|
|
10803
|
+
"inheritedFrom": {
|
|
10804
|
+
"name": "BaseServerSideDatasource",
|
|
10805
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10806
|
+
}
|
|
10807
|
+
},
|
|
10808
|
+
{
|
|
10809
|
+
"kind": "field",
|
|
10810
|
+
"name": "currentSortModel",
|
|
10811
|
+
"type": {
|
|
10812
|
+
"text": "SortModelItem[]"
|
|
10813
|
+
},
|
|
10814
|
+
"privacy": "protected",
|
|
10815
|
+
"inheritedFrom": {
|
|
10816
|
+
"name": "BaseServerSideDatasource",
|
|
10817
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10818
|
+
}
|
|
10819
|
+
},
|
|
10820
|
+
{
|
|
10821
|
+
"kind": "method",
|
|
10822
|
+
"name": "setupFilteringAndSorting",
|
|
10823
|
+
"privacy": "protected",
|
|
10824
|
+
"parameters": [
|
|
10825
|
+
{
|
|
10826
|
+
"name": "params",
|
|
10827
|
+
"type": {
|
|
10828
|
+
"text": "IServerSideGetRowsParams"
|
|
10829
|
+
}
|
|
10830
|
+
}
|
|
10831
|
+
],
|
|
10832
|
+
"inheritedFrom": {
|
|
10833
|
+
"name": "BaseServerSideDatasource",
|
|
10834
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10835
|
+
}
|
|
10836
|
+
},
|
|
10837
|
+
{
|
|
10838
|
+
"kind": "method",
|
|
10839
|
+
"name": "getOrderByAndToBeSortedColIds",
|
|
10840
|
+
"privacy": "protected",
|
|
10841
|
+
"parameters": [
|
|
10842
|
+
{
|
|
10843
|
+
"name": "map"
|
|
10844
|
+
},
|
|
10845
|
+
{
|
|
10846
|
+
"name": "searchValue"
|
|
10847
|
+
}
|
|
10848
|
+
],
|
|
10849
|
+
"inheritedFrom": {
|
|
10850
|
+
"name": "BaseServerSideDatasource",
|
|
10851
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10852
|
+
}
|
|
10853
|
+
},
|
|
10854
|
+
{
|
|
10855
|
+
"kind": "method",
|
|
10856
|
+
"name": "buildCriteriaMatchFromFilters",
|
|
10857
|
+
"privacy": "protected",
|
|
10858
|
+
"return": {
|
|
10859
|
+
"type": {
|
|
10860
|
+
"text": "string"
|
|
10861
|
+
}
|
|
10862
|
+
},
|
|
10863
|
+
"inheritedFrom": {
|
|
10864
|
+
"name": "BaseServerSideDatasource",
|
|
10865
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10866
|
+
}
|
|
10867
|
+
},
|
|
10868
|
+
{
|
|
10869
|
+
"kind": "method",
|
|
10870
|
+
"name": "criteriaFromFilters",
|
|
10871
|
+
"privacy": "protected",
|
|
10872
|
+
"return": {
|
|
10873
|
+
"type": {
|
|
10874
|
+
"text": "string[]"
|
|
10875
|
+
}
|
|
10876
|
+
},
|
|
10877
|
+
"inheritedFrom": {
|
|
10878
|
+
"name": "BaseServerSideDatasource",
|
|
10879
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10880
|
+
}
|
|
10881
|
+
},
|
|
10882
|
+
{
|
|
10883
|
+
"kind": "method",
|
|
10884
|
+
"name": "getFiltersByType",
|
|
10885
|
+
"privacy": "protected",
|
|
10886
|
+
"parameters": [
|
|
10887
|
+
{
|
|
10888
|
+
"name": "filterType",
|
|
10889
|
+
"type": {
|
|
10890
|
+
"text": "string"
|
|
10891
|
+
}
|
|
10892
|
+
}
|
|
10893
|
+
],
|
|
10894
|
+
"inheritedFrom": {
|
|
10895
|
+
"name": "BaseServerSideDatasource",
|
|
10896
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10897
|
+
}
|
|
10898
|
+
},
|
|
10899
|
+
{
|
|
10900
|
+
"kind": "method",
|
|
10901
|
+
"name": "getPageNumber",
|
|
10902
|
+
"privacy": "protected",
|
|
10903
|
+
"parameters": [
|
|
10904
|
+
{
|
|
10905
|
+
"name": "start",
|
|
10906
|
+
"type": {
|
|
10907
|
+
"text": "number"
|
|
10908
|
+
}
|
|
10909
|
+
},
|
|
10910
|
+
{
|
|
10911
|
+
"name": "recordsPerPage",
|
|
10912
|
+
"type": {
|
|
10913
|
+
"text": "number"
|
|
10914
|
+
}
|
|
10915
|
+
},
|
|
10916
|
+
{
|
|
10917
|
+
"name": "totalRecords",
|
|
10918
|
+
"type": {
|
|
10919
|
+
"text": "number"
|
|
10920
|
+
}
|
|
10921
|
+
},
|
|
10922
|
+
{
|
|
10923
|
+
"name": "zeroBasedViewNumber",
|
|
10924
|
+
"default": "true"
|
|
10925
|
+
}
|
|
10926
|
+
],
|
|
10927
|
+
"inheritedFrom": {
|
|
10928
|
+
"name": "BaseServerSideDatasource",
|
|
10929
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10930
|
+
}
|
|
10931
|
+
},
|
|
10932
|
+
{
|
|
10933
|
+
"kind": "method",
|
|
10934
|
+
"name": "getCorrectRowCount",
|
|
10935
|
+
"privacy": "protected",
|
|
10936
|
+
"parameters": [
|
|
10937
|
+
{
|
|
10938
|
+
"name": "params",
|
|
10939
|
+
"type": {
|
|
10940
|
+
"text": "IServerSideGetRowsParams<any, any>"
|
|
10941
|
+
}
|
|
10942
|
+
}
|
|
10943
|
+
],
|
|
10944
|
+
"inheritedFrom": {
|
|
10945
|
+
"name": "BaseServerSideDatasource",
|
|
10946
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10947
|
+
}
|
|
10948
|
+
},
|
|
10949
|
+
{
|
|
10950
|
+
"kind": "field",
|
|
10951
|
+
"name": "isNotFirstViewNumber",
|
|
10952
|
+
"type": {
|
|
10953
|
+
"text": "boolean"
|
|
10954
|
+
},
|
|
10955
|
+
"privacy": "protected",
|
|
10956
|
+
"readonly": true,
|
|
10957
|
+
"inheritedFrom": {
|
|
10958
|
+
"name": "BaseServerSideDatasource",
|
|
10959
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10960
|
+
}
|
|
10961
|
+
}
|
|
10962
|
+
],
|
|
10963
|
+
"superclass": {
|
|
10964
|
+
"name": "BaseServerSideDatasource",
|
|
10965
|
+
"module": "/src/datasource/server-side.resource-base"
|
|
10966
|
+
}
|
|
10967
|
+
}
|
|
10968
|
+
],
|
|
10969
|
+
"exports": [
|
|
10970
|
+
{
|
|
10971
|
+
"kind": "js",
|
|
10972
|
+
"name": "DataserverServerSideDatasource",
|
|
10973
|
+
"declaration": {
|
|
10974
|
+
"name": "DataserverServerSideDatasource",
|
|
10975
|
+
"module": "src/datasource/server-side.resource-dataserver.ts"
|
|
10976
|
+
}
|
|
10977
|
+
}
|
|
10978
|
+
]
|
|
10979
|
+
},
|
|
10980
|
+
{
|
|
10981
|
+
"kind": "javascript-module",
|
|
10982
|
+
"path": "src/datasource/server-side.resource-reqrep.ts",
|
|
10983
|
+
"declarations": [
|
|
10984
|
+
{
|
|
10985
|
+
"kind": "class",
|
|
10986
|
+
"description": "The REQUEST_SERVER IServerSideDatasource implementation, used for SSRM (Server-Side Row Model) in the grid.",
|
|
10987
|
+
"name": "ReqRepServerSideDatasource",
|
|
10988
|
+
"members": [
|
|
10989
|
+
{
|
|
10990
|
+
"kind": "field",
|
|
10991
|
+
"name": "createReqRepRequestFunc",
|
|
10992
|
+
"type": {
|
|
10993
|
+
"text": "(existingParams?: any) => Promise<RequestServerResult>"
|
|
10994
|
+
}
|
|
10995
|
+
},
|
|
10996
|
+
{
|
|
10997
|
+
"kind": "method",
|
|
10998
|
+
"name": "getRows",
|
|
10999
|
+
"return": {
|
|
11000
|
+
"type": {
|
|
11001
|
+
"text": "void"
|
|
11002
|
+
}
|
|
11003
|
+
},
|
|
11004
|
+
"parameters": [
|
|
11005
|
+
{
|
|
11006
|
+
"name": "params",
|
|
11007
|
+
"type": {
|
|
11008
|
+
"text": "IServerSideGetRowsParams"
|
|
11009
|
+
}
|
|
11010
|
+
}
|
|
11011
|
+
],
|
|
11012
|
+
"inheritedFrom": {
|
|
11013
|
+
"name": "BaseServerSideDatasource",
|
|
11014
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11015
|
+
}
|
|
11016
|
+
},
|
|
11017
|
+
{
|
|
11018
|
+
"kind": "method",
|
|
11019
|
+
"name": "applyServerSideData",
|
|
11020
|
+
"privacy": "private",
|
|
11021
|
+
"parameters": [
|
|
11022
|
+
{
|
|
11023
|
+
"name": "params",
|
|
11024
|
+
"type": {
|
|
11025
|
+
"text": "IServerSideGetRowsParams"
|
|
11026
|
+
}
|
|
11027
|
+
},
|
|
11028
|
+
{
|
|
11029
|
+
"name": "result",
|
|
11030
|
+
"type": {
|
|
11031
|
+
"text": "RequestServerResult"
|
|
11032
|
+
}
|
|
11033
|
+
},
|
|
11034
|
+
{
|
|
11035
|
+
"name": "isLastView",
|
|
11036
|
+
"type": {
|
|
11037
|
+
"text": "boolean"
|
|
11038
|
+
}
|
|
11039
|
+
}
|
|
11040
|
+
]
|
|
11041
|
+
},
|
|
11042
|
+
{
|
|
11043
|
+
"kind": "method",
|
|
11044
|
+
"name": "getCorrectRowCount",
|
|
11045
|
+
"privacy": "protected",
|
|
11046
|
+
"parameters": [
|
|
11047
|
+
{
|
|
11048
|
+
"name": "params",
|
|
11049
|
+
"type": {
|
|
11050
|
+
"text": "IServerSideGetRowsParams"
|
|
11051
|
+
}
|
|
11052
|
+
}
|
|
11053
|
+
],
|
|
11054
|
+
"return": {
|
|
11055
|
+
"type": {
|
|
11056
|
+
"text": "number"
|
|
11057
|
+
}
|
|
11058
|
+
},
|
|
11059
|
+
"inheritedFrom": {
|
|
11060
|
+
"name": "BaseServerSideDatasource",
|
|
11061
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11062
|
+
}
|
|
11063
|
+
},
|
|
11064
|
+
{
|
|
11065
|
+
"kind": "method",
|
|
11066
|
+
"name": "handleCurrentStreamLoad",
|
|
11067
|
+
"privacy": "private",
|
|
11068
|
+
"return": {
|
|
11069
|
+
"type": {
|
|
11070
|
+
"text": "any[]"
|
|
11071
|
+
}
|
|
11072
|
+
},
|
|
11073
|
+
"parameters": [
|
|
11074
|
+
{
|
|
11075
|
+
"name": "reply",
|
|
11076
|
+
"type": {
|
|
11077
|
+
"text": "any[]"
|
|
11078
|
+
}
|
|
11079
|
+
}
|
|
11080
|
+
]
|
|
11081
|
+
},
|
|
11082
|
+
{
|
|
11083
|
+
"kind": "field",
|
|
11084
|
+
"name": "auth",
|
|
11085
|
+
"type": {
|
|
11086
|
+
"text": "Auth"
|
|
11087
|
+
},
|
|
11088
|
+
"inheritedFrom": {
|
|
11089
|
+
"name": "BaseServerSideDatasource",
|
|
11090
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11091
|
+
}
|
|
11092
|
+
},
|
|
11093
|
+
{
|
|
11094
|
+
"kind": "field",
|
|
11095
|
+
"name": "connect",
|
|
11096
|
+
"type": {
|
|
11097
|
+
"text": "Connect"
|
|
11098
|
+
},
|
|
11099
|
+
"inheritedFrom": {
|
|
11100
|
+
"name": "BaseServerSideDatasource",
|
|
11101
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11102
|
+
}
|
|
11103
|
+
},
|
|
11104
|
+
{
|
|
11105
|
+
"kind": "field",
|
|
11106
|
+
"name": "uuid",
|
|
11107
|
+
"type": {
|
|
11108
|
+
"text": "UUID"
|
|
11109
|
+
},
|
|
11110
|
+
"inheritedFrom": {
|
|
11111
|
+
"name": "BaseServerSideDatasource",
|
|
11112
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11113
|
+
}
|
|
11114
|
+
},
|
|
11115
|
+
{
|
|
11116
|
+
"kind": "field",
|
|
11117
|
+
"name": "rowId",
|
|
11118
|
+
"type": {
|
|
11119
|
+
"text": "string"
|
|
11120
|
+
},
|
|
11121
|
+
"privacy": "protected",
|
|
11122
|
+
"inheritedFrom": {
|
|
11123
|
+
"name": "BaseServerSideDatasource",
|
|
11124
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11125
|
+
}
|
|
11126
|
+
},
|
|
11127
|
+
{
|
|
11128
|
+
"kind": "field",
|
|
11129
|
+
"name": "rowData",
|
|
11130
|
+
"type": {
|
|
11131
|
+
"text": "Map<string, any>"
|
|
11132
|
+
},
|
|
11133
|
+
"privacy": "protected",
|
|
11134
|
+
"default": "new Map()",
|
|
11135
|
+
"inheritedFrom": {
|
|
11136
|
+
"name": "BaseServerSideDatasource",
|
|
11137
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11138
|
+
}
|
|
11139
|
+
},
|
|
11140
|
+
{
|
|
11141
|
+
"kind": "field",
|
|
11142
|
+
"name": "reloadResourceDataFunc",
|
|
11143
|
+
"type": {
|
|
11144
|
+
"text": "(params: DatasourceOptions) => Promise<void>"
|
|
11145
|
+
},
|
|
11146
|
+
"inheritedFrom": {
|
|
11147
|
+
"name": "BaseServerSideDatasource",
|
|
11148
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11149
|
+
}
|
|
11150
|
+
},
|
|
11151
|
+
{
|
|
11152
|
+
"kind": "field",
|
|
11153
|
+
"name": "resourceName",
|
|
11154
|
+
"type": {
|
|
11155
|
+
"text": "string"
|
|
11156
|
+
},
|
|
11157
|
+
"privacy": "protected",
|
|
11158
|
+
"inheritedFrom": {
|
|
11159
|
+
"name": "BaseServerSideDatasource",
|
|
11160
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11161
|
+
}
|
|
11162
|
+
},
|
|
11163
|
+
{
|
|
11164
|
+
"kind": "field",
|
|
11165
|
+
"name": "resourceParams",
|
|
11166
|
+
"type": {
|
|
11167
|
+
"text": "any"
|
|
11168
|
+
},
|
|
11169
|
+
"inheritedFrom": {
|
|
11170
|
+
"name": "BaseServerSideDatasource",
|
|
11171
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11172
|
+
}
|
|
11173
|
+
},
|
|
11174
|
+
{
|
|
11175
|
+
"kind": "field",
|
|
11176
|
+
"name": "resourceIndexes",
|
|
11177
|
+
"type": {
|
|
11178
|
+
"text": "Map<string, [string]>"
|
|
11179
|
+
},
|
|
11180
|
+
"privacy": "protected",
|
|
11181
|
+
"inheritedFrom": {
|
|
11182
|
+
"name": "BaseServerSideDatasource",
|
|
11183
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11184
|
+
}
|
|
11185
|
+
},
|
|
11186
|
+
{
|
|
11187
|
+
"kind": "field",
|
|
11188
|
+
"name": "resourceColDefs",
|
|
11189
|
+
"type": {
|
|
11190
|
+
"text": "MetadataDetail[]"
|
|
11191
|
+
},
|
|
11192
|
+
"privacy": "protected",
|
|
11193
|
+
"inheritedFrom": {
|
|
11194
|
+
"name": "BaseServerSideDatasource",
|
|
11195
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11196
|
+
}
|
|
11197
|
+
},
|
|
11198
|
+
{
|
|
11199
|
+
"kind": "field",
|
|
11200
|
+
"name": "maxRows",
|
|
11201
|
+
"type": {
|
|
11202
|
+
"text": "number"
|
|
11203
|
+
},
|
|
11204
|
+
"privacy": "protected",
|
|
11205
|
+
"inheritedFrom": {
|
|
11206
|
+
"name": "BaseServerSideDatasource",
|
|
11207
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11208
|
+
}
|
|
11209
|
+
},
|
|
11210
|
+
{
|
|
11211
|
+
"kind": "field",
|
|
11212
|
+
"name": "maxView",
|
|
11213
|
+
"type": {
|
|
11214
|
+
"text": "number"
|
|
11215
|
+
},
|
|
11216
|
+
"privacy": "protected",
|
|
11217
|
+
"inheritedFrom": {
|
|
11218
|
+
"name": "BaseServerSideDatasource",
|
|
11219
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11220
|
+
}
|
|
11221
|
+
},
|
|
11222
|
+
{
|
|
11223
|
+
"kind": "field",
|
|
11224
|
+
"name": "pagination",
|
|
11225
|
+
"type": {
|
|
11226
|
+
"text": "boolean"
|
|
11227
|
+
},
|
|
11228
|
+
"privacy": "protected",
|
|
11229
|
+
"inheritedFrom": {
|
|
11230
|
+
"name": "BaseServerSideDatasource",
|
|
11231
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11232
|
+
}
|
|
11233
|
+
},
|
|
11234
|
+
{
|
|
11235
|
+
"kind": "field",
|
|
11236
|
+
"name": "zeroBasedViewNumber",
|
|
11237
|
+
"type": {
|
|
11238
|
+
"text": "boolean"
|
|
11239
|
+
},
|
|
11240
|
+
"privacy": "protected",
|
|
11241
|
+
"inheritedFrom": {
|
|
11242
|
+
"name": "BaseServerSideDatasource",
|
|
11243
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11244
|
+
}
|
|
11245
|
+
},
|
|
11246
|
+
{
|
|
11247
|
+
"kind": "field",
|
|
11248
|
+
"name": "sourceRef",
|
|
11249
|
+
"type": {
|
|
11250
|
+
"text": "string"
|
|
11251
|
+
},
|
|
11252
|
+
"inheritedFrom": {
|
|
11253
|
+
"name": "BaseServerSideDatasource",
|
|
11254
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11255
|
+
}
|
|
11256
|
+
},
|
|
11257
|
+
{
|
|
11258
|
+
"kind": "field",
|
|
11259
|
+
"name": "isNewPageSize",
|
|
11260
|
+
"type": {
|
|
11261
|
+
"text": "boolean"
|
|
11262
|
+
},
|
|
11263
|
+
"inheritedFrom": {
|
|
11264
|
+
"name": "BaseServerSideDatasource",
|
|
11265
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11266
|
+
}
|
|
11267
|
+
},
|
|
11268
|
+
{
|
|
11269
|
+
"kind": "field",
|
|
11270
|
+
"name": "lastSuccessRowData",
|
|
11271
|
+
"type": {
|
|
11272
|
+
"text": "LoadSuccessParams"
|
|
11273
|
+
},
|
|
11274
|
+
"inheritedFrom": {
|
|
11275
|
+
"name": "BaseServerSideDatasource",
|
|
11276
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11277
|
+
}
|
|
11278
|
+
},
|
|
11279
|
+
{
|
|
11280
|
+
"kind": "field",
|
|
11281
|
+
"name": "moreRows",
|
|
11282
|
+
"type": {
|
|
11283
|
+
"text": "boolean"
|
|
11284
|
+
},
|
|
11285
|
+
"privacy": "protected",
|
|
11286
|
+
"default": "false",
|
|
11287
|
+
"inheritedFrom": {
|
|
11288
|
+
"name": "BaseServerSideDatasource",
|
|
11289
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11290
|
+
}
|
|
11291
|
+
},
|
|
11292
|
+
{
|
|
11293
|
+
"kind": "field",
|
|
11294
|
+
"name": "calculatedRowsCount",
|
|
11295
|
+
"type": {
|
|
11296
|
+
"text": "number"
|
|
11297
|
+
},
|
|
11298
|
+
"privacy": "protected",
|
|
11299
|
+
"default": "0",
|
|
11300
|
+
"inheritedFrom": {
|
|
11301
|
+
"name": "BaseServerSideDatasource",
|
|
11302
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11303
|
+
}
|
|
11304
|
+
},
|
|
11305
|
+
{
|
|
11306
|
+
"kind": "field",
|
|
11307
|
+
"name": "currentSequenceId",
|
|
11308
|
+
"type": {
|
|
11309
|
+
"text": "null"
|
|
11310
|
+
},
|
|
11311
|
+
"privacy": "protected",
|
|
11312
|
+
"default": "null",
|
|
11313
|
+
"inheritedFrom": {
|
|
11314
|
+
"name": "BaseServerSideDatasource",
|
|
11315
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11316
|
+
}
|
|
11317
|
+
},
|
|
11318
|
+
{
|
|
11319
|
+
"kind": "field",
|
|
11320
|
+
"name": "currentFilterModel",
|
|
11321
|
+
"type": {
|
|
11322
|
+
"text": "SetFilterModel"
|
|
11323
|
+
},
|
|
11324
|
+
"privacy": "protected",
|
|
11325
|
+
"inheritedFrom": {
|
|
11326
|
+
"name": "BaseServerSideDatasource",
|
|
11327
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11328
|
+
}
|
|
11329
|
+
},
|
|
11330
|
+
{
|
|
11331
|
+
"kind": "field",
|
|
11332
|
+
"name": "originalCriteriaMatch",
|
|
11333
|
+
"type": {
|
|
11334
|
+
"text": "string | string[]"
|
|
11335
|
+
},
|
|
11336
|
+
"privacy": "protected",
|
|
11337
|
+
"inheritedFrom": {
|
|
11338
|
+
"name": "BaseServerSideDatasource",
|
|
11339
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11340
|
+
}
|
|
11341
|
+
},
|
|
11342
|
+
{
|
|
11343
|
+
"kind": "field",
|
|
11344
|
+
"name": "currentSortModel",
|
|
11345
|
+
"type": {
|
|
11346
|
+
"text": "SortModelItem[]"
|
|
11347
|
+
},
|
|
11348
|
+
"privacy": "protected",
|
|
11349
|
+
"inheritedFrom": {
|
|
11350
|
+
"name": "BaseServerSideDatasource",
|
|
11351
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11352
|
+
}
|
|
11353
|
+
},
|
|
11354
|
+
{
|
|
11355
|
+
"kind": "method",
|
|
11356
|
+
"name": "setupFilteringAndSorting",
|
|
11357
|
+
"privacy": "protected",
|
|
11358
|
+
"parameters": [
|
|
11359
|
+
{
|
|
11360
|
+
"name": "params",
|
|
11361
|
+
"type": {
|
|
11362
|
+
"text": "IServerSideGetRowsParams"
|
|
11363
|
+
}
|
|
11364
|
+
}
|
|
11365
|
+
],
|
|
11366
|
+
"inheritedFrom": {
|
|
11367
|
+
"name": "BaseServerSideDatasource",
|
|
11368
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11369
|
+
}
|
|
11370
|
+
},
|
|
11371
|
+
{
|
|
11372
|
+
"kind": "method",
|
|
11373
|
+
"name": "destroy",
|
|
11374
|
+
"return": {
|
|
11375
|
+
"type": {
|
|
11376
|
+
"text": "void"
|
|
11377
|
+
}
|
|
9564
11378
|
},
|
|
9565
|
-
"fieldName": "fields",
|
|
9566
11379
|
"inheritedFrom": {
|
|
9567
|
-
"name": "
|
|
9568
|
-
"module": "src/datasource/base.
|
|
11380
|
+
"name": "BaseServerSideDatasource",
|
|
11381
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9569
11382
|
}
|
|
9570
11383
|
},
|
|
9571
11384
|
{
|
|
9572
|
-
"
|
|
9573
|
-
"
|
|
9574
|
-
|
|
11385
|
+
"kind": "method",
|
|
11386
|
+
"name": "refreshDatasource",
|
|
11387
|
+
"privacy": "protected",
|
|
11388
|
+
"return": {
|
|
11389
|
+
"type": {
|
|
11390
|
+
"text": "Promise<void>"
|
|
11391
|
+
}
|
|
9575
11392
|
},
|
|
9576
|
-
"
|
|
9577
|
-
|
|
11393
|
+
"parameters": [
|
|
11394
|
+
{
|
|
11395
|
+
"name": "params",
|
|
11396
|
+
"type": {
|
|
11397
|
+
"text": "IServerSideGetRowsParams"
|
|
11398
|
+
}
|
|
11399
|
+
}
|
|
11400
|
+
],
|
|
9578
11401
|
"inheritedFrom": {
|
|
9579
|
-
"name": "
|
|
9580
|
-
"module": "src/datasource/base.
|
|
11402
|
+
"name": "BaseServerSideDatasource",
|
|
11403
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9581
11404
|
}
|
|
9582
11405
|
},
|
|
9583
11406
|
{
|
|
9584
|
-
"
|
|
9585
|
-
"
|
|
9586
|
-
|
|
9587
|
-
|
|
9588
|
-
|
|
11407
|
+
"kind": "method",
|
|
11408
|
+
"name": "getOrderByAndToBeSortedColIds",
|
|
11409
|
+
"privacy": "protected",
|
|
11410
|
+
"parameters": [
|
|
11411
|
+
{
|
|
11412
|
+
"name": "map"
|
|
11413
|
+
},
|
|
11414
|
+
{
|
|
11415
|
+
"name": "searchValue"
|
|
11416
|
+
}
|
|
11417
|
+
],
|
|
9589
11418
|
"inheritedFrom": {
|
|
9590
|
-
"name": "
|
|
9591
|
-
"module": "src/datasource/base.
|
|
11419
|
+
"name": "BaseServerSideDatasource",
|
|
11420
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9592
11421
|
}
|
|
9593
11422
|
},
|
|
9594
11423
|
{
|
|
9595
|
-
"
|
|
9596
|
-
"
|
|
9597
|
-
|
|
11424
|
+
"kind": "method",
|
|
11425
|
+
"name": "buildCriteriaMatchFromFilters",
|
|
11426
|
+
"privacy": "protected",
|
|
11427
|
+
"return": {
|
|
11428
|
+
"type": {
|
|
11429
|
+
"text": "string"
|
|
11430
|
+
}
|
|
9598
11431
|
},
|
|
9599
|
-
"fieldName": "maxView",
|
|
9600
11432
|
"inheritedFrom": {
|
|
9601
|
-
"name": "
|
|
9602
|
-
"module": "src/datasource/base.
|
|
11433
|
+
"name": "BaseServerSideDatasource",
|
|
11434
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9603
11435
|
}
|
|
9604
11436
|
},
|
|
9605
11437
|
{
|
|
9606
|
-
"
|
|
9607
|
-
"
|
|
9608
|
-
|
|
11438
|
+
"kind": "method",
|
|
11439
|
+
"name": "criteriaFromFilters",
|
|
11440
|
+
"privacy": "protected",
|
|
11441
|
+
"return": {
|
|
11442
|
+
"type": {
|
|
11443
|
+
"text": "string[]"
|
|
11444
|
+
}
|
|
9609
11445
|
},
|
|
9610
|
-
"default": "false",
|
|
9611
|
-
"fieldName": "movingView",
|
|
9612
11446
|
"inheritedFrom": {
|
|
9613
|
-
"name": "
|
|
9614
|
-
"module": "src/datasource/base.
|
|
11447
|
+
"name": "BaseServerSideDatasource",
|
|
11448
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9615
11449
|
}
|
|
9616
11450
|
},
|
|
9617
11451
|
{
|
|
9618
|
-
"
|
|
9619
|
-
"
|
|
9620
|
-
|
|
9621
|
-
|
|
9622
|
-
|
|
11452
|
+
"kind": "method",
|
|
11453
|
+
"name": "getFiltersByType",
|
|
11454
|
+
"privacy": "protected",
|
|
11455
|
+
"parameters": [
|
|
11456
|
+
{
|
|
11457
|
+
"name": "filterType",
|
|
11458
|
+
"type": {
|
|
11459
|
+
"text": "string"
|
|
11460
|
+
}
|
|
11461
|
+
}
|
|
11462
|
+
],
|
|
9623
11463
|
"inheritedFrom": {
|
|
9624
|
-
"name": "
|
|
9625
|
-
"module": "src/datasource/base.
|
|
11464
|
+
"name": "BaseServerSideDatasource",
|
|
11465
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9626
11466
|
}
|
|
9627
11467
|
},
|
|
9628
11468
|
{
|
|
9629
|
-
"
|
|
9630
|
-
"
|
|
9631
|
-
|
|
9632
|
-
|
|
9633
|
-
|
|
11469
|
+
"kind": "method",
|
|
11470
|
+
"name": "getPageNumber",
|
|
11471
|
+
"privacy": "protected",
|
|
11472
|
+
"parameters": [
|
|
11473
|
+
{
|
|
11474
|
+
"name": "start",
|
|
11475
|
+
"type": {
|
|
11476
|
+
"text": "number"
|
|
11477
|
+
}
|
|
11478
|
+
},
|
|
11479
|
+
{
|
|
11480
|
+
"name": "recordsPerPage",
|
|
11481
|
+
"type": {
|
|
11482
|
+
"text": "number"
|
|
11483
|
+
}
|
|
11484
|
+
},
|
|
11485
|
+
{
|
|
11486
|
+
"name": "totalRecords",
|
|
11487
|
+
"type": {
|
|
11488
|
+
"text": "number"
|
|
11489
|
+
}
|
|
11490
|
+
},
|
|
11491
|
+
{
|
|
11492
|
+
"name": "zeroBasedViewNumber",
|
|
11493
|
+
"default": "true"
|
|
11494
|
+
}
|
|
11495
|
+
],
|
|
9634
11496
|
"inheritedFrom": {
|
|
9635
|
-
"name": "
|
|
9636
|
-
"module": "src/datasource/base.
|
|
11497
|
+
"name": "BaseServerSideDatasource",
|
|
11498
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9637
11499
|
}
|
|
9638
11500
|
},
|
|
9639
11501
|
{
|
|
9640
|
-
"
|
|
9641
|
-
"
|
|
9642
|
-
"
|
|
11502
|
+
"kind": "field",
|
|
11503
|
+
"name": "isNotFirstViewNumber",
|
|
11504
|
+
"type": {
|
|
11505
|
+
"text": "boolean"
|
|
11506
|
+
},
|
|
11507
|
+
"privacy": "protected",
|
|
11508
|
+
"readonly": true,
|
|
9643
11509
|
"inheritedFrom": {
|
|
9644
|
-
"name": "
|
|
9645
|
-
"module": "src/datasource/base.
|
|
11510
|
+
"name": "BaseServerSideDatasource",
|
|
11511
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9646
11512
|
}
|
|
9647
11513
|
}
|
|
9648
11514
|
],
|
|
9649
|
-
"mixins": [
|
|
9650
|
-
{
|
|
9651
|
-
"name": "LifecycleMixin",
|
|
9652
|
-
"package": "@genesislcap/foundation-utils"
|
|
9653
|
-
}
|
|
9654
|
-
],
|
|
9655
11515
|
"superclass": {
|
|
9656
|
-
"name": "
|
|
9657
|
-
"module": "/src/datasource/base
|
|
9658
|
-
},
|
|
9659
|
-
"tagName": "grid-pro-server-side-datasource",
|
|
9660
|
-
"customElement": true
|
|
9661
|
-
}
|
|
9662
|
-
],
|
|
9663
|
-
"exports": [
|
|
9664
|
-
{
|
|
9665
|
-
"kind": "js",
|
|
9666
|
-
"name": "StreamDatasource",
|
|
9667
|
-
"declaration": {
|
|
9668
|
-
"name": "StreamDatasource",
|
|
9669
|
-
"module": "src/datasource/server-side.datasource.ts"
|
|
9670
|
-
}
|
|
9671
|
-
},
|
|
9672
|
-
{
|
|
9673
|
-
"kind": "js",
|
|
9674
|
-
"name": "GridProServerSideDatasource",
|
|
9675
|
-
"declaration": {
|
|
9676
|
-
"name": "GridProServerSideDatasource",
|
|
9677
|
-
"module": "src/datasource/server-side.datasource.ts"
|
|
9678
|
-
}
|
|
9679
|
-
},
|
|
9680
|
-
{
|
|
9681
|
-
"kind": "custom-element-definition",
|
|
9682
|
-
"name": "grid-pro-server-side-datasource",
|
|
9683
|
-
"declaration": {
|
|
9684
|
-
"name": "GridProServerSideDatasource",
|
|
9685
|
-
"module": "src/datasource/server-side.datasource.ts"
|
|
11516
|
+
"name": "BaseServerSideDatasource",
|
|
11517
|
+
"module": "/src/datasource/server-side.resource-base"
|
|
9686
11518
|
}
|
|
9687
11519
|
}
|
|
9688
|
-
]
|
|
9689
|
-
},
|
|
9690
|
-
{
|
|
9691
|
-
"kind": "javascript-module",
|
|
9692
|
-
"path": "src/datasource/server-side.grid-definitions.ts",
|
|
9693
|
-
"declarations": [
|
|
9694
|
-
{
|
|
9695
|
-
"kind": "function",
|
|
9696
|
-
"name": "getServerSideFilterParamsByFieldType",
|
|
9697
|
-
"return": {
|
|
9698
|
-
"type": {
|
|
9699
|
-
"text": ""
|
|
9700
|
-
}
|
|
9701
|
-
},
|
|
9702
|
-
"parameters": [
|
|
9703
|
-
{
|
|
9704
|
-
"name": "type",
|
|
9705
|
-
"type": {
|
|
9706
|
-
"text": "string"
|
|
9707
|
-
},
|
|
9708
|
-
"description": "The type of the field/column"
|
|
9709
|
-
}
|
|
9710
|
-
],
|
|
9711
|
-
"description": "Returns the filter params based on the Grid Pro field/column type."
|
|
9712
|
-
}
|
|
9713
11520
|
],
|
|
9714
11521
|
"exports": [
|
|
9715
11522
|
{
|
|
9716
11523
|
"kind": "js",
|
|
9717
|
-
"name": "
|
|
11524
|
+
"name": "ReqRepServerSideDatasource",
|
|
9718
11525
|
"declaration": {
|
|
9719
|
-
"name": "
|
|
9720
|
-
"module": "src/datasource/server-side.
|
|
11526
|
+
"name": "ReqRepServerSideDatasource",
|
|
11527
|
+
"module": "src/datasource/server-side.resource-reqrep.ts"
|
|
9721
11528
|
}
|
|
9722
11529
|
}
|
|
9723
11530
|
]
|
|
@@ -10003,20 +11810,6 @@
|
|
|
10003
11810
|
"description": "The Genesis Datasource element, for CSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
10004
11811
|
"name": "GridProGenesisDatasource",
|
|
10005
11812
|
"members": [
|
|
10006
|
-
{
|
|
10007
|
-
"kind": "field",
|
|
10008
|
-
"name": "auth",
|
|
10009
|
-
"type": {
|
|
10010
|
-
"text": "Auth"
|
|
10011
|
-
}
|
|
10012
|
-
},
|
|
10013
|
-
{
|
|
10014
|
-
"kind": "field",
|
|
10015
|
-
"name": "datasource",
|
|
10016
|
-
"type": {
|
|
10017
|
-
"text": "Datasource"
|
|
10018
|
-
}
|
|
10019
|
-
},
|
|
10020
11813
|
{
|
|
10021
11814
|
"kind": "field",
|
|
10022
11815
|
"name": "applyFuncName",
|
|
@@ -10039,50 +11832,28 @@
|
|
|
10039
11832
|
"privacy": "protected",
|
|
10040
11833
|
"default": "'applyTransactionAsync'",
|
|
10041
11834
|
"inheritedFrom": {
|
|
10042
|
-
"name": "GridProBaseDatasource",
|
|
10043
|
-
"module": "src/datasource/base.datasource.ts"
|
|
10044
|
-
}
|
|
10045
|
-
},
|
|
10046
|
-
{
|
|
10047
|
-
"kind": "method",
|
|
10048
|
-
"name": "criteriaChanged",
|
|
10049
|
-
"parameters": [
|
|
10050
|
-
{
|
|
10051
|
-
"name": "oldCriteria",
|
|
10052
|
-
"type": {
|
|
10053
|
-
"text": "string"
|
|
10054
|
-
}
|
|
10055
|
-
},
|
|
10056
|
-
{
|
|
10057
|
-
"name": "newCriteria",
|
|
10058
|
-
"type": {
|
|
10059
|
-
"text": "string"
|
|
10060
|
-
}
|
|
10061
|
-
}
|
|
10062
|
-
]
|
|
10063
|
-
},
|
|
10064
|
-
{
|
|
10065
|
-
"kind": "field",
|
|
10066
|
-
"name": "pollingInterval",
|
|
10067
|
-
"type": {
|
|
10068
|
-
"text": "number"
|
|
10069
|
-
}
|
|
10070
|
-
},
|
|
10071
|
-
{
|
|
10072
|
-
"kind": "field",
|
|
10073
|
-
"name": "disablePolling",
|
|
10074
|
-
"type": {
|
|
10075
|
-
"text": "boolean"
|
|
10076
|
-
},
|
|
10077
|
-
"default": "false"
|
|
10078
|
-
},
|
|
10079
|
-
{
|
|
10080
|
-
"kind": "field",
|
|
10081
|
-
"name": "request",
|
|
10082
|
-
"type": {
|
|
10083
|
-
"text": "any"
|
|
11835
|
+
"name": "GridProBaseDatasource",
|
|
11836
|
+
"module": "src/datasource/base.datasource.ts"
|
|
10084
11837
|
}
|
|
10085
11838
|
},
|
|
11839
|
+
{
|
|
11840
|
+
"kind": "method",
|
|
11841
|
+
"name": "criteriaChanged",
|
|
11842
|
+
"parameters": [
|
|
11843
|
+
{
|
|
11844
|
+
"name": "oldCriteria",
|
|
11845
|
+
"type": {
|
|
11846
|
+
"text": "string"
|
|
11847
|
+
}
|
|
11848
|
+
},
|
|
11849
|
+
{
|
|
11850
|
+
"name": "newCriteria",
|
|
11851
|
+
"type": {
|
|
11852
|
+
"text": "string"
|
|
11853
|
+
}
|
|
11854
|
+
}
|
|
11855
|
+
]
|
|
11856
|
+
},
|
|
10086
11857
|
{
|
|
10087
11858
|
"kind": "method",
|
|
10088
11859
|
"name": "requestChanged",
|
|
@@ -10168,24 +11939,6 @@
|
|
|
10168
11939
|
"privacy": "private",
|
|
10169
11940
|
"default": "true"
|
|
10170
11941
|
},
|
|
10171
|
-
{
|
|
10172
|
-
"kind": "field",
|
|
10173
|
-
"name": "criteriaFromFilters",
|
|
10174
|
-
"type": {
|
|
10175
|
-
"text": "Map<string, string>"
|
|
10176
|
-
},
|
|
10177
|
-
"privacy": "private",
|
|
10178
|
-
"default": "new Map()"
|
|
10179
|
-
},
|
|
10180
|
-
{
|
|
10181
|
-
"kind": "field",
|
|
10182
|
-
"name": "update",
|
|
10183
|
-
"type": {
|
|
10184
|
-
"text": "BehaviorSubject<Map<string, string>>"
|
|
10185
|
-
},
|
|
10186
|
-
"privacy": "private",
|
|
10187
|
-
"default": "new BehaviorSubject(new Map())"
|
|
10188
|
-
},
|
|
10189
11942
|
{
|
|
10190
11943
|
"kind": "method",
|
|
10191
11944
|
"name": "deepClone",
|
|
@@ -10247,10 +12000,17 @@
|
|
|
10247
12000
|
"description": "Initializes the datasource.",
|
|
10248
12001
|
"privacy": "public"
|
|
10249
12002
|
},
|
|
12003
|
+
{
|
|
12004
|
+
"kind": "method",
|
|
12005
|
+
"name": "destroy",
|
|
12006
|
+
"description": "Destroys the datasource, resetting it to its initial state.",
|
|
12007
|
+
"privacy": "public"
|
|
12008
|
+
},
|
|
10250
12009
|
{
|
|
10251
12010
|
"kind": "method",
|
|
10252
12011
|
"name": "deinit",
|
|
10253
12012
|
"description": "Deinitialises the datasource, resetting it to its initial state.",
|
|
12013
|
+
"deprecated": "Use `destroy` instead",
|
|
10254
12014
|
"privacy": "public"
|
|
10255
12015
|
},
|
|
10256
12016
|
{
|
|
@@ -10258,7 +12018,7 @@
|
|
|
10258
12018
|
"name": "reset",
|
|
10259
12019
|
"description": "Resets the datasource to its initial state.",
|
|
10260
12020
|
"privacy": "public",
|
|
10261
|
-
"deprecated": "Use `
|
|
12021
|
+
"deprecated": "Use `destroy` instead"
|
|
10262
12022
|
},
|
|
10263
12023
|
{
|
|
10264
12024
|
"kind": "method",
|
|
@@ -10286,23 +12046,13 @@
|
|
|
10286
12046
|
"name": "handleErrors",
|
|
10287
12047
|
"parameters": [
|
|
10288
12048
|
{
|
|
10289
|
-
"name": "
|
|
12049
|
+
"name": "errors",
|
|
10290
12050
|
"type": {
|
|
10291
|
-
"text": "string"
|
|
12051
|
+
"text": "string | any[]"
|
|
10292
12052
|
}
|
|
10293
12053
|
}
|
|
10294
12054
|
]
|
|
10295
12055
|
},
|
|
10296
|
-
{
|
|
10297
|
-
"kind": "method",
|
|
10298
|
-
"name": "datasourceOptions",
|
|
10299
|
-
"privacy": "private",
|
|
10300
|
-
"return": {
|
|
10301
|
-
"type": {
|
|
10302
|
-
"text": "DatasourceOptions"
|
|
10303
|
-
}
|
|
10304
|
-
}
|
|
10305
|
-
},
|
|
10306
12056
|
{
|
|
10307
12057
|
"kind": "method",
|
|
10308
12058
|
"name": "handleStreamResult",
|
|
@@ -10355,16 +12105,6 @@
|
|
|
10355
12105
|
}
|
|
10356
12106
|
]
|
|
10357
12107
|
},
|
|
10358
|
-
{
|
|
10359
|
-
"kind": "method",
|
|
10360
|
-
"name": "buildCriteria",
|
|
10361
|
-
"privacy": "private",
|
|
10362
|
-
"return": {
|
|
10363
|
-
"type": {
|
|
10364
|
-
"text": "string"
|
|
10365
|
-
}
|
|
10366
|
-
}
|
|
10367
|
-
},
|
|
10368
12108
|
{
|
|
10369
12109
|
"kind": "method",
|
|
10370
12110
|
"name": "setFilter",
|
|
@@ -10382,7 +12122,11 @@
|
|
|
10382
12122
|
"text": "string"
|
|
10383
12123
|
}
|
|
10384
12124
|
}
|
|
10385
|
-
]
|
|
12125
|
+
],
|
|
12126
|
+
"inheritedFrom": {
|
|
12127
|
+
"name": "GenesisGridDatasourceElement",
|
|
12128
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12129
|
+
}
|
|
10386
12130
|
},
|
|
10387
12131
|
{
|
|
10388
12132
|
"kind": "method",
|
|
@@ -10395,7 +12139,11 @@
|
|
|
10395
12139
|
"text": "string"
|
|
10396
12140
|
}
|
|
10397
12141
|
}
|
|
10398
|
-
]
|
|
12142
|
+
],
|
|
12143
|
+
"inheritedFrom": {
|
|
12144
|
+
"name": "GenesisGridDatasourceElement",
|
|
12145
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12146
|
+
}
|
|
10399
12147
|
},
|
|
10400
12148
|
{
|
|
10401
12149
|
"kind": "method",
|
|
@@ -10750,6 +12498,17 @@
|
|
|
10750
12498
|
"module": "src/datasource/base.datasource.ts"
|
|
10751
12499
|
}
|
|
10752
12500
|
},
|
|
12501
|
+
{
|
|
12502
|
+
"kind": "field",
|
|
12503
|
+
"name": "datasource",
|
|
12504
|
+
"type": {
|
|
12505
|
+
"text": "Datasource"
|
|
12506
|
+
},
|
|
12507
|
+
"inheritedFrom": {
|
|
12508
|
+
"name": "GenesisGridDatasourceElement",
|
|
12509
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12510
|
+
}
|
|
12511
|
+
},
|
|
10753
12512
|
{
|
|
10754
12513
|
"kind": "field",
|
|
10755
12514
|
"name": "deferredGridOptions",
|
|
@@ -10886,6 +12645,64 @@
|
|
|
10886
12645
|
"module": "src/datasource/base.datasource.ts"
|
|
10887
12646
|
}
|
|
10888
12647
|
},
|
|
12648
|
+
{
|
|
12649
|
+
"kind": "field",
|
|
12650
|
+
"name": "viewNumber",
|
|
12651
|
+
"type": {
|
|
12652
|
+
"text": "number"
|
|
12653
|
+
},
|
|
12654
|
+
"inheritedFrom": {
|
|
12655
|
+
"name": "GenesisGridDatasourceElement",
|
|
12656
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12657
|
+
}
|
|
12658
|
+
},
|
|
12659
|
+
{
|
|
12660
|
+
"kind": "field",
|
|
12661
|
+
"name": "pollingInterval",
|
|
12662
|
+
"type": {
|
|
12663
|
+
"text": "number"
|
|
12664
|
+
},
|
|
12665
|
+
"inheritedFrom": {
|
|
12666
|
+
"name": "GenesisGridDatasourceElement",
|
|
12667
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12668
|
+
}
|
|
12669
|
+
},
|
|
12670
|
+
{
|
|
12671
|
+
"kind": "field",
|
|
12672
|
+
"name": "disablePolling",
|
|
12673
|
+
"type": {
|
|
12674
|
+
"text": "boolean"
|
|
12675
|
+
},
|
|
12676
|
+
"default": "false",
|
|
12677
|
+
"inheritedFrom": {
|
|
12678
|
+
"name": "GenesisGridDatasourceElement",
|
|
12679
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12680
|
+
}
|
|
12681
|
+
},
|
|
12682
|
+
{
|
|
12683
|
+
"kind": "field",
|
|
12684
|
+
"name": "request",
|
|
12685
|
+
"type": {
|
|
12686
|
+
"text": "any"
|
|
12687
|
+
},
|
|
12688
|
+
"inheritedFrom": {
|
|
12689
|
+
"name": "GenesisGridDatasourceElement",
|
|
12690
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12691
|
+
}
|
|
12692
|
+
},
|
|
12693
|
+
{
|
|
12694
|
+
"kind": "field",
|
|
12695
|
+
"name": "requestAutoSetup",
|
|
12696
|
+
"type": {
|
|
12697
|
+
"text": "boolean"
|
|
12698
|
+
},
|
|
12699
|
+
"default": "true",
|
|
12700
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
12701
|
+
"inheritedFrom": {
|
|
12702
|
+
"name": "GenesisGridDatasourceElement",
|
|
12703
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12704
|
+
}
|
|
12705
|
+
},
|
|
10889
12706
|
{
|
|
10890
12707
|
"kind": "field",
|
|
10891
12708
|
"name": "rowIdAttr",
|
|
@@ -10921,14 +12738,67 @@
|
|
|
10921
12738
|
"module": "src/datasource/base.datasource.ts"
|
|
10922
12739
|
}
|
|
10923
12740
|
},
|
|
12741
|
+
{
|
|
12742
|
+
"kind": "field",
|
|
12743
|
+
"name": "criteriaFromFilters",
|
|
12744
|
+
"type": {
|
|
12745
|
+
"text": "Map<string, string>"
|
|
12746
|
+
},
|
|
12747
|
+
"privacy": "protected",
|
|
12748
|
+
"default": "new Map()",
|
|
12749
|
+
"inheritedFrom": {
|
|
12750
|
+
"name": "GenesisGridDatasourceElement",
|
|
12751
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12752
|
+
}
|
|
12753
|
+
},
|
|
12754
|
+
{
|
|
12755
|
+
"kind": "field",
|
|
12756
|
+
"name": "update",
|
|
12757
|
+
"type": {
|
|
12758
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
12759
|
+
},
|
|
12760
|
+
"privacy": "protected",
|
|
12761
|
+
"default": "new BehaviorSubject(new Map())",
|
|
12762
|
+
"inheritedFrom": {
|
|
12763
|
+
"name": "GenesisGridDatasourceElement",
|
|
12764
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12765
|
+
}
|
|
12766
|
+
},
|
|
12767
|
+
{
|
|
12768
|
+
"kind": "method",
|
|
12769
|
+
"name": "datasourceOptions",
|
|
12770
|
+
"privacy": "protected",
|
|
12771
|
+
"return": {
|
|
12772
|
+
"type": {
|
|
12773
|
+
"text": "DatasourceOptions"
|
|
12774
|
+
}
|
|
12775
|
+
},
|
|
12776
|
+
"inheritedFrom": {
|
|
12777
|
+
"name": "GenesisGridDatasourceElement",
|
|
12778
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12779
|
+
}
|
|
12780
|
+
},
|
|
12781
|
+
{
|
|
12782
|
+
"kind": "method",
|
|
12783
|
+
"name": "buildCriteria",
|
|
12784
|
+
"privacy": "private",
|
|
12785
|
+
"return": {
|
|
12786
|
+
"type": {
|
|
12787
|
+
"text": "string"
|
|
12788
|
+
}
|
|
12789
|
+
},
|
|
12790
|
+
"inheritedFrom": {
|
|
12791
|
+
"name": "GenesisGridDatasourceElement",
|
|
12792
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12793
|
+
}
|
|
12794
|
+
},
|
|
10924
12795
|
{
|
|
10925
12796
|
"kind": "field",
|
|
10926
12797
|
"name": "isRequestServer",
|
|
10927
12798
|
"type": {
|
|
10928
12799
|
"text": "boolean"
|
|
10929
12800
|
},
|
|
10930
|
-
"
|
|
10931
|
-
"default": "false",
|
|
12801
|
+
"readonly": true,
|
|
10932
12802
|
"inheritedFrom": {
|
|
10933
12803
|
"name": "GenesisGridDatasourceElement",
|
|
10934
12804
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -11082,21 +12952,6 @@
|
|
|
11082
12952
|
}
|
|
11083
12953
|
],
|
|
11084
12954
|
"attributes": [
|
|
11085
|
-
{
|
|
11086
|
-
"name": "polling-interval",
|
|
11087
|
-
"type": {
|
|
11088
|
-
"text": "number"
|
|
11089
|
-
},
|
|
11090
|
-
"fieldName": "pollingInterval"
|
|
11091
|
-
},
|
|
11092
|
-
{
|
|
11093
|
-
"name": "disable-polling",
|
|
11094
|
-
"type": {
|
|
11095
|
-
"text": "boolean"
|
|
11096
|
-
},
|
|
11097
|
-
"default": "false",
|
|
11098
|
-
"fieldName": "disablePolling"
|
|
11099
|
-
},
|
|
11100
12955
|
{
|
|
11101
12956
|
"name": "restart-on-reconnection",
|
|
11102
12957
|
"type": {
|
|
@@ -11214,6 +13069,53 @@
|
|
|
11214
13069
|
"module": "src/datasource/base.datasource.ts"
|
|
11215
13070
|
}
|
|
11216
13071
|
},
|
|
13072
|
+
{
|
|
13073
|
+
"name": "view-number",
|
|
13074
|
+
"type": {
|
|
13075
|
+
"text": "number"
|
|
13076
|
+
},
|
|
13077
|
+
"fieldName": "viewNumber",
|
|
13078
|
+
"inheritedFrom": {
|
|
13079
|
+
"name": "GenesisGridDatasourceElement",
|
|
13080
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13081
|
+
}
|
|
13082
|
+
},
|
|
13083
|
+
{
|
|
13084
|
+
"name": "polling-interval",
|
|
13085
|
+
"type": {
|
|
13086
|
+
"text": "number"
|
|
13087
|
+
},
|
|
13088
|
+
"fieldName": "pollingInterval",
|
|
13089
|
+
"inheritedFrom": {
|
|
13090
|
+
"name": "GenesisGridDatasourceElement",
|
|
13091
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13092
|
+
}
|
|
13093
|
+
},
|
|
13094
|
+
{
|
|
13095
|
+
"name": "disable-polling",
|
|
13096
|
+
"type": {
|
|
13097
|
+
"text": "boolean"
|
|
13098
|
+
},
|
|
13099
|
+
"default": "false",
|
|
13100
|
+
"fieldName": "disablePolling",
|
|
13101
|
+
"inheritedFrom": {
|
|
13102
|
+
"name": "GenesisGridDatasourceElement",
|
|
13103
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13104
|
+
}
|
|
13105
|
+
},
|
|
13106
|
+
{
|
|
13107
|
+
"name": "request-auto-setup",
|
|
13108
|
+
"type": {
|
|
13109
|
+
"text": "boolean"
|
|
13110
|
+
},
|
|
13111
|
+
"default": "true",
|
|
13112
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
13113
|
+
"fieldName": "requestAutoSetup",
|
|
13114
|
+
"inheritedFrom": {
|
|
13115
|
+
"name": "GenesisGridDatasourceElement",
|
|
13116
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13117
|
+
}
|
|
13118
|
+
},
|
|
11217
13119
|
{
|
|
11218
13120
|
"name": "row-id",
|
|
11219
13121
|
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|