@genesislcap/blank-app-seed 5.12.1-prerelease.1 → 5.13.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
|
@@ -55,7 +55,9 @@ import { useSelector } from 'react-redux';
|
|
|
55
55
|
import { selectors } from '../../../store/store';
|
|
56
56
|
{{/if}}
|
|
57
57
|
{{#ifAny tile.config.snapshot tile.config.reqrep tile.config.eventing.listener}}
|
|
58
|
+
{{#ifContains 'entity-manager|grid-pro' tile.type}}
|
|
58
59
|
import { DatasourceConfiguration } from '@genesislcap/foundation-entity-management';
|
|
60
|
+
{{/ifContains}}
|
|
59
61
|
{{/ifAny}}
|
|
60
62
|
import './{{pascalCase tile.title}}Component.css';
|
|
61
63
|
|
|
@@ -118,6 +120,7 @@ export const {{pascalCase tile.componentName}}: React.FC = () => {
|
|
|
118
120
|
{{/ifAny}}
|
|
119
121
|
{{/ifEquals}}
|
|
120
122
|
{{#ifAny tile.config.snapshot tile.config.reqrep tile.config.eventing.listener}}
|
|
123
|
+
{{#ifContains 'entity-manager|grid-pro' tile.type}}
|
|
121
124
|
const datasourceConfig: DatasourceConfiguration = {
|
|
122
125
|
{{#if tile.config.snapshot}}
|
|
123
126
|
isSnapshot: {{ tile.config.snapshot }},
|
|
@@ -130,6 +133,7 @@ export const {{pascalCase tile.componentName}}: React.FC = () => {
|
|
|
130
133
|
criteria: useSelector(selectors.eventing.getCriteriaFor{{pascalCase tile.title}}),
|
|
131
134
|
{{/if}}
|
|
132
135
|
}
|
|
136
|
+
{{/ifContains}}
|
|
133
137
|
{{/ifAny}}
|
|
134
138
|
{{#if tile.config.type}}
|
|
135
139
|
const chartConfig: ChartConfig = {
|
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.13.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.0...v5.13.1) (2026-05-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* apply datasource config only for entity-manager and grid-pro [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 67021b5
|
|
9
|
+
* apply datasource config only for entity-manager and grid-pro [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#573) 5c541c5
|
|
10
|
+
|
|
11
|
+
## [5.13.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.12.0...v5.13.0) (2026-05-08)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* update FUI/GSF version + resolve TS errors [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#572) 46b94b7
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* backport main to prerelease GENC-0 (#571) 3674a0f
|
|
22
|
+
* **react:** resolve TypeScript errors in generated React app templates [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) ab0903c
|
|
23
|
+
* resolve TypeScript errors in generated React app templates [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#570) 5e3a583
|
|
24
|
+
|
|
3
25
|
## [5.12.1-prerelease.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.12.0...v5.12.1-prerelease.1) (2026-05-08)
|
|
4
26
|
|
|
5
27
|
|