@jsonforms/core 3.0.0-rc.1 → 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/interfaces/categorization.html +18 -0
- package/docs/interfaces/category.html +18 -0
- package/docs/interfaces/grouplayout.html +18 -0
- package/docs/interfaces/internationalizable.html +9 -0
- package/lib/jsonforms-core.cjs.js +2 -2
- package/lib/jsonforms-core.cjs.js.map +1 -1
- package/lib/jsonforms-core.esm.js +2 -2
- package/lib/jsonforms-core.esm.js.map +1 -1
- package/lib/models/uischema.d.ts +3 -3
- package/package.json +2 -2
- package/src/models/uischema.ts +5 -5
- package/stats.html +1 -1
package/lib/models/uischema.d.ts
CHANGED
|
@@ -157,7 +157,7 @@ export interface HorizontalLayout extends Layout {
|
|
|
157
157
|
* A group resembles a vertical layout, but additionally might have a label.
|
|
158
158
|
* This layout is useful when grouping different elements by a certain criteria.
|
|
159
159
|
*/
|
|
160
|
-
export interface GroupLayout extends Layout, Labelable {
|
|
160
|
+
export interface GroupLayout extends Layout, Labelable, Internationalizable {
|
|
161
161
|
type: 'Group';
|
|
162
162
|
}
|
|
163
163
|
/**
|
|
@@ -193,7 +193,7 @@ export interface ControlElement extends UISchemaElement, Scoped, Labelable<strin
|
|
|
193
193
|
/**
|
|
194
194
|
* The category layout.
|
|
195
195
|
*/
|
|
196
|
-
export interface Category extends Layout, Labeled {
|
|
196
|
+
export interface Category extends Layout, Labeled, Internationalizable {
|
|
197
197
|
type: 'Category';
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
@@ -201,7 +201,7 @@ export interface Category extends Layout, Labeled {
|
|
|
201
201
|
* A child element may either be itself a Categorization or a Category, hence
|
|
202
202
|
* the categorization element can be used to represent recursive structures like trees.
|
|
203
203
|
*/
|
|
204
|
-
export interface Categorization extends UISchemaElement, Labeled {
|
|
204
|
+
export interface Categorization extends UISchemaElement, Labeled, Internationalizable {
|
|
205
205
|
type: 'Categorization';
|
|
206
206
|
/**
|
|
207
207
|
* The child elements of this categorization which are either of type
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsonforms/core",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Core module of JSON Forms",
|
|
5
5
|
"repository": "https://github.com/eclipsesource/jsonforms",
|
|
6
6
|
"bugs": "https://github.com/eclipsesource/jsonforms/issues",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"typedoc": "^0.19.2",
|
|
89
89
|
"typescript": "4.2.3"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "20e9e0fd72bb388611d7387e1f533d66b7839041"
|
|
92
92
|
}
|
package/src/models/uischema.ts
CHANGED
|
@@ -207,7 +207,7 @@ export interface HorizontalLayout extends Layout {
|
|
|
207
207
|
* A group resembles a vertical layout, but additionally might have a label.
|
|
208
208
|
* This layout is useful when grouping different elements by a certain criteria.
|
|
209
209
|
*/
|
|
210
|
-
export interface GroupLayout extends Layout, Labelable {
|
|
210
|
+
export interface GroupLayout extends Layout, Labelable, Internationalizable {
|
|
211
211
|
type: 'Group';
|
|
212
212
|
}
|
|
213
213
|
|
|
@@ -247,7 +247,7 @@ export interface ControlElement extends UISchemaElement, Scoped, Labelable<strin
|
|
|
247
247
|
/**
|
|
248
248
|
* The category layout.
|
|
249
249
|
*/
|
|
250
|
-
export interface Category extends Layout, Labeled {
|
|
250
|
+
export interface Category extends Layout, Labeled, Internationalizable {
|
|
251
251
|
type: 'Category';
|
|
252
252
|
}
|
|
253
253
|
|
|
@@ -256,7 +256,7 @@ export interface Category extends Layout, Labeled {
|
|
|
256
256
|
* A child element may either be itself a Categorization or a Category, hence
|
|
257
257
|
* the categorization element can be used to represent recursive structures like trees.
|
|
258
258
|
*/
|
|
259
|
-
export interface Categorization extends UISchemaElement, Labeled {
|
|
259
|
+
export interface Categorization extends UISchemaElement, Labeled, Internationalizable {
|
|
260
260
|
type: 'Categorization';
|
|
261
261
|
/**
|
|
262
262
|
* The child elements of this categorization which are either of type
|
|
@@ -275,13 +275,13 @@ export const isLayout = (uischema: UISchemaElement): uischema is Layout =>
|
|
|
275
275
|
(uischema as Layout).elements !== undefined;
|
|
276
276
|
|
|
277
277
|
export const isScopable = (obj: unknown): obj is Scopable =>
|
|
278
|
-
obj && typeof obj === 'object';
|
|
278
|
+
!!obj && typeof obj === 'object';
|
|
279
279
|
|
|
280
280
|
export const isScoped = (obj: unknown): obj is Scoped =>
|
|
281
281
|
isScopable(obj) && typeof obj.scope === 'string';
|
|
282
282
|
|
|
283
283
|
export const isLabelable = (obj: unknown): obj is Labelable =>
|
|
284
|
-
obj && typeof obj === 'object';
|
|
284
|
+
!!obj && typeof obj === 'object';
|
|
285
285
|
|
|
286
286
|
export const isLabeled = <T = never>(obj: unknown): obj is Labeled<T> =>
|
|
287
287
|
isLabelable(obj) && ['string', 'boolean'].includes(typeof obj.label);
|
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-core.esm.js","children":[{"name":"src","children":[{"name":"generators","children":[{"uid":"2f5b-1","name":"schema.ts"},{"uid":"2f5b-59","name":"uischema.ts"},{"uid":"2f5b-61","name":"Generate.ts"}]},{"name":"models","children":[{"uid":"2f5b-3","name":"draft4.ts"},{"uid":"2f5b-5","name":"uischema.ts"}]},{"name":"util","children":[{"uid":"2f5b-7","name":"array.ts"},{"uid":"2f5b-35","name":"path.ts"},{"uid":"2f5b-37","name":"resolvers.ts"},{"uid":"2f5b-39","name":"runtime.ts"},{"uid":"2f5b-41","name":"util.ts"},{"uid":"2f5b-43","name":"label.ts"},{"uid":"2f5b-45","name":"renderer.ts"},{"uid":"2f5b-47","name":"cell.ts"},{"uid":"2f5b-49","name":"combinators.ts"},{"uid":"2f5b-51","name":"ids.ts"},{"uid":"2f5b-53","name":"schema.ts"},{"uid":"2f5b-55","name":"uischema.ts"},{"uid":"2f5b-57","name":"validator.ts"}]},{"name":"reducers","children":[{"uid":"2f5b-9","name":"cells.ts"},{"uid":"2f5b-13","name":"config.ts"},{"uid":"2f5b-15","name":"core.ts"},{"uid":"2f5b-17","name":"default-data.ts"},{"uid":"2f5b-21","name":"i18n.ts"},{"uid":"2f5b-23","name":"renderers.ts"},{"uid":"2f5b-29","name":"uischemas.ts"},{"uid":"2f5b-31","name":"reducers.ts"},{"uid":"2f5b-33","name":"selectors.ts"}]},{"uid":"2f5b-11","name":"configDefault.ts"},{"name":"i18n/i18nUtil.ts","uid":"2f5b-19"},{"name":"testers","children":[{"uid":"2f5b-25","name":"testers.ts"},{"uid":"2f5b-27","name":"index.ts"}]},{"name":"actions","children":[{"uid":"2f5b-63","name":"actions.ts"},{"uid":"2f5b-65","name":"index.ts"}]},{"uid":"2f5b-67","name":"Helpers.ts"},{"uid":"2f5b-69","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"2f5b-1":{"renderedLength":3843,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-0"},"2f5b-3":{"renderedLength":4050,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-2"},"2f5b-5":{"renderedLength":756,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-4"},"2f5b-7":{"renderedLength":421,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-6"},"2f5b-9":{"renderedLength":294,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-8"},"2f5b-11":{"renderedLength":133,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-10"},"2f5b-13":{"renderedLength":322,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-12"},"2f5b-15":{"renderedLength":10156,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-14"},"2f5b-17":{"renderedLength":434,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-16"},"2f5b-19":{"renderedLength":2719,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-18"},"2f5b-21":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-20"},"2f5b-23":{"renderedLength":370,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-22"},"2f5b-25":{"renderedLength":8488,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-24"},"2f5b-27":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-26"},"2f5b-29":{"renderedLength":783,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-28"},"2f5b-31":{"renderedLength":1846,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-30"},"2f5b-33":{"renderedLength":573,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-32"},"2f5b-35":{"renderedLength":1333,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-34"},"2f5b-37":{"renderedLength":3040,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-36"},"2f5b-39":{"renderedLength":3621,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-38"},"2f5b-41":{"renderedLength":1498,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-40"},"2f5b-43":{"renderedLength":1289,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-42"},"2f5b-45":{"renderedLength":14103,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-44"},"2f5b-47":{"renderedLength":2622,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-46"},"2f5b-49":{"renderedLength":671,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-48"},"2f5b-51":{"renderedLength":621,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-50"},"2f5b-53":{"renderedLength":365,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-52"},"2f5b-55":{"renderedLength":609,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-54"},"2f5b-57":{"renderedLength":196,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-56"},"2f5b-59":{"renderedLength":3310,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-58"},"2f5b-61":{"renderedLength":137,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-60"},"2f5b-63":{"renderedLength":3051,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-62"},"2f5b-65":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-64"},"2f5b-67":{"renderedLength":80,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-66"},"2f5b-69":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"2f5b-68"}},"nodeMetas":{"2f5b-0":{"id":"/src/generators/schema.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-1"},"imported":[],"importedBy":[{"uid":"2f5b-70"},{"uid":"2f5b-60"}]},"2f5b-2":{"id":"/src/models/draft4.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-3"},"imported":[],"importedBy":[{"uid":"2f5b-71"}]},"2f5b-4":{"id":"/src/models/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-5"},"imported":[],"importedBy":[{"uid":"2f5b-71"}]},"2f5b-6":{"id":"/src/util/array.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-7"},"imported":[],"importedBy":[{"uid":"2f5b-73"},{"uid":"2f5b-44"}]},"2f5b-8":{"id":"/src/reducers/cells.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-9"},"imported":[{"uid":"2f5b-64"}],"importedBy":[{"uid":"2f5b-72"},{"uid":"2f5b-30"}]},"2f5b-10":{"id":"/src/configDefault.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-11"},"imported":[],"importedBy":[{"uid":"2f5b-12"}]},"2f5b-12":{"id":"/src/reducers/config.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-13"},"imported":[{"uid":"2f5b-85"},{"uid":"2f5b-64"},{"uid":"2f5b-10"}],"importedBy":[{"uid":"2f5b-72"},{"uid":"2f5b-30"}]},"2f5b-14":{"id":"/src/reducers/core.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-15"},"imported":[{"uid":"2f5b-86"},{"uid":"2f5b-87"},{"uid":"2f5b-88"},{"uid":"2f5b-89"},{"uid":"2f5b-90"},{"uid":"2f5b-91"},{"uid":"2f5b-64"},{"uid":"2f5b-73"}],"importedBy":[{"uid":"2f5b-72"},{"uid":"2f5b-30"},{"uid":"2f5b-32"}]},"2f5b-16":{"id":"/src/reducers/default-data.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-17"},"imported":[{"uid":"2f5b-64"}],"importedBy":[{"uid":"2f5b-72"},{"uid":"2f5b-30"},{"uid":"2f5b-32"}]},"2f5b-18":{"id":"/src/i18n/i18nUtil.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-19"},"imported":[{"uid":"2f5b-71"},{"uid":"2f5b-72"},{"uid":"2f5b-73"}],"importedBy":[{"uid":"2f5b-75"}]},"2f5b-20":{"id":"/src/reducers/i18n.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-21"},"imported":[{"uid":"2f5b-75"},{"uid":"2f5b-64"}],"importedBy":[{"uid":"2f5b-72"},{"uid":"2f5b-30"}]},"2f5b-22":{"id":"/src/reducers/renderers.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-23"},"imported":[{"uid":"2f5b-64"}],"importedBy":[{"uid":"2f5b-72"},{"uid":"2f5b-30"}]},"2f5b-24":{"id":"/src/testers/testers.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-25"},"imported":[{"uid":"2f5b-82"},{"uid":"2f5b-88"},{"uid":"2f5b-94"},{"uid":"2f5b-95"},{"uid":"2f5b-96"},{"uid":"2f5b-97"},{"uid":"2f5b-98"},{"uid":"2f5b-99"},{"uid":"2f5b-73"}],"importedBy":[{"uid":"2f5b-26"}]},"2f5b-26":{"id":"/src/testers/index.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-27"},"imported":[{"uid":"2f5b-24"}],"importedBy":[{"uid":"2f5b-68"},{"uid":"2f5b-28"}]},"2f5b-28":{"id":"/src/reducers/uischemas.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-29"},"imported":[{"uid":"2f5b-92"},{"uid":"2f5b-93"},{"uid":"2f5b-64"},{"uid":"2f5b-26"}],"importedBy":[{"uid":"2f5b-72"},{"uid":"2f5b-30"}]},"2f5b-30":{"id":"/src/reducers/reducers.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-31"},"imported":[{"uid":"2f5b-14"},{"uid":"2f5b-16"},{"uid":"2f5b-22"},{"uid":"2f5b-28"},{"uid":"2f5b-20"},{"uid":"2f5b-70"},{"uid":"2f5b-8"},{"uid":"2f5b-12"},{"uid":"2f5b-88"},{"uid":"2f5b-72"}],"importedBy":[{"uid":"2f5b-72"}]},"2f5b-32":{"id":"/src/reducers/selectors.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-33"},"imported":[{"uid":"2f5b-88"},{"uid":"2f5b-14"},{"uid":"2f5b-16"}],"importedBy":[{"uid":"2f5b-72"}]},"2f5b-34":{"id":"/src/util/path.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-35"},"imported":[{"uid":"2f5b-82"},{"uid":"2f5b-101"},{"uid":"2f5b-71"}],"importedBy":[{"uid":"2f5b-73"},{"uid":"2f5b-42"},{"uid":"2f5b-44"},{"uid":"2f5b-36"},{"uid":"2f5b-38"},{"uid":"2f5b-40"}]},"2f5b-36":{"id":"/src/util/resolvers.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-37"},"imported":[{"uid":"2f5b-82"},{"uid":"2f5b-88"},{"uid":"2f5b-34"}],"importedBy":[{"uid":"2f5b-73"},{"uid":"2f5b-38"},{"uid":"2f5b-40"}]},"2f5b-38":{"id":"/src/util/runtime.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-39"},"imported":[{"uid":"2f5b-103"},{"uid":"2f5b-71"},{"uid":"2f5b-36"},{"uid":"2f5b-34"},{"uid":"2f5b-72"}],"importedBy":[{"uid":"2f5b-73"},{"uid":"2f5b-46"},{"uid":"2f5b-44"},{"uid":"2f5b-40"}]},"2f5b-40":{"id":"/src/util/util.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-41"},"imported":[{"uid":"2f5b-82"},{"uid":"2f5b-96"},{"uid":"2f5b-99"},{"uid":"2f5b-102"},{"uid":"2f5b-36"},{"uid":"2f5b-34"},{"uid":"2f5b-38"}],"importedBy":[{"uid":"2f5b-73"},{"uid":"2f5b-46"},{"uid":"2f5b-48"},{"uid":"2f5b-44"}]},"2f5b-42":{"id":"/src/util/label.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-43"},"imported":[{"uid":"2f5b-83"},{"uid":"2f5b-34"}],"importedBy":[{"uid":"2f5b-73"},{"uid":"2f5b-44"}]},"2f5b-44":{"id":"/src/util/renderer.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-45"},"imported":[{"uid":"2f5b-88"},{"uid":"2f5b-71"},{"uid":"2f5b-102"},{"uid":"2f5b-72"},{"uid":"2f5b-38"},{"uid":"2f5b-42"},{"uid":"2f5b-6"},{"uid":"2f5b-40"},{"uid":"2f5b-34"},{"uid":"2f5b-64"},{"uid":"2f5b-75"}],"importedBy":[{"uid":"2f5b-73"},{"uid":"2f5b-46"}]},"2f5b-46":{"id":"/src/util/cell.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-47"},"imported":[{"uid":"2f5b-82"},{"uid":"2f5b-100"},{"uid":"2f5b-72"},{"uid":"2f5b-40"},{"uid":"2f5b-38"},{"uid":"2f5b-44"},{"uid":"2f5b-75"}],"importedBy":[{"uid":"2f5b-73"}]},"2f5b-48":{"id":"/src/util/combinators.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-49"},"imported":[{"uid":"2f5b-72"},{"uid":"2f5b-40"}],"importedBy":[{"uid":"2f5b-73"}]},"2f5b-50":{"id":"/src/util/ids.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-51"},"imported":[],"importedBy":[{"uid":"2f5b-73"}]},"2f5b-52":{"id":"/src/util/schema.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-53"},"imported":[{"uid":"2f5b-102"}],"importedBy":[{"uid":"2f5b-73"}]},"2f5b-54":{"id":"/src/util/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-55"},"imported":[{"uid":"2f5b-82"},{"uid":"2f5b-71"}],"importedBy":[{"uid":"2f5b-73"}]},"2f5b-56":{"id":"/src/util/validator.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-57"},"imported":[{"uid":"2f5b-104"},{"uid":"2f5b-105"}],"importedBy":[{"uid":"2f5b-73"}]},"2f5b-58":{"id":"/src/generators/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-59"},"imported":[{"uid":"2f5b-82"},{"uid":"2f5b-83"},{"uid":"2f5b-84"},{"uid":"2f5b-71"},{"uid":"2f5b-73"}],"importedBy":[{"uid":"2f5b-70"},{"uid":"2f5b-60"}]},"2f5b-60":{"id":"/src/generators/Generate.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-61"},"imported":[{"uid":"2f5b-0"},{"uid":"2f5b-58"}],"importedBy":[{"uid":"2f5b-70"}]},"2f5b-62":{"id":"/src/actions/actions.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-63"},"imported":[{"uid":"2f5b-70"}],"importedBy":[{"uid":"2f5b-64"}]},"2f5b-64":{"id":"/src/actions/index.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-65"},"imported":[{"uid":"2f5b-62"}],"importedBy":[{"uid":"2f5b-68"},{"uid":"2f5b-8"},{"uid":"2f5b-12"},{"uid":"2f5b-14"},{"uid":"2f5b-16"},{"uid":"2f5b-20"},{"uid":"2f5b-22"},{"uid":"2f5b-28"},{"uid":"2f5b-44"}]},"2f5b-66":{"id":"/src/Helpers.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-67"},"imported":[{"uid":"2f5b-73"}],"importedBy":[{"uid":"2f5b-68"}]},"2f5b-68":{"id":"/src/index.ts","moduleParts":{"jsonforms-core.esm.js":"2f5b-69"},"imported":[{"uid":"2f5b-64"},{"uid":"2f5b-70"},{"uid":"2f5b-71"},{"uid":"2f5b-72"},{"uid":"2f5b-26"},{"uid":"2f5b-73"},{"uid":"2f5b-66"},{"uid":"2f5b-74"},{"uid":"2f5b-75"}],"importedBy":[],"isEntry":true},"2f5b-70":{"id":"/src/generators/index.ts","moduleParts":{},"imported":[{"uid":"2f5b-60"},{"uid":"2f5b-0"},{"uid":"2f5b-58"}],"importedBy":[{"uid":"2f5b-68"},{"uid":"2f5b-62"},{"uid":"2f5b-30"}]},"2f5b-71":{"id":"/src/models/index.ts","moduleParts":{},"imported":[{"uid":"2f5b-2"},{"uid":"2f5b-76"},{"uid":"2f5b-77"},{"uid":"2f5b-78"},{"uid":"2f5b-4"}],"importedBy":[{"uid":"2f5b-68"},{"uid":"2f5b-58"},{"uid":"2f5b-34"},{"uid":"2f5b-44"},{"uid":"2f5b-38"},{"uid":"2f5b-54"},{"uid":"2f5b-18"}]},"2f5b-72":{"id":"/src/reducers/index.ts","moduleParts":{},"imported":[{"uid":"2f5b-8"},{"uid":"2f5b-12"},{"uid":"2f5b-14"},{"uid":"2f5b-16"},{"uid":"2f5b-20"},{"uid":"2f5b-30"},{"uid":"2f5b-22"},{"uid":"2f5b-32"},{"uid":"2f5b-28"}],"importedBy":[{"uid":"2f5b-68"},{"uid":"2f5b-30"},{"uid":"2f5b-46"},{"uid":"2f5b-48"},{"uid":"2f5b-44"},{"uid":"2f5b-38"},{"uid":"2f5b-18"}]},"2f5b-73":{"id":"/src/util/index.ts","moduleParts":{},"imported":[{"uid":"2f5b-6"},{"uid":"2f5b-46"},{"uid":"2f5b-48"},{"uid":"2f5b-79"},{"uid":"2f5b-50"},{"uid":"2f5b-42"},{"uid":"2f5b-34"},{"uid":"2f5b-44"},{"uid":"2f5b-36"},{"uid":"2f5b-38"},{"uid":"2f5b-52"},{"uid":"2f5b-80"},{"uid":"2f5b-54"},{"uid":"2f5b-40"},{"uid":"2f5b-56"}],"importedBy":[{"uid":"2f5b-68"},{"uid":"2f5b-66"},{"uid":"2f5b-58"},{"uid":"2f5b-14"},{"uid":"2f5b-24"},{"uid":"2f5b-18"}]},"2f5b-74":{"id":"/src/store.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-68"}]},"2f5b-75":{"id":"/src/i18n/index.ts","moduleParts":{},"imported":[{"uid":"2f5b-81"},{"uid":"2f5b-18"}],"importedBy":[{"uid":"2f5b-68"},{"uid":"2f5b-20"},{"uid":"2f5b-46"},{"uid":"2f5b-44"}]},"2f5b-76":{"id":"/src/models/jsonSchema.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-71"}]},"2f5b-77":{"id":"/src/models/jsonSchema4.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-71"}]},"2f5b-78":{"id":"/src/models/jsonSchema7.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-71"}]},"2f5b-79":{"id":"/src/util/Formatted.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-73"}]},"2f5b-80":{"id":"/src/util/type.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-73"}]},"2f5b-81":{"id":"/src/i18n/i18nTypes.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-75"}]},"2f5b-82":{"id":"lodash/isEmpty","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-58"},{"uid":"2f5b-24"},{"uid":"2f5b-46"},{"uid":"2f5b-34"},{"uid":"2f5b-36"},{"uid":"2f5b-54"},{"uid":"2f5b-40"}],"isExternal":true},"2f5b-83":{"id":"lodash/startCase","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-58"},{"uid":"2f5b-42"}],"isExternal":true},"2f5b-84":{"id":"lodash/keys","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-58"}],"isExternal":true},"2f5b-85":{"id":"lodash/merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-12"}],"isExternal":true},"2f5b-86":{"id":"lodash/cloneDeep","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-14"}],"isExternal":true},"2f5b-87":{"id":"lodash/fp/set","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-14"}],"isExternal":true},"2f5b-88":{"id":"lodash/get","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-14"},{"uid":"2f5b-30"},{"uid":"2f5b-32"},{"uid":"2f5b-24"},{"uid":"2f5b-44"},{"uid":"2f5b-36"}],"isExternal":true},"2f5b-89":{"id":"lodash/filter","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-14"}],"isExternal":true},"2f5b-90":{"id":"lodash/isEqual","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-14"}],"isExternal":true},"2f5b-91":{"id":"lodash/isFunction","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-14"}],"isExternal":true},"2f5b-92":{"id":"lodash/maxBy","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-28"}],"isExternal":true},"2f5b-93":{"id":"lodash/remove","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-28"}],"isExternal":true},"2f5b-94":{"id":"lodash/endsWith","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-24"}],"isExternal":true},"2f5b-95":{"id":"lodash/last","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-24"}],"isExternal":true},"2f5b-96":{"id":"lodash/isArray","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-24"},{"uid":"2f5b-40"}],"isExternal":true},"2f5b-97":{"id":"lodash/reduce","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-24"}],"isExternal":true},"2f5b-98":{"id":"lodash/toPairs","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-24"}],"isExternal":true},"2f5b-99":{"id":"lodash/includes","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-24"},{"uid":"2f5b-40"}],"isExternal":true},"2f5b-100":{"id":"lodash/union","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-46"}],"isExternal":true},"2f5b-101":{"id":"lodash/range","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-34"}],"isExternal":true},"2f5b-102":{"id":"lodash/find","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-44"},{"uid":"2f5b-52"},{"uid":"2f5b-40"}],"isExternal":true},"2f5b-103":{"id":"lodash/has","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-38"}],"isExternal":true},"2f5b-104":{"id":"ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-56"}],"isExternal":true},"2f5b-105":{"id":"ajv-formats","moduleParts":{},"imported":[],"importedBy":[{"uid":"2f5b-56"}],"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-core.esm.js","children":[{"name":"src","children":[{"name":"generators","children":[{"uid":"c327-1","name":"schema.ts"},{"uid":"c327-59","name":"uischema.ts"},{"uid":"c327-61","name":"Generate.ts"}]},{"name":"models","children":[{"uid":"c327-3","name":"draft4.ts"},{"uid":"c327-5","name":"uischema.ts"}]},{"name":"util","children":[{"uid":"c327-7","name":"array.ts"},{"uid":"c327-35","name":"path.ts"},{"uid":"c327-37","name":"resolvers.ts"},{"uid":"c327-39","name":"runtime.ts"},{"uid":"c327-41","name":"util.ts"},{"uid":"c327-43","name":"label.ts"},{"uid":"c327-45","name":"renderer.ts"},{"uid":"c327-47","name":"cell.ts"},{"uid":"c327-49","name":"combinators.ts"},{"uid":"c327-51","name":"ids.ts"},{"uid":"c327-53","name":"schema.ts"},{"uid":"c327-55","name":"uischema.ts"},{"uid":"c327-57","name":"validator.ts"}]},{"name":"reducers","children":[{"uid":"c327-9","name":"cells.ts"},{"uid":"c327-13","name":"config.ts"},{"uid":"c327-15","name":"core.ts"},{"uid":"c327-17","name":"default-data.ts"},{"uid":"c327-21","name":"i18n.ts"},{"uid":"c327-23","name":"renderers.ts"},{"uid":"c327-29","name":"uischemas.ts"},{"uid":"c327-31","name":"reducers.ts"},{"uid":"c327-33","name":"selectors.ts"}]},{"uid":"c327-11","name":"configDefault.ts"},{"name":"i18n/i18nUtil.ts","uid":"c327-19"},{"name":"testers","children":[{"uid":"c327-25","name":"testers.ts"},{"uid":"c327-27","name":"index.ts"}]},{"name":"actions","children":[{"uid":"c327-63","name":"actions.ts"},{"uid":"c327-65","name":"index.ts"}]},{"uid":"c327-67","name":"Helpers.ts"},{"uid":"c327-69","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"c327-1":{"renderedLength":3843,"gzipLength":0,"brotliLength":0,"mainUid":"c327-0"},"c327-3":{"renderedLength":4050,"gzipLength":0,"brotliLength":0,"mainUid":"c327-2"},"c327-5":{"renderedLength":760,"gzipLength":0,"brotliLength":0,"mainUid":"c327-4"},"c327-7":{"renderedLength":421,"gzipLength":0,"brotliLength":0,"mainUid":"c327-6"},"c327-9":{"renderedLength":294,"gzipLength":0,"brotliLength":0,"mainUid":"c327-8"},"c327-11":{"renderedLength":133,"gzipLength":0,"brotliLength":0,"mainUid":"c327-10"},"c327-13":{"renderedLength":322,"gzipLength":0,"brotliLength":0,"mainUid":"c327-12"},"c327-15":{"renderedLength":10156,"gzipLength":0,"brotliLength":0,"mainUid":"c327-14"},"c327-17":{"renderedLength":434,"gzipLength":0,"brotliLength":0,"mainUid":"c327-16"},"c327-19":{"renderedLength":2719,"gzipLength":0,"brotliLength":0,"mainUid":"c327-18"},"c327-21":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"mainUid":"c327-20"},"c327-23":{"renderedLength":370,"gzipLength":0,"brotliLength":0,"mainUid":"c327-22"},"c327-25":{"renderedLength":8488,"gzipLength":0,"brotliLength":0,"mainUid":"c327-24"},"c327-27":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"c327-26"},"c327-29":{"renderedLength":783,"gzipLength":0,"brotliLength":0,"mainUid":"c327-28"},"c327-31":{"renderedLength":1846,"gzipLength":0,"brotliLength":0,"mainUid":"c327-30"},"c327-33":{"renderedLength":573,"gzipLength":0,"brotliLength":0,"mainUid":"c327-32"},"c327-35":{"renderedLength":1333,"gzipLength":0,"brotliLength":0,"mainUid":"c327-34"},"c327-37":{"renderedLength":3040,"gzipLength":0,"brotliLength":0,"mainUid":"c327-36"},"c327-39":{"renderedLength":3621,"gzipLength":0,"brotliLength":0,"mainUid":"c327-38"},"c327-41":{"renderedLength":1498,"gzipLength":0,"brotliLength":0,"mainUid":"c327-40"},"c327-43":{"renderedLength":1289,"gzipLength":0,"brotliLength":0,"mainUid":"c327-42"},"c327-45":{"renderedLength":14103,"gzipLength":0,"brotliLength":0,"mainUid":"c327-44"},"c327-47":{"renderedLength":2622,"gzipLength":0,"brotliLength":0,"mainUid":"c327-46"},"c327-49":{"renderedLength":671,"gzipLength":0,"brotliLength":0,"mainUid":"c327-48"},"c327-51":{"renderedLength":621,"gzipLength":0,"brotliLength":0,"mainUid":"c327-50"},"c327-53":{"renderedLength":365,"gzipLength":0,"brotliLength":0,"mainUid":"c327-52"},"c327-55":{"renderedLength":609,"gzipLength":0,"brotliLength":0,"mainUid":"c327-54"},"c327-57":{"renderedLength":196,"gzipLength":0,"brotliLength":0,"mainUid":"c327-56"},"c327-59":{"renderedLength":3310,"gzipLength":0,"brotliLength":0,"mainUid":"c327-58"},"c327-61":{"renderedLength":137,"gzipLength":0,"brotliLength":0,"mainUid":"c327-60"},"c327-63":{"renderedLength":3051,"gzipLength":0,"brotliLength":0,"mainUid":"c327-62"},"c327-65":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"c327-64"},"c327-67":{"renderedLength":80,"gzipLength":0,"brotliLength":0,"mainUid":"c327-66"},"c327-69":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"c327-68"}},"nodeMetas":{"c327-0":{"id":"/src/generators/schema.ts","moduleParts":{"jsonforms-core.esm.js":"c327-1"},"imported":[],"importedBy":[{"uid":"c327-70"},{"uid":"c327-60"}]},"c327-2":{"id":"/src/models/draft4.ts","moduleParts":{"jsonforms-core.esm.js":"c327-3"},"imported":[],"importedBy":[{"uid":"c327-71"}]},"c327-4":{"id":"/src/models/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"c327-5"},"imported":[],"importedBy":[{"uid":"c327-71"}]},"c327-6":{"id":"/src/util/array.ts","moduleParts":{"jsonforms-core.esm.js":"c327-7"},"imported":[],"importedBy":[{"uid":"c327-73"},{"uid":"c327-44"}]},"c327-8":{"id":"/src/reducers/cells.ts","moduleParts":{"jsonforms-core.esm.js":"c327-9"},"imported":[{"uid":"c327-64"}],"importedBy":[{"uid":"c327-72"},{"uid":"c327-30"}]},"c327-10":{"id":"/src/configDefault.ts","moduleParts":{"jsonforms-core.esm.js":"c327-11"},"imported":[],"importedBy":[{"uid":"c327-12"}]},"c327-12":{"id":"/src/reducers/config.ts","moduleParts":{"jsonforms-core.esm.js":"c327-13"},"imported":[{"uid":"c327-85"},{"uid":"c327-64"},{"uid":"c327-10"}],"importedBy":[{"uid":"c327-72"},{"uid":"c327-30"}]},"c327-14":{"id":"/src/reducers/core.ts","moduleParts":{"jsonforms-core.esm.js":"c327-15"},"imported":[{"uid":"c327-86"},{"uid":"c327-87"},{"uid":"c327-88"},{"uid":"c327-89"},{"uid":"c327-90"},{"uid":"c327-91"},{"uid":"c327-64"},{"uid":"c327-73"}],"importedBy":[{"uid":"c327-72"},{"uid":"c327-30"},{"uid":"c327-32"}]},"c327-16":{"id":"/src/reducers/default-data.ts","moduleParts":{"jsonforms-core.esm.js":"c327-17"},"imported":[{"uid":"c327-64"}],"importedBy":[{"uid":"c327-72"},{"uid":"c327-30"},{"uid":"c327-32"}]},"c327-18":{"id":"/src/i18n/i18nUtil.ts","moduleParts":{"jsonforms-core.esm.js":"c327-19"},"imported":[{"uid":"c327-71"},{"uid":"c327-72"},{"uid":"c327-73"}],"importedBy":[{"uid":"c327-75"}]},"c327-20":{"id":"/src/reducers/i18n.ts","moduleParts":{"jsonforms-core.esm.js":"c327-21"},"imported":[{"uid":"c327-75"},{"uid":"c327-64"}],"importedBy":[{"uid":"c327-72"},{"uid":"c327-30"}]},"c327-22":{"id":"/src/reducers/renderers.ts","moduleParts":{"jsonforms-core.esm.js":"c327-23"},"imported":[{"uid":"c327-64"}],"importedBy":[{"uid":"c327-72"},{"uid":"c327-30"}]},"c327-24":{"id":"/src/testers/testers.ts","moduleParts":{"jsonforms-core.esm.js":"c327-25"},"imported":[{"uid":"c327-82"},{"uid":"c327-88"},{"uid":"c327-94"},{"uid":"c327-95"},{"uid":"c327-96"},{"uid":"c327-97"},{"uid":"c327-98"},{"uid":"c327-99"},{"uid":"c327-73"}],"importedBy":[{"uid":"c327-26"}]},"c327-26":{"id":"/src/testers/index.ts","moduleParts":{"jsonforms-core.esm.js":"c327-27"},"imported":[{"uid":"c327-24"}],"importedBy":[{"uid":"c327-68"},{"uid":"c327-28"}]},"c327-28":{"id":"/src/reducers/uischemas.ts","moduleParts":{"jsonforms-core.esm.js":"c327-29"},"imported":[{"uid":"c327-92"},{"uid":"c327-93"},{"uid":"c327-64"},{"uid":"c327-26"}],"importedBy":[{"uid":"c327-72"},{"uid":"c327-30"}]},"c327-30":{"id":"/src/reducers/reducers.ts","moduleParts":{"jsonforms-core.esm.js":"c327-31"},"imported":[{"uid":"c327-14"},{"uid":"c327-16"},{"uid":"c327-22"},{"uid":"c327-28"},{"uid":"c327-20"},{"uid":"c327-70"},{"uid":"c327-8"},{"uid":"c327-12"},{"uid":"c327-88"},{"uid":"c327-72"}],"importedBy":[{"uid":"c327-72"}]},"c327-32":{"id":"/src/reducers/selectors.ts","moduleParts":{"jsonforms-core.esm.js":"c327-33"},"imported":[{"uid":"c327-88"},{"uid":"c327-14"},{"uid":"c327-16"}],"importedBy":[{"uid":"c327-72"}]},"c327-34":{"id":"/src/util/path.ts","moduleParts":{"jsonforms-core.esm.js":"c327-35"},"imported":[{"uid":"c327-82"},{"uid":"c327-101"},{"uid":"c327-71"}],"importedBy":[{"uid":"c327-73"},{"uid":"c327-42"},{"uid":"c327-44"},{"uid":"c327-36"},{"uid":"c327-38"},{"uid":"c327-40"}]},"c327-36":{"id":"/src/util/resolvers.ts","moduleParts":{"jsonforms-core.esm.js":"c327-37"},"imported":[{"uid":"c327-82"},{"uid":"c327-88"},{"uid":"c327-34"}],"importedBy":[{"uid":"c327-73"},{"uid":"c327-38"},{"uid":"c327-40"}]},"c327-38":{"id":"/src/util/runtime.ts","moduleParts":{"jsonforms-core.esm.js":"c327-39"},"imported":[{"uid":"c327-103"},{"uid":"c327-71"},{"uid":"c327-36"},{"uid":"c327-34"},{"uid":"c327-72"}],"importedBy":[{"uid":"c327-73"},{"uid":"c327-46"},{"uid":"c327-44"},{"uid":"c327-40"}]},"c327-40":{"id":"/src/util/util.ts","moduleParts":{"jsonforms-core.esm.js":"c327-41"},"imported":[{"uid":"c327-82"},{"uid":"c327-96"},{"uid":"c327-99"},{"uid":"c327-102"},{"uid":"c327-36"},{"uid":"c327-34"},{"uid":"c327-38"}],"importedBy":[{"uid":"c327-73"},{"uid":"c327-46"},{"uid":"c327-48"},{"uid":"c327-44"}]},"c327-42":{"id":"/src/util/label.ts","moduleParts":{"jsonforms-core.esm.js":"c327-43"},"imported":[{"uid":"c327-83"},{"uid":"c327-34"}],"importedBy":[{"uid":"c327-73"},{"uid":"c327-44"}]},"c327-44":{"id":"/src/util/renderer.ts","moduleParts":{"jsonforms-core.esm.js":"c327-45"},"imported":[{"uid":"c327-88"},{"uid":"c327-71"},{"uid":"c327-102"},{"uid":"c327-72"},{"uid":"c327-38"},{"uid":"c327-42"},{"uid":"c327-6"},{"uid":"c327-40"},{"uid":"c327-34"},{"uid":"c327-64"},{"uid":"c327-75"}],"importedBy":[{"uid":"c327-73"},{"uid":"c327-46"}]},"c327-46":{"id":"/src/util/cell.ts","moduleParts":{"jsonforms-core.esm.js":"c327-47"},"imported":[{"uid":"c327-82"},{"uid":"c327-100"},{"uid":"c327-72"},{"uid":"c327-40"},{"uid":"c327-38"},{"uid":"c327-44"},{"uid":"c327-75"}],"importedBy":[{"uid":"c327-73"}]},"c327-48":{"id":"/src/util/combinators.ts","moduleParts":{"jsonforms-core.esm.js":"c327-49"},"imported":[{"uid":"c327-72"},{"uid":"c327-40"}],"importedBy":[{"uid":"c327-73"}]},"c327-50":{"id":"/src/util/ids.ts","moduleParts":{"jsonforms-core.esm.js":"c327-51"},"imported":[],"importedBy":[{"uid":"c327-73"}]},"c327-52":{"id":"/src/util/schema.ts","moduleParts":{"jsonforms-core.esm.js":"c327-53"},"imported":[{"uid":"c327-102"}],"importedBy":[{"uid":"c327-73"}]},"c327-54":{"id":"/src/util/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"c327-55"},"imported":[{"uid":"c327-82"},{"uid":"c327-71"}],"importedBy":[{"uid":"c327-73"}]},"c327-56":{"id":"/src/util/validator.ts","moduleParts":{"jsonforms-core.esm.js":"c327-57"},"imported":[{"uid":"c327-104"},{"uid":"c327-105"}],"importedBy":[{"uid":"c327-73"}]},"c327-58":{"id":"/src/generators/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"c327-59"},"imported":[{"uid":"c327-82"},{"uid":"c327-83"},{"uid":"c327-84"},{"uid":"c327-71"},{"uid":"c327-73"}],"importedBy":[{"uid":"c327-70"},{"uid":"c327-60"}]},"c327-60":{"id":"/src/generators/Generate.ts","moduleParts":{"jsonforms-core.esm.js":"c327-61"},"imported":[{"uid":"c327-0"},{"uid":"c327-58"}],"importedBy":[{"uid":"c327-70"}]},"c327-62":{"id":"/src/actions/actions.ts","moduleParts":{"jsonforms-core.esm.js":"c327-63"},"imported":[{"uid":"c327-70"}],"importedBy":[{"uid":"c327-64"}]},"c327-64":{"id":"/src/actions/index.ts","moduleParts":{"jsonforms-core.esm.js":"c327-65"},"imported":[{"uid":"c327-62"}],"importedBy":[{"uid":"c327-68"},{"uid":"c327-8"},{"uid":"c327-12"},{"uid":"c327-14"},{"uid":"c327-16"},{"uid":"c327-20"},{"uid":"c327-22"},{"uid":"c327-28"},{"uid":"c327-44"}]},"c327-66":{"id":"/src/Helpers.ts","moduleParts":{"jsonforms-core.esm.js":"c327-67"},"imported":[{"uid":"c327-73"}],"importedBy":[{"uid":"c327-68"}]},"c327-68":{"id":"/src/index.ts","moduleParts":{"jsonforms-core.esm.js":"c327-69"},"imported":[{"uid":"c327-64"},{"uid":"c327-70"},{"uid":"c327-71"},{"uid":"c327-72"},{"uid":"c327-26"},{"uid":"c327-73"},{"uid":"c327-66"},{"uid":"c327-74"},{"uid":"c327-75"}],"importedBy":[],"isEntry":true},"c327-70":{"id":"/src/generators/index.ts","moduleParts":{},"imported":[{"uid":"c327-60"},{"uid":"c327-0"},{"uid":"c327-58"}],"importedBy":[{"uid":"c327-68"},{"uid":"c327-62"},{"uid":"c327-30"}]},"c327-71":{"id":"/src/models/index.ts","moduleParts":{},"imported":[{"uid":"c327-2"},{"uid":"c327-76"},{"uid":"c327-77"},{"uid":"c327-78"},{"uid":"c327-4"}],"importedBy":[{"uid":"c327-68"},{"uid":"c327-58"},{"uid":"c327-34"},{"uid":"c327-44"},{"uid":"c327-38"},{"uid":"c327-54"},{"uid":"c327-18"}]},"c327-72":{"id":"/src/reducers/index.ts","moduleParts":{},"imported":[{"uid":"c327-8"},{"uid":"c327-12"},{"uid":"c327-14"},{"uid":"c327-16"},{"uid":"c327-20"},{"uid":"c327-30"},{"uid":"c327-22"},{"uid":"c327-32"},{"uid":"c327-28"}],"importedBy":[{"uid":"c327-68"},{"uid":"c327-30"},{"uid":"c327-46"},{"uid":"c327-48"},{"uid":"c327-44"},{"uid":"c327-38"},{"uid":"c327-18"}]},"c327-73":{"id":"/src/util/index.ts","moduleParts":{},"imported":[{"uid":"c327-6"},{"uid":"c327-46"},{"uid":"c327-48"},{"uid":"c327-79"},{"uid":"c327-50"},{"uid":"c327-42"},{"uid":"c327-34"},{"uid":"c327-44"},{"uid":"c327-36"},{"uid":"c327-38"},{"uid":"c327-52"},{"uid":"c327-80"},{"uid":"c327-54"},{"uid":"c327-40"},{"uid":"c327-56"}],"importedBy":[{"uid":"c327-68"},{"uid":"c327-66"},{"uid":"c327-58"},{"uid":"c327-14"},{"uid":"c327-24"},{"uid":"c327-18"}]},"c327-74":{"id":"/src/store.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-68"}]},"c327-75":{"id":"/src/i18n/index.ts","moduleParts":{},"imported":[{"uid":"c327-81"},{"uid":"c327-18"}],"importedBy":[{"uid":"c327-68"},{"uid":"c327-20"},{"uid":"c327-46"},{"uid":"c327-44"}]},"c327-76":{"id":"/src/models/jsonSchema.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-71"}]},"c327-77":{"id":"/src/models/jsonSchema4.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-71"}]},"c327-78":{"id":"/src/models/jsonSchema7.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-71"}]},"c327-79":{"id":"/src/util/Formatted.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-73"}]},"c327-80":{"id":"/src/util/type.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-73"}]},"c327-81":{"id":"/src/i18n/i18nTypes.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-75"}]},"c327-82":{"id":"lodash/isEmpty","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-58"},{"uid":"c327-24"},{"uid":"c327-46"},{"uid":"c327-34"},{"uid":"c327-36"},{"uid":"c327-54"},{"uid":"c327-40"}],"isExternal":true},"c327-83":{"id":"lodash/startCase","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-58"},{"uid":"c327-42"}],"isExternal":true},"c327-84":{"id":"lodash/keys","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-58"}],"isExternal":true},"c327-85":{"id":"lodash/merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-12"}],"isExternal":true},"c327-86":{"id":"lodash/cloneDeep","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-14"}],"isExternal":true},"c327-87":{"id":"lodash/fp/set","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-14"}],"isExternal":true},"c327-88":{"id":"lodash/get","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-14"},{"uid":"c327-30"},{"uid":"c327-32"},{"uid":"c327-24"},{"uid":"c327-44"},{"uid":"c327-36"}],"isExternal":true},"c327-89":{"id":"lodash/filter","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-14"}],"isExternal":true},"c327-90":{"id":"lodash/isEqual","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-14"}],"isExternal":true},"c327-91":{"id":"lodash/isFunction","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-14"}],"isExternal":true},"c327-92":{"id":"lodash/maxBy","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-28"}],"isExternal":true},"c327-93":{"id":"lodash/remove","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-28"}],"isExternal":true},"c327-94":{"id":"lodash/endsWith","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-24"}],"isExternal":true},"c327-95":{"id":"lodash/last","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-24"}],"isExternal":true},"c327-96":{"id":"lodash/isArray","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-24"},{"uid":"c327-40"}],"isExternal":true},"c327-97":{"id":"lodash/reduce","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-24"}],"isExternal":true},"c327-98":{"id":"lodash/toPairs","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-24"}],"isExternal":true},"c327-99":{"id":"lodash/includes","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-24"},{"uid":"c327-40"}],"isExternal":true},"c327-100":{"id":"lodash/union","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-46"}],"isExternal":true},"c327-101":{"id":"lodash/range","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-34"}],"isExternal":true},"c327-102":{"id":"lodash/find","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-44"},{"uid":"c327-52"},{"uid":"c327-40"}],"isExternal":true},"c327-103":{"id":"lodash/has","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-38"}],"isExternal":true},"c327-104":{"id":"ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-56"}],"isExternal":true},"c327-105":{"id":"ajv-formats","moduleParts":{},"imported":[],"importedBy":[{"uid":"c327-56"}],"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;
|