@genesislcap/blank-app-seed 5.10.0 → 5.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.genx/package.json
CHANGED
|
@@ -3,7 +3,9 @@ import { useEffect } from 'react';
|
|
|
3
3
|
import { EntityManagement } from '@genesislcap/foundation-entity-management/react';
|
|
4
4
|
{{/ifEquals}}
|
|
5
5
|
{{#ifEquals tile.type 'grid-pro'}}
|
|
6
|
-
import { RapidGridPro
|
|
6
|
+
import { RapidGridPro } from '@genesislcap/rapid-grid-pro/react';
|
|
7
|
+
import { GridProGenesisDatasource{{#if tile.config.gridOptions}}, GridProColumn{{/if}} } from '@genesislcap/grid-pro/react';
|
|
8
|
+
import { GridProCaseType } from '@genesislcap/grid-pro';
|
|
7
9
|
{{/ifEquals}}
|
|
8
10
|
{{#ifEquals tile.type 'smart-form'}}
|
|
9
11
|
import { FoundationForm } from '@genesislcap/foundation-forms/react';
|
|
@@ -98,7 +100,7 @@ export const {{pascalCase tile.componentName}}: React.FC = () => {
|
|
|
98
100
|
const columnDefs: typeof columnDefsTile = [...columnDefsTile];
|
|
99
101
|
{{/if}}
|
|
100
102
|
{{#ifAny tile.config.gridOptions tile.config.eventing.publishEventName}}
|
|
101
|
-
const gridOptions: { {{#if tile.config.gridOptions}}onRowClicked: GridOptionsConfig
|
|
103
|
+
const gridOptions: { {{#if tile.config.gridOptions}}onRowClicked: GridOptionsConfig['onRowClicked'], {{/if}}{{#if tile.config.eventing.publishEventName}}onSelectionChanged: any, rowSelection: 'multiple' | 'single'{{/if}} } = {
|
|
102
104
|
{{#if tile.config.gridOptions}}
|
|
103
105
|
onRowClicked: gridOptionsTile?.onRowClicked,
|
|
104
106
|
{{/if}}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.10.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.10.0...v5.10.1) (2026-04-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* correct import of grid component [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 38170d1
|
|
9
|
+
* correct import of grid component [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#557) 527d1fe
|
|
10
|
+
|
|
3
11
|
## [5.10.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.9.0...v5.10.0) (2026-04-15)
|
|
4
12
|
|
|
5
13
|
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
"@genesislcap/rapid-design-system": "{{versions.UI}}",
|
|
64
64
|
"@genesislcap/rapid-grid-pro": "{{versions.UI}}",
|
|
65
65
|
"@genesislcap/rapid-grid-tabulator": "{{versions.UI}}",
|
|
66
|
+
"@genesislcap/grid-pro": "{{versions.UI}}",
|
|
66
67
|
"@genesislcap/grid-tabulator": "{{versions.UI}}",
|
|
67
68
|
"@genesislcap/web-core": "{{versions.UI}}",
|
|
68
69
|
"@genesislcap/g2plot-chart": "{{versions.UI}}",
|