@genesislcap/grid-pro 14.275.3 → 14.276.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.
Files changed (150) hide show
  1. package/README.md +428 -15
  2. package/dist/custom-elements.json +1306 -141
  3. package/dist/dts/datasource/base.datasource.d.ts +38 -1
  4. package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
  5. package/dist/dts/datasource/index.d.ts +1 -0
  6. package/dist/dts/datasource/index.d.ts.map +1 -1
  7. package/dist/dts/datasource/server-side.datasource.d.ts +6 -5
  8. package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
  9. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +34 -12
  10. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
  11. package/dist/dts/grid-pro.d.ts +65 -16
  12. package/dist/dts/grid-pro.d.ts.map +1 -1
  13. package/dist/dts/grid-pro.styles.d.ts.map +1 -1
  14. package/dist/dts/grid-pro.types.d.ts +91 -0
  15. package/dist/dts/grid-pro.types.d.ts.map +1 -1
  16. package/dist/dts/index.d.ts +1 -0
  17. package/dist/dts/index.d.ts.map +1 -1
  18. package/dist/dts/status-bar-components/index.d.ts +5 -0
  19. package/dist/dts/status-bar-components/index.d.ts.map +1 -0
  20. package/dist/dts/status-bar-components/label-value.status-bar.d.ts +21 -0
  21. package/dist/dts/status-bar-components/label-value.status-bar.d.ts.map +1 -0
  22. package/dist/dts/status-bar-components/load-more.status-bar.d.ts +43 -0
  23. package/dist/dts/status-bar-components/load-more.status-bar.d.ts.map +1 -0
  24. package/dist/dts/status-bar-components/pagination.status-bar.d.ts +32 -0
  25. package/dist/dts/status-bar-components/pagination.status-bar.d.ts.map +1 -0
  26. package/dist/dts/status-bar-components/reload.status-bar.d.ts +36 -0
  27. package/dist/dts/status-bar-components/reload.status-bar.d.ts.map +1 -0
  28. package/dist/esm/datasource/base.datasource.js +124 -7
  29. package/dist/esm/datasource/index.js +1 -0
  30. package/dist/esm/datasource/server-side.datasource.js +9 -9
  31. package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +111 -34
  32. package/dist/esm/grid-pro.js +116 -2
  33. package/dist/esm/grid-pro.styles.js +10 -0
  34. package/dist/esm/grid-pro.types.js +28 -0
  35. package/dist/esm/index.js +1 -0
  36. package/dist/esm/status-bar-components/index.js +4 -0
  37. package/dist/esm/status-bar-components/label-value.status-bar.js +33 -0
  38. package/dist/esm/status-bar-components/load-more.status-bar.js +209 -0
  39. package/dist/esm/status-bar-components/pagination.status-bar.js +206 -0
  40. package/dist/esm/status-bar-components/reload.status-bar.js +162 -0
  41. package/dist/grid-pro.api.json +6872 -3339
  42. package/dist/grid-pro.d.ts +384 -32
  43. package/docs/api/grid-pro.criteriadelimiter.md +13 -0
  44. package/docs/api/grid-pro.criteriajoin.md +13 -0
  45. package/docs/api/grid-pro.default_status_bar_config.md +13 -0
  46. package/docs/api/grid-pro.genesisgriddatasourceelement.aggrid.md +11 -0
  47. package/docs/api/grid-pro.genesisgriddatasourceelement.connect.md +11 -0
  48. package/docs/api/grid-pro.genesisgriddatasourceelement.criteria.md +11 -0
  49. package/docs/api/grid-pro.genesisgriddatasourceelement.criteriafromfilters.md +11 -0
  50. package/docs/api/grid-pro.genesisgriddatasourceelement.datasource.md +11 -0
  51. package/docs/api/grid-pro.genesisgriddatasourceelement.datasourceoptions.md +15 -0
  52. package/docs/api/grid-pro.genesisgriddatasourceelement.datasourcestatuschanged.md +23 -0
  53. package/docs/api/grid-pro.genesisgriddatasourceelement.defaultrowidbyresourcetype.md +11 -0
  54. package/docs/api/grid-pro.genesisgriddatasourceelement.deferredcolumnstates.md +11 -0
  55. package/docs/api/grid-pro.genesisgriddatasourceelement.deferredgridoptions.md +11 -0
  56. package/docs/api/grid-pro.genesisgriddatasourceelement.disablepolling.md +11 -0
  57. package/docs/api/grid-pro.genesisgriddatasourceelement.fields.md +11 -0
  58. package/docs/api/grid-pro.genesisgriddatasourceelement.isrequestserver.md +11 -0
  59. package/docs/api/grid-pro.genesisgriddatasourceelement.issnapshot.md +11 -0
  60. package/docs/api/grid-pro.genesisgriddatasourceelement.maxrows.md +11 -0
  61. package/docs/api/grid-pro.genesisgriddatasourceelement.maxview.md +11 -0
  62. package/docs/api/grid-pro.genesisgriddatasourceelement.md +55 -0
  63. package/docs/api/grid-pro.genesisgriddatasourceelement.movingview.md +11 -0
  64. package/docs/api/grid-pro.genesisgriddatasourceelement.orderby.md +11 -0
  65. package/docs/api/grid-pro.genesisgriddatasourceelement.pollinginterval.md +11 -0
  66. package/docs/api/grid-pro.genesisgriddatasourceelement.removefilter.md +22 -0
  67. package/docs/api/grid-pro.genesisgriddatasourceelement.request.md +11 -0
  68. package/docs/api/grid-pro.genesisgriddatasourceelement.requestautosetup.md +18 -0
  69. package/docs/api/grid-pro.genesisgriddatasourceelement.resourcename.md +11 -0
  70. package/docs/api/grid-pro.genesisgriddatasourceelement.reverse.md +11 -0
  71. package/docs/api/grid-pro.genesisgriddatasourceelement.rowdatamapper.md +13 -0
  72. package/docs/api/grid-pro.genesisgriddatasourceelement.rowid.md +11 -0
  73. package/docs/api/grid-pro.genesisgriddatasourceelement.rowidattr.md +15 -0
  74. package/docs/api/grid-pro.genesisgriddatasourceelement.setfilter.md +23 -0
  75. package/docs/api/grid-pro.genesisgriddatasourceelement.update.md +11 -0
  76. package/docs/api/grid-pro.genesisgriddatasourceelement.viewnumber.md +11 -0
  77. package/docs/api/grid-pro.gridpro.clearlocalgridoptions.md +17 -0
  78. package/docs/api/grid-pro.gridpro.gridprodatasource.md +2 -2
  79. package/docs/api/grid-pro.gridpro.md +8 -2
  80. package/docs/api/grid-pro.gridpro.pagination.md +18 -0
  81. package/docs/api/grid-pro.gridpro.paginationpagesize.md +18 -0
  82. package/docs/api/grid-pro.gridpro.persistcolumnstatekey.md +1 -1
  83. package/docs/api/grid-pro.gridpro.setuppaginationandstatusbar.md +22 -0
  84. package/docs/api/grid-pro.gridpro.statusbarconfig.md +18 -0
  85. package/docs/api/grid-pro.gridpro.withstatusbar.md +18 -0
  86. package/docs/api/grid-pro.gridprobasedatasource.agtransaction.md +11 -0
  87. package/docs/api/grid-pro.gridprobasedatasource.applyallagtransactions.md +15 -0
  88. package/docs/api/grid-pro.gridprobasedatasource.applyasyncfuncname.md +11 -0
  89. package/docs/api/grid-pro.gridprobasedatasource.applyfuncname.md +11 -0
  90. package/docs/api/grid-pro.gridprobasedatasource.applytransaction.md +22 -0
  91. package/docs/api/grid-pro.gridprobasedatasource.applytransactionasync.md +23 -0
  92. package/docs/api/grid-pro.gridprobasedatasource.datasubwasloggedoff.md +11 -0
  93. package/docs/api/grid-pro.gridprobasedatasource.destroy.md +15 -0
  94. package/docs/api/grid-pro.gridprobasedatasource.generatecolumndefsfrommetadata.md +23 -0
  95. package/docs/api/grid-pro.gridprobasedatasource.getdatasourcestatusbarpanels.md +24 -0
  96. package/docs/api/grid-pro.gridprobasedatasource.handlestreamdeletes.md +22 -0
  97. package/docs/api/grid-pro.gridprobasedatasource.handlestreaminserts.md +23 -0
  98. package/docs/api/grid-pro.gridprobasedatasource.handlestreamupdates.md +22 -0
  99. package/docs/api/grid-pro.gridprobasedatasource.loadmore.md +15 -0
  100. package/docs/api/grid-pro.gridprobasedatasource.md +42 -0
  101. package/docs/api/grid-pro.gridprobasedatasource.pagination.md +11 -0
  102. package/docs/api/grid-pro.gridprobasedatasource.reloadresourcedata.md +15 -0
  103. package/docs/api/grid-pro.gridprobasedatasource.restart.md +15 -0
  104. package/docs/api/grid-pro.gridprobasedatasource.rowdata.md +11 -0
  105. package/docs/api/grid-pro.gridprogenesisdatasource.handlestreamdeletes.md +24 -0
  106. package/docs/api/grid-pro.gridprogenesisdatasource.handlestreaminserts.md +22 -0
  107. package/docs/api/grid-pro.gridprogenesisdatasource.handlestreamupdates.md +22 -0
  108. package/docs/api/grid-pro.gridprogenesisdatasource.loadmore.md +15 -0
  109. package/docs/api/grid-pro.gridprogenesisdatasource.md +6 -1
  110. package/docs/api/grid-pro.gridprogenesisdatasource.reloadresourcedata.md +21 -0
  111. package/docs/api/grid-pro.gridprogenesisdatasource.restart.md +3 -3
  112. package/docs/api/grid-pro.gridprostatusbarconfig.loadmore.md +18 -0
  113. package/docs/api/grid-pro.gridprostatusbarconfig.maxrows.md +18 -0
  114. package/docs/api/grid-pro.gridprostatusbarconfig.md +27 -0
  115. package/docs/api/grid-pro.gridprostatusbarconfig.reload.md +18 -0
  116. package/docs/api/grid-pro.gridprostatusbarconfig.rows.md +18 -0
  117. package/docs/api/grid-pro.gridprostatusbarloadmoreconfig.appearance.md +18 -0
  118. package/docs/api/grid-pro.gridprostatusbarloadmoreconfig.md +22 -0
  119. package/docs/api/grid-pro.gridprostatusbarloadmoreconfig.onloadmore.md +13 -0
  120. package/docs/api/grid-pro.gridprostatusbarloadmoreconfig.tooltip.md +18 -0
  121. package/docs/api/grid-pro.gridprostatusbarreloadconfig.icon.md +18 -0
  122. package/docs/api/grid-pro.gridprostatusbarreloadconfig.md +22 -0
  123. package/docs/api/grid-pro.gridprostatusbarreloadconfig.onreload.md +13 -0
  124. package/docs/api/grid-pro.gridprostatusbarreloadconfig.tooltip.md +18 -0
  125. package/docs/api/grid-pro.gridprostatusbartypes.md +27 -0
  126. package/docs/api/grid-pro.labelvaluestatusbarcomponent.destroy.md +15 -0
  127. package/docs/api/grid-pro.labelvaluestatusbarcomponent.getgui.md +15 -0
  128. package/docs/api/grid-pro.labelvaluestatusbarcomponent.init.md +22 -0
  129. package/docs/api/grid-pro.labelvaluestatusbarcomponent.md +23 -0
  130. package/docs/api/grid-pro.labelvaluestatusbarparams.md +17 -0
  131. package/docs/api/grid-pro.loadmorestatusbarcomponent.destroy.md +15 -0
  132. package/docs/api/grid-pro.loadmorestatusbarcomponent.getgui.md +15 -0
  133. package/docs/api/grid-pro.loadmorestatusbarcomponent.init.md +22 -0
  134. package/docs/api/grid-pro.loadmorestatusbarcomponent.md +25 -0
  135. package/docs/api/grid-pro.loadmorestatusbarcomponent.updatebuttonvisibility.md +15 -0
  136. package/docs/api/grid-pro.loadmorestatusbarcomponent.updateparams.md +22 -0
  137. package/docs/api/grid-pro.loadmorestatusbarparams.md +18 -0
  138. package/docs/api/grid-pro.md +16 -0
  139. package/docs/api/grid-pro.paginationstatusbarcomponent.destroy.md +15 -0
  140. package/docs/api/grid-pro.paginationstatusbarcomponent.getgui.md +15 -0
  141. package/docs/api/grid-pro.paginationstatusbarcomponent.init.md +22 -0
  142. package/docs/api/grid-pro.paginationstatusbarcomponent.md +23 -0
  143. package/docs/api/grid-pro.reloadstatusbarcomponent.destroy.md +15 -0
  144. package/docs/api/grid-pro.reloadstatusbarcomponent.getgui.md +15 -0
  145. package/docs/api/grid-pro.reloadstatusbarcomponent.init.md +22 -0
  146. package/docs/api/grid-pro.reloadstatusbarcomponent.md +24 -0
  147. package/docs/api/grid-pro.reloadstatusbarcomponent.updateparams.md +22 -0
  148. package/docs/api/grid-pro.reloadstatusbarparams.md +17 -0
  149. package/docs/api-report.md +256 -6
  150. package/package.json +13 -13
@@ -226,7 +226,7 @@
226
226
  "type": {
227
227
  "text": "ElementStyles"
228
228
  },
229
- "default": "css`\n ${agExternalStockStyles}\n :host {\n --datasource-error-background-color: var(--neutral-layer-4);\n --datasource-error-background-opacity: 0.5;\n --datasource-error-dialog-max-width: 50%;\n --datasource-error-dialog-min-width: auto;\n\n position: relative;\n width: 100%;\n height: 100%;\n }\n\n :host([ds-disconnected]) {\n display: block;\n }\n\n :host([ds-disconnected])::part(grid) {\n cursor: not-allowed;\n opacity: 40%;\n pointer-events: none;\n }\n\n .ag-side-bar,\n .ag-menu {\n --ag-subheader-background-color: var(--ag-background-color);\n --ag-control-panel-background-color: var(--ag-background-color);\n }\n\n .ag-cell-inline-editing {\n height: inherit !important;\n }\n\n .hidden {\n display: none;\n }\n\n .grid-datasource-error-dialog::part(dialog) {\n position: absolute;\n z-index: 2;\n max-width: var(--datasource-error-dialog-max-width);\n\n --dialog-min-width: var(--datasource-error-dialog-min-width);\n }\n\n .grid-datasource-error-dialog::before {\n content: '';\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n left: 0;\n height: 100%;\n width: 100%;\n border-radius: 2px;\n background-color: var(--datasource-error-background-color);\n opacity: var(--datasource-error-background-opacity);\n z-index: 1;\n }\n\n .error {\n border-color: var(--error-color) !important;\n }\n`",
229
+ "default": "css`\n ${agExternalStockStyles}\n :host {\n --datasource-error-background-color: var(--neutral-layer-4);\n --datasource-error-background-opacity: 0.5;\n --datasource-error-dialog-max-width: 50%;\n --datasource-error-dialog-min-width: auto;\n --ag-status-bar-height: 32.5px;\n\n position: relative;\n width: 100%;\n height: 100%;\n }\n\n :host([ds-disconnected]) {\n display: block;\n }\n\n :host([ds-disconnected])::part(grid) {\n cursor: not-allowed;\n opacity: 40%;\n pointer-events: none;\n }\n\n .ag-side-bar,\n .ag-menu {\n --ag-subheader-background-color: var(--ag-background-color);\n --ag-control-panel-background-color: var(--ag-background-color);\n }\n\n .ag-cell-inline-editing {\n height: inherit !important;\n }\n\n .hidden {\n display: none;\n }\n\n .grid-datasource-error-dialog::part(dialog) {\n position: absolute;\n z-index: 2;\n max-width: var(--datasource-error-dialog-max-width);\n\n --dialog-min-width: var(--datasource-error-dialog-min-width);\n }\n\n .grid-datasource-error-dialog::before {\n content: '';\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n left: 0;\n height: 100%;\n width: 100%;\n border-radius: 2px;\n background-color: var(--datasource-error-background-color);\n opacity: var(--datasource-error-background-opacity);\n z-index: 1;\n }\n\n .error {\n border-color: var(--error-color) !important;\n }\n\n .ag-status-bar {\n height: var(--ag-status-bar-height);\n }\n\n .ag-status-name-value {\n padding-top: var(--ag-grid-size);\n padding-bottom: var(--ag-grid-size);\n }\n`",
230
230
  "description": "The Grid Pro styles.",
231
231
  "privacy": "public"
232
232
  }
@@ -424,7 +424,7 @@
424
424
  "type": {
425
425
  "text": "string"
426
426
  },
427
- "description": "The key to use for persisting the column state in local broswer or KV storage."
427
+ "description": "The key to use for persisting the column state in local browser or KV storage."
428
428
  },
429
429
  {
430
430
  "kind": "field",
@@ -551,6 +551,38 @@
551
551
  "text": "{ [componentName: string]: any }"
552
552
  }
553
553
  },
554
+ {
555
+ "kind": "field",
556
+ "name": "pagination",
557
+ "type": {
558
+ "text": "boolean"
559
+ },
560
+ "default": "false",
561
+ "description": "Enable pagination for the grid."
562
+ },
563
+ {
564
+ "kind": "field",
565
+ "name": "paginationPageSize",
566
+ "description": "Number of rows per page when pagination is enabled."
567
+ },
568
+ {
569
+ "kind": "field",
570
+ "name": "statusBarConfig",
571
+ "type": {
572
+ "text": "GridProStatusBarConfig"
573
+ },
574
+ "default": "DEFAULT_STATUS_BAR_CONFIG",
575
+ "description": "Configuration for the grid status bar components."
576
+ },
577
+ {
578
+ "kind": "field",
579
+ "name": "withStatusBar",
580
+ "type": {
581
+ "text": "boolean"
582
+ },
583
+ "default": "false",
584
+ "description": "Enables or disables the grid status bar."
585
+ },
554
586
  {
555
587
  "kind": "field",
556
588
  "name": "columnState",
@@ -821,7 +853,7 @@
821
853
  "kind": "field",
822
854
  "name": "gridProDatasource",
823
855
  "type": {
824
- "text": "| GridProGenesisDatasource\n | GridProClientSideDatasource\n | GridProServerSideDatasource"
856
+ "text": "GridProBaseDatasource"
825
857
  },
826
858
  "description": "Get the datasource element.",
827
859
  "privacy": "public",
@@ -840,6 +872,12 @@
840
872
  }
841
873
  ]
842
874
  },
875
+ {
876
+ "kind": "method",
877
+ "name": "clearLocalGridOptions",
878
+ "description": "Clears the local grid options, this is used to clear the grid options when the grid is restarted.",
879
+ "privacy": "public"
880
+ },
843
881
  {
844
882
  "kind": "method",
845
883
  "name": "initGrid",
@@ -895,6 +933,19 @@
895
933
  }
896
934
  }
897
935
  },
936
+ {
937
+ "kind": "method",
938
+ "name": "setupPaginationAndStatusBar",
939
+ "privacy": "protected",
940
+ "parameters": [
941
+ {
942
+ "name": "gridOptions",
943
+ "type": {
944
+ "text": "GridOptions"
945
+ }
946
+ }
947
+ ]
948
+ },
898
949
  {
899
950
  "kind": "method",
900
951
  "name": "agAttributeChangedCallback",
@@ -1238,7 +1289,7 @@
1238
1289
  "type": {
1239
1290
  "text": "string"
1240
1291
  },
1241
- "description": "The key to use for persisting the column state in local broswer or KV storage.",
1292
+ "description": "The key to use for persisting the column state in local browser or KV storage.",
1242
1293
  "fieldName": "persistColumnStateKey"
1243
1294
  },
1244
1295
  {
@@ -1285,6 +1336,28 @@
1285
1336
  "text": "string"
1286
1337
  },
1287
1338
  "fieldName": "theme"
1339
+ },
1340
+ {
1341
+ "type": {
1342
+ "text": "boolean"
1343
+ },
1344
+ "default": "false",
1345
+ "description": "Enable pagination for the grid.",
1346
+ "fieldName": "pagination"
1347
+ },
1348
+ {
1349
+ "name": "pagination-page-size",
1350
+ "description": "Number of rows per page when pagination is enabled.",
1351
+ "fieldName": "paginationPageSize"
1352
+ },
1353
+ {
1354
+ "name": "with-status-bar",
1355
+ "type": {
1356
+ "text": "boolean"
1357
+ },
1358
+ "default": "false",
1359
+ "description": "Enables or disables the grid status bar.",
1360
+ "fieldName": "withStatusBar"
1288
1361
  }
1289
1362
  ],
1290
1363
  "mixins": [
@@ -1473,6 +1546,16 @@
1473
1546
  "default": "{}",
1474
1547
  "description": "Default grid options",
1475
1548
  "privacy": "public"
1549
+ },
1550
+ {
1551
+ "kind": "variable",
1552
+ "name": "DEFAULT_STATUS_BAR_CONFIG",
1553
+ "type": {
1554
+ "text": "GridProStatusBarConfig"
1555
+ },
1556
+ "default": "{\n rows: true,\n loadMore: {\n tooltip: 'Load more rows from server',\n },\n reload: {\n tooltip: 'Reload the datasource.',\n },\n}",
1557
+ "description": "Default status bar configuration",
1558
+ "privacy": "public"
1476
1559
  }
1477
1560
  ],
1478
1561
  "exports": [
@@ -1531,6 +1614,14 @@
1531
1614
  "name": "defaultGridOptionsConfig",
1532
1615
  "module": "src/grid-pro.types.ts"
1533
1616
  }
1617
+ },
1618
+ {
1619
+ "kind": "js",
1620
+ "name": "DEFAULT_STATUS_BAR_CONFIG",
1621
+ "declaration": {
1622
+ "name": "DEFAULT_STATUS_BAR_CONFIG",
1623
+ "module": "src/grid-pro.types.ts"
1624
+ }
1534
1625
  }
1535
1626
  ]
1536
1627
  },
@@ -1651,6 +1742,14 @@
1651
1742
  "package": "./state-persistence"
1652
1743
  }
1653
1744
  },
1745
+ {
1746
+ "kind": "js",
1747
+ "name": "*",
1748
+ "declaration": {
1749
+ "name": "*",
1750
+ "package": "./status-bar-components"
1751
+ }
1752
+ },
1654
1753
  {
1655
1754
  "kind": "js",
1656
1755
  "name": "*",
@@ -5777,7 +5876,9 @@
5777
5876
  "type": {
5778
5877
  "text": "string"
5779
5878
  },
5780
- "default": "';'"
5879
+ "default": "';'",
5880
+ "description": "The delimiter for the criteria string.",
5881
+ "privacy": "public"
5781
5882
  },
5782
5883
  {
5783
5884
  "kind": "variable",
@@ -5785,11 +5886,13 @@
5785
5886
  "type": {
5786
5887
  "text": "string"
5787
5888
  },
5788
- "default": "' && '"
5889
+ "default": "' && '",
5890
+ "description": "The join for the criteria string.",
5891
+ "privacy": "public"
5789
5892
  },
5790
5893
  {
5791
5894
  "kind": "class",
5792
- "description": "",
5895
+ "description": "The base datasource element for the grid-pro element.",
5793
5896
  "name": "GenesisGridDatasourceElement",
5794
5897
  "members": [
5795
5898
  {
@@ -6367,6 +6470,13 @@
6367
6470
  "type": {
6368
6471
  "text": "any[]"
6369
6472
  }
6473
+ },
6474
+ {
6475
+ "name": "addIndex",
6476
+ "default": "0",
6477
+ "type": {
6478
+ "text": "number"
6479
+ }
6370
6480
  }
6371
6481
  ]
6372
6482
  },
@@ -6502,6 +6612,50 @@
6502
6612
  }
6503
6613
  }
6504
6614
  },
6615
+ {
6616
+ "kind": "field",
6617
+ "name": "pagination",
6618
+ "type": {
6619
+ "text": "boolean"
6620
+ },
6621
+ "privacy": "protected",
6622
+ "readonly": true
6623
+ },
6624
+ {
6625
+ "kind": "method",
6626
+ "name": "loadMore"
6627
+ },
6628
+ {
6629
+ "kind": "method",
6630
+ "name": "restart"
6631
+ },
6632
+ {
6633
+ "kind": "method",
6634
+ "name": "reloadResourceData"
6635
+ },
6636
+ {
6637
+ "kind": "method",
6638
+ "name": "destroy"
6639
+ },
6640
+ {
6641
+ "kind": "method",
6642
+ "name": "getDatasourceStatusBarPanels",
6643
+ "privacy": "public",
6644
+ "return": {
6645
+ "type": {
6646
+ "text": "any[]"
6647
+ }
6648
+ },
6649
+ "parameters": [
6650
+ {
6651
+ "name": "isServerSide",
6652
+ "type": {
6653
+ "text": "boolean"
6654
+ }
6655
+ }
6656
+ ],
6657
+ "description": "Gets datasource-specific status bar component configurations.\nThis method should be called by the grid to get status bar panels specific to this datasource."
6658
+ },
6505
6659
  {
6506
6660
  "kind": "field",
6507
6661
  "name": "connect",
@@ -7337,6 +7491,19 @@
7337
7491
  "module": "src/datasource/base.datasource.ts"
7338
7492
  }
7339
7493
  },
7494
+ {
7495
+ "kind": "field",
7496
+ "name": "cachedRowArray",
7497
+ "type": {
7498
+ "text": "any[]"
7499
+ },
7500
+ "privacy": "private",
7501
+ "default": "[]",
7502
+ "inheritedFrom": {
7503
+ "name": "GridProGenesisDatasource",
7504
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7505
+ }
7506
+ },
7340
7507
  {
7341
7508
  "kind": "method",
7342
7509
  "name": "criteriaChanged",
@@ -7489,6 +7656,31 @@
7489
7656
  "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7490
7657
  }
7491
7658
  },
7659
+ {
7660
+ "kind": "field",
7661
+ "name": "_isMoreRowsResult",
7662
+ "type": {
7663
+ "text": "boolean"
7664
+ },
7665
+ "privacy": "private",
7666
+ "default": "false",
7667
+ "inheritedFrom": {
7668
+ "name": "GridProGenesisDatasource",
7669
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7670
+ }
7671
+ },
7672
+ {
7673
+ "kind": "field",
7674
+ "name": "_sourceRef",
7675
+ "type": {
7676
+ "text": "string"
7677
+ },
7678
+ "privacy": "private",
7679
+ "inheritedFrom": {
7680
+ "name": "GridProGenesisDatasource",
7681
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7682
+ }
7683
+ },
7492
7684
  {
7493
7685
  "kind": "method",
7494
7686
  "name": "colDefsDeepClone",
@@ -7551,8 +7743,8 @@
7551
7743
  "description": "Destroys the datasource, resetting it to its initial state.",
7552
7744
  "privacy": "public",
7553
7745
  "inheritedFrom": {
7554
- "name": "GridProGenesisDatasource",
7555
- "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7746
+ "name": "GridProBaseDatasource",
7747
+ "module": "src/datasource/base.datasource.ts"
7556
7748
  }
7557
7749
  },
7558
7750
  {
@@ -7580,11 +7772,11 @@
7580
7772
  {
7581
7773
  "kind": "method",
7582
7774
  "name": "restart",
7583
- "description": "Restarts the datasource, uses `deinit` and `init` in sequence.",
7775
+ "description": "Restarts the datasource, uses `destroy` and `init` in sequence.",
7584
7776
  "privacy": "public",
7585
7777
  "inheritedFrom": {
7586
- "name": "GridProGenesisDatasource",
7587
- "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7778
+ "name": "GridProBaseDatasource",
7779
+ "module": "src/datasource/base.datasource.ts"
7588
7780
  }
7589
7781
  },
7590
7782
  {
@@ -7596,6 +7788,21 @@
7596
7788
  "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7597
7789
  }
7598
7790
  },
7791
+ {
7792
+ "kind": "method",
7793
+ "name": "reloadResourceData",
7794
+ "privacy": "public",
7795
+ "return": {
7796
+ "type": {
7797
+ "text": "Promise<void>"
7798
+ }
7799
+ },
7800
+ "description": "Resets the grid data while keeping columnDefs and sends a DATA_LOGOFF message if it's a stream.\nLoads resource data without full initialization (no metadata fetch).",
7801
+ "inheritedFrom": {
7802
+ "name": "GridProBaseDatasource",
7803
+ "module": "src/datasource/base.datasource.ts"
7804
+ }
7805
+ },
7599
7806
  {
7600
7807
  "kind": "method",
7601
7808
  "name": "handleSnapshot",
@@ -7643,6 +7850,36 @@
7643
7850
  "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7644
7851
  }
7645
7852
  },
7853
+ {
7854
+ "kind": "method",
7855
+ "name": "updateLoadMoreStatus",
7856
+ "privacy": "private",
7857
+ "parameters": [
7858
+ {
7859
+ "name": "moreRows",
7860
+ "type": {
7861
+ "text": "boolean"
7862
+ },
7863
+ "description": "Whether more rows are available"
7864
+ },
7865
+ {
7866
+ "name": "sourceRef",
7867
+ "type": {
7868
+ "text": "string"
7869
+ },
7870
+ "description": "The source reference"
7871
+ },
7872
+ {
7873
+ "description": "The total number of rows",
7874
+ "name": "rowsCount"
7875
+ }
7876
+ ],
7877
+ "description": "Updates the status bar based on more rows status",
7878
+ "inheritedFrom": {
7879
+ "name": "GridProGenesisDatasource",
7880
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7881
+ }
7882
+ },
7646
7883
  {
7647
7884
  "kind": "method",
7648
7885
  "name": "applyRequestServerData",
@@ -7808,6 +8045,61 @@
7808
8045
  "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
7809
8046
  }
7810
8047
  },
8048
+ {
8049
+ "kind": "method",
8050
+ "name": "handleStreamInserts",
8051
+ "privacy": "protected",
8052
+ "parameters": [
8053
+ {
8054
+ "name": "inserts",
8055
+ "default": "[]"
8056
+ }
8057
+ ],
8058
+ "inheritedFrom": {
8059
+ "name": "GridProBaseDatasource",
8060
+ "module": "src/datasource/base.datasource.ts"
8061
+ }
8062
+ },
8063
+ {
8064
+ "kind": "method",
8065
+ "name": "handleStreamUpdates",
8066
+ "privacy": "protected",
8067
+ "parameters": [
8068
+ {
8069
+ "name": "updates",
8070
+ "default": "[]"
8071
+ }
8072
+ ],
8073
+ "inheritedFrom": {
8074
+ "name": "GridProBaseDatasource",
8075
+ "module": "src/datasource/base.datasource.ts"
8076
+ }
8077
+ },
8078
+ {
8079
+ "kind": "method",
8080
+ "name": "handleStreamDeletes",
8081
+ "privacy": "protected",
8082
+ "parameters": [
8083
+ {
8084
+ "name": "deletes",
8085
+ "default": "[]",
8086
+ "description": "List of records to remove from the grid stream"
8087
+ }
8088
+ ],
8089
+ "description": "Handles stream deletes by removing records from the grid.",
8090
+ "inheritedFrom": {
8091
+ "name": "GridProBaseDatasource",
8092
+ "module": "src/datasource/base.datasource.ts"
8093
+ }
8094
+ },
8095
+ {
8096
+ "kind": "method",
8097
+ "name": "loadMore",
8098
+ "inheritedFrom": {
8099
+ "name": "GridProBaseDatasource",
8100
+ "module": "src/datasource/base.datasource.ts"
8101
+ }
8102
+ },
7811
8103
  {
7812
8104
  "kind": "field",
7813
8105
  "name": "dataSubWasLoggedOff",
@@ -7876,16 +8168,8 @@
7876
8168
  },
7877
8169
  {
7878
8170
  "kind": "method",
7879
- "name": "handleStreamInserts",
8171
+ "name": "applyAllAgTransactions",
7880
8172
  "privacy": "protected",
7881
- "parameters": [
7882
- {
7883
- "name": "insertedRows",
7884
- "type": {
7885
- "text": "any[]"
7886
- }
7887
- }
7888
- ],
7889
8173
  "inheritedFrom": {
7890
8174
  "name": "GridProBaseDatasource",
7891
8175
  "module": "src/datasource/base.datasource.ts"
@@ -7893,51 +8177,8 @@
7893
8177
  },
7894
8178
  {
7895
8179
  "kind": "method",
7896
- "name": "handleStreamDeletes",
7897
- "privacy": "protected",
7898
- "parameters": [
7899
- {
7900
- "name": "deletedRows",
7901
- "type": {
7902
- "text": "any[]"
7903
- }
7904
- }
7905
- ],
7906
- "inheritedFrom": {
7907
- "name": "GridProBaseDatasource",
7908
- "module": "src/datasource/base.datasource.ts"
7909
- }
7910
- },
7911
- {
7912
- "kind": "method",
7913
- "name": "handleStreamUpdates",
7914
- "privacy": "protected",
7915
- "parameters": [
7916
- {
7917
- "name": "updatedRows",
7918
- "type": {
7919
- "text": "any[]"
7920
- }
7921
- }
7922
- ],
7923
- "inheritedFrom": {
7924
- "name": "GridProBaseDatasource",
7925
- "module": "src/datasource/base.datasource.ts"
7926
- }
7927
- },
7928
- {
7929
- "kind": "method",
7930
- "name": "applyAllAgTransactions",
7931
- "privacy": "protected",
7932
- "inheritedFrom": {
7933
- "name": "GridProBaseDatasource",
7934
- "module": "src/datasource/base.datasource.ts"
7935
- }
7936
- },
7937
- {
7938
- "kind": "method",
7939
- "name": "flashAddedCells",
7940
- "privacy": "private",
8180
+ "name": "flashAddedCells",
8181
+ "privacy": "private",
7941
8182
  "parameters": [
7942
8183
  {
7943
8184
  "name": "rowNodes"
@@ -8009,6 +8250,42 @@
8009
8250
  "module": "src/datasource/base.datasource.ts"
8010
8251
  }
8011
8252
  },
8253
+ {
8254
+ "kind": "field",
8255
+ "name": "pagination",
8256
+ "type": {
8257
+ "text": "boolean"
8258
+ },
8259
+ "privacy": "protected",
8260
+ "readonly": true,
8261
+ "inheritedFrom": {
8262
+ "name": "GridProBaseDatasource",
8263
+ "module": "src/datasource/base.datasource.ts"
8264
+ }
8265
+ },
8266
+ {
8267
+ "kind": "method",
8268
+ "name": "getDatasourceStatusBarPanels",
8269
+ "privacy": "public",
8270
+ "return": {
8271
+ "type": {
8272
+ "text": "any[]"
8273
+ }
8274
+ },
8275
+ "parameters": [
8276
+ {
8277
+ "name": "isServerSide",
8278
+ "type": {
8279
+ "text": "boolean"
8280
+ }
8281
+ }
8282
+ ],
8283
+ "description": "Gets datasource-specific status bar component configurations.\nThis method should be called by the grid to get status bar panels specific to this datasource.",
8284
+ "inheritedFrom": {
8285
+ "name": "GridProBaseDatasource",
8286
+ "module": "src/datasource/base.datasource.ts"
8287
+ }
8288
+ },
8012
8289
  {
8013
8290
  "kind": "field",
8014
8291
  "name": "connect",
@@ -8723,6 +9000,14 @@
8723
9000
  "path": "src/datasource/index.ts",
8724
9001
  "declarations": [],
8725
9002
  "exports": [
9003
+ {
9004
+ "kind": "js",
9005
+ "name": "*",
9006
+ "declaration": {
9007
+ "name": "*",
9008
+ "package": "./base.datasource"
9009
+ }
9010
+ },
8726
9011
  {
8727
9012
  "kind": "js",
8728
9013
  "name": "*",
@@ -8784,14 +9069,6 @@
8784
9069
  "module": "src/datasource/base.datasource.ts"
8785
9070
  }
8786
9071
  },
8787
- {
8788
- "kind": "field",
8789
- "name": "pagination",
8790
- "type": {
8791
- "text": "boolean"
8792
- },
8793
- "default": "false"
8794
- },
8795
9072
  {
8796
9073
  "kind": "field",
8797
9074
  "name": "zeroBasedViewNumber",
@@ -8895,6 +9172,30 @@
8895
9172
  "module": "src/mixins/lifecycle/lifecycle.ts"
8896
9173
  }
8897
9174
  },
9175
+ {
9176
+ "kind": "method",
9177
+ "name": "reloadResourceData",
9178
+ "privacy": "public",
9179
+ "return": {
9180
+ "type": {
9181
+ "text": "Promise<void>"
9182
+ }
9183
+ },
9184
+ "parameters": [
9185
+ {
9186
+ "name": "params",
9187
+ "optional": true,
9188
+ "type": {
9189
+ "text": "any"
9190
+ }
9191
+ }
9192
+ ],
9193
+ "description": "Resets the grid data while keeping columnDefs and reloads data.",
9194
+ "inheritedFrom": {
9195
+ "name": "GridProBaseDatasource",
9196
+ "module": "src/datasource/base.datasource.ts"
9197
+ }
9198
+ },
8898
9199
  {
8899
9200
  "kind": "method",
8900
9201
  "name": "init"
@@ -8913,11 +9214,19 @@
8913
9214
  },
8914
9215
  {
8915
9216
  "kind": "method",
8916
- "name": "destroy"
9217
+ "name": "destroy",
9218
+ "inheritedFrom": {
9219
+ "name": "GridProBaseDatasource",
9220
+ "module": "src/datasource/base.datasource.ts"
9221
+ }
8917
9222
  },
8918
9223
  {
8919
9224
  "kind": "method",
8920
- "name": "restart"
9225
+ "name": "restart",
9226
+ "inheritedFrom": {
9227
+ "name": "GridProBaseDatasource",
9228
+ "module": "src/datasource/base.datasource.ts"
9229
+ }
8921
9230
  },
8922
9231
  {
8923
9232
  "kind": "method",
@@ -9057,6 +9366,14 @@
9057
9366
  "module": "src/datasource/base.datasource.ts"
9058
9367
  }
9059
9368
  },
9369
+ {
9370
+ "kind": "method",
9371
+ "name": "loadMore",
9372
+ "inheritedFrom": {
9373
+ "name": "GridProBaseDatasource",
9374
+ "module": "src/datasource/base.datasource.ts"
9375
+ }
9376
+ },
9060
9377
  {
9061
9378
  "kind": "method",
9062
9379
  "name": "cloneNode",
@@ -9204,6 +9521,13 @@
9204
9521
  "type": {
9205
9522
  "text": "any[]"
9206
9523
  }
9524
+ },
9525
+ {
9526
+ "name": "addIndex",
9527
+ "default": "0",
9528
+ "type": {
9529
+ "text": "number"
9530
+ }
9207
9531
  }
9208
9532
  ],
9209
9533
  "inheritedFrom": {
@@ -9329,6 +9653,42 @@
9329
9653
  "module": "src/datasource/base.datasource.ts"
9330
9654
  }
9331
9655
  },
9656
+ {
9657
+ "kind": "field",
9658
+ "name": "pagination",
9659
+ "type": {
9660
+ "text": "boolean"
9661
+ },
9662
+ "privacy": "protected",
9663
+ "readonly": true,
9664
+ "inheritedFrom": {
9665
+ "name": "GridProBaseDatasource",
9666
+ "module": "src/datasource/base.datasource.ts"
9667
+ }
9668
+ },
9669
+ {
9670
+ "kind": "method",
9671
+ "name": "getDatasourceStatusBarPanels",
9672
+ "privacy": "public",
9673
+ "return": {
9674
+ "type": {
9675
+ "text": "any[]"
9676
+ }
9677
+ },
9678
+ "parameters": [
9679
+ {
9680
+ "name": "isServerSide",
9681
+ "type": {
9682
+ "text": "boolean"
9683
+ }
9684
+ }
9685
+ ],
9686
+ "description": "Gets datasource-specific status bar component configurations.\nThis method should be called by the grid to get status bar panels specific to this datasource.",
9687
+ "inheritedFrom": {
9688
+ "name": "GridProBaseDatasource",
9689
+ "module": "src/datasource/base.datasource.ts"
9690
+ }
9691
+ },
9332
9692
  {
9333
9693
  "kind": "field",
9334
9694
  "name": "connect",
@@ -9823,17 +10183,6 @@
9823
10183
  }
9824
10184
  ],
9825
10185
  "attributes": [
9826
- {
9827
- "type": {
9828
- "text": "boolean"
9829
- },
9830
- "default": "false",
9831
- "fieldName": "pagination",
9832
- "inheritedFrom": {
9833
- "name": "GenesisGridDatasourceElement",
9834
- "module": "src/datasource/base.datasource.ts"
9835
- }
9836
- },
9837
10186
  {
9838
10187
  "name": "zero-based-view-number",
9839
10188
  "type": {
@@ -9942,6 +10291,17 @@
9942
10291
  "module": "src/datasource/base.datasource.ts"
9943
10292
  }
9944
10293
  },
10294
+ {
10295
+ "type": {
10296
+ "text": "boolean"
10297
+ },
10298
+ "default": "false",
10299
+ "fieldName": "reverse",
10300
+ "inheritedFrom": {
10301
+ "name": "GenesisGridDatasourceElement",
10302
+ "module": "src/datasource/base.datasource.ts"
10303
+ }
10304
+ },
9945
10305
  {
9946
10306
  "name": "view-number",
9947
10307
  "type": {
@@ -11838,6 +12198,15 @@
11838
12198
  "module": "src/datasource/base.datasource.ts"
11839
12199
  }
11840
12200
  },
12201
+ {
12202
+ "kind": "field",
12203
+ "name": "cachedRowArray",
12204
+ "type": {
12205
+ "text": "any[]"
12206
+ },
12207
+ "privacy": "private",
12208
+ "default": "[]"
12209
+ },
11841
12210
  {
11842
12211
  "kind": "method",
11843
12212
  "name": "criteriaChanged",
@@ -11950,6 +12319,23 @@
11950
12319
  "privacy": "private",
11951
12320
  "default": "false"
11952
12321
  },
12322
+ {
12323
+ "kind": "field",
12324
+ "name": "_isMoreRowsResult",
12325
+ "type": {
12326
+ "text": "boolean"
12327
+ },
12328
+ "privacy": "private",
12329
+ "default": "false"
12330
+ },
12331
+ {
12332
+ "kind": "field",
12333
+ "name": "_sourceRef",
12334
+ "type": {
12335
+ "text": "string"
12336
+ },
12337
+ "privacy": "private"
12338
+ },
11953
12339
  {
11954
12340
  "kind": "method",
11955
12341
  "name": "deepClone",
@@ -12015,7 +12401,11 @@
12015
12401
  "kind": "method",
12016
12402
  "name": "destroy",
12017
12403
  "description": "Destroys the datasource, resetting it to its initial state.",
12018
- "privacy": "public"
12404
+ "privacy": "public",
12405
+ "inheritedFrom": {
12406
+ "name": "GridProBaseDatasource",
12407
+ "module": "src/datasource/base.datasource.ts"
12408
+ }
12019
12409
  },
12020
12410
  {
12021
12411
  "kind": "method",
@@ -12034,14 +12424,33 @@
12034
12424
  {
12035
12425
  "kind": "method",
12036
12426
  "name": "restart",
12037
- "description": "Restarts the datasource, uses `deinit` and `init` in sequence.",
12038
- "privacy": "public"
12427
+ "description": "Restarts the datasource, uses `destroy` and `init` in sequence.",
12428
+ "privacy": "public",
12429
+ "inheritedFrom": {
12430
+ "name": "GridProBaseDatasource",
12431
+ "module": "src/datasource/base.datasource.ts"
12432
+ }
12039
12433
  },
12040
12434
  {
12041
12435
  "kind": "method",
12042
12436
  "name": "refreshRows",
12043
12437
  "description": "Force the grid to redispatch the current rows"
12044
12438
  },
12439
+ {
12440
+ "kind": "method",
12441
+ "name": "reloadResourceData",
12442
+ "privacy": "public",
12443
+ "return": {
12444
+ "type": {
12445
+ "text": "Promise<void>"
12446
+ }
12447
+ },
12448
+ "description": "Resets the grid data while keeping columnDefs and sends a DATA_LOGOFF message if it's a stream.\nLoads resource data without full initialization (no metadata fetch).",
12449
+ "inheritedFrom": {
12450
+ "name": "GridProBaseDatasource",
12451
+ "module": "src/datasource/base.datasource.ts"
12452
+ }
12453
+ },
12045
12454
  {
12046
12455
  "kind": "method",
12047
12456
  "name": "handleSnapshot",
@@ -12077,6 +12486,32 @@
12077
12486
  }
12078
12487
  ]
12079
12488
  },
12489
+ {
12490
+ "kind": "method",
12491
+ "name": "updateLoadMoreStatus",
12492
+ "privacy": "private",
12493
+ "parameters": [
12494
+ {
12495
+ "name": "moreRows",
12496
+ "type": {
12497
+ "text": "boolean"
12498
+ },
12499
+ "description": "Whether more rows are available"
12500
+ },
12501
+ {
12502
+ "name": "sourceRef",
12503
+ "type": {
12504
+ "text": "string"
12505
+ },
12506
+ "description": "The source reference"
12507
+ },
12508
+ {
12509
+ "description": "The total number of rows",
12510
+ "name": "rowsCount"
12511
+ }
12512
+ ],
12513
+ "description": "Updates the status bar based on more rows status"
12514
+ },
12080
12515
  {
12081
12516
  "kind": "method",
12082
12517
  "name": "applyRequestServerData",
@@ -12226,6 +12661,61 @@
12226
12661
  }
12227
12662
  ]
12228
12663
  },
12664
+ {
12665
+ "kind": "method",
12666
+ "name": "handleStreamInserts",
12667
+ "privacy": "protected",
12668
+ "parameters": [
12669
+ {
12670
+ "name": "inserts",
12671
+ "default": "[]"
12672
+ }
12673
+ ],
12674
+ "inheritedFrom": {
12675
+ "name": "GridProBaseDatasource",
12676
+ "module": "src/datasource/base.datasource.ts"
12677
+ }
12678
+ },
12679
+ {
12680
+ "kind": "method",
12681
+ "name": "handleStreamUpdates",
12682
+ "privacy": "protected",
12683
+ "parameters": [
12684
+ {
12685
+ "name": "updates",
12686
+ "default": "[]"
12687
+ }
12688
+ ],
12689
+ "inheritedFrom": {
12690
+ "name": "GridProBaseDatasource",
12691
+ "module": "src/datasource/base.datasource.ts"
12692
+ }
12693
+ },
12694
+ {
12695
+ "kind": "method",
12696
+ "name": "handleStreamDeletes",
12697
+ "privacy": "protected",
12698
+ "parameters": [
12699
+ {
12700
+ "name": "deletes",
12701
+ "default": "[]",
12702
+ "description": "List of records to remove from the grid stream"
12703
+ }
12704
+ ],
12705
+ "description": "Handles stream deletes by removing records from the grid.",
12706
+ "inheritedFrom": {
12707
+ "name": "GridProBaseDatasource",
12708
+ "module": "src/datasource/base.datasource.ts"
12709
+ }
12710
+ },
12711
+ {
12712
+ "kind": "method",
12713
+ "name": "loadMore",
12714
+ "inheritedFrom": {
12715
+ "name": "GridProBaseDatasource",
12716
+ "module": "src/datasource/base.datasource.ts"
12717
+ }
12718
+ },
12229
12719
  {
12230
12720
  "kind": "method",
12231
12721
  "name": "cloneNode",
@@ -12363,57 +12853,6 @@
12363
12853
  "module": "src/datasource/base.datasource.ts"
12364
12854
  }
12365
12855
  },
12366
- {
12367
- "kind": "method",
12368
- "name": "handleStreamInserts",
12369
- "privacy": "protected",
12370
- "parameters": [
12371
- {
12372
- "name": "insertedRows",
12373
- "type": {
12374
- "text": "any[]"
12375
- }
12376
- }
12377
- ],
12378
- "inheritedFrom": {
12379
- "name": "GridProBaseDatasource",
12380
- "module": "src/datasource/base.datasource.ts"
12381
- }
12382
- },
12383
- {
12384
- "kind": "method",
12385
- "name": "handleStreamDeletes",
12386
- "privacy": "protected",
12387
- "parameters": [
12388
- {
12389
- "name": "deletedRows",
12390
- "type": {
12391
- "text": "any[]"
12392
- }
12393
- }
12394
- ],
12395
- "inheritedFrom": {
12396
- "name": "GridProBaseDatasource",
12397
- "module": "src/datasource/base.datasource.ts"
12398
- }
12399
- },
12400
- {
12401
- "kind": "method",
12402
- "name": "handleStreamUpdates",
12403
- "privacy": "protected",
12404
- "parameters": [
12405
- {
12406
- "name": "updatedRows",
12407
- "type": {
12408
- "text": "any[]"
12409
- }
12410
- }
12411
- ],
12412
- "inheritedFrom": {
12413
- "name": "GridProBaseDatasource",
12414
- "module": "src/datasource/base.datasource.ts"
12415
- }
12416
- },
12417
12856
  {
12418
12857
  "kind": "method",
12419
12858
  "name": "applyAllAgTransactions",
@@ -12498,6 +12937,42 @@
12498
12937
  "module": "src/datasource/base.datasource.ts"
12499
12938
  }
12500
12939
  },
12940
+ {
12941
+ "kind": "field",
12942
+ "name": "pagination",
12943
+ "type": {
12944
+ "text": "boolean"
12945
+ },
12946
+ "privacy": "protected",
12947
+ "readonly": true,
12948
+ "inheritedFrom": {
12949
+ "name": "GridProBaseDatasource",
12950
+ "module": "src/datasource/base.datasource.ts"
12951
+ }
12952
+ },
12953
+ {
12954
+ "kind": "method",
12955
+ "name": "getDatasourceStatusBarPanels",
12956
+ "privacy": "public",
12957
+ "return": {
12958
+ "type": {
12959
+ "text": "any[]"
12960
+ }
12961
+ },
12962
+ "parameters": [
12963
+ {
12964
+ "name": "isServerSide",
12965
+ "type": {
12966
+ "text": "boolean"
12967
+ }
12968
+ }
12969
+ ],
12970
+ "description": "Gets datasource-specific status bar component configurations.\nThis method should be called by the grid to get status bar panels specific to this datasource.",
12971
+ "inheritedFrom": {
12972
+ "name": "GridProBaseDatasource",
12973
+ "module": "src/datasource/base.datasource.ts"
12974
+ }
12975
+ },
12501
12976
  {
12502
12977
  "kind": "field",
12503
12978
  "name": "connect",
@@ -13489,6 +13964,696 @@
13489
13964
  "declarations": [],
13490
13965
  "exports": []
13491
13966
  },
13967
+ {
13968
+ "kind": "javascript-module",
13969
+ "path": "src/status-bar-components/index.ts",
13970
+ "declarations": [],
13971
+ "exports": [
13972
+ {
13973
+ "kind": "js",
13974
+ "name": "*",
13975
+ "declaration": {
13976
+ "name": "*",
13977
+ "package": "./load-more.status-bar"
13978
+ }
13979
+ },
13980
+ {
13981
+ "kind": "js",
13982
+ "name": "*",
13983
+ "declaration": {
13984
+ "name": "*",
13985
+ "package": "./pagination.status-bar"
13986
+ }
13987
+ },
13988
+ {
13989
+ "kind": "js",
13990
+ "name": "*",
13991
+ "declaration": {
13992
+ "name": "*",
13993
+ "package": "./label-value.status-bar"
13994
+ }
13995
+ },
13996
+ {
13997
+ "kind": "js",
13998
+ "name": "*",
13999
+ "declaration": {
14000
+ "name": "*",
14001
+ "package": "./reload.status-bar"
14002
+ }
14003
+ }
14004
+ ]
14005
+ },
14006
+ {
14007
+ "kind": "javascript-module",
14008
+ "path": "src/status-bar-components/label-value.status-bar.ts",
14009
+ "declarations": [
14010
+ {
14011
+ "kind": "class",
14012
+ "description": "Label Value Status Bar Component",
14013
+ "name": "LabelValueStatusBarComponent",
14014
+ "members": [
14015
+ {
14016
+ "kind": "field",
14017
+ "name": "element",
14018
+ "type": {
14019
+ "text": "HTMLElement"
14020
+ },
14021
+ "privacy": "private"
14022
+ },
14023
+ {
14024
+ "kind": "method",
14025
+ "name": "init",
14026
+ "parameters": [
14027
+ {
14028
+ "name": "params",
14029
+ "type": {
14030
+ "text": "IStatusPanelParams"
14031
+ }
14032
+ }
14033
+ ]
14034
+ },
14035
+ {
14036
+ "kind": "method",
14037
+ "name": "getGui",
14038
+ "return": {
14039
+ "type": {
14040
+ "text": "HTMLElement"
14041
+ }
14042
+ }
14043
+ },
14044
+ {
14045
+ "kind": "method",
14046
+ "name": "destroy"
14047
+ }
14048
+ ]
14049
+ }
14050
+ ],
14051
+ "exports": [
14052
+ {
14053
+ "kind": "js",
14054
+ "name": "LabelValueStatusBarComponent",
14055
+ "declaration": {
14056
+ "name": "LabelValueStatusBarComponent",
14057
+ "module": "src/status-bar-components/label-value.status-bar.ts"
14058
+ }
14059
+ }
14060
+ ]
14061
+ },
14062
+ {
14063
+ "kind": "javascript-module",
14064
+ "path": "src/status-bar-components/load-more.status-bar.ts",
14065
+ "declarations": [
14066
+ {
14067
+ "kind": "class",
14068
+ "description": "A status bar component that shows a \"Load More\" button when more rows are available",
14069
+ "name": "LoadMoreStatusBarComponent",
14070
+ "members": [
14071
+ {
14072
+ "kind": "field",
14073
+ "name": "element",
14074
+ "type": {
14075
+ "text": "HTMLElement"
14076
+ },
14077
+ "privacy": "private"
14078
+ },
14079
+ {
14080
+ "kind": "field",
14081
+ "name": "loadMoreButton",
14082
+ "type": {
14083
+ "text": "HTMLElement"
14084
+ },
14085
+ "privacy": "private"
14086
+ },
14087
+ {
14088
+ "kind": "field",
14089
+ "name": "progressRing",
14090
+ "type": {
14091
+ "text": "HTMLElement"
14092
+ },
14093
+ "privacy": "private"
14094
+ },
14095
+ {
14096
+ "kind": "field",
14097
+ "name": "buttonLabel",
14098
+ "type": {
14099
+ "text": "string"
14100
+ },
14101
+ "privacy": "private",
14102
+ "default": "'Load More'"
14103
+ },
14104
+ {
14105
+ "kind": "field",
14106
+ "name": "params",
14107
+ "type": {
14108
+ "text": "LoadMoreStatusBarParams"
14109
+ },
14110
+ "privacy": "private"
14111
+ },
14112
+ {
14113
+ "kind": "field",
14114
+ "name": "designSystemPrefix",
14115
+ "type": {
14116
+ "text": "string"
14117
+ },
14118
+ "privacy": "private"
14119
+ },
14120
+ {
14121
+ "kind": "field",
14122
+ "name": "isLoading",
14123
+ "type": {
14124
+ "text": "boolean"
14125
+ },
14126
+ "privacy": "private",
14127
+ "default": "false"
14128
+ },
14129
+ {
14130
+ "kind": "field",
14131
+ "name": "isLeftAligned",
14132
+ "type": {
14133
+ "text": "boolean"
14134
+ },
14135
+ "privacy": "private",
14136
+ "default": "false"
14137
+ },
14138
+ {
14139
+ "kind": "field",
14140
+ "name": "gridApi",
14141
+ "type": {
14142
+ "text": "any"
14143
+ },
14144
+ "privacy": "private"
14145
+ },
14146
+ {
14147
+ "kind": "field",
14148
+ "name": "clickHandler",
14149
+ "type": {
14150
+ "text": "(event: MouseEvent) => void"
14151
+ },
14152
+ "privacy": "private"
14153
+ },
14154
+ {
14155
+ "kind": "method",
14156
+ "name": "init",
14157
+ "parameters": [
14158
+ {
14159
+ "name": "params",
14160
+ "type": {
14161
+ "text": "IStatusPanelParams"
14162
+ }
14163
+ }
14164
+ ]
14165
+ },
14166
+ {
14167
+ "kind": "method",
14168
+ "name": "createProgressRing",
14169
+ "privacy": "private"
14170
+ },
14171
+ {
14172
+ "kind": "method",
14173
+ "name": "createLoadMoreButton",
14174
+ "privacy": "private"
14175
+ },
14176
+ {
14177
+ "kind": "method",
14178
+ "name": "updateAriaLabel",
14179
+ "privacy": "private",
14180
+ "return": {
14181
+ "type": {
14182
+ "text": "void"
14183
+ }
14184
+ },
14185
+ "description": "Update the aria-label based on current state and tooltip"
14186
+ },
14187
+ {
14188
+ "kind": "method",
14189
+ "name": "showLoading",
14190
+ "privacy": "private",
14191
+ "return": {
14192
+ "type": {
14193
+ "text": "void"
14194
+ }
14195
+ },
14196
+ "parameters": [
14197
+ {
14198
+ "name": "loading",
14199
+ "type": {
14200
+ "text": "boolean"
14201
+ }
14202
+ }
14203
+ ],
14204
+ "description": "Show or hide the loading state"
14205
+ },
14206
+ {
14207
+ "kind": "method",
14208
+ "name": "updateButtonVisibility",
14209
+ "privacy": "public"
14210
+ },
14211
+ {
14212
+ "kind": "method",
14213
+ "name": "updateParams",
14214
+ "privacy": "public",
14215
+ "parameters": [
14216
+ {
14217
+ "name": "params",
14218
+ "type": {
14219
+ "text": "LoadMoreStatusBarParams"
14220
+ }
14221
+ }
14222
+ ]
14223
+ },
14224
+ {
14225
+ "kind": "method",
14226
+ "name": "getGui",
14227
+ "return": {
14228
+ "type": {
14229
+ "text": "HTMLElement"
14230
+ }
14231
+ }
14232
+ },
14233
+ {
14234
+ "kind": "method",
14235
+ "name": "destroy"
14236
+ }
14237
+ ]
14238
+ }
14239
+ ],
14240
+ "exports": [
14241
+ {
14242
+ "kind": "js",
14243
+ "name": "LoadMoreStatusBarComponent",
14244
+ "declaration": {
14245
+ "name": "LoadMoreStatusBarComponent",
14246
+ "module": "src/status-bar-components/load-more.status-bar.ts"
14247
+ }
14248
+ }
14249
+ ]
14250
+ },
14251
+ {
14252
+ "kind": "javascript-module",
14253
+ "path": "src/status-bar-components/pagination.status-bar.ts",
14254
+ "declarations": [
14255
+ {
14256
+ "kind": "class",
14257
+ "description": "Pagination Status Bar Component for AG Grid\nDisplays pagination controls and information about current page and total rows",
14258
+ "name": "PaginationStatusBarComponent",
14259
+ "members": [
14260
+ {
14261
+ "kind": "field",
14262
+ "name": "eGui",
14263
+ "type": {
14264
+ "text": "HTMLElement"
14265
+ },
14266
+ "privacy": "private"
14267
+ },
14268
+ {
14269
+ "kind": "field",
14270
+ "name": "api",
14271
+ "type": {
14272
+ "text": "GridApi"
14273
+ },
14274
+ "privacy": "private"
14275
+ },
14276
+ {
14277
+ "kind": "field",
14278
+ "name": "paginationPanel",
14279
+ "type": {
14280
+ "text": "HTMLElement"
14281
+ },
14282
+ "privacy": "private"
14283
+ },
14284
+ {
14285
+ "kind": "field",
14286
+ "name": "paginationSummaryPanel",
14287
+ "type": {
14288
+ "text": "HTMLElement"
14289
+ },
14290
+ "privacy": "private"
14291
+ },
14292
+ {
14293
+ "kind": "field",
14294
+ "name": "firstPageButton",
14295
+ "type": {
14296
+ "text": "HTMLElement"
14297
+ },
14298
+ "privacy": "private"
14299
+ },
14300
+ {
14301
+ "kind": "field",
14302
+ "name": "prevPageButton",
14303
+ "type": {
14304
+ "text": "HTMLElement"
14305
+ },
14306
+ "privacy": "private"
14307
+ },
14308
+ {
14309
+ "kind": "field",
14310
+ "name": "descriptionPanel",
14311
+ "type": {
14312
+ "text": "HTMLElement"
14313
+ },
14314
+ "privacy": "private"
14315
+ },
14316
+ {
14317
+ "kind": "field",
14318
+ "name": "pageStartDisplay",
14319
+ "type": {
14320
+ "text": "HTMLElement"
14321
+ },
14322
+ "privacy": "private"
14323
+ },
14324
+ {
14325
+ "kind": "field",
14326
+ "name": "pageNumberDisplay",
14327
+ "type": {
14328
+ "text": "HTMLElement"
14329
+ },
14330
+ "privacy": "private"
14331
+ },
14332
+ {
14333
+ "kind": "field",
14334
+ "name": "pageOfDisplay",
14335
+ "type": {
14336
+ "text": "HTMLElement"
14337
+ },
14338
+ "privacy": "private"
14339
+ },
14340
+ {
14341
+ "kind": "field",
14342
+ "name": "pageNumberTotalDisplay",
14343
+ "type": {
14344
+ "text": "HTMLElement"
14345
+ },
14346
+ "privacy": "private"
14347
+ },
14348
+ {
14349
+ "kind": "field",
14350
+ "name": "nextPageButton",
14351
+ "type": {
14352
+ "text": "HTMLElement"
14353
+ },
14354
+ "privacy": "private"
14355
+ },
14356
+ {
14357
+ "kind": "field",
14358
+ "name": "lastPageButton",
14359
+ "type": {
14360
+ "text": "HTMLElement"
14361
+ },
14362
+ "privacy": "private"
14363
+ },
14364
+ {
14365
+ "kind": "field",
14366
+ "name": "paginationChangedHandler",
14367
+ "type": {
14368
+ "text": "() => void"
14369
+ },
14370
+ "privacy": "private"
14371
+ },
14372
+ {
14373
+ "kind": "method",
14374
+ "name": "init",
14375
+ "parameters": [
14376
+ {
14377
+ "name": "params",
14378
+ "type": {
14379
+ "text": "IStatusPanelParams"
14380
+ }
14381
+ }
14382
+ ]
14383
+ },
14384
+ {
14385
+ "kind": "method",
14386
+ "name": "getGui"
14387
+ },
14388
+ {
14389
+ "kind": "method",
14390
+ "name": "createPaginationPanel",
14391
+ "privacy": "private"
14392
+ },
14393
+ {
14394
+ "kind": "method",
14395
+ "name": "addPaginationEventListeners",
14396
+ "privacy": "private",
14397
+ "return": {
14398
+ "type": {
14399
+ "text": "void"
14400
+ }
14401
+ }
14402
+ },
14403
+ {
14404
+ "kind": "method",
14405
+ "name": "createPaginationButton",
14406
+ "privacy": "private",
14407
+ "return": {
14408
+ "type": {
14409
+ "text": "HTMLElement"
14410
+ }
14411
+ },
14412
+ "parameters": [
14413
+ {
14414
+ "name": "ref",
14415
+ "type": {
14416
+ "text": "string"
14417
+ }
14418
+ },
14419
+ {
14420
+ "name": "className",
14421
+ "type": {
14422
+ "text": "string"
14423
+ }
14424
+ },
14425
+ {
14426
+ "name": "ariaLabel",
14427
+ "type": {
14428
+ "text": "string"
14429
+ }
14430
+ },
14431
+ {
14432
+ "name": "disabled",
14433
+ "type": {
14434
+ "text": "boolean"
14435
+ }
14436
+ }
14437
+ ]
14438
+ },
14439
+ {
14440
+ "kind": "method",
14441
+ "name": "goToPage",
14442
+ "privacy": "private",
14443
+ "parameters": [
14444
+ {
14445
+ "name": "page",
14446
+ "type": {
14447
+ "text": "'first' | 'previous' | 'next' | 'last'"
14448
+ }
14449
+ }
14450
+ ]
14451
+ },
14452
+ {
14453
+ "kind": "method",
14454
+ "name": "updateDisplay",
14455
+ "privacy": "private"
14456
+ },
14457
+ {
14458
+ "kind": "method",
14459
+ "name": "updateButtonState",
14460
+ "privacy": "private",
14461
+ "parameters": [
14462
+ {
14463
+ "name": "button",
14464
+ "type": {
14465
+ "text": "HTMLElement"
14466
+ }
14467
+ },
14468
+ {
14469
+ "name": "disabled",
14470
+ "type": {
14471
+ "text": "boolean"
14472
+ }
14473
+ }
14474
+ ]
14475
+ },
14476
+ {
14477
+ "kind": "method",
14478
+ "name": "destroy"
14479
+ }
14480
+ ]
14481
+ }
14482
+ ],
14483
+ "exports": [
14484
+ {
14485
+ "kind": "js",
14486
+ "name": "PaginationStatusBarComponent",
14487
+ "declaration": {
14488
+ "name": "PaginationStatusBarComponent",
14489
+ "module": "src/status-bar-components/pagination.status-bar.ts"
14490
+ }
14491
+ }
14492
+ ]
14493
+ },
14494
+ {
14495
+ "kind": "javascript-module",
14496
+ "path": "src/status-bar-components/reload.status-bar.ts",
14497
+ "declarations": [
14498
+ {
14499
+ "kind": "class",
14500
+ "description": "A status bar component that shows a refresh icon to reload the grid data",
14501
+ "name": "ReloadStatusBarComponent",
14502
+ "members": [
14503
+ {
14504
+ "kind": "field",
14505
+ "name": "element",
14506
+ "type": {
14507
+ "text": "HTMLElement"
14508
+ },
14509
+ "privacy": "private"
14510
+ },
14511
+ {
14512
+ "kind": "field",
14513
+ "name": "refreshIcon",
14514
+ "type": {
14515
+ "text": "HTMLElement"
14516
+ },
14517
+ "privacy": "private"
14518
+ },
14519
+ {
14520
+ "kind": "field",
14521
+ "name": "progressRing",
14522
+ "type": {
14523
+ "text": "HTMLElement"
14524
+ },
14525
+ "privacy": "private"
14526
+ },
14527
+ {
14528
+ "kind": "field",
14529
+ "name": "params",
14530
+ "type": {
14531
+ "text": "ReloadStatusBarParams"
14532
+ },
14533
+ "privacy": "private"
14534
+ },
14535
+ {
14536
+ "kind": "field",
14537
+ "name": "designSystemPrefix",
14538
+ "type": {
14539
+ "text": "string"
14540
+ },
14541
+ "privacy": "private"
14542
+ },
14543
+ {
14544
+ "kind": "field",
14545
+ "name": "isReloading",
14546
+ "type": {
14547
+ "text": "boolean"
14548
+ },
14549
+ "privacy": "private",
14550
+ "default": "false"
14551
+ },
14552
+ {
14553
+ "kind": "field",
14554
+ "name": "mouseoverHandler",
14555
+ "type": {
14556
+ "text": "(event: MouseEvent) => void"
14557
+ },
14558
+ "privacy": "private"
14559
+ },
14560
+ {
14561
+ "kind": "field",
14562
+ "name": "mouseoutHandler",
14563
+ "type": {
14564
+ "text": "(event: MouseEvent) => void"
14565
+ },
14566
+ "privacy": "private"
14567
+ },
14568
+ {
14569
+ "kind": "field",
14570
+ "name": "clickHandler",
14571
+ "type": {
14572
+ "text": "(event: MouseEvent) => void"
14573
+ },
14574
+ "privacy": "private"
14575
+ },
14576
+ {
14577
+ "kind": "method",
14578
+ "name": "init",
14579
+ "parameters": [
14580
+ {
14581
+ "name": "params",
14582
+ "type": {
14583
+ "text": "IStatusPanelParams"
14584
+ }
14585
+ }
14586
+ ]
14587
+ },
14588
+ {
14589
+ "kind": "method",
14590
+ "name": "createProgressRing",
14591
+ "privacy": "private"
14592
+ },
14593
+ {
14594
+ "kind": "method",
14595
+ "name": "createRefreshIcon",
14596
+ "privacy": "private"
14597
+ },
14598
+ {
14599
+ "kind": "method",
14600
+ "name": "showReloading",
14601
+ "privacy": "private",
14602
+ "return": {
14603
+ "type": {
14604
+ "text": "void"
14605
+ }
14606
+ },
14607
+ "parameters": [
14608
+ {
14609
+ "name": "reloading",
14610
+ "type": {
14611
+ "text": "boolean"
14612
+ }
14613
+ }
14614
+ ],
14615
+ "description": "Show or hide the reloading state"
14616
+ },
14617
+ {
14618
+ "kind": "method",
14619
+ "name": "updateParams",
14620
+ "privacy": "public",
14621
+ "parameters": [
14622
+ {
14623
+ "name": "params",
14624
+ "type": {
14625
+ "text": "ReloadStatusBarParams"
14626
+ }
14627
+ }
14628
+ ]
14629
+ },
14630
+ {
14631
+ "kind": "method",
14632
+ "name": "getGui",
14633
+ "return": {
14634
+ "type": {
14635
+ "text": "HTMLElement"
14636
+ }
14637
+ }
14638
+ },
14639
+ {
14640
+ "kind": "method",
14641
+ "name": "destroy"
14642
+ }
14643
+ ]
14644
+ }
14645
+ ],
14646
+ "exports": [
14647
+ {
14648
+ "kind": "js",
14649
+ "name": "ReloadStatusBarComponent",
14650
+ "declaration": {
14651
+ "name": "ReloadStatusBarComponent",
14652
+ "module": "src/status-bar-components/reload.status-bar.ts"
14653
+ }
14654
+ }
14655
+ ]
14656
+ },
13492
14657
  {
13493
14658
  "kind": "javascript-module",
13494
14659
  "path": "src/style/colors.ts",