@jsonforms/material-renderers 3.0.0-beta.5 → 3.0.0-rc.0
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/docs/assets/js/search.json +1 -1
- package/docs/globals.html +77 -31
- package/docs/index.html +6 -0
- package/docs/interfaces/categorizationstate.html +1 -1
- package/docs/interfaces/categorizationstepperstate.html +1 -1
- package/docs/interfaces/materialcategorizationlayoutrendererprops.html +49 -4
- package/docs/interfaces/materialcategorizationstepperlayoutrendererprops.html +46 -1
- package/docs/interfaces/materiallabelablelayoutrendererprops.html +328 -0
- package/docs/interfaces/materiallayoutrendererprops.html +5 -0
- package/docs/interfaces/withoptionlabel.html +3 -3
- package/lib/additional/MaterialLabelRenderer.d.ts +3 -3
- package/lib/cells/MaterialEnumCell.d.ts +2 -1
- package/lib/cells/MaterialOneOfEnumCell.d.ts +2 -1
- package/lib/controls/MaterialEnumControl.d.ts +2 -1
- package/lib/controls/MaterialOneOfEnumControl.d.ts +2 -1
- package/lib/controls/index.d.ts +2 -2
- package/lib/jsonforms-react-material.cjs.js +82 -46
- package/lib/jsonforms-react-material.cjs.js.map +1 -1
- package/lib/jsonforms-react-material.esm.js +79 -48
- package/lib/jsonforms-react-material.esm.js.map +1 -1
- package/lib/layouts/MaterialCategorizationLayout.d.ts +4 -3
- package/lib/layouts/MaterialCategorizationStepperLayout.d.ts +4 -3
- package/lib/layouts/MaterialGroupLayout.d.ts +2 -2
- package/lib/layouts/MaterialHorizontalLayout.d.ts +1 -1
- package/lib/layouts/MaterialVerticalLayout.d.ts +1 -1
- package/lib/mui-controls/MuiAutocomplete.d.ts +2 -2
- package/lib/mui-controls/MuiSelect.d.ts +2 -1
- package/lib/util/i18nDefaults.d.ts +3 -0
- package/lib/util/index.d.ts +1 -0
- package/lib/util/layout.d.ts +3 -0
- package/package.json +6 -6
- package/src/additional/MaterialLabelRenderer.tsx +5 -7
- package/src/cells/MaterialEnumCell.tsx +4 -3
- package/src/cells/MaterialOneOfEnumCell.tsx +3 -3
- package/src/controls/MaterialEnumControl.tsx +12 -5
- package/src/controls/MaterialOneOfEnumControl.tsx +13 -5
- package/src/layouts/MaterialCategorizationLayout.tsx +18 -9
- package/src/layouts/MaterialCategorizationStepperLayout.tsx +19 -12
- package/src/layouts/MaterialGroupLayout.tsx +6 -5
- package/src/mui-controls/MuiAutocomplete.tsx +81 -38
- package/src/mui-controls/MuiInputText.tsx +4 -1
- package/src/mui-controls/MuiSelect.tsx +10 -5
- package/src/util/i18nDefaults.ts +3 -0
- package/src/util/index.ts +1 -0
- package/src/util/layout.tsx +4 -0
- package/stats.html +1 -1
- package/test/renderers/MaterialArrayLayout.test.tsx +4 -4
- package/test/renderers/MaterialCategorizationLayout.test.tsx +17 -7
- package/test/renderers/MaterialCategorizationStepperLayout.test.tsx +21 -11
- package/test/renderers/MaterialGroupLayout.test.tsx +4 -1
- package/test/renderers/MaterialInputControl.test.tsx +4 -0
- package/test/renderers/MaterialLabelRenderer.test.tsx +2 -1
- package/test/renderers/util.ts +5 -0
|
@@ -40,6 +40,9 @@ interface MuiTextInputProps {
|
|
|
40
40
|
muiInputProps?: InputProps['inputProps'];
|
|
41
41
|
inputComponent?: InputProps['inputComponent'];
|
|
42
42
|
}
|
|
43
|
+
|
|
44
|
+
const eventToValue = (ev:any) => ev.target.value === '' ? undefined : ev.target.value;
|
|
45
|
+
|
|
43
46
|
export const MuiInputText = React.memo((props: CellProps & WithClassname & MuiTextInputProps) => {
|
|
44
47
|
const [showAdornment, setShowAdornment] = useState(false);
|
|
45
48
|
const {
|
|
@@ -71,7 +74,7 @@ export const MuiInputText = React.memo((props: CellProps & WithClassname & MuiTe
|
|
|
71
74
|
inputProps.size = maxLength;
|
|
72
75
|
};
|
|
73
76
|
|
|
74
|
-
const [inputText, onChange, onClear] = useDebouncedChange(handleChange, '', data, path);
|
|
77
|
+
const [inputText, onChange, onClear] = useDebouncedChange(handleChange, '', data, path, eventToValue);
|
|
75
78
|
const onPointerEnter = () => setShowAdornment(true);
|
|
76
79
|
const onPointerLeave = () => setShowAdornment(false);
|
|
77
80
|
|
|
@@ -22,25 +22,30 @@
|
|
|
22
22
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23
23
|
THE SOFTWARE.
|
|
24
24
|
*/
|
|
25
|
-
import React from 'react';
|
|
25
|
+
import React, { useMemo } from 'react';
|
|
26
26
|
import { EnumCellProps, WithClassname } from '@jsonforms/core';
|
|
27
27
|
|
|
28
28
|
import { MenuItem, Select } from '@mui/material';
|
|
29
29
|
import merge from 'lodash/merge';
|
|
30
|
+
import { TranslateProps } from '@jsonforms/react';
|
|
31
|
+
import { i18nDefaults } from '../util';
|
|
30
32
|
|
|
31
|
-
export const MuiSelect = React.memo((props: EnumCellProps & WithClassname) => {
|
|
33
|
+
export const MuiSelect = React.memo((props: EnumCellProps & WithClassname & TranslateProps) => {
|
|
32
34
|
const {
|
|
33
35
|
data,
|
|
34
36
|
className,
|
|
35
37
|
id,
|
|
36
38
|
enabled,
|
|
39
|
+
schema,
|
|
37
40
|
uischema,
|
|
38
41
|
path,
|
|
39
42
|
handleChange,
|
|
40
43
|
options,
|
|
41
|
-
config
|
|
44
|
+
config,
|
|
45
|
+
t
|
|
42
46
|
} = props;
|
|
43
47
|
const appliedUiSchemaOptions = merge({}, config, uischema.options);
|
|
48
|
+
const noneOptionLabel = useMemo(() => t('enum.none', i18nDefaults['enum.none'], { schema, uischema, path}), [t, schema, uischema, path]);
|
|
44
49
|
|
|
45
50
|
return (
|
|
46
51
|
<Select
|
|
@@ -49,11 +54,11 @@ export const MuiSelect = React.memo((props: EnumCellProps & WithClassname) => {
|
|
|
49
54
|
disabled={!enabled}
|
|
50
55
|
autoFocus={appliedUiSchemaOptions.focus}
|
|
51
56
|
value={data !== undefined ? data : ''}
|
|
52
|
-
onChange={ev =>
|
|
57
|
+
onChange={ev =>handleChange(path, ev.target.value || undefined)}
|
|
53
58
|
fullWidth={true}
|
|
54
59
|
variant={'standard'}
|
|
55
60
|
>
|
|
56
|
-
{[<MenuItem value='' key=
|
|
61
|
+
{[<MenuItem value={''} key='jsonforms.enum.none'><em>{noneOptionLabel}</em></MenuItem>].concat(
|
|
57
62
|
options.map(optionValue => (
|
|
58
63
|
<MenuItem value={optionValue.value} key={optionValue.value}>
|
|
59
64
|
{optionValue.label}
|
package/src/util/index.ts
CHANGED
package/src/util/layout.tsx
CHANGED
|
@@ -110,3 +110,7 @@ export const withAjvProps = <P extends {}>(Component: ComponentType<AjvProps & P
|
|
|
110
110
|
|
|
111
111
|
return (<Component {...props} ajv={ajv} />);
|
|
112
112
|
};
|
|
113
|
+
|
|
114
|
+
export interface MaterialLabelableLayoutRendererProps extends MaterialLayoutRendererProps {
|
|
115
|
+
label?: string;
|
|
116
|
+
}
|
package/stats.html
CHANGED
|
@@ -3259,7 +3259,7 @@ var drawChart = (function (exports) {
|
|
|
3259
3259
|
</script>
|
|
3260
3260
|
<script>
|
|
3261
3261
|
/*<!--*/
|
|
3262
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"jsonforms-react-material.esm.js","children":[{"name":"src","children":[{"name":"complex","children":[{"uid":"15da-1","name":"NoBorderTableCell.tsx"},{"uid":"15da-3","name":"ValidationIcon.tsx"},{"uid":"15da-5","name":"TableToolbar.tsx"},{"uid":"15da-7","name":"MaterialTableControl.tsx"},{"uid":"15da-9","name":"DeleteDialog.tsx"},{"uid":"15da-11","name":"MaterialArrayControlRenderer.tsx"},{"uid":"15da-13","name":"MaterialObjectRenderer.tsx"},{"uid":"15da-15","name":"MaterialAllOfRenderer.tsx"},{"uid":"15da-17","name":"CombinatorProperties.tsx"},{"uid":"15da-19","name":"MaterialAnyOfRenderer.tsx"},{"uid":"15da-21","name":"MaterialOneOfRenderer.tsx"},{"uid":"15da-45","name":"MaterialEnumArrayRenderer.tsx"},{"uid":"15da-47","name":"index.ts"}]},{"name":"mui-controls","children":[{"uid":"15da-23","name":"MuiCheckbox.tsx"},{"uid":"15da-25","name":"MuiSelect.tsx"},{"uid":"15da-35","name":"MuiInputInteger.tsx"},{"uid":"15da-37","name":"MuiInputNumber.tsx"},{"uid":"15da-39","name":"MuiInputNumberFormat.tsx"},{"uid":"15da-41","name":"MuiInputText.tsx"},{"uid":"15da-43","name":"MuiInputTime.tsx"},{"uid":"15da-59","name":"MuiToggle.tsx"},{"uid":"15da-65","name":"MuiAutocomplete.tsx"}]},{"name":"util","children":[{"uid":"15da-27","name":"datejs.tsx"},{"uid":"15da-29","name":"layout.tsx"},{"uid":"15da-31","name":"debounce.ts"},{"uid":"15da-33","name":"focus.ts"}]},{"name":"additional","children":[{"uid":"15da-49","name":"MaterialLabelRenderer.tsx"},{"uid":"15da-53","name":"ListWithDetailMasterItem.tsx"},{"uid":"15da-55","name":"MaterialListWithDetailRenderer.tsx"}]},{"name":"layouts","children":[{"uid":"15da-51","name":"ArrayToolbar.tsx"},{"uid":"15da-97","name":"MaterialGroupLayout.tsx"},{"uid":"15da-99","name":"MaterialHorizontalLayout.tsx"},{"uid":"15da-101","name":"MaterialVerticalLayout.tsx"},{"uid":"15da-103","name":"MaterialCategorizationLayout.tsx"},{"uid":"15da-105","name":"ExpandPanelRenderer.tsx"},{"uid":"15da-107","name":"MaterialArrayLayout.tsx"},{"uid":"15da-109","name":"MaterialArrayLayoutRenderer.tsx"},{"uid":"15da-133","name":"MaterialCategorizationStepperLayout.tsx"}]},{"name":"controls","children":[{"uid":"15da-57","name":"MaterialBooleanControl.tsx"},{"uid":"15da-61","name":"MaterialBooleanToggleControl.tsx"},{"uid":"15da-63","name":"MaterialInputControl.tsx"},{"uid":"15da-67","name":"MaterialEnumControl.tsx"},{"uid":"15da-69","name":"MaterialNativeControl.tsx"},{"uid":"15da-71","name":"MaterialDateControl.tsx"},{"uid":"15da-73","name":"MaterialDateTimeControl.tsx"},{"uid":"15da-75","name":"MaterialTimeControl.tsx"},{"uid":"15da-77","name":"MaterialSliderControl.tsx"},{"uid":"15da-79","name":"MaterialRadioGroup.tsx"},{"uid":"15da-81","name":"MaterialRadioGroupControl.tsx"},{"uid":"15da-83","name":"MaterialIntegerControl.tsx"},{"uid":"15da-85","name":"MaterialNumberControl.tsx"},{"uid":"15da-87","name":"MaterialTextControl.tsx"},{"uid":"15da-89","name":"MaterialAnyOfStringOrEnumControl.tsx"},{"uid":"15da-91","name":"MaterialOneOfEnumControl.tsx"},{"uid":"15da-93","name":"MaterialOneOfRadioGroupControl.tsx"},{"uid":"15da-95","name":"index.ts"}]},{"name":"cells","children":[{"uid":"15da-111","name":"MaterialBooleanCell.tsx"},{"uid":"15da-113","name":"MaterialBooleanToggleCell.tsx"},{"uid":"15da-115","name":"MaterialDateCell.tsx"},{"uid":"15da-117","name":"MaterialEnumCell.tsx"},{"uid":"15da-119","name":"MaterialIntegerCell.tsx"},{"uid":"15da-121","name":"MaterialNumberCell.tsx"},{"uid":"15da-123","name":"MaterialNumberFormatCell.tsx"},{"uid":"15da-125","name":"MaterialOneOfEnumCell.tsx"},{"uid":"15da-127","name":"MaterialTextCell.tsx"},{"uid":"15da-129","name":"MaterialTimeCell.tsx"},{"uid":"15da-131","name":"CustomizableCells.ts"}]},{"uid":"15da-135","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"15da-1":{"renderedLength":212,"gzipLength":0,"brotliLength":0,"mainUid":"15da-0"},"15da-3":{"renderedLength":393,"gzipLength":0,"brotliLength":0,"mainUid":"15da-2"},"15da-5":{"renderedLength":1249,"gzipLength":0,"brotliLength":0,"mainUid":"15da-4"},"15da-7":{"renderedLength":7557,"gzipLength":0,"brotliLength":0,"mainUid":"15da-6"},"15da-9":{"renderedLength":834,"gzipLength":0,"brotliLength":0,"mainUid":"15da-8"},"15da-11":{"renderedLength":1170,"gzipLength":0,"brotliLength":0,"mainUid":"15da-10"},"15da-13":{"renderedLength":829,"gzipLength":0,"brotliLength":0,"mainUid":"15da-12"},"15da-15":{"renderedLength":1014,"gzipLength":0,"brotliLength":0,"mainUid":"15da-14"},"15da-17":{"renderedLength":722,"gzipLength":0,"brotliLength":0,"mainUid":"15da-16"},"15da-19":{"renderedLength":1268,"gzipLength":0,"brotliLength":0,"mainUid":"15da-18"},"15da-21":{"renderedLength":2824,"gzipLength":0,"brotliLength":0,"mainUid":"15da-20"},"15da-23":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"mainUid":"15da-22"},"15da-25":{"renderedLength":686,"gzipLength":0,"brotliLength":0,"mainUid":"15da-24"},"15da-27":{"renderedLength":1389,"gzipLength":0,"brotliLength":0,"mainUid":"15da-26"},"15da-29":{"renderedLength":1114,"gzipLength":0,"brotliLength":0,"mainUid":"15da-28"},"15da-31":{"renderedLength":848,"gzipLength":0,"brotliLength":0,"mainUid":"15da-30"},"15da-33":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"mainUid":"15da-32"},"15da-35":{"renderedLength":722,"gzipLength":0,"brotliLength":0,"mainUid":"15da-34"},"15da-37":{"renderedLength":713,"gzipLength":0,"brotliLength":0,"mainUid":"15da-36"},"15da-39":{"renderedLength":1059,"gzipLength":0,"brotliLength":0,"mainUid":"15da-38"},"15da-41":{"renderedLength":2007,"gzipLength":0,"brotliLength":0,"mainUid":"15da-40"},"15da-43":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"mainUid":"15da-42"},"15da-45":{"renderedLength":1844,"gzipLength":0,"brotliLength":0,"mainUid":"15da-44"},"15da-47":{"renderedLength":98,"gzipLength":0,"brotliLength":0,"mainUid":"15da-46"},"15da-49":{"renderedLength":449,"gzipLength":0,"brotliLength":0,"mainUid":"15da-48"},"15da-51":{"renderedLength":1175,"gzipLength":0,"brotliLength":0,"mainUid":"15da-50"},"15da-53":{"renderedLength":746,"gzipLength":0,"brotliLength":0,"mainUid":"15da-52"},"15da-55":{"renderedLength":2392,"gzipLength":0,"brotliLength":0,"mainUid":"15da-54"},"15da-57":{"renderedLength":701,"gzipLength":0,"brotliLength":0,"mainUid":"15da-56"},"15da-59":{"renderedLength":504,"gzipLength":0,"brotliLength":0,"mainUid":"15da-58"},"15da-61":{"renderedLength":754,"gzipLength":0,"brotliLength":0,"mainUid":"15da-60"},"15da-63":{"renderedLength":1405,"gzipLength":0,"brotliLength":0,"mainUid":"15da-62"},"15da-65":{"renderedLength":1205,"gzipLength":0,"brotliLength":0,"mainUid":"15da-64"},"15da-67":{"renderedLength":460,"gzipLength":0,"brotliLength":0,"mainUid":"15da-66"},"15da-69":{"renderedLength":1280,"gzipLength":0,"brotliLength":0,"mainUid":"15da-68"},"15da-71":{"renderedLength":2559,"gzipLength":0,"brotliLength":0,"mainUid":"15da-70"},"15da-73":{"renderedLength":2651,"gzipLength":0,"brotliLength":0,"mainUid":"15da-72"},"15da-75":{"renderedLength":2593,"gzipLength":0,"brotliLength":0,"mainUid":"15da-74"},"15da-77":{"renderedLength":2226,"gzipLength":0,"brotliLength":0,"mainUid":"15da-76"},"15da-79":{"renderedLength":1373,"gzipLength":0,"brotliLength":0,"mainUid":"15da-78"},"15da-81":{"renderedLength":315,"gzipLength":0,"brotliLength":0,"mainUid":"15da-80"},"15da-83":{"renderedLength":290,"gzipLength":0,"brotliLength":0,"mainUid":"15da-82"},"15da-85":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"mainUid":"15da-84"},"15da-87":{"renderedLength":274,"gzipLength":0,"brotliLength":0,"mainUid":"15da-86"},"15da-89":{"renderedLength":2541,"gzipLength":0,"brotliLength":0,"mainUid":"15da-88"},"15da-91":{"renderedLength":490,"gzipLength":0,"brotliLength":0,"mainUid":"15da-90"},"15da-93":{"renderedLength":345,"gzipLength":0,"brotliLength":0,"mainUid":"15da-92"},"15da-95":{"renderedLength":831,"gzipLength":0,"brotliLength":0,"mainUid":"15da-94"},"15da-97":{"renderedLength":1179,"gzipLength":0,"brotliLength":0,"mainUid":"15da-96"},"15da-99":{"renderedLength":598,"gzipLength":0,"brotliLength":0,"mainUid":"15da-98"},"15da-101":{"renderedLength":607,"gzipLength":0,"brotliLength":0,"mainUid":"15da-100"},"15da-103":{"renderedLength":1749,"gzipLength":0,"brotliLength":0,"mainUid":"15da-102"},"15da-105":{"renderedLength":5161,"gzipLength":0,"brotliLength":0,"mainUid":"15da-104"},"15da-107":{"renderedLength":1549,"gzipLength":0,"brotliLength":0,"mainUid":"15da-106"},"15da-109":{"renderedLength":506,"gzipLength":0,"brotliLength":0,"mainUid":"15da-108"},"15da-111":{"renderedLength":252,"gzipLength":0,"brotliLength":0,"mainUid":"15da-110"},"15da-113":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"mainUid":"15da-112"},"15da-115":{"renderedLength":569,"gzipLength":0,"brotliLength":0,"mainUid":"15da-114"},"15da-117":{"renderedLength":225,"gzipLength":0,"brotliLength":0,"mainUid":"15da-116"},"15da-119":{"renderedLength":242,"gzipLength":0,"brotliLength":0,"mainUid":"15da-118"},"15da-121":{"renderedLength":236,"gzipLength":0,"brotliLength":0,"mainUid":"15da-120"},"15da-123":{"renderedLength":270,"gzipLength":0,"brotliLength":0,"mainUid":"15da-122"},"15da-125":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"mainUid":"15da-124"},"15da-127":{"renderedLength":226,"gzipLength":0,"brotliLength":0,"mainUid":"15da-126"},"15da-129":{"renderedLength":224,"gzipLength":0,"brotliLength":0,"mainUid":"15da-128"},"15da-131":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"15da-130"},"15da-133":{"renderedLength":2239,"gzipLength":0,"brotliLength":0,"mainUid":"15da-132"},"15da-135":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"mainUid":"15da-134"}},"nodeMetas":{"15da-0":{"id":"/src/complex/NoBorderTableCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-1"},"imported":[{"uid":"15da-164"},{"uid":"15da-144"},{"uid":"15da-142"}],"importedBy":[{"uid":"15da-6"},{"uid":"15da-4"}]},"15da-2":{"id":"/src/complex/ValidationIcon.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-3"},"imported":[{"uid":"15da-142"},{"uid":"15da-165"},{"uid":"15da-144"}],"importedBy":[{"uid":"15da-50"},{"uid":"15da-4"}]},"15da-4":{"id":"/src/complex/TableToolbar.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-5"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-144"},{"uid":"15da-163"},{"uid":"15da-2"},{"uid":"15da-0"}],"importedBy":[{"uid":"15da-6"}]},"15da-6":{"id":"/src/complex/MaterialTableControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-7"},"imported":[{"uid":"15da-147"},{"uid":"15da-157"},{"uid":"15da-145"},{"uid":"15da-158"},{"uid":"15da-149"},{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-141"},{"uid":"15da-159"},{"uid":"15da-160"},{"uid":"15da-161"},{"uid":"15da-0"},{"uid":"15da-4"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-10"}]},"15da-8":{"id":"/src/complex/DeleteDialog.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-9"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"}],"importedBy":[{"uid":"15da-10"}]},"15da-10":{"id":"/src/complex/MaterialArrayControlRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-11"},"imported":[{"uid":"15da-142"},{"uid":"15da-145"},{"uid":"15da-6"},{"uid":"15da-144"},{"uid":"15da-8"}],"importedBy":[{"uid":"15da-46"}]},"15da-12":{"id":"/src/complex/MaterialObjectRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-13"},"imported":[{"uid":"15da-147"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-142"}],"importedBy":[{"uid":"15da-46"}]},"15da-14":{"id":"/src/complex/MaterialAllOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-15"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-141"},{"uid":"15da-145"}],"importedBy":[{"uid":"15da-46"}]},"15da-16":{"id":"/src/complex/CombinatorProperties.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-17"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-162"}],"importedBy":[{"uid":"15da-18"},{"uid":"15da-20"}]},"15da-18":{"id":"/src/complex/MaterialAnyOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-19"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-16"}],"importedBy":[{"uid":"15da-46"}]},"15da-20":{"id":"/src/complex/MaterialOneOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-21"},"imported":[{"uid":"15da-142"},{"uid":"15da-147"},{"uid":"15da-141"},{"uid":"15da-144"},{"uid":"15da-145"},{"uid":"15da-16"}],"importedBy":[{"uid":"15da-46"}]},"15da-22":{"id":"/src/mui-controls/MuiCheckbox.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-23"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-139"},{"uid":"15da-56"},{"uid":"15da-110"}]},"15da-24":{"id":"/src/mui-controls/MuiSelect.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-25"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-139"},{"uid":"15da-66"},{"uid":"15da-90"},{"uid":"15da-116"},{"uid":"15da-124"}]},"15da-26":{"id":"/src/util/datejs.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-27"},"imported":[{"uid":"15da-144"},{"uid":"15da-154"},{"uid":"15da-155"},{"uid":"15da-142"}],"importedBy":[{"uid":"15da-140"}]},"15da-28":{"id":"/src/util/layout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-29"},"imported":[{"uid":"15da-147"},{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"}],"importedBy":[{"uid":"15da-132"},{"uid":"15da-140"},{"uid":"15da-96"},{"uid":"15da-98"},{"uid":"15da-100"},{"uid":"15da-102"}]},"15da-30":{"id":"/src/util/debounce.ts","moduleParts":{"jsonforms-react-material.esm.js":"15da-31"},"imported":[{"uid":"15da-156"},{"uid":"15da-142"}],"importedBy":[{"uid":"15da-140"}]},"15da-32":{"id":"/src/util/focus.ts","moduleParts":{"jsonforms-react-material.esm.js":"15da-33"},"imported":[{"uid":"15da-142"}],"importedBy":[{"uid":"15da-140"}]},"15da-34":{"id":"/src/mui-controls/MuiInputInteger.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-35"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-139"},{"uid":"15da-82"},{"uid":"15da-118"}]},"15da-36":{"id":"/src/mui-controls/MuiInputNumber.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-37"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-139"},{"uid":"15da-84"},{"uid":"15da-120"}]},"15da-38":{"id":"/src/mui-controls/MuiInputNumberFormat.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-39"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-139"},{"uid":"15da-122"}]},"15da-40":{"id":"/src/mui-controls/MuiInputText.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-41"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"},{"uid":"15da-153"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-139"},{"uid":"15da-86"},{"uid":"15da-126"}]},"15da-42":{"id":"/src/mui-controls/MuiInputTime.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-43"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-139"},{"uid":"15da-128"}]},"15da-44":{"id":"/src/complex/MaterialEnumArrayRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-45"},"imported":[{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-139"},{"uid":"15da-144"},{"uid":"15da-147"},{"uid":"15da-142"}],"importedBy":[{"uid":"15da-46"}]},"15da-46":{"id":"/src/complex/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"15da-47"},"imported":[{"uid":"15da-141"},{"uid":"15da-10"},{"uid":"15da-12"},{"uid":"15da-14"},{"uid":"15da-18"},{"uid":"15da-20"},{"uid":"15da-44"}],"importedBy":[{"uid":"15da-134"}]},"15da-48":{"id":"/src/additional/MaterialLabelRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-49"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"}],"importedBy":[{"uid":"15da-136"}]},"15da-50":{"id":"/src/layouts/ArrayToolbar.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-51"},"imported":[{"uid":"15da-144"},{"uid":"15da-163"},{"uid":"15da-142"},{"uid":"15da-2"}],"importedBy":[{"uid":"15da-54"},{"uid":"15da-106"}]},"15da-52":{"id":"/src/additional/ListWithDetailMasterItem.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-53"},"imported":[{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-159"},{"uid":"15da-142"}],"importedBy":[{"uid":"15da-54"}]},"15da-54":{"id":"/src/additional/MaterialListWithDetailRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-55"},"imported":[{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-148"},{"uid":"15da-149"},{"uid":"15da-142"},{"uid":"15da-50"},{"uid":"15da-52"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-136"}]},"15da-56":{"id":"/src/controls/MaterialBooleanControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-57"},"imported":[{"uid":"15da-147"},{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-22"}],"importedBy":[{"uid":"15da-94"}]},"15da-58":{"id":"/src/mui-controls/MuiToggle.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-59"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-60"},{"uid":"15da-112"}]},"15da-60":{"id":"/src/controls/MaterialBooleanToggleControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-61"},"imported":[{"uid":"15da-147"},{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-58"}],"importedBy":[{"uid":"15da-94"}]},"15da-62":{"id":"/src/controls/MaterialInputControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-63"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-144"},{"uid":"15da-143"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-94"},{"uid":"15da-66"},{"uid":"15da-82"},{"uid":"15da-84"},{"uid":"15da-86"},{"uid":"15da-88"},{"uid":"15da-90"}]},"15da-64":{"id":"/src/mui-controls/MuiAutocomplete.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-65"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-66"},{"uid":"15da-90"}]},"15da-66":{"id":"/src/controls/MaterialEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-67"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-24"},{"uid":"15da-143"},{"uid":"15da-62"},{"uid":"15da-64"}],"importedBy":[{"uid":"15da-94"}]},"15da-68":{"id":"/src/controls/MaterialNativeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-69"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-144"},{"uid":"15da-145"},{"uid":"15da-143"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-94"}]},"15da-70":{"id":"/src/controls/MaterialDateControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-71"},"imported":[{"uid":"15da-143"},{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-150"},{"uid":"15da-151"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-94"}]},"15da-72":{"id":"/src/controls/MaterialDateTimeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-73"},"imported":[{"uid":"15da-142"},{"uid":"15da-143"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-150"},{"uid":"15da-151"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-94"}]},"15da-74":{"id":"/src/controls/MaterialTimeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-75"},"imported":[{"uid":"15da-142"},{"uid":"15da-143"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-150"},{"uid":"15da-151"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-94"}]},"15da-76":{"id":"/src/controls/MaterialSliderControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-77"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-143"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-94"}]},"15da-78":{"id":"/src/controls/MaterialRadioGroup.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-79"},"imported":[{"uid":"15da-143"},{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-144"},{"uid":"15da-140"}],"importedBy":[{"uid":"15da-80"},{"uid":"15da-92"}]},"15da-80":{"id":"/src/controls/MaterialRadioGroupControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-81"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-78"}],"importedBy":[{"uid":"15da-94"}]},"15da-82":{"id":"/src/controls/MaterialIntegerControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-83"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-34"},{"uid":"15da-62"},{"uid":"15da-145"}],"importedBy":[{"uid":"15da-94"}]},"15da-84":{"id":"/src/controls/MaterialNumberControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-85"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-36"},{"uid":"15da-62"},{"uid":"15da-145"}],"importedBy":[{"uid":"15da-94"}]},"15da-86":{"id":"/src/controls/MaterialTextControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-87"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-40"},{"uid":"15da-62"}],"importedBy":[{"uid":"15da-94"}]},"15da-88":{"id":"/src/controls/MaterialAnyOfStringOrEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-89"},"imported":[{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-144"},{"uid":"15da-143"},{"uid":"15da-142"},{"uid":"15da-140"},{"uid":"15da-62"}],"importedBy":[{"uid":"15da-94"}]},"15da-90":{"id":"/src/controls/MaterialOneOfEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-91"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-64"},{"uid":"15da-24"},{"uid":"15da-62"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-94"}]},"15da-92":{"id":"/src/controls/MaterialOneOfRadioGroupControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-93"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-78"}],"importedBy":[{"uid":"15da-94"}]},"15da-94":{"id":"/src/controls/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"15da-95"},"imported":[{"uid":"15da-56"},{"uid":"15da-60"},{"uid":"15da-66"},{"uid":"15da-68"},{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"},{"uid":"15da-76"},{"uid":"15da-80"},{"uid":"15da-82"},{"uid":"15da-84"},{"uid":"15da-86"},{"uid":"15da-88"},{"uid":"15da-90"},{"uid":"15da-92"},{"uid":"15da-62"}],"importedBy":[{"uid":"15da-134"}]},"15da-96":{"id":"/src/layouts/MaterialGroupLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-97"},"imported":[{"uid":"15da-147"},{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-141"},{"uid":"15da-28"},{"uid":"15da-145"}],"importedBy":[{"uid":"15da-137"}]},"15da-98":{"id":"/src/layouts/MaterialHorizontalLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-99"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-28"}],"importedBy":[{"uid":"15da-137"}]},"15da-100":{"id":"/src/layouts/MaterialVerticalLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-101"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-28"},{"uid":"15da-145"}],"importedBy":[{"uid":"15da-137"}]},"15da-102":{"id":"/src/layouts/MaterialCategorizationLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-103"},"imported":[{"uid":"15da-142"},{"uid":"15da-144"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-28"}],"importedBy":[{"uid":"15da-137"}]},"15da-104":{"id":"/src/layouts/ExpandPanelRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-105"},"imported":[{"uid":"15da-143"},{"uid":"15da-166"},{"uid":"15da-142"},{"uid":"15da-145"},{"uid":"15da-141"},{"uid":"15da-144"},{"uid":"15da-167"},{"uid":"15da-159"},{"uid":"15da-161"},{"uid":"15da-160"}],"importedBy":[{"uid":"15da-106"}]},"15da-106":{"id":"/src/layouts/MaterialArrayLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-107"},"imported":[{"uid":"15da-149"},{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-148"},{"uid":"15da-50"},{"uid":"15da-104"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-108"}]},"15da-108":{"id":"/src/layouts/MaterialArrayLayoutRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-109"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-144"},{"uid":"15da-106"},{"uid":"15da-145"}],"importedBy":[{"uid":"15da-137"}]},"15da-110":{"id":"/src/cells/MaterialBooleanCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-111"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-22"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-112":{"id":"/src/cells/MaterialBooleanToggleCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-113"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-58"}],"importedBy":[{"uid":"15da-138"}]},"15da-114":{"id":"/src/cells/MaterialDateCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-115"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-152"},{"uid":"15da-143"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-116":{"id":"/src/cells/MaterialEnumCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-117"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-24"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-118":{"id":"/src/cells/MaterialIntegerCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-119"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-34"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-120":{"id":"/src/cells/MaterialNumberCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-121"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-36"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-122":{"id":"/src/cells/MaterialNumberFormatCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-123"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-38"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-124":{"id":"/src/cells/MaterialOneOfEnumCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-125"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-24"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-126":{"id":"/src/cells/MaterialTextCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-127"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-40"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-128":{"id":"/src/cells/MaterialTimeCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-129"},"imported":[{"uid":"15da-142"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-42"}],"importedBy":[{"uid":"15da-138"},{"uid":"15da-130"}]},"15da-130":{"id":"/src/cells/CustomizableCells.ts","moduleParts":{"jsonforms-react-material.esm.js":"15da-131"},"imported":[{"uid":"15da-110"},{"uid":"15da-114"},{"uid":"15da-116"},{"uid":"15da-118"},{"uid":"15da-120"},{"uid":"15da-122"},{"uid":"15da-124"},{"uid":"15da-126"},{"uid":"15da-128"}],"importedBy":[{"uid":"15da-138"}]},"15da-132":{"id":"/src/layouts/MaterialCategorizationStepperLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"15da-133"},"imported":[{"uid":"15da-142"},{"uid":"15da-143"},{"uid":"15da-144"},{"uid":"15da-141"},{"uid":"15da-145"},{"uid":"15da-28"}],"importedBy":[{"uid":"15da-134"}]},"15da-134":{"id":"/src/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"15da-135"},"imported":[{"uid":"15da-46"},{"uid":"15da-136"},{"uid":"15da-94"},{"uid":"15da-137"},{"uid":"15da-138"},{"uid":"15da-132"},{"uid":"15da-139"},{"uid":"15da-140"}],"importedBy":[],"isEntry":true},"15da-136":{"id":"/src/additional/index.ts","moduleParts":{},"imported":[{"uid":"15da-48"},{"uid":"15da-54"}],"importedBy":[{"uid":"15da-134"}]},"15da-137":{"id":"/src/layouts/index.ts","moduleParts":{},"imported":[{"uid":"15da-96"},{"uid":"15da-98"},{"uid":"15da-100"},{"uid":"15da-102"},{"uid":"15da-108"}],"importedBy":[{"uid":"15da-134"}]},"15da-138":{"id":"/src/cells/index.ts","moduleParts":{},"imported":[{"uid":"15da-110"},{"uid":"15da-112"},{"uid":"15da-114"},{"uid":"15da-116"},{"uid":"15da-118"},{"uid":"15da-120"},{"uid":"15da-122"},{"uid":"15da-124"},{"uid":"15da-126"},{"uid":"15da-128"},{"uid":"15da-130"}],"importedBy":[{"uid":"15da-134"}]},"15da-139":{"id":"/src/mui-controls/index.ts","moduleParts":{},"imported":[{"uid":"15da-22"},{"uid":"15da-24"},{"uid":"15da-34"},{"uid":"15da-36"},{"uid":"15da-38"},{"uid":"15da-40"},{"uid":"15da-42"}],"importedBy":[{"uid":"15da-134"},{"uid":"15da-44"}]},"15da-140":{"id":"/src/util/index.ts","moduleParts":{},"imported":[{"uid":"15da-26"},{"uid":"15da-28"},{"uid":"15da-146"},{"uid":"15da-30"},{"uid":"15da-32"}],"importedBy":[{"uid":"15da-134"},{"uid":"15da-68"},{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"},{"uid":"15da-76"},{"uid":"15da-88"},{"uid":"15da-62"},{"uid":"15da-34"},{"uid":"15da-36"},{"uid":"15da-38"},{"uid":"15da-40"},{"uid":"15da-42"},{"uid":"15da-78"}]},"15da-141":{"id":"@jsonforms/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-46"},{"uid":"15da-132"},{"uid":"15da-12"},{"uid":"15da-14"},{"uid":"15da-18"},{"uid":"15da-20"},{"uid":"15da-44"},{"uid":"15da-48"},{"uid":"15da-54"},{"uid":"15da-56"},{"uid":"15da-60"},{"uid":"15da-66"},{"uid":"15da-68"},{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"},{"uid":"15da-76"},{"uid":"15da-80"},{"uid":"15da-82"},{"uid":"15da-84"},{"uid":"15da-86"},{"uid":"15da-88"},{"uid":"15da-90"},{"uid":"15da-92"},{"uid":"15da-62"},{"uid":"15da-96"},{"uid":"15da-98"},{"uid":"15da-100"},{"uid":"15da-102"},{"uid":"15da-108"},{"uid":"15da-110"},{"uid":"15da-112"},{"uid":"15da-114"},{"uid":"15da-116"},{"uid":"15da-118"},{"uid":"15da-120"},{"uid":"15da-122"},{"uid":"15da-124"},{"uid":"15da-126"},{"uid":"15da-128"},{"uid":"15da-28"},{"uid":"15da-6"},{"uid":"15da-16"},{"uid":"15da-78"},{"uid":"15da-106"},{"uid":"15da-4"},{"uid":"15da-104"}],"isExternal":true},"15da-142":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-132"},{"uid":"15da-10"},{"uid":"15da-12"},{"uid":"15da-14"},{"uid":"15da-18"},{"uid":"15da-20"},{"uid":"15da-44"},{"uid":"15da-48"},{"uid":"15da-54"},{"uid":"15da-56"},{"uid":"15da-60"},{"uid":"15da-66"},{"uid":"15da-68"},{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"},{"uid":"15da-76"},{"uid":"15da-80"},{"uid":"15da-82"},{"uid":"15da-84"},{"uid":"15da-86"},{"uid":"15da-88"},{"uid":"15da-90"},{"uid":"15da-92"},{"uid":"15da-62"},{"uid":"15da-96"},{"uid":"15da-98"},{"uid":"15da-100"},{"uid":"15da-102"},{"uid":"15da-108"},{"uid":"15da-110"},{"uid":"15da-112"},{"uid":"15da-114"},{"uid":"15da-116"},{"uid":"15da-118"},{"uid":"15da-120"},{"uid":"15da-122"},{"uid":"15da-124"},{"uid":"15da-126"},{"uid":"15da-128"},{"uid":"15da-28"},{"uid":"15da-22"},{"uid":"15da-24"},{"uid":"15da-34"},{"uid":"15da-36"},{"uid":"15da-38"},{"uid":"15da-40"},{"uid":"15da-42"},{"uid":"15da-26"},{"uid":"15da-30"},{"uid":"15da-32"},{"uid":"15da-6"},{"uid":"15da-8"},{"uid":"15da-16"},{"uid":"15da-50"},{"uid":"15da-52"},{"uid":"15da-58"},{"uid":"15da-64"},{"uid":"15da-78"},{"uid":"15da-106"},{"uid":"15da-0"},{"uid":"15da-4"},{"uid":"15da-2"},{"uid":"15da-104"}],"isExternal":true},"15da-143":{"id":"lodash/merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-132"},{"uid":"15da-54"},{"uid":"15da-66"},{"uid":"15da-68"},{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"},{"uid":"15da-76"},{"uid":"15da-88"},{"uid":"15da-90"},{"uid":"15da-62"},{"uid":"15da-114"},{"uid":"15da-22"},{"uid":"15da-24"},{"uid":"15da-34"},{"uid":"15da-36"},{"uid":"15da-38"},{"uid":"15da-40"},{"uid":"15da-42"},{"uid":"15da-6"},{"uid":"15da-58"},{"uid":"15da-64"},{"uid":"15da-78"},{"uid":"15da-106"},{"uid":"15da-104"}],"isExternal":true},"15da-144":{"id":"@mui/material","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-132"},{"uid":"15da-10"},{"uid":"15da-12"},{"uid":"15da-14"},{"uid":"15da-18"},{"uid":"15da-20"},{"uid":"15da-44"},{"uid":"15da-48"},{"uid":"15da-54"},{"uid":"15da-56"},{"uid":"15da-60"},{"uid":"15da-68"},{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"},{"uid":"15da-76"},{"uid":"15da-88"},{"uid":"15da-62"},{"uid":"15da-96"},{"uid":"15da-102"},{"uid":"15da-108"},{"uid":"15da-28"},{"uid":"15da-22"},{"uid":"15da-24"},{"uid":"15da-34"},{"uid":"15da-36"},{"uid":"15da-38"},{"uid":"15da-40"},{"uid":"15da-42"},{"uid":"15da-26"},{"uid":"15da-6"},{"uid":"15da-8"},{"uid":"15da-50"},{"uid":"15da-52"},{"uid":"15da-58"},{"uid":"15da-64"},{"uid":"15da-78"},{"uid":"15da-0"},{"uid":"15da-4"},{"uid":"15da-2"},{"uid":"15da-104"}],"isExternal":true},"15da-145":{"id":"@jsonforms/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-132"},{"uid":"15da-10"},{"uid":"15da-12"},{"uid":"15da-14"},{"uid":"15da-18"},{"uid":"15da-20"},{"uid":"15da-44"},{"uid":"15da-48"},{"uid":"15da-54"},{"uid":"15da-56"},{"uid":"15da-60"},{"uid":"15da-66"},{"uid":"15da-68"},{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"},{"uid":"15da-76"},{"uid":"15da-80"},{"uid":"15da-82"},{"uid":"15da-84"},{"uid":"15da-86"},{"uid":"15da-88"},{"uid":"15da-90"},{"uid":"15da-92"},{"uid":"15da-96"},{"uid":"15da-98"},{"uid":"15da-100"},{"uid":"15da-102"},{"uid":"15da-108"},{"uid":"15da-110"},{"uid":"15da-112"},{"uid":"15da-114"},{"uid":"15da-116"},{"uid":"15da-118"},{"uid":"15da-120"},{"uid":"15da-122"},{"uid":"15da-124"},{"uid":"15da-126"},{"uid":"15da-128"},{"uid":"15da-28"},{"uid":"15da-6"},{"uid":"15da-16"},{"uid":"15da-52"},{"uid":"15da-104"}],"isExternal":true},"15da-146":{"id":"/src/util/theme.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-140"}]},"15da-147":{"id":"lodash/isEmpty","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-12"},{"uid":"15da-20"},{"uid":"15da-44"},{"uid":"15da-56"},{"uid":"15da-60"},{"uid":"15da-96"},{"uid":"15da-28"},{"uid":"15da-6"}],"isExternal":true},"15da-148":{"id":"lodash/map","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-54"},{"uid":"15da-106"}],"isExternal":true},"15da-149":{"id":"lodash/range","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-54"},{"uid":"15da-6"},{"uid":"15da-106"}],"isExternal":true},"15da-150":{"id":"@mui/lab","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"}],"isExternal":true},"15da-151":{"id":"@mui/lab/AdapterDayjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-70"},{"uid":"15da-72"},{"uid":"15da-74"}],"isExternal":true},"15da-152":{"id":"@mui/material/Input","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-114"}],"isExternal":true},"15da-153":{"id":"@mui/icons-material/Close","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-40"}],"isExternal":true},"15da-154":{"id":"dayjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-26"}],"isExternal":true},"15da-155":{"id":"dayjs/plugin/customParseFormat","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-26"}],"isExternal":true},"15da-156":{"id":"lodash/debounce","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-30"}],"isExternal":true},"15da-157":{"id":"lodash/union","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-6"}],"isExternal":true},"15da-158":{"id":"lodash/startCase","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-6"}],"isExternal":true},"15da-159":{"id":"@mui/icons-material/Delete","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-6"},{"uid":"15da-52"},{"uid":"15da-104"}],"isExternal":true},"15da-160":{"id":"@mui/icons-material/ArrowDownward","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-6"},{"uid":"15da-104"}],"isExternal":true},"15da-161":{"id":"@mui/icons-material/ArrowUpward","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-6"},{"uid":"15da-104"}],"isExternal":true},"15da-162":{"id":"lodash/omit","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-16"}],"isExternal":true},"15da-163":{"id":"@mui/icons-material/Add","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-50"},{"uid":"15da-4"}],"isExternal":true},"15da-164":{"id":"@mui/material/styles","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-0"}],"isExternal":true},"15da-165":{"id":"@mui/icons-material/ErrorOutline","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-2"}],"isExternal":true},"15da-166":{"id":"lodash/get","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-104"}],"isExternal":true},"15da-167":{"id":"@mui/icons-material/ExpandMore","moduleParts":{},"imported":[],"importedBy":[{"uid":"15da-104"}],"isExternal":true}},"env":{"rollup":"2.61.1"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
3262
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"jsonforms-react-material.esm.js","children":[{"name":"src","children":[{"name":"complex","children":[{"uid":"0b72-1","name":"NoBorderTableCell.tsx"},{"uid":"0b72-3","name":"ValidationIcon.tsx"},{"uid":"0b72-5","name":"TableToolbar.tsx"},{"uid":"0b72-7","name":"MaterialTableControl.tsx"},{"uid":"0b72-9","name":"DeleteDialog.tsx"},{"uid":"0b72-11","name":"MaterialArrayControlRenderer.tsx"},{"uid":"0b72-13","name":"MaterialObjectRenderer.tsx"},{"uid":"0b72-15","name":"MaterialAllOfRenderer.tsx"},{"uid":"0b72-17","name":"CombinatorProperties.tsx"},{"uid":"0b72-19","name":"MaterialAnyOfRenderer.tsx"},{"uid":"0b72-21","name":"MaterialOneOfRenderer.tsx"},{"uid":"0b72-47","name":"MaterialEnumArrayRenderer.tsx"},{"uid":"0b72-49","name":"index.ts"}]},{"name":"mui-controls","children":[{"uid":"0b72-23","name":"MuiCheckbox.tsx"},{"uid":"0b72-35","name":"MuiSelect.tsx"},{"uid":"0b72-37","name":"MuiInputInteger.tsx"},{"uid":"0b72-39","name":"MuiInputNumber.tsx"},{"uid":"0b72-41","name":"MuiInputNumberFormat.tsx"},{"uid":"0b72-43","name":"MuiInputText.tsx"},{"uid":"0b72-45","name":"MuiInputTime.tsx"},{"uid":"0b72-61","name":"MuiToggle.tsx"},{"uid":"0b72-67","name":"MuiAutocomplete.tsx"}]},{"name":"util","children":[{"uid":"0b72-25","name":"datejs.tsx"},{"uid":"0b72-27","name":"layout.tsx"},{"uid":"0b72-29","name":"debounce.ts"},{"uid":"0b72-31","name":"focus.ts"},{"uid":"0b72-33","name":"i18nDefaults.ts"}]},{"name":"additional","children":[{"uid":"0b72-51","name":"MaterialLabelRenderer.tsx"},{"uid":"0b72-55","name":"ListWithDetailMasterItem.tsx"},{"uid":"0b72-57","name":"MaterialListWithDetailRenderer.tsx"}]},{"name":"layouts","children":[{"uid":"0b72-53","name":"ArrayToolbar.tsx"},{"uid":"0b72-99","name":"MaterialGroupLayout.tsx"},{"uid":"0b72-101","name":"MaterialHorizontalLayout.tsx"},{"uid":"0b72-103","name":"MaterialVerticalLayout.tsx"},{"uid":"0b72-105","name":"MaterialCategorizationLayout.tsx"},{"uid":"0b72-107","name":"ExpandPanelRenderer.tsx"},{"uid":"0b72-109","name":"MaterialArrayLayout.tsx"},{"uid":"0b72-111","name":"MaterialArrayLayoutRenderer.tsx"},{"uid":"0b72-135","name":"MaterialCategorizationStepperLayout.tsx"}]},{"name":"controls","children":[{"uid":"0b72-59","name":"MaterialBooleanControl.tsx"},{"uid":"0b72-63","name":"MaterialBooleanToggleControl.tsx"},{"uid":"0b72-65","name":"MaterialInputControl.tsx"},{"uid":"0b72-69","name":"MaterialEnumControl.tsx"},{"uid":"0b72-71","name":"MaterialNativeControl.tsx"},{"uid":"0b72-73","name":"MaterialDateControl.tsx"},{"uid":"0b72-75","name":"MaterialDateTimeControl.tsx"},{"uid":"0b72-77","name":"MaterialTimeControl.tsx"},{"uid":"0b72-79","name":"MaterialSliderControl.tsx"},{"uid":"0b72-81","name":"MaterialRadioGroup.tsx"},{"uid":"0b72-83","name":"MaterialRadioGroupControl.tsx"},{"uid":"0b72-85","name":"MaterialIntegerControl.tsx"},{"uid":"0b72-87","name":"MaterialNumberControl.tsx"},{"uid":"0b72-89","name":"MaterialTextControl.tsx"},{"uid":"0b72-91","name":"MaterialAnyOfStringOrEnumControl.tsx"},{"uid":"0b72-93","name":"MaterialOneOfEnumControl.tsx"},{"uid":"0b72-95","name":"MaterialOneOfRadioGroupControl.tsx"},{"uid":"0b72-97","name":"index.ts"}]},{"name":"cells","children":[{"uid":"0b72-113","name":"MaterialBooleanCell.tsx"},{"uid":"0b72-115","name":"MaterialBooleanToggleCell.tsx"},{"uid":"0b72-117","name":"MaterialDateCell.tsx"},{"uid":"0b72-119","name":"MaterialEnumCell.tsx"},{"uid":"0b72-121","name":"MaterialIntegerCell.tsx"},{"uid":"0b72-123","name":"MaterialNumberCell.tsx"},{"uid":"0b72-125","name":"MaterialNumberFormatCell.tsx"},{"uid":"0b72-127","name":"MaterialOneOfEnumCell.tsx"},{"uid":"0b72-129","name":"MaterialTextCell.tsx"},{"uid":"0b72-131","name":"MaterialTimeCell.tsx"},{"uid":"0b72-133","name":"CustomizableCells.ts"}]},{"uid":"0b72-137","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"0b72-1":{"renderedLength":212,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-0"},"0b72-3":{"renderedLength":393,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-2"},"0b72-5":{"renderedLength":1249,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-4"},"0b72-7":{"renderedLength":7557,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-6"},"0b72-9":{"renderedLength":834,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-8"},"0b72-11":{"renderedLength":1170,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-10"},"0b72-13":{"renderedLength":829,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-12"},"0b72-15":{"renderedLength":1014,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-14"},"0b72-17":{"renderedLength":722,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-16"},"0b72-19":{"renderedLength":1268,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-18"},"0b72-21":{"renderedLength":2824,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-20"},"0b72-23":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-22"},"0b72-25":{"renderedLength":1389,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-24"},"0b72-27":{"renderedLength":1114,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-26"},"0b72-29":{"renderedLength":848,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-28"},"0b72-31":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-30"},"0b72-33":{"renderedLength":49,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-32"},"0b72-35":{"renderedLength":929,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-34"},"0b72-37":{"renderedLength":722,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-36"},"0b72-39":{"renderedLength":717,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-38"},"0b72-41":{"renderedLength":1059,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-40"},"0b72-43":{"renderedLength":2104,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-42"},"0b72-45":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-44"},"0b72-47":{"renderedLength":1844,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-46"},"0b72-49":{"renderedLength":98,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-48"},"0b72-51":{"renderedLength":331,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-50"},"0b72-53":{"renderedLength":1175,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-52"},"0b72-55":{"renderedLength":746,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-54"},"0b72-57":{"renderedLength":2392,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-56"},"0b72-59":{"renderedLength":701,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-58"},"0b72-61":{"renderedLength":504,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-60"},"0b72-63":{"renderedLength":754,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-62"},"0b72-65":{"renderedLength":1405,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-64"},"0b72-67":{"renderedLength":2223,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-66"},"0b72-69":{"renderedLength":633,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-68"},"0b72-71":{"renderedLength":1280,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-70"},"0b72-73":{"renderedLength":2559,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-72"},"0b72-75":{"renderedLength":2651,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-74"},"0b72-77":{"renderedLength":2593,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-76"},"0b72-79":{"renderedLength":2226,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-78"},"0b72-81":{"renderedLength":1373,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-80"},"0b72-83":{"renderedLength":315,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-82"},"0b72-85":{"renderedLength":290,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-84"},"0b72-87":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-86"},"0b72-89":{"renderedLength":274,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-88"},"0b72-91":{"renderedLength":2541,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-90"},"0b72-93":{"renderedLength":663,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-92"},"0b72-95":{"renderedLength":345,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-94"},"0b72-97":{"renderedLength":831,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-96"},"0b72-99":{"renderedLength":1183,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-98"},"0b72-101":{"renderedLength":598,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-100"},"0b72-103":{"renderedLength":607,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-102"},"0b72-105":{"renderedLength":1961,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-104"},"0b72-107":{"renderedLength":5161,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-106"},"0b72-109":{"renderedLength":1549,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-108"},"0b72-111":{"renderedLength":506,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-110"},"0b72-113":{"renderedLength":252,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-112"},"0b72-115":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-114"},"0b72-117":{"renderedLength":569,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-116"},"0b72-119":{"renderedLength":264,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-118"},"0b72-121":{"renderedLength":242,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-120"},"0b72-123":{"renderedLength":236,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-122"},"0b72-125":{"renderedLength":270,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-124"},"0b72-127":{"renderedLength":294,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-126"},"0b72-129":{"renderedLength":226,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-128"},"0b72-131":{"renderedLength":224,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-130"},"0b72-133":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-132"},"0b72-135":{"renderedLength":2458,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-134"},"0b72-137":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"mainUid":"0b72-136"}},"nodeMetas":{"0b72-0":{"id":"/src/complex/NoBorderTableCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-1"},"imported":[{"uid":"0b72-166"},{"uid":"0b72-146"},{"uid":"0b72-144"}],"importedBy":[{"uid":"0b72-6"},{"uid":"0b72-4"}]},"0b72-2":{"id":"/src/complex/ValidationIcon.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-3"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-167"},{"uid":"0b72-146"}],"importedBy":[{"uid":"0b72-52"},{"uid":"0b72-4"}]},"0b72-4":{"id":"/src/complex/TableToolbar.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-5"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-146"},{"uid":"0b72-165"},{"uid":"0b72-2"},{"uid":"0b72-0"}],"importedBy":[{"uid":"0b72-6"}]},"0b72-6":{"id":"/src/complex/MaterialTableControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-7"},"imported":[{"uid":"0b72-149"},{"uid":"0b72-159"},{"uid":"0b72-147"},{"uid":"0b72-160"},{"uid":"0b72-151"},{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-143"},{"uid":"0b72-161"},{"uid":"0b72-162"},{"uid":"0b72-163"},{"uid":"0b72-0"},{"uid":"0b72-4"},{"uid":"0b72-145"}],"importedBy":[{"uid":"0b72-10"}]},"0b72-8":{"id":"/src/complex/DeleteDialog.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-9"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"}],"importedBy":[{"uid":"0b72-10"}]},"0b72-10":{"id":"/src/complex/MaterialArrayControlRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-11"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-147"},{"uid":"0b72-6"},{"uid":"0b72-146"},{"uid":"0b72-8"}],"importedBy":[{"uid":"0b72-48"}]},"0b72-12":{"id":"/src/complex/MaterialObjectRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-13"},"imported":[{"uid":"0b72-149"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-144"}],"importedBy":[{"uid":"0b72-48"}]},"0b72-14":{"id":"/src/complex/MaterialAllOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-15"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-143"},{"uid":"0b72-147"}],"importedBy":[{"uid":"0b72-48"}]},"0b72-16":{"id":"/src/complex/CombinatorProperties.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-17"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-164"}],"importedBy":[{"uid":"0b72-18"},{"uid":"0b72-20"}]},"0b72-18":{"id":"/src/complex/MaterialAnyOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-19"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-16"}],"importedBy":[{"uid":"0b72-48"}]},"0b72-20":{"id":"/src/complex/MaterialOneOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-21"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-149"},{"uid":"0b72-143"},{"uid":"0b72-146"},{"uid":"0b72-147"},{"uid":"0b72-16"}],"importedBy":[{"uid":"0b72-48"}]},"0b72-22":{"id":"/src/mui-controls/MuiCheckbox.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-23"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-145"}],"importedBy":[{"uid":"0b72-141"},{"uid":"0b72-58"},{"uid":"0b72-112"}]},"0b72-24":{"id":"/src/util/datejs.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-25"},"imported":[{"uid":"0b72-146"},{"uid":"0b72-156"},{"uid":"0b72-157"},{"uid":"0b72-144"}],"importedBy":[{"uid":"0b72-142"}]},"0b72-26":{"id":"/src/util/layout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-27"},"imported":[{"uid":"0b72-149"},{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"}],"importedBy":[{"uid":"0b72-134"},{"uid":"0b72-142"},{"uid":"0b72-98"},{"uid":"0b72-100"},{"uid":"0b72-102"},{"uid":"0b72-104"}]},"0b72-28":{"id":"/src/util/debounce.ts","moduleParts":{"jsonforms-react-material.esm.js":"0b72-29"},"imported":[{"uid":"0b72-158"},{"uid":"0b72-144"}],"importedBy":[{"uid":"0b72-142"}]},"0b72-30":{"id":"/src/util/focus.ts","moduleParts":{"jsonforms-react-material.esm.js":"0b72-31"},"imported":[{"uid":"0b72-144"}],"importedBy":[{"uid":"0b72-142"},{"uid":"0b72-66"}]},"0b72-32":{"id":"/src/util/i18nDefaults.ts","moduleParts":{"jsonforms-react-material.esm.js":"0b72-33"},"imported":[],"importedBy":[{"uid":"0b72-142"}]},"0b72-34":{"id":"/src/mui-controls/MuiSelect.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-35"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-141"},{"uid":"0b72-68"},{"uid":"0b72-92"},{"uid":"0b72-118"},{"uid":"0b72-126"}]},"0b72-36":{"id":"/src/mui-controls/MuiInputInteger.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-37"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-141"},{"uid":"0b72-84"},{"uid":"0b72-120"}]},"0b72-38":{"id":"/src/mui-controls/MuiInputNumber.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-39"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-141"},{"uid":"0b72-86"},{"uid":"0b72-122"}]},"0b72-40":{"id":"/src/mui-controls/MuiInputNumberFormat.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-41"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-141"},{"uid":"0b72-124"}]},"0b72-42":{"id":"/src/mui-controls/MuiInputText.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-43"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-155"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-141"},{"uid":"0b72-88"},{"uid":"0b72-128"}]},"0b72-44":{"id":"/src/mui-controls/MuiInputTime.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-45"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-141"},{"uid":"0b72-130"}]},"0b72-46":{"id":"/src/complex/MaterialEnumArrayRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-47"},"imported":[{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-141"},{"uid":"0b72-146"},{"uid":"0b72-149"},{"uid":"0b72-144"}],"importedBy":[{"uid":"0b72-48"}]},"0b72-48":{"id":"/src/complex/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"0b72-49"},"imported":[{"uid":"0b72-143"},{"uid":"0b72-10"},{"uid":"0b72-12"},{"uid":"0b72-14"},{"uid":"0b72-18"},{"uid":"0b72-20"},{"uid":"0b72-46"}],"importedBy":[{"uid":"0b72-136"}]},"0b72-50":{"id":"/src/additional/MaterialLabelRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-51"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"}],"importedBy":[{"uid":"0b72-138"}]},"0b72-52":{"id":"/src/layouts/ArrayToolbar.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-53"},"imported":[{"uid":"0b72-146"},{"uid":"0b72-165"},{"uid":"0b72-144"},{"uid":"0b72-2"}],"importedBy":[{"uid":"0b72-56"},{"uid":"0b72-108"}]},"0b72-54":{"id":"/src/additional/ListWithDetailMasterItem.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-55"},"imported":[{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-161"},{"uid":"0b72-144"}],"importedBy":[{"uid":"0b72-56"}]},"0b72-56":{"id":"/src/additional/MaterialListWithDetailRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-57"},"imported":[{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-150"},{"uid":"0b72-151"},{"uid":"0b72-144"},{"uid":"0b72-52"},{"uid":"0b72-54"},{"uid":"0b72-145"}],"importedBy":[{"uid":"0b72-138"}]},"0b72-58":{"id":"/src/controls/MaterialBooleanControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-59"},"imported":[{"uid":"0b72-149"},{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-22"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-60":{"id":"/src/mui-controls/MuiToggle.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-61"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-145"}],"importedBy":[{"uid":"0b72-62"},{"uid":"0b72-114"}]},"0b72-62":{"id":"/src/controls/MaterialBooleanToggleControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-63"},"imported":[{"uid":"0b72-149"},{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-60"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-64":{"id":"/src/controls/MaterialInputControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-65"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-96"},{"uid":"0b72-68"},{"uid":"0b72-84"},{"uid":"0b72-86"},{"uid":"0b72-88"},{"uid":"0b72-90"},{"uid":"0b72-92"}]},"0b72-66":{"id":"/src/mui-controls/MuiAutocomplete.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-67"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-30"}],"importedBy":[{"uid":"0b72-68"},{"uid":"0b72-92"}]},"0b72-68":{"id":"/src/controls/MaterialEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-69"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-34"},{"uid":"0b72-145"},{"uid":"0b72-64"},{"uid":"0b72-66"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-70":{"id":"/src/controls/MaterialNativeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-71"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-146"},{"uid":"0b72-147"},{"uid":"0b72-145"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-72":{"id":"/src/controls/MaterialDateControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-73"},"imported":[{"uid":"0b72-145"},{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-152"},{"uid":"0b72-153"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-74":{"id":"/src/controls/MaterialDateTimeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-75"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-145"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-152"},{"uid":"0b72-153"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-76":{"id":"/src/controls/MaterialTimeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-77"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-145"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-152"},{"uid":"0b72-153"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-78":{"id":"/src/controls/MaterialSliderControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-79"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-80":{"id":"/src/controls/MaterialRadioGroup.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-81"},"imported":[{"uid":"0b72-145"},{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-146"},{"uid":"0b72-142"}],"importedBy":[{"uid":"0b72-82"},{"uid":"0b72-94"}]},"0b72-82":{"id":"/src/controls/MaterialRadioGroupControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-83"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-80"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-84":{"id":"/src/controls/MaterialIntegerControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-85"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-36"},{"uid":"0b72-64"},{"uid":"0b72-147"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-86":{"id":"/src/controls/MaterialNumberControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-87"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-38"},{"uid":"0b72-64"},{"uid":"0b72-147"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-88":{"id":"/src/controls/MaterialTextControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-89"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-42"},{"uid":"0b72-64"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-90":{"id":"/src/controls/MaterialAnyOfStringOrEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-91"},"imported":[{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-146"},{"uid":"0b72-145"},{"uid":"0b72-144"},{"uid":"0b72-142"},{"uid":"0b72-64"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-92":{"id":"/src/controls/MaterialOneOfEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-93"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-66"},{"uid":"0b72-34"},{"uid":"0b72-64"},{"uid":"0b72-145"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-94":{"id":"/src/controls/MaterialOneOfRadioGroupControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-95"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-80"}],"importedBy":[{"uid":"0b72-96"}]},"0b72-96":{"id":"/src/controls/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"0b72-97"},"imported":[{"uid":"0b72-58"},{"uid":"0b72-62"},{"uid":"0b72-68"},{"uid":"0b72-70"},{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"},{"uid":"0b72-78"},{"uid":"0b72-82"},{"uid":"0b72-84"},{"uid":"0b72-86"},{"uid":"0b72-88"},{"uid":"0b72-90"},{"uid":"0b72-92"},{"uid":"0b72-94"},{"uid":"0b72-64"}],"importedBy":[{"uid":"0b72-136"}]},"0b72-98":{"id":"/src/layouts/MaterialGroupLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-99"},"imported":[{"uid":"0b72-149"},{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-143"},{"uid":"0b72-26"},{"uid":"0b72-147"}],"importedBy":[{"uid":"0b72-139"}]},"0b72-100":{"id":"/src/layouts/MaterialHorizontalLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-101"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-26"}],"importedBy":[{"uid":"0b72-139"}]},"0b72-102":{"id":"/src/layouts/MaterialVerticalLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-103"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-26"},{"uid":"0b72-147"}],"importedBy":[{"uid":"0b72-139"}]},"0b72-104":{"id":"/src/layouts/MaterialCategorizationLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-105"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-146"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-26"}],"importedBy":[{"uid":"0b72-139"}]},"0b72-106":{"id":"/src/layouts/ExpandPanelRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-107"},"imported":[{"uid":"0b72-145"},{"uid":"0b72-168"},{"uid":"0b72-144"},{"uid":"0b72-147"},{"uid":"0b72-143"},{"uid":"0b72-146"},{"uid":"0b72-169"},{"uid":"0b72-161"},{"uid":"0b72-163"},{"uid":"0b72-162"}],"importedBy":[{"uid":"0b72-108"}]},"0b72-108":{"id":"/src/layouts/MaterialArrayLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-109"},"imported":[{"uid":"0b72-151"},{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-150"},{"uid":"0b72-52"},{"uid":"0b72-106"},{"uid":"0b72-145"}],"importedBy":[{"uid":"0b72-110"}]},"0b72-110":{"id":"/src/layouts/MaterialArrayLayoutRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-111"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-146"},{"uid":"0b72-108"},{"uid":"0b72-147"}],"importedBy":[{"uid":"0b72-139"}]},"0b72-112":{"id":"/src/cells/MaterialBooleanCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-113"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-22"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-114":{"id":"/src/cells/MaterialBooleanToggleCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-115"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-60"}],"importedBy":[{"uid":"0b72-140"}]},"0b72-116":{"id":"/src/cells/MaterialDateCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-117"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-154"},{"uid":"0b72-145"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-118":{"id":"/src/cells/MaterialEnumCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-119"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-34"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-120":{"id":"/src/cells/MaterialIntegerCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-121"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-36"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-122":{"id":"/src/cells/MaterialNumberCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-123"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-38"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-124":{"id":"/src/cells/MaterialNumberFormatCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-125"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-40"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-126":{"id":"/src/cells/MaterialOneOfEnumCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-127"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-34"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-128":{"id":"/src/cells/MaterialTextCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-129"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-42"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-130":{"id":"/src/cells/MaterialTimeCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-131"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-44"}],"importedBy":[{"uid":"0b72-140"},{"uid":"0b72-132"}]},"0b72-132":{"id":"/src/cells/CustomizableCells.ts","moduleParts":{"jsonforms-react-material.esm.js":"0b72-133"},"imported":[{"uid":"0b72-112"},{"uid":"0b72-116"},{"uid":"0b72-118"},{"uid":"0b72-120"},{"uid":"0b72-122"},{"uid":"0b72-124"},{"uid":"0b72-126"},{"uid":"0b72-128"},{"uid":"0b72-130"}],"importedBy":[{"uid":"0b72-140"}]},"0b72-134":{"id":"/src/layouts/MaterialCategorizationStepperLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"0b72-135"},"imported":[{"uid":"0b72-144"},{"uid":"0b72-145"},{"uid":"0b72-146"},{"uid":"0b72-143"},{"uid":"0b72-147"},{"uid":"0b72-26"}],"importedBy":[{"uid":"0b72-136"}]},"0b72-136":{"id":"/src/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"0b72-137"},"imported":[{"uid":"0b72-48"},{"uid":"0b72-138"},{"uid":"0b72-96"},{"uid":"0b72-139"},{"uid":"0b72-140"},{"uid":"0b72-134"},{"uid":"0b72-141"},{"uid":"0b72-142"}],"importedBy":[],"isEntry":true},"0b72-138":{"id":"/src/additional/index.ts","moduleParts":{},"imported":[{"uid":"0b72-50"},{"uid":"0b72-56"}],"importedBy":[{"uid":"0b72-136"}]},"0b72-139":{"id":"/src/layouts/index.ts","moduleParts":{},"imported":[{"uid":"0b72-98"},{"uid":"0b72-100"},{"uid":"0b72-102"},{"uid":"0b72-104"},{"uid":"0b72-110"}],"importedBy":[{"uid":"0b72-136"}]},"0b72-140":{"id":"/src/cells/index.ts","moduleParts":{},"imported":[{"uid":"0b72-112"},{"uid":"0b72-114"},{"uid":"0b72-116"},{"uid":"0b72-118"},{"uid":"0b72-120"},{"uid":"0b72-122"},{"uid":"0b72-124"},{"uid":"0b72-126"},{"uid":"0b72-128"},{"uid":"0b72-130"},{"uid":"0b72-132"}],"importedBy":[{"uid":"0b72-136"}]},"0b72-141":{"id":"/src/mui-controls/index.ts","moduleParts":{},"imported":[{"uid":"0b72-22"},{"uid":"0b72-34"},{"uid":"0b72-36"},{"uid":"0b72-38"},{"uid":"0b72-40"},{"uid":"0b72-42"},{"uid":"0b72-44"}],"importedBy":[{"uid":"0b72-136"},{"uid":"0b72-46"}]},"0b72-142":{"id":"/src/util/index.ts","moduleParts":{},"imported":[{"uid":"0b72-24"},{"uid":"0b72-26"},{"uid":"0b72-148"},{"uid":"0b72-28"},{"uid":"0b72-30"},{"uid":"0b72-32"}],"importedBy":[{"uid":"0b72-136"},{"uid":"0b72-70"},{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"},{"uid":"0b72-78"},{"uid":"0b72-90"},{"uid":"0b72-64"},{"uid":"0b72-34"},{"uid":"0b72-36"},{"uid":"0b72-38"},{"uid":"0b72-40"},{"uid":"0b72-42"},{"uid":"0b72-44"},{"uid":"0b72-80"}]},"0b72-143":{"id":"@jsonforms/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-48"},{"uid":"0b72-134"},{"uid":"0b72-12"},{"uid":"0b72-14"},{"uid":"0b72-18"},{"uid":"0b72-20"},{"uid":"0b72-46"},{"uid":"0b72-50"},{"uid":"0b72-56"},{"uid":"0b72-58"},{"uid":"0b72-62"},{"uid":"0b72-68"},{"uid":"0b72-70"},{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"},{"uid":"0b72-78"},{"uid":"0b72-82"},{"uid":"0b72-84"},{"uid":"0b72-86"},{"uid":"0b72-88"},{"uid":"0b72-90"},{"uid":"0b72-92"},{"uid":"0b72-94"},{"uid":"0b72-64"},{"uid":"0b72-98"},{"uid":"0b72-100"},{"uid":"0b72-102"},{"uid":"0b72-104"},{"uid":"0b72-110"},{"uid":"0b72-112"},{"uid":"0b72-114"},{"uid":"0b72-116"},{"uid":"0b72-118"},{"uid":"0b72-120"},{"uid":"0b72-122"},{"uid":"0b72-124"},{"uid":"0b72-126"},{"uid":"0b72-128"},{"uid":"0b72-130"},{"uid":"0b72-26"},{"uid":"0b72-6"},{"uid":"0b72-16"},{"uid":"0b72-66"},{"uid":"0b72-80"},{"uid":"0b72-108"},{"uid":"0b72-4"},{"uid":"0b72-106"}],"isExternal":true},"0b72-144":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-134"},{"uid":"0b72-10"},{"uid":"0b72-12"},{"uid":"0b72-14"},{"uid":"0b72-18"},{"uid":"0b72-20"},{"uid":"0b72-46"},{"uid":"0b72-50"},{"uid":"0b72-56"},{"uid":"0b72-58"},{"uid":"0b72-62"},{"uid":"0b72-68"},{"uid":"0b72-70"},{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"},{"uid":"0b72-78"},{"uid":"0b72-82"},{"uid":"0b72-84"},{"uid":"0b72-86"},{"uid":"0b72-88"},{"uid":"0b72-90"},{"uid":"0b72-92"},{"uid":"0b72-94"},{"uid":"0b72-64"},{"uid":"0b72-98"},{"uid":"0b72-100"},{"uid":"0b72-102"},{"uid":"0b72-104"},{"uid":"0b72-110"},{"uid":"0b72-112"},{"uid":"0b72-114"},{"uid":"0b72-116"},{"uid":"0b72-118"},{"uid":"0b72-120"},{"uid":"0b72-122"},{"uid":"0b72-124"},{"uid":"0b72-126"},{"uid":"0b72-128"},{"uid":"0b72-130"},{"uid":"0b72-26"},{"uid":"0b72-22"},{"uid":"0b72-34"},{"uid":"0b72-36"},{"uid":"0b72-38"},{"uid":"0b72-40"},{"uid":"0b72-42"},{"uid":"0b72-44"},{"uid":"0b72-24"},{"uid":"0b72-28"},{"uid":"0b72-30"},{"uid":"0b72-6"},{"uid":"0b72-8"},{"uid":"0b72-16"},{"uid":"0b72-52"},{"uid":"0b72-54"},{"uid":"0b72-60"},{"uid":"0b72-66"},{"uid":"0b72-80"},{"uid":"0b72-108"},{"uid":"0b72-0"},{"uid":"0b72-4"},{"uid":"0b72-2"},{"uid":"0b72-106"}],"isExternal":true},"0b72-145":{"id":"lodash/merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-134"},{"uid":"0b72-56"},{"uid":"0b72-68"},{"uid":"0b72-70"},{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"},{"uid":"0b72-78"},{"uid":"0b72-90"},{"uid":"0b72-92"},{"uid":"0b72-64"},{"uid":"0b72-116"},{"uid":"0b72-22"},{"uid":"0b72-34"},{"uid":"0b72-36"},{"uid":"0b72-38"},{"uid":"0b72-40"},{"uid":"0b72-42"},{"uid":"0b72-44"},{"uid":"0b72-6"},{"uid":"0b72-60"},{"uid":"0b72-66"},{"uid":"0b72-80"},{"uid":"0b72-108"},{"uid":"0b72-106"}],"isExternal":true},"0b72-146":{"id":"@mui/material","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-134"},{"uid":"0b72-10"},{"uid":"0b72-12"},{"uid":"0b72-14"},{"uid":"0b72-18"},{"uid":"0b72-20"},{"uid":"0b72-46"},{"uid":"0b72-50"},{"uid":"0b72-56"},{"uid":"0b72-58"},{"uid":"0b72-62"},{"uid":"0b72-70"},{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"},{"uid":"0b72-78"},{"uid":"0b72-90"},{"uid":"0b72-64"},{"uid":"0b72-98"},{"uid":"0b72-104"},{"uid":"0b72-110"},{"uid":"0b72-26"},{"uid":"0b72-22"},{"uid":"0b72-34"},{"uid":"0b72-36"},{"uid":"0b72-38"},{"uid":"0b72-40"},{"uid":"0b72-42"},{"uid":"0b72-44"},{"uid":"0b72-24"},{"uid":"0b72-6"},{"uid":"0b72-8"},{"uid":"0b72-52"},{"uid":"0b72-54"},{"uid":"0b72-60"},{"uid":"0b72-66"},{"uid":"0b72-80"},{"uid":"0b72-0"},{"uid":"0b72-4"},{"uid":"0b72-2"},{"uid":"0b72-106"}],"isExternal":true},"0b72-147":{"id":"@jsonforms/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-134"},{"uid":"0b72-10"},{"uid":"0b72-12"},{"uid":"0b72-14"},{"uid":"0b72-18"},{"uid":"0b72-20"},{"uid":"0b72-46"},{"uid":"0b72-50"},{"uid":"0b72-56"},{"uid":"0b72-58"},{"uid":"0b72-62"},{"uid":"0b72-68"},{"uid":"0b72-70"},{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"},{"uid":"0b72-78"},{"uid":"0b72-82"},{"uid":"0b72-84"},{"uid":"0b72-86"},{"uid":"0b72-88"},{"uid":"0b72-90"},{"uid":"0b72-92"},{"uid":"0b72-94"},{"uid":"0b72-98"},{"uid":"0b72-100"},{"uid":"0b72-102"},{"uid":"0b72-104"},{"uid":"0b72-110"},{"uid":"0b72-112"},{"uid":"0b72-114"},{"uid":"0b72-116"},{"uid":"0b72-118"},{"uid":"0b72-120"},{"uid":"0b72-122"},{"uid":"0b72-124"},{"uid":"0b72-126"},{"uid":"0b72-128"},{"uid":"0b72-130"},{"uid":"0b72-26"},{"uid":"0b72-6"},{"uid":"0b72-16"},{"uid":"0b72-54"},{"uid":"0b72-106"}],"isExternal":true},"0b72-148":{"id":"/src/util/theme.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-142"}]},"0b72-149":{"id":"lodash/isEmpty","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-12"},{"uid":"0b72-20"},{"uid":"0b72-46"},{"uid":"0b72-58"},{"uid":"0b72-62"},{"uid":"0b72-98"},{"uid":"0b72-26"},{"uid":"0b72-6"}],"isExternal":true},"0b72-150":{"id":"lodash/map","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-56"},{"uid":"0b72-108"}],"isExternal":true},"0b72-151":{"id":"lodash/range","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-56"},{"uid":"0b72-6"},{"uid":"0b72-108"}],"isExternal":true},"0b72-152":{"id":"@mui/lab","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"}],"isExternal":true},"0b72-153":{"id":"@mui/lab/AdapterDayjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-72"},{"uid":"0b72-74"},{"uid":"0b72-76"}],"isExternal":true},"0b72-154":{"id":"@mui/material/Input","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-116"}],"isExternal":true},"0b72-155":{"id":"@mui/icons-material/Close","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-42"}],"isExternal":true},"0b72-156":{"id":"dayjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-24"}],"isExternal":true},"0b72-157":{"id":"dayjs/plugin/customParseFormat","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-24"}],"isExternal":true},"0b72-158":{"id":"lodash/debounce","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-28"}],"isExternal":true},"0b72-159":{"id":"lodash/union","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-6"}],"isExternal":true},"0b72-160":{"id":"lodash/startCase","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-6"}],"isExternal":true},"0b72-161":{"id":"@mui/icons-material/Delete","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-6"},{"uid":"0b72-54"},{"uid":"0b72-106"}],"isExternal":true},"0b72-162":{"id":"@mui/icons-material/ArrowDownward","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-6"},{"uid":"0b72-106"}],"isExternal":true},"0b72-163":{"id":"@mui/icons-material/ArrowUpward","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-6"},{"uid":"0b72-106"}],"isExternal":true},"0b72-164":{"id":"lodash/omit","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-16"}],"isExternal":true},"0b72-165":{"id":"@mui/icons-material/Add","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-52"},{"uid":"0b72-4"}],"isExternal":true},"0b72-166":{"id":"@mui/material/styles","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-0"}],"isExternal":true},"0b72-167":{"id":"@mui/icons-material/ErrorOutline","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-2"}],"isExternal":true},"0b72-168":{"id":"lodash/get","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-106"}],"isExternal":true},"0b72-169":{"id":"@mui/icons-material/ExpandMore","moduleParts":{},"imported":[],"importedBy":[{"uid":"0b72-106"}],"isExternal":true}},"env":{"rollup":"2.61.1"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
3263
3263
|
|
|
3264
3264
|
const run = () => {
|
|
3265
3265
|
const width = window.innerWidth;
|
|
@@ -37,7 +37,7 @@ import Enzyme, { mount, ReactWrapper } from 'enzyme';
|
|
|
37
37
|
import Adapter from '@wojtekmaj/enzyme-adapter-react-17';
|
|
38
38
|
import { JsonForms, JsonFormsStateProvider } from '@jsonforms/react';
|
|
39
39
|
import { Accordion } from '@mui/material';
|
|
40
|
-
import { initCore } from './util';
|
|
40
|
+
import { createTesterContext, initCore } from './util';
|
|
41
41
|
|
|
42
42
|
Enzyme.configure({ adapter: new Adapter() });
|
|
43
43
|
|
|
@@ -181,9 +181,9 @@ describe('Material array layout tester', () => {
|
|
|
181
181
|
expect(materialArrayLayoutTester(uischema, schema, undefined)).toBe(-1);
|
|
182
182
|
expect(materialArrayLayoutTester(uischema, nestedSchema, undefined)).toBe(4);
|
|
183
183
|
expect(materialArrayLayoutTester(uischema, nestedSchema2, undefined)).toBe(4);
|
|
184
|
-
expect(materialArrayLayoutTester(uischema, nestedSchemaWithRef, nestedSchemaWithRef)).toBe(4);
|
|
185
|
-
expect(materialArrayLayoutTester(uischema, nestedSchemaWithRef, nestedSchemaWithRef)).toBe(4);
|
|
186
|
-
expect(materialArrayLayoutTester(uischema, nestedSchema2WithRef, nestedSchema2WithRef)).toBe(4);
|
|
184
|
+
expect(materialArrayLayoutTester(uischema, nestedSchemaWithRef, createTesterContext(nestedSchemaWithRef))).toBe(4);
|
|
185
|
+
expect(materialArrayLayoutTester(uischema, nestedSchemaWithRef, createTesterContext(nestedSchemaWithRef))).toBe(4);
|
|
186
|
+
expect(materialArrayLayoutTester(uischema, nestedSchema2WithRef, createTesterContext(nestedSchema2WithRef))).toBe(4);
|
|
187
187
|
|
|
188
188
|
expect(materialArrayLayoutTester(uischemaOptions.default, schema, undefined)).toBe(-1);
|
|
189
189
|
expect(materialArrayLayoutTester(uischemaOptions.generate, schema, undefined)).toBe(4);
|
|
@@ -27,6 +27,8 @@ import React from 'react';
|
|
|
27
27
|
import {
|
|
28
28
|
Categorization,
|
|
29
29
|
ControlElement,
|
|
30
|
+
createAjv,
|
|
31
|
+
defaultJsonFormsI18nState,
|
|
30
32
|
Layout,
|
|
31
33
|
layoutDefaultProps,
|
|
32
34
|
RuleEffect,
|
|
@@ -66,6 +68,14 @@ const fixture = {
|
|
|
66
68
|
}
|
|
67
69
|
};
|
|
68
70
|
|
|
71
|
+
const testDefaultProps = {
|
|
72
|
+
...layoutDefaultProps,
|
|
73
|
+
data: fixture.data,
|
|
74
|
+
ajv: createAjv(),
|
|
75
|
+
t: defaultJsonFormsI18nState.translate,
|
|
76
|
+
locale: defaultJsonFormsI18nState.locale
|
|
77
|
+
}
|
|
78
|
+
|
|
69
79
|
describe('Material categorization layout tester', () => {
|
|
70
80
|
it('should not fail when given undefined data', () => {
|
|
71
81
|
expect(materialCategorizationTester(undefined, undefined, undefined)).toBe(-1);
|
|
@@ -206,7 +216,7 @@ describe('Material categorization layout', () => {
|
|
|
206
216
|
const wrapper = mount(
|
|
207
217
|
<JsonFormsStateProvider initState={{ renderers: materialRenderers, core }}>
|
|
208
218
|
<MaterialCategorizationLayoutRenderer
|
|
209
|
-
{...
|
|
219
|
+
{...testDefaultProps}
|
|
210
220
|
schema={fixture.schema}
|
|
211
221
|
uischema={uischema}
|
|
212
222
|
/>
|
|
@@ -261,7 +271,7 @@ describe('Material categorization layout', () => {
|
|
|
261
271
|
const wrapper = mount(
|
|
262
272
|
<JsonFormsStateProvider initState={{ renderers: materialRenderers, core }}>
|
|
263
273
|
<MaterialCategorizationLayoutRenderer
|
|
264
|
-
{...
|
|
274
|
+
{...testDefaultProps}
|
|
265
275
|
schema={fixture.schema}
|
|
266
276
|
uischema={uischema}
|
|
267
277
|
/>
|
|
@@ -286,7 +296,7 @@ describe('Material categorization layout', () => {
|
|
|
286
296
|
const wrapper = mount(
|
|
287
297
|
<JsonFormsStateProvider initState={{ renderers: materialRenderers, core }}>
|
|
288
298
|
<MaterialCategorizationLayoutRenderer
|
|
289
|
-
{...
|
|
299
|
+
{...testDefaultProps}
|
|
290
300
|
schema={fixture.schema}
|
|
291
301
|
uischema={fixture.uischema}
|
|
292
302
|
visible={false}
|
|
@@ -303,7 +313,7 @@ describe('Material categorization layout', () => {
|
|
|
303
313
|
const wrapper = mount(
|
|
304
314
|
<JsonFormsStateProvider initState={{ renderers: materialRenderers, core }}>
|
|
305
315
|
<MaterialCategorizationLayoutRenderer
|
|
306
|
-
{...
|
|
316
|
+
{...testDefaultProps}
|
|
307
317
|
schema={fixture.schema}
|
|
308
318
|
uischema={fixture.uischema}
|
|
309
319
|
/>
|
|
@@ -344,7 +354,7 @@ describe('Material categorization layout', () => {
|
|
|
344
354
|
const wrapper = mount(
|
|
345
355
|
<JsonFormsStateProvider initState={{ renderers: materialRenderers, core }}>
|
|
346
356
|
<MaterialCategorizationLayoutRenderer
|
|
347
|
-
{...
|
|
357
|
+
{...testDefaultProps}
|
|
348
358
|
schema={fixture.schema}
|
|
349
359
|
uischema={uischema}
|
|
350
360
|
/>
|
|
@@ -361,7 +371,7 @@ describe('Material categorization layout', () => {
|
|
|
361
371
|
const wrapper = mount(
|
|
362
372
|
<JsonFormsStateProvider initState={{ renderers: materialRenderers, core }}>
|
|
363
373
|
<MaterialCategorizationLayoutRenderer
|
|
364
|
-
{...
|
|
374
|
+
{...testDefaultProps}
|
|
365
375
|
schema={fixture.schema}
|
|
366
376
|
uischema={fixture.uischema}
|
|
367
377
|
renderers={renderers}
|
|
@@ -421,7 +431,7 @@ describe('Material categorization layout', () => {
|
|
|
421
431
|
const wrapper = mount(
|
|
422
432
|
<JsonFormsStateProvider initState={{ renderers: materialRenderers, core }}>
|
|
423
433
|
<MaterialCategorizationLayoutRenderer
|
|
424
|
-
{...
|
|
434
|
+
{...testDefaultProps}
|
|
425
435
|
schema={fixture.schema}
|
|
426
436
|
uischema={uischema}
|
|
427
437
|
/>
|