@genesislcap/foundation-forms 14.24.3-alpha-f66f596.0 → 14.24.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.
@@ -1676,7 +1676,7 @@
1676
1676
  {
1677
1677
  "kind": "variable",
1678
1678
  "name": "LayoutGroupRendererTemplate",
1679
- "default": "html`\n <template>\n <div>\n ${when(\n (x) => x.control.label,\n html`\n <div\n for=\"${(x) => x.control.path + '-wrapper'}\"\n style=\"color: rgb(135, 155, 166);\n margin-bottom: 4px;\n display: flex;\n justify-content: space-between;\"\n >\n ${(x) => x.control.label}\n </div>\n `\n )}\n ${repeat(\n (x) => x.control.uischema.elements,\n html`\n <dispatch-renderer\n ?submitted=${(x, ctx) => ctx.parent.submitted}\n :dispatch=${(x, ctx) => ctx.parent.dispatch}\n :jsonforms=${(x, ctx) => ctx.parent.jsonforms}\n :props=${(x, ctx) => ({\n uischema: x,\n schema: ctx.parent.control.schema,\n renderers: ctx.parent.control.renderers,\n path: ctx.parent.control.path,\n enabled: ctx.parent.control.enabled,\n })}\n ></dispatch-renderer>\n `\n )}\n </div>\n </template>\n`"
1679
+ "default": "html`\n <template>\n <div>\n ${when(\n (x) => x.control.label,\n html`\n <div\n for=\"${(x) => x.control.path + '-wrapper'}\"\n style=\"color: rgb(135, 155, 166);\n margin-bottom: 4px;\n display: flex;\n justify-content: space-between;\"\n >\n ${(x) => x.control.label}\n </div>\n `\n )}\n ${repeat(\n (x) => x.control.uischema.options.childElements,\n html`\n <dispatch-renderer\n ?submitted=${(x, ctx) => ctx.parent.submitted}\n :dispatch=${(x, ctx) => ctx.parent.dispatch}\n :jsonforms=${(x, ctx) => ctx.parent.jsonforms}\n :props=${(x, ctx) => ({\n uischema: x,\n schema: ctx.parent.control.schema,\n renderers: ctx.parent.control.renderers,\n path: ctx.parent.control.path,\n enabled: ctx.parent.control.enabled,\n })}\n ></dispatch-renderer>\n `\n )}\n </div>\n </template>\n`"
1680
1680
  },
1681
1681
  {
1682
1682
  "kind": "variable",
@@ -15,7 +15,7 @@ export const LayoutGroupRendererTemplate = html `
15
15
  ${(x) => x.control.label}
16
16
  </div>
17
17
  `)}
18
- ${repeat((x) => x.control.uischema.elements, html `
18
+ ${repeat((x) => x.control.uischema.options.childElements, html `
19
19
  <dispatch-renderer
20
20
  ?submitted=${(x, ctx) => ctx.parent.submitted}
21
21
  :dispatch=${(x, ctx) => ctx.parent.dispatch}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-forms",
3
3
  "description": "Genesis Foundation Forms",
4
- "version": "14.24.3-alpha-f66f596.0",
4
+ "version": "14.24.3",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -43,8 +43,8 @@
43
43
  "test:unit:watch": "watchlist src test -- npm run test:unit"
44
44
  },
45
45
  "devDependencies": {
46
- "@genesislcap/foundation-testing": "14.24.3-alpha-f66f596.0",
47
- "@genesislcap/genx": "14.24.3-alpha-f66f596.0",
46
+ "@genesislcap/foundation-testing": "^14.24.3",
47
+ "@genesislcap/genx": "^14.24.3",
48
48
  "@module-federation/dashboard-plugin": "2.3.0",
49
49
  "@playwright/test": "^1.18.1",
50
50
  "@types/json-schema": "^7.0.11",
@@ -84,9 +84,9 @@
84
84
  "webpack-merge": "^5.7.3"
85
85
  },
86
86
  "dependencies": {
87
- "@genesislcap/foundation-comms": "14.24.3-alpha-f66f596.0",
88
- "@genesislcap/foundation-criteria": "14.24.3-alpha-f66f596.0",
89
- "@genesislcap/foundation-utils": "14.24.3-alpha-f66f596.0",
87
+ "@genesislcap/foundation-comms": "^14.24.3",
88
+ "@genesislcap/foundation-criteria": "^14.24.3",
89
+ "@genesislcap/foundation-utils": "^14.24.3",
90
90
  "@jsonforms/core": "^3.0.0",
91
91
  "@microsoft/fast-components": "^2.21.3",
92
92
  "@microsoft/fast-element": "^1.7.0",
@@ -107,5 +107,5 @@
107
107
  "access": "public"
108
108
  },
109
109
  "customElements": "dist/custom-elements.json",
110
- "gitHead": "9ed667d50aa4468cec62c6a6ae63331f9bbf19b1"
110
+ "gitHead": "364368afc90a9300bf9be70e0bce9862caa33ff2"
111
111
  }