@jsonforms/core 3.0.0-rc.1 → 3.1.0-alpha.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.
|
|
3
|
+
"version": "3.1.0-alpha.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": "91f351daa7b7ae4bb0f0dffd47f00bb6cf682ec1"
|
|
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":"cff0-1","name":"schema.ts"},{"uid":"cff0-59","name":"uischema.ts"},{"uid":"cff0-61","name":"Generate.ts"}]},{"name":"models","children":[{"uid":"cff0-3","name":"draft4.ts"},{"uid":"cff0-5","name":"uischema.ts"}]},{"name":"util","children":[{"uid":"cff0-7","name":"array.ts"},{"uid":"cff0-35","name":"path.ts"},{"uid":"cff0-37","name":"resolvers.ts"},{"uid":"cff0-39","name":"runtime.ts"},{"uid":"cff0-41","name":"util.ts"},{"uid":"cff0-43","name":"label.ts"},{"uid":"cff0-45","name":"renderer.ts"},{"uid":"cff0-47","name":"cell.ts"},{"uid":"cff0-49","name":"combinators.ts"},{"uid":"cff0-51","name":"ids.ts"},{"uid":"cff0-53","name":"schema.ts"},{"uid":"cff0-55","name":"uischema.ts"},{"uid":"cff0-57","name":"validator.ts"}]},{"name":"reducers","children":[{"uid":"cff0-9","name":"cells.ts"},{"uid":"cff0-13","name":"config.ts"},{"uid":"cff0-15","name":"core.ts"},{"uid":"cff0-17","name":"default-data.ts"},{"uid":"cff0-21","name":"i18n.ts"},{"uid":"cff0-23","name":"renderers.ts"},{"uid":"cff0-29","name":"uischemas.ts"},{"uid":"cff0-31","name":"reducers.ts"},{"uid":"cff0-33","name":"selectors.ts"}]},{"uid":"cff0-11","name":"configDefault.ts"},{"name":"i18n/i18nUtil.ts","uid":"cff0-19"},{"name":"testers","children":[{"uid":"cff0-25","name":"testers.ts"},{"uid":"cff0-27","name":"index.ts"}]},{"name":"actions","children":[{"uid":"cff0-63","name":"actions.ts"},{"uid":"cff0-65","name":"index.ts"}]},{"uid":"cff0-67","name":"Helpers.ts"},{"uid":"cff0-69","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"cff0-1":{"renderedLength":3843,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-0"},"cff0-3":{"renderedLength":4050,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-2"},"cff0-5":{"renderedLength":760,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-4"},"cff0-7":{"renderedLength":421,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-6"},"cff0-9":{"renderedLength":294,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-8"},"cff0-11":{"renderedLength":133,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-10"},"cff0-13":{"renderedLength":322,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-12"},"cff0-15":{"renderedLength":10156,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-14"},"cff0-17":{"renderedLength":434,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-16"},"cff0-19":{"renderedLength":2719,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-18"},"cff0-21":{"renderedLength":1754,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-20"},"cff0-23":{"renderedLength":370,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-22"},"cff0-25":{"renderedLength":8488,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-24"},"cff0-27":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-26"},"cff0-29":{"renderedLength":783,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-28"},"cff0-31":{"renderedLength":1846,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-30"},"cff0-33":{"renderedLength":573,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-32"},"cff0-35":{"renderedLength":1333,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-34"},"cff0-37":{"renderedLength":3040,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-36"},"cff0-39":{"renderedLength":3621,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-38"},"cff0-41":{"renderedLength":1498,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-40"},"cff0-43":{"renderedLength":1289,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-42"},"cff0-45":{"renderedLength":14103,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-44"},"cff0-47":{"renderedLength":2622,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-46"},"cff0-49":{"renderedLength":671,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-48"},"cff0-51":{"renderedLength":621,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-50"},"cff0-53":{"renderedLength":365,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-52"},"cff0-55":{"renderedLength":609,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-54"},"cff0-57":{"renderedLength":196,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-56"},"cff0-59":{"renderedLength":3310,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-58"},"cff0-61":{"renderedLength":137,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-60"},"cff0-63":{"renderedLength":3051,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-62"},"cff0-65":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-64"},"cff0-67":{"renderedLength":80,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-66"},"cff0-69":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"cff0-68"}},"nodeMetas":{"cff0-0":{"id":"/src/generators/schema.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-1"},"imported":[],"importedBy":[{"uid":"cff0-70"},{"uid":"cff0-60"}]},"cff0-2":{"id":"/src/models/draft4.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-3"},"imported":[],"importedBy":[{"uid":"cff0-71"}]},"cff0-4":{"id":"/src/models/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-5"},"imported":[],"importedBy":[{"uid":"cff0-71"}]},"cff0-6":{"id":"/src/util/array.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-7"},"imported":[],"importedBy":[{"uid":"cff0-73"},{"uid":"cff0-44"}]},"cff0-8":{"id":"/src/reducers/cells.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-9"},"imported":[{"uid":"cff0-64"}],"importedBy":[{"uid":"cff0-72"},{"uid":"cff0-30"}]},"cff0-10":{"id":"/src/configDefault.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-11"},"imported":[],"importedBy":[{"uid":"cff0-12"}]},"cff0-12":{"id":"/src/reducers/config.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-13"},"imported":[{"uid":"cff0-85"},{"uid":"cff0-64"},{"uid":"cff0-10"}],"importedBy":[{"uid":"cff0-72"},{"uid":"cff0-30"}]},"cff0-14":{"id":"/src/reducers/core.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-15"},"imported":[{"uid":"cff0-86"},{"uid":"cff0-87"},{"uid":"cff0-88"},{"uid":"cff0-89"},{"uid":"cff0-90"},{"uid":"cff0-91"},{"uid":"cff0-64"},{"uid":"cff0-73"}],"importedBy":[{"uid":"cff0-72"},{"uid":"cff0-30"},{"uid":"cff0-32"}]},"cff0-16":{"id":"/src/reducers/default-data.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-17"},"imported":[{"uid":"cff0-64"}],"importedBy":[{"uid":"cff0-72"},{"uid":"cff0-30"},{"uid":"cff0-32"}]},"cff0-18":{"id":"/src/i18n/i18nUtil.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-19"},"imported":[{"uid":"cff0-71"},{"uid":"cff0-72"},{"uid":"cff0-73"}],"importedBy":[{"uid":"cff0-75"}]},"cff0-20":{"id":"/src/reducers/i18n.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-21"},"imported":[{"uid":"cff0-75"},{"uid":"cff0-64"}],"importedBy":[{"uid":"cff0-72"},{"uid":"cff0-30"}]},"cff0-22":{"id":"/src/reducers/renderers.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-23"},"imported":[{"uid":"cff0-64"}],"importedBy":[{"uid":"cff0-72"},{"uid":"cff0-30"}]},"cff0-24":{"id":"/src/testers/testers.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-25"},"imported":[{"uid":"cff0-82"},{"uid":"cff0-88"},{"uid":"cff0-94"},{"uid":"cff0-95"},{"uid":"cff0-96"},{"uid":"cff0-97"},{"uid":"cff0-98"},{"uid":"cff0-99"},{"uid":"cff0-73"}],"importedBy":[{"uid":"cff0-26"}]},"cff0-26":{"id":"/src/testers/index.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-27"},"imported":[{"uid":"cff0-24"}],"importedBy":[{"uid":"cff0-68"},{"uid":"cff0-28"}]},"cff0-28":{"id":"/src/reducers/uischemas.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-29"},"imported":[{"uid":"cff0-92"},{"uid":"cff0-93"},{"uid":"cff0-64"},{"uid":"cff0-26"}],"importedBy":[{"uid":"cff0-72"},{"uid":"cff0-30"}]},"cff0-30":{"id":"/src/reducers/reducers.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-31"},"imported":[{"uid":"cff0-14"},{"uid":"cff0-16"},{"uid":"cff0-22"},{"uid":"cff0-28"},{"uid":"cff0-20"},{"uid":"cff0-70"},{"uid":"cff0-8"},{"uid":"cff0-12"},{"uid":"cff0-88"},{"uid":"cff0-72"}],"importedBy":[{"uid":"cff0-72"}]},"cff0-32":{"id":"/src/reducers/selectors.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-33"},"imported":[{"uid":"cff0-88"},{"uid":"cff0-14"},{"uid":"cff0-16"}],"importedBy":[{"uid":"cff0-72"}]},"cff0-34":{"id":"/src/util/path.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-35"},"imported":[{"uid":"cff0-82"},{"uid":"cff0-101"},{"uid":"cff0-71"}],"importedBy":[{"uid":"cff0-73"},{"uid":"cff0-42"},{"uid":"cff0-44"},{"uid":"cff0-36"},{"uid":"cff0-38"},{"uid":"cff0-40"}]},"cff0-36":{"id":"/src/util/resolvers.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-37"},"imported":[{"uid":"cff0-82"},{"uid":"cff0-88"},{"uid":"cff0-34"}],"importedBy":[{"uid":"cff0-73"},{"uid":"cff0-38"},{"uid":"cff0-40"}]},"cff0-38":{"id":"/src/util/runtime.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-39"},"imported":[{"uid":"cff0-103"},{"uid":"cff0-71"},{"uid":"cff0-36"},{"uid":"cff0-34"},{"uid":"cff0-72"}],"importedBy":[{"uid":"cff0-73"},{"uid":"cff0-46"},{"uid":"cff0-44"},{"uid":"cff0-40"}]},"cff0-40":{"id":"/src/util/util.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-41"},"imported":[{"uid":"cff0-82"},{"uid":"cff0-96"},{"uid":"cff0-99"},{"uid":"cff0-102"},{"uid":"cff0-36"},{"uid":"cff0-34"},{"uid":"cff0-38"}],"importedBy":[{"uid":"cff0-73"},{"uid":"cff0-46"},{"uid":"cff0-48"},{"uid":"cff0-44"}]},"cff0-42":{"id":"/src/util/label.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-43"},"imported":[{"uid":"cff0-83"},{"uid":"cff0-34"}],"importedBy":[{"uid":"cff0-73"},{"uid":"cff0-44"}]},"cff0-44":{"id":"/src/util/renderer.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-45"},"imported":[{"uid":"cff0-88"},{"uid":"cff0-71"},{"uid":"cff0-102"},{"uid":"cff0-72"},{"uid":"cff0-38"},{"uid":"cff0-42"},{"uid":"cff0-6"},{"uid":"cff0-40"},{"uid":"cff0-34"},{"uid":"cff0-64"},{"uid":"cff0-75"}],"importedBy":[{"uid":"cff0-73"},{"uid":"cff0-46"}]},"cff0-46":{"id":"/src/util/cell.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-47"},"imported":[{"uid":"cff0-82"},{"uid":"cff0-100"},{"uid":"cff0-72"},{"uid":"cff0-40"},{"uid":"cff0-38"},{"uid":"cff0-44"},{"uid":"cff0-75"}],"importedBy":[{"uid":"cff0-73"}]},"cff0-48":{"id":"/src/util/combinators.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-49"},"imported":[{"uid":"cff0-72"},{"uid":"cff0-40"}],"importedBy":[{"uid":"cff0-73"}]},"cff0-50":{"id":"/src/util/ids.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-51"},"imported":[],"importedBy":[{"uid":"cff0-73"}]},"cff0-52":{"id":"/src/util/schema.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-53"},"imported":[{"uid":"cff0-102"}],"importedBy":[{"uid":"cff0-73"}]},"cff0-54":{"id":"/src/util/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-55"},"imported":[{"uid":"cff0-82"},{"uid":"cff0-71"}],"importedBy":[{"uid":"cff0-73"}]},"cff0-56":{"id":"/src/util/validator.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-57"},"imported":[{"uid":"cff0-104"},{"uid":"cff0-105"}],"importedBy":[{"uid":"cff0-73"}]},"cff0-58":{"id":"/src/generators/uischema.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-59"},"imported":[{"uid":"cff0-82"},{"uid":"cff0-83"},{"uid":"cff0-84"},{"uid":"cff0-71"},{"uid":"cff0-73"}],"importedBy":[{"uid":"cff0-70"},{"uid":"cff0-60"}]},"cff0-60":{"id":"/src/generators/Generate.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-61"},"imported":[{"uid":"cff0-0"},{"uid":"cff0-58"}],"importedBy":[{"uid":"cff0-70"}]},"cff0-62":{"id":"/src/actions/actions.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-63"},"imported":[{"uid":"cff0-70"}],"importedBy":[{"uid":"cff0-64"}]},"cff0-64":{"id":"/src/actions/index.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-65"},"imported":[{"uid":"cff0-62"}],"importedBy":[{"uid":"cff0-68"},{"uid":"cff0-8"},{"uid":"cff0-12"},{"uid":"cff0-14"},{"uid":"cff0-16"},{"uid":"cff0-20"},{"uid":"cff0-22"},{"uid":"cff0-28"},{"uid":"cff0-44"}]},"cff0-66":{"id":"/src/Helpers.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-67"},"imported":[{"uid":"cff0-73"}],"importedBy":[{"uid":"cff0-68"}]},"cff0-68":{"id":"/src/index.ts","moduleParts":{"jsonforms-core.esm.js":"cff0-69"},"imported":[{"uid":"cff0-64"},{"uid":"cff0-70"},{"uid":"cff0-71"},{"uid":"cff0-72"},{"uid":"cff0-26"},{"uid":"cff0-73"},{"uid":"cff0-66"},{"uid":"cff0-74"},{"uid":"cff0-75"}],"importedBy":[],"isEntry":true},"cff0-70":{"id":"/src/generators/index.ts","moduleParts":{},"imported":[{"uid":"cff0-60"},{"uid":"cff0-0"},{"uid":"cff0-58"}],"importedBy":[{"uid":"cff0-68"},{"uid":"cff0-62"},{"uid":"cff0-30"}]},"cff0-71":{"id":"/src/models/index.ts","moduleParts":{},"imported":[{"uid":"cff0-2"},{"uid":"cff0-76"},{"uid":"cff0-77"},{"uid":"cff0-78"},{"uid":"cff0-4"}],"importedBy":[{"uid":"cff0-68"},{"uid":"cff0-58"},{"uid":"cff0-34"},{"uid":"cff0-44"},{"uid":"cff0-38"},{"uid":"cff0-54"},{"uid":"cff0-18"}]},"cff0-72":{"id":"/src/reducers/index.ts","moduleParts":{},"imported":[{"uid":"cff0-8"},{"uid":"cff0-12"},{"uid":"cff0-14"},{"uid":"cff0-16"},{"uid":"cff0-20"},{"uid":"cff0-30"},{"uid":"cff0-22"},{"uid":"cff0-32"},{"uid":"cff0-28"}],"importedBy":[{"uid":"cff0-68"},{"uid":"cff0-30"},{"uid":"cff0-46"},{"uid":"cff0-48"},{"uid":"cff0-44"},{"uid":"cff0-38"},{"uid":"cff0-18"}]},"cff0-73":{"id":"/src/util/index.ts","moduleParts":{},"imported":[{"uid":"cff0-6"},{"uid":"cff0-46"},{"uid":"cff0-48"},{"uid":"cff0-79"},{"uid":"cff0-50"},{"uid":"cff0-42"},{"uid":"cff0-34"},{"uid":"cff0-44"},{"uid":"cff0-36"},{"uid":"cff0-38"},{"uid":"cff0-52"},{"uid":"cff0-80"},{"uid":"cff0-54"},{"uid":"cff0-40"},{"uid":"cff0-56"}],"importedBy":[{"uid":"cff0-68"},{"uid":"cff0-66"},{"uid":"cff0-58"},{"uid":"cff0-14"},{"uid":"cff0-24"},{"uid":"cff0-18"}]},"cff0-74":{"id":"/src/store.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-68"}]},"cff0-75":{"id":"/src/i18n/index.ts","moduleParts":{},"imported":[{"uid":"cff0-81"},{"uid":"cff0-18"}],"importedBy":[{"uid":"cff0-68"},{"uid":"cff0-20"},{"uid":"cff0-46"},{"uid":"cff0-44"}]},"cff0-76":{"id":"/src/models/jsonSchema.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-71"}]},"cff0-77":{"id":"/src/models/jsonSchema4.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-71"}]},"cff0-78":{"id":"/src/models/jsonSchema7.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-71"}]},"cff0-79":{"id":"/src/util/Formatted.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-73"}]},"cff0-80":{"id":"/src/util/type.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-73"}]},"cff0-81":{"id":"/src/i18n/i18nTypes.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-75"}]},"cff0-82":{"id":"lodash/isEmpty","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-58"},{"uid":"cff0-24"},{"uid":"cff0-46"},{"uid":"cff0-34"},{"uid":"cff0-36"},{"uid":"cff0-54"},{"uid":"cff0-40"}],"isExternal":true},"cff0-83":{"id":"lodash/startCase","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-58"},{"uid":"cff0-42"}],"isExternal":true},"cff0-84":{"id":"lodash/keys","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-58"}],"isExternal":true},"cff0-85":{"id":"lodash/merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-12"}],"isExternal":true},"cff0-86":{"id":"lodash/cloneDeep","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-14"}],"isExternal":true},"cff0-87":{"id":"lodash/fp/set","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-14"}],"isExternal":true},"cff0-88":{"id":"lodash/get","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-14"},{"uid":"cff0-30"},{"uid":"cff0-32"},{"uid":"cff0-24"},{"uid":"cff0-44"},{"uid":"cff0-36"}],"isExternal":true},"cff0-89":{"id":"lodash/filter","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-14"}],"isExternal":true},"cff0-90":{"id":"lodash/isEqual","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-14"}],"isExternal":true},"cff0-91":{"id":"lodash/isFunction","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-14"}],"isExternal":true},"cff0-92":{"id":"lodash/maxBy","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-28"}],"isExternal":true},"cff0-93":{"id":"lodash/remove","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-28"}],"isExternal":true},"cff0-94":{"id":"lodash/endsWith","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-24"}],"isExternal":true},"cff0-95":{"id":"lodash/last","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-24"}],"isExternal":true},"cff0-96":{"id":"lodash/isArray","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-24"},{"uid":"cff0-40"}],"isExternal":true},"cff0-97":{"id":"lodash/reduce","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-24"}],"isExternal":true},"cff0-98":{"id":"lodash/toPairs","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-24"}],"isExternal":true},"cff0-99":{"id":"lodash/includes","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-24"},{"uid":"cff0-40"}],"isExternal":true},"cff0-100":{"id":"lodash/union","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-46"}],"isExternal":true},"cff0-101":{"id":"lodash/range","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-34"}],"isExternal":true},"cff0-102":{"id":"lodash/find","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-44"},{"uid":"cff0-52"},{"uid":"cff0-40"}],"isExternal":true},"cff0-103":{"id":"lodash/has","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-38"}],"isExternal":true},"cff0-104":{"id":"ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-56"}],"isExternal":true},"cff0-105":{"id":"ajv-formats","moduleParts":{},"imported":[],"importedBy":[{"uid":"cff0-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;
|