@jsonforms/core 3.0.0-beta.4 → 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.
- package/docs/assets/js/search.json +1 -1
- package/docs/enums/ruleeffect.html +4 -4
- package/docs/globals.html +149 -29
- package/docs/index.html +25 -4
- package/docs/interfaces/andcondition.html +2 -2
- package/docs/interfaces/categorization.html +24 -16
- package/docs/interfaces/category.html +24 -16
- package/docs/interfaces/composablecondition.html +2 -2
- package/docs/interfaces/condition.html +1 -1
- package/docs/interfaces/controlelement.html +21 -16
- package/docs/interfaces/grouplayout.html +24 -12
- package/docs/interfaces/horizontallayout.html +4 -4
- package/docs/interfaces/internationalizable.html +1 -10
- package/docs/interfaces/labeldescription.html +2 -2
- package/docs/interfaces/labeled.html +182 -0
- package/docs/interfaces/labelelement.html +4 -4
- package/docs/interfaces/lableable.html +184 -0
- package/docs/interfaces/layout.html +4 -4
- package/docs/interfaces/leafcondition.html +9 -8
- package/docs/interfaces/orcondition.html +2 -2
- 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/uischemaelement.html +3 -3
- package/docs/interfaces/verticallayout.html +4 -4
- package/lib/jsonforms-core.cjs.js +33 -16
- package/lib/jsonforms-core.cjs.js.map +1 -1
- package/lib/jsonforms-core.esm.js +23 -20
- package/lib/jsonforms-core.esm.js.map +1 -1
- package/lib/models/uischema.d.ts +34 -26
- package/lib/util/runtime.d.ts +1 -2
- package/lib/util/util.d.ts +6 -6
- package/package.json +2 -2
- package/src/models/uischema.ts +49 -26
- package/src/testers/testers.ts +9 -12
- package/src/util/path.ts +9 -5
- package/src/util/runtime.ts +1 -1
- package/src/util/util.ts +8 -8
- package/stats.html +1 -1
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
<a href="categorization.html">Categorization</a>
|
|
58
58
|
</li>
|
|
59
59
|
</ul>
|
|
60
|
-
<h1>Interface Categorization
|
|
60
|
+
<h1>Interface Categorization<T></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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
|
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="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:
|
|
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">
|
|
@@ -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="lableable.html" class="tsd-signature-type">Lableable</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="lableable.html">Lableable</a>.<a href="lableable.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">
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
<a href="grouplayout.html">GroupLayout</a>
|
|
58
58
|
</li>
|
|
59
59
|
</ul>
|
|
60
|
-
<h1>Interface GroupLayout
|
|
60
|
+
<h1>Interface GroupLayout<T></h1>
|
|
61
61
|
</div>
|
|
62
62
|
</div>
|
|
63
63
|
</header>
|
|
@@ -72,11 +72,22 @@
|
|
|
72
72
|
</div>
|
|
73
73
|
</div>
|
|
74
74
|
</section>
|
|
75
|
+
<section class="tsd-panel tsd-type-parameters">
|
|
76
|
+
<h3>Type parameters</h3>
|
|
77
|
+
<ul class="tsd-type-parameters">
|
|
78
|
+
<li>
|
|
79
|
+
<h4>T = <span class="tsd-signature-type">string</span></h4>
|
|
80
|
+
</li>
|
|
81
|
+
</ul>
|
|
82
|
+
</section>
|
|
75
83
|
<section class="tsd-panel tsd-hierarchy">
|
|
76
84
|
<h3>Hierarchy</h3>
|
|
77
85
|
<ul class="tsd-hierarchy">
|
|
78
86
|
<li>
|
|
79
87
|
<a href="layout.html" class="tsd-signature-type">Layout</a>
|
|
88
|
+
</li>
|
|
89
|
+
<li>
|
|
90
|
+
<a href="lableable.html" class="tsd-signature-type">Lableable</a>
|
|
80
91
|
<ul class="tsd-hierarchy">
|
|
81
92
|
<li>
|
|
82
93
|
<span class="target">GroupLayout</span>
|
|
@@ -93,7 +104,7 @@
|
|
|
93
104
|
<h3>Properties</h3>
|
|
94
105
|
<ul class="tsd-index-list">
|
|
95
106
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="grouplayout.html#elements" class="tsd-kind-icon">elements</a></li>
|
|
96
|
-
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="grouplayout.html#label" class="tsd-kind-icon">label</a></li>
|
|
107
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="grouplayout.html#label" class="tsd-kind-icon">label</a></li>
|
|
97
108
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="grouplayout.html#options" class="tsd-kind-icon">options</a></li>
|
|
98
109
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="grouplayout.html#rule" class="tsd-kind-icon">rule</a></li>
|
|
99
110
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite"><a href="grouplayout.html#type" class="tsd-kind-icon">type</a></li>
|
|
@@ -111,7 +122,7 @@
|
|
|
111
122
|
<aside class="tsd-sources">
|
|
112
123
|
<p>Inherited from <a href="layout.html">Layout</a>.<a href="layout.html#elements">elements</a></p>
|
|
113
124
|
<ul>
|
|
114
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
125
|
+
<li>Defined in packages/core/src/models/uischema.ts:189</li>
|
|
115
126
|
</ul>
|
|
116
127
|
</aside>
|
|
117
128
|
<div class="tsd-comment tsd-typography">
|
|
@@ -120,18 +131,19 @@
|
|
|
120
131
|
</div>
|
|
121
132
|
</div>
|
|
122
133
|
</section>
|
|
123
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
|
|
134
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
124
135
|
<a name="label" class="tsd-anchor"></a>
|
|
125
136
|
<h3><span class="tsd-flag ts-flagOptional">Optional</span> label</h3>
|
|
126
|
-
<div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
137
|
+
<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>
|
|
127
138
|
<aside class="tsd-sources">
|
|
139
|
+
<p>Inherited from <a href="lableable.html">Lableable</a>.<a href="lableable.html#label">label</a></p>
|
|
128
140
|
<ul>
|
|
129
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
141
|
+
<li>Defined in packages/core/src/models/uischema.ts:57</li>
|
|
130
142
|
</ul>
|
|
131
143
|
</aside>
|
|
132
144
|
<div class="tsd-comment tsd-typography">
|
|
133
145
|
<div class="lead">
|
|
134
|
-
<p>
|
|
146
|
+
<p>Label for UI schema element.</p>
|
|
135
147
|
</div>
|
|
136
148
|
</div>
|
|
137
149
|
</section>
|
|
@@ -142,7 +154,7 @@
|
|
|
142
154
|
<aside class="tsd-sources">
|
|
143
155
|
<p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#options">options</a></p>
|
|
144
156
|
<ul>
|
|
145
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
157
|
+
<li>Defined in packages/core/src/models/uischema.ts:178</li>
|
|
146
158
|
</ul>
|
|
147
159
|
</aside>
|
|
148
160
|
<div class="tsd-comment tsd-typography">
|
|
@@ -166,7 +178,7 @@
|
|
|
166
178
|
<aside class="tsd-sources">
|
|
167
179
|
<p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#rule">rule</a></p>
|
|
168
180
|
<ul>
|
|
169
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
181
|
+
<li>Defined in packages/core/src/models/uischema.ts:173</li>
|
|
170
182
|
</ul>
|
|
171
183
|
</aside>
|
|
172
184
|
<div class="tsd-comment tsd-typography">
|
|
@@ -182,7 +194,7 @@
|
|
|
182
194
|
<aside class="tsd-sources">
|
|
183
195
|
<p>Overrides <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#type">type</a></p>
|
|
184
196
|
<ul>
|
|
185
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
197
|
+
<li>Defined in packages/core/src/models/uischema.ts:211</li>
|
|
186
198
|
</ul>
|
|
187
199
|
</aside>
|
|
188
200
|
</section>
|
|
@@ -200,13 +212,13 @@
|
|
|
200
212
|
<ul class="before-current">
|
|
201
213
|
</ul>
|
|
202
214
|
<ul class="current">
|
|
203
|
-
<li class="current tsd-kind-interface">
|
|
215
|
+
<li class="current tsd-kind-interface tsd-has-type-parameter">
|
|
204
216
|
<a href="grouplayout.html" class="tsd-kind-icon">Group<wbr>Layout</a>
|
|
205
217
|
<ul>
|
|
206
218
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
207
219
|
<a href="grouplayout.html#elements" class="tsd-kind-icon">elements</a>
|
|
208
220
|
</li>
|
|
209
|
-
<li class=" tsd-kind-property tsd-parent-kind-interface">
|
|
221
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
210
222
|
<a href="grouplayout.html#label" class="tsd-kind-icon">label</a>
|
|
211
223
|
</li>
|
|
212
224
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
<aside class="tsd-sources">
|
|
110
110
|
<p>Inherited from <a href="layout.html">Layout</a>.<a href="layout.html#elements">elements</a></p>
|
|
111
111
|
<ul>
|
|
112
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
112
|
+
<li>Defined in packages/core/src/models/uischema.ts:189</li>
|
|
113
113
|
</ul>
|
|
114
114
|
</aside>
|
|
115
115
|
<div class="tsd-comment tsd-typography">
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
<aside class="tsd-sources">
|
|
126
126
|
<p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#options">options</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:178</li>
|
|
129
129
|
</ul>
|
|
130
130
|
</aside>
|
|
131
131
|
<div class="tsd-comment tsd-typography">
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
<aside class="tsd-sources">
|
|
150
150
|
<p>Inherited from <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#rule">rule</a></p>
|
|
151
151
|
<ul>
|
|
152
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
152
|
+
<li>Defined in packages/core/src/models/uischema.ts:173</li>
|
|
153
153
|
</ul>
|
|
154
154
|
</aside>
|
|
155
155
|
<div class="tsd-comment tsd-typography">
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
<aside class="tsd-sources">
|
|
166
166
|
<p>Overrides <a href="uischemaelement.html">UISchemaElement</a>.<a href="uischemaelement.html#type">type</a></p>
|
|
167
167
|
<ul>
|
|
168
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
168
|
+
<li>Defined in packages/core/src/models/uischema.ts:203</li>
|
|
169
169
|
</ul>
|
|
170
170
|
</aside>
|
|
171
171
|
</section>
|
|
@@ -64,15 +64,6 @@
|
|
|
64
64
|
<div class="container container-main">
|
|
65
65
|
<div class="row">
|
|
66
66
|
<div class="col-8 col-content">
|
|
67
|
-
<section class="tsd-panel tsd-comment">
|
|
68
|
-
<div class="tsd-comment tsd-typography">
|
|
69
|
-
<div class="lead">
|
|
70
|
-
<p>Interface for describing an UI schema element that can provide an internationalization base key.
|
|
71
|
-
If defined, this key is suffixed to derive applicable message keys for the UI schema element.
|
|
72
|
-
For example, such suffixes are <code>.label</code> or <code>.description</code> to derive the corresponding message keys for a control element.</p>
|
|
73
|
-
</div>
|
|
74
|
-
</div>
|
|
75
|
-
</section>
|
|
76
67
|
<section class="tsd-panel tsd-hierarchy">
|
|
77
68
|
<h3>Hierarchy</h3>
|
|
78
69
|
<ul class="tsd-hierarchy">
|
|
@@ -107,7 +98,7 @@
|
|
|
107
98
|
<div class="tsd-signature tsd-kind-icon">i18n<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
108
99
|
<aside class="tsd-sources">
|
|
109
100
|
<ul>
|
|
110
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
101
|
+
<li>Defined in packages/core/src/models/uischema.ts:73</li>
|
|
111
102
|
</ul>
|
|
112
103
|
</aside>
|
|
113
104
|
</section>
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
<div class="tsd-signature tsd-kind-icon">show<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
|
102
102
|
<aside class="tsd-sources">
|
|
103
103
|
<ul>
|
|
104
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
104
|
+
<li>Defined in packages/core/src/models/uischema.ts:225</li>
|
|
105
105
|
</ul>
|
|
106
106
|
</aside>
|
|
107
107
|
<div class="tsd-comment tsd-typography">
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
<div class="tsd-signature tsd-kind-icon">text<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
117
117
|
<aside class="tsd-sources">
|
|
118
118
|
<ul>
|
|
119
|
-
<li>Defined in packages/core/src/models/uischema.ts:
|
|
119
|
+
<li>Defined in packages/core/src/models/uischema.ts:221</li>
|
|
120
120
|
</ul>
|
|
121
121
|
</aside>
|
|
122
122
|
<div class="tsd-comment tsd-typography">
|