@jsonforms/core 3.0.0-beta.4 → 3.0.0-rc.1
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/enums/ruleeffect.html +4 -4
- package/docs/globals.html +335 -110
- package/docs/index.html +43 -4
- package/docs/interfaces/andcondition.html +2 -2
- package/docs/interfaces/arraycontrolprops.html +21 -21
- package/docs/interfaces/arraylayoutprops.html +21 -21
- package/docs/interfaces/categorization.html +24 -16
- package/docs/interfaces/category.html +24 -16
- package/docs/interfaces/cellprops.html +12 -12
- package/docs/interfaces/combinatorrendererprops.html +18 -18
- package/docs/interfaces/composablecondition.html +2 -2
- package/docs/interfaces/condition.html +1 -1
- package/docs/interfaces/controlelement.html +21 -16
- package/docs/interfaces/controlprops.html +16 -16
- package/docs/interfaces/controlstate.html +2 -2
- package/docs/interfaces/controlwithdetailprops.html +17 -17
- package/docs/interfaces/dispatchcellprops.html +10 -10
- package/docs/interfaces/dispatchcellstateprops.html +10 -10
- package/docs/interfaces/dispatchpropsofarraycontrol.html +4 -4
- package/docs/interfaces/dispatchpropsofcontrol.html +1 -1
- package/docs/interfaces/dispatchpropsofmultienumcontrol.html +2 -2
- package/docs/interfaces/enumcellprops.html +13 -13
- package/docs/interfaces/enumoption.html +2 -2
- package/docs/interfaces/grouplayout.html +24 -12
- package/docs/interfaces/horizontallayout.html +4 -4
- package/docs/interfaces/internationalizable.html +4 -10
- package/docs/interfaces/jsonformsprops.html +24 -9
- package/docs/interfaces/labelable.html +184 -0
- package/docs/interfaces/labeldescription.html +2 -2
- package/docs/interfaces/labeled.html +182 -0
- package/docs/interfaces/labelelement.html +22 -4
- package/docs/interfaces/labelprops.html +339 -0
- package/docs/interfaces/layout.html +4 -4
- package/docs/interfaces/layoutprops.html +25 -10
- package/docs/interfaces/leafcondition.html +9 -8
- package/docs/interfaces/orcondition.html +2 -2
- package/docs/interfaces/ownpropsofcell.html +9 -9
- package/docs/interfaces/ownpropsofcontrol.html +9 -9
- package/docs/interfaces/ownpropsofenum.html +1 -1
- package/docs/interfaces/ownpropsofenumcell.html +10 -10
- package/docs/interfaces/ownpropsofjsonformsrenderer.html +8 -8
- package/docs/interfaces/ownpropsoflabel.html +286 -0
- package/docs/interfaces/ownpropsoflayout.html +9 -9
- package/docs/interfaces/ownpropsofmasterlistitem.html +6 -6
- package/docs/interfaces/ownpropsofrenderer.html +11 -8
- package/docs/interfaces/rendererprops.html +9 -9
- package/docs/interfaces/rule.html +2 -2
- package/docs/interfaces/schemabasedcondition.html +9 -8
- package/docs/interfaces/scopable.html +3 -9
- package/docs/interfaces/scoped.html +183 -0
- package/docs/interfaces/statepropsofarraycontrol.html +17 -17
- package/docs/interfaces/statepropsofarraylayout.html +17 -17
- package/docs/interfaces/statepropsofcell.html +11 -11
- package/docs/interfaces/statepropsofcombinator.html +17 -17
- package/docs/interfaces/statepropsofcontrol.html +15 -15
- package/docs/interfaces/statepropsofcontrolwithdetail.html +16 -16
- package/docs/interfaces/statepropsofenumcell.html +12 -12
- package/docs/interfaces/statepropsofjsonformsrenderer.html +23 -9
- package/docs/interfaces/statepropsoflabel.html +343 -0
- package/docs/interfaces/statepropsoflayout.html +24 -10
- package/docs/interfaces/statepropsofmasteritem.html +7 -7
- package/docs/interfaces/statepropsofrenderer.html +12 -9
- package/docs/interfaces/statepropsofscopedrenderer.html +12 -12
- package/docs/interfaces/testercontext.html +184 -0
- package/docs/interfaces/uischemaelement.html +3 -3
- package/docs/interfaces/verticallayout.html +4 -4
- package/docs/interfaces/withclassname.html +1 -1
- package/lib/i18n/i18nUtil.d.ts +9 -4
- package/lib/jsonforms-core.cjs.js +103 -49
- package/lib/jsonforms-core.cjs.js.map +1 -1
- package/lib/jsonforms-core.esm.js +89 -52
- package/lib/jsonforms-core.esm.js.map +1 -1
- package/lib/models/uischema.d.ts +35 -27
- package/lib/reducers/i18n.d.ts +1 -1
- package/lib/testers/testers.d.ts +15 -6
- package/lib/util/renderer.d.ts +18 -1
- package/lib/util/runtime.d.ts +1 -2
- package/lib/util/util.d.ts +6 -6
- package/package.json +2 -2
- package/src/i18n/i18nUtil.ts +24 -7
- package/src/models/uischema.ts +50 -27
- package/src/reducers/i18n.ts +1 -1
- package/src/testers/testers.ts +44 -34
- package/src/util/path.ts +9 -5
- package/src/util/renderer.ts +61 -28
- package/src/util/runtime.ts +1 -1
- package/src/util/util.ts +8 -8
- package/stats.html +1 -1
- package/test/testers.test.ts +95 -23
- package/test/util/renderer.test.ts +105 -7
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
<a href="category.html">Category</a>
|
|
58
58
|
</li>
|
|
59
59
|
</ul>
|
|
60
|
-
<h1>Interface Category
|
|
60
|
+
<h1>Interface Category<T></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:
|
|
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="labelable.html">Labelable</a>.<a href="labelable.html#label">label</a></p>
|
|
127
140
|
<ul>
|
|
128
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
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:
|
|
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:
|
|
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:
|
|
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">
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
<aside class="tsd-sources">
|
|
128
128
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#cells">cells</a></p>
|
|
129
129
|
<ul>
|
|
130
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
130
|
+
<li>Defined in packages/core/src/util/renderer.ts:316</li>
|
|
131
131
|
</ul>
|
|
132
132
|
</aside>
|
|
133
133
|
<div class="tsd-comment tsd-typography">
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<aside class="tsd-sources">
|
|
144
144
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#config">config</a></p>
|
|
145
145
|
<ul>
|
|
146
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
146
|
+
<li>Defined in packages/core/src/util/renderer.ts:276</li>
|
|
147
147
|
</ul>
|
|
148
148
|
</aside>
|
|
149
149
|
<div class="tsd-comment tsd-typography">
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
<p>Inherited from <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#data">data</a></p>
|
|
161
161
|
<p>Overrides <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#data">data</a></p>
|
|
162
162
|
<ul>
|
|
163
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
163
|
+
<li>Defined in packages/core/src/util/renderer.ts:334</li>
|
|
164
164
|
</ul>
|
|
165
165
|
</aside>
|
|
166
166
|
<div class="tsd-comment tsd-typography">
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
<aside class="tsd-sources">
|
|
177
177
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#enabled">enabled</a></p>
|
|
178
178
|
<ul>
|
|
179
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
179
|
+
<li>Defined in packages/core/src/util/renderer.ts:296</li>
|
|
180
180
|
</ul>
|
|
181
181
|
</aside>
|
|
182
182
|
<div class="tsd-comment tsd-typography">
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
<aside class="tsd-sources">
|
|
193
193
|
<p>Inherited from <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#errors">errors</a></p>
|
|
194
194
|
<ul>
|
|
195
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
195
|
+
<li>Defined in packages/core/src/util/renderer.ts:329</li>
|
|
196
196
|
</ul>
|
|
197
197
|
</aside>
|
|
198
198
|
<div class="tsd-comment tsd-typography">
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
<aside class="tsd-sources">
|
|
209
209
|
<p>Inherited from <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#id">id</a></p>
|
|
210
210
|
<ul>
|
|
211
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
211
|
+
<li>Defined in packages/core/src/util/renderer.ts:344</li>
|
|
212
212
|
</ul>
|
|
213
213
|
</aside>
|
|
214
214
|
<div class="tsd-comment tsd-typography">
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
<aside class="tsd-sources">
|
|
236
236
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#path">path</a></p>
|
|
237
237
|
<ul>
|
|
238
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
238
|
+
<li>Defined in packages/core/src/util/renderer.ts:305</li>
|
|
239
239
|
</ul>
|
|
240
240
|
</aside>
|
|
241
241
|
<div class="tsd-comment tsd-typography">
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
<aside class="tsd-sources">
|
|
252
252
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#renderers">renderers</a></p>
|
|
253
253
|
<ul>
|
|
254
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
254
|
+
<li>Defined in packages/core/src/util/renderer.ts:310</li>
|
|
255
255
|
</ul>
|
|
256
256
|
</aside>
|
|
257
257
|
<div class="tsd-comment tsd-typography">
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
<aside class="tsd-sources">
|
|
280
280
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#schema">schema</a></p>
|
|
281
281
|
<ul>
|
|
282
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
282
|
+
<li>Defined in packages/core/src/util/renderer.ts:286</li>
|
|
283
283
|
</ul>
|
|
284
284
|
</aside>
|
|
285
285
|
<div class="tsd-comment tsd-typography">
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
<p>Inherited from <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#uischema">uischema</a></p>
|
|
297
297
|
<p>Overrides <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#uischema">uischema</a></p>
|
|
298
298
|
<ul>
|
|
299
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
299
|
+
<li>Defined in packages/core/src/util/renderer.ts:324</li>
|
|
300
300
|
</ul>
|
|
301
301
|
</aside>
|
|
302
302
|
</section>
|
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
<aside class="tsd-sources">
|
|
308
308
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#visible">visible</a></p>
|
|
309
309
|
<ul>
|
|
310
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
310
|
+
<li>Defined in packages/core/src/util/renderer.ts:300</li>
|
|
311
311
|
</ul>
|
|
312
312
|
</aside>
|
|
313
313
|
<div class="tsd-comment tsd-typography">
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
<aside class="tsd-sources">
|
|
331
331
|
<p>Inherited from <a href="dispatchpropsofcontrol.html">DispatchPropsOfControl</a>.<a href="dispatchpropsofcontrol.html#handlechange">handleChange</a></p>
|
|
332
332
|
<ul>
|
|
333
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
333
|
+
<li>Defined in packages/core/src/util/renderer.ts:386</li>
|
|
334
334
|
</ul>
|
|
335
335
|
</aside>
|
|
336
336
|
<div class="tsd-comment tsd-typography">
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
<p>Inherited from <a href="statepropsofcontrol.html">StatePropsOfControl</a>.<a href="statepropsofcontrol.html#cells">cells</a></p>
|
|
126
126
|
<p>Overrides <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#cells">cells</a></p>
|
|
127
127
|
<ul>
|
|
128
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
128
|
+
<li>Defined in packages/core/src/util/renderer.ts:356</li>
|
|
129
129
|
</ul>
|
|
130
130
|
</aside>
|
|
131
131
|
</section>
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
<aside class="tsd-sources">
|
|
137
137
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#config">config</a></p>
|
|
138
138
|
<ul>
|
|
139
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
139
|
+
<li>Defined in packages/core/src/util/renderer.ts:276</li>
|
|
140
140
|
</ul>
|
|
141
141
|
</aside>
|
|
142
142
|
<div class="tsd-comment tsd-typography">
|
|
@@ -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:
|
|
156
|
+
<li>Defined in packages/core/src/util/renderer.ts:923</li>
|
|
157
157
|
</ul>
|
|
158
158
|
</aside>
|
|
159
159
|
</section>
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
<aside class="tsd-sources">
|
|
165
165
|
<p>Inherited from <a href="statepropsofcontrol.html">StatePropsOfControl</a>.<a href="statepropsofcontrol.html#description">description</a></p>
|
|
166
166
|
<ul>
|
|
167
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
167
|
+
<li>Defined in packages/core/src/util/renderer.ts:366</li>
|
|
168
168
|
</ul>
|
|
169
169
|
</aside>
|
|
170
170
|
<div class="tsd-comment tsd-typography">
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
<aside class="tsd-sources">
|
|
181
181
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#enabled">enabled</a></p>
|
|
182
182
|
<ul>
|
|
183
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
183
|
+
<li>Defined in packages/core/src/util/renderer.ts:296</li>
|
|
184
184
|
</ul>
|
|
185
185
|
</aside>
|
|
186
186
|
<div class="tsd-comment tsd-typography">
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
<aside class="tsd-sources">
|
|
197
197
|
<p>Inherited from <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#errors">errors</a></p>
|
|
198
198
|
<ul>
|
|
199
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
199
|
+
<li>Defined in packages/core/src/util/renderer.ts:329</li>
|
|
200
200
|
</ul>
|
|
201
201
|
</aside>
|
|
202
202
|
<div class="tsd-comment tsd-typography">
|
|
@@ -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:
|
|
216
|
+
<li>Defined in packages/core/src/util/renderer.ts:920</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:
|
|
227
|
+
<li>Defined in packages/core/src/util/renderer.ts:921</li>
|
|
228
228
|
</ul>
|
|
229
229
|
</aside>
|
|
230
230
|
</section>
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
<aside class="tsd-sources">
|
|
236
236
|
<p>Inherited from <a href="statepropsofcontrol.html">StatePropsOfControl</a>.<a href="statepropsofcontrol.html#label">label</a></p>
|
|
237
237
|
<ul>
|
|
238
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
238
|
+
<li>Defined in packages/core/src/util/renderer.ts:361</li>
|
|
239
239
|
</ul>
|
|
240
240
|
</aside>
|
|
241
241
|
<div class="tsd-comment tsd-typography">
|
|
@@ -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:
|
|
255
|
+
<li>Defined in packages/core/src/util/renderer.ts:919</li>
|
|
256
256
|
</ul>
|
|
257
257
|
</aside>
|
|
258
258
|
</section>
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
<aside class="tsd-sources">
|
|
264
264
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#renderers">renderers</a></p>
|
|
265
265
|
<ul>
|
|
266
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
266
|
+
<li>Defined in packages/core/src/util/renderer.ts:310</li>
|
|
267
267
|
</ul>
|
|
268
268
|
</aside>
|
|
269
269
|
<div class="tsd-comment tsd-typography">
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
<aside class="tsd-sources">
|
|
280
280
|
<p>Inherited from <a href="statepropsofcontrol.html">StatePropsOfControl</a>.<a href="statepropsofcontrol.html#required">required</a></p>
|
|
281
281
|
<ul>
|
|
282
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
282
|
+
<li>Defined in packages/core/src/util/renderer.ts:371</li>
|
|
283
283
|
</ul>
|
|
284
284
|
</aside>
|
|
285
285
|
<div class="tsd-comment tsd-typography">
|
|
@@ -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:
|
|
299
|
+
<li>Defined in packages/core/src/util/renderer.ts:918</li>
|
|
300
300
|
</ul>
|
|
301
301
|
</aside>
|
|
302
302
|
</section>
|
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
<aside class="tsd-sources">
|
|
308
308
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#schema">schema</a></p>
|
|
309
309
|
<ul>
|
|
310
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
310
|
+
<li>Defined in packages/core/src/util/renderer.ts:286</li>
|
|
311
311
|
</ul>
|
|
312
312
|
</aside>
|
|
313
313
|
<div class="tsd-comment tsd-typography">
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
<p>Inherited from <a href="statepropsofscopedrenderer.html">StatePropsOfScopedRenderer</a>.<a href="statepropsofscopedrenderer.html#uischema">uischema</a></p>
|
|
325
325
|
<p>Overrides <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#uischema">uischema</a></p>
|
|
326
326
|
<ul>
|
|
327
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
327
|
+
<li>Defined in packages/core/src/util/renderer.ts:324</li>
|
|
328
328
|
</ul>
|
|
329
329
|
</aside>
|
|
330
330
|
</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:
|
|
338
|
+
<li>Defined in packages/core/src/util/renderer.ts:922</li>
|
|
339
339
|
</ul>
|
|
340
340
|
</aside>
|
|
341
341
|
</section>
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
<aside class="tsd-sources">
|
|
347
347
|
<p>Inherited from <a href="statepropsofrenderer.html">StatePropsOfRenderer</a>.<a href="statepropsofrenderer.html#visible">visible</a></p>
|
|
348
348
|
<ul>
|
|
349
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
349
|
+
<li>Defined in packages/core/src/util/renderer.ts:300</li>
|
|
350
350
|
</ul>
|
|
351
351
|
</aside>
|
|
352
352
|
<div class="tsd-comment tsd-typography">
|
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
<aside class="tsd-sources">
|
|
370
370
|
<p>Inherited from <a href="dispatchpropsofcontrol.html">DispatchPropsOfControl</a>.<a href="dispatchpropsofcontrol.html#handlechange">handleChange</a></p>
|
|
371
371
|
<ul>
|
|
372
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
372
|
+
<li>Defined in packages/core/src/util/renderer.ts:386</li>
|
|
373
373
|
</ul>
|
|
374
374
|
</aside>
|
|
375
375
|
<div class="tsd-comment tsd-typography">
|
|
@@ -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:
|
|
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:
|
|
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:
|
|
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">
|
|
@@ -79,7 +79,10 @@
|
|
|
79
79
|
<a href="uischemaelement.html" class="tsd-signature-type">UISchemaElement</a>
|
|
80
80
|
</li>
|
|
81
81
|
<li>
|
|
82
|
-
<a href="
|
|
82
|
+
<a href="scoped.html" class="tsd-signature-type">Scoped</a>
|
|
83
|
+
</li>
|
|
84
|
+
<li>
|
|
85
|
+
<a href="labelable.html" class="tsd-signature-type">Labelable</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="labeldescription.html" class="tsd-signature-type">LabelDescription</a><span class="tsd-signature-symbol">></span>
|
|
83
86
|
</li>
|
|
84
87
|
<li>
|
|
85
88
|
<a href="internationalizable.html" class="tsd-signature-type">Internationalizable</a>
|
|
@@ -99,10 +102,10 @@
|
|
|
99
102
|
<h3>Properties</h3>
|
|
100
103
|
<ul class="tsd-index-list">
|
|
101
104
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="controlelement.html#i18n" class="tsd-kind-icon">i18n</a></li>
|
|
102
|
-
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="controlelement.html#label" class="tsd-kind-icon">label</a></li>
|
|
105
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="controlelement.html#label" class="tsd-kind-icon">label</a></li>
|
|
103
106
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="controlelement.html#options" class="tsd-kind-icon">options</a></li>
|
|
104
107
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="controlelement.html#rule" class="tsd-kind-icon">rule</a></li>
|
|
105
|
-
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="controlelement.html#scope" class="tsd-kind-icon">scope</a></li>
|
|
108
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited"><a href="controlelement.html#scope" class="tsd-kind-icon">scope</a></li>
|
|
106
109
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite"><a href="controlelement.html#type" class="tsd-kind-icon">type</a></li>
|
|
107
110
|
</ul>
|
|
108
111
|
</section>
|
|
@@ -118,22 +121,23 @@
|
|
|
118
121
|
<aside class="tsd-sources">
|
|
119
122
|
<p>Inherited from <a href="internationalizable.html">Internationalizable</a>.<a href="internationalizable.html#i18n">i18n</a></p>
|
|
120
123
|
<ul>
|
|
121
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
124
|
+
<li>Defined in packages/core/src/models/uischema.ts:73</li>
|
|
122
125
|
</ul>
|
|
123
126
|
</aside>
|
|
124
127
|
</section>
|
|
125
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
|
|
128
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
126
129
|
<a name="label" class="tsd-anchor"></a>
|
|
127
130
|
<h3><span class="tsd-flag ts-flagOptional">Optional</span> label</h3>
|
|
128
|
-
<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">boolean</span><span class="tsd-signature-symbol"> | </span><a href="labeldescription.html" class="tsd-signature-type">LabelDescription</a></div>
|
|
131
|
+
<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-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="labeldescription.html" class="tsd-signature-type">LabelDescription</a><span class="tsd-signature-symbol">)</span></div>
|
|
129
132
|
<aside class="tsd-sources">
|
|
133
|
+
<p>Inherited from <a href="labelable.html">Labelable</a>.<a href="labelable.html#label">label</a></p>
|
|
130
134
|
<ul>
|
|
131
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
135
|
+
<li>Defined in packages/core/src/models/uischema.ts:57</li>
|
|
132
136
|
</ul>
|
|
133
137
|
</aside>
|
|
134
138
|
<div class="tsd-comment tsd-typography">
|
|
135
139
|
<div class="lead">
|
|
136
|
-
<p>
|
|
140
|
+
<p>Label for UI schema element.</p>
|
|
137
141
|
</div>
|
|
138
142
|
</div>
|
|
139
143
|
</section>
|
|
@@ -144,7 +148,7 @@
|
|
|
144
148
|
<aside class="tsd-sources">
|
|
145
149
|
<p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#options">options</a></p>
|
|
146
150
|
<ul>
|
|
147
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
151
|
+
<li>Defined in packages/core/src/models/uischema.ts:178</li>
|
|
148
152
|
</ul>
|
|
149
153
|
</aside>
|
|
150
154
|
<div class="tsd-comment tsd-typography">
|
|
@@ -168,7 +172,7 @@
|
|
|
168
172
|
<aside class="tsd-sources">
|
|
169
173
|
<p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#rule">rule</a></p>
|
|
170
174
|
<ul>
|
|
171
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
175
|
+
<li>Defined in packages/core/src/models/uischema.ts:173</li>
|
|
172
176
|
</ul>
|
|
173
177
|
</aside>
|
|
174
178
|
<div class="tsd-comment tsd-typography">
|
|
@@ -177,14 +181,15 @@
|
|
|
177
181
|
</div>
|
|
178
182
|
</div>
|
|
179
183
|
</section>
|
|
180
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
184
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited">
|
|
181
185
|
<a name="scope" class="tsd-anchor"></a>
|
|
182
186
|
<h3>scope</h3>
|
|
183
187
|
<div class="tsd-signature tsd-kind-icon">scope<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
184
188
|
<aside class="tsd-sources">
|
|
185
|
-
<p>Inherited from <a href="
|
|
189
|
+
<p>Inherited from <a href="scoped.html">Scoped</a>.<a href="scoped.html#scope">scope</a></p>
|
|
190
|
+
<p>Overrides <a href="scopable.html">Scopable</a>.<a href="scopable.html#scope">scope</a></p>
|
|
186
191
|
<ul>
|
|
187
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
192
|
+
<li>Defined in packages/core/src/models/uischema.ts:47</li>
|
|
188
193
|
</ul>
|
|
189
194
|
</aside>
|
|
190
195
|
<div class="tsd-comment tsd-typography">
|
|
@@ -200,7 +205,7 @@
|
|
|
200
205
|
<aside class="tsd-sources">
|
|
201
206
|
<p>Overrides <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#type">type</a></p>
|
|
202
207
|
<ul>
|
|
203
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
208
|
+
<li>Defined in packages/core/src/models/uischema.ts:244</li>
|
|
204
209
|
</ul>
|
|
205
210
|
</aside>
|
|
206
211
|
</section>
|
|
@@ -224,7 +229,7 @@
|
|
|
224
229
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
225
230
|
<a href="controlelement.html#i18n" class="tsd-kind-icon">i18n</a>
|
|
226
231
|
</li>
|
|
227
|
-
<li class=" tsd-kind-property tsd-parent-kind-interface">
|
|
232
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
228
233
|
<a href="controlelement.html#label" class="tsd-kind-icon">label</a>
|
|
229
234
|
</li>
|
|
230
235
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
@@ -233,7 +238,7 @@
|
|
|
233
238
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
234
239
|
<a href="controlelement.html#rule" class="tsd-kind-icon">rule</a>
|
|
235
240
|
</li>
|
|
236
|
-
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
241
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite tsd-is-inherited">
|
|
237
242
|
<a href="controlelement.html#scope" class="tsd-kind-icon">scope</a>
|
|
238
243
|
</li>
|
|
239
244
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite">
|