@genesislcap/grid-pro 15.30.0 → 15.30.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +8196 -7794
- package/dist/dts/column-selection/column-selection.d.ts +4 -3
- package/dist/dts/column-selection/column-selection.d.ts.map +1 -1
- package/dist/dts/column-selection/column-selection.styles.d.ts.map +1 -1
- package/dist/dts/datasource/base.datasource.d.ts +69 -8
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/base.types.d.ts +10 -0
- package/dist/dts/datasource/base.types.d.ts.map +1 -1
- package/dist/dts/datasource/dataserver-result.filter.d.ts +17 -0
- package/dist/dts/datasource/dataserver-result.filter.d.ts.map +1 -0
- package/dist/dts/datasource/delivered-block.ledger.d.ts +37 -0
- package/dist/dts/datasource/delivered-block.ledger.d.ts.map +1 -0
- package/dist/dts/datasource/infinite.datasource.d.ts +65 -1
- package/dist/dts/datasource/infinite.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/infinite.resource.d.ts +136 -6
- package/dist/dts/datasource/infinite.resource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.datasource.d.ts +8 -4
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-base.d.ts +23 -0
- package/dist/dts/datasource/server-side.resource-base.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts +28 -0
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts +1 -1
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts.map +1 -1
- package/dist/dts/grid-pro-beta.d.ts +6 -0
- package/dist/dts/grid-pro-beta.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts +4 -0
- package/dist/dts/grid-pro-genesis-datasource/datasource-events.types.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/react.d.ts +20 -20
- package/dist/esm/column-selection/column-selection.js +11 -9
- package/dist/esm/column-selection/column-selection.styles.js +0 -2
- package/dist/esm/column-selection/column-selection.template.js +1 -1
- package/dist/esm/datasource/base.datasource.js +182 -27
- package/dist/esm/datasource/dataserver-result.filter.js +28 -0
- package/dist/esm/datasource/delivered-block.ledger.js +52 -0
- package/dist/esm/datasource/infinite.datasource.js +131 -20
- package/dist/esm/datasource/infinite.resource.js +221 -16
- package/dist/esm/datasource/server-side.datasource.js +80 -29
- package/dist/esm/datasource/server-side.resource-base.js +39 -0
- package/dist/esm/datasource/server-side.resource-dataserver.js +110 -23
- package/dist/esm/datasource/server-side.resource-reqrep.js +25 -3
- package/dist/esm/grid-pro-beta.js +20 -2
- package/dist/esm/grid-pro.js +4 -1
- package/dist/grid-pro.api.json +66 -66
- package/dist/grid-pro.d.ts +294 -21
- package/dist/react.cjs +23 -23
- package/dist/react.mjs +21 -21
- package/package.json +13 -13
package/dist/grid-pro.api.json
CHANGED
|
@@ -4039,7 +4039,7 @@
|
|
|
4039
4039
|
{
|
|
4040
4040
|
"kind": "Class",
|
|
4041
4041
|
"canonicalReference": "@genesislcap/grid-pro!ColumnSelection:class",
|
|
4042
|
-
"docComment": "/**\n * Button + popover column picker for Grid Pro (Community).\n *\n * @remarks\n *\n * HTML Element: \\<%%prefix%%-column-selection\\>\n *\n * Provide either `:gridApi` (AG v36) or `:gridHost` (Grid Pro element with `gridApi` / `columnApi`).\n *\n * The panel uses the Popover API (`popover=\"manual\"`) so it paints in the top layer and is not clipped by layout ancestors with `overflow: hidden`. Placement is pure CSS (anchor positioning via `showPopover({ source })` + `position-area`).\n *\n * Layout: select-all + search → column list. Ordering via `sort` (`selected-first` default, or `ag-grid`). Checkboxes toggle visibility via `api.setColumnsVisible`; drag handles on hidden rows use AG native DnD onto the grid (`allowDragFromColumnsToolPanel`); visible
|
|
4042
|
+
"docComment": "/**\n * Button + popover column picker for Grid Pro (Community).\n *\n * @remarks\n *\n * HTML Element: \\<%%prefix%%-column-selection\\>\n *\n * Provide either `:gridApi` (AG v36) or `:gridHost` (Grid Pro element with `gridApi` / `columnApi`).\n *\n * The panel uses the Popover API (`popover=\"manual\"`) so it paints in the top layer and is not clipped by layout ancestors with `overflow: hidden`. Placement is pure CSS (anchor positioning via `showPopover({ source })` + `position-area`).\n *\n * Layout: select-all + search → column list. Ordering via `sort` (`selected-first` default, or `ag-grid`). Checkboxes toggle visibility via `api.setColumnsVisible`; drag handles on hidden rows use AG native DnD onto the grid (`allowDragFromColumnsToolPanel`) even while search is active; visible-row reorder inside the picker uses HTML5 drag and is disabled during search.\n *\n * @tagname\n *\n * %%prefix%%-column-selection\n *\n * @public\n */\n",
|
|
4043
4043
|
"excerptTokens": [
|
|
4044
4044
|
{
|
|
4045
4045
|
"kind": "Content",
|
|
@@ -4061,36 +4061,6 @@
|
|
|
4061
4061
|
"name": "ColumnSelection",
|
|
4062
4062
|
"preserveMemberOrder": false,
|
|
4063
4063
|
"members": [
|
|
4064
|
-
{
|
|
4065
|
-
"kind": "Property",
|
|
4066
|
-
"canonicalReference": "@genesislcap/grid-pro!ColumnSelection#canDrag:member",
|
|
4067
|
-
"docComment": "/**\n * Drag reorder / grid drop disabled while search filter is active.\n */\n",
|
|
4068
|
-
"excerptTokens": [
|
|
4069
|
-
{
|
|
4070
|
-
"kind": "Content",
|
|
4071
|
-
"text": "get canDrag(): "
|
|
4072
|
-
},
|
|
4073
|
-
{
|
|
4074
|
-
"kind": "Content",
|
|
4075
|
-
"text": "boolean"
|
|
4076
|
-
},
|
|
4077
|
-
{
|
|
4078
|
-
"kind": "Content",
|
|
4079
|
-
"text": ";"
|
|
4080
|
-
}
|
|
4081
|
-
],
|
|
4082
|
-
"isReadonly": true,
|
|
4083
|
-
"isOptional": false,
|
|
4084
|
-
"releaseTag": "Public",
|
|
4085
|
-
"name": "canDrag",
|
|
4086
|
-
"propertyTypeTokenRange": {
|
|
4087
|
-
"startIndex": 1,
|
|
4088
|
-
"endIndex": 2
|
|
4089
|
-
},
|
|
4090
|
-
"isStatic": false,
|
|
4091
|
-
"isProtected": false,
|
|
4092
|
-
"isAbstract": false
|
|
4093
|
-
},
|
|
4094
4064
|
{
|
|
4095
4065
|
"kind": "Method",
|
|
4096
4066
|
"canonicalReference": "@genesislcap/grid-pro!ColumnSelection#canDragToGrid:member(1)",
|
|
@@ -4140,6 +4110,36 @@
|
|
|
4140
4110
|
"isAbstract": false,
|
|
4141
4111
|
"name": "canDragToGrid"
|
|
4142
4112
|
},
|
|
4113
|
+
{
|
|
4114
|
+
"kind": "Property",
|
|
4115
|
+
"canonicalReference": "@genesislcap/grid-pro!ColumnSelection#canReorderInPanel:member",
|
|
4116
|
+
"docComment": "/**\n * Panel reorder disabled while search filter is active.\n */\n",
|
|
4117
|
+
"excerptTokens": [
|
|
4118
|
+
{
|
|
4119
|
+
"kind": "Content",
|
|
4120
|
+
"text": "get canReorderInPanel(): "
|
|
4121
|
+
},
|
|
4122
|
+
{
|
|
4123
|
+
"kind": "Content",
|
|
4124
|
+
"text": "boolean"
|
|
4125
|
+
},
|
|
4126
|
+
{
|
|
4127
|
+
"kind": "Content",
|
|
4128
|
+
"text": ";"
|
|
4129
|
+
}
|
|
4130
|
+
],
|
|
4131
|
+
"isReadonly": true,
|
|
4132
|
+
"isOptional": false,
|
|
4133
|
+
"releaseTag": "Public",
|
|
4134
|
+
"name": "canReorderInPanel",
|
|
4135
|
+
"propertyTypeTokenRange": {
|
|
4136
|
+
"startIndex": 1,
|
|
4137
|
+
"endIndex": 2
|
|
4138
|
+
},
|
|
4139
|
+
"isStatic": false,
|
|
4140
|
+
"isProtected": false,
|
|
4141
|
+
"isAbstract": false
|
|
4142
|
+
},
|
|
4143
4143
|
{
|
|
4144
4144
|
"kind": "Method",
|
|
4145
4145
|
"canonicalReference": "@genesislcap/grid-pro!ColumnSelection#close:member(1)",
|
|
@@ -5757,7 +5757,7 @@
|
|
|
5757
5757
|
},
|
|
5758
5758
|
{
|
|
5759
5759
|
"kind": "Content",
|
|
5760
|
-
"text": "{\n add?: any[];\n remove?: any[];\n update?: any[];\n insertIndex?: number;\n }"
|
|
5760
|
+
"text": "{\n add?: any[];\n remove?: any[];\n update?: any[];\n addIndex?: number;\n insertIndex?: number;\n }"
|
|
5761
5761
|
},
|
|
5762
5762
|
{
|
|
5763
5763
|
"kind": "Content",
|
|
@@ -18679,6 +18679,37 @@
|
|
|
18679
18679
|
"isProtected": false,
|
|
18680
18680
|
"isAbstract": false
|
|
18681
18681
|
},
|
|
18682
|
+
{
|
|
18683
|
+
"kind": "Property",
|
|
18684
|
+
"canonicalReference": "@genesislcap/grid-pro!GridProBaseDatasource#serializer:member",
|
|
18685
|
+
"docComment": "",
|
|
18686
|
+
"excerptTokens": [
|
|
18687
|
+
{
|
|
18688
|
+
"kind": "Content",
|
|
18689
|
+
"text": "serializer: "
|
|
18690
|
+
},
|
|
18691
|
+
{
|
|
18692
|
+
"kind": "Reference",
|
|
18693
|
+
"text": "JSONSerializer",
|
|
18694
|
+
"canonicalReference": "@genesislcap/foundation-utils!JSONSerializer:interface"
|
|
18695
|
+
},
|
|
18696
|
+
{
|
|
18697
|
+
"kind": "Content",
|
|
18698
|
+
"text": ";"
|
|
18699
|
+
}
|
|
18700
|
+
],
|
|
18701
|
+
"isReadonly": false,
|
|
18702
|
+
"isOptional": false,
|
|
18703
|
+
"releaseTag": "Public",
|
|
18704
|
+
"name": "serializer",
|
|
18705
|
+
"propertyTypeTokenRange": {
|
|
18706
|
+
"startIndex": 1,
|
|
18707
|
+
"endIndex": 2
|
|
18708
|
+
},
|
|
18709
|
+
"isStatic": false,
|
|
18710
|
+
"isProtected": false,
|
|
18711
|
+
"isAbstract": false
|
|
18712
|
+
},
|
|
18682
18713
|
{
|
|
18683
18714
|
"kind": "Method",
|
|
18684
18715
|
"canonicalReference": "@genesislcap/grid-pro!GridProBaseDatasource#setDisconnected:member(1)",
|
|
@@ -24634,7 +24665,7 @@
|
|
|
24634
24665
|
{
|
|
24635
24666
|
"kind": "Class",
|
|
24636
24667
|
"canonicalReference": "@genesislcap/grid-pro!GridProInfiniteDatasource:class",
|
|
24637
|
-
"docComment": "/**\n * A Genesis Datasource element for AG Grid's Infinite Row Model.\n *\n * @remarks\n *\n * The Infinite Row Model is part of AG Grid Community (free) and provides: - Lazy loading of data as user scrolls - Server-side sorting and filtering - Simple infinite scroll without grouping/aggregation - Live updates for DATASERVER resources: the DATA_LOGON stream the grid pages over pushes every change, so no flag or second subscription is needed\n *\n * REQUEST_SERVER resources are read on demand only - a change on the server shows up when the grid re-reads (scroll, filter/sort change, or an explicit refresh), not live. The exception is a write made through this session: a commit ACK for an event listed in `pollTriggerEvents` re-reads the loaded blocks, so entity-management CRUD is reflected immediately.\n *\n * Like the other datasources, consumer options passed as `deferredGridOptions` (including via entity-management's `gridOptions` with `datasource-type=\"infinite\"`) are merged over this element's defaults in `init()`.\n *\n * Use this instead of Server-Side Row Model when you don't need Enterprise features like row grouping, aggregation, or pivoting.\n *\n * @fires\n *\n * base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`\n *\n * @fires\n *\n * datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`\n *\n * @fires\n *\n * base-datasource-connected - Fired when error state is cleared after connection succeeds\n *\n * @fires\n *\n * datasource-initialize - Fired to hand off infinite row model grid options. detail: `InitializeEventDetail`\n *\n * @fires\n *\n * datasource-init - Fired when the infinite grid model should initialize data\n *\n * @fires\n *\n * datasource-schema-updated - Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`\n *\n * @fires\n *\n * set-infinite-datasource - Fired to attach or clear the infinite row model datasource. detail: `SetInfiniteDatasourceEventDetail`\n *\n * @fires\n *\n * refresh-infinite-cache - Fired to request an infinite row model refresh; `purge` drops the block cache and re-reads. detail: `RefreshInfiniteCacheEventDetail`\n *\n * @fires\n *\n * add-grid-css-class - Fired to add a CSS class on the grid host (hover sort indicators). detail: `GridCssClassEventDetail`\n *\n * @fires\n *\n * remove-grid-css-class - Fired to remove that CSS class from the grid host. detail: `GridCssClassEventDetail`\n *\n * @fires\n *\n * cache-filter-config - Fired to persist filter configuration for the grid\n *\n * @fires\n *\n * datasource-data-cleared - Fired when
|
|
24668
|
+
"docComment": "/**\n * A Genesis Datasource element for AG Grid's Infinite Row Model.\n *\n * @remarks\n *\n * The Infinite Row Model is part of AG Grid Community (free) and provides: - Lazy loading of data as user scrolls - Server-side sorting and filtering - Simple infinite scroll without grouping/aggregation - Live updates for DATASERVER resources: the DATA_LOGON stream the grid pages over pushes every change, so no flag or second subscription is needed\n *\n * REQUEST_SERVER resources are read on demand only - a change on the server shows up when the grid re-reads (scroll, filter/sort change, or an explicit refresh), not live. The exception is a write made through this session: a commit ACK for an event listed in `pollTriggerEvents` re-reads the loaded blocks, so entity-management CRUD is reflected immediately.\n *\n * Like the other datasources, consumer options passed as `deferredGridOptions` (including via entity-management's `gridOptions` with `datasource-type=\"infinite\"`) are merged over this element's defaults in `init()`.\n *\n * Use this instead of Server-Side Row Model when you don't need Enterprise features like row grouping, aggregation, or pivoting.\n *\n * @fires\n *\n * base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`\n *\n * @fires\n *\n * datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`\n *\n * @fires\n *\n * base-datasource-connected - Fired when error state is cleared after connection succeeds\n *\n * @fires\n *\n * datasource-initialize - Fired to hand off infinite row model grid options. detail: `InitializeEventDetail`\n *\n * @fires\n *\n * datasource-init - Fired when the infinite grid model should initialize data\n *\n * @fires\n *\n * datasource-schema-updated - Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`\n *\n * @fires\n *\n * datasource-data-changed - Fired when rows are delivered to the grid, a DATASERVER push changes them, or a re-read no longer returns them; `add` are rows the grid did not hold before, `update` are held rows whose content changed, `remove` carries the row id. detail: `DataChangedEventDetail`\n *\n * @fires\n *\n * set-infinite-datasource - Fired to attach or clear the infinite row model datasource. detail: `SetInfiniteDatasourceEventDetail`\n *\n * @fires\n *\n * refresh-infinite-cache - Fired to request an infinite row model refresh; `purge` drops the block cache and re-reads. detail: `RefreshInfiniteCacheEventDetail`\n *\n * @fires\n *\n * add-grid-css-class - Fired to add a CSS class on the grid host (hover sort indicators). detail: `GridCssClassEventDetail`\n *\n * @fires\n *\n * remove-grid-css-class - Fired to remove that CSS class from the grid host. detail: `GridCssClassEventDetail`\n *\n * @fires\n *\n * cache-filter-config - Fired to persist filter configuration for the grid\n *\n * @fires\n *\n * datasource-data-cleared - Fired when the grid drops every row it held (reload, filter or sort change, destroy); `includeSchema` says whether the columns went too. detail: `DataClearedEventDetail`\n *\n * @fires\n *\n * datasource-loading-finished - Fired when the first block comes back with rows\n *\n * @fires\n *\n * datasource-no-data-available - Fired when the first block comes back empty\n *\n * @fires\n *\n * datasource-filters-restored - Fired when persisted filters are reapplied\n *\n * @see\n *\n * https://www.ag-grid.com/javascript-data-grid/infinite-scrolling/\n *\n * @beta\n */\n",
|
|
24638
24669
|
"excerptTokens": [
|
|
24639
24670
|
{
|
|
24640
24671
|
"kind": "Content",
|
|
@@ -25476,7 +25507,7 @@
|
|
|
25476
25507
|
{
|
|
25477
25508
|
"kind": "Class",
|
|
25478
25509
|
"canonicalReference": "@genesislcap/grid-pro!GridProServerSideDatasource:class",
|
|
25479
|
-
"docComment": "/**\n * A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.\n *\n * @remarks\n *\n * Only supports Server-Side Row Model. Requires `@ag-grid-enterprise/server-side-row-model` setup and valid AG Grid Enterprise license.\n *\n * **Supported resources**: DATASERVER resources, and REQUEST_SERVER (req/rep) resources that declare `criteriaOnlyRequest`. A req/rep resource without it reports a `resource-type` error and no datasource is attached to the grid.\n *\n * **Custom Sort Indicators**: This datasource automatically applies custom sort indicators that are always visible (instead of only on hover). Sortable columns will show a subtle sort icon even when not sorted, and active sort indicators will be more prominent. The custom styling uses AG Grid's native icon font for consistency with the grid theme.\n *\n * @fires\n *\n * base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`\n *\n * @fires\n *\n * datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`\n *\n * @fires\n *\n * base-datasource-connected - Fired when error state is cleared after connection succeeds\n *\n * @fires\n *\n * datasource-loading-finished - Fired when pending stream transactions are flushed with no row changes\n *\n * @fires\n *\n * datasource-no-data-available - Fired when loading finishes with an empty row set\n *\n * @fires\n *\n * datasource-data-changed - Fired when
|
|
25510
|
+
"docComment": "/**\n * A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.\n *\n * @remarks\n *\n * Only supports Server-Side Row Model. Requires `@ag-grid-enterprise/server-side-row-model` setup and valid AG Grid Enterprise license.\n *\n * **Supported resources**: DATASERVER resources, and REQUEST_SERVER (req/rep) resources that declare `criteriaOnlyRequest`. A req/rep resource without it reports a `resource-type` error and no datasource is attached to the grid.\n *\n * **Custom Sort Indicators**: This datasource automatically applies custom sort indicators that are always visible (instead of only on hover). Sortable columns will show a subtle sort icon even when not sorted, and active sort indicators will be more prominent. The custom styling uses AG Grid's native icon font for consistency with the grid theme.\n *\n * @fires\n *\n * base-datasource-error - Fired when a datasource error is reported. detail: `BaseDatasourceErrorEventDetail`\n *\n * @fires\n *\n * datasource-error - Fired when a datasource error occurs (for grid integration). detail: `DatasourceErrorEventDetail`\n *\n * @fires\n *\n * base-datasource-connected - Fired when error state is cleared after connection succeeds\n *\n * @fires\n *\n * datasource-loading-finished - Fired when pending stream transactions are flushed with no row changes\n *\n * @fires\n *\n * datasource-no-data-available - Fired when loading finishes with an empty row set\n *\n * @fires\n *\n * datasource-data-changed - Fired when rows are delivered to the grid, a live stream pushes a change, a poll detects one, or a re-read no longer returns a row; `add` are rows the grid did not hold before, `update` are held rows whose content changed, `remove` carries the row id. detail: `DataChangedEventDetail`\n *\n * @fires\n *\n * cache-filter-config - Fired to persist filter configuration for the grid\n *\n * @fires\n *\n * refresh-server-side - Fired to request a server-side refresh. detail: `RefreshServerSideEventDetail`\n *\n * @fires\n *\n * set-server-side-datasource - Fired to attach or clear the server-side row model datasource\n *\n * @fires\n *\n * datasource-loading-started - Fired when a server-side load cycle starts\n *\n * @fires\n *\n * add-grid-css-class - Fired to add a CSS class on the grid host (e.g. server-side styling). detail: `GridCssClassEventDetail`\n *\n * @fires\n *\n * remove-grid-css-class - Fired to remove a CSS class from the grid host. detail: `GridCssClassEventDetail`\n *\n * @fires\n *\n * datasource-initialize - Fired to hand off server-side grid options. detail: `InitializeEventDetail`\n *\n * @fires\n *\n * datasource-init - Fired when the server-side grid model should initialize data\n *\n * @fires\n *\n * datasource-schema-updated - Fired when column metadata or defs are updated. detail: `SchemaUpdatedEventDetail`\n *\n * @fires\n *\n * datasource-filters-restored - Fired when persisted filters are reapplied\n *\n * @fires\n *\n * datasource-data-cleared - Fired when the grid drops every row it held (reload, filter or sort change, destroy); `includeSchema` says whether the columns went too. detail: `DataClearedEventDetail`\n *\n * @fires\n *\n * apply-server-side-transaction - Fired to apply a server-side row transaction\n *\n * @fires\n *\n * datasource-ready - Fired when the host grid is ready to start loading data\n *\n * @beta\n */\n",
|
|
25480
25511
|
"excerptTokens": [
|
|
25481
25512
|
{
|
|
25482
25513
|
"kind": "Content",
|
|
@@ -26003,37 +26034,6 @@
|
|
|
26003
26034
|
"isOptional": false,
|
|
26004
26035
|
"isAbstract": false,
|
|
26005
26036
|
"name": "restart"
|
|
26006
|
-
},
|
|
26007
|
-
{
|
|
26008
|
-
"kind": "Property",
|
|
26009
|
-
"canonicalReference": "@genesislcap/grid-pro!GridProServerSideDatasource#serializer:member",
|
|
26010
|
-
"docComment": "",
|
|
26011
|
-
"excerptTokens": [
|
|
26012
|
-
{
|
|
26013
|
-
"kind": "Content",
|
|
26014
|
-
"text": "serializer: "
|
|
26015
|
-
},
|
|
26016
|
-
{
|
|
26017
|
-
"kind": "Reference",
|
|
26018
|
-
"text": "JSONSerializer",
|
|
26019
|
-
"canonicalReference": "@genesislcap/foundation-utils!JSONSerializer:interface"
|
|
26020
|
-
},
|
|
26021
|
-
{
|
|
26022
|
-
"kind": "Content",
|
|
26023
|
-
"text": ";"
|
|
26024
|
-
}
|
|
26025
|
-
],
|
|
26026
|
-
"isReadonly": false,
|
|
26027
|
-
"isOptional": false,
|
|
26028
|
-
"releaseTag": "Beta",
|
|
26029
|
-
"name": "serializer",
|
|
26030
|
-
"propertyTypeTokenRange": {
|
|
26031
|
-
"startIndex": 1,
|
|
26032
|
-
"endIndex": 2
|
|
26033
|
-
},
|
|
26034
|
-
"isStatic": false,
|
|
26035
|
-
"isProtected": false,
|
|
26036
|
-
"isAbstract": false
|
|
26037
26037
|
}
|
|
26038
26038
|
],
|
|
26039
26039
|
"extendsTokenRange": {
|
|
@@ -35704,7 +35704,7 @@
|
|
|
35704
35704
|
},
|
|
35705
35705
|
{
|
|
35706
35706
|
"kind": "Content",
|
|
35707
|
-
"text": "<void>;\n errorHandlerFunc?: (message: string, type: string) => void;\n onNoDataAvailableFunc?: () => void;\n onDataAvailableFunc?: () => void;\n resourceName: string;\n resourceParams?: "
|
|
35707
|
+
"text": "<void>;\n errorHandlerFunc?: (message: string, type: string) => void;\n onNoDataAvailableFunc?: () => void;\n onDataAvailableFunc?: () => void;\n onRowsDeliveredFunc?: (rows: any[]) => void;\n onRowsWithdrawnFunc?: (rowIds: string[]) => void;\n resourceName: string;\n resourceParams?: "
|
|
35708
35708
|
},
|
|
35709
35709
|
{
|
|
35710
35710
|
"kind": "Reference",
|