@genesislcap/foundation-forms 14.438.0 → 14.438.1-chore-fix-ag-grid-types-react.1
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/dist/dts/jsonforms/renderers/StringControlRenderer.d.ts.map +1 -1
- package/dist/dts/jsonforms/renderers/VerticalCategorizationWrapperRenderer.d.ts.map +1 -1
- package/dist/esm/jsonforms/renderers/StringControlRenderer.js +1 -0
- package/dist/esm/jsonforms/renderers/VerticalCategorizationWrapperRenderer.js +8 -0
- package/package.json +15 -15
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StringControlRenderer.d.ts","sourceRoot":"","sources":["../../../../src/jsonforms/renderers/StringControlRenderer.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAuBvD,eAAO,MAAM,gCAAgC,GAAI,SAAQ,MAAe,
|
|
1
|
+
{"version":3,"file":"StringControlRenderer.d.ts","sourceRoot":"","sources":["../../../../src/jsonforms/renderers/StringControlRenderer.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAuBvD,eAAO,MAAM,gCAAgC,GAAI,SAAQ,MAAe,0EAiDvE,CAAC;AACF,eAAO,MAAM,6BAA6B,uEAEzC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VerticalCategorizationWrapperRenderer.d.ts","sourceRoot":"","sources":["../../../../src/jsonforms/renderers/VerticalCategorizationWrapperRenderer.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AAExE,eAAO,MAAM,6CAA6C,GACxD,eAAe,uFAiDhB,CAAC;
|
|
1
|
+
{"version":3,"file":"VerticalCategorizationWrapperRenderer.d.ts","sourceRoot":"","sources":["../../../../src/jsonforms/renderers/VerticalCategorizationWrapperRenderer.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AAExE,eAAO,MAAM,6CAA6C,GACxD,eAAe,uFAiDhB,CAAC;AAgEF,qBAQa,6BAA8B,SAAQ,qBAAqB;IAChE,MAAM,EAAE,MAAM,CAAM;IAE1B,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAMjD,iBAAiB;CAIlB"}
|
|
@@ -56,6 +56,7 @@ export const getStringControlRendererTemplate = (prefix = 'zero') => html `
|
|
|
56
56
|
?required=${(x) => x.control.required}
|
|
57
57
|
?disabled=${(x) => !x.control.enabled}
|
|
58
58
|
tabindex="${(x) => { var _a, _b; return (_b = (_a = x.control.uischema) === null || _a === void 0 ? void 0 : _a.options) === null || _b === void 0 ? void 0 : _b.tabIndex; }}"
|
|
59
|
+
maxlength=${(x) => { var _a, _b; return (_b = (_a = x.control.uischema) === null || _a === void 0 ? void 0 : _a.options) === null || _b === void 0 ? void 0 : _b.maxLength; }}
|
|
59
60
|
style="width: 100%"
|
|
60
61
|
@blur=${(x) => x.onBlur()}
|
|
61
62
|
></${prefix}-text-area>
|
|
@@ -55,6 +55,14 @@ const styles = css `
|
|
|
55
55
|
padding: 0;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
+
/* Reset the column layout above on horizontal categorization-wrappers nested inside the vertical one (e.g. Detailed View). */
|
|
59
|
+
vertical-categorization-wrapper categorization-wrapper .tabs-container::part(tablist) {
|
|
60
|
+
flex-direction: row;
|
|
61
|
+
width: auto;
|
|
62
|
+
min-height: auto;
|
|
63
|
+
border-right: none;
|
|
64
|
+
}
|
|
65
|
+
|
|
58
66
|
vertical-categorization-wrapper .tabs-container .tab-control {
|
|
59
67
|
padding: 0 calc((8 + var(--design-unit) * 2 * var(--density)) * 1px);
|
|
60
68
|
}
|
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.438.
|
|
4
|
+
"version": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -55,23 +55,23 @@
|
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@genesislcap/foundation-testing": "14.438.
|
|
59
|
-
"@genesislcap/genx": "14.438.
|
|
60
|
-
"@genesislcap/rollup-builder": "14.438.
|
|
61
|
-
"@genesislcap/ts-builder": "14.438.
|
|
62
|
-
"@genesislcap/uvu-playwright-builder": "14.438.
|
|
63
|
-
"@genesislcap/vite-builder": "14.438.
|
|
64
|
-
"@genesislcap/webpack-builder": "14.438.
|
|
58
|
+
"@genesislcap/foundation-testing": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
59
|
+
"@genesislcap/genx": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
60
|
+
"@genesislcap/rollup-builder": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
61
|
+
"@genesislcap/ts-builder": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
62
|
+
"@genesislcap/uvu-playwright-builder": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
63
|
+
"@genesislcap/vite-builder": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
64
|
+
"@genesislcap/webpack-builder": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
65
65
|
"@types/json-schema": "^7.0.11",
|
|
66
66
|
"@types/papaparse": "^5.3.14"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@genesislcap/foundation-comms": "14.438.
|
|
70
|
-
"@genesislcap/foundation-criteria": "14.438.
|
|
71
|
-
"@genesislcap/foundation-logger": "14.438.
|
|
72
|
-
"@genesislcap/foundation-notifications": "14.438.
|
|
73
|
-
"@genesislcap/foundation-ui": "14.438.
|
|
74
|
-
"@genesislcap/foundation-utils": "14.438.
|
|
69
|
+
"@genesislcap/foundation-comms": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
70
|
+
"@genesislcap/foundation-criteria": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
71
|
+
"@genesislcap/foundation-logger": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
72
|
+
"@genesislcap/foundation-notifications": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
73
|
+
"@genesislcap/foundation-ui": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
74
|
+
"@genesislcap/foundation-utils": "14.438.1-chore-fix-ag-grid-types-react.1",
|
|
75
75
|
"@json-schema-tools/dereferencer": "^1.6.1",
|
|
76
76
|
"@jsonforms/core": "^3.2.1",
|
|
77
77
|
"@microsoft/fast-components": "2.30.6",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"access": "public"
|
|
94
94
|
},
|
|
95
95
|
"customElements": "dist/custom-elements.json",
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "ca0f3828d72cb3e4f732f5f58edf8f21d7341eb5"
|
|
97
97
|
}
|