@genesislcap/blank-app-seed 5.13.0 → 5.13.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.
@@ -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.13.0",
4
+ "version": "5.13.2",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
@@ -55,6 +55,7 @@
55
55
  {{/if}}
56
56
  {{#if config.sizeColumnsToFit}}
57
57
  size-columns-to-fit
58
+ size-columns-to-content
58
59
  {{/if}}
59
60
  {{#if config.enableSearchBar}}
60
61
  enable-search-bar
@@ -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 = {
@@ -57,6 +57,7 @@ hasUserPermission('{{config.permissions.viewRight}}') ? (
57
57
  {{/if}}
58
58
  {{#if config.sizeColumnsToFit}}
59
59
  sizeColumnsToFit
60
+ sizeColumnsToContent
60
61
  {{/if}}
61
62
  {{#if config.enableSearchBar}}
62
63
  enableSearchBar
@@ -53,6 +53,7 @@ ${whenElse(
53
53
  {{/if}}
54
54
  {{#if config.sizeColumnsToFit}}
55
55
  size-columns-to-fit
56
+ size-columns-to-content
56
57
  {{/if}}
57
58
  {{#if config.enableSearchBar}}
58
59
  enable-search-bar
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "14.430.1",
2
+ "UI": "14.434.0",
3
3
  "GSF": "8.15.14",
4
4
  "Auth": "8.15.3"
5
5
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.13.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.1...v5.13.2) (2026-05-25)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * intelligently pick the best mode based on available space [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#576) efe51d3
9
+ * intelligently picks the best mode based on available space [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 2b08f84
10
+
11
+ ## [5.13.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.0...v5.13.1) (2026-05-12)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * apply datasource config only for entity-manager and grid-pro [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 67021b5
17
+ * apply datasource config only for entity-manager and grid-pro [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#573) 5c541c5
18
+
3
19
  ## [5.13.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.12.0...v5.13.0) (2026-05-08)
4
20
 
5
21
 
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.13.0",
4
+ "version": "5.13.2",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"