@genesislcap/blank-app-seed 5.13.1 → 5.13.3

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.1",
4
+ "version": "5.13.3",
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
@@ -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
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.13.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.2...v5.13.3) (2026-05-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * drop composite/tsBuildInfoFile + explicit src glob in react tsconfig bced9bc
9
+ * gracefully handle no routes in react template GENC-0 c961415
10
+ * small tweaks for react setup GENC-0 (#578) 03c9272
11
+
12
+ ## [5.13.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.1...v5.13.2) (2026-05-25)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * intelligently pick the best mode based on available space [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#576) efe51d3
18
+ * intelligently picks the best mode based on available space [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 2b08f84
19
+
3
20
  ## [5.13.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.13.0...v5.13.1) (2026-05-12)
4
21
 
5
22
 
@@ -14,9 +14,13 @@ const AppRoutes = () => {
14
14
  return (
15
15
  <Routes>
16
16
  <Route path="/login" element={<AuthPage />} />
17
+ {{#if routes.[0]}}
17
18
  <Route path="/" element={<Navigate to="/{{kebabCase routes.[0].name}}" replace />} />
19
+ {{/if}}
18
20
  <Route element={<DefaultLayout />}>
21
+ {{#if routes.[0]}}
19
22
  <Route path="/" element={<{{pascalCase routes.[0].name}} />} />
23
+ {{/if}}
20
24
  {routes.map(route => (<Route
21
25
  key={route.path}
22
26
  path={route.path}
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "extends": "./tsconfig.json",
3
- "include": ["src" , "src/**/*.d.ts"],
3
+ "include": ["src/**/*", "src/**/*.d.ts"],
4
4
  }
@@ -1,7 +1,5 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "composite": true,
4
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
5
3
  "target": "ES2020",
6
4
  "useDefineForClassFields": false,
7
5
  "lib": ["ES2020", "DOM", "DOM.Iterable"],
@@ -27,8 +25,8 @@
27
25
  "emitDecoratorMetadata": true
28
26
  },
29
27
  "include": [
30
- "src" ,
31
- "src/**/*.d.ts",
28
+ "src/**/*",
29
+ "src/**/*.d.ts",
32
30
  "src/pbc/**/*.ts",
33
31
  ],
34
32
  }
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.1",
4
+ "version": "5.13.3",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"