@genesislcap/grid-pro 14.483.3-alpha-92cb1f2a8.0 → 14.484.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +42 -42
- package/dist/dts/datasource/base.datasource.d.ts +3 -3
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/client-side.datasource.d.ts +11 -11
- package/dist/dts/datasource/server-side.datasource.d.ts +14 -11
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro-beta.d.ts +2 -2
- package/dist/dts/grid-pro-beta.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts +19 -1
- package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +11 -11
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/grid-pro.types.d.ts +12 -1
- package/dist/dts/grid-pro.types.d.ts.map +1 -1
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.d.ts +2 -2
- package/dist/dts/multicolumn-dropdown/multicolumn-dropdown.d.ts.map +1 -1
- package/dist/dts/react.d.ts +35 -34
- package/dist/esm/datasource/base.datasource.js +7 -4
- package/dist/esm/datasource/client-side.datasource.js +11 -11
- package/dist/esm/datasource/server-side.datasource.js +28 -16
- package/dist/esm/grid-pro-beta.js +5 -3
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +12 -12
- package/dist/esm/grid-pro.js +3 -1
- package/dist/esm/multicolumn-dropdown/multicolumn-dropdown.js +2 -2
- package/dist/grid-pro.api.json +242 -7
- package/dist/grid-pro.d.ts +78 -41
- package/package.json +14 -14
|
@@ -1144,11 +1144,11 @@
|
|
|
1144
1144
|
],
|
|
1145
1145
|
"events": [
|
|
1146
1146
|
{
|
|
1147
|
-
"description": "Fired when AG Grid is ready (detail includes the grid-ready event and grid id)",
|
|
1147
|
+
"description": "Fired when AG Grid is ready (detail includes the grid-ready event and grid id). detail: `GridReadyEventDetail`",
|
|
1148
1148
|
"name": "gridReady"
|
|
1149
1149
|
},
|
|
1150
1150
|
{
|
|
1151
|
-
"description": "Deprecated alias for the grid-ready signal; prefer `gridReady`",
|
|
1151
|
+
"description": "Deprecated alias for the grid-ready signal; prefer `gridReady`. detail: `GridReadyEventDetail`",
|
|
1152
1152
|
"name": "onGridReady"
|
|
1153
1153
|
},
|
|
1154
1154
|
{
|
|
@@ -8590,11 +8590,11 @@
|
|
|
8590
8590
|
],
|
|
8591
8591
|
"events": [
|
|
8592
8592
|
{
|
|
8593
|
-
"description": "Fired when a datasource error is reported",
|
|
8593
|
+
"description": "Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`",
|
|
8594
8594
|
"name": "base-datasource-error"
|
|
8595
8595
|
},
|
|
8596
8596
|
{
|
|
8597
|
-
"description": "Fired when a datasource error occurs (for grid integration)",
|
|
8597
|
+
"description": "Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`",
|
|
8598
8598
|
"name": "datasource-error"
|
|
8599
8599
|
},
|
|
8600
8600
|
{
|
|
@@ -8610,7 +8610,7 @@
|
|
|
8610
8610
|
"name": "datasource-no-data-available"
|
|
8611
8611
|
},
|
|
8612
8612
|
{
|
|
8613
|
-
"description": "Fired when row data changes from applied stream transactions",
|
|
8613
|
+
"description": "Fired when row data changes from applied stream transactions. detail: `DataChangedEventDetail`",
|
|
8614
8614
|
"name": "datasource-data-changed"
|
|
8615
8615
|
}
|
|
8616
8616
|
],
|
|
@@ -9800,7 +9800,7 @@
|
|
|
9800
9800
|
],
|
|
9801
9801
|
"events": [
|
|
9802
9802
|
{
|
|
9803
|
-
"description": "Fired when a datasource error is reported",
|
|
9803
|
+
"description": "Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`",
|
|
9804
9804
|
"name": "base-datasource-error",
|
|
9805
9805
|
"inheritedFrom": {
|
|
9806
9806
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9808,7 +9808,7 @@
|
|
|
9808
9808
|
}
|
|
9809
9809
|
},
|
|
9810
9810
|
{
|
|
9811
|
-
"description": "Fired when a datasource error occurs (for grid integration)",
|
|
9811
|
+
"description": "Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`",
|
|
9812
9812
|
"name": "datasource-error",
|
|
9813
9813
|
"inheritedFrom": {
|
|
9814
9814
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9840,7 +9840,7 @@
|
|
|
9840
9840
|
}
|
|
9841
9841
|
},
|
|
9842
9842
|
{
|
|
9843
|
-
"description": "Fired when row data changes from applied stream transactions",
|
|
9843
|
+
"description": "Fired when row data changes from applied stream transactions. detail: `DataChangedEventDetail`",
|
|
9844
9844
|
"name": "datasource-data-changed",
|
|
9845
9845
|
"inheritedFrom": {
|
|
9846
9846
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9921,7 +9921,7 @@
|
|
|
9921
9921
|
"name": "GridProClientSideDatasource",
|
|
9922
9922
|
"events": [
|
|
9923
9923
|
{
|
|
9924
|
-
"description": "Fired when a datasource error is reported",
|
|
9924
|
+
"description": "Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`",
|
|
9925
9925
|
"name": "base-datasource-error",
|
|
9926
9926
|
"inheritedFrom": {
|
|
9927
9927
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9929,7 +9929,7 @@
|
|
|
9929
9929
|
}
|
|
9930
9930
|
},
|
|
9931
9931
|
{
|
|
9932
|
-
"description": "Fired when a datasource error occurs (for grid integration)",
|
|
9932
|
+
"description": "Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`",
|
|
9933
9933
|
"name": "datasource-error",
|
|
9934
9934
|
"inheritedFrom": {
|
|
9935
9935
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9961,7 +9961,7 @@
|
|
|
9961
9961
|
}
|
|
9962
9962
|
},
|
|
9963
9963
|
{
|
|
9964
|
-
"description": "Fired when row data changes from stream updates",
|
|
9964
|
+
"description": "Fired when row data changes from stream updates. detail: `DataChangedEventDetail`",
|
|
9965
9965
|
"name": "datasource-data-changed",
|
|
9966
9966
|
"inheritedFrom": {
|
|
9967
9967
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9969,7 +9969,7 @@
|
|
|
9969
9969
|
}
|
|
9970
9970
|
},
|
|
9971
9971
|
{
|
|
9972
|
-
"description": "Fired to hand off grid options and initialization flags",
|
|
9972
|
+
"description": "Fired to hand off grid options and initialization flags. detail: `InitializeEventDetail`",
|
|
9973
9973
|
"name": "datasource-initialize",
|
|
9974
9974
|
"inheritedFrom": {
|
|
9975
9975
|
"name": "GridProGenesisDatasource",
|
|
@@ -9985,7 +9985,7 @@
|
|
|
9985
9985
|
}
|
|
9986
9986
|
},
|
|
9987
9987
|
{
|
|
9988
|
-
"description": "Fired when row data is cleared",
|
|
9988
|
+
"description": "Fired when row data is cleared. detail: `DataClearedEventDetail`",
|
|
9989
9989
|
"name": "datasource-data-cleared",
|
|
9990
9990
|
"inheritedFrom": {
|
|
9991
9991
|
"name": "GridProGenesisDatasource",
|
|
@@ -9993,7 +9993,7 @@
|
|
|
9993
9993
|
}
|
|
9994
9994
|
},
|
|
9995
9995
|
{
|
|
9996
|
-
"description": "Fired when column metadata or defs are updated",
|
|
9996
|
+
"description": "Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`",
|
|
9997
9997
|
"name": "datasource-schema-updated",
|
|
9998
9998
|
"inheritedFrom": {
|
|
9999
9999
|
"name": "GridProGenesisDatasource",
|
|
@@ -10009,7 +10009,7 @@
|
|
|
10009
10009
|
}
|
|
10010
10010
|
},
|
|
10011
10011
|
{
|
|
10012
|
-
"description": "Fired when a data payload is loaded for the grid",
|
|
10012
|
+
"description": "Fired when a data payload is loaded for the grid. detail: `DataLoadedEventDetail`",
|
|
10013
10013
|
"name": "datasource-data-loaded",
|
|
10014
10014
|
"inheritedFrom": {
|
|
10015
10015
|
"name": "GridProGenesisDatasource",
|
|
@@ -10025,7 +10025,7 @@
|
|
|
10025
10025
|
}
|
|
10026
10026
|
},
|
|
10027
10027
|
{
|
|
10028
|
-
"description": "Fired when more server rows can be requested",
|
|
10028
|
+
"description": "Fired when more server rows can be requested. detail: `MoreDataAvailableEventDetail`",
|
|
10029
10029
|
"name": "datasource-more-data-available",
|
|
10030
10030
|
"inheritedFrom": {
|
|
10031
10031
|
"name": "GridProGenesisDatasource",
|
|
@@ -10033,7 +10033,7 @@
|
|
|
10033
10033
|
}
|
|
10034
10034
|
},
|
|
10035
10035
|
{
|
|
10036
|
-
"description": "Fired when the host grid is ready (detail includes pagination state)",
|
|
10036
|
+
"description": "Fired when the host grid is ready (detail includes pagination state). detail: `DatasourceReadyEventDetail`",
|
|
10037
10037
|
"name": "datasource-ready",
|
|
10038
10038
|
"inheritedFrom": {
|
|
10039
10039
|
"name": "GridProGenesisDatasource",
|
|
@@ -10049,7 +10049,7 @@
|
|
|
10049
10049
|
}
|
|
10050
10050
|
},
|
|
10051
10051
|
{
|
|
10052
|
-
"description": "Fired when MORE_ROWS availability changes",
|
|
10052
|
+
"description": "Fired when MORE_ROWS availability changes. detail: `MoreRowsDetail`",
|
|
10053
10053
|
"name": "more-rows-changed",
|
|
10054
10054
|
"inheritedFrom": {
|
|
10055
10055
|
"name": "GridProGenesisDatasource",
|
|
@@ -10057,7 +10057,7 @@
|
|
|
10057
10057
|
}
|
|
10058
10058
|
},
|
|
10059
10059
|
{
|
|
10060
|
-
"description": "Fired when layout or viewport sizing affects the datasource",
|
|
10060
|
+
"description": "Fired when layout or viewport sizing affects the datasource. detail: `GrigProGenesisDatasourceSizeChangedEventDetail`",
|
|
10061
10061
|
"name": "datasource-size-changed",
|
|
10062
10062
|
"inheritedFrom": {
|
|
10063
10063
|
"name": "GridProGenesisDatasource",
|
|
@@ -13173,7 +13173,7 @@
|
|
|
13173
13173
|
],
|
|
13174
13174
|
"events": [
|
|
13175
13175
|
{
|
|
13176
|
-
"description": "Fired when a datasource error is reported",
|
|
13176
|
+
"description": "Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`",
|
|
13177
13177
|
"name": "base-datasource-error",
|
|
13178
13178
|
"inheritedFrom": {
|
|
13179
13179
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -13181,7 +13181,7 @@
|
|
|
13181
13181
|
}
|
|
13182
13182
|
},
|
|
13183
13183
|
{
|
|
13184
|
-
"description": "Fired when a datasource error occurs (for grid integration)",
|
|
13184
|
+
"description": "Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`",
|
|
13185
13185
|
"name": "datasource-error",
|
|
13186
13186
|
"inheritedFrom": {
|
|
13187
13187
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -13213,7 +13213,7 @@
|
|
|
13213
13213
|
}
|
|
13214
13214
|
},
|
|
13215
13215
|
{
|
|
13216
|
-
"description": "Fired when row data changes from applied stream transactions",
|
|
13216
|
+
"description": "Fired when row data changes from applied stream transactions. detail: `DataChangedEventDetail`",
|
|
13217
13217
|
"name": "datasource-data-changed",
|
|
13218
13218
|
"inheritedFrom": {
|
|
13219
13219
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -13225,7 +13225,7 @@
|
|
|
13225
13225
|
"name": "cache-filter-config"
|
|
13226
13226
|
},
|
|
13227
13227
|
{
|
|
13228
|
-
"description": "Fired to request a server-side refresh",
|
|
13228
|
+
"description": "Fired to request a server-side refresh. detail: `RefreshServerSideEventDetail`",
|
|
13229
13229
|
"name": "refresh-server-side"
|
|
13230
13230
|
},
|
|
13231
13231
|
{
|
|
@@ -13237,15 +13237,15 @@
|
|
|
13237
13237
|
"name": "datasource-loading-started"
|
|
13238
13238
|
},
|
|
13239
13239
|
{
|
|
13240
|
-
"description": "Fired to add a CSS class on the grid host (e.g. server-side styling)",
|
|
13240
|
+
"description": "Fired to add a CSS class on the grid host (e.g. server-side styling). detail: `GridCssClassEventDetail`",
|
|
13241
13241
|
"name": "add-grid-css-class"
|
|
13242
13242
|
},
|
|
13243
13243
|
{
|
|
13244
|
-
"description": "Fired to remove a CSS class from the grid host",
|
|
13244
|
+
"description": "Fired to remove a CSS class from the grid host. detail: `GridCssClassEventDetail`",
|
|
13245
13245
|
"name": "remove-grid-css-class"
|
|
13246
13246
|
},
|
|
13247
13247
|
{
|
|
13248
|
-
"description": "Fired to hand off server-side grid options",
|
|
13248
|
+
"description": "Fired to hand off server-side grid options. detail: `InitializeEventDetail`",
|
|
13249
13249
|
"name": "datasource-initialize"
|
|
13250
13250
|
},
|
|
13251
13251
|
{
|
|
@@ -13253,7 +13253,7 @@
|
|
|
13253
13253
|
"name": "datasource-init"
|
|
13254
13254
|
},
|
|
13255
13255
|
{
|
|
13256
|
-
"description": "Fired when column metadata or defs are updated",
|
|
13256
|
+
"description": "Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`",
|
|
13257
13257
|
"name": "datasource-schema-updated"
|
|
13258
13258
|
},
|
|
13259
13259
|
{
|
|
@@ -13261,7 +13261,7 @@
|
|
|
13261
13261
|
"name": "datasource-filters-restored"
|
|
13262
13262
|
},
|
|
13263
13263
|
{
|
|
13264
|
-
"description": "Fired when server-side row data is cleared",
|
|
13264
|
+
"description": "Fired when server-side row data is cleared. detail: `DataClearedEventDetail`",
|
|
13265
13265
|
"name": "datasource-data-cleared"
|
|
13266
13266
|
},
|
|
13267
13267
|
{
|
|
@@ -13269,7 +13269,7 @@
|
|
|
13269
13269
|
"name": "apply-server-side-transaction"
|
|
13270
13270
|
},
|
|
13271
13271
|
{
|
|
13272
|
-
"description": "Fired when the host grid is ready (detail includes pagination state)",
|
|
13272
|
+
"description": "Fired when the host grid is ready (detail includes pagination state). detail: `DatasourceReadyEventDetail`",
|
|
13273
13273
|
"name": "datasource-ready"
|
|
13274
13274
|
}
|
|
13275
13275
|
],
|
|
@@ -17849,7 +17849,7 @@
|
|
|
17849
17849
|
],
|
|
17850
17850
|
"events": [
|
|
17851
17851
|
{
|
|
17852
|
-
"description": "Fired when a datasource error is reported",
|
|
17852
|
+
"description": "Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`",
|
|
17853
17853
|
"name": "base-datasource-error",
|
|
17854
17854
|
"inheritedFrom": {
|
|
17855
17855
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -17857,7 +17857,7 @@
|
|
|
17857
17857
|
}
|
|
17858
17858
|
},
|
|
17859
17859
|
{
|
|
17860
|
-
"description": "Fired when a datasource error occurs (for grid integration)",
|
|
17860
|
+
"description": "Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`",
|
|
17861
17861
|
"name": "datasource-error",
|
|
17862
17862
|
"inheritedFrom": {
|
|
17863
17863
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -17889,7 +17889,7 @@
|
|
|
17889
17889
|
}
|
|
17890
17890
|
},
|
|
17891
17891
|
{
|
|
17892
|
-
"description": "Fired when row data changes from stream updates",
|
|
17892
|
+
"description": "Fired when row data changes from stream updates. detail: `DataChangedEventDetail`",
|
|
17893
17893
|
"name": "datasource-data-changed",
|
|
17894
17894
|
"inheritedFrom": {
|
|
17895
17895
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -17897,7 +17897,7 @@
|
|
|
17897
17897
|
}
|
|
17898
17898
|
},
|
|
17899
17899
|
{
|
|
17900
|
-
"description": "Fired to hand off grid options and initialization flags",
|
|
17900
|
+
"description": "Fired to hand off grid options and initialization flags. detail: `InitializeEventDetail`",
|
|
17901
17901
|
"name": "datasource-initialize"
|
|
17902
17902
|
},
|
|
17903
17903
|
{
|
|
@@ -17905,11 +17905,11 @@
|
|
|
17905
17905
|
"name": "datasource-destroy"
|
|
17906
17906
|
},
|
|
17907
17907
|
{
|
|
17908
|
-
"description": "Fired when row data is cleared",
|
|
17908
|
+
"description": "Fired when row data is cleared. detail: `DataClearedEventDetail`",
|
|
17909
17909
|
"name": "datasource-data-cleared"
|
|
17910
17910
|
},
|
|
17911
17911
|
{
|
|
17912
|
-
"description": "Fired when column metadata or defs are updated",
|
|
17912
|
+
"description": "Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`",
|
|
17913
17913
|
"name": "datasource-schema-updated"
|
|
17914
17914
|
},
|
|
17915
17915
|
{
|
|
@@ -17917,7 +17917,7 @@
|
|
|
17917
17917
|
"name": "datasource-filters-restored"
|
|
17918
17918
|
},
|
|
17919
17919
|
{
|
|
17920
|
-
"description": "Fired when a data payload is loaded for the grid",
|
|
17920
|
+
"description": "Fired when a data payload is loaded for the grid. detail: `DataLoadedEventDetail`",
|
|
17921
17921
|
"name": "datasource-data-loaded"
|
|
17922
17922
|
},
|
|
17923
17923
|
{
|
|
@@ -17925,11 +17925,11 @@
|
|
|
17925
17925
|
"name": "datasource-loading-started"
|
|
17926
17926
|
},
|
|
17927
17927
|
{
|
|
17928
|
-
"description": "Fired when more server rows can be requested",
|
|
17928
|
+
"description": "Fired when more server rows can be requested. detail: `MoreDataAvailableEventDetail`",
|
|
17929
17929
|
"name": "datasource-more-data-available"
|
|
17930
17930
|
},
|
|
17931
17931
|
{
|
|
17932
|
-
"description": "Fired when the host grid is ready (detail includes pagination state)",
|
|
17932
|
+
"description": "Fired when the host grid is ready (detail includes pagination state). detail: `DatasourceReadyEventDetail`",
|
|
17933
17933
|
"name": "datasource-ready"
|
|
17934
17934
|
},
|
|
17935
17935
|
{
|
|
@@ -17937,11 +17937,11 @@
|
|
|
17937
17937
|
"name": "datasource-init"
|
|
17938
17938
|
},
|
|
17939
17939
|
{
|
|
17940
|
-
"description": "Fired when MORE_ROWS availability changes",
|
|
17940
|
+
"description": "Fired when MORE_ROWS availability changes. detail: `MoreRowsDetail`",
|
|
17941
17941
|
"name": "more-rows-changed"
|
|
17942
17942
|
},
|
|
17943
17943
|
{
|
|
17944
|
-
"description": "Fired when layout or viewport sizing affects the datasource",
|
|
17944
|
+
"description": "Fired when layout or viewport sizing affects the datasource. detail: `GrigProGenesisDatasourceSizeChangedEventDetail`",
|
|
17945
17945
|
"name": "datasource-size-changed"
|
|
17946
17946
|
}
|
|
17947
17947
|
],
|
|
@@ -18913,11 +18913,11 @@
|
|
|
18913
18913
|
],
|
|
18914
18914
|
"events": [
|
|
18915
18915
|
{
|
|
18916
|
-
"description": "Fired when the selected value changes",
|
|
18916
|
+
"description": "Fired when the selected value changes. detail: `string`",
|
|
18917
18917
|
"name": "change"
|
|
18918
18918
|
},
|
|
18919
18919
|
{
|
|
18920
|
-
"description": "Fired when the value is updated (including programmatic changes)",
|
|
18920
|
+
"description": "Fired when the value is updated (including programmatic changes). detail: `string`",
|
|
18921
18921
|
"name": "input"
|
|
18922
18922
|
}
|
|
18923
18923
|
],
|
|
@@ -377,12 +377,12 @@ declare const GenesisGridDatasourceElement_base: new () => {
|
|
|
377
377
|
* The base datasource element for the grid-pro element.
|
|
378
378
|
* @public
|
|
379
379
|
*
|
|
380
|
-
* @fires base-datasource-error - Fired when a datasource error is reported
|
|
381
|
-
* @fires datasource-error - Fired when a datasource error occurs (for grid integration)
|
|
380
|
+
* @fires base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`
|
|
381
|
+
* @fires datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`
|
|
382
382
|
* @fires base-datasource-connected - Fired when error state is cleared after connection succeeds
|
|
383
383
|
* @fires datasource-loading-finished - Fired when pending stream transactions are flushed with no row changes
|
|
384
384
|
* @fires datasource-no-data-available - Fired when loading finishes with an empty row set
|
|
385
|
-
* @fires datasource-data-changed - Fired when row data changes from applied stream transactions
|
|
385
|
+
* @fires datasource-data-changed - Fired when row data changes from applied stream transactions. detail: `DataChangedEventDetail`
|
|
386
386
|
*/
|
|
387
387
|
export declare class GenesisGridDatasourceElement extends GenesisGridDatasourceElement_base {
|
|
388
388
|
connect: Connect;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.datasource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAChF,OAAO,EACL,OAAO,EACP,UAAU,EAGV,iBAAiB,EACjB,gBAAgB,EAChB,aAAa,EACb,aAAa,EAId,MAAM,+BAA+B,CAAC;AAGvC,OAAO,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAUrD,OAAO,EAA4B,KAAK,8BAA8B,EAAE,MAAM,cAAc,CAAC;AAE7F;;;GAGG;AACH,eAAO,MAAM,iBAAiB,MAAM,CAAC;AACrC;;;GAGG;AACH,eAAO,MAAM,YAAY,SAAS,CAAC;;;;
|
|
1
|
+
{"version":3,"file":"base.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.datasource.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,24 +4,24 @@ import { GridProGenesisDatasource } from '../grid-pro-genesis-datasource';
|
|
|
4
4
|
* @remarks Only supports Client-Side Row Model.
|
|
5
5
|
* @public
|
|
6
6
|
*
|
|
7
|
-
* @fires base-datasource-error - Fired when a datasource error is reported
|
|
8
|
-
* @fires datasource-error - Fired when a datasource error occurs (for grid integration)
|
|
7
|
+
* @fires base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`
|
|
8
|
+
* @fires datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`
|
|
9
9
|
* @fires base-datasource-connected - Fired when error state is cleared after connection succeeds
|
|
10
10
|
* @fires datasource-loading-finished - Fired when loading completes with no pending row changes
|
|
11
11
|
* @fires datasource-no-data-available - Fired when the grid has no rows after load
|
|
12
|
-
* @fires datasource-data-changed - Fired when row data changes from stream updates
|
|
13
|
-
* @fires datasource-initialize - Fired to hand off grid options and initialization flags
|
|
12
|
+
* @fires datasource-data-changed - Fired when row data changes from stream updates. detail: `DataChangedEventDetail`
|
|
13
|
+
* @fires datasource-initialize - Fired to hand off grid options and initialization flags. detail: `InitializeEventDetail`
|
|
14
14
|
* @fires datasource-destroy - Fired when the datasource is torn down
|
|
15
|
-
* @fires datasource-data-cleared - Fired when row data is cleared
|
|
16
|
-
* @fires datasource-schema-updated - Fired when column metadata or defs are updated
|
|
15
|
+
* @fires datasource-data-cleared - Fired when row data is cleared. detail: `DataClearedEventDetail`
|
|
16
|
+
* @fires datasource-schema-updated - Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`
|
|
17
17
|
* @fires datasource-filters-restored - Fired when persisted filters are reapplied
|
|
18
|
-
* @fires datasource-data-loaded - Fired when a data payload is loaded for the grid
|
|
18
|
+
* @fires datasource-data-loaded - Fired when a data payload is loaded for the grid. detail: `DataLoadedEventDetail`
|
|
19
19
|
* @fires datasource-loading-started - Fired when a load or refresh starts
|
|
20
|
-
* @fires datasource-more-data-available - Fired when more server rows can be requested
|
|
21
|
-
* @fires datasource-ready - Fired when the host grid is ready (detail includes pagination state)
|
|
20
|
+
* @fires datasource-more-data-available - Fired when more server rows can be requested. detail: `MoreDataAvailableEventDetail`
|
|
21
|
+
* @fires datasource-ready - Fired when the host grid is ready (detail includes pagination state). detail: `DatasourceReadyEventDetail`
|
|
22
22
|
* @fires datasource-init - Fired when initial grid data is ready for the client-side model
|
|
23
|
-
* @fires more-rows-changed - Fired when MORE_ROWS availability changes
|
|
24
|
-
* @fires datasource-size-changed - Fired when layout or viewport sizing affects the datasource
|
|
23
|
+
* @fires more-rows-changed - Fired when MORE_ROWS availability changes. detail: `MoreRowsDetail`
|
|
24
|
+
* @fires datasource-size-changed - Fired when layout or viewport sizing affects the datasource. detail: `GrigProGenesisDatasourceSizeChangedEventDetail`
|
|
25
25
|
*/
|
|
26
26
|
export declare class GridProClientSideDatasource extends GridProGenesisDatasource {
|
|
27
27
|
}
|
|
@@ -48,7 +48,10 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
48
48
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
49
49
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
50
50
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
51
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options
|
|
51
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options? /**
|
|
52
|
+
* Enable live updates for the grid.
|
|
53
|
+
* @remarks Only works with DATASERVER resources (StreamDatasource) right now.
|
|
54
|
+
*/: boolean | EventListenerOptions): void;
|
|
52
55
|
readonly attributes: NamedNodeMap;
|
|
53
56
|
get classList(): DOMTokenList;
|
|
54
57
|
set classList(value: string): any;
|
|
@@ -378,25 +381,25 @@ declare const GridProServerSideDatasource_base: (new (...args: any[]) => {
|
|
|
378
381
|
*
|
|
379
382
|
* @beta
|
|
380
383
|
*
|
|
381
|
-
* @fires base-datasource-error - Fired when a datasource error is reported
|
|
382
|
-
* @fires datasource-error - Fired when a datasource error occurs (for grid integration)
|
|
384
|
+
* @fires base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`
|
|
385
|
+
* @fires datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`
|
|
383
386
|
* @fires base-datasource-connected - Fired when error state is cleared after connection succeeds
|
|
384
387
|
* @fires datasource-loading-finished - Fired when pending stream transactions are flushed with no row changes
|
|
385
388
|
* @fires datasource-no-data-available - Fired when loading finishes with an empty row set
|
|
386
|
-
* @fires datasource-data-changed - Fired when row data changes from applied stream transactions
|
|
389
|
+
* @fires datasource-data-changed - Fired when row data changes from applied stream transactions. detail: `DataChangedEventDetail`
|
|
387
390
|
* @fires cache-filter-config - Fired to persist filter configuration for the grid
|
|
388
|
-
* @fires refresh-server-side - Fired to request a server-side refresh
|
|
391
|
+
* @fires refresh-server-side - Fired to request a server-side refresh. detail: `RefreshServerSideEventDetail`
|
|
389
392
|
* @fires set-server-side-datasource - Fired to attach or clear the server-side row model datasource
|
|
390
393
|
* @fires datasource-loading-started - Fired when a server-side load cycle starts
|
|
391
|
-
* @fires add-grid-css-class - Fired to add a CSS class on the grid host (e.g. server-side styling)
|
|
392
|
-
* @fires remove-grid-css-class - Fired to remove a CSS class from the grid host
|
|
393
|
-
* @fires datasource-initialize - Fired to hand off server-side grid options
|
|
394
|
+
* @fires add-grid-css-class - Fired to add a CSS class on the grid host (e.g. server-side styling). detail: `GridCssClassEventDetail`
|
|
395
|
+
* @fires remove-grid-css-class - Fired to remove a CSS class from the grid host. detail: `GridCssClassEventDetail`
|
|
396
|
+
* @fires datasource-initialize - Fired to hand off server-side grid options. detail: `InitializeEventDetail`
|
|
394
397
|
* @fires datasource-init - Fired when the server-side grid model should initialize data
|
|
395
|
-
* @fires datasource-schema-updated - Fired when column metadata or defs are updated
|
|
398
|
+
* @fires datasource-schema-updated - Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`
|
|
396
399
|
* @fires datasource-filters-restored - Fired when persisted filters are reapplied
|
|
397
|
-
* @fires datasource-data-cleared - Fired when server-side row data is cleared
|
|
400
|
+
* @fires datasource-data-cleared - Fired when server-side row data is cleared. detail: `DataClearedEventDetail`
|
|
398
401
|
* @fires apply-server-side-transaction - Fired to apply a server-side row transaction
|
|
399
|
-
* @fires datasource-ready - Fired when the host grid is ready (detail includes pagination state)
|
|
402
|
+
* @fires datasource-ready - Fired when the host grid is ready (detail includes pagination state). detail: `DatasourceReadyEventDetail`
|
|
400
403
|
*/
|
|
401
404
|
export declare class GridProServerSideDatasource extends GridProServerSideDatasource_base {
|
|
402
405
|
serializer: JSONSerializer;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server-side.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/server-side.datasource.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,UAAU,EACV,iBAAiB,EAYlB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAEL,cAAc,EAEf,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"server-side.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/server-side.datasource.ts"],"names":[],"mappings":"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"}
|
|
@@ -377,8 +377,8 @@ declare const GridProBeta_base: (new (...args: any[]) => {
|
|
|
377
377
|
* @beta
|
|
378
378
|
* @tagname %%prefix%%-grid-pro
|
|
379
379
|
*
|
|
380
|
-
* @fires gridReady - Fired when AG Grid is ready (detail includes the grid-ready event and grid id)
|
|
381
|
-
* @fires onGridReady - Deprecated alias for the grid-ready signal; prefer `gridReady`
|
|
380
|
+
* @fires gridReady - Fired when AG Grid is ready (detail includes the grid-ready event and grid id). detail: `GridReadyEventDetail`
|
|
381
|
+
* @fires onGridReady - Deprecated alias for the grid-ready signal; prefer `gridReady`. detail: `GridReadyEventDetail`
|
|
382
382
|
* @fires gridready - Native `Event` from `globalEventListener` when AG Grid fires `gridReady` (`agGridDetails` holds the AG Grid event)
|
|
383
383
|
* @remarks Re-emits AG Grid public API events when listeners are registered via `addEventListener` (event names match AG Grid public event strings). The same AG Grid events are also dispatched as native `Event`s with lowercased `type` and payload on `agGridDetails` (for example `addEventListener('columnresized', ...)`).
|
|
384
384
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-pro-beta.d.ts","sourceRoot":"","sources":["../../src/grid-pro-beta.ts"],"names":[],"mappings":"AAOA,OAAO,EAAyB,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC9E,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,KAAK,EACV,MAAM,EACN,WAAW,EAEX,OAAO,EACP,WAAW,EACX,UAAU,EAEX,MAAM,mBAAmB,CAAC;AAiD3B,OAAO,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"grid-pro-beta.d.ts","sourceRoot":"","sources":["../../src/grid-pro-beta.ts"],"names":[],"mappings":"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"}
|
|
@@ -89,10 +89,28 @@ export interface DatasourceErrorEventDetail {
|
|
|
89
89
|
message: string;
|
|
90
90
|
type: 'stream' | 'criteria' | 'connection' | 'unknown';
|
|
91
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* Event detail for the host grid signalling that the datasource may start loading data.
|
|
94
|
+
*/
|
|
95
|
+
export interface DatasourceReadyEventDetail {
|
|
96
|
+
pagination: boolean;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Event detail for requesting a server-side row model refresh.
|
|
100
|
+
*/
|
|
101
|
+
export interface RefreshServerSideEventDetail {
|
|
102
|
+
purge: boolean;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Event detail for adding or removing a CSS class on the grid host element.
|
|
106
|
+
*/
|
|
107
|
+
export interface GridCssClassEventDetail {
|
|
108
|
+
className: string;
|
|
109
|
+
}
|
|
92
110
|
/**
|
|
93
111
|
* Union type for all datasource event details
|
|
94
112
|
*/
|
|
95
|
-
export type DatasourceEventDetail = InitializeEventDetail | DataLoadedEventDetail | DataChangedEventDetail | SchemaUpdatedEventDetail | MoreDataAvailableEventDetail | SizeChangedEventDetail | DataClearedEventDetail | DatasourceErrorEventDetail;
|
|
113
|
+
export type DatasourceEventDetail = InitializeEventDetail | DataLoadedEventDetail | DataChangedEventDetail | SchemaUpdatedEventDetail | MoreDataAvailableEventDetail | SizeChangedEventDetail | DataClearedEventDetail | DatasourceErrorEventDetail | DatasourceReadyEventDetail | RefreshServerSideEventDetail | GridCssClassEventDetail;
|
|
96
114
|
/**
|
|
97
115
|
* Generic datasource event interface
|
|
98
116
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datasource-events.types.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/datasource-events.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAEnE;;;GAGG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;CAsCvB,CAAC;AAEX;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,yBAAyB,EAAE,OAAO,CAAC;IACnC,OAAO,EAAE;QACP,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,KAAK,MAAM,CAAC;QACnC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;QACtB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,OAAO,EAAE;QACP,GAAG,CAAC,EAAE,GAAG,EAAE,CAAC;QACZ,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC;QACf,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC;QACf,WAAW,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,QAAQ,CAAC,EAAE,aAAa,EAAE,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,QAAQ,GAAG,UAAU,GAAG,YAAY,GAAG,SAAS,CAAC;CACxD;AAED;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAC7B,qBAAqB,GACrB,qBAAqB,GACrB,sBAAsB,GACtB,wBAAwB,GACxB,4BAA4B,GAC5B,sBAAsB,GACtB,sBAAsB,GACtB,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"datasource-events.types.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/datasource-events.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAEnE;;;GAGG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;CAsCvB,CAAC;AAEX;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,yBAAyB,EAAE,OAAO,CAAC;IACnC,OAAO,EAAE;QACP,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,KAAK,MAAM,CAAC;QACnC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;QACtB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,OAAO,EAAE;QACP,GAAG,CAAC,EAAE,GAAG,EAAE,CAAC;QACZ,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC;QACf,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC;QACf,WAAW,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,QAAQ,CAAC,EAAE,aAAa,EAAE,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,QAAQ,GAAG,UAAU,GAAG,YAAY,GAAG,SAAS,CAAC;CACxD;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC,UAAU,EAAE,OAAO,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C,KAAK,EAAE,OAAO,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAC7B,qBAAqB,GACrB,qBAAqB,GACrB,sBAAsB,GACtB,wBAAwB,GACxB,4BAA4B,GAC5B,sBAAsB,GACtB,sBAAsB,GACtB,0BAA0B,GAC1B,0BAA0B,GAC1B,4BAA4B,GAC5B,uBAAuB,CAAC;AAE5B;;GAEG;AACH,MAAM,WAAW,eAAe,CAAC,CAAC,GAAG,qBAAqB,CAAE,SAAQ,WAAW,CAAC,CAAC,CAAC;IAChF,IAAI,EAAE,MAAM,OAAO,oBAAoB,CAAC;CACzC"}
|
|
@@ -379,24 +379,24 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
379
379
|
* @remarks Only supports Client-Side Row Model.
|
|
380
380
|
* @public
|
|
381
381
|
*
|
|
382
|
-
* @fires base-datasource-error - Fired when a datasource error is reported
|
|
383
|
-
* @fires datasource-error - Fired when a datasource error occurs (for grid integration)
|
|
382
|
+
* @fires base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`
|
|
383
|
+
* @fires datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`
|
|
384
384
|
* @fires base-datasource-connected - Fired when error state is cleared after connection succeeds
|
|
385
385
|
* @fires datasource-loading-finished - Fired when loading completes with no pending row changes
|
|
386
386
|
* @fires datasource-no-data-available - Fired when the grid has no rows after load
|
|
387
|
-
* @fires datasource-data-changed - Fired when row data changes from stream updates
|
|
388
|
-
* @fires datasource-initialize - Fired to hand off grid options and initialization flags
|
|
387
|
+
* @fires datasource-data-changed - Fired when row data changes from stream updates. detail: `DataChangedEventDetail`
|
|
388
|
+
* @fires datasource-initialize - Fired to hand off grid options and initialization flags. detail: `InitializeEventDetail`
|
|
389
389
|
* @fires datasource-destroy - Fired when the datasource is torn down
|
|
390
|
-
* @fires datasource-data-cleared - Fired when row data is cleared
|
|
391
|
-
* @fires datasource-schema-updated - Fired when column metadata or defs are updated
|
|
390
|
+
* @fires datasource-data-cleared - Fired when row data is cleared. detail: `DataClearedEventDetail`
|
|
391
|
+
* @fires datasource-schema-updated - Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`
|
|
392
392
|
* @fires datasource-filters-restored - Fired when persisted filters are reapplied
|
|
393
|
-
* @fires datasource-data-loaded - Fired when a data payload is loaded for the grid
|
|
393
|
+
* @fires datasource-data-loaded - Fired when a data payload is loaded for the grid. detail: `DataLoadedEventDetail`
|
|
394
394
|
* @fires datasource-loading-started - Fired when a load or refresh starts
|
|
395
|
-
* @fires datasource-more-data-available - Fired when more server rows can be requested
|
|
396
|
-
* @fires datasource-ready - Fired when the host grid is ready (detail includes pagination state)
|
|
395
|
+
* @fires datasource-more-data-available - Fired when more server rows can be requested. detail: `MoreDataAvailableEventDetail`
|
|
396
|
+
* @fires datasource-ready - Fired when the host grid is ready (detail includes pagination state). detail: `DatasourceReadyEventDetail`
|
|
397
397
|
* @fires datasource-init - Fired when initial grid data is ready for the client-side model
|
|
398
|
-
* @fires more-rows-changed - Fired when MORE_ROWS availability changes
|
|
399
|
-
* @fires datasource-size-changed - Fired when layout or viewport sizing affects the datasource
|
|
398
|
+
* @fires more-rows-changed - Fired when MORE_ROWS availability changes. detail: `MoreRowsDetail`
|
|
399
|
+
* @fires datasource-size-changed - Fired when layout or viewport sizing affects the datasource. detail: `GrigProGenesisDatasourceSizeChangedEventDetail`
|
|
400
400
|
*/
|
|
401
401
|
export declare class GridProGenesisDatasource extends GridProGenesisDatasource_base {
|
|
402
402
|
private cachedRowArray;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,qBAAqB,EAAqB,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"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"}
|