@jsonforms/material-renderers 3.0.0-rc.0 → 3.0.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 +10 -10
- package/docs/interfaces/dispatchpropsofexpandpanel.html +3 -3
- package/docs/interfaces/expandpanelprops.html +34 -19
- package/docs/interfaces/ownpropsofexpandpanel.html +28 -14
- package/docs/interfaces/statepropsofexpandpanel.html +31 -16
- package/lib/jsonforms-react-material.cjs.js +30 -15
- package/lib/jsonforms-react-material.cjs.js.map +1 -1
- package/lib/jsonforms-react-material.esm.js +25 -10
- package/lib/jsonforms-react-material.esm.js.map +1 -1
- package/lib/layouts/ExpandPanelRenderer.d.ts +1 -0
- package/package.json +9 -9
- package/src/additional/MaterialListWithDetailRenderer.tsx +4 -0
- package/src/controls/MaterialDateControl.tsx +7 -6
- package/src/controls/MaterialDateTimeControl.tsx +9 -7
- package/src/controls/MaterialRadioGroup.tsx +1 -1
- package/src/controls/MaterialTimeControl.tsx +7 -6
- package/src/layouts/ExpandPanelRenderer.tsx +3 -0
- package/src/layouts/MaterialArrayLayout.tsx +2 -0
- package/stats.html +1 -1
- package/test/renderers/MaterialDateTimeControl.test.tsx +2 -2
- package/test/renderers/MaterialTimeControl.test.tsx +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React, { ComponentType, Dispatch, ReducerAction } from 'react';
|
|
2
2
|
import { ControlElement, JsonFormsRendererRegistryEntry, JsonSchema, JsonFormsCellRendererRegistryEntry, JsonFormsUISchemaRegistryEntry } from '@jsonforms/core';
|
|
3
3
|
interface OwnPropsOfExpandPanel {
|
|
4
|
+
enabled: boolean;
|
|
4
5
|
index: number;
|
|
5
6
|
path: string;
|
|
6
7
|
uischema: ControlElement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsonforms/material-renderers",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Material Renderer Set for JSON Forms",
|
|
5
5
|
"repository": "https://github.com/eclipsesource/jsonforms",
|
|
6
6
|
"bugs": "https://github.com/eclipsesource/jsonforms/issues",
|
|
@@ -76,20 +76,20 @@
|
|
|
76
76
|
"peerDependencies": {
|
|
77
77
|
"@emotion/react": "^11.4.1",
|
|
78
78
|
"@emotion/styled": "^11.3.0",
|
|
79
|
-
"@jsonforms/core": "3.0.0
|
|
80
|
-
"@jsonforms/react": "3.0.0
|
|
79
|
+
"@jsonforms/core": "3.0.0",
|
|
80
|
+
"@jsonforms/react": "3.0.0",
|
|
81
81
|
"@mui/icons-material": "^5.0.0",
|
|
82
|
-
"@mui/
|
|
83
|
-
"@mui/
|
|
82
|
+
"@mui/material": "^5.0.0",
|
|
83
|
+
"@mui/x-date-pickers": "^5.0.0-beta.5"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@emotion/react": "^11.5.0",
|
|
87
87
|
"@emotion/styled": "^11.3.0",
|
|
88
|
-
"@jsonforms/core": "^3.0.0
|
|
89
|
-
"@jsonforms/react": "^3.0.0
|
|
88
|
+
"@jsonforms/core": "^3.0.0",
|
|
89
|
+
"@jsonforms/react": "^3.0.0",
|
|
90
90
|
"@mui/icons-material": "^5.2.0",
|
|
91
|
-
"@mui/lab": "^5.0.0-alpha.58",
|
|
92
91
|
"@mui/material": "^5.2.2",
|
|
92
|
+
"@mui/x-date-pickers": "^5.0.0-beta.5",
|
|
93
93
|
"@types/enzyme": "^3.10.3",
|
|
94
94
|
"@types/react-dom": "^17.0.9",
|
|
95
95
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"webpack-cli": "^3.2.1",
|
|
115
115
|
"webpack-dev-server": "^3.9.0"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "20e9e0fd72bb388611d7387e1f533d66b7839041"
|
|
118
118
|
}
|
|
@@ -98,6 +98,10 @@ export const MaterialListWithDetailRenderer = ({
|
|
|
98
98
|
);
|
|
99
99
|
const appliedUiSchemaOptions = merge({}, config, uischema.options);
|
|
100
100
|
|
|
101
|
+
React.useEffect(() => {
|
|
102
|
+
setSelectedIndex(undefined);
|
|
103
|
+
}, [schema]);
|
|
104
|
+
|
|
101
105
|
return (
|
|
102
106
|
<Hidden xsUp={!visible}>
|
|
103
107
|
<ArrayLayoutToolbar
|
|
@@ -36,8 +36,8 @@ import { FormHelperText, Hidden } from '@mui/material';
|
|
|
36
36
|
import {
|
|
37
37
|
DatePicker,
|
|
38
38
|
LocalizationProvider
|
|
39
|
-
} from '@mui/
|
|
40
|
-
import AdapterDayjs from '@mui/
|
|
39
|
+
} from '@mui/x-date-pickers';
|
|
40
|
+
import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs';
|
|
41
41
|
import {
|
|
42
42
|
createOnChangeHandler,
|
|
43
43
|
getData,
|
|
@@ -96,15 +96,16 @@ export const MaterialDateControl = (props: ControlProps)=> {
|
|
|
96
96
|
<DatePicker
|
|
97
97
|
label={label}
|
|
98
98
|
value={value}
|
|
99
|
-
clearable
|
|
100
99
|
onChange={onChange}
|
|
101
100
|
inputFormat={format}
|
|
102
101
|
disableMaskedInput
|
|
103
102
|
views={views}
|
|
104
103
|
disabled={!enabled}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
104
|
+
componentsProps={{
|
|
105
|
+
actionBar: {
|
|
106
|
+
actions: (variant) => (variant === 'desktop' ? [] : ['clear', 'cancel', 'accept'])
|
|
107
|
+
}
|
|
108
|
+
}}
|
|
108
109
|
renderInput={params => (
|
|
109
110
|
<ResettableTextField
|
|
110
111
|
{...params}
|
|
@@ -36,8 +36,8 @@ import { FormHelperText, Hidden } from '@mui/material';
|
|
|
36
36
|
import {
|
|
37
37
|
DateTimePicker,
|
|
38
38
|
LocalizationProvider
|
|
39
|
-
} from '@mui/
|
|
40
|
-
import AdapterDayjs from '@mui/
|
|
39
|
+
} from '@mui/x-date-pickers';
|
|
40
|
+
import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs';
|
|
41
41
|
import {
|
|
42
42
|
createOnChangeHandler,
|
|
43
43
|
getData,
|
|
@@ -98,16 +98,17 @@ export const MaterialDateTimeControl = (props: ControlProps) => {
|
|
|
98
98
|
<DateTimePicker
|
|
99
99
|
label={label}
|
|
100
100
|
value={value}
|
|
101
|
-
clearable
|
|
102
101
|
onChange={onChange}
|
|
103
102
|
inputFormat={format}
|
|
104
103
|
disableMaskedInput
|
|
105
104
|
ampm={!!appliedUiSchemaOptions.ampm}
|
|
106
105
|
views={views}
|
|
107
106
|
disabled={!enabled}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
107
|
+
componentsProps={{
|
|
108
|
+
actionBar: {
|
|
109
|
+
actions: (variant) => (variant === 'desktop' ? [] : ['clear', 'cancel', 'accept'])
|
|
110
|
+
}
|
|
111
|
+
}}
|
|
111
112
|
renderInput={params => (
|
|
112
113
|
<ResettableTextField
|
|
113
114
|
{...params}
|
|
@@ -129,7 +130,8 @@ export const MaterialDateTimeControl = (props: ControlProps) => {
|
|
|
129
130
|
onBlur={onBlur}
|
|
130
131
|
variant={'standard'}
|
|
131
132
|
/>
|
|
132
|
-
)
|
|
133
|
+
)
|
|
134
|
+
}
|
|
133
135
|
/>
|
|
134
136
|
<FormHelperText error={!isValid && !showDescription}>
|
|
135
137
|
{firstFormHelperText}
|
|
@@ -36,8 +36,8 @@ import { FormHelperText, Hidden } from '@mui/material';
|
|
|
36
36
|
import {
|
|
37
37
|
TimePicker,
|
|
38
38
|
LocalizationProvider
|
|
39
|
-
} from '@mui/
|
|
40
|
-
import AdapterDayjs from '@mui/
|
|
39
|
+
} from '@mui/x-date-pickers';
|
|
40
|
+
import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs';
|
|
41
41
|
import {
|
|
42
42
|
createOnChangeHandler,
|
|
43
43
|
getData,
|
|
@@ -98,16 +98,17 @@ export const MaterialTimeControl = (props: ControlProps) => {
|
|
|
98
98
|
<TimePicker
|
|
99
99
|
label={label}
|
|
100
100
|
value={value}
|
|
101
|
-
clearable
|
|
102
101
|
onChange={onChange}
|
|
103
102
|
inputFormat={format}
|
|
104
103
|
disableMaskedInput
|
|
105
104
|
ampm={!!appliedUiSchemaOptions.ampm}
|
|
106
105
|
views={views}
|
|
107
106
|
disabled={!enabled}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
107
|
+
componentsProps={{
|
|
108
|
+
actionBar: {
|
|
109
|
+
actions: (variant) => (variant === 'desktop' ? [] : ['clear', 'cancel', 'accept'])
|
|
110
|
+
}
|
|
111
|
+
}}
|
|
111
112
|
renderInput={params => (
|
|
112
113
|
<ResettableTextField
|
|
113
114
|
{...params}
|
|
@@ -38,6 +38,7 @@ import ArrowDownward from '@mui/icons-material/ArrowDownward';
|
|
|
38
38
|
const iconStyle: any = { float: 'right' };
|
|
39
39
|
|
|
40
40
|
interface OwnPropsOfExpandPanel {
|
|
41
|
+
enabled: boolean;
|
|
41
42
|
index: number;
|
|
42
43
|
path: string;
|
|
43
44
|
uischema: ControlElement;
|
|
@@ -84,6 +85,7 @@ const ExpandPanelRendererComponent = (props: ExpandPanelProps) => {
|
|
|
84
85
|
}, [labelHtmlId]);
|
|
85
86
|
|
|
86
87
|
const {
|
|
88
|
+
enabled,
|
|
87
89
|
childLabel,
|
|
88
90
|
childPath,
|
|
89
91
|
index,
|
|
@@ -191,6 +193,7 @@ const ExpandPanelRendererComponent = (props: ExpandPanelProps) => {
|
|
|
191
193
|
</AccordionSummary>
|
|
192
194
|
<AccordionDetails>
|
|
193
195
|
<JsonFormsDispatch
|
|
196
|
+
enabled={enabled}
|
|
194
197
|
schema={schema}
|
|
195
198
|
uischema={foundUISchema}
|
|
196
199
|
path={childPath}
|
|
@@ -45,6 +45,7 @@ const MaterialArrayLayoutComponent = (props: ArrayLayoutProps)=> {
|
|
|
45
45
|
expanded === composePaths(props.path, `${index}`);
|
|
46
46
|
|
|
47
47
|
const {
|
|
48
|
+
enabled,
|
|
48
49
|
data,
|
|
49
50
|
path,
|
|
50
51
|
schema,
|
|
@@ -83,6 +84,7 @@ const MaterialArrayLayoutComponent = (props: ArrayLayoutProps)=> {
|
|
|
83
84
|
map(range(data), index => {
|
|
84
85
|
return (
|
|
85
86
|
<ExpandPanelRenderer
|
|
87
|
+
enabled={enabled}
|
|
86
88
|
index={index}
|
|
87
89
|
expanded={isExpanded(index)}
|
|
88
90
|
schema={schema}
|
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":"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}};
|
|
3262
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"jsonforms-react-material.esm.js","children":[{"name":"src","children":[{"name":"complex","children":[{"uid":"9104-1","name":"NoBorderTableCell.tsx"},{"uid":"9104-3","name":"ValidationIcon.tsx"},{"uid":"9104-5","name":"TableToolbar.tsx"},{"uid":"9104-7","name":"MaterialTableControl.tsx"},{"uid":"9104-9","name":"DeleteDialog.tsx"},{"uid":"9104-11","name":"MaterialArrayControlRenderer.tsx"},{"uid":"9104-13","name":"MaterialObjectRenderer.tsx"},{"uid":"9104-15","name":"MaterialAllOfRenderer.tsx"},{"uid":"9104-17","name":"CombinatorProperties.tsx"},{"uid":"9104-19","name":"MaterialAnyOfRenderer.tsx"},{"uid":"9104-21","name":"MaterialOneOfRenderer.tsx"},{"uid":"9104-47","name":"MaterialEnumArrayRenderer.tsx"},{"uid":"9104-49","name":"index.ts"}]},{"name":"mui-controls","children":[{"uid":"9104-23","name":"MuiCheckbox.tsx"},{"uid":"9104-35","name":"MuiSelect.tsx"},{"uid":"9104-37","name":"MuiInputInteger.tsx"},{"uid":"9104-39","name":"MuiInputNumber.tsx"},{"uid":"9104-41","name":"MuiInputNumberFormat.tsx"},{"uid":"9104-43","name":"MuiInputText.tsx"},{"uid":"9104-45","name":"MuiInputTime.tsx"},{"uid":"9104-61","name":"MuiToggle.tsx"},{"uid":"9104-67","name":"MuiAutocomplete.tsx"}]},{"name":"util","children":[{"uid":"9104-25","name":"datejs.tsx"},{"uid":"9104-27","name":"layout.tsx"},{"uid":"9104-29","name":"debounce.ts"},{"uid":"9104-31","name":"focus.ts"},{"uid":"9104-33","name":"i18nDefaults.ts"}]},{"name":"additional","children":[{"uid":"9104-51","name":"MaterialLabelRenderer.tsx"},{"uid":"9104-55","name":"ListWithDetailMasterItem.tsx"},{"uid":"9104-57","name":"MaterialListWithDetailRenderer.tsx"}]},{"name":"layouts","children":[{"uid":"9104-53","name":"ArrayToolbar.tsx"},{"uid":"9104-99","name":"MaterialGroupLayout.tsx"},{"uid":"9104-101","name":"MaterialHorizontalLayout.tsx"},{"uid":"9104-103","name":"MaterialVerticalLayout.tsx"},{"uid":"9104-105","name":"MaterialCategorizationLayout.tsx"},{"uid":"9104-107","name":"ExpandPanelRenderer.tsx"},{"uid":"9104-109","name":"MaterialArrayLayout.tsx"},{"uid":"9104-111","name":"MaterialArrayLayoutRenderer.tsx"},{"uid":"9104-135","name":"MaterialCategorizationStepperLayout.tsx"}]},{"name":"controls","children":[{"uid":"9104-59","name":"MaterialBooleanControl.tsx"},{"uid":"9104-63","name":"MaterialBooleanToggleControl.tsx"},{"uid":"9104-65","name":"MaterialInputControl.tsx"},{"uid":"9104-69","name":"MaterialEnumControl.tsx"},{"uid":"9104-71","name":"MaterialNativeControl.tsx"},{"uid":"9104-73","name":"MaterialDateControl.tsx"},{"uid":"9104-75","name":"MaterialDateTimeControl.tsx"},{"uid":"9104-77","name":"MaterialTimeControl.tsx"},{"uid":"9104-79","name":"MaterialSliderControl.tsx"},{"uid":"9104-81","name":"MaterialRadioGroup.tsx"},{"uid":"9104-83","name":"MaterialRadioGroupControl.tsx"},{"uid":"9104-85","name":"MaterialIntegerControl.tsx"},{"uid":"9104-87","name":"MaterialNumberControl.tsx"},{"uid":"9104-89","name":"MaterialTextControl.tsx"},{"uid":"9104-91","name":"MaterialAnyOfStringOrEnumControl.tsx"},{"uid":"9104-93","name":"MaterialOneOfEnumControl.tsx"},{"uid":"9104-95","name":"MaterialOneOfRadioGroupControl.tsx"},{"uid":"9104-97","name":"index.ts"}]},{"name":"cells","children":[{"uid":"9104-113","name":"MaterialBooleanCell.tsx"},{"uid":"9104-115","name":"MaterialBooleanToggleCell.tsx"},{"uid":"9104-117","name":"MaterialDateCell.tsx"},{"uid":"9104-119","name":"MaterialEnumCell.tsx"},{"uid":"9104-121","name":"MaterialIntegerCell.tsx"},{"uid":"9104-123","name":"MaterialNumberCell.tsx"},{"uid":"9104-125","name":"MaterialNumberFormatCell.tsx"},{"uid":"9104-127","name":"MaterialOneOfEnumCell.tsx"},{"uid":"9104-129","name":"MaterialTextCell.tsx"},{"uid":"9104-131","name":"MaterialTimeCell.tsx"},{"uid":"9104-133","name":"CustomizableCells.ts"}]},{"uid":"9104-137","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"9104-1":{"renderedLength":212,"gzipLength":0,"brotliLength":0,"mainUid":"9104-0"},"9104-3":{"renderedLength":393,"gzipLength":0,"brotliLength":0,"mainUid":"9104-2"},"9104-5":{"renderedLength":1249,"gzipLength":0,"brotliLength":0,"mainUid":"9104-4"},"9104-7":{"renderedLength":7557,"gzipLength":0,"brotliLength":0,"mainUid":"9104-6"},"9104-9":{"renderedLength":834,"gzipLength":0,"brotliLength":0,"mainUid":"9104-8"},"9104-11":{"renderedLength":1170,"gzipLength":0,"brotliLength":0,"mainUid":"9104-10"},"9104-13":{"renderedLength":829,"gzipLength":0,"brotliLength":0,"mainUid":"9104-12"},"9104-15":{"renderedLength":1014,"gzipLength":0,"brotliLength":0,"mainUid":"9104-14"},"9104-17":{"renderedLength":722,"gzipLength":0,"brotliLength":0,"mainUid":"9104-16"},"9104-19":{"renderedLength":1268,"gzipLength":0,"brotliLength":0,"mainUid":"9104-18"},"9104-21":{"renderedLength":2824,"gzipLength":0,"brotliLength":0,"mainUid":"9104-20"},"9104-23":{"renderedLength":508,"gzipLength":0,"brotliLength":0,"mainUid":"9104-22"},"9104-25":{"renderedLength":1389,"gzipLength":0,"brotliLength":0,"mainUid":"9104-24"},"9104-27":{"renderedLength":1114,"gzipLength":0,"brotliLength":0,"mainUid":"9104-26"},"9104-29":{"renderedLength":848,"gzipLength":0,"brotliLength":0,"mainUid":"9104-28"},"9104-31":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"mainUid":"9104-30"},"9104-33":{"renderedLength":49,"gzipLength":0,"brotliLength":0,"mainUid":"9104-32"},"9104-35":{"renderedLength":929,"gzipLength":0,"brotliLength":0,"mainUid":"9104-34"},"9104-37":{"renderedLength":722,"gzipLength":0,"brotliLength":0,"mainUid":"9104-36"},"9104-39":{"renderedLength":717,"gzipLength":0,"brotliLength":0,"mainUid":"9104-38"},"9104-41":{"renderedLength":1059,"gzipLength":0,"brotliLength":0,"mainUid":"9104-40"},"9104-43":{"renderedLength":2104,"gzipLength":0,"brotliLength":0,"mainUid":"9104-42"},"9104-45":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"mainUid":"9104-44"},"9104-47":{"renderedLength":1844,"gzipLength":0,"brotliLength":0,"mainUid":"9104-46"},"9104-49":{"renderedLength":98,"gzipLength":0,"brotliLength":0,"mainUid":"9104-48"},"9104-51":{"renderedLength":331,"gzipLength":0,"brotliLength":0,"mainUid":"9104-50"},"9104-53":{"renderedLength":1175,"gzipLength":0,"brotliLength":0,"mainUid":"9104-52"},"9104-55":{"renderedLength":746,"gzipLength":0,"brotliLength":0,"mainUid":"9104-54"},"9104-57":{"renderedLength":2475,"gzipLength":0,"brotliLength":0,"mainUid":"9104-56"},"9104-59":{"renderedLength":701,"gzipLength":0,"brotliLength":0,"mainUid":"9104-58"},"9104-61":{"renderedLength":504,"gzipLength":0,"brotliLength":0,"mainUid":"9104-60"},"9104-63":{"renderedLength":754,"gzipLength":0,"brotliLength":0,"mainUid":"9104-62"},"9104-65":{"renderedLength":1405,"gzipLength":0,"brotliLength":0,"mainUid":"9104-64"},"9104-67":{"renderedLength":2223,"gzipLength":0,"brotliLength":0,"mainUid":"9104-66"},"9104-69":{"renderedLength":633,"gzipLength":0,"brotliLength":0,"mainUid":"9104-68"},"9104-71":{"renderedLength":1280,"gzipLength":0,"brotliLength":0,"mainUid":"9104-70"},"9104-73":{"renderedLength":2608,"gzipLength":0,"brotliLength":0,"mainUid":"9104-72"},"9104-75":{"renderedLength":2700,"gzipLength":0,"brotliLength":0,"mainUid":"9104-74"},"9104-77":{"renderedLength":2642,"gzipLength":0,"brotliLength":0,"mainUid":"9104-76"},"9104-79":{"renderedLength":2226,"gzipLength":0,"brotliLength":0,"mainUid":"9104-78"},"9104-81":{"renderedLength":1379,"gzipLength":0,"brotliLength":0,"mainUid":"9104-80"},"9104-83":{"renderedLength":315,"gzipLength":0,"brotliLength":0,"mainUid":"9104-82"},"9104-85":{"renderedLength":290,"gzipLength":0,"brotliLength":0,"mainUid":"9104-84"},"9104-87":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"mainUid":"9104-86"},"9104-89":{"renderedLength":274,"gzipLength":0,"brotliLength":0,"mainUid":"9104-88"},"9104-91":{"renderedLength":2541,"gzipLength":0,"brotliLength":0,"mainUid":"9104-90"},"9104-93":{"renderedLength":663,"gzipLength":0,"brotliLength":0,"mainUid":"9104-92"},"9104-95":{"renderedLength":345,"gzipLength":0,"brotliLength":0,"mainUid":"9104-94"},"9104-97":{"renderedLength":831,"gzipLength":0,"brotliLength":0,"mainUid":"9104-96"},"9104-99":{"renderedLength":1183,"gzipLength":0,"brotliLength":0,"mainUid":"9104-98"},"9104-101":{"renderedLength":598,"gzipLength":0,"brotliLength":0,"mainUid":"9104-100"},"9104-103":{"renderedLength":607,"gzipLength":0,"brotliLength":0,"mainUid":"9104-102"},"9104-105":{"renderedLength":1961,"gzipLength":0,"brotliLength":0,"mainUid":"9104-104"},"9104-107":{"renderedLength":5188,"gzipLength":0,"brotliLength":0,"mainUid":"9104-106"},"9104-109":{"renderedLength":1576,"gzipLength":0,"brotliLength":0,"mainUid":"9104-108"},"9104-111":{"renderedLength":506,"gzipLength":0,"brotliLength":0,"mainUid":"9104-110"},"9104-113":{"renderedLength":252,"gzipLength":0,"brotliLength":0,"mainUid":"9104-112"},"9104-115":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"mainUid":"9104-114"},"9104-117":{"renderedLength":569,"gzipLength":0,"brotliLength":0,"mainUid":"9104-116"},"9104-119":{"renderedLength":264,"gzipLength":0,"brotliLength":0,"mainUid":"9104-118"},"9104-121":{"renderedLength":242,"gzipLength":0,"brotliLength":0,"mainUid":"9104-120"},"9104-123":{"renderedLength":236,"gzipLength":0,"brotliLength":0,"mainUid":"9104-122"},"9104-125":{"renderedLength":270,"gzipLength":0,"brotliLength":0,"mainUid":"9104-124"},"9104-127":{"renderedLength":294,"gzipLength":0,"brotliLength":0,"mainUid":"9104-126"},"9104-129":{"renderedLength":226,"gzipLength":0,"brotliLength":0,"mainUid":"9104-128"},"9104-131":{"renderedLength":224,"gzipLength":0,"brotliLength":0,"mainUid":"9104-130"},"9104-133":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"9104-132"},"9104-135":{"renderedLength":2458,"gzipLength":0,"brotliLength":0,"mainUid":"9104-134"},"9104-137":{"renderedLength":3369,"gzipLength":0,"brotliLength":0,"mainUid":"9104-136"}},"nodeMetas":{"9104-0":{"id":"/src/complex/NoBorderTableCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-1"},"imported":[{"uid":"9104-166"},{"uid":"9104-146"},{"uid":"9104-144"}],"importedBy":[{"uid":"9104-6"},{"uid":"9104-4"}]},"9104-2":{"id":"/src/complex/ValidationIcon.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-3"},"imported":[{"uid":"9104-144"},{"uid":"9104-167"},{"uid":"9104-146"}],"importedBy":[{"uid":"9104-52"},{"uid":"9104-4"}]},"9104-4":{"id":"/src/complex/TableToolbar.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-5"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-146"},{"uid":"9104-165"},{"uid":"9104-2"},{"uid":"9104-0"}],"importedBy":[{"uid":"9104-6"}]},"9104-6":{"id":"/src/complex/MaterialTableControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-7"},"imported":[{"uid":"9104-149"},{"uid":"9104-159"},{"uid":"9104-147"},{"uid":"9104-160"},{"uid":"9104-151"},{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-143"},{"uid":"9104-161"},{"uid":"9104-162"},{"uid":"9104-163"},{"uid":"9104-0"},{"uid":"9104-4"},{"uid":"9104-145"}],"importedBy":[{"uid":"9104-10"}]},"9104-8":{"id":"/src/complex/DeleteDialog.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-9"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"}],"importedBy":[{"uid":"9104-10"}]},"9104-10":{"id":"/src/complex/MaterialArrayControlRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-11"},"imported":[{"uid":"9104-144"},{"uid":"9104-147"},{"uid":"9104-6"},{"uid":"9104-146"},{"uid":"9104-8"}],"importedBy":[{"uid":"9104-48"}]},"9104-12":{"id":"/src/complex/MaterialObjectRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-13"},"imported":[{"uid":"9104-149"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-144"}],"importedBy":[{"uid":"9104-48"}]},"9104-14":{"id":"/src/complex/MaterialAllOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-15"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-143"},{"uid":"9104-147"}],"importedBy":[{"uid":"9104-48"}]},"9104-16":{"id":"/src/complex/CombinatorProperties.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-17"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-164"}],"importedBy":[{"uid":"9104-18"},{"uid":"9104-20"}]},"9104-18":{"id":"/src/complex/MaterialAnyOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-19"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-16"}],"importedBy":[{"uid":"9104-48"}]},"9104-20":{"id":"/src/complex/MaterialOneOfRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-21"},"imported":[{"uid":"9104-144"},{"uid":"9104-149"},{"uid":"9104-143"},{"uid":"9104-146"},{"uid":"9104-147"},{"uid":"9104-16"}],"importedBy":[{"uid":"9104-48"}]},"9104-22":{"id":"/src/mui-controls/MuiCheckbox.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-23"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-145"}],"importedBy":[{"uid":"9104-141"},{"uid":"9104-58"},{"uid":"9104-112"}]},"9104-24":{"id":"/src/util/datejs.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-25"},"imported":[{"uid":"9104-146"},{"uid":"9104-156"},{"uid":"9104-157"},{"uid":"9104-144"}],"importedBy":[{"uid":"9104-142"}]},"9104-26":{"id":"/src/util/layout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-27"},"imported":[{"uid":"9104-149"},{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"}],"importedBy":[{"uid":"9104-134"},{"uid":"9104-142"},{"uid":"9104-98"},{"uid":"9104-100"},{"uid":"9104-102"},{"uid":"9104-104"}]},"9104-28":{"id":"/src/util/debounce.ts","moduleParts":{"jsonforms-react-material.esm.js":"9104-29"},"imported":[{"uid":"9104-158"},{"uid":"9104-144"}],"importedBy":[{"uid":"9104-142"}]},"9104-30":{"id":"/src/util/focus.ts","moduleParts":{"jsonforms-react-material.esm.js":"9104-31"},"imported":[{"uid":"9104-144"}],"importedBy":[{"uid":"9104-142"},{"uid":"9104-66"}]},"9104-32":{"id":"/src/util/i18nDefaults.ts","moduleParts":{"jsonforms-react-material.esm.js":"9104-33"},"imported":[],"importedBy":[{"uid":"9104-142"}]},"9104-34":{"id":"/src/mui-controls/MuiSelect.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-35"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-141"},{"uid":"9104-68"},{"uid":"9104-92"},{"uid":"9104-118"},{"uid":"9104-126"}]},"9104-36":{"id":"/src/mui-controls/MuiInputInteger.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-37"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-141"},{"uid":"9104-84"},{"uid":"9104-120"}]},"9104-38":{"id":"/src/mui-controls/MuiInputNumber.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-39"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-141"},{"uid":"9104-86"},{"uid":"9104-122"}]},"9104-40":{"id":"/src/mui-controls/MuiInputNumberFormat.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-41"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-141"},{"uid":"9104-124"}]},"9104-42":{"id":"/src/mui-controls/MuiInputText.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-43"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-155"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-141"},{"uid":"9104-88"},{"uid":"9104-128"}]},"9104-44":{"id":"/src/mui-controls/MuiInputTime.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-45"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-141"},{"uid":"9104-130"}]},"9104-46":{"id":"/src/complex/MaterialEnumArrayRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-47"},"imported":[{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-141"},{"uid":"9104-146"},{"uid":"9104-149"},{"uid":"9104-144"}],"importedBy":[{"uid":"9104-48"}]},"9104-48":{"id":"/src/complex/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"9104-49"},"imported":[{"uid":"9104-143"},{"uid":"9104-10"},{"uid":"9104-12"},{"uid":"9104-14"},{"uid":"9104-18"},{"uid":"9104-20"},{"uid":"9104-46"}],"importedBy":[{"uid":"9104-136"}]},"9104-50":{"id":"/src/additional/MaterialLabelRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-51"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"}],"importedBy":[{"uid":"9104-138"}]},"9104-52":{"id":"/src/layouts/ArrayToolbar.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-53"},"imported":[{"uid":"9104-146"},{"uid":"9104-165"},{"uid":"9104-144"},{"uid":"9104-2"}],"importedBy":[{"uid":"9104-56"},{"uid":"9104-108"}]},"9104-54":{"id":"/src/additional/ListWithDetailMasterItem.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-55"},"imported":[{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-161"},{"uid":"9104-144"}],"importedBy":[{"uid":"9104-56"}]},"9104-56":{"id":"/src/additional/MaterialListWithDetailRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-57"},"imported":[{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-150"},{"uid":"9104-151"},{"uid":"9104-144"},{"uid":"9104-52"},{"uid":"9104-54"},{"uid":"9104-145"}],"importedBy":[{"uid":"9104-138"}]},"9104-58":{"id":"/src/controls/MaterialBooleanControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-59"},"imported":[{"uid":"9104-149"},{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-22"}],"importedBy":[{"uid":"9104-96"}]},"9104-60":{"id":"/src/mui-controls/MuiToggle.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-61"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-145"}],"importedBy":[{"uid":"9104-62"},{"uid":"9104-114"}]},"9104-62":{"id":"/src/controls/MaterialBooleanToggleControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-63"},"imported":[{"uid":"9104-149"},{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-60"}],"importedBy":[{"uid":"9104-96"}]},"9104-64":{"id":"/src/controls/MaterialInputControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-65"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-96"},{"uid":"9104-68"},{"uid":"9104-84"},{"uid":"9104-86"},{"uid":"9104-88"},{"uid":"9104-90"},{"uid":"9104-92"}]},"9104-66":{"id":"/src/mui-controls/MuiAutocomplete.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-67"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-30"}],"importedBy":[{"uid":"9104-68"},{"uid":"9104-92"}]},"9104-68":{"id":"/src/controls/MaterialEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-69"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-34"},{"uid":"9104-145"},{"uid":"9104-64"},{"uid":"9104-66"}],"importedBy":[{"uid":"9104-96"}]},"9104-70":{"id":"/src/controls/MaterialNativeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-71"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-146"},{"uid":"9104-147"},{"uid":"9104-145"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-96"}]},"9104-72":{"id":"/src/controls/MaterialDateControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-73"},"imported":[{"uid":"9104-145"},{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-152"},{"uid":"9104-153"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-96"}]},"9104-74":{"id":"/src/controls/MaterialDateTimeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-75"},"imported":[{"uid":"9104-144"},{"uid":"9104-145"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-152"},{"uid":"9104-153"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-96"}]},"9104-76":{"id":"/src/controls/MaterialTimeControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-77"},"imported":[{"uid":"9104-144"},{"uid":"9104-145"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-152"},{"uid":"9104-153"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-96"}]},"9104-78":{"id":"/src/controls/MaterialSliderControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-79"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-96"}]},"9104-80":{"id":"/src/controls/MaterialRadioGroup.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-81"},"imported":[{"uid":"9104-145"},{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-146"},{"uid":"9104-142"}],"importedBy":[{"uid":"9104-82"},{"uid":"9104-94"}]},"9104-82":{"id":"/src/controls/MaterialRadioGroupControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-83"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-80"}],"importedBy":[{"uid":"9104-96"}]},"9104-84":{"id":"/src/controls/MaterialIntegerControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-85"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-36"},{"uid":"9104-64"},{"uid":"9104-147"}],"importedBy":[{"uid":"9104-96"}]},"9104-86":{"id":"/src/controls/MaterialNumberControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-87"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-38"},{"uid":"9104-64"},{"uid":"9104-147"}],"importedBy":[{"uid":"9104-96"}]},"9104-88":{"id":"/src/controls/MaterialTextControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-89"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-42"},{"uid":"9104-64"}],"importedBy":[{"uid":"9104-96"}]},"9104-90":{"id":"/src/controls/MaterialAnyOfStringOrEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-91"},"imported":[{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-146"},{"uid":"9104-145"},{"uid":"9104-144"},{"uid":"9104-142"},{"uid":"9104-64"}],"importedBy":[{"uid":"9104-96"}]},"9104-92":{"id":"/src/controls/MaterialOneOfEnumControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-93"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-66"},{"uid":"9104-34"},{"uid":"9104-64"},{"uid":"9104-145"}],"importedBy":[{"uid":"9104-96"}]},"9104-94":{"id":"/src/controls/MaterialOneOfRadioGroupControl.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-95"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-80"}],"importedBy":[{"uid":"9104-96"}]},"9104-96":{"id":"/src/controls/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"9104-97"},"imported":[{"uid":"9104-58"},{"uid":"9104-62"},{"uid":"9104-68"},{"uid":"9104-70"},{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"},{"uid":"9104-78"},{"uid":"9104-82"},{"uid":"9104-84"},{"uid":"9104-86"},{"uid":"9104-88"},{"uid":"9104-90"},{"uid":"9104-92"},{"uid":"9104-94"},{"uid":"9104-64"}],"importedBy":[{"uid":"9104-136"}]},"9104-98":{"id":"/src/layouts/MaterialGroupLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-99"},"imported":[{"uid":"9104-149"},{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-143"},{"uid":"9104-26"},{"uid":"9104-147"}],"importedBy":[{"uid":"9104-139"}]},"9104-100":{"id":"/src/layouts/MaterialHorizontalLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-101"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-26"}],"importedBy":[{"uid":"9104-139"}]},"9104-102":{"id":"/src/layouts/MaterialVerticalLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-103"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-26"},{"uid":"9104-147"}],"importedBy":[{"uid":"9104-139"}]},"9104-104":{"id":"/src/layouts/MaterialCategorizationLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-105"},"imported":[{"uid":"9104-144"},{"uid":"9104-146"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-26"}],"importedBy":[{"uid":"9104-139"}]},"9104-106":{"id":"/src/layouts/ExpandPanelRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-107"},"imported":[{"uid":"9104-145"},{"uid":"9104-168"},{"uid":"9104-144"},{"uid":"9104-147"},{"uid":"9104-143"},{"uid":"9104-146"},{"uid":"9104-169"},{"uid":"9104-161"},{"uid":"9104-163"},{"uid":"9104-162"}],"importedBy":[{"uid":"9104-108"}]},"9104-108":{"id":"/src/layouts/MaterialArrayLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-109"},"imported":[{"uid":"9104-151"},{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-150"},{"uid":"9104-52"},{"uid":"9104-106"},{"uid":"9104-145"}],"importedBy":[{"uid":"9104-110"}]},"9104-110":{"id":"/src/layouts/MaterialArrayLayoutRenderer.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-111"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-146"},{"uid":"9104-108"},{"uid":"9104-147"}],"importedBy":[{"uid":"9104-139"}]},"9104-112":{"id":"/src/cells/MaterialBooleanCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-113"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-22"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-114":{"id":"/src/cells/MaterialBooleanToggleCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-115"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-60"}],"importedBy":[{"uid":"9104-140"}]},"9104-116":{"id":"/src/cells/MaterialDateCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-117"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-154"},{"uid":"9104-145"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-118":{"id":"/src/cells/MaterialEnumCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-119"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-34"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-120":{"id":"/src/cells/MaterialIntegerCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-121"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-36"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-122":{"id":"/src/cells/MaterialNumberCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-123"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-38"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-124":{"id":"/src/cells/MaterialNumberFormatCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-125"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-40"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-126":{"id":"/src/cells/MaterialOneOfEnumCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-127"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-34"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-128":{"id":"/src/cells/MaterialTextCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-129"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-42"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-130":{"id":"/src/cells/MaterialTimeCell.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-131"},"imported":[{"uid":"9104-144"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-44"}],"importedBy":[{"uid":"9104-140"},{"uid":"9104-132"}]},"9104-132":{"id":"/src/cells/CustomizableCells.ts","moduleParts":{"jsonforms-react-material.esm.js":"9104-133"},"imported":[{"uid":"9104-112"},{"uid":"9104-116"},{"uid":"9104-118"},{"uid":"9104-120"},{"uid":"9104-122"},{"uid":"9104-124"},{"uid":"9104-126"},{"uid":"9104-128"},{"uid":"9104-130"}],"importedBy":[{"uid":"9104-140"}]},"9104-134":{"id":"/src/layouts/MaterialCategorizationStepperLayout.tsx","moduleParts":{"jsonforms-react-material.esm.js":"9104-135"},"imported":[{"uid":"9104-144"},{"uid":"9104-145"},{"uid":"9104-146"},{"uid":"9104-143"},{"uid":"9104-147"},{"uid":"9104-26"}],"importedBy":[{"uid":"9104-136"}]},"9104-136":{"id":"/src/index.ts","moduleParts":{"jsonforms-react-material.esm.js":"9104-137"},"imported":[{"uid":"9104-48"},{"uid":"9104-138"},{"uid":"9104-96"},{"uid":"9104-139"},{"uid":"9104-140"},{"uid":"9104-134"},{"uid":"9104-141"},{"uid":"9104-142"}],"importedBy":[],"isEntry":true},"9104-138":{"id":"/src/additional/index.ts","moduleParts":{},"imported":[{"uid":"9104-50"},{"uid":"9104-56"}],"importedBy":[{"uid":"9104-136"}]},"9104-139":{"id":"/src/layouts/index.ts","moduleParts":{},"imported":[{"uid":"9104-98"},{"uid":"9104-100"},{"uid":"9104-102"},{"uid":"9104-104"},{"uid":"9104-110"}],"importedBy":[{"uid":"9104-136"}]},"9104-140":{"id":"/src/cells/index.ts","moduleParts":{},"imported":[{"uid":"9104-112"},{"uid":"9104-114"},{"uid":"9104-116"},{"uid":"9104-118"},{"uid":"9104-120"},{"uid":"9104-122"},{"uid":"9104-124"},{"uid":"9104-126"},{"uid":"9104-128"},{"uid":"9104-130"},{"uid":"9104-132"}],"importedBy":[{"uid":"9104-136"}]},"9104-141":{"id":"/src/mui-controls/index.ts","moduleParts":{},"imported":[{"uid":"9104-22"},{"uid":"9104-34"},{"uid":"9104-36"},{"uid":"9104-38"},{"uid":"9104-40"},{"uid":"9104-42"},{"uid":"9104-44"}],"importedBy":[{"uid":"9104-136"},{"uid":"9104-46"}]},"9104-142":{"id":"/src/util/index.ts","moduleParts":{},"imported":[{"uid":"9104-24"},{"uid":"9104-26"},{"uid":"9104-148"},{"uid":"9104-28"},{"uid":"9104-30"},{"uid":"9104-32"}],"importedBy":[{"uid":"9104-136"},{"uid":"9104-70"},{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"},{"uid":"9104-78"},{"uid":"9104-90"},{"uid":"9104-64"},{"uid":"9104-34"},{"uid":"9104-36"},{"uid":"9104-38"},{"uid":"9104-40"},{"uid":"9104-42"},{"uid":"9104-44"},{"uid":"9104-80"}]},"9104-143":{"id":"@jsonforms/core","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-48"},{"uid":"9104-134"},{"uid":"9104-12"},{"uid":"9104-14"},{"uid":"9104-18"},{"uid":"9104-20"},{"uid":"9104-46"},{"uid":"9104-50"},{"uid":"9104-56"},{"uid":"9104-58"},{"uid":"9104-62"},{"uid":"9104-68"},{"uid":"9104-70"},{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"},{"uid":"9104-78"},{"uid":"9104-82"},{"uid":"9104-84"},{"uid":"9104-86"},{"uid":"9104-88"},{"uid":"9104-90"},{"uid":"9104-92"},{"uid":"9104-94"},{"uid":"9104-64"},{"uid":"9104-98"},{"uid":"9104-100"},{"uid":"9104-102"},{"uid":"9104-104"},{"uid":"9104-110"},{"uid":"9104-112"},{"uid":"9104-114"},{"uid":"9104-116"},{"uid":"9104-118"},{"uid":"9104-120"},{"uid":"9104-122"},{"uid":"9104-124"},{"uid":"9104-126"},{"uid":"9104-128"},{"uid":"9104-130"},{"uid":"9104-26"},{"uid":"9104-6"},{"uid":"9104-16"},{"uid":"9104-66"},{"uid":"9104-80"},{"uid":"9104-108"},{"uid":"9104-4"},{"uid":"9104-106"}],"isExternal":true},"9104-144":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-134"},{"uid":"9104-10"},{"uid":"9104-12"},{"uid":"9104-14"},{"uid":"9104-18"},{"uid":"9104-20"},{"uid":"9104-46"},{"uid":"9104-50"},{"uid":"9104-56"},{"uid":"9104-58"},{"uid":"9104-62"},{"uid":"9104-68"},{"uid":"9104-70"},{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"},{"uid":"9104-78"},{"uid":"9104-82"},{"uid":"9104-84"},{"uid":"9104-86"},{"uid":"9104-88"},{"uid":"9104-90"},{"uid":"9104-92"},{"uid":"9104-94"},{"uid":"9104-64"},{"uid":"9104-98"},{"uid":"9104-100"},{"uid":"9104-102"},{"uid":"9104-104"},{"uid":"9104-110"},{"uid":"9104-112"},{"uid":"9104-114"},{"uid":"9104-116"},{"uid":"9104-118"},{"uid":"9104-120"},{"uid":"9104-122"},{"uid":"9104-124"},{"uid":"9104-126"},{"uid":"9104-128"},{"uid":"9104-130"},{"uid":"9104-26"},{"uid":"9104-22"},{"uid":"9104-34"},{"uid":"9104-36"},{"uid":"9104-38"},{"uid":"9104-40"},{"uid":"9104-42"},{"uid":"9104-44"},{"uid":"9104-24"},{"uid":"9104-28"},{"uid":"9104-30"},{"uid":"9104-6"},{"uid":"9104-8"},{"uid":"9104-16"},{"uid":"9104-52"},{"uid":"9104-54"},{"uid":"9104-60"},{"uid":"9104-66"},{"uid":"9104-80"},{"uid":"9104-108"},{"uid":"9104-0"},{"uid":"9104-4"},{"uid":"9104-2"},{"uid":"9104-106"}],"isExternal":true},"9104-145":{"id":"lodash/merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-134"},{"uid":"9104-56"},{"uid":"9104-68"},{"uid":"9104-70"},{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"},{"uid":"9104-78"},{"uid":"9104-90"},{"uid":"9104-92"},{"uid":"9104-64"},{"uid":"9104-116"},{"uid":"9104-22"},{"uid":"9104-34"},{"uid":"9104-36"},{"uid":"9104-38"},{"uid":"9104-40"},{"uid":"9104-42"},{"uid":"9104-44"},{"uid":"9104-6"},{"uid":"9104-60"},{"uid":"9104-66"},{"uid":"9104-80"},{"uid":"9104-108"},{"uid":"9104-106"}],"isExternal":true},"9104-146":{"id":"@mui/material","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-134"},{"uid":"9104-10"},{"uid":"9104-12"},{"uid":"9104-14"},{"uid":"9104-18"},{"uid":"9104-20"},{"uid":"9104-46"},{"uid":"9104-50"},{"uid":"9104-56"},{"uid":"9104-58"},{"uid":"9104-62"},{"uid":"9104-70"},{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"},{"uid":"9104-78"},{"uid":"9104-90"},{"uid":"9104-64"},{"uid":"9104-98"},{"uid":"9104-104"},{"uid":"9104-110"},{"uid":"9104-26"},{"uid":"9104-22"},{"uid":"9104-34"},{"uid":"9104-36"},{"uid":"9104-38"},{"uid":"9104-40"},{"uid":"9104-42"},{"uid":"9104-44"},{"uid":"9104-24"},{"uid":"9104-6"},{"uid":"9104-8"},{"uid":"9104-52"},{"uid":"9104-54"},{"uid":"9104-60"},{"uid":"9104-66"},{"uid":"9104-80"},{"uid":"9104-0"},{"uid":"9104-4"},{"uid":"9104-2"},{"uid":"9104-106"}],"isExternal":true},"9104-147":{"id":"@jsonforms/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-134"},{"uid":"9104-10"},{"uid":"9104-12"},{"uid":"9104-14"},{"uid":"9104-18"},{"uid":"9104-20"},{"uid":"9104-46"},{"uid":"9104-50"},{"uid":"9104-56"},{"uid":"9104-58"},{"uid":"9104-62"},{"uid":"9104-68"},{"uid":"9104-70"},{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"},{"uid":"9104-78"},{"uid":"9104-82"},{"uid":"9104-84"},{"uid":"9104-86"},{"uid":"9104-88"},{"uid":"9104-90"},{"uid":"9104-92"},{"uid":"9104-94"},{"uid":"9104-98"},{"uid":"9104-100"},{"uid":"9104-102"},{"uid":"9104-104"},{"uid":"9104-110"},{"uid":"9104-112"},{"uid":"9104-114"},{"uid":"9104-116"},{"uid":"9104-118"},{"uid":"9104-120"},{"uid":"9104-122"},{"uid":"9104-124"},{"uid":"9104-126"},{"uid":"9104-128"},{"uid":"9104-130"},{"uid":"9104-26"},{"uid":"9104-6"},{"uid":"9104-16"},{"uid":"9104-54"},{"uid":"9104-106"}],"isExternal":true},"9104-148":{"id":"/src/util/theme.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-142"}]},"9104-149":{"id":"lodash/isEmpty","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-12"},{"uid":"9104-20"},{"uid":"9104-46"},{"uid":"9104-58"},{"uid":"9104-62"},{"uid":"9104-98"},{"uid":"9104-26"},{"uid":"9104-6"}],"isExternal":true},"9104-150":{"id":"lodash/map","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-56"},{"uid":"9104-108"}],"isExternal":true},"9104-151":{"id":"lodash/range","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-56"},{"uid":"9104-6"},{"uid":"9104-108"}],"isExternal":true},"9104-152":{"id":"@mui/x-date-pickers","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"}],"isExternal":true},"9104-153":{"id":"@mui/x-date-pickers/AdapterDayjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-72"},{"uid":"9104-74"},{"uid":"9104-76"}],"isExternal":true},"9104-154":{"id":"@mui/material/Input","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-116"}],"isExternal":true},"9104-155":{"id":"@mui/icons-material/Close","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-42"}],"isExternal":true},"9104-156":{"id":"dayjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-24"}],"isExternal":true},"9104-157":{"id":"dayjs/plugin/customParseFormat","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-24"}],"isExternal":true},"9104-158":{"id":"lodash/debounce","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-28"}],"isExternal":true},"9104-159":{"id":"lodash/union","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-6"}],"isExternal":true},"9104-160":{"id":"lodash/startCase","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-6"}],"isExternal":true},"9104-161":{"id":"@mui/icons-material/Delete","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-6"},{"uid":"9104-54"},{"uid":"9104-106"}],"isExternal":true},"9104-162":{"id":"@mui/icons-material/ArrowDownward","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-6"},{"uid":"9104-106"}],"isExternal":true},"9104-163":{"id":"@mui/icons-material/ArrowUpward","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-6"},{"uid":"9104-106"}],"isExternal":true},"9104-164":{"id":"lodash/omit","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-16"}],"isExternal":true},"9104-165":{"id":"@mui/icons-material/Add","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-52"},{"uid":"9104-4"}],"isExternal":true},"9104-166":{"id":"@mui/material/styles","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-0"}],"isExternal":true},"9104-167":{"id":"@mui/icons-material/ErrorOutline","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-2"}],"isExternal":true},"9104-168":{"id":"lodash/get","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-106"}],"isExternal":true},"9104-169":{"id":"@mui/icons-material/ExpandMore","moduleParts":{},"imported":[],"importedBy":[{"uid":"9104-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;
|
|
@@ -209,10 +209,10 @@ describe('Material date time control', () => {
|
|
|
209
209
|
</JsonFormsStateProvider>
|
|
210
210
|
);
|
|
211
211
|
const input = wrapper.find('input').first();
|
|
212
|
-
(input.getDOMNode() as HTMLInputElement).value ='1961-12-
|
|
212
|
+
(input.getDOMNode() as HTMLInputElement).value ='1961-12-12 20:15';
|
|
213
213
|
input.simulate('change', input);
|
|
214
214
|
expect(onChangeData.data.foo).toBe(
|
|
215
|
-
dayjs('1961-12-
|
|
215
|
+
dayjs('1961-12-12 20:15').format()
|
|
216
216
|
);
|
|
217
217
|
});
|
|
218
218
|
|
|
@@ -377,7 +377,7 @@ describe('Material time control', () => {
|
|
|
377
377
|
const input = wrapper.find('input').first();
|
|
378
378
|
expect(input.props().value).toBe('02-13');
|
|
379
379
|
|
|
380
|
-
(input.getDOMNode() as HTMLInputElement).value = '12
|
|
380
|
+
(input.getDOMNode() as HTMLInputElement).value = '12-01';
|
|
381
381
|
input.simulate('change', input);
|
|
382
382
|
expect(onChangeData.data.foo).toBe('1//12 am');
|
|
383
383
|
});
|