@genesislcap/blank-app-seed 5.23.2 → 5.23.4

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.23.2",
4
+ "version": "5.23.4",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
@@ -1,8 +1,8 @@
1
1
  {{#if config.type}}
2
- <G2PlotChart type="{{ config.type }}" config={chartConfig}>
2
+ <G2PlotChart className="{{kebabCase componentName}}" type="{{ config.type }}" config={chartConfig}>
3
3
  {{else}}
4
4
  {{! `type` is optional: G2PlotChart falls back to its own default when it is absent, and type="" is not a ChartTypes. }}
5
- <G2PlotChart config={chartConfig}>
5
+ <G2PlotChart className="{{kebabCase componentName}}" config={chartConfig}>
6
6
  {{/if}}
7
7
  <ChartDatasource resourceName="{{ config.resourceName }}" serverFields="{{ config.xField }} {{ config.yField }}" />
8
8
  </G2PlotChart>
@@ -176,21 +176,13 @@ export const {{pascalCase tile.componentName}}: React.FC = () => {
176
176
  {{/ifEquals}}
177
177
  {{#if tile.config.wholeTileRight}}
178
178
  return hasUserPermission('{{tile.config.wholeTileRight}}') ? (
179
- {{#ifEquals tile.type 'smart-form'}}
180
- {{! smart-form renders as a single line; keep the partial inline so its trailing newline survives }}{{> (lookup tile 'type') tile}}
181
- {{else}}
182
179
  {{> (lookup tile 'type') tile}}
183
- {{/ifEquals}}
184
180
  ) : (
185
181
  <ErrorMessage elementType="h3" message="You do not have access to view this component." />
186
182
  );
187
- {{else}}
188
- {{#ifEquals tile.type 'smart-form'}}
189
- return {{> (lookup tile 'type') tile}};
190
183
  {{else}}
191
184
  return (
192
185
  {{> (lookup tile 'type') tile}}
193
186
  );
194
- {{/ifEquals}}
195
187
  {{/if}}
196
188
  };
@@ -1,3 +1,4 @@
1
- :host {
1
+ /* Set on the tile's root element by the component — the React stand-in for :host. */
2
+ .{{kebabCase tile.componentName}} {
2
3
  /* insert css styles here */
3
4
  }
@@ -1,5 +1,6 @@
1
1
  <>
2
2
  <EntityManagement
3
+ className="{{kebabCase componentName}}"
3
4
  prefix="rapid"
4
5
  enableRowFlashing
5
6
  enableCellFlashing
@@ -1 +1,8 @@
1
- <Form prefix="rapid" resourceName="{{config.resourceName}}"{{#if config.uischema}} uischema={uischema}{{/if}} />
1
+ <Form
2
+ className="{{kebabCase componentName}}"
3
+ prefix="rapid"
4
+ resourceName="{{config.resourceName}}"
5
+ {{#if config.uischema}}
6
+ uischema={uischema}
7
+ {{/if}}
8
+ />
@@ -1,12 +1,18 @@
1
1
  {{#if config.useOnlyTemplateCols}}
2
2
  <RapidGridPro
3
+ className="{{kebabCase componentName}}"
3
4
  headerCaseType={GridProCaseType.capitalCase}
4
5
  onlyTemplateColDefs
5
6
  enableRowFlashing
6
7
  enableCellFlashing
7
8
  >
8
9
  {{else}}
9
- <RapidGridPro headerCaseType={GridProCaseType.capitalCase} enableRowFlashing enableCellFlashing>
10
+ <RapidGridPro
11
+ className="{{kebabCase componentName}}"
12
+ headerCaseType={GridProCaseType.capitalCase}
13
+ enableRowFlashing
14
+ enableCellFlashing
15
+ >
10
16
  {{/if}}
11
17
  {{#ifAny config.snapshot config.gridOptions config.eventing.publishEventName config.eventing.listener config.reqrep}}
12
18
  {{! prettier-ignore must be bare: attribute widths are user data, keep one attribute per line }}
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "15.19.4",
2
+ "UI": "15.19.5",
3
3
  "GSF": "8.15.14",
4
4
  "Auth": "8.15.3"
5
5
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.23.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.23.3...v5.23.4) (2026-09-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * bump versions.UI to 15.19.5 for the event-type-codegen enum-collision fix GENC-0 a948edd
9
+ * bump versions.UI to 15.19.5 for the event-type-codegen enum-collision fix GENC-0 (#621) 07cf830
10
+
11
+ ## [5.23.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.23.2...v5.23.3) (2026-09-01)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * correct the placeholder comment now that nothing sets the class GENC-0 bc08e96
17
+ * drop the React tile className wiring for now GENC-0 386865e
18
+ * make the React tile style placeholder target a real selector GENC-0 17f00ac
19
+ * make the React tile style placeholder target a real selector GENC-0 (#620) 70b82a6
20
+ * make the smart-form tile always render multi-line to satisfy oxfmt GENC-0 24622f7
21
+ * set the tile's className so the style placeholder selector matches GENC-0 656b18b
22
+
3
23
  ## [5.23.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.23.1...v5.23.2) (2026-08-28)
4
24
 
5
25
 
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.23.2",
4
+ "version": "5.23.4",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"