@genesislcap/blank-app-seed 5.10.0-prerelease.1 → 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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "5.10.0-prerelease.1",
4
+ "version": "5.10.1",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
@@ -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, GridProGenesisDatasource{{#if tile.config.gridOptions}}, GridProColumn{{/if}} } from '@genesislcap/rapid-grid-pro/react';
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.onRowClicked, {{/if}}{{#if tile.config.eventing.publishEventName}}onSelectionChanged: any, rowSelection: 'multiple' | 'single'{{/if}} } = {
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}}
@@ -2,7 +2,7 @@
2
2
  hasUserPermission('{{config.permissions.viewRight}}') ? (
3
3
  {{/if}}
4
4
  <RapidGridPro
5
- headerCaseType="capitalCase"
5
+ headerCaseType={GridProCaseType.capitalCase}
6
6
  {{#if config.useOnlyTemplateCols}}
7
7
  onlyTemplateColDefs
8
8
  {{/if}}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
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
+
11
+ ## [5.10.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.9.0...v5.10.0) (2026-04-15)
12
+
13
+
14
+ ### Features
15
+
16
+ * FUI update + react wrappers for components + API_HOST fix [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#556) 6277e5d
17
+ * update react components and FUI version [FUI-2483](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/2483) 304c654
18
+ * update react components and FUI version [FUI-2483](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/2483) (#555) 12aa503
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * remove hardcoded API_HOST env [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) d6be00e
24
+ * update version.json [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 7f6d858
25
+ * updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) a7768e9
26
+ * updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 35ef0e3
27
+ * updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) c209644
28
+ * updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 0ffdb64
29
+ * updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 06349a7
30
+ * updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) ab81158
31
+ * updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 5d23e91
32
+ * updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) c2f38cb
33
+ * updating server version information for GSF [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 968e0a3
34
+
3
35
  ## [5.10.0-prerelease.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.9.1-prerelease.1...v5.10.0-prerelease.1) (2026-04-15)
4
36
 
5
37
 
@@ -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}}",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "5.10.0-prerelease.1",
4
+ "version": "5.10.1",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"