@genesislcap/grid-pro 14.293.2 → 14.294.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/README.md +99 -14
- package/dist/custom-elements.json +0 -61
- package/dist/dts/datasource/base.datasource.d.ts +20 -6
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/esm/datasource/base.datasource.js +3 -2
- package/dist/grid-pro.api.json +0 -30
- package/dist/grid-pro.d.ts +20 -6
- package/docs/api/grid-pro.genesisgriddatasourceelement.md +0 -1
- package/docs/api-report.md +1 -1
- package/package.json +13 -13
- package/docs/api/grid-pro.genesisgriddatasourceelement.rowid.md +0 -11
package/README.md
CHANGED
|
@@ -23,13 +23,26 @@ For more detailed information on API and configurations, please refer to the [AP
|
|
|
23
23
|
- **`src/`**: Source code for the package, including cell-editors, cell-renderers, datasources and utility functions.
|
|
24
24
|
- **`cell/`**: The Grid Pro Cell element and template
|
|
25
25
|
- **`cell-editors/`**: predefined custom cell-editors for common data types including `date`, `number`, `string`, `select`, `multiselect`
|
|
26
|
-
- **`cell-renderers/`**: predefined custom cell-renderers
|
|
27
|
-
- **`column
|
|
26
|
+
- **`cell-renderers/`**: predefined custom cell-renderers including `action`, `actions-menu`, `boolean`, `editable`, `text`, `text-field`, `status-pill`, `select`
|
|
27
|
+
- **`column/`**: Column configuration and management
|
|
28
28
|
- **[`datasource/`](#genesis-datasource)**: Genesis Datasource elements, responsible for fetching data for the Grid Pro element (multiple implementations available, for both client-side and server-side [row models](https://www.ag-grid.com/javascript-data-grid/row-models/)).
|
|
29
29
|
- **`external/`**: External assets such as fonts and styles for themes.
|
|
30
|
+
- **`grid-pro-genesis-datasource/`**: Client-side datasource implementation (CSRM-compatible)
|
|
30
31
|
- **`state-persistence/`**: Classes related to saving and restoring grid state.
|
|
32
|
+
- **`status-bar-components/`**: Status bar components including `load-more`, `pagination`, `label-value`, `reload` (requires AG Grid Enterprise)
|
|
31
33
|
- **`tooltips/`**: Tooltip for errors that happen while syncing data with server after inline editing.
|
|
32
|
-
- **`utils/`**: Utility functions.
|
|
34
|
+
- **`utils/`**: Utility functions for array manipulation, string processing, logging, and more.
|
|
35
|
+
|
|
36
|
+
## Enterprise Features and Licensing
|
|
37
|
+
|
|
38
|
+
**Important:** Some Grid Pro features require AG Grid Enterprise licensing and module registration:
|
|
39
|
+
|
|
40
|
+
- **Status Bar Components**: All status bar functionality (`with-status-bar`, `statusBarConfig`) requires AG Grid Enterprise
|
|
41
|
+
- **Server-Side Row Model**: Server-side datasource requires `@ag-grid-enterprise/server-side-row-model`
|
|
42
|
+
- **Advanced Filtering**: Some advanced filtering features may require Enterprise modules
|
|
43
|
+
- **Excel Export**: Excel export functionality requires AG Grid Enterprise
|
|
44
|
+
|
|
45
|
+
For production use, you must obtain appropriate AG Grid Enterprise licenses. Contact [AG Grid](https://www.ag-grid.com/license-pricing/) for licensing information.
|
|
33
46
|
|
|
34
47
|
## Getting Started
|
|
35
48
|
|
|
@@ -60,6 +73,30 @@ import { rapidGridComponents } from '@genesislcap/rapid-grid-pro';
|
|
|
60
73
|
provideDesignSystem().register(baseComponents, rapidGridComponents);
|
|
61
74
|
```
|
|
62
75
|
|
|
76
|
+
### Enterprise Module Registration
|
|
77
|
+
|
|
78
|
+
**REQUIRED for Status Bar and Server-Side Datasource Features**
|
|
79
|
+
|
|
80
|
+
If you plan to use Status Bar components (`with-status-bar`) or Server-Side datasource (`<grid-pro-server-side-datasource>`), you **MUST** register the appropriate AG Grid Enterprise modules:
|
|
81
|
+
|
|
82
|
+
```typescript
|
|
83
|
+
import { ModuleRegistry } from '@ag-grid-community/core';
|
|
84
|
+
|
|
85
|
+
// Required for Status Bar components (with-status-bar, statusBarConfig)
|
|
86
|
+
import { StatusBarModule } from '@ag-grid-enterprise/status-bar';
|
|
87
|
+
|
|
88
|
+
// Required for Server-Side datasource (<grid-pro-server-side-datasource>)
|
|
89
|
+
import { ServerSideRowModelModule } from '@ag-grid-enterprise/server-side-row-model';
|
|
90
|
+
|
|
91
|
+
// Register the enterprise modules you need
|
|
92
|
+
ModuleRegistry.registerModules([
|
|
93
|
+
StatusBarModule, // Required for: with-status-bar, statusBarConfig
|
|
94
|
+
ServerSideRowModelModule, // Required for: <grid-pro-server-side-datasource>
|
|
95
|
+
]);
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
**Note:** These modules require a valid AG Grid Enterprise license for production use.
|
|
99
|
+
|
|
63
100
|
### Grid Pro Element Attributes
|
|
64
101
|
|
|
65
102
|
The `<grid-pro>` element supports the following attributes and properties:
|
|
@@ -96,7 +133,7 @@ The `<grid-pro>` element supports the following attributes and properties:
|
|
|
96
133
|
|
|
97
134
|
#### Status Bar Configuration
|
|
98
135
|
|
|
99
|
-
**Enterprise License Required**: Status bar functionality requires the AG Grid Enterprise module. Status bar components will only be displayed if the Enterprise module is properly licensed and configured.
|
|
136
|
+
**Enterprise License Required**: Status bar functionality requires the AG Grid Enterprise license and the `StatusBarModule` to be registered (see [Enterprise Module Registration](#enterprise-module-registration) above). Status bar components will only be displayed if the Enterprise module is properly licensed and configured.
|
|
100
137
|
|
|
101
138
|
**Important Datasource Behavior:**
|
|
102
139
|
|
|
@@ -105,7 +142,7 @@ The `<grid-pro>` element supports the following attributes and properties:
|
|
|
105
142
|
|
|
106
143
|
```typescript
|
|
107
144
|
interface GridProStatusBarConfig {
|
|
108
|
-
rows?: boolean; // Enable row count component (default:
|
|
145
|
+
rows?: boolean; // Enable row count component (default: false)
|
|
109
146
|
maxRows?: boolean; // Enable max rows label-value component (default: false)
|
|
110
147
|
loadMore?: boolean | GridProStatusBarLoadMoreConfig; // Enable/configure load more button (CLIENT-SIDE ONLY)
|
|
111
148
|
reload?: boolean | GridProStatusBarReloadConfig; // Enable/configure reload button
|
|
@@ -302,10 +339,10 @@ Some **resource** related attributes are `DATASERVER` or `REQUEST_SERVER` speci
|
|
|
302
339
|
|
|
303
340
|
|Name|Type|Default|Description|
|
|
304
341
|
|----|----|-------|-----------|
|
|
305
|
-
| `resource-name` | `string` | - | The name of the target [Data Server](https://learn.genesis.global/docs/server/data-server/introduction/) `query` or [Request Server](https://learn.genesis.global/docs/server/request-server/introduction/) `requestReply`. |
|
|
342
|
+
| `resource-name` | `string` | - | **Required**. The name of the target [Data Server](https://learn.genesis.global/docs/server/data-server/introduction/) `query` or [Request Server](https://learn.genesis.global/docs/server/request-server/introduction/) `requestReply`. |
|
|
306
343
|
| `is-snapshot` | `boolean` | `false` | Request a snapshot from the server. |
|
|
307
344
|
| `criteria` |`string`| - |Clients can send a Groovy expression to perform filters on the query server; these remain active for the life of the subscription.|
|
|
308
|
-
| `max-rows` | `number` |
|
|
345
|
+
| `max-rows` | `number` | `250` | Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages. **This will not affect the number of rows displayed**|
|
|
309
346
|
| `view-number` | `number` | - | The desired view/page you want data from. |
|
|
310
347
|
|
|
311
348
|
##### DATASERVER only attributes
|
|
@@ -313,7 +350,7 @@ Some **resource** related attributes are `DATASERVER` or `REQUEST_SERVER` speci
|
|
|
313
350
|
|Name|Type|Default|Description|
|
|
314
351
|
|----|----|-------|-----------|
|
|
315
352
|
| `fields` | `string` | - | This optional parameter allows you to select a subset of fields from the query if the client is not interested in receiving all of them. |
|
|
316
|
-
| `max-view` | `number` |
|
|
353
|
+
| `max-view` | `number` | `1000` | Maximum number of rows to track as part of a client "view" |
|
|
317
354
|
| `moving-view` | `boolean` | `false` | If true, when the maximum number of rows defined in `max-view` is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows. If false, the updates in the server will be sent to the front end regardless of order. Note that this will only update the UI; no changes will be performed in the database.|
|
|
318
355
|
| `order-by` | `string` | - | This option can be used to select a [Data Server index](https://learn.genesis.global/docs/database/data-types/index-entities/) (defined in the Data Server `query`), which is especially useful if you want the data to be sorted in a specific way. By default, Data Server rows are returned in order of creation (from oldest database record to newest).|
|
|
319
356
|
| `reverse` | `boolean` | `false` | This option changes the [Data Server index](https://learn.genesis.global/docs/database/data-types/index-entities/) iteration. For example, if you are using the default index, the query will return rows in order from the newest database records to the oldest.|
|
|
@@ -323,9 +360,9 @@ Some **resource** related attributes are `DATASERVER` or `REQUEST_SERVER` speci
|
|
|
323
360
|
|Name|Type|Default|Description|
|
|
324
361
|
|----|----|-------|-----------|
|
|
325
362
|
| `disable-polling` | `boolean` | `false` | This option disables polling if set to true (data updates for the grid will not be fetched automatically).|
|
|
326
|
-
| `polling-interval` | `number` |
|
|
327
|
-
|`request`| `
|
|
328
|
-
|`request-auto-setup`| `boolean` | `
|
|
363
|
+
| `polling-interval` | `number` | `5000` | This option enables you to set a custom polling frequency (in milliseconds) for a [Request Server](https://learn.genesis.global/docs/server/request-server/introduction/) resource. Note that this option only works with Request Server resources; if your resource is a Data Server `query`, your grid is updated in real time. |
|
|
364
|
+
|`request`| `any` | - | Similar to `fields` but for [Request Server](https://learn.genesis.global/docs/server/request-server/introduction/) scenarios. This optional parameter enables you to specify request fields, which can include wildcards.|
|
|
365
|
+
|`request-auto-setup`| `boolean` | `true` | This option, if set to true, will automatically set up the `request` based on the datasources's metadata.|
|
|
329
366
|
|
|
330
367
|
#### Component Attributes
|
|
331
368
|
|
|
@@ -335,7 +372,7 @@ There are additional attributes that can affect the behavior of a datasource com
|
|
|
335
372
|
|
|
336
373
|
|Name|Type|Default|Description|
|
|
337
374
|
|----|----|-------|-----------|
|
|
338
|
-
| `restart-on-reconnection` | `boolean` | `
|
|
375
|
+
| `restart-on-reconnection` | `boolean` | `true` | This option, if set to true, will force the resource data to be reloaded upon a reconnection event.|
|
|
339
376
|
| `keep-col-defs-on-clear-row-data` | `boolean` | `false` | This option, if set to true, will retain column definitions upon a `restart` or `clearRowData` event. |
|
|
340
377
|
|
|
341
378
|
##### `<grid-pro-server-side-datasource>`
|
|
@@ -534,6 +571,8 @@ This document outlines the available features of our two "Grid Pro" datasources:
|
|
|
534
571
|
|
|
535
572
|
## \<grid-pro-server-side-datasource\>
|
|
536
573
|
|
|
574
|
+
**Enterprise License Required**: Server-side datasource requires AG Grid Enterprise licensing and the `ServerSideRowModelModule` to be registered (see [Enterprise Module Registration](#enterprise-module-registration) above).
|
|
575
|
+
|
|
537
576
|
### Server-Side Features
|
|
538
577
|
|
|
539
578
|
- **Sorting**: Order by any INDEX column/field, ASC or DESC.
|
|
@@ -573,7 +612,7 @@ This document outlines the available features of our two "Grid Pro" datasources:
|
|
|
573
612
|
|
|
574
613
|
- Operations like sorting and filtering are pushed to the backend.
|
|
575
614
|
- Filtering uses `CRITERIA_MATCH` param
|
|
576
|
-
- Sorting uses `
|
|
615
|
+
- Sorting uses `ORDER_BY` param
|
|
577
616
|
- Both work the same way, once filtering/sorting is applied the datasource component "resets itself", basically starting a new stream with the updated params.
|
|
578
617
|
- **LIMITATIONS**
|
|
579
618
|
- Sorting can only be applied to "index" fields/columns. Also mentioned [here](https://www.notion.so/Grid-Pro-Datasource-Inventory-d11ca7570ee94847bbcb3e7362025b0a?pvs=21). More details [here](https://genesisglobal.atlassian.net/jira/polaris/projects/GPR/ideas/view/4721227?selectedIssue=GPR-171&focusedCommentId=143757) and [here](https://genesis-global-talk.slack.com/archives/C0416MFG360/p1696456988606789).
|
|
@@ -630,7 +669,7 @@ It's important to note that any client app can implement the other Row Models to
|
|
|
630
669
|
### Summary
|
|
631
670
|
|
|
632
671
|
- **Client-Side Datasource**: Suitable for smaller datasets where all data can be loaded into the client. Operations like sorting and filtering are performed on the client-side.
|
|
633
|
-
- **Server-Side Datasource**: Ideal for large datasets, where operations are pushed to the backend to ensure performance and consistency. Data is fetched as needed based on user interactions.
|
|
672
|
+
- **Server-Side Datasource**: Ideal for large datasets, where operations are pushed to the backend to ensure performance and consistency. Data is fetched as needed based on user interactions. **Requires AG Grid Enterprise licensing**.
|
|
634
673
|
|
|
635
674
|
## Performance
|
|
636
675
|
|
|
@@ -664,6 +703,52 @@ By leveraging both DOM Virtualisation and Pagination, our "grid components" can
|
|
|
664
703
|
- **Scrolling**: As users scroll, DOM Virtualisation ensures only the visible rows and columns are rendered, maintaining performance.
|
|
665
704
|
- **Page Navigation**: Users can navigate through pages to access the full dataset without overwhelming the client.
|
|
666
705
|
|
|
706
|
+
## Cell Renderers
|
|
707
|
+
|
|
708
|
+
Grid Pro provides a comprehensive set of built-in cell renderers for common data types and use cases:
|
|
709
|
+
|
|
710
|
+
### Available Renderers
|
|
711
|
+
|
|
712
|
+
- **ActionRenderer**: Renders action buttons for row operations (edit, delete, custom actions)
|
|
713
|
+
- **ActionsMenuRenderer**: Renders a dropdown menu with multiple actions
|
|
714
|
+
- **BooleanRenderer**: Displays boolean values as checkboxes or toggle switches
|
|
715
|
+
- **EditableRenderer**: Provides inline editing capabilities for cells
|
|
716
|
+
- **TextRenderer**: Basic text display with optional formatting
|
|
717
|
+
- **TextFieldRenderer**: Text input field for editing
|
|
718
|
+
- **StatusPillRenderer**: Displays status values or countdown timer as colored pills/badges
|
|
719
|
+
- **SelectRenderer**: Dropdown selection for predefined options
|
|
720
|
+
|
|
721
|
+
### Custom Renderers
|
|
722
|
+
|
|
723
|
+
You can create custom cell renderers by implementing the AG Grid ICellRenderer interface and registering them via the `gridComponents` property.
|
|
724
|
+
|
|
725
|
+
## Cell Editors
|
|
726
|
+
|
|
727
|
+
Grid Pro includes predefined cell editors for common data types:
|
|
728
|
+
|
|
729
|
+
### Available Editors
|
|
730
|
+
|
|
731
|
+
- **DateEditor**: Date picker with configurable format and validation
|
|
732
|
+
- **NumberEditor**: Numeric input with formatting and validation options
|
|
733
|
+
- **StringEditor**: Text input with optional validation and placeholder
|
|
734
|
+
- **SelectEditor**: Dropdown selection with support for dynamic options
|
|
735
|
+
- **MultiselectEditor**: Multi-selection dropdown for multiple values
|
|
736
|
+
|
|
737
|
+
### Editor Configuration
|
|
738
|
+
|
|
739
|
+
Each editor supports extensive configuration through editor parameters, allowing customization of appearance, validation, and behavior.
|
|
740
|
+
|
|
741
|
+
## Status Bar Components
|
|
742
|
+
|
|
743
|
+
**Enterprise Feature**: Status bar components require AG Grid Enterprise licensing and the StatusBarModule to be registered.
|
|
744
|
+
|
|
745
|
+
### Available Components
|
|
746
|
+
|
|
747
|
+
- **LabelValueStatusBarComponent**: Displays key-value pairs in the status bar
|
|
748
|
+
- **LoadMoreStatusBarComponent**: Provides load more functionality (client-side only)
|
|
749
|
+
- **PaginationStatusBarComponent**: Shows pagination controls and information
|
|
750
|
+
- **ReloadStatusBarComponent**: Adds reload/refresh button
|
|
751
|
+
|
|
667
752
|
## License
|
|
668
753
|
|
|
669
754
|
Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
|
|
@@ -6437,15 +6437,6 @@
|
|
|
6437
6437
|
"default": "true",
|
|
6438
6438
|
"description": "Attribute to set whether the datasource should restart when it reconnects."
|
|
6439
6439
|
},
|
|
6440
|
-
{
|
|
6441
|
-
"kind": "field",
|
|
6442
|
-
"name": "rowId",
|
|
6443
|
-
"type": {
|
|
6444
|
-
"text": "string"
|
|
6445
|
-
},
|
|
6446
|
-
"privacy": "protected",
|
|
6447
|
-
"readonly": true
|
|
6448
|
-
},
|
|
6449
6440
|
{
|
|
6450
6441
|
"kind": "field",
|
|
6451
6442
|
"name": "defaultRowIdByResourceType",
|
|
@@ -7373,19 +7364,6 @@
|
|
|
7373
7364
|
"module": "src/datasource/base.datasource.ts"
|
|
7374
7365
|
}
|
|
7375
7366
|
},
|
|
7376
|
-
{
|
|
7377
|
-
"kind": "field",
|
|
7378
|
-
"name": "rowId",
|
|
7379
|
-
"type": {
|
|
7380
|
-
"text": "string"
|
|
7381
|
-
},
|
|
7382
|
-
"privacy": "protected",
|
|
7383
|
-
"readonly": true,
|
|
7384
|
-
"inheritedFrom": {
|
|
7385
|
-
"name": "GenesisGridDatasourceElement",
|
|
7386
|
-
"module": "src/datasource/base.datasource.ts"
|
|
7387
|
-
}
|
|
7388
|
-
},
|
|
7389
7367
|
{
|
|
7390
7368
|
"kind": "field",
|
|
7391
7369
|
"name": "defaultRowIdByResourceType",
|
|
@@ -9110,19 +9088,6 @@
|
|
|
9110
9088
|
"module": "src/datasource/base.datasource.ts"
|
|
9111
9089
|
}
|
|
9112
9090
|
},
|
|
9113
|
-
{
|
|
9114
|
-
"kind": "field",
|
|
9115
|
-
"name": "rowId",
|
|
9116
|
-
"type": {
|
|
9117
|
-
"text": "string"
|
|
9118
|
-
},
|
|
9119
|
-
"privacy": "protected",
|
|
9120
|
-
"readonly": true,
|
|
9121
|
-
"inheritedFrom": {
|
|
9122
|
-
"name": "GenesisGridDatasourceElement",
|
|
9123
|
-
"module": "src/datasource/base.datasource.ts"
|
|
9124
|
-
}
|
|
9125
|
-
},
|
|
9126
9091
|
{
|
|
9127
9092
|
"kind": "field",
|
|
9128
9093
|
"name": "defaultRowIdByResourceType",
|
|
@@ -10672,19 +10637,6 @@
|
|
|
10672
10637
|
"module": "src/datasource/base.datasource.ts"
|
|
10673
10638
|
}
|
|
10674
10639
|
},
|
|
10675
|
-
{
|
|
10676
|
-
"kind": "field",
|
|
10677
|
-
"name": "rowId",
|
|
10678
|
-
"type": {
|
|
10679
|
-
"text": "string"
|
|
10680
|
-
},
|
|
10681
|
-
"privacy": "protected",
|
|
10682
|
-
"readonly": true,
|
|
10683
|
-
"inheritedFrom": {
|
|
10684
|
-
"name": "GenesisGridDatasourceElement",
|
|
10685
|
-
"module": "src/datasource/base.datasource.ts"
|
|
10686
|
-
}
|
|
10687
|
-
},
|
|
10688
10640
|
{
|
|
10689
10641
|
"kind": "field",
|
|
10690
10642
|
"name": "defaultRowIdByResourceType",
|
|
@@ -14095,19 +14047,6 @@
|
|
|
14095
14047
|
"module": "src/datasource/base.datasource.ts"
|
|
14096
14048
|
}
|
|
14097
14049
|
},
|
|
14098
|
-
{
|
|
14099
|
-
"kind": "field",
|
|
14100
|
-
"name": "rowId",
|
|
14101
|
-
"type": {
|
|
14102
|
-
"text": "string"
|
|
14103
|
-
},
|
|
14104
|
-
"privacy": "protected",
|
|
14105
|
-
"readonly": true,
|
|
14106
|
-
"inheritedFrom": {
|
|
14107
|
-
"name": "GenesisGridDatasourceElement",
|
|
14108
|
-
"module": "src/datasource/base.datasource.ts"
|
|
14109
|
-
}
|
|
14110
|
-
},
|
|
14111
14050
|
{
|
|
14112
14051
|
"kind": "field",
|
|
14113
14052
|
"name": "defaultRowIdByResourceType",
|
|
@@ -45,7 +45,11 @@ declare const GenesisGridDatasourceElement_base: new () => {
|
|
|
45
45
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
46
46
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
47
47
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
48
|
-
readonly attributes: NamedNodeMap;
|
|
48
|
+
readonly attributes: NamedNodeMap; /**
|
|
49
|
+
* Returns the `row-id` attribute, depending on the resource type.
|
|
50
|
+
* @remarks Will favour the `row-id` attribute if set.
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
49
53
|
readonly classList: DOMTokenList;
|
|
50
54
|
className: string;
|
|
51
55
|
readonly clientHeight: number;
|
|
@@ -123,6 +127,10 @@ declare const GenesisGridDatasourceElement_base: new () => {
|
|
|
123
127
|
readonly nodeName: string;
|
|
124
128
|
readonly nodeType: number;
|
|
125
129
|
nodeValue: string;
|
|
130
|
+
/**
|
|
131
|
+
* Override datasource initialization to handle errors properly.
|
|
132
|
+
* @internal
|
|
133
|
+
*/
|
|
126
134
|
readonly parentElement: HTMLElement;
|
|
127
135
|
readonly parentNode: ParentNode;
|
|
128
136
|
readonly previousSibling: ChildNode;
|
|
@@ -175,16 +183,17 @@ declare const GenesisGridDatasourceElement_base: new () => {
|
|
|
175
183
|
ariaHasPopup: string;
|
|
176
184
|
ariaHidden: string;
|
|
177
185
|
ariaInvalid: string;
|
|
178
|
-
ariaKeyShortcuts: string;
|
|
186
|
+
ariaKeyShortcuts: string; /**
|
|
187
|
+
* The operation type for the {@link GridProBaseDatasource.mapTransaction} method.
|
|
188
|
+
* @internal
|
|
189
|
+
*/
|
|
179
190
|
ariaLabel: string;
|
|
180
191
|
ariaLevel: string;
|
|
181
192
|
ariaLive: string;
|
|
182
193
|
ariaModal: string;
|
|
183
194
|
ariaMultiLine: string;
|
|
184
195
|
ariaMultiSelectable: string;
|
|
185
|
-
ariaOrientation: string;
|
|
186
|
-
* @public
|
|
187
|
-
*/
|
|
196
|
+
ariaOrientation: string;
|
|
188
197
|
ariaPlaceholder: string;
|
|
189
198
|
ariaPosInSet: string;
|
|
190
199
|
ariaPressed: string;
|
|
@@ -380,6 +389,11 @@ export declare class GenesisGridDatasourceElement extends GenesisGridDatasourceE
|
|
|
380
389
|
* @privateRemarks This attribute is shared across all datasources to ensure consistent behavior.
|
|
381
390
|
*/
|
|
382
391
|
restartOnReconnection: boolean;
|
|
392
|
+
/**
|
|
393
|
+
* Returns the `row-id` attribute, depending on the resource type.
|
|
394
|
+
* @remarks Will favour the `row-id` attribute if set.
|
|
395
|
+
* @internal
|
|
396
|
+
*/
|
|
383
397
|
protected get rowId(): string;
|
|
384
398
|
/**
|
|
385
399
|
* Returns whether the `row-id` attribute is the default one, depending on the resource type.
|
|
@@ -415,7 +429,7 @@ export declare class GenesisGridDatasourceElement extends GenesisGridDatasourceE
|
|
|
415
429
|
protected initializeDatasource(options: DatasourceOptions, fetchMeta?: boolean, startStream?: boolean): Promise<boolean>;
|
|
416
430
|
}
|
|
417
431
|
/**
|
|
418
|
-
* The operation type for the {@link
|
|
432
|
+
* The operation type for the {@link GridProBaseDatasource.mapTransaction} method.
|
|
419
433
|
* @internal
|
|
420
434
|
*/
|
|
421
435
|
export declare enum OperationType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.datasource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EACN,WAAW,EACX,WAAW,EACX,kBAAkB,EAClB,qBAAqB,EACtB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,UAAU,EAGV,iBAAiB,EACjB,gBAAgB,EAChB,aAAa,EAKd,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AAGxD,OAAO,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAErD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAS3C,OAAO,EAAE,KAAK,8BAA8B,EAA4B,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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"}
|
|
@@ -46,7 +46,8 @@ export class GenesisGridDatasourceElement extends DatasourceEventHandler(Foundat
|
|
|
46
46
|
this.criteriaFromFilters = new Map();
|
|
47
47
|
this.update = new BehaviorSubject(new Map());
|
|
48
48
|
}
|
|
49
|
-
|
|
49
|
+
/**
|
|
50
|
+
* Returns the `row-id` attribute, depending on the resource type.
|
|
50
51
|
* @remarks Will favour the `row-id` attribute if set.
|
|
51
52
|
* @internal
|
|
52
53
|
*/
|
|
@@ -295,7 +296,7 @@ __decorate([
|
|
|
295
296
|
volatile
|
|
296
297
|
], GenesisGridDatasourceElement.prototype, "isRequestServer", null);
|
|
297
298
|
/**
|
|
298
|
-
* The operation type for the {@link
|
|
299
|
+
* The operation type for the {@link GridProBaseDatasource.mapTransaction} method.
|
|
299
300
|
* @internal
|
|
300
301
|
*/
|
|
301
302
|
export var OperationType;
|
package/dist/grid-pro.api.json
CHANGED
|
@@ -8104,36 +8104,6 @@
|
|
|
8104
8104
|
"isProtected": false,
|
|
8105
8105
|
"isAbstract": false
|
|
8106
8106
|
},
|
|
8107
|
-
{
|
|
8108
|
-
"kind": "Property",
|
|
8109
|
-
"canonicalReference": "@genesislcap/grid-pro!GenesisGridDatasourceElement#rowId:member",
|
|
8110
|
-
"docComment": "",
|
|
8111
|
-
"excerptTokens": [
|
|
8112
|
-
{
|
|
8113
|
-
"kind": "Content",
|
|
8114
|
-
"text": "protected get rowId(): "
|
|
8115
|
-
},
|
|
8116
|
-
{
|
|
8117
|
-
"kind": "Content",
|
|
8118
|
-
"text": "string"
|
|
8119
|
-
},
|
|
8120
|
-
{
|
|
8121
|
-
"kind": "Content",
|
|
8122
|
-
"text": ";"
|
|
8123
|
-
}
|
|
8124
|
-
],
|
|
8125
|
-
"isReadonly": true,
|
|
8126
|
-
"isOptional": false,
|
|
8127
|
-
"releaseTag": "Public",
|
|
8128
|
-
"name": "rowId",
|
|
8129
|
-
"propertyTypeTokenRange": {
|
|
8130
|
-
"startIndex": 1,
|
|
8131
|
-
"endIndex": 2
|
|
8132
|
-
},
|
|
8133
|
-
"isStatic": false,
|
|
8134
|
-
"isProtected": true,
|
|
8135
|
-
"isAbstract": false
|
|
8136
|
-
},
|
|
8137
8107
|
{
|
|
8138
8108
|
"kind": "Property",
|
|
8139
8109
|
"canonicalReference": "@genesislcap/grid-pro!GenesisGridDatasourceElement#rowIdAttr:member",
|
package/dist/grid-pro.d.ts
CHANGED
|
@@ -1088,6 +1088,11 @@ export declare class GenesisGridDatasourceElement extends GenesisGridDatasourceE
|
|
|
1088
1088
|
* @privateRemarks This attribute is shared across all datasources to ensure consistent behavior.
|
|
1089
1089
|
*/
|
|
1090
1090
|
restartOnReconnection: boolean;
|
|
1091
|
+
/**
|
|
1092
|
+
* Returns the `row-id` attribute, depending on the resource type.
|
|
1093
|
+
* @remarks Will favour the `row-id` attribute if set.
|
|
1094
|
+
* @internal
|
|
1095
|
+
*/
|
|
1091
1096
|
protected get rowId(): string;
|
|
1092
1097
|
/**
|
|
1093
1098
|
* Returns whether the `row-id` attribute is the default one, depending on the resource type.
|
|
@@ -1154,7 +1159,11 @@ declare const GenesisGridDatasourceElement_base: new () => {
|
|
|
1154
1159
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1155
1160
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
1156
1161
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1157
|
-
readonly attributes: NamedNodeMap;
|
|
1162
|
+
readonly attributes: NamedNodeMap; /**
|
|
1163
|
+
* Returns the `row-id` attribute, depending on the resource type.
|
|
1164
|
+
* @remarks Will favour the `row-id` attribute if set.
|
|
1165
|
+
* @internal
|
|
1166
|
+
*/
|
|
1158
1167
|
readonly classList: DOMTokenList;
|
|
1159
1168
|
className: string;
|
|
1160
1169
|
readonly clientHeight: number;
|
|
@@ -1232,6 +1241,10 @@ declare const GenesisGridDatasourceElement_base: new () => {
|
|
|
1232
1241
|
readonly nodeName: string;
|
|
1233
1242
|
readonly nodeType: number;
|
|
1234
1243
|
nodeValue: string;
|
|
1244
|
+
/**
|
|
1245
|
+
* Override datasource initialization to handle errors properly.
|
|
1246
|
+
* @internal
|
|
1247
|
+
*/
|
|
1235
1248
|
readonly parentElement: HTMLElement;
|
|
1236
1249
|
readonly parentNode: ParentNode;
|
|
1237
1250
|
readonly previousSibling: ChildNode;
|
|
@@ -1284,16 +1297,17 @@ declare const GenesisGridDatasourceElement_base: new () => {
|
|
|
1284
1297
|
ariaHasPopup: string;
|
|
1285
1298
|
ariaHidden: string;
|
|
1286
1299
|
ariaInvalid: string;
|
|
1287
|
-
ariaKeyShortcuts: string;
|
|
1300
|
+
ariaKeyShortcuts: string; /**
|
|
1301
|
+
* The operation type for the {@link GridProBaseDatasource.mapTransaction} method.
|
|
1302
|
+
* @internal
|
|
1303
|
+
*/
|
|
1288
1304
|
ariaLabel: string;
|
|
1289
1305
|
ariaLevel: string;
|
|
1290
1306
|
ariaLive: string;
|
|
1291
1307
|
ariaModal: string;
|
|
1292
1308
|
ariaMultiLine: string;
|
|
1293
1309
|
ariaMultiSelectable: string;
|
|
1294
|
-
ariaOrientation: string;
|
|
1295
|
-
* @public
|
|
1296
|
-
*/
|
|
1310
|
+
ariaOrientation: string;
|
|
1297
1311
|
ariaPlaceholder: string;
|
|
1298
1312
|
ariaPosInSet: string;
|
|
1299
1313
|
ariaPressed: string;
|
|
@@ -3926,7 +3940,7 @@ declare type OnlyFunctions<T> = {
|
|
|
3926
3940
|
};
|
|
3927
3941
|
|
|
3928
3942
|
/**
|
|
3929
|
-
* The operation type for the {@link
|
|
3943
|
+
* The operation type for the {@link GridProBaseDatasource.mapTransaction} method.
|
|
3930
3944
|
* @internal
|
|
3931
3945
|
*/
|
|
3932
3946
|
export declare enum OperationType {
|
|
@@ -40,7 +40,6 @@ export declare class GenesisGridDatasourceElement extends GenesisGridDatasourceE
|
|
|
40
40
|
| [restartOnReconnection](./grid-pro.genesisgriddatasourceelement.restartonreconnection.md) | | boolean | Attribute to set whether the datasource should restart when it reconnects. |
|
|
41
41
|
| [reverse](./grid-pro.genesisgriddatasourceelement.reverse.md) | | boolean | |
|
|
42
42
|
| [rowDataMapper](./grid-pro.genesisgriddatasourceelement.rowdatamapper.md) | | Function | Allows grid data updates to be processed via and external function before applying in grid |
|
|
43
|
-
| [rowId](./grid-pro.genesisgriddatasourceelement.rowid.md) | <p><code>protected</code></p><p><code>readonly</code></p> | string | |
|
|
44
43
|
| [rowIdAttr](./grid-pro.genesisgriddatasourceelement.rowidattr.md) | | any | <p>Attribute to set an unique identifier for the row.</p><p>Defaults to <code>ROW_REF</code> or <code>RECORD_ID</code> depending on the resource type.</p> |
|
|
45
44
|
| [update](./grid-pro.genesisgriddatasourceelement.update.md) | <code>protected</code> | BehaviorSubject<Map<string, string>> | |
|
|
46
45
|
| [viewNumber](./grid-pro.genesisgriddatasourceelement.viewnumber.md) | | number | |
|
package/docs/api-report.md
CHANGED
|
@@ -834,7 +834,7 @@ export class GenesisGridDatasourceElement extends GenesisGridDatasourceElement_b
|
|
|
834
834
|
// (undocumented)
|
|
835
835
|
reverse: boolean;
|
|
836
836
|
rowDataMapper: Function;
|
|
837
|
-
//
|
|
837
|
+
// @internal
|
|
838
838
|
protected get rowId(): string;
|
|
839
839
|
rowIdAttr: any;
|
|
840
840
|
// (undocumented)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/grid-pro",
|
|
3
3
|
"description": "Genesis Foundation AG Grid",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.294.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -38,20 +38,20 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@genesislcap/foundation-testing": "14.
|
|
42
|
-
"@genesislcap/genx": "14.
|
|
43
|
-
"@genesislcap/rollup-builder": "14.
|
|
44
|
-
"@genesislcap/ts-builder": "14.
|
|
45
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
46
|
-
"@genesislcap/vite-builder": "14.
|
|
47
|
-
"@genesislcap/webpack-builder": "14.
|
|
41
|
+
"@genesislcap/foundation-testing": "14.294.0",
|
|
42
|
+
"@genesislcap/genx": "14.294.0",
|
|
43
|
+
"@genesislcap/rollup-builder": "14.294.0",
|
|
44
|
+
"@genesislcap/ts-builder": "14.294.0",
|
|
45
|
+
"@genesislcap/uvu-playwright-builder": "14.294.0",
|
|
46
|
+
"@genesislcap/vite-builder": "14.294.0",
|
|
47
|
+
"@genesislcap/webpack-builder": "14.294.0",
|
|
48
48
|
"rimraf": "^5.0.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@genesislcap/foundation-comms": "14.
|
|
52
|
-
"@genesislcap/foundation-logger": "14.
|
|
53
|
-
"@genesislcap/foundation-ui": "14.
|
|
54
|
-
"@genesislcap/foundation-utils": "14.
|
|
51
|
+
"@genesislcap/foundation-comms": "14.294.0",
|
|
52
|
+
"@genesislcap/foundation-logger": "14.294.0",
|
|
53
|
+
"@genesislcap/foundation-ui": "14.294.0",
|
|
54
|
+
"@genesislcap/foundation-utils": "14.294.0",
|
|
55
55
|
"@microsoft/fast-colors": "5.3.1",
|
|
56
56
|
"@microsoft/fast-components": "2.30.6",
|
|
57
57
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"access": "public"
|
|
78
78
|
},
|
|
79
79
|
"customElements": "dist/custom-elements.json",
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "f7e3720d6f7bd3810a4a8350e4a3e9f436edb078"
|
|
81
81
|
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
-
|
|
3
|
-
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [GenesisGridDatasourceElement](./grid-pro.genesisgriddatasourceelement.md) > [rowId](./grid-pro.genesisgriddatasourceelement.rowid.md)
|
|
4
|
-
|
|
5
|
-
## GenesisGridDatasourceElement.rowId property
|
|
6
|
-
|
|
7
|
-
**Signature:**
|
|
8
|
-
|
|
9
|
-
```typescript
|
|
10
|
-
protected get rowId(): string;
|
|
11
|
-
```
|