@genesislcap/grid-pro 15.24.2 → 15.25.0-FUI-2611.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +549 -44
- package/dist/dts/datasource/base.datasource.d.ts +70 -7
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/base.types.d.ts +27 -0
- package/dist/dts/datasource/base.types.d.ts.map +1 -1
- package/dist/dts/datasource/delivered-block.ledger.d.ts +32 -0
- package/dist/dts/datasource/delivered-block.ledger.d.ts.map +1 -0
- package/dist/dts/datasource/infinite.datasource.d.ts +33 -1
- package/dist/dts/datasource/infinite.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/infinite.resource.d.ts +75 -6
- package/dist/dts/datasource/infinite.resource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.datasource.d.ts +14 -4
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-base.d.ts +24 -0
- package/dist/dts/datasource/server-side.resource-base.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts +26 -0
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts.map +1 -1
- package/dist/dts/grid-pro-beta.d.ts +6 -0
- package/dist/dts/grid-pro-beta.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts +4 -0
- package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/react.d.ts +1 -1
- package/dist/esm/datasource/base.datasource.js +177 -23
- package/dist/esm/datasource/delivered-block.ledger.js +59 -0
- package/dist/esm/datasource/infinite.datasource.js +61 -17
- package/dist/esm/datasource/infinite.resource.js +81 -10
- package/dist/esm/datasource/server-side.datasource.js +73 -25
- package/dist/esm/datasource/server-side.resource-base.js +43 -0
- package/dist/esm/datasource/server-side.resource-dataserver.js +77 -17
- package/dist/esm/datasource/server-side.resource-reqrep.js +12 -0
- package/dist/esm/grid-pro-beta.js +20 -2
- package/dist/esm/grid-pro.js +4 -1
- package/dist/grid-pro.api.json +35 -35
- package/dist/grid-pro.d.ts +228 -17
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +6 -6
- package/package.json +13 -13
|
@@ -9539,6 +9539,13 @@
|
|
|
9539
9539
|
"description": "",
|
|
9540
9540
|
"name": "GridProBaseDatasource",
|
|
9541
9541
|
"members": [
|
|
9542
|
+
{
|
|
9543
|
+
"kind": "field",
|
|
9544
|
+
"name": "serializer",
|
|
9545
|
+
"type": {
|
|
9546
|
+
"text": "JSONSerializer"
|
|
9547
|
+
}
|
|
9548
|
+
},
|
|
9542
9549
|
{
|
|
9543
9550
|
"kind": "field",
|
|
9544
9551
|
"name": "dataSubWasLoggedOff",
|
|
@@ -9572,7 +9579,17 @@
|
|
|
9572
9579
|
"text": "TransactionData"
|
|
9573
9580
|
},
|
|
9574
9581
|
"privacy": "protected",
|
|
9575
|
-
"default": "{
|
|
9582
|
+
"default": "{ add: [], remove: [], update: [] }"
|
|
9583
|
+
},
|
|
9584
|
+
{
|
|
9585
|
+
"kind": "field",
|
|
9586
|
+
"name": "missingRowIdWarned",
|
|
9587
|
+
"type": {
|
|
9588
|
+
"text": "boolean"
|
|
9589
|
+
},
|
|
9590
|
+
"privacy": "private",
|
|
9591
|
+
"default": "false",
|
|
9592
|
+
"description": "So rows without a row id are warned about once per element, not once per block. @internal"
|
|
9576
9593
|
},
|
|
9577
9594
|
{
|
|
9578
9595
|
"kind": "field",
|
|
@@ -9692,6 +9709,36 @@
|
|
|
9692
9709
|
}
|
|
9693
9710
|
]
|
|
9694
9711
|
},
|
|
9712
|
+
{
|
|
9713
|
+
"kind": "method",
|
|
9714
|
+
"name": "emitTransaction",
|
|
9715
|
+
"privacy": "protected",
|
|
9716
|
+
"return": {
|
|
9717
|
+
"type": {
|
|
9718
|
+
"text": "void"
|
|
9719
|
+
}
|
|
9720
|
+
},
|
|
9721
|
+
"parameters": [
|
|
9722
|
+
{
|
|
9723
|
+
"name": "transaction",
|
|
9724
|
+
"type": {
|
|
9725
|
+
"text": "TransactionData | undefined"
|
|
9726
|
+
}
|
|
9727
|
+
}
|
|
9728
|
+
],
|
|
9729
|
+
"description": "Emits `datasource-data-changed` for `transaction` when it is non-empty. @internal"
|
|
9730
|
+
},
|
|
9731
|
+
{
|
|
9732
|
+
"kind": "method",
|
|
9733
|
+
"name": "emitPendingTransaction",
|
|
9734
|
+
"privacy": "protected",
|
|
9735
|
+
"return": {
|
|
9736
|
+
"type": {
|
|
9737
|
+
"text": "void"
|
|
9738
|
+
}
|
|
9739
|
+
},
|
|
9740
|
+
"description": "Emits `datasource-data-changed` for the current transaction when it is non-empty. @internal"
|
|
9741
|
+
},
|
|
9695
9742
|
{
|
|
9696
9743
|
"kind": "method",
|
|
9697
9744
|
"name": "mapTransaction",
|
|
@@ -11556,6 +11603,17 @@
|
|
|
11556
11603
|
"module": "src/datasource/base.datasource.ts"
|
|
11557
11604
|
}
|
|
11558
11605
|
},
|
|
11606
|
+
{
|
|
11607
|
+
"kind": "field",
|
|
11608
|
+
"name": "serializer",
|
|
11609
|
+
"type": {
|
|
11610
|
+
"text": "JSONSerializer"
|
|
11611
|
+
},
|
|
11612
|
+
"inheritedFrom": {
|
|
11613
|
+
"name": "GridProBaseDatasource",
|
|
11614
|
+
"module": "src/datasource/base.datasource.ts"
|
|
11615
|
+
}
|
|
11616
|
+
},
|
|
11559
11617
|
{
|
|
11560
11618
|
"kind": "field",
|
|
11561
11619
|
"name": "dataSubWasLoggedOff",
|
|
@@ -11581,6 +11639,20 @@
|
|
|
11581
11639
|
"module": "src/datasource/base.datasource.ts"
|
|
11582
11640
|
}
|
|
11583
11641
|
},
|
|
11642
|
+
{
|
|
11643
|
+
"kind": "field",
|
|
11644
|
+
"name": "missingRowIdWarned",
|
|
11645
|
+
"type": {
|
|
11646
|
+
"text": "boolean"
|
|
11647
|
+
},
|
|
11648
|
+
"privacy": "private",
|
|
11649
|
+
"default": "false",
|
|
11650
|
+
"description": "So rows without a row id are warned about once per element, not once per block. @internal",
|
|
11651
|
+
"inheritedFrom": {
|
|
11652
|
+
"name": "GridProBaseDatasource",
|
|
11653
|
+
"module": "src/datasource/base.datasource.ts"
|
|
11654
|
+
}
|
|
11655
|
+
},
|
|
11584
11656
|
{
|
|
11585
11657
|
"kind": "field",
|
|
11586
11658
|
"name": "connectionSub",
|
|
@@ -11677,6 +11749,44 @@
|
|
|
11677
11749
|
"module": "src/datasource/base.datasource.ts"
|
|
11678
11750
|
}
|
|
11679
11751
|
},
|
|
11752
|
+
{
|
|
11753
|
+
"kind": "method",
|
|
11754
|
+
"name": "emitTransaction",
|
|
11755
|
+
"privacy": "protected",
|
|
11756
|
+
"return": {
|
|
11757
|
+
"type": {
|
|
11758
|
+
"text": "void"
|
|
11759
|
+
}
|
|
11760
|
+
},
|
|
11761
|
+
"parameters": [
|
|
11762
|
+
{
|
|
11763
|
+
"name": "transaction",
|
|
11764
|
+
"type": {
|
|
11765
|
+
"text": "TransactionData | undefined"
|
|
11766
|
+
}
|
|
11767
|
+
}
|
|
11768
|
+
],
|
|
11769
|
+
"description": "Emits `datasource-data-changed` for `transaction` when it is non-empty. @internal",
|
|
11770
|
+
"inheritedFrom": {
|
|
11771
|
+
"name": "GridProBaseDatasource",
|
|
11772
|
+
"module": "src/datasource/base.datasource.ts"
|
|
11773
|
+
}
|
|
11774
|
+
},
|
|
11775
|
+
{
|
|
11776
|
+
"kind": "method",
|
|
11777
|
+
"name": "emitPendingTransaction",
|
|
11778
|
+
"privacy": "protected",
|
|
11779
|
+
"return": {
|
|
11780
|
+
"type": {
|
|
11781
|
+
"text": "void"
|
|
11782
|
+
}
|
|
11783
|
+
},
|
|
11784
|
+
"description": "Emits `datasource-data-changed` for the current transaction when it is non-empty. @internal",
|
|
11785
|
+
"inheritedFrom": {
|
|
11786
|
+
"name": "GridProBaseDatasource",
|
|
11787
|
+
"module": "src/datasource/base.datasource.ts"
|
|
11788
|
+
}
|
|
11789
|
+
},
|
|
11680
11790
|
{
|
|
11681
11791
|
"kind": "method",
|
|
11682
11792
|
"name": "mapTransaction",
|
|
@@ -12609,6 +12719,12 @@
|
|
|
12609
12719
|
"declarations": [],
|
|
12610
12720
|
"exports": []
|
|
12611
12721
|
},
|
|
12722
|
+
{
|
|
12723
|
+
"kind": "javascript-module",
|
|
12724
|
+
"path": "src/datasource/delivered-block.ledger.ts",
|
|
12725
|
+
"declarations": [],
|
|
12726
|
+
"exports": []
|
|
12727
|
+
},
|
|
12612
12728
|
{
|
|
12613
12729
|
"kind": "javascript-module",
|
|
12614
12730
|
"path": "src/datasource/error-handler.dialog.ts",
|
|
@@ -13014,6 +13130,15 @@
|
|
|
13014
13130
|
"privacy": "private",
|
|
13015
13131
|
"description": "Unsubscribes the commit-response listener behind `pollTriggerEvents`. @internal"
|
|
13016
13132
|
},
|
|
13133
|
+
{
|
|
13134
|
+
"kind": "field",
|
|
13135
|
+
"name": "maxBlocksInCache",
|
|
13136
|
+
"type": {
|
|
13137
|
+
"text": "number | undefined"
|
|
13138
|
+
},
|
|
13139
|
+
"privacy": "private",
|
|
13140
|
+
"description": "The `maxBlocksInCache` the grid was initialised with, so eviction can be mirrored. @internal"
|
|
13141
|
+
},
|
|
13017
13142
|
{
|
|
13018
13143
|
"kind": "method",
|
|
13019
13144
|
"name": "resourceNameChanged",
|
|
@@ -13097,17 +13222,6 @@
|
|
|
13097
13222
|
"module": "src/datasource/base.datasource.ts"
|
|
13098
13223
|
}
|
|
13099
13224
|
},
|
|
13100
|
-
{
|
|
13101
|
-
"kind": "method",
|
|
13102
|
-
"name": "clearRowData",
|
|
13103
|
-
"privacy": "private",
|
|
13104
|
-
"parameters": [
|
|
13105
|
-
{
|
|
13106
|
-
"name": "withColumnDefs",
|
|
13107
|
-
"default": "true"
|
|
13108
|
-
}
|
|
13109
|
-
]
|
|
13110
|
-
},
|
|
13111
13225
|
{
|
|
13112
13226
|
"kind": "method",
|
|
13113
13227
|
"name": "teardownCommitTriggeredRefresh",
|
|
@@ -13237,6 +13351,17 @@
|
|
|
13237
13351
|
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
13238
13352
|
}
|
|
13239
13353
|
},
|
|
13354
|
+
{
|
|
13355
|
+
"kind": "field",
|
|
13356
|
+
"name": "serializer",
|
|
13357
|
+
"type": {
|
|
13358
|
+
"text": "JSONSerializer"
|
|
13359
|
+
},
|
|
13360
|
+
"inheritedFrom": {
|
|
13361
|
+
"name": "GridProBaseDatasource",
|
|
13362
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13363
|
+
}
|
|
13364
|
+
},
|
|
13240
13365
|
{
|
|
13241
13366
|
"kind": "field",
|
|
13242
13367
|
"name": "dataSubWasLoggedOff",
|
|
@@ -13282,7 +13407,21 @@
|
|
|
13282
13407
|
"text": "TransactionData"
|
|
13283
13408
|
},
|
|
13284
13409
|
"privacy": "protected",
|
|
13285
|
-
"default": "{
|
|
13410
|
+
"default": "{ add: [], remove: [], update: [] }",
|
|
13411
|
+
"inheritedFrom": {
|
|
13412
|
+
"name": "GridProBaseDatasource",
|
|
13413
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13414
|
+
}
|
|
13415
|
+
},
|
|
13416
|
+
{
|
|
13417
|
+
"kind": "field",
|
|
13418
|
+
"name": "missingRowIdWarned",
|
|
13419
|
+
"type": {
|
|
13420
|
+
"text": "boolean"
|
|
13421
|
+
},
|
|
13422
|
+
"privacy": "private",
|
|
13423
|
+
"default": "false",
|
|
13424
|
+
"description": "So rows without a row id are warned about once per element, not once per block. @internal",
|
|
13286
13425
|
"inheritedFrom": {
|
|
13287
13426
|
"name": "GridProBaseDatasource",
|
|
13288
13427
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13442,6 +13581,44 @@
|
|
|
13442
13581
|
"module": "src/datasource/base.datasource.ts"
|
|
13443
13582
|
}
|
|
13444
13583
|
},
|
|
13584
|
+
{
|
|
13585
|
+
"kind": "method",
|
|
13586
|
+
"name": "emitTransaction",
|
|
13587
|
+
"privacy": "protected",
|
|
13588
|
+
"return": {
|
|
13589
|
+
"type": {
|
|
13590
|
+
"text": "void"
|
|
13591
|
+
}
|
|
13592
|
+
},
|
|
13593
|
+
"parameters": [
|
|
13594
|
+
{
|
|
13595
|
+
"name": "transaction",
|
|
13596
|
+
"type": {
|
|
13597
|
+
"text": "TransactionData | undefined"
|
|
13598
|
+
}
|
|
13599
|
+
}
|
|
13600
|
+
],
|
|
13601
|
+
"description": "Emits `datasource-data-changed` for `transaction` when it is non-empty. @internal",
|
|
13602
|
+
"inheritedFrom": {
|
|
13603
|
+
"name": "GridProBaseDatasource",
|
|
13604
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13605
|
+
}
|
|
13606
|
+
},
|
|
13607
|
+
{
|
|
13608
|
+
"kind": "method",
|
|
13609
|
+
"name": "emitPendingTransaction",
|
|
13610
|
+
"privacy": "protected",
|
|
13611
|
+
"return": {
|
|
13612
|
+
"type": {
|
|
13613
|
+
"text": "void"
|
|
13614
|
+
}
|
|
13615
|
+
},
|
|
13616
|
+
"description": "Emits `datasource-data-changed` for the current transaction when it is non-empty. @internal",
|
|
13617
|
+
"inheritedFrom": {
|
|
13618
|
+
"name": "GridProBaseDatasource",
|
|
13619
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13620
|
+
}
|
|
13621
|
+
},
|
|
13445
13622
|
{
|
|
13446
13623
|
"kind": "method",
|
|
13447
13624
|
"name": "mapTransaction",
|
|
@@ -14143,6 +14320,14 @@
|
|
|
14143
14320
|
"description": "Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`",
|
|
14144
14321
|
"name": "datasource-schema-updated"
|
|
14145
14322
|
},
|
|
14323
|
+
{
|
|
14324
|
+
"description": "Fired when rows are delivered to the grid, a DATASERVER push changes them, or a re-read no longer returns them; `add` are rows the grid did not hold before, `update` are held rows whose content changed, `remove` carries the row id. detail: `DataChangedEventDetail`",
|
|
14325
|
+
"name": "datasource-data-changed",
|
|
14326
|
+
"inheritedFrom": {
|
|
14327
|
+
"name": "GenesisGridDatasourceElement",
|
|
14328
|
+
"module": "src/datasource/base.datasource.ts"
|
|
14329
|
+
}
|
|
14330
|
+
},
|
|
14146
14331
|
{
|
|
14147
14332
|
"description": "Fired to attach or clear the infinite row model datasource. detail: `SetInfiniteDatasourceEventDetail`",
|
|
14148
14333
|
"name": "set-infinite-datasource"
|
|
@@ -14164,7 +14349,7 @@
|
|
|
14164
14349
|
"name": "cache-filter-config"
|
|
14165
14350
|
},
|
|
14166
14351
|
{
|
|
14167
|
-
"description": "Fired when
|
|
14352
|
+
"description": "Fired when the grid drops every row it held (reload, filter or sort change, destroy); `includeSchema` says whether the columns went too. detail: `DataClearedEventDetail`",
|
|
14168
14353
|
"name": "datasource-data-cleared"
|
|
14169
14354
|
},
|
|
14170
14355
|
{
|
|
@@ -14186,14 +14371,6 @@
|
|
|
14186
14371
|
"name": "GenesisGridDatasourceElement",
|
|
14187
14372
|
"module": "src/datasource/base.datasource.ts"
|
|
14188
14373
|
}
|
|
14189
|
-
},
|
|
14190
|
-
{
|
|
14191
|
-
"description": "Fired when row data changes from applied stream transactions. detail: `DataChangedEventDetail`",
|
|
14192
|
-
"name": "datasource-data-changed",
|
|
14193
|
-
"inheritedFrom": {
|
|
14194
|
-
"name": "GenesisGridDatasourceElement",
|
|
14195
|
-
"module": "src/datasource/base.datasource.ts"
|
|
14196
|
-
}
|
|
14197
14374
|
}
|
|
14198
14375
|
],
|
|
14199
14376
|
"mixins": [
|
|
@@ -14557,6 +14734,16 @@
|
|
|
14557
14734
|
},
|
|
14558
14735
|
"privacy": "private"
|
|
14559
14736
|
},
|
|
14737
|
+
{
|
|
14738
|
+
"kind": "field",
|
|
14739
|
+
"name": "ledger",
|
|
14740
|
+
"type": {
|
|
14741
|
+
"text": "DeliveredBlockLedger"
|
|
14742
|
+
},
|
|
14743
|
+
"privacy": "private",
|
|
14744
|
+
"description": "Which rows each delivered block carried, for withdrawal and eviction reporting. @internal",
|
|
14745
|
+
"default": "new DeliveredBlockLedger(options.rowId, options.maxBlocksInCache)"
|
|
14746
|
+
},
|
|
14560
14747
|
{
|
|
14561
14748
|
"kind": "field",
|
|
14562
14749
|
"name": "HTTP_NOT_FOUND",
|
|
@@ -14765,6 +14952,36 @@
|
|
|
14765
14952
|
],
|
|
14766
14953
|
"description": "Called by AG Grid when more rows are needed.\nImplements the IDatasource.getRows method."
|
|
14767
14954
|
},
|
|
14955
|
+
{
|
|
14956
|
+
"kind": "method",
|
|
14957
|
+
"name": "getDataserverRows",
|
|
14958
|
+
"privacy": "private",
|
|
14959
|
+
"return": {
|
|
14960
|
+
"type": {
|
|
14961
|
+
"text": "void"
|
|
14962
|
+
}
|
|
14963
|
+
},
|
|
14964
|
+
"parameters": [
|
|
14965
|
+
{
|
|
14966
|
+
"name": "params",
|
|
14967
|
+
"type": {
|
|
14968
|
+
"text": "IGetRowsParams"
|
|
14969
|
+
}
|
|
14970
|
+
},
|
|
14971
|
+
{
|
|
14972
|
+
"name": "criteria",
|
|
14973
|
+
"type": {
|
|
14974
|
+
"text": "string"
|
|
14975
|
+
}
|
|
14976
|
+
},
|
|
14977
|
+
{
|
|
14978
|
+
"name": "sortConfig",
|
|
14979
|
+
"type": {
|
|
14980
|
+
"text": "{ orderBy: string | null; reverse: boolean }"
|
|
14981
|
+
}
|
|
14982
|
+
}
|
|
14983
|
+
]
|
|
14984
|
+
},
|
|
14768
14985
|
{
|
|
14769
14986
|
"kind": "method",
|
|
14770
14987
|
"name": "cacheIndexOf",
|
|
@@ -14808,7 +15025,8 @@
|
|
|
14808
15025
|
"type": {
|
|
14809
15026
|
"text": "void"
|
|
14810
15027
|
}
|
|
14811
|
-
}
|
|
15028
|
+
},
|
|
15029
|
+
"description": "Drops the subscription and the cached rows."
|
|
14812
15030
|
},
|
|
14813
15031
|
{
|
|
14814
15032
|
"kind": "field",
|
|
@@ -14817,6 +15035,22 @@
|
|
|
14817
15035
|
{
|
|
14818
15036
|
"kind": "field",
|
|
14819
15037
|
"name": "onRowsUpdatedFunc"
|
|
15038
|
+
},
|
|
15039
|
+
{
|
|
15040
|
+
"kind": "field",
|
|
15041
|
+
"name": "onRowsDeliveredFunc"
|
|
15042
|
+
},
|
|
15043
|
+
{
|
|
15044
|
+
"kind": "field",
|
|
15045
|
+
"name": "onRowsWithdrawnFunc"
|
|
15046
|
+
},
|
|
15047
|
+
{
|
|
15048
|
+
"kind": "field",
|
|
15049
|
+
"name": "onRowsEvictedFunc"
|
|
15050
|
+
},
|
|
15051
|
+
{
|
|
15052
|
+
"kind": "field",
|
|
15053
|
+
"name": "onRowCacheResetFunc"
|
|
14820
15054
|
}
|
|
14821
15055
|
]
|
|
14822
15056
|
}
|
|
@@ -15135,13 +15369,6 @@
|
|
|
15135
15369
|
"description": "A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
15136
15370
|
"name": "GridProServerSideDatasource",
|
|
15137
15371
|
"members": [
|
|
15138
|
-
{
|
|
15139
|
-
"kind": "field",
|
|
15140
|
-
"name": "serializer",
|
|
15141
|
-
"type": {
|
|
15142
|
-
"text": "JSONSerializer"
|
|
15143
|
-
}
|
|
15144
|
-
},
|
|
15145
15372
|
{
|
|
15146
15373
|
"kind": "field",
|
|
15147
15374
|
"name": "pollingDatasource",
|
|
@@ -15297,17 +15524,6 @@
|
|
|
15297
15524
|
"module": "src/datasource/base.datasource.ts"
|
|
15298
15525
|
}
|
|
15299
15526
|
},
|
|
15300
|
-
{
|
|
15301
|
-
"kind": "method",
|
|
15302
|
-
"name": "clearRowData",
|
|
15303
|
-
"privacy": "private",
|
|
15304
|
-
"parameters": [
|
|
15305
|
-
{
|
|
15306
|
-
"name": "withColumnDefs",
|
|
15307
|
-
"default": "true"
|
|
15308
|
-
}
|
|
15309
|
-
]
|
|
15310
|
-
},
|
|
15311
15527
|
{
|
|
15312
15528
|
"kind": "method",
|
|
15313
15529
|
"name": "createReqRepRequest",
|
|
@@ -15455,6 +15671,17 @@
|
|
|
15455
15671
|
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
15456
15672
|
}
|
|
15457
15673
|
},
|
|
15674
|
+
{
|
|
15675
|
+
"kind": "field",
|
|
15676
|
+
"name": "serializer",
|
|
15677
|
+
"type": {
|
|
15678
|
+
"text": "JSONSerializer"
|
|
15679
|
+
},
|
|
15680
|
+
"inheritedFrom": {
|
|
15681
|
+
"name": "GridProBaseDatasource",
|
|
15682
|
+
"module": "src/datasource/base.datasource.ts"
|
|
15683
|
+
}
|
|
15684
|
+
},
|
|
15458
15685
|
{
|
|
15459
15686
|
"kind": "field",
|
|
15460
15687
|
"name": "dataSubWasLoggedOff",
|
|
@@ -15500,7 +15727,21 @@
|
|
|
15500
15727
|
"text": "TransactionData"
|
|
15501
15728
|
},
|
|
15502
15729
|
"privacy": "protected",
|
|
15503
|
-
"default": "{
|
|
15730
|
+
"default": "{ add: [], remove: [], update: [] }",
|
|
15731
|
+
"inheritedFrom": {
|
|
15732
|
+
"name": "GridProBaseDatasource",
|
|
15733
|
+
"module": "src/datasource/base.datasource.ts"
|
|
15734
|
+
}
|
|
15735
|
+
},
|
|
15736
|
+
{
|
|
15737
|
+
"kind": "field",
|
|
15738
|
+
"name": "missingRowIdWarned",
|
|
15739
|
+
"type": {
|
|
15740
|
+
"text": "boolean"
|
|
15741
|
+
},
|
|
15742
|
+
"privacy": "private",
|
|
15743
|
+
"default": "false",
|
|
15744
|
+
"description": "So rows without a row id are warned about once per element, not once per block. @internal",
|
|
15504
15745
|
"inheritedFrom": {
|
|
15505
15746
|
"name": "GridProBaseDatasource",
|
|
15506
15747
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -15660,6 +15901,44 @@
|
|
|
15660
15901
|
"module": "src/datasource/base.datasource.ts"
|
|
15661
15902
|
}
|
|
15662
15903
|
},
|
|
15904
|
+
{
|
|
15905
|
+
"kind": "method",
|
|
15906
|
+
"name": "emitTransaction",
|
|
15907
|
+
"privacy": "protected",
|
|
15908
|
+
"return": {
|
|
15909
|
+
"type": {
|
|
15910
|
+
"text": "void"
|
|
15911
|
+
}
|
|
15912
|
+
},
|
|
15913
|
+
"parameters": [
|
|
15914
|
+
{
|
|
15915
|
+
"name": "transaction",
|
|
15916
|
+
"type": {
|
|
15917
|
+
"text": "TransactionData | undefined"
|
|
15918
|
+
}
|
|
15919
|
+
}
|
|
15920
|
+
],
|
|
15921
|
+
"description": "Emits `datasource-data-changed` for `transaction` when it is non-empty. @internal",
|
|
15922
|
+
"inheritedFrom": {
|
|
15923
|
+
"name": "GridProBaseDatasource",
|
|
15924
|
+
"module": "src/datasource/base.datasource.ts"
|
|
15925
|
+
}
|
|
15926
|
+
},
|
|
15927
|
+
{
|
|
15928
|
+
"kind": "method",
|
|
15929
|
+
"name": "emitPendingTransaction",
|
|
15930
|
+
"privacy": "protected",
|
|
15931
|
+
"return": {
|
|
15932
|
+
"type": {
|
|
15933
|
+
"text": "void"
|
|
15934
|
+
}
|
|
15935
|
+
},
|
|
15936
|
+
"description": "Emits `datasource-data-changed` for the current transaction when it is non-empty. @internal",
|
|
15937
|
+
"inheritedFrom": {
|
|
15938
|
+
"name": "GridProBaseDatasource",
|
|
15939
|
+
"module": "src/datasource/base.datasource.ts"
|
|
15940
|
+
}
|
|
15941
|
+
},
|
|
15663
15942
|
{
|
|
15664
15943
|
"kind": "method",
|
|
15665
15944
|
"name": "mapTransaction",
|
|
@@ -16388,7 +16667,7 @@
|
|
|
16388
16667
|
}
|
|
16389
16668
|
},
|
|
16390
16669
|
{
|
|
16391
|
-
"description": "Fired when
|
|
16670
|
+
"description": "Fired when rows are delivered to the grid, a live stream pushes a change, a poll detects one, or a re-read no longer returns a row; `add` are rows the grid did not hold before, `update` are held rows whose content changed, `remove` carries the row id. detail: `DataChangedEventDetail`",
|
|
16392
16671
|
"name": "datasource-data-changed",
|
|
16393
16672
|
"inheritedFrom": {
|
|
16394
16673
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -16436,7 +16715,7 @@
|
|
|
16436
16715
|
"name": "datasource-filters-restored"
|
|
16437
16716
|
},
|
|
16438
16717
|
{
|
|
16439
|
-
"description": "Fired when
|
|
16718
|
+
"description": "Fired when the grid drops every row it held (reload, filter or sort change, destroy); `includeSchema` says whether the columns went too. detail: `DataClearedEventDetail`",
|
|
16440
16719
|
"name": "datasource-data-cleared"
|
|
16441
16720
|
},
|
|
16442
16721
|
{
|
|
@@ -16812,6 +17091,40 @@
|
|
|
16812
17091
|
},
|
|
16813
17092
|
"privacy": "protected"
|
|
16814
17093
|
},
|
|
17094
|
+
{
|
|
17095
|
+
"kind": "field",
|
|
17096
|
+
"name": "onRowsDeliveredFunc",
|
|
17097
|
+
"type": {
|
|
17098
|
+
"text": "(rows: any[]) => void | undefined"
|
|
17099
|
+
},
|
|
17100
|
+
"privacy": "protected"
|
|
17101
|
+
},
|
|
17102
|
+
{
|
|
17103
|
+
"kind": "field",
|
|
17104
|
+
"name": "onRowsWithdrawnFunc",
|
|
17105
|
+
"type": {
|
|
17106
|
+
"text": "(rowIds: string[]) => void | undefined"
|
|
17107
|
+
},
|
|
17108
|
+
"privacy": "protected"
|
|
17109
|
+
},
|
|
17110
|
+
{
|
|
17111
|
+
"kind": "field",
|
|
17112
|
+
"name": "onRowsEvictedFunc",
|
|
17113
|
+
"type": {
|
|
17114
|
+
"text": "(rowIds: string[]) => void | undefined"
|
|
17115
|
+
},
|
|
17116
|
+
"privacy": "protected"
|
|
17117
|
+
},
|
|
17118
|
+
{
|
|
17119
|
+
"kind": "field",
|
|
17120
|
+
"name": "ledger",
|
|
17121
|
+
"type": {
|
|
17122
|
+
"text": "DeliveredBlockLedger"
|
|
17123
|
+
},
|
|
17124
|
+
"privacy": "protected",
|
|
17125
|
+
"description": "Which rows each delivered block carried, for withdrawal and eviction reporting. @internal",
|
|
17126
|
+
"default": "new DeliveredBlockLedger(options.rowId, options.maxBlocksInCache)"
|
|
17127
|
+
},
|
|
16815
17128
|
{
|
|
16816
17129
|
"kind": "field",
|
|
16817
17130
|
"name": "resourceName",
|
|
@@ -17402,6 +17715,35 @@
|
|
|
17402
17715
|
}
|
|
17403
17716
|
]
|
|
17404
17717
|
},
|
|
17718
|
+
{
|
|
17719
|
+
"kind": "method",
|
|
17720
|
+
"name": "cacheIndexOf",
|
|
17721
|
+
"privacy": "private",
|
|
17722
|
+
"return": {
|
|
17723
|
+
"type": {
|
|
17724
|
+
"text": "number"
|
|
17725
|
+
}
|
|
17726
|
+
},
|
|
17727
|
+
"parameters": [
|
|
17728
|
+
{
|
|
17729
|
+
"name": "rows",
|
|
17730
|
+
"type": {
|
|
17731
|
+
"text": "Map<string, any>"
|
|
17732
|
+
}
|
|
17733
|
+
},
|
|
17734
|
+
{
|
|
17735
|
+
"name": "key",
|
|
17736
|
+
"type": {
|
|
17737
|
+
"text": "string"
|
|
17738
|
+
}
|
|
17739
|
+
}
|
|
17740
|
+
],
|
|
17741
|
+
"description": "Position of a key in the cache's insertion order. @internal"
|
|
17742
|
+
},
|
|
17743
|
+
{
|
|
17744
|
+
"kind": "field",
|
|
17745
|
+
"name": "gridReceivesLiveUpdates"
|
|
17746
|
+
},
|
|
17405
17747
|
{
|
|
17406
17748
|
"kind": "field",
|
|
17407
17749
|
"name": "auth",
|
|
@@ -17505,6 +17847,56 @@
|
|
|
17505
17847
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
17506
17848
|
}
|
|
17507
17849
|
},
|
|
17850
|
+
{
|
|
17851
|
+
"kind": "field",
|
|
17852
|
+
"name": "onRowsDeliveredFunc",
|
|
17853
|
+
"type": {
|
|
17854
|
+
"text": "(rows: any[]) => void | undefined"
|
|
17855
|
+
},
|
|
17856
|
+
"privacy": "protected",
|
|
17857
|
+
"inheritedFrom": {
|
|
17858
|
+
"name": "BaseServerSideDatasource",
|
|
17859
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
17860
|
+
}
|
|
17861
|
+
},
|
|
17862
|
+
{
|
|
17863
|
+
"kind": "field",
|
|
17864
|
+
"name": "onRowsWithdrawnFunc",
|
|
17865
|
+
"type": {
|
|
17866
|
+
"text": "(rowIds: string[]) => void | undefined"
|
|
17867
|
+
},
|
|
17868
|
+
"privacy": "protected",
|
|
17869
|
+
"inheritedFrom": {
|
|
17870
|
+
"name": "BaseServerSideDatasource",
|
|
17871
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
17872
|
+
}
|
|
17873
|
+
},
|
|
17874
|
+
{
|
|
17875
|
+
"kind": "field",
|
|
17876
|
+
"name": "onRowsEvictedFunc",
|
|
17877
|
+
"type": {
|
|
17878
|
+
"text": "(rowIds: string[]) => void | undefined"
|
|
17879
|
+
},
|
|
17880
|
+
"privacy": "protected",
|
|
17881
|
+
"inheritedFrom": {
|
|
17882
|
+
"name": "BaseServerSideDatasource",
|
|
17883
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
17884
|
+
}
|
|
17885
|
+
},
|
|
17886
|
+
{
|
|
17887
|
+
"kind": "field",
|
|
17888
|
+
"name": "ledger",
|
|
17889
|
+
"type": {
|
|
17890
|
+
"text": "DeliveredBlockLedger"
|
|
17891
|
+
},
|
|
17892
|
+
"privacy": "protected",
|
|
17893
|
+
"description": "Which rows each delivered block carried, for withdrawal and eviction reporting. @internal",
|
|
17894
|
+
"default": "new DeliveredBlockLedger(options.rowId, options.maxBlocksInCache)",
|
|
17895
|
+
"inheritedFrom": {
|
|
17896
|
+
"name": "BaseServerSideDatasource",
|
|
17897
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
17898
|
+
}
|
|
17899
|
+
},
|
|
17508
17900
|
{
|
|
17509
17901
|
"kind": "field",
|
|
17510
17902
|
"name": "resourceName",
|
|
@@ -18427,6 +18819,56 @@
|
|
|
18427
18819
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
18428
18820
|
}
|
|
18429
18821
|
},
|
|
18822
|
+
{
|
|
18823
|
+
"kind": "field",
|
|
18824
|
+
"name": "onRowsDeliveredFunc",
|
|
18825
|
+
"type": {
|
|
18826
|
+
"text": "(rows: any[]) => void | undefined"
|
|
18827
|
+
},
|
|
18828
|
+
"privacy": "protected",
|
|
18829
|
+
"inheritedFrom": {
|
|
18830
|
+
"name": "BaseServerSideDatasource",
|
|
18831
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
18832
|
+
}
|
|
18833
|
+
},
|
|
18834
|
+
{
|
|
18835
|
+
"kind": "field",
|
|
18836
|
+
"name": "onRowsWithdrawnFunc",
|
|
18837
|
+
"type": {
|
|
18838
|
+
"text": "(rowIds: string[]) => void | undefined"
|
|
18839
|
+
},
|
|
18840
|
+
"privacy": "protected",
|
|
18841
|
+
"inheritedFrom": {
|
|
18842
|
+
"name": "BaseServerSideDatasource",
|
|
18843
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
18844
|
+
}
|
|
18845
|
+
},
|
|
18846
|
+
{
|
|
18847
|
+
"kind": "field",
|
|
18848
|
+
"name": "onRowsEvictedFunc",
|
|
18849
|
+
"type": {
|
|
18850
|
+
"text": "(rowIds: string[]) => void | undefined"
|
|
18851
|
+
},
|
|
18852
|
+
"privacy": "protected",
|
|
18853
|
+
"inheritedFrom": {
|
|
18854
|
+
"name": "BaseServerSideDatasource",
|
|
18855
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
18856
|
+
}
|
|
18857
|
+
},
|
|
18858
|
+
{
|
|
18859
|
+
"kind": "field",
|
|
18860
|
+
"name": "ledger",
|
|
18861
|
+
"type": {
|
|
18862
|
+
"text": "DeliveredBlockLedger"
|
|
18863
|
+
},
|
|
18864
|
+
"privacy": "protected",
|
|
18865
|
+
"description": "Which rows each delivered block carried, for withdrawal and eviction reporting. @internal",
|
|
18866
|
+
"default": "new DeliveredBlockLedger(options.rowId, options.maxBlocksInCache)",
|
|
18867
|
+
"inheritedFrom": {
|
|
18868
|
+
"name": "BaseServerSideDatasource",
|
|
18869
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
18870
|
+
}
|
|
18871
|
+
},
|
|
18430
18872
|
{
|
|
18431
18873
|
"kind": "field",
|
|
18432
18874
|
"name": "resourceName",
|
|
@@ -19842,6 +20284,17 @@
|
|
|
19842
20284
|
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
19843
20285
|
}
|
|
19844
20286
|
},
|
|
20287
|
+
{
|
|
20288
|
+
"kind": "field",
|
|
20289
|
+
"name": "serializer",
|
|
20290
|
+
"type": {
|
|
20291
|
+
"text": "JSONSerializer"
|
|
20292
|
+
},
|
|
20293
|
+
"inheritedFrom": {
|
|
20294
|
+
"name": "GridProBaseDatasource",
|
|
20295
|
+
"module": "src/datasource/base.datasource.ts"
|
|
20296
|
+
}
|
|
20297
|
+
},
|
|
19845
20298
|
{
|
|
19846
20299
|
"kind": "field",
|
|
19847
20300
|
"name": "dataSubWasLoggedOff",
|
|
@@ -19867,6 +20320,20 @@
|
|
|
19867
20320
|
"module": "src/datasource/base.datasource.ts"
|
|
19868
20321
|
}
|
|
19869
20322
|
},
|
|
20323
|
+
{
|
|
20324
|
+
"kind": "field",
|
|
20325
|
+
"name": "missingRowIdWarned",
|
|
20326
|
+
"type": {
|
|
20327
|
+
"text": "boolean"
|
|
20328
|
+
},
|
|
20329
|
+
"privacy": "private",
|
|
20330
|
+
"default": "false",
|
|
20331
|
+
"description": "So rows without a row id are warned about once per element, not once per block. @internal",
|
|
20332
|
+
"inheritedFrom": {
|
|
20333
|
+
"name": "GridProBaseDatasource",
|
|
20334
|
+
"module": "src/datasource/base.datasource.ts"
|
|
20335
|
+
}
|
|
20336
|
+
},
|
|
19870
20337
|
{
|
|
19871
20338
|
"kind": "field",
|
|
19872
20339
|
"name": "connectionSub",
|
|
@@ -19963,6 +20430,44 @@
|
|
|
19963
20430
|
"module": "src/datasource/base.datasource.ts"
|
|
19964
20431
|
}
|
|
19965
20432
|
},
|
|
20433
|
+
{
|
|
20434
|
+
"kind": "method",
|
|
20435
|
+
"name": "emitTransaction",
|
|
20436
|
+
"privacy": "protected",
|
|
20437
|
+
"return": {
|
|
20438
|
+
"type": {
|
|
20439
|
+
"text": "void"
|
|
20440
|
+
}
|
|
20441
|
+
},
|
|
20442
|
+
"parameters": [
|
|
20443
|
+
{
|
|
20444
|
+
"name": "transaction",
|
|
20445
|
+
"type": {
|
|
20446
|
+
"text": "TransactionData | undefined"
|
|
20447
|
+
}
|
|
20448
|
+
}
|
|
20449
|
+
],
|
|
20450
|
+
"description": "Emits `datasource-data-changed` for `transaction` when it is non-empty. @internal",
|
|
20451
|
+
"inheritedFrom": {
|
|
20452
|
+
"name": "GridProBaseDatasource",
|
|
20453
|
+
"module": "src/datasource/base.datasource.ts"
|
|
20454
|
+
}
|
|
20455
|
+
},
|
|
20456
|
+
{
|
|
20457
|
+
"kind": "method",
|
|
20458
|
+
"name": "emitPendingTransaction",
|
|
20459
|
+
"privacy": "protected",
|
|
20460
|
+
"return": {
|
|
20461
|
+
"type": {
|
|
20462
|
+
"text": "void"
|
|
20463
|
+
}
|
|
20464
|
+
},
|
|
20465
|
+
"description": "Emits `datasource-data-changed` for the current transaction when it is non-empty. @internal",
|
|
20466
|
+
"inheritedFrom": {
|
|
20467
|
+
"name": "GridProBaseDatasource",
|
|
20468
|
+
"module": "src/datasource/base.datasource.ts"
|
|
20469
|
+
}
|
|
20470
|
+
},
|
|
19966
20471
|
{
|
|
19967
20472
|
"kind": "method",
|
|
19968
20473
|
"name": "mapTransaction",
|