@genesislcap/grid-pro 15.24.1 → 15.25.0-FUI-2611.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/custom-elements.json +565 -52
  2. package/dist/dts/datasource/base.datasource.d.ts +70 -7
  3. package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
  4. package/dist/dts/datasource/base.types.d.ts +27 -0
  5. package/dist/dts/datasource/base.types.d.ts.map +1 -1
  6. package/dist/dts/datasource/delivered-block.ledger.d.ts +32 -0
  7. package/dist/dts/datasource/delivered-block.ledger.d.ts.map +1 -0
  8. package/dist/dts/datasource/infinite.datasource.d.ts +38 -5
  9. package/dist/dts/datasource/infinite.datasource.d.ts.map +1 -1
  10. package/dist/dts/datasource/infinite.resource.d.ts +59 -6
  11. package/dist/dts/datasource/infinite.resource.d.ts.map +1 -1
  12. package/dist/dts/datasource/server-side.datasource.d.ts +14 -5
  13. package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
  14. package/dist/dts/datasource/server-side.resource-base.d.ts +24 -0
  15. package/dist/dts/datasource/server-side.resource-base.d.ts.map +1 -1
  16. package/dist/dts/datasource/server-side.resource-dataserver.d.ts +26 -0
  17. package/dist/dts/datasource/server-side.resource-dataserver.d.ts.map +1 -1
  18. package/dist/dts/datasource/server-side.resource-reqrep.d.ts.map +1 -1
  19. package/dist/dts/grid-pro-beta.d.ts +6 -0
  20. package/dist/dts/grid-pro-beta.d.ts.map +1 -1
  21. package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts +4 -0
  22. package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts.map +1 -1
  23. package/dist/dts/grid-pro.d.ts.map +1 -1
  24. package/dist/dts/react.d.ts +3 -1
  25. package/dist/esm/datasource/base.datasource.js +177 -23
  26. package/dist/esm/datasource/delivered-block.ledger.js +59 -0
  27. package/dist/esm/datasource/infinite.datasource.js +83 -38
  28. package/dist/esm/datasource/infinite.resource.js +59 -10
  29. package/dist/esm/datasource/server-side.datasource.js +77 -81
  30. package/dist/esm/datasource/server-side.resource-base.js +43 -0
  31. package/dist/esm/datasource/server-side.resource-dataserver.js +77 -17
  32. package/dist/esm/datasource/server-side.resource-reqrep.js +12 -0
  33. package/dist/esm/grid-pro-beta.js +20 -2
  34. package/dist/esm/grid-pro.js +4 -1
  35. package/dist/grid-pro.api.json +35 -35
  36. package/dist/grid-pro.d.ts +217 -22
  37. package/dist/react.cjs +16 -6
  38. package/dist/react.mjs +16 -6
  39. 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": "{\n add: [],\n remove: [],\n update: [],\n }"
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": "{\n add: [],\n remove: [],\n update: [],\n }",
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"
@@ -14151,12 +14336,20 @@
14151
14336
  "description": "Fired to request an infinite row model refresh; `purge` drops the block cache and re-reads. detail: `RefreshInfiniteCacheEventDetail`",
14152
14337
  "name": "refresh-infinite-cache"
14153
14338
  },
14339
+ {
14340
+ "description": "Fired to add a CSS class on the grid host (hover sort indicators). detail: `GridCssClassEventDetail`",
14341
+ "name": "add-grid-css-class"
14342
+ },
14343
+ {
14344
+ "description": "Fired to remove that CSS class from the grid host. detail: `GridCssClassEventDetail`",
14345
+ "name": "remove-grid-css-class"
14346
+ },
14154
14347
  {
14155
14348
  "description": "Fired to persist filter configuration for the grid",
14156
14349
  "name": "cache-filter-config"
14157
14350
  },
14158
14351
  {
14159
- "description": "Fired when infinite row data is cleared. detail: `DataClearedEventDetail`",
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`",
14160
14353
  "name": "datasource-data-cleared"
14161
14354
  },
14162
14355
  {
@@ -14178,14 +14371,6 @@
14178
14371
  "name": "GenesisGridDatasourceElement",
14179
14372
  "module": "src/datasource/base.datasource.ts"
14180
14373
  }
14181
- },
14182
- {
14183
- "description": "Fired when row data changes from applied stream transactions. detail: `DataChangedEventDetail`",
14184
- "name": "datasource-data-changed",
14185
- "inheritedFrom": {
14186
- "name": "GenesisGridDatasourceElement",
14187
- "module": "src/datasource/base.datasource.ts"
14188
- }
14189
14374
  }
14190
14375
  ],
14191
14376
  "mixins": [
@@ -14549,6 +14734,26 @@
14549
14734
  },
14550
14735
  "privacy": "private"
14551
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
+ },
14747
+ {
14748
+ "kind": "field",
14749
+ "name": "destroyed",
14750
+ "type": {
14751
+ "text": "boolean"
14752
+ },
14753
+ "privacy": "private",
14754
+ "default": "false",
14755
+ "description": "Set by destroy(); a reply that resolves afterwards belongs to a dropped cache. @internal"
14756
+ },
14552
14757
  {
14553
14758
  "kind": "field",
14554
14759
  "name": "HTTP_NOT_FOUND",
@@ -14757,6 +14962,36 @@
14757
14962
  ],
14758
14963
  "description": "Called by AG Grid when more rows are needed.\nImplements the IDatasource.getRows method."
14759
14964
  },
14965
+ {
14966
+ "kind": "method",
14967
+ "name": "getDataserverRows",
14968
+ "privacy": "private",
14969
+ "return": {
14970
+ "type": {
14971
+ "text": "void"
14972
+ }
14973
+ },
14974
+ "parameters": [
14975
+ {
14976
+ "name": "params",
14977
+ "type": {
14978
+ "text": "IGetRowsParams"
14979
+ }
14980
+ },
14981
+ {
14982
+ "name": "criteria",
14983
+ "type": {
14984
+ "text": "string"
14985
+ }
14986
+ },
14987
+ {
14988
+ "name": "sortConfig",
14989
+ "type": {
14990
+ "text": "{ orderBy: string | null; reverse: boolean }"
14991
+ }
14992
+ }
14993
+ ]
14994
+ },
14760
14995
  {
14761
14996
  "kind": "method",
14762
14997
  "name": "cacheIndexOf",
@@ -14809,6 +15044,22 @@
14809
15044
  {
14810
15045
  "kind": "field",
14811
15046
  "name": "onRowsUpdatedFunc"
15047
+ },
15048
+ {
15049
+ "kind": "field",
15050
+ "name": "onRowsDeliveredFunc"
15051
+ },
15052
+ {
15053
+ "kind": "field",
15054
+ "name": "onRowsWithdrawnFunc"
15055
+ },
15056
+ {
15057
+ "kind": "field",
15058
+ "name": "onRowsEvictedFunc"
15059
+ },
15060
+ {
15061
+ "kind": "field",
15062
+ "name": "onRowCacheResetFunc"
14812
15063
  }
14813
15064
  ]
14814
15065
  }
@@ -15127,13 +15378,6 @@
15127
15378
  "description": "A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.",
15128
15379
  "name": "GridProServerSideDatasource",
15129
15380
  "members": [
15130
- {
15131
- "kind": "field",
15132
- "name": "serializer",
15133
- "type": {
15134
- "text": "JSONSerializer"
15135
- }
15136
- },
15137
15381
  {
15138
15382
  "kind": "field",
15139
15383
  "name": "pollingDatasource",
@@ -15187,15 +15431,6 @@
15187
15431
  },
15188
15432
  "privacy": "private"
15189
15433
  },
15190
- {
15191
- "kind": "field",
15192
- "name": "sortIndicatorCSSDestroy",
15193
- "type": {
15194
- "text": "(() => void) | null"
15195
- },
15196
- "privacy": "private",
15197
- "default": "null"
15198
- },
15199
15434
  {
15200
15435
  "kind": "method",
15201
15436
  "name": "resourceNameChanged",
@@ -15298,17 +15533,6 @@
15298
15533
  "module": "src/datasource/base.datasource.ts"
15299
15534
  }
15300
15535
  },
15301
- {
15302
- "kind": "method",
15303
- "name": "clearRowData",
15304
- "privacy": "private",
15305
- "parameters": [
15306
- {
15307
- "name": "withColumnDefs",
15308
- "default": "true"
15309
- }
15310
- ]
15311
- },
15312
15536
  {
15313
15537
  "kind": "method",
15314
15538
  "name": "createReqRepRequest",
@@ -15456,6 +15680,17 @@
15456
15680
  "module": "src/mixins/lifecycle/lifecycle.ts"
15457
15681
  }
15458
15682
  },
15683
+ {
15684
+ "kind": "field",
15685
+ "name": "serializer",
15686
+ "type": {
15687
+ "text": "JSONSerializer"
15688
+ },
15689
+ "inheritedFrom": {
15690
+ "name": "GridProBaseDatasource",
15691
+ "module": "src/datasource/base.datasource.ts"
15692
+ }
15693
+ },
15459
15694
  {
15460
15695
  "kind": "field",
15461
15696
  "name": "dataSubWasLoggedOff",
@@ -15501,7 +15736,21 @@
15501
15736
  "text": "TransactionData"
15502
15737
  },
15503
15738
  "privacy": "protected",
15504
- "default": "{\n add: [],\n remove: [],\n update: [],\n }",
15739
+ "default": "{ add: [], remove: [], update: [] }",
15740
+ "inheritedFrom": {
15741
+ "name": "GridProBaseDatasource",
15742
+ "module": "src/datasource/base.datasource.ts"
15743
+ }
15744
+ },
15745
+ {
15746
+ "kind": "field",
15747
+ "name": "missingRowIdWarned",
15748
+ "type": {
15749
+ "text": "boolean"
15750
+ },
15751
+ "privacy": "private",
15752
+ "default": "false",
15753
+ "description": "So rows without a row id are warned about once per element, not once per block. @internal",
15505
15754
  "inheritedFrom": {
15506
15755
  "name": "GridProBaseDatasource",
15507
15756
  "module": "src/datasource/base.datasource.ts"
@@ -15661,6 +15910,44 @@
15661
15910
  "module": "src/datasource/base.datasource.ts"
15662
15911
  }
15663
15912
  },
15913
+ {
15914
+ "kind": "method",
15915
+ "name": "emitTransaction",
15916
+ "privacy": "protected",
15917
+ "return": {
15918
+ "type": {
15919
+ "text": "void"
15920
+ }
15921
+ },
15922
+ "parameters": [
15923
+ {
15924
+ "name": "transaction",
15925
+ "type": {
15926
+ "text": "TransactionData | undefined"
15927
+ }
15928
+ }
15929
+ ],
15930
+ "description": "Emits `datasource-data-changed` for `transaction` when it is non-empty. @internal",
15931
+ "inheritedFrom": {
15932
+ "name": "GridProBaseDatasource",
15933
+ "module": "src/datasource/base.datasource.ts"
15934
+ }
15935
+ },
15936
+ {
15937
+ "kind": "method",
15938
+ "name": "emitPendingTransaction",
15939
+ "privacy": "protected",
15940
+ "return": {
15941
+ "type": {
15942
+ "text": "void"
15943
+ }
15944
+ },
15945
+ "description": "Emits `datasource-data-changed` for the current transaction when it is non-empty. @internal",
15946
+ "inheritedFrom": {
15947
+ "name": "GridProBaseDatasource",
15948
+ "module": "src/datasource/base.datasource.ts"
15949
+ }
15950
+ },
15664
15951
  {
15665
15952
  "kind": "method",
15666
15953
  "name": "mapTransaction",
@@ -16389,7 +16676,7 @@
16389
16676
  }
16390
16677
  },
16391
16678
  {
16392
- "description": "Fired when row data changes from applied stream transactions. detail: `DataChangedEventDetail`",
16679
+ "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`",
16393
16680
  "name": "datasource-data-changed",
16394
16681
  "inheritedFrom": {
16395
16682
  "name": "GenesisGridDatasourceElement",
@@ -16437,7 +16724,7 @@
16437
16724
  "name": "datasource-filters-restored"
16438
16725
  },
16439
16726
  {
16440
- "description": "Fired when server-side row data is cleared. detail: `DataClearedEventDetail`",
16727
+ "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`",
16441
16728
  "name": "datasource-data-cleared"
16442
16729
  },
16443
16730
  {
@@ -16813,6 +17100,40 @@
16813
17100
  },
16814
17101
  "privacy": "protected"
16815
17102
  },
17103
+ {
17104
+ "kind": "field",
17105
+ "name": "onRowsDeliveredFunc",
17106
+ "type": {
17107
+ "text": "(rows: any[]) => void | undefined"
17108
+ },
17109
+ "privacy": "protected"
17110
+ },
17111
+ {
17112
+ "kind": "field",
17113
+ "name": "onRowsWithdrawnFunc",
17114
+ "type": {
17115
+ "text": "(rowIds: string[]) => void | undefined"
17116
+ },
17117
+ "privacy": "protected"
17118
+ },
17119
+ {
17120
+ "kind": "field",
17121
+ "name": "onRowsEvictedFunc",
17122
+ "type": {
17123
+ "text": "(rowIds: string[]) => void | undefined"
17124
+ },
17125
+ "privacy": "protected"
17126
+ },
17127
+ {
17128
+ "kind": "field",
17129
+ "name": "ledger",
17130
+ "type": {
17131
+ "text": "DeliveredBlockLedger"
17132
+ },
17133
+ "privacy": "protected",
17134
+ "description": "Which rows each delivered block carried, for withdrawal and eviction reporting. @internal",
17135
+ "default": "new DeliveredBlockLedger(options.rowId, options.maxBlocksInCache)"
17136
+ },
16816
17137
  {
16817
17138
  "kind": "field",
16818
17139
  "name": "resourceName",
@@ -17403,6 +17724,35 @@
17403
17724
  }
17404
17725
  ]
17405
17726
  },
17727
+ {
17728
+ "kind": "method",
17729
+ "name": "cacheIndexOf",
17730
+ "privacy": "private",
17731
+ "return": {
17732
+ "type": {
17733
+ "text": "number"
17734
+ }
17735
+ },
17736
+ "parameters": [
17737
+ {
17738
+ "name": "rows",
17739
+ "type": {
17740
+ "text": "Map<string, any>"
17741
+ }
17742
+ },
17743
+ {
17744
+ "name": "key",
17745
+ "type": {
17746
+ "text": "string"
17747
+ }
17748
+ }
17749
+ ],
17750
+ "description": "Position of a key in the cache's insertion order. @internal"
17751
+ },
17752
+ {
17753
+ "kind": "field",
17754
+ "name": "gridReceivesLiveUpdates"
17755
+ },
17406
17756
  {
17407
17757
  "kind": "field",
17408
17758
  "name": "auth",
@@ -17506,6 +17856,56 @@
17506
17856
  "module": "src/datasource/server-side.resource-base.ts"
17507
17857
  }
17508
17858
  },
17859
+ {
17860
+ "kind": "field",
17861
+ "name": "onRowsDeliveredFunc",
17862
+ "type": {
17863
+ "text": "(rows: any[]) => void | undefined"
17864
+ },
17865
+ "privacy": "protected",
17866
+ "inheritedFrom": {
17867
+ "name": "BaseServerSideDatasource",
17868
+ "module": "src/datasource/server-side.resource-base.ts"
17869
+ }
17870
+ },
17871
+ {
17872
+ "kind": "field",
17873
+ "name": "onRowsWithdrawnFunc",
17874
+ "type": {
17875
+ "text": "(rowIds: string[]) => void | undefined"
17876
+ },
17877
+ "privacy": "protected",
17878
+ "inheritedFrom": {
17879
+ "name": "BaseServerSideDatasource",
17880
+ "module": "src/datasource/server-side.resource-base.ts"
17881
+ }
17882
+ },
17883
+ {
17884
+ "kind": "field",
17885
+ "name": "onRowsEvictedFunc",
17886
+ "type": {
17887
+ "text": "(rowIds: string[]) => void | undefined"
17888
+ },
17889
+ "privacy": "protected",
17890
+ "inheritedFrom": {
17891
+ "name": "BaseServerSideDatasource",
17892
+ "module": "src/datasource/server-side.resource-base.ts"
17893
+ }
17894
+ },
17895
+ {
17896
+ "kind": "field",
17897
+ "name": "ledger",
17898
+ "type": {
17899
+ "text": "DeliveredBlockLedger"
17900
+ },
17901
+ "privacy": "protected",
17902
+ "description": "Which rows each delivered block carried, for withdrawal and eviction reporting. @internal",
17903
+ "default": "new DeliveredBlockLedger(options.rowId, options.maxBlocksInCache)",
17904
+ "inheritedFrom": {
17905
+ "name": "BaseServerSideDatasource",
17906
+ "module": "src/datasource/server-side.resource-base.ts"
17907
+ }
17908
+ },
17509
17909
  {
17510
17910
  "kind": "field",
17511
17911
  "name": "resourceName",
@@ -18428,6 +18828,56 @@
18428
18828
  "module": "src/datasource/server-side.resource-base.ts"
18429
18829
  }
18430
18830
  },
18831
+ {
18832
+ "kind": "field",
18833
+ "name": "onRowsDeliveredFunc",
18834
+ "type": {
18835
+ "text": "(rows: any[]) => void | undefined"
18836
+ },
18837
+ "privacy": "protected",
18838
+ "inheritedFrom": {
18839
+ "name": "BaseServerSideDatasource",
18840
+ "module": "src/datasource/server-side.resource-base.ts"
18841
+ }
18842
+ },
18843
+ {
18844
+ "kind": "field",
18845
+ "name": "onRowsWithdrawnFunc",
18846
+ "type": {
18847
+ "text": "(rowIds: string[]) => void | undefined"
18848
+ },
18849
+ "privacy": "protected",
18850
+ "inheritedFrom": {
18851
+ "name": "BaseServerSideDatasource",
18852
+ "module": "src/datasource/server-side.resource-base.ts"
18853
+ }
18854
+ },
18855
+ {
18856
+ "kind": "field",
18857
+ "name": "onRowsEvictedFunc",
18858
+ "type": {
18859
+ "text": "(rowIds: string[]) => void | undefined"
18860
+ },
18861
+ "privacy": "protected",
18862
+ "inheritedFrom": {
18863
+ "name": "BaseServerSideDatasource",
18864
+ "module": "src/datasource/server-side.resource-base.ts"
18865
+ }
18866
+ },
18867
+ {
18868
+ "kind": "field",
18869
+ "name": "ledger",
18870
+ "type": {
18871
+ "text": "DeliveredBlockLedger"
18872
+ },
18873
+ "privacy": "protected",
18874
+ "description": "Which rows each delivered block carried, for withdrawal and eviction reporting. @internal",
18875
+ "default": "new DeliveredBlockLedger(options.rowId, options.maxBlocksInCache)",
18876
+ "inheritedFrom": {
18877
+ "name": "BaseServerSideDatasource",
18878
+ "module": "src/datasource/server-side.resource-base.ts"
18879
+ }
18880
+ },
18431
18881
  {
18432
18882
  "kind": "field",
18433
18883
  "name": "resourceName",
@@ -19843,6 +20293,17 @@
19843
20293
  "module": "src/mixins/lifecycle/lifecycle.ts"
19844
20294
  }
19845
20295
  },
20296
+ {
20297
+ "kind": "field",
20298
+ "name": "serializer",
20299
+ "type": {
20300
+ "text": "JSONSerializer"
20301
+ },
20302
+ "inheritedFrom": {
20303
+ "name": "GridProBaseDatasource",
20304
+ "module": "src/datasource/base.datasource.ts"
20305
+ }
20306
+ },
19846
20307
  {
19847
20308
  "kind": "field",
19848
20309
  "name": "dataSubWasLoggedOff",
@@ -19868,6 +20329,20 @@
19868
20329
  "module": "src/datasource/base.datasource.ts"
19869
20330
  }
19870
20331
  },
20332
+ {
20333
+ "kind": "field",
20334
+ "name": "missingRowIdWarned",
20335
+ "type": {
20336
+ "text": "boolean"
20337
+ },
20338
+ "privacy": "private",
20339
+ "default": "false",
20340
+ "description": "So rows without a row id are warned about once per element, not once per block. @internal",
20341
+ "inheritedFrom": {
20342
+ "name": "GridProBaseDatasource",
20343
+ "module": "src/datasource/base.datasource.ts"
20344
+ }
20345
+ },
19871
20346
  {
19872
20347
  "kind": "field",
19873
20348
  "name": "connectionSub",
@@ -19964,6 +20439,44 @@
19964
20439
  "module": "src/datasource/base.datasource.ts"
19965
20440
  }
19966
20441
  },
20442
+ {
20443
+ "kind": "method",
20444
+ "name": "emitTransaction",
20445
+ "privacy": "protected",
20446
+ "return": {
20447
+ "type": {
20448
+ "text": "void"
20449
+ }
20450
+ },
20451
+ "parameters": [
20452
+ {
20453
+ "name": "transaction",
20454
+ "type": {
20455
+ "text": "TransactionData | undefined"
20456
+ }
20457
+ }
20458
+ ],
20459
+ "description": "Emits `datasource-data-changed` for `transaction` when it is non-empty. @internal",
20460
+ "inheritedFrom": {
20461
+ "name": "GridProBaseDatasource",
20462
+ "module": "src/datasource/base.datasource.ts"
20463
+ }
20464
+ },
20465
+ {
20466
+ "kind": "method",
20467
+ "name": "emitPendingTransaction",
20468
+ "privacy": "protected",
20469
+ "return": {
20470
+ "type": {
20471
+ "text": "void"
20472
+ }
20473
+ },
20474
+ "description": "Emits `datasource-data-changed` for the current transaction when it is non-empty. @internal",
20475
+ "inheritedFrom": {
20476
+ "name": "GridProBaseDatasource",
20477
+ "module": "src/datasource/base.datasource.ts"
20478
+ }
20479
+ },
19967
20480
  {
19968
20481
  "kind": "method",
19969
20482
  "name": "mapTransaction",