@jsonforms/core 3.0.0-beta.2 → 3.0.0-beta.5

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.
Files changed (72) hide show
  1. package/README.md +11 -0
  2. package/docs/assets/js/search.json +1 -1
  3. package/docs/enums/ruleeffect.html +4 -4
  4. package/docs/globals.html +307 -89
  5. package/docs/index.html +47 -4
  6. package/docs/interfaces/addcellrendereraction.html +3 -3
  7. package/docs/interfaces/addrendereraction.html +3 -3
  8. package/docs/interfaces/adduischemaaction.html +3 -3
  9. package/docs/interfaces/andcondition.html +2 -2
  10. package/docs/interfaces/arraylayoutprops.html +2 -2
  11. package/docs/interfaces/categorization.html +24 -16
  12. package/docs/interfaces/category.html +24 -16
  13. package/docs/interfaces/combinatorrendererprops.html +6 -6
  14. package/docs/interfaces/composablecondition.html +2 -2
  15. package/docs/interfaces/condition.html +1 -1
  16. package/docs/interfaces/controlelement.html +38 -15
  17. package/docs/interfaces/grouplayout.html +24 -12
  18. package/docs/interfaces/horizontallayout.html +4 -4
  19. package/docs/interfaces/initactionoptions.html +14 -0
  20. package/docs/interfaces/internationalizable.html +158 -0
  21. package/docs/interfaces/jsonformscore.html +17 -3
  22. package/docs/interfaces/labeldescription.html +2 -2
  23. package/docs/interfaces/labeled.html +182 -0
  24. package/docs/interfaces/labelelement.html +4 -4
  25. package/docs/interfaces/lableable.html +184 -0
  26. package/docs/interfaces/layout.html +4 -4
  27. package/docs/interfaces/leafcondition.html +9 -8
  28. package/docs/interfaces/orcondition.html +2 -2
  29. package/docs/interfaces/registerdefaultdataaction.html +3 -3
  30. package/docs/interfaces/removecellrendereraction.html +3 -3
  31. package/docs/interfaces/removerendereraction.html +3 -3
  32. package/docs/interfaces/removeuischemaaction.html +2 -2
  33. package/docs/interfaces/rule.html +2 -2
  34. package/docs/interfaces/schemabasedcondition.html +9 -8
  35. package/docs/interfaces/scopable.html +3 -9
  36. package/docs/interfaces/scoped.html +183 -0
  37. package/docs/interfaces/setajvaction.html +2 -2
  38. package/docs/interfaces/setconfigaction.html +2 -2
  39. package/docs/interfaces/setlocaleaction.html +2 -2
  40. package/docs/interfaces/setschemaaction.html +2 -2
  41. package/docs/interfaces/settranslatoraction.html +3 -3
  42. package/docs/interfaces/setuischemaaction.html +2 -2
  43. package/docs/interfaces/setvalidationmodeaction.html +2 -2
  44. package/docs/interfaces/statepropsofarraylayout.html +2 -2
  45. package/docs/interfaces/statepropsofcombinator.html +6 -6
  46. package/docs/interfaces/uischemaelement.html +3 -3
  47. package/docs/interfaces/unregisterdefaultdataaction.html +2 -2
  48. package/docs/interfaces/updatei18naction.html +4 -4
  49. package/docs/interfaces/verticallayout.html +4 -4
  50. package/lib/actions/actions.d.ts +1 -0
  51. package/lib/jsonforms-core.cjs.js +74 -31
  52. package/lib/jsonforms-core.cjs.js.map +1 -1
  53. package/lib/jsonforms-core.esm.js +60 -29
  54. package/lib/jsonforms-core.esm.js.map +1 -1
  55. package/lib/models/uischema.d.ts +40 -23
  56. package/lib/reducers/core.d.ts +1 -0
  57. package/lib/util/runtime.d.ts +1 -2
  58. package/lib/util/util.d.ts +6 -6
  59. package/package.json +2 -2
  60. package/src/actions/actions.ts +1 -0
  61. package/src/i18n/i18nUtil.ts +10 -7
  62. package/src/models/uischema.ts +59 -23
  63. package/src/reducers/core.ts +30 -3
  64. package/src/testers/testers.ts +10 -13
  65. package/src/util/path.ts +9 -5
  66. package/src/util/renderer.ts +6 -3
  67. package/src/util/runtime.ts +1 -1
  68. package/src/util/util.ts +8 -8
  69. package/stats.html +1 -1
  70. package/test/i18n/i18nUtil.test.ts +41 -1
  71. package/test/reducers/core.test.ts +203 -1
  72. package/test/util/renderer.test.ts +1 -1
package/docs/index.html CHANGED
@@ -81,6 +81,12 @@
81
81
  </ul>
82
82
  <p>See the official <a href="https://jsonforms.io/">documentation</a> and the <a href="https://github.com/eclipsesource/jsonforms/blob/master/packages/examples">Example Package</a> on how to integrate JSON Forms with your application.</p>
83
83
  <p>Check <a href="https://www.npmjs.com/search?q=%40jsonforms">https://www.npmjs.com/search?q=%40jsonforms</a> for all published JSON Forms packages.</p>
84
+ <a href="#upgrading-to-json-forms-30" id="upgrading-to-json-forms-30" style="color: inherit; text-decoration: none;">
85
+ <h2>Upgrading to JSON Forms 3.0</h2>
86
+ </a>
87
+ <p>With version 3.0 of JSON Forms we removed <code>json-schema-ref-parser</code> from the core package.
88
+ This change only affects users of the React variant (Vue and Angular are not affected) and even for React only a few users will need to adjust their code.
89
+ To avoid issues and for more information, please have a look at our <a href="https://github.com/eclipsesource/jsonforms/blob/master/MIGRATION.md">migration guide</a>.</p>
84
90
  <a href="#license" id="license" style="color: inherit; text-decoration: none;">
85
91
  <h2>License</h2>
86
92
  </a>
@@ -97,6 +103,10 @@
97
103
  For questions and discussions please use the <a href="https://jsonforms.discourse.group">JSON Forms board</a>.
98
104
  You can also reach us via <a href="mailto:jsonforms@eclipsesource.com?subject=JSON%20Forms">email</a>.
99
105
  In addition, EclipseSource also offers <a href="https://jsonforms.io/support">professional support</a> for JSON Forms.</p>
106
+ <a href="#migration" id="migration" style="color: inherit; text-decoration: none;">
107
+ <h2>Migration</h2>
108
+ </a>
109
+ <p>See our <a href="https://github.com/eclipsesource/jsonforms/blob/master/MIGRATION.md">migration guide</a> when updating JSON Forms.</p>
100
110
  </div>
101
111
  </div>
102
112
  <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
@@ -139,10 +149,10 @@
139
149
  <li class=" tsd-kind-interface">
140
150
  <a href="interfaces/arraylayoutprops.html" class="tsd-kind-icon">Array<wbr>Layout<wbr>Props</a>
141
151
  </li>
142
- <li class=" tsd-kind-interface">
152
+ <li class=" tsd-kind-interface tsd-has-type-parameter">
143
153
  <a href="interfaces/categorization.html" class="tsd-kind-icon">Categorization</a>
144
154
  </li>
145
- <li class=" tsd-kind-interface">
155
+ <li class=" tsd-kind-interface tsd-has-type-parameter">
146
156
  <a href="interfaces/category.html" class="tsd-kind-icon">Category</a>
147
157
  </li>
148
158
  <li class=" tsd-kind-interface">
@@ -196,7 +206,7 @@
196
206
  <li class=" tsd-kind-interface tsd-has-type-parameter">
197
207
  <a href="interfaces/formatted.html" class="tsd-kind-icon">Formatted</a>
198
208
  </li>
199
- <li class=" tsd-kind-interface">
209
+ <li class=" tsd-kind-interface tsd-has-type-parameter">
200
210
  <a href="interfaces/grouplayout.html" class="tsd-kind-icon">Group<wbr>Layout</a>
201
211
  </li>
202
212
  <li class=" tsd-kind-interface">
@@ -208,6 +218,9 @@
208
218
  <li class=" tsd-kind-interface">
209
219
  <a href="interfaces/initactionoptions.html" class="tsd-kind-icon">Init<wbr>Action<wbr>Options</a>
210
220
  </li>
221
+ <li class=" tsd-kind-interface">
222
+ <a href="interfaces/internationalizable.html" class="tsd-kind-icon">Internationalizable</a>
223
+ </li>
211
224
  <li class=" tsd-kind-interface">
212
225
  <a href="interfaces/jsonformscellrendererregistryentry.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Cell<wbr>Renderer<wbr>Registry<wbr>Entry</a>
213
226
  </li>
@@ -253,6 +266,12 @@
253
266
  <li class=" tsd-kind-interface">
254
267
  <a href="interfaces/labelelement.html" class="tsd-kind-icon">Label<wbr>Element</a>
255
268
  </li>
269
+ <li class=" tsd-kind-interface tsd-has-type-parameter">
270
+ <a href="interfaces/labeled.html" class="tsd-kind-icon">Labeled</a>
271
+ </li>
272
+ <li class=" tsd-kind-interface tsd-has-type-parameter">
273
+ <a href="interfaces/lableable.html" class="tsd-kind-icon">Lableable</a>
274
+ </li>
256
275
  <li class=" tsd-kind-interface">
257
276
  <a href="interfaces/layout.html" class="tsd-kind-icon">Layout</a>
258
277
  </li>
@@ -316,6 +335,9 @@
316
335
  <li class=" tsd-kind-interface">
317
336
  <a href="interfaces/scopable.html" class="tsd-kind-icon">Scopable</a>
318
337
  </li>
338
+ <li class=" tsd-kind-interface">
339
+ <a href="interfaces/scoped.html" class="tsd-kind-icon">Scoped</a>
340
+ </li>
319
341
  <li class=" tsd-kind-interface">
320
342
  <a href="interfaces/setajvaction.html" class="tsd-kind-icon">Set<wbr>Ajv<wbr>Action</a>
321
343
  </li>
@@ -767,7 +789,7 @@
767
789
  <a href="globals.html#formatis" class="tsd-kind-icon">format<wbr>Is</a>
768
790
  </li>
769
791
  <li class=" tsd-kind-function">
770
- <a href="globals.html#fromscopable" class="tsd-kind-icon">from<wbr>Scopable</a>
792
+ <a href="globals.html#fromscoped" class="tsd-kind-icon">from<wbr>Scoped</a>
771
793
  </li>
772
794
  <li class=" tsd-kind-function">
773
795
  <a href="globals.html#generatedefaultuischema" class="tsd-kind-icon">generate<wbr>DefaultUISchema</a>
@@ -778,6 +800,9 @@
778
800
  <li class=" tsd-kind-function">
779
801
  <a href="globals.html#generateuischema" class="tsd-kind-icon">generateUISchema</a>
780
802
  </li>
803
+ <li class=" tsd-kind-function">
804
+ <a href="globals.html#getadditionalerrors" class="tsd-kind-icon">get<wbr>Additional<wbr>Errors</a>
805
+ </li>
781
806
  <li class=" tsd-kind-function">
782
807
  <a href="globals.html#getajv" class="tsd-kind-icon">get<wbr>Ajv</a>
783
808
  </li>
@@ -856,6 +881,9 @@
856
881
  <li class=" tsd-kind-function">
857
882
  <a href="globals.html#getvalidationmode" class="tsd-kind-icon">get<wbr>Validation<wbr>Mode</a>
858
883
  </li>
884
+ <li class=" tsd-kind-function">
885
+ <a href="globals.html#hasadditionalerrorsoption" class="tsd-kind-icon">has<wbr>Additional<wbr>Errors<wbr>Option</a>
886
+ </li>
859
887
  <li class=" tsd-kind-function">
860
888
  <a href="globals.html#hasajvoption" class="tsd-kind-icon">has<wbr>Ajv<wbr>Option</a>
861
889
  </li>
@@ -913,6 +941,15 @@
913
941
  <li class=" tsd-kind-function">
914
942
  <a href="globals.html#isinherentlyenabled" class="tsd-kind-icon">is<wbr>Inherently<wbr>Enabled</a>
915
943
  </li>
944
+ <li class=" tsd-kind-function">
945
+ <a href="globals.html#isinternationalized" class="tsd-kind-icon">is<wbr>Internationalized</a>
946
+ </li>
947
+ <li class=" tsd-kind-function">
948
+ <a href="globals.html#islabelable" class="tsd-kind-icon">is<wbr>Labelable</a>
949
+ </li>
950
+ <li class=" tsd-kind-function">
951
+ <a href="globals.html#islabeled" class="tsd-kind-icon">is<wbr>Labeled</a>
952
+ </li>
916
953
  <li class=" tsd-kind-function">
917
954
  <a href="globals.html#islayout" class="tsd-kind-icon">is<wbr>Layout</a>
918
955
  </li>
@@ -937,6 +974,12 @@
937
974
  <li class=" tsd-kind-function">
938
975
  <a href="globals.html#isschemacondition" class="tsd-kind-icon">is<wbr>Schema<wbr>Condition</a>
939
976
  </li>
977
+ <li class=" tsd-kind-function">
978
+ <a href="globals.html#isscopable" class="tsd-kind-icon">is<wbr>Scopable</a>
979
+ </li>
980
+ <li class=" tsd-kind-function">
981
+ <a href="globals.html#isscoped" class="tsd-kind-icon">is<wbr>Scoped</a>
982
+ </li>
940
983
  <li class=" tsd-kind-function">
941
984
  <a href="globals.html#isuniqueid" class="tsd-kind-icon">is<wbr>Unique<wbr>Id</a>
942
985
  </li>
@@ -95,7 +95,7 @@
95
95
  <div class="tsd-signature tsd-kind-icon">cell<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
96
96
  <aside class="tsd-sources">
97
97
  <ul>
98
- <li>Defined in packages/core/src/actions/actions.ts:198</li>
98
+ <li>Defined in packages/core/src/actions/actions.ts:199</li>
99
99
  </ul>
100
100
  </aside>
101
101
  </section>
@@ -105,7 +105,7 @@
105
105
  <div class="tsd-signature tsd-kind-icon">tester<span class="tsd-signature-symbol">:</span> <a href="../globals.html#rankedtester" class="tsd-signature-type">RankedTester</a></div>
106
106
  <aside class="tsd-sources">
107
107
  <ul>
108
- <li>Defined in packages/core/src/actions/actions.ts:197</li>
108
+ <li>Defined in packages/core/src/actions/actions.ts:198</li>
109
109
  </ul>
110
110
  </aside>
111
111
  </section>
@@ -115,7 +115,7 @@
115
115
  <div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/ADD_CELL"</span></div>
116
116
  <aside class="tsd-sources">
117
117
  <ul>
118
- <li>Defined in packages/core/src/actions/actions.ts:196</li>
118
+ <li>Defined in packages/core/src/actions/actions.ts:197</li>
119
119
  </ul>
120
120
  </aside>
121
121
  </section>
@@ -95,7 +95,7 @@
95
95
  <div class="tsd-signature tsd-kind-icon">renderer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
96
96
  <aside class="tsd-sources">
97
97
  <ul>
98
- <li>Defined in packages/core/src/actions/actions.ts:186</li>
98
+ <li>Defined in packages/core/src/actions/actions.ts:187</li>
99
99
  </ul>
100
100
  </aside>
101
101
  </section>
@@ -105,7 +105,7 @@
105
105
  <div class="tsd-signature tsd-kind-icon">tester<span class="tsd-signature-symbol">:</span> <a href="../globals.html#rankedtester" class="tsd-signature-type">RankedTester</a></div>
106
106
  <aside class="tsd-sources">
107
107
  <ul>
108
- <li>Defined in packages/core/src/actions/actions.ts:185</li>
108
+ <li>Defined in packages/core/src/actions/actions.ts:186</li>
109
109
  </ul>
110
110
  </aside>
111
111
  </section>
@@ -115,7 +115,7 @@
115
115
  <div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/ADD_RENDERER"</span></div>
116
116
  <aside class="tsd-sources">
117
117
  <ul>
118
- <li>Defined in packages/core/src/actions/actions.ts:184</li>
118
+ <li>Defined in packages/core/src/actions/actions.ts:185</li>
119
119
  </ul>
120
120
  </aside>
121
121
  </section>
@@ -95,7 +95,7 @@
95
95
  <div class="tsd-signature tsd-kind-icon">tester<span class="tsd-signature-symbol">:</span> <a href="../globals.html#uischematester" class="tsd-signature-type">UISchemaTester</a></div>
96
96
  <aside class="tsd-sources">
97
97
  <ul>
98
- <li>Defined in packages/core/src/actions/actions.ts:250</li>
98
+ <li>Defined in packages/core/src/actions/actions.ts:251</li>
99
99
  </ul>
100
100
  </aside>
101
101
  </section>
@@ -105,7 +105,7 @@
105
105
  <div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/ADD_UI_SCHEMA"</span></div>
106
106
  <aside class="tsd-sources">
107
107
  <ul>
108
- <li>Defined in packages/core/src/actions/actions.ts:249</li>
108
+ <li>Defined in packages/core/src/actions/actions.ts:250</li>
109
109
  </ul>
110
110
  </aside>
111
111
  </section>
@@ -115,7 +115,7 @@
115
115
  <div class="tsd-signature tsd-kind-icon">uischema<span class="tsd-signature-symbol">:</span> <a href="uischemaelement.html" class="tsd-signature-type">UISchemaElement</a></div>
116
116
  <aside class="tsd-sources">
117
117
  <ul>
118
- <li>Defined in packages/core/src/actions/actions.ts:251</li>
118
+ <li>Defined in packages/core/src/actions/actions.ts:252</li>
119
119
  </ul>
120
120
  </aside>
121
121
  </section>
@@ -107,7 +107,7 @@
107
107
  <aside class="tsd-sources">
108
108
  <p>Inherited from <a href="composablecondition.html">ComposableCondition</a>.<a href="composablecondition.html#conditions">conditions</a></p>
109
109
  <ul>
110
- <li>Defined in packages/core/src/models/uischema.ts:107</li>
110
+ <li>Defined in packages/core/src/models/uischema.ts:144</li>
111
111
  </ul>
112
112
  </aside>
113
113
  </section>
@@ -118,7 +118,7 @@
118
118
  <aside class="tsd-sources">
119
119
  <p>Overrides <a href="condition.html">Condition</a>.<a href="condition.html#type">type</a></p>
120
120
  <ul>
121
- <li>Defined in packages/core/src/models/uischema.ts:121</li>
121
+ <li>Defined in packages/core/src/models/uischema.ts:158</li>
122
122
  </ul>
123
123
  </aside>
124
124
  </section>
@@ -163,7 +163,7 @@
163
163
  <p>Inherited from <a href="statepropsofarraylayout.html">StatePropsOfArrayLayout</a>.<a href="statepropsofarraylayout.html#data">data</a></p>
164
164
  <p>Overrides <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#data">data</a></p>
165
165
  <ul>
166
- <li>Defined in packages/core/src/util/renderer.ts:1009</li>
166
+ <li>Defined in packages/core/src/util/renderer.ts:1012</li>
167
167
  </ul>
168
168
  </aside>
169
169
  </section>
@@ -254,7 +254,7 @@
254
254
  <aside class="tsd-sources">
255
255
  <p>Inherited from <a href="statepropsofarraylayout.html">StatePropsOfArrayLayout</a>.<a href="statepropsofarraylayout.html#minitems">minItems</a></p>
256
256
  <ul>
257
- <li>Defined in packages/core/src/util/renderer.ts:1010</li>
257
+ <li>Defined in packages/core/src/util/renderer.ts:1013</li>
258
258
  </ul>
259
259
  </aside>
260
260
  </section>
@@ -57,7 +57,7 @@
57
57
  <a href="categorization.html">Categorization</a>
58
58
  </li>
59
59
  </ul>
60
- <h1>Interface Categorization</h1>
60
+ <h1>Interface Categorization&lt;T&gt;</h1>
61
61
  </div>
62
62
  </div>
63
63
  </header>
@@ -73,11 +73,22 @@
73
73
  </div>
74
74
  </div>
75
75
  </section>
76
+ <section class="tsd-panel tsd-type-parameters">
77
+ <h3>Type parameters</h3>
78
+ <ul class="tsd-type-parameters">
79
+ <li>
80
+ <h4>T = <span class="tsd-signature-type">string</span></h4>
81
+ </li>
82
+ </ul>
83
+ </section>
76
84
  <section class="tsd-panel tsd-hierarchy">
77
85
  <h3>Hierarchy</h3>
78
86
  <ul class="tsd-hierarchy">
79
87
  <li>
80
88
  <a href="uischemaelement.html" class="tsd-signature-type">UISchemaElement</a>
89
+ </li>
90
+ <li>
91
+ <a href="labeled.html" class="tsd-signature-type">Labeled</a>
81
92
  <ul class="tsd-hierarchy">
82
93
  <li>
83
94
  <span class="target">Categorization</span>
@@ -94,7 +105,7 @@
94
105
  <h3>Properties</h3>
95
106
  <ul class="tsd-index-list">
96
107
  <li class="tsd-kind-property tsd-parent-kind-interface"><a href="categorization.html#elements" class="tsd-kind-icon">elements</a></li>
97
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="categorization.html#label" class="tsd-kind-icon">label</a></li>
108
+ <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited"><a href="categorization.html#label" class="tsd-kind-icon">label</a></li>
98
109
  <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="categorization.html#options" class="tsd-kind-icon">options</a></li>
99
110
  <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="categorization.html#rule" class="tsd-kind-icon">rule</a></li>
100
111
  <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite"><a href="categorization.html#type" class="tsd-kind-icon">type</a></li>
@@ -111,7 +122,7 @@
111
122
  <div class="tsd-signature tsd-kind-icon">elements<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><a href="category.html" class="tsd-signature-type">Category</a><span class="tsd-signature-symbol"> | </span><a href="categorization.html" class="tsd-signature-type">Categorization</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></div>
112
123
  <aside class="tsd-sources">
113
124
  <ul>
114
- <li>Defined in packages/core/src/models/uischema.ts:244</li>
125
+ <li>Defined in packages/core/src/models/uischema.ts:265</li>
115
126
  </ul>
116
127
  </aside>
117
128
  <div class="tsd-comment tsd-typography">
@@ -121,20 +132,17 @@
121
132
  </div>
122
133
  </div>
123
134
  </section>
124
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
135
+ <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited">
125
136
  <a name="label" class="tsd-anchor"></a>
126
137
  <h3>label</h3>
127
- <div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
138
+ <div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">T</span></div>
128
139
  <aside class="tsd-sources">
140
+ <p>Inherited from <a href="labeled.html">Labeled</a>.<a href="labeled.html#label">label</a></p>
141
+ <p>Overrides <a href="lableable.html">Lableable</a>.<a href="lableable.html#label">label</a></p>
129
142
  <ul>
130
- <li>Defined in packages/core/src/models/uischema.ts:239</li>
143
+ <li>Defined in packages/core/src/models/uischema.ts:64</li>
131
144
  </ul>
132
145
  </aside>
133
- <div class="tsd-comment tsd-typography">
134
- <div class="lead">
135
- <p>The label of this categorization.</p>
136
- </div>
137
- </div>
138
146
  </section>
139
147
  <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
140
148
  <a name="options" class="tsd-anchor"></a>
@@ -143,7 +151,7 @@
143
151
  <aside class="tsd-sources">
144
152
  <p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#options">options</a></p>
145
153
  <ul>
146
- <li>Defined in packages/core/src/models/uischema.ts:141</li>
154
+ <li>Defined in packages/core/src/models/uischema.ts:178</li>
147
155
  </ul>
148
156
  </aside>
149
157
  <div class="tsd-comment tsd-typography">
@@ -167,7 +175,7 @@
167
175
  <aside class="tsd-sources">
168
176
  <p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#rule">rule</a></p>
169
177
  <ul>
170
- <li>Defined in packages/core/src/models/uischema.ts:136</li>
178
+ <li>Defined in packages/core/src/models/uischema.ts:173</li>
171
179
  </ul>
172
180
  </aside>
173
181
  <div class="tsd-comment tsd-typography">
@@ -183,7 +191,7 @@
183
191
  <aside class="tsd-sources">
184
192
  <p>Overrides <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#type">type</a></p>
185
193
  <ul>
186
- <li>Defined in packages/core/src/models/uischema.ts:235</li>
194
+ <li>Defined in packages/core/src/models/uischema.ts:260</li>
187
195
  </ul>
188
196
  </aside>
189
197
  </section>
@@ -201,13 +209,13 @@
201
209
  <ul class="before-current">
202
210
  </ul>
203
211
  <ul class="current">
204
- <li class="current tsd-kind-interface">
212
+ <li class="current tsd-kind-interface tsd-has-type-parameter">
205
213
  <a href="categorization.html" class="tsd-kind-icon">Categorization</a>
206
214
  <ul>
207
215
  <li class=" tsd-kind-property tsd-parent-kind-interface">
208
216
  <a href="categorization.html#elements" class="tsd-kind-icon">elements</a>
209
217
  </li>
210
- <li class=" tsd-kind-property tsd-parent-kind-interface">
218
+ <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited">
211
219
  <a href="categorization.html#label" class="tsd-kind-icon">label</a>
212
220
  </li>
213
221
  <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
@@ -57,7 +57,7 @@
57
57
  <a href="category.html">Category</a>
58
58
  </li>
59
59
  </ul>
60
- <h1>Interface Category</h1>
60
+ <h1>Interface Category&lt;T&gt;</h1>
61
61
  </div>
62
62
  </div>
63
63
  </header>
@@ -71,11 +71,22 @@
71
71
  </div>
72
72
  </div>
73
73
  </section>
74
+ <section class="tsd-panel tsd-type-parameters">
75
+ <h3>Type parameters</h3>
76
+ <ul class="tsd-type-parameters">
77
+ <li>
78
+ <h4>T = <span class="tsd-signature-type">string</span></h4>
79
+ </li>
80
+ </ul>
81
+ </section>
74
82
  <section class="tsd-panel tsd-hierarchy">
75
83
  <h3>Hierarchy</h3>
76
84
  <ul class="tsd-hierarchy">
77
85
  <li>
78
86
  <a href="layout.html" class="tsd-signature-type">Layout</a>
87
+ </li>
88
+ <li>
89
+ <a href="labeled.html" class="tsd-signature-type">Labeled</a>
79
90
  <ul class="tsd-hierarchy">
80
91
  <li>
81
92
  <span class="target">Category</span>
@@ -92,7 +103,7 @@
92
103
  <h3>Properties</h3>
93
104
  <ul class="tsd-index-list">
94
105
  <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="category.html#elements" class="tsd-kind-icon">elements</a></li>
95
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="category.html#label" class="tsd-kind-icon">label</a></li>
106
+ <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited"><a href="category.html#label" class="tsd-kind-icon">label</a></li>
96
107
  <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="category.html#options" class="tsd-kind-icon">options</a></li>
97
108
  <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="category.html#rule" class="tsd-kind-icon">rule</a></li>
98
109
  <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite"><a href="category.html#type" class="tsd-kind-icon">type</a></li>
@@ -110,7 +121,7 @@
110
121
  <aside class="tsd-sources">
111
122
  <p>Inherited from <a href="layout.html">Layout</a>.<a href="layout.html#elements">elements</a></p>
112
123
  <ul>
113
- <li>Defined in packages/core/src/models/uischema.ts:152</li>
124
+ <li>Defined in packages/core/src/models/uischema.ts:189</li>
114
125
  </ul>
115
126
  </aside>
116
127
  <div class="tsd-comment tsd-typography">
@@ -119,20 +130,17 @@
119
130
  </div>
120
131
  </div>
121
132
  </section>
122
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
133
+ <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited">
123
134
  <a name="label" class="tsd-anchor"></a>
124
135
  <h3>label</h3>
125
- <div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
136
+ <div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">T</span></div>
126
137
  <aside class="tsd-sources">
138
+ <p>Inherited from <a href="labeled.html">Labeled</a>.<a href="labeled.html#label">label</a></p>
139
+ <p>Overrides <a href="lableable.html">Lableable</a>.<a href="lableable.html#label">label</a></p>
127
140
  <ul>
128
- <li>Defined in packages/core/src/models/uischema.ts:226</li>
141
+ <li>Defined in packages/core/src/models/uischema.ts:64</li>
129
142
  </ul>
130
143
  </aside>
131
- <div class="tsd-comment tsd-typography">
132
- <div class="lead">
133
- <p>The label associated with this category layout.</p>
134
- </div>
135
- </div>
136
144
  </section>
137
145
  <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
138
146
  <a name="options" class="tsd-anchor"></a>
@@ -141,7 +149,7 @@
141
149
  <aside class="tsd-sources">
142
150
  <p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#options">options</a></p>
143
151
  <ul>
144
- <li>Defined in packages/core/src/models/uischema.ts:141</li>
152
+ <li>Defined in packages/core/src/models/uischema.ts:178</li>
145
153
  </ul>
146
154
  </aside>
147
155
  <div class="tsd-comment tsd-typography">
@@ -165,7 +173,7 @@
165
173
  <aside class="tsd-sources">
166
174
  <p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#rule">rule</a></p>
167
175
  <ul>
168
- <li>Defined in packages/core/src/models/uischema.ts:136</li>
176
+ <li>Defined in packages/core/src/models/uischema.ts:173</li>
169
177
  </ul>
170
178
  </aside>
171
179
  <div class="tsd-comment tsd-typography">
@@ -181,7 +189,7 @@
181
189
  <aside class="tsd-sources">
182
190
  <p>Overrides <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#type">type</a></p>
183
191
  <ul>
184
- <li>Defined in packages/core/src/models/uischema.ts:222</li>
192
+ <li>Defined in packages/core/src/models/uischema.ts:251</li>
185
193
  </ul>
186
194
  </aside>
187
195
  </section>
@@ -199,13 +207,13 @@
199
207
  <ul class="before-current">
200
208
  </ul>
201
209
  <ul class="current">
202
- <li class="current tsd-kind-interface">
210
+ <li class="current tsd-kind-interface tsd-has-type-parameter">
203
211
  <a href="category.html" class="tsd-kind-icon">Category</a>
204
212
  <ul>
205
213
  <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
206
214
  <a href="category.html#elements" class="tsd-kind-icon">elements</a>
207
215
  </li>
208
- <li class=" tsd-kind-property tsd-parent-kind-interface">
216
+ <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited">
209
217
  <a href="category.html#label" class="tsd-kind-icon">label</a>
210
218
  </li>
211
219
  <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
@@ -153,7 +153,7 @@
153
153
  <p>Inherited from <a href="statepropsofcombinator.html">StatePropsOfCombinator</a>.<a href="statepropsofcombinator.html#data">data</a></p>
154
154
  <p>Overrides <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#data">data</a></p>
155
155
  <ul>
156
- <li>Defined in packages/core/src/util/renderer.ts:925</li>
156
+ <li>Defined in packages/core/src/util/renderer.ts:928</li>
157
157
  </ul>
158
158
  </aside>
159
159
  </section>
@@ -213,7 +213,7 @@
213
213
  <p>Inherited from <a href="statepropsofcombinator.html">StatePropsOfCombinator</a>.<a href="statepropsofcombinator.html#id">id</a></p>
214
214
  <p>Overrides <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#id">id</a></p>
215
215
  <ul>
216
- <li>Defined in packages/core/src/util/renderer.ts:922</li>
216
+ <li>Defined in packages/core/src/util/renderer.ts:925</li>
217
217
  </ul>
218
218
  </aside>
219
219
  </section>
@@ -224,7 +224,7 @@
224
224
  <aside class="tsd-sources">
225
225
  <p>Inherited from <a href="statepropsofcombinator.html">StatePropsOfCombinator</a>.<a href="statepropsofcombinator.html#indexoffittingschema">indexOfFittingSchema</a></p>
226
226
  <ul>
227
- <li>Defined in packages/core/src/util/renderer.ts:923</li>
227
+ <li>Defined in packages/core/src/util/renderer.ts:926</li>
228
228
  </ul>
229
229
  </aside>
230
230
  </section>
@@ -252,7 +252,7 @@
252
252
  <p>Inherited from <a href="statepropsofcombinator.html">StatePropsOfCombinator</a>.<a href="statepropsofcombinator.html#path">path</a></p>
253
253
  <p>Overrides <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#path">path</a></p>
254
254
  <ul>
255
- <li>Defined in packages/core/src/util/renderer.ts:921</li>
255
+ <li>Defined in packages/core/src/util/renderer.ts:924</li>
256
256
  </ul>
257
257
  </aside>
258
258
  </section>
@@ -296,7 +296,7 @@
296
296
  <p>Inherited from <a href="statepropsofcombinator.html">StatePropsOfCombinator</a>.<a href="statepropsofcombinator.html#rootschema">rootSchema</a></p>
297
297
  <p>Overrides <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#rootschema">rootSchema</a></p>
298
298
  <ul>
299
- <li>Defined in packages/core/src/util/renderer.ts:920</li>
299
+ <li>Defined in packages/core/src/util/renderer.ts:923</li>
300
300
  </ul>
301
301
  </aside>
302
302
  </section>
@@ -335,7 +335,7 @@
335
335
  <aside class="tsd-sources">
336
336
  <p>Inherited from <a href="statepropsofcombinator.html">StatePropsOfCombinator</a>.<a href="statepropsofcombinator.html#uischemas">uischemas</a></p>
337
337
  <ul>
338
- <li>Defined in packages/core/src/util/renderer.ts:924</li>
338
+ <li>Defined in packages/core/src/util/renderer.ts:927</li>
339
339
  </ul>
340
340
  </aside>
341
341
  </section>
@@ -114,7 +114,7 @@
114
114
  <div class="tsd-signature tsd-kind-icon">conditions<span class="tsd-signature-symbol">:</span> <a href="condition.html" class="tsd-signature-type">Condition</a><span class="tsd-signature-symbol">[]</span></div>
115
115
  <aside class="tsd-sources">
116
116
  <ul>
117
- <li>Defined in packages/core/src/models/uischema.ts:107</li>
117
+ <li>Defined in packages/core/src/models/uischema.ts:144</li>
118
118
  </ul>
119
119
  </aside>
120
120
  </section>
@@ -125,7 +125,7 @@
125
125
  <aside class="tsd-sources">
126
126
  <p>Inherited from <a href="condition.html">Condition</a>.<a href="condition.html#type">type</a></p>
127
127
  <ul>
128
- <li>Defined in packages/core/src/models/uischema.ts:84</li>
128
+ <li>Defined in packages/core/src/models/uischema.ts:121</li>
129
129
  </ul>
130
130
  </aside>
131
131
  <div class="tsd-comment tsd-typography">
@@ -111,7 +111,7 @@
111
111
  <div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
112
112
  <aside class="tsd-sources">
113
113
  <ul>
114
- <li>Defined in packages/core/src/models/uischema.ts:84</li>
114
+ <li>Defined in packages/core/src/models/uischema.ts:121</li>
115
115
  </ul>
116
116
  </aside>
117
117
  <div class="tsd-comment tsd-typography">