@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.
- package/index.esm.js +11 -9
- 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(
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
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.
|
|
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",
|