@abgov/jsonforms-components 1.25.5 → 1.25.6

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.
Files changed (2) hide show
  1. package/index.esm.js +11 -9
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -5049,15 +5049,17 @@ const FormStepper = props => {
5049
5049
  })]
5050
5050
  }), jsx(GoAGrid, {
5051
5051
  minChildWidth: "600px",
5052
- children: category.elements.map(element => {
5053
- return jsx(JsonFormsDispatch, {
5054
- "data-testid": `jsonforms-object-list-defined-elements-dispatch`,
5055
- schema: schema,
5056
- uischema: element,
5057
- enabled: enabled,
5058
- renderers: GoAReviewRenderers,
5059
- cells: cells
5060
- });
5052
+ children: category.elements.map((element, index) => {
5053
+ return jsx("div", {
5054
+ children: jsx(JsonFormsDispatch, {
5055
+ "data-testid": `jsonforms-object-list-defined-elements-dispatch`,
5056
+ schema: schema,
5057
+ uischema: element,
5058
+ enabled: enabled,
5059
+ renderers: GoAReviewRenderers,
5060
+ cells: cells
5061
+ })
5062
+ }, `form-stepper-category-${index}`);
5061
5063
  })
5062
5064
  })]
5063
5065
  }, index);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/jsonforms-components",
3
- "version": "1.25.5",
3
+ "version": "1.25.6",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Government of Alberta - React renderers for JSON Forms based on the design system.",
6
6
  "repository": "https://github.com/GovAlta/adsp-monorepo",