@jsonforms/core 3.0.0-alpha.1 → 3.0.0-beta.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/globals.html +822 -405
- package/docs/index.html +69 -36
- package/docs/interfaces/addcellrendereraction.html +3 -3
- package/docs/interfaces/addrendereraction.html +3 -3
- package/docs/interfaces/adduischemaaction.html +3 -3
- package/docs/interfaces/arraycontrolprops.html +21 -21
- package/docs/interfaces/arraylayoutprops.html +21 -21
- package/docs/interfaces/cellprops.html +14 -14
- package/docs/interfaces/combinatorrendererprops.html +13 -13
- 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 +13 -13
- package/docs/interfaces/dispatchcellstateprops.html +13 -13
- 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 +15 -15
- package/docs/interfaces/enumoption.html +2 -2
- package/docs/interfaces/initaction.html +6 -6
- package/docs/interfaces/initactionoptions.html +3 -3
- package/docs/interfaces/jsonformscore.html +7 -7
- package/docs/interfaces/{jsonformslocalestate.html → jsonformsi18nstate.html} +20 -20
- package/docs/interfaces/jsonformsprops.html +9 -9
- package/docs/interfaces/jsonformssubstates.html +11 -1
- package/docs/interfaces/layoutprops.html +10 -10
- package/docs/interfaces/ownpropsofcell.html +10 -10
- package/docs/interfaces/ownpropsofcontrol.html +9 -9
- package/docs/interfaces/ownpropsofenum.html +1 -1
- package/docs/interfaces/ownpropsofenumcell.html +11 -11
- package/docs/interfaces/ownpropsofjsonformsrenderer.html +8 -8
- package/docs/interfaces/ownpropsoflayout.html +9 -9
- package/docs/interfaces/ownpropsofmasterlistitem.html +6 -6
- package/docs/interfaces/ownpropsofrenderer.html +8 -8
- package/docs/interfaces/registerdefaultdataaction.html +3 -3
- package/docs/interfaces/removecellrendereraction.html +3 -3
- package/docs/interfaces/removerendereraction.html +3 -3
- package/docs/interfaces/removeuischemaaction.html +2 -2
- package/docs/interfaces/rendererprops.html +9 -9
- package/docs/interfaces/setajvaction.html +3 -3
- package/docs/interfaces/setconfigaction.html +2 -2
- package/docs/interfaces/setlocaleaction.html +3 -3
- package/docs/interfaces/setschemaaction.html +2 -2
- package/docs/interfaces/{setlocalizedschemasaction.html → settranslatoraction.html} +29 -15
- package/docs/interfaces/setuischemaaction.html +2 -2
- package/docs/interfaces/setvalidationmodeaction.html +2 -2
- package/docs/interfaces/statepropsofarraycontrol.html +17 -17
- package/docs/interfaces/statepropsofarraylayout.html +17 -17
- package/docs/interfaces/statepropsofcell.html +13 -13
- package/docs/interfaces/statepropsofcombinator.html +12 -12
- package/docs/interfaces/statepropsofcontrol.html +15 -15
- package/docs/interfaces/statepropsofcontrolwithdetail.html +16 -16
- package/docs/interfaces/statepropsofenumcell.html +14 -14
- package/docs/interfaces/statepropsofjsonformsrenderer.html +9 -9
- package/docs/interfaces/statepropsoflayout.html +10 -10
- package/docs/interfaces/statepropsofmasteritem.html +7 -7
- package/docs/interfaces/statepropsofrenderer.html +9 -9
- package/docs/interfaces/statepropsofscopedrenderer.html +12 -12
- package/docs/interfaces/unregisterdefaultdataaction.html +2 -2
- package/docs/interfaces/updateaction.html +3 -3
- package/docs/interfaces/updatecoreaction.html +6 -6
- package/docs/interfaces/updateerrorsaction.html +2 -2
- package/docs/interfaces/{setlocalizeduischemasaction.html → updatei18naction.html} +43 -15
- package/docs/interfaces/withclassname.html +1 -1
- package/lib/Helpers.d.ts +5 -5
- package/lib/actions/actions.d.ts +181 -177
- package/lib/actions/index.d.ts +1 -1
- package/lib/configDefault.d.ts +6 -6
- package/lib/generators/Generate.d.ts +6 -6
- package/lib/generators/index.d.ts +3 -3
- package/lib/generators/schema.d.ts +8 -8
- package/lib/generators/uischema.d.ts +12 -12
- package/lib/i18n/i18nTypes.d.ts +15 -0
- package/lib/i18n/i18nUtil.d.ts +18 -0
- package/lib/i18n/index.d.ts +2 -0
- package/lib/index.d.ts +11 -10
- package/lib/jsonforms-core.cjs.js +2445 -0
- package/lib/jsonforms-core.cjs.js.map +1 -0
- package/lib/jsonforms-core.esm.js +2164 -0
- package/lib/jsonforms-core.esm.js.map +1 -0
- package/lib/models/draft4.d.ts +198 -198
- package/lib/models/index.d.ts +5 -5
- package/lib/models/jsonSchema.d.ts +3 -3
- package/lib/models/jsonSchema4.d.ts +110 -110
- package/lib/models/jsonSchema7.d.ts +119 -119
- package/lib/models/uischema.d.ts +201 -201
- package/lib/reducers/cells.d.ts +11 -11
- package/lib/reducers/config.d.ts +3 -3
- package/lib/reducers/core.d.ts +24 -23
- package/lib/reducers/default-data.d.ts +10 -10
- package/lib/reducers/i18n.d.ts +8 -11
- package/lib/reducers/index.d.ts +9 -9
- package/lib/reducers/reducers.d.ts +29 -36
- package/lib/reducers/renderers.d.ts +10 -10
- package/lib/reducers/selectors.d.ts +15 -15
- package/lib/reducers/uischemas.d.ts +10 -10
- package/lib/store.d.ts +53 -52
- package/lib/testers/index.d.ts +1 -1
- package/lib/testers/testers.d.ts +203 -203
- package/lib/util/Formatted.d.ts +19 -19
- package/lib/util/array.d.ts +3 -3
- package/lib/util/cell.d.ts +79 -79
- package/lib/util/combinators.d.ts +10 -10
- package/lib/util/ids.d.ts +3 -3
- package/lib/util/index.d.ts +15 -15
- package/lib/util/label.d.ts +9 -9
- package/lib/util/path.d.ts +25 -25
- package/lib/util/renderer.d.ts +398 -387
- package/lib/util/resolvers.d.ts +25 -25
- package/lib/util/runtime.d.ts +18 -19
- package/lib/util/schema.d.ts +1 -1
- package/lib/util/type.d.ts +174 -174
- package/lib/util/uischema.d.ts +5 -5
- package/lib/util/util.d.ts +31 -31
- package/lib/util/validator.d.ts +3 -2
- package/package.json +18 -14
- package/rollup.config.js +44 -0
- package/src/actions/actions.ts +46 -36
- package/src/i18n/i18nTypes.ts +17 -0
- package/src/i18n/i18nUtil.ts +105 -0
- package/src/i18n/index.ts +2 -0
- package/src/index.ts +1 -0
- package/src/reducers/core.ts +70 -48
- package/src/reducers/i18n.ts +41 -35
- package/src/reducers/reducers.ts +10 -29
- package/src/reducers/selectors.ts +1 -1
- package/src/store.ts +4 -4
- package/src/util/cell.ts +26 -6
- package/src/util/renderer.ts +127 -38
- package/src/util/runtime.ts +1 -1
- package/src/util/util.ts +1 -1
- package/src/util/validator.ts +5 -9
- package/stats.html +3279 -0
- package/{lib/reducers/cells.js → test/i18n/i18nUtil.test.ts} +25 -17
- package/test/reducers/core.test.ts +31 -44
- package/test/util/cell.test.ts +2 -2
- package/test/util/renderer.test.ts +488 -35
- package/lib/Helpers.js +0 -32
- package/lib/Helpers.js.map +0 -1
- package/lib/actions/actions.js +0 -149
- package/lib/actions/actions.js.map +0 -1
- package/lib/actions/index.js +0 -29
- package/lib/actions/index.js.map +0 -1
- package/lib/configDefault.js +0 -47
- package/lib/configDefault.js.map +0 -1
- package/lib/generators/Generate.js +0 -34
- package/lib/generators/Generate.js.map +0 -1
- package/lib/generators/index.js +0 -31
- package/lib/generators/index.js.map +0 -1
- package/lib/generators/schema.js +0 -152
- package/lib/generators/schema.js.map +0 -1
- package/lib/generators/uischema.js +0 -166
- package/lib/generators/uischema.js.map +0 -1
- package/lib/index.js +0 -37
- package/lib/index.js.map +0 -1
- package/lib/jsonforms-core.js +0 -19
- package/lib/jsonforms-core.js.map +0 -1
- package/lib/models/draft4.js +0 -173
- package/lib/models/draft4.js.map +0 -1
- package/lib/models/index.js +0 -30
- package/lib/models/index.js.map +0 -1
- package/lib/models/jsonSchema.js +0 -27
- package/lib/models/jsonSchema.js.map +0 -1
- package/lib/models/jsonSchema4.js +0 -30
- package/lib/models/jsonSchema4.js.map +0 -1
- package/lib/models/jsonSchema7.js +0 -30
- package/lib/models/jsonSchema7.js.map +0 -1
- package/lib/models/uischema.js +0 -55
- package/lib/models/uischema.js.map +0 -1
- package/lib/reducers/cells.js.map +0 -1
- package/lib/reducers/config.js +0 -44
- package/lib/reducers/config.js.map +0 -1
- package/lib/reducers/core.js +0 -259
- package/lib/reducers/core.js.map +0 -1
- package/lib/reducers/default-data.js +0 -42
- package/lib/reducers/default-data.js.map +0 -1
- package/lib/reducers/i18n.js +0 -65
- package/lib/reducers/i18n.js.map +0 -1
- package/lib/reducers/index.js +0 -37
- package/lib/reducers/index.js.map +0 -1
- package/lib/reducers/reducers.js +0 -99
- package/lib/reducers/reducers.js.map +0 -1
- package/lib/reducers/renderers.js +0 -41
- package/lib/reducers/renderers.js.map +0 -1
- package/lib/reducers/selectors.js +0 -47
- package/lib/reducers/selectors.js.map +0 -1
- package/lib/reducers/uischemas.js +0 -57
- package/lib/reducers/uischemas.js.map +0 -1
- package/lib/store.js +0 -27
- package/lib/store.js.map +0 -1
- package/lib/testers/index.js +0 -29
- package/lib/testers/index.js.map +0 -1
- package/lib/testers/testers.js +0 -401
- package/lib/testers/testers.js.map +0 -1
- package/lib/util/Formatted.js +0 -27
- package/lib/util/Formatted.js.map +0 -1
- package/lib/util/array.js +0 -43
- package/lib/util/array.js.map +0 -1
- package/lib/util/cell.js +0 -133
- package/lib/util/cell.js.map +0 -1
- package/lib/util/combinators.js +0 -56
- package/lib/util/combinators.js.map +0 -1
- package/lib/util/ids.js +0 -50
- package/lib/util/ids.js.map +0 -1
- package/lib/util/index.js +0 -41
- package/lib/util/index.js.map +0 -1
- package/lib/util/label.js +0 -70
- package/lib/util/label.js.map +0 -1
- package/lib/util/path.js +0 -85
- package/lib/util/path.js.map +0 -1
- package/lib/util/renderer.js +0 -451
- package/lib/util/renderer.js.map +0 -1
- package/lib/util/resolvers.js +0 -165
- package/lib/util/resolvers.js.map +0 -1
- package/lib/util/runtime.js +0 -159
- package/lib/util/runtime.js.map +0 -1
- package/lib/util/schema.js +0 -40
- package/lib/util/schema.js.map +0 -1
- package/lib/util/type.js +0 -27
- package/lib/util/type.js.map +0 -1
- package/lib/util/uischema.js +0 -52
- package/lib/util/uischema.js.map +0 -1
- package/lib/util/util.js +0 -107
- package/lib/util/util.js.map +0 -1
- package/lib/util/validator.js +0 -36
- package/lib/util/validator.js.map +0 -1
- package/webpack.build.js +0 -13
package/docs/globals.html
CHANGED
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
<li class="tsd-kind-interface"><a href="interfaces/jsonformscore.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Core</a></li>
|
|
116
116
|
<li class="tsd-kind-interface"><a href="interfaces/jsonformsdefaultdataregistryentry.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Default<wbr>Data<wbr>Registry<wbr>Entry</a></li>
|
|
117
117
|
<li class="tsd-kind-interface tsd-has-type-parameter"><a href="interfaces/jsonformsextendedstate.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Extended<wbr>State</a></li>
|
|
118
|
-
<li class="tsd-kind-interface"><a href="interfaces/
|
|
118
|
+
<li class="tsd-kind-interface"><a href="interfaces/jsonformsi18nstate.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>I18n<wbr>State</a></li>
|
|
119
119
|
<li class="tsd-kind-interface"><a href="interfaces/jsonformsprops.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Props</a></li>
|
|
120
120
|
<li class="tsd-kind-interface"><a href="interfaces/jsonformsrendererregistryentry.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Renderer<wbr>Registry<wbr>Entry</a></li>
|
|
121
121
|
<li class="tsd-kind-interface"><a href="interfaces/jsonformsstate.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>State</a></li>
|
|
@@ -150,9 +150,8 @@
|
|
|
150
150
|
<li class="tsd-kind-interface"><a href="interfaces/setajvaction.html" class="tsd-kind-icon">Set<wbr>Ajv<wbr>Action</a></li>
|
|
151
151
|
<li class="tsd-kind-interface"><a href="interfaces/setconfigaction.html" class="tsd-kind-icon">Set<wbr>Config<wbr>Action</a></li>
|
|
152
152
|
<li class="tsd-kind-interface"><a href="interfaces/setlocaleaction.html" class="tsd-kind-icon">Set<wbr>Locale<wbr>Action</a></li>
|
|
153
|
-
<li class="tsd-kind-interface"><a href="interfaces/setlocalizedschemasaction.html" class="tsd-kind-icon">Set<wbr>Localized<wbr>Schemas<wbr>Action</a></li>
|
|
154
|
-
<li class="tsd-kind-interface"><a href="interfaces/setlocalizeduischemasaction.html" class="tsd-kind-icon">Set<wbr>LocalizedUISchemas<wbr>Action</a></li>
|
|
155
153
|
<li class="tsd-kind-interface"><a href="interfaces/setschemaaction.html" class="tsd-kind-icon">Set<wbr>Schema<wbr>Action</a></li>
|
|
154
|
+
<li class="tsd-kind-interface"><a href="interfaces/settranslatoraction.html" class="tsd-kind-icon">Set<wbr>Translator<wbr>Action</a></li>
|
|
156
155
|
<li class="tsd-kind-interface"><a href="interfaces/setuischemaaction.html" class="tsd-kind-icon">SetUISchema<wbr>Action</a></li>
|
|
157
156
|
<li class="tsd-kind-interface"><a href="interfaces/setvalidationmodeaction.html" class="tsd-kind-icon">Set<wbr>Validation<wbr>Mode<wbr>Action</a></li>
|
|
158
157
|
<li class="tsd-kind-interface"><a href="interfaces/statepropsofarraycontrol.html" class="tsd-kind-icon">State<wbr>Props<wbr>OfArray<wbr>Control</a></li>
|
|
@@ -173,6 +172,7 @@
|
|
|
173
172
|
<li class="tsd-kind-interface"><a href="interfaces/updateaction.html" class="tsd-kind-icon">Update<wbr>Action</a></li>
|
|
174
173
|
<li class="tsd-kind-interface"><a href="interfaces/updatecoreaction.html" class="tsd-kind-icon">Update<wbr>Core<wbr>Action</a></li>
|
|
175
174
|
<li class="tsd-kind-interface"><a href="interfaces/updateerrorsaction.html" class="tsd-kind-icon">Update<wbr>Errors<wbr>Action</a></li>
|
|
175
|
+
<li class="tsd-kind-interface"><a href="interfaces/updatei18naction.html" class="tsd-kind-icon">Update<wbr>I18n<wbr>Action</a></li>
|
|
176
176
|
<li class="tsd-kind-interface"><a href="interfaces/verticallayout.html" class="tsd-kind-icon">Vertical<wbr>Layout</a></li>
|
|
177
177
|
<li class="tsd-kind-interface"><a href="interfaces/withclassname.html" class="tsd-kind-icon">With<wbr>Classname</a></li>
|
|
178
178
|
</ul>
|
|
@@ -181,14 +181,14 @@
|
|
|
181
181
|
<h3>Type aliases</h3>
|
|
182
182
|
<ul class="tsd-index-list">
|
|
183
183
|
<li class="tsd-kind-type-alias"><a href="globals.html#combinatorkeyword" class="tsd-kind-icon">Combinator<wbr>Keyword</a></li>
|
|
184
|
-
<li class="tsd-kind-type-alias"><a href="globals.html#combinatorprops" class="tsd-kind-icon">Combinator<wbr>Props</a></li>
|
|
185
184
|
<li class="tsd-kind-type-alias"><a href="globals.html#coreactions" class="tsd-kind-icon">Core<wbr>Actions</a></li>
|
|
186
185
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><a href="globals.html#dispatch" class="tsd-kind-icon">Dispatch</a></li>
|
|
187
186
|
<li class="tsd-kind-type-alias"><a href="globals.html#dispatchpropsofcell" class="tsd-kind-icon">Dispatch<wbr>Props<wbr>OfCell</a></li>
|
|
187
|
+
<li class="tsd-kind-type-alias"><a href="globals.html#errortranslator" class="tsd-kind-icon">Error<wbr>Translator</a></li>
|
|
188
|
+
<li class="tsd-kind-type-alias"><a href="globals.html#i18nactions" class="tsd-kind-icon">I18n<wbr>Actions</a></li>
|
|
188
189
|
<li class="tsd-kind-type-alias"><a href="globals.html#iteratecallback" class="tsd-kind-icon">Iterate<wbr>Callback</a></li>
|
|
189
190
|
<li class="tsd-kind-type-alias"><a href="globals.html#jsonformscellrendererregistrystate" class="tsd-kind-icon">Json<wbr>Forms<wbr>Cell<wbr>Renderer<wbr>Registry<wbr>State</a></li>
|
|
190
191
|
<li class="tsd-kind-type-alias"><a href="globals.html#jsonschema" class="tsd-kind-icon">Json<wbr>Schema</a></li>
|
|
191
|
-
<li class="tsd-kind-type-alias"><a href="globals.html#localeactions" class="tsd-kind-icon">Locale<wbr>Actions</a></li>
|
|
192
192
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><a href="globals.html#observable" class="tsd-kind-icon">Observable</a></li>
|
|
193
193
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><a href="globals.html#observer" class="tsd-kind-icon">Observer</a></li>
|
|
194
194
|
<li class="tsd-kind-type-alias"><a href="globals.html#properties" class="tsd-kind-icon">Properties</a></li>
|
|
@@ -196,6 +196,7 @@
|
|
|
196
196
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><a href="globals.html#reducer" class="tsd-kind-icon">Reducer</a></li>
|
|
197
197
|
<li class="tsd-kind-type-alias"><a href="globals.html#refresolver" class="tsd-kind-icon">Ref<wbr>Resolver</a></li>
|
|
198
198
|
<li class="tsd-kind-type-alias"><a href="globals.html#tester" class="tsd-kind-icon">Tester</a></li>
|
|
199
|
+
<li class="tsd-kind-type-alias"><a href="globals.html#translator" class="tsd-kind-icon">Translator</a></li>
|
|
199
200
|
<li class="tsd-kind-type-alias"><a href="globals.html#uischemaactions" class="tsd-kind-icon">UISchema<wbr>Actions</a></li>
|
|
200
201
|
<li class="tsd-kind-type-alias"><a href="globals.html#uischematester" class="tsd-kind-icon">UISchema<wbr>Tester</a></li>
|
|
201
202
|
<li class="tsd-kind-type-alias"><a href="globals.html#unsubscribe" class="tsd-kind-icon">Unsubscribe</a></li>
|
|
@@ -203,6 +204,7 @@
|
|
|
203
204
|
<li class="tsd-kind-type-alias"><a href="globals.html#validdefaultdataactions" class="tsd-kind-icon">Valid<wbr>Default<wbr>Data<wbr>Actions</a></li>
|
|
204
205
|
<li class="tsd-kind-type-alias"><a href="globals.html#validrendererreduceractions" class="tsd-kind-icon">Valid<wbr>Renderer<wbr>Reducer<wbr>Actions</a></li>
|
|
205
206
|
<li class="tsd-kind-type-alias"><a href="globals.html#validationmode" class="tsd-kind-icon">Validation<wbr>Mode</a></li>
|
|
207
|
+
<li class="tsd-kind-type-alias"><a href="globals.html#i18njsonschema" class="tsd-kind-icon">i18n<wbr>Json<wbr>Schema</a></li>
|
|
206
208
|
</ul>
|
|
207
209
|
</section>
|
|
208
210
|
<section class="tsd-index-section ">
|
|
@@ -223,14 +225,14 @@
|
|
|
223
225
|
<li class="tsd-kind-variable"><a href="globals.html#set_ajv" class="tsd-kind-icon">SET_<wbr>AJV</a></li>
|
|
224
226
|
<li class="tsd-kind-variable"><a href="globals.html#set_config" class="tsd-kind-icon">SET_<wbr>CONFIG</a></li>
|
|
225
227
|
<li class="tsd-kind-variable"><a href="globals.html#set_locale" class="tsd-kind-icon">SET_<wbr>LOCALE</a></li>
|
|
226
|
-
<li class="tsd-kind-variable"><a href="globals.html#set_localized_schemas" class="tsd-kind-icon">SET_<wbr>LOCALIZED_<wbr>SCHEMAS</a></li>
|
|
227
|
-
<li class="tsd-kind-variable"><a href="globals.html#set_localized_uischemas" class="tsd-kind-icon">SET_<wbr>LOCALIZED_<wbr>UISCHEMAS</a></li>
|
|
228
228
|
<li class="tsd-kind-variable"><a href="globals.html#set_schema" class="tsd-kind-icon">SET_<wbr>SCHEMA</a></li>
|
|
229
|
+
<li class="tsd-kind-variable"><a href="globals.html#set_translator" class="tsd-kind-icon">SET_<wbr>TRANSLATOR</a></li>
|
|
229
230
|
<li class="tsd-kind-variable"><a href="globals.html#set_uischema" class="tsd-kind-icon">SET_<wbr>UISCHEMA</a></li>
|
|
230
231
|
<li class="tsd-kind-variable"><a href="globals.html#set_validation_mode" class="tsd-kind-icon">SET_<wbr>VALIDATION_<wbr>MODE</a></li>
|
|
231
232
|
<li class="tsd-kind-variable"><a href="globals.html#update_core" class="tsd-kind-icon">UPDATE_<wbr>CORE</a></li>
|
|
232
233
|
<li class="tsd-kind-variable"><a href="globals.html#update_data" class="tsd-kind-icon">UPDATE_<wbr>DATA</a></li>
|
|
233
234
|
<li class="tsd-kind-variable"><a href="globals.html#update_errors" class="tsd-kind-icon">UPDATE_<wbr>ERRORS</a></li>
|
|
235
|
+
<li class="tsd-kind-variable"><a href="globals.html#update_i18n" class="tsd-kind-icon">UPDATE_<wbr><wbr>I18N</a></li>
|
|
234
236
|
<li class="tsd-kind-variable"><a href="globals.html#validate" class="tsd-kind-icon">VALIDATE</a></li>
|
|
235
237
|
<li class="tsd-kind-variable"><a href="globals.html#filterederrorkeywords" class="tsd-kind-icon">filtered<wbr>Error<wbr>Keywords</a></li>
|
|
236
238
|
<li class="tsd-kind-variable"><a href="globals.html#isallofcontrol" class="tsd-kind-icon">is<wbr>All<wbr>OfControl</a></li>
|
|
@@ -261,7 +263,6 @@
|
|
|
261
263
|
<h3>Functions</h3>
|
|
262
264
|
<ul class="tsd-index-list">
|
|
263
265
|
<li class="tsd-kind-function"><a href="globals.html#addlabel" class="tsd-kind-icon">add<wbr>Label</a></li>
|
|
264
|
-
<li class="tsd-kind-function"><a href="globals.html#alwaysvalid" class="tsd-kind-icon">always<wbr>Valid</a></li>
|
|
265
266
|
<li class="tsd-kind-function"><a href="globals.html#and" class="tsd-kind-icon">and</a></li>
|
|
266
267
|
<li class="tsd-kind-function"><a href="globals.html#applydefaultconfiguration" class="tsd-kind-icon">apply<wbr>Default<wbr>Configuration</a></li>
|
|
267
268
|
<li class="tsd-kind-function"><a href="globals.html#categorizationhascategory" class="tsd-kind-icon">categorization<wbr>Has<wbr>Category</a></li>
|
|
@@ -283,8 +284,10 @@
|
|
|
283
284
|
<li class="tsd-kind-function"><a href="globals.html#createlabeldescriptionfrom" class="tsd-kind-icon">create<wbr>Label<wbr>Description<wbr>From</a></li>
|
|
284
285
|
<li class="tsd-kind-function"><a href="globals.html#createlayout" class="tsd-kind-icon">create<wbr>Layout</a></li>
|
|
285
286
|
<li class="tsd-kind-function"><a href="globals.html#defaultdatareducer" class="tsd-kind-icon">default<wbr>Data<wbr>Reducer</a></li>
|
|
287
|
+
<li class="tsd-kind-function"><a href="globals.html#defaulterrortranslator" class="tsd-kind-icon">default<wbr>Error<wbr>Translator</a></li>
|
|
286
288
|
<li class="tsd-kind-function"><a href="globals.html#defaultmapdispatchtocontrolprops" class="tsd-kind-icon">default<wbr>Map<wbr>Dispatch<wbr>ToControl<wbr>Props</a></li>
|
|
287
289
|
<li class="tsd-kind-function"><a href="globals.html#defaultmapstatetoenumcellprops" class="tsd-kind-icon">default<wbr>Map<wbr>State<wbr>ToEnum<wbr>Cell<wbr>Props</a></li>
|
|
290
|
+
<li class="tsd-kind-function"><a href="globals.html#defaulttranslator" class="tsd-kind-icon">default<wbr>Translator</a></li>
|
|
288
291
|
<li class="tsd-kind-function"><a href="globals.html#derivelabel" class="tsd-kind-icon">derive<wbr>Label</a></li>
|
|
289
292
|
<li class="tsd-kind-function"><a href="globals.html#derivetypes" class="tsd-kind-icon">derive<wbr>Types</a></li>
|
|
290
293
|
<li class="tsd-kind-function"><a href="globals.html#distinct" class="tsd-kind-icon">distinct</a></li>
|
|
@@ -299,10 +302,10 @@
|
|
|
299
302
|
<li class="tsd-kind-function"><a href="globals.html#extractdefaultdata" class="tsd-kind-icon">extract<wbr>Default<wbr>Data</a></li>
|
|
300
303
|
<li class="tsd-kind-function"><a href="globals.html#extractschema" class="tsd-kind-icon">extract<wbr>Schema</a></li>
|
|
301
304
|
<li class="tsd-kind-function"><a href="globals.html#extractuischema" class="tsd-kind-icon">extract<wbr>UiSchema</a></li>
|
|
305
|
+
<li class="tsd-kind-function"><a href="globals.html#fetcherrortranslator" class="tsd-kind-icon">fetch<wbr>Error<wbr>Translator</a></li>
|
|
302
306
|
<li class="tsd-kind-function"><a href="globals.html#fetchlocale" class="tsd-kind-icon">fetch<wbr>Locale</a></li>
|
|
307
|
+
<li class="tsd-kind-function"><a href="globals.html#fetchtranslator" class="tsd-kind-icon">fetch<wbr>Translator</a></li>
|
|
303
308
|
<li class="tsd-kind-function"><a href="globals.html#findallrefs" class="tsd-kind-icon">find<wbr>All<wbr>Refs</a></li>
|
|
304
|
-
<li class="tsd-kind-function"><a href="globals.html#findlocalizedschema" class="tsd-kind-icon">find<wbr>Localized<wbr>Schema</a></li>
|
|
305
|
-
<li class="tsd-kind-function"><a href="globals.html#findlocalizeduischema" class="tsd-kind-icon">find<wbr>LocalizedUISchema</a></li>
|
|
306
309
|
<li class="tsd-kind-function"><a href="globals.html#findmatchinguischema" class="tsd-kind-icon">find<wbr>MatchingUISchema</a></li>
|
|
307
310
|
<li class="tsd-kind-function"><a href="globals.html#finduischema" class="tsd-kind-icon">findUISchema</a></li>
|
|
308
311
|
<li class="tsd-kind-function"><a href="globals.html#formaterrormessage" class="tsd-kind-icon">format<wbr>Error<wbr>Message</a></li>
|
|
@@ -313,21 +316,27 @@
|
|
|
313
316
|
<li class="tsd-kind-function"><a href="globals.html#generateuischema" class="tsd-kind-icon">generateUISchema</a></li>
|
|
314
317
|
<li class="tsd-kind-function"><a href="globals.html#getajv" class="tsd-kind-icon">get<wbr>Ajv</a></li>
|
|
315
318
|
<li class="tsd-kind-function"><a href="globals.html#getcells" class="tsd-kind-icon">get<wbr>Cells</a></li>
|
|
319
|
+
<li class="tsd-kind-function"><a href="globals.html#getcombinederrormessage" class="tsd-kind-icon">get<wbr>Combined<wbr>Error<wbr>Message</a></li>
|
|
316
320
|
<li class="tsd-kind-function"><a href="globals.html#getconditionscope" class="tsd-kind-icon">get<wbr>Condition<wbr>Scope</a></li>
|
|
317
321
|
<li class="tsd-kind-function"><a href="globals.html#getconfig" class="tsd-kind-icon">get<wbr>Config</a></li>
|
|
322
|
+
<li class="tsd-kind-function"><a href="globals.html#getcontrolpath" class="tsd-kind-icon">get<wbr>Control<wbr>Path</a></li>
|
|
318
323
|
<li class="tsd-kind-function"><a href="globals.html#getdata" class="tsd-kind-icon">get<wbr>Data</a></li>
|
|
319
324
|
<li class="tsd-kind-function"><a href="globals.html#getdefaultdata" class="tsd-kind-icon">get<wbr>Default<wbr>Data</a></li>
|
|
320
325
|
<li class="tsd-kind-function"><a href="globals.html#getdirection" class="tsd-kind-icon">get<wbr>Direction</a></li>
|
|
321
326
|
<li class="tsd-kind-function"><a href="globals.html#geterrorat" class="tsd-kind-icon">get<wbr>Error<wbr>At</a></li>
|
|
327
|
+
<li class="tsd-kind-function"><a href="globals.html#geterrortranslator" class="tsd-kind-icon">get<wbr>Error<wbr>Translator</a></li>
|
|
322
328
|
<li class="tsd-kind-function"><a href="globals.html#geterrorsat" class="tsd-kind-icon">get<wbr>Errors<wbr>At</a></li>
|
|
323
329
|
<li class="tsd-kind-function"><a href="globals.html#getfirstprimitiveprop" class="tsd-kind-icon">get<wbr>First<wbr>Primitive<wbr>Prop</a></li>
|
|
330
|
+
<li class="tsd-kind-function"><a href="globals.html#geti18nkey" class="tsd-kind-icon">get<wbr>I18n<wbr>Key</a></li>
|
|
331
|
+
<li class="tsd-kind-function"><a href="globals.html#geti18nkeyprefix" class="tsd-kind-icon">get<wbr>I18n<wbr>Key<wbr>Prefix</a></li>
|
|
332
|
+
<li class="tsd-kind-function"><a href="globals.html#geti18nkeyprefixbyschema" class="tsd-kind-icon">get<wbr>I18n<wbr>Key<wbr>Prefix<wbr>BySchema</a></li>
|
|
333
|
+
<li class="tsd-kind-function"><a href="globals.html#getinvalidproperty" class="tsd-kind-icon">get<wbr>Invalid<wbr>Property</a></li>
|
|
324
334
|
<li class="tsd-kind-function"><a href="globals.html#getlocale" class="tsd-kind-icon">get<wbr>Locale</a></li>
|
|
325
|
-
<li class="tsd-kind-function"><a href="globals.html#getlocalizedschema" class="tsd-kind-icon">get<wbr>Localized<wbr>Schema</a></li>
|
|
326
|
-
<li class="tsd-kind-function"><a href="globals.html#getlocalizeduischema" class="tsd-kind-icon">get<wbr>LocalizedUISchema</a></li>
|
|
327
335
|
<li class="tsd-kind-function"><a href="globals.html#getorcreateajv" class="tsd-kind-icon">get<wbr>OrCreate<wbr>Ajv</a></li>
|
|
328
336
|
<li class="tsd-kind-function"><a href="globals.html#getrenderers" class="tsd-kind-icon">get<wbr>Renderers</a></li>
|
|
329
337
|
<li class="tsd-kind-function"><a href="globals.html#getschema" class="tsd-kind-icon">get<wbr>Schema</a></li>
|
|
330
338
|
<li class="tsd-kind-function"><a href="globals.html#getsuberrorsat" class="tsd-kind-icon">get<wbr>Sub<wbr>Errors<wbr>At</a></li>
|
|
339
|
+
<li class="tsd-kind-function"><a href="globals.html#gettranslator" class="tsd-kind-icon">get<wbr>Translator</a></li>
|
|
331
340
|
<li class="tsd-kind-function"><a href="globals.html#getuischemas" class="tsd-kind-icon">getUISchemas</a></li>
|
|
332
341
|
<li class="tsd-kind-function"><a href="globals.html#getuischema" class="tsd-kind-icon">get<wbr>UiSchema</a></li>
|
|
333
342
|
<li class="tsd-kind-function"><a href="globals.html#getvalidationmode" class="tsd-kind-icon">get<wbr>Validation<wbr>Mode</a></li>
|
|
@@ -402,7 +411,6 @@
|
|
|
402
411
|
<li class="tsd-kind-function"><a href="globals.html#resolvesubschemas" class="tsd-kind-icon">resolve<wbr>Sub<wbr>Schemas</a></li>
|
|
403
412
|
<li class="tsd-kind-function"><a href="globals.html#retrieveresolvableschema" class="tsd-kind-icon">retrieve<wbr>Resolvable<wbr>Schema</a></li>
|
|
404
413
|
<li class="tsd-kind-function"><a href="globals.html#reuseajvforschema" class="tsd-kind-icon">reuse<wbr>Ajv<wbr>For<wbr>Schema</a></li>
|
|
405
|
-
<li class="tsd-kind-function"><a href="globals.html#sanitizeerrors" class="tsd-kind-icon">sanitize<wbr>Errors</a></li>
|
|
406
414
|
<li class="tsd-kind-function"><a href="globals.html#schemamatches" class="tsd-kind-icon">schema<wbr>Matches</a></li>
|
|
407
415
|
<li class="tsd-kind-function"><a href="globals.html#schemasubpathmatches" class="tsd-kind-icon">schema<wbr>Sub<wbr>Path<wbr>Matches</a></li>
|
|
408
416
|
<li class="tsd-kind-function"><a href="globals.html#schematypeis" class="tsd-kind-icon">schema<wbr>Type<wbr>Is</a></li>
|
|
@@ -411,16 +419,17 @@
|
|
|
411
419
|
<li class="tsd-kind-function"><a href="globals.html#setajv" class="tsd-kind-icon">set<wbr>Ajv</a></li>
|
|
412
420
|
<li class="tsd-kind-function"><a href="globals.html#setconfig" class="tsd-kind-icon">set<wbr>Config</a></li>
|
|
413
421
|
<li class="tsd-kind-function"><a href="globals.html#setlocale" class="tsd-kind-icon">set<wbr>Locale</a></li>
|
|
414
|
-
<li class="tsd-kind-function"><a href="globals.html#setlocalizedschemas" class="tsd-kind-icon">set<wbr>Localized<wbr>Schemas</a></li>
|
|
415
|
-
<li class="tsd-kind-function"><a href="globals.html#setlocalizeduischemas" class="tsd-kind-icon">set<wbr>LocalizedUISchemas</a></li>
|
|
416
422
|
<li class="tsd-kind-function"><a href="globals.html#setreadonly" class="tsd-kind-icon">set<wbr>Readonly</a></li>
|
|
417
423
|
<li class="tsd-kind-function"><a href="globals.html#setreadonlypropertyvalue" class="tsd-kind-icon">set<wbr>Readonly<wbr>Property<wbr>Value</a></li>
|
|
418
424
|
<li class="tsd-kind-function"><a href="globals.html#setschema" class="tsd-kind-icon">set<wbr>Schema</a></li>
|
|
425
|
+
<li class="tsd-kind-function"><a href="globals.html#settranslator" class="tsd-kind-icon">set<wbr>Translator</a></li>
|
|
419
426
|
<li class="tsd-kind-function"><a href="globals.html#setuischema" class="tsd-kind-icon">setUISchema</a></li>
|
|
420
427
|
<li class="tsd-kind-function"><a href="globals.html#setvalidationmode" class="tsd-kind-icon">set<wbr>Validation<wbr>Mode</a></li>
|
|
428
|
+
<li class="tsd-kind-function"><a href="globals.html#showasrequired" class="tsd-kind-icon">show<wbr>AsRequired</a></li>
|
|
421
429
|
<li class="tsd-kind-function"><a href="globals.html#suberrorsat" class="tsd-kind-icon">sub<wbr>Errors<wbr>At</a></li>
|
|
422
430
|
<li class="tsd-kind-function"><a href="globals.html#todatapath" class="tsd-kind-icon">to<wbr>Data<wbr>Path</a></li>
|
|
423
431
|
<li class="tsd-kind-function"><a href="globals.html#todatapathsegments" class="tsd-kind-icon">to<wbr>Data<wbr>Path<wbr>Segments</a></li>
|
|
432
|
+
<li class="tsd-kind-function"><a href="globals.html#transformpathtoi18nprefix" class="tsd-kind-icon">transform<wbr>Path<wbr>ToI18n<wbr>Prefix</a></li>
|
|
424
433
|
<li class="tsd-kind-function"><a href="globals.html#traverse" class="tsd-kind-icon">traverse</a></li>
|
|
425
434
|
<li class="tsd-kind-function"><a href="globals.html#uitypeis" class="tsd-kind-icon">ui<wbr>Type<wbr>Is</a></li>
|
|
426
435
|
<li class="tsd-kind-function"><a href="globals.html#uischemaregistryreducer" class="tsd-kind-icon">uischema<wbr>Registry<wbr>Reducer</a></li>
|
|
@@ -432,6 +441,7 @@
|
|
|
432
441
|
<li class="tsd-kind-function"><a href="globals.html#update" class="tsd-kind-icon">update</a></li>
|
|
433
442
|
<li class="tsd-kind-function"><a href="globals.html#updatecore" class="tsd-kind-icon">update<wbr>Core</a></li>
|
|
434
443
|
<li class="tsd-kind-function"><a href="globals.html#updateerrors" class="tsd-kind-icon">update<wbr>Errors</a></li>
|
|
444
|
+
<li class="tsd-kind-function"><a href="globals.html#updatei18n" class="tsd-kind-icon">update<wbr>I18n</a></li>
|
|
435
445
|
<li class="tsd-kind-function"><a href="globals.html#validate" class="tsd-kind-icon">validate</a></li>
|
|
436
446
|
<li class="tsd-kind-function"><a href="globals.html#withincreasedrank" class="tsd-kind-icon">with<wbr>Increased<wbr>Rank</a></li>
|
|
437
447
|
<li class="tsd-kind-function"><a href="globals.html#wrapinlayoutifnecessary" class="tsd-kind-icon">wrap<wbr>InLayout<wbr>IfNecessary</a></li>
|
|
@@ -448,6 +458,7 @@
|
|
|
448
458
|
<li class="tsd-kind-object-literal"><a href="globals.html#runtime" class="tsd-kind-icon">Runtime</a></li>
|
|
449
459
|
<li class="tsd-kind-object-literal"><a href="globals.html#configdefault" class="tsd-kind-icon">config<wbr>Default</a></li>
|
|
450
460
|
<li class="tsd-kind-object-literal"><a href="globals.html#controldefaultprops" class="tsd-kind-icon">control<wbr>Default<wbr>Props</a></li>
|
|
461
|
+
<li class="tsd-kind-object-literal"><a href="globals.html#defaultjsonformsi18nstate" class="tsd-kind-icon">default<wbr>Json<wbr>Forms<wbr>I18n<wbr>State</a></li>
|
|
451
462
|
<li class="tsd-kind-object-literal"><a href="globals.html#initstate" class="tsd-kind-icon">init<wbr>State</a></li>
|
|
452
463
|
<li class="tsd-kind-object-literal"><a href="globals.html#jsonformsreducerconfig" class="tsd-kind-icon">json<wbr>Forms<wbr>Reducer<wbr>Config</a></li>
|
|
453
464
|
<li class="tsd-kind-object-literal"><a href="globals.html#layoutdefaultprops" class="tsd-kind-icon">layout<wbr>Default<wbr>Props</a></li>
|
|
@@ -468,23 +479,13 @@
|
|
|
468
479
|
</ul>
|
|
469
480
|
</aside>
|
|
470
481
|
</section>
|
|
471
|
-
<section class="tsd-panel tsd-member tsd-kind-type-alias">
|
|
472
|
-
<a name="combinatorprops" class="tsd-anchor"></a>
|
|
473
|
-
<h3>Combinator<wbr>Props</h3>
|
|
474
|
-
<div class="tsd-signature tsd-kind-icon">Combinator<wbr>Props<span class="tsd-signature-symbol">:</span> <a href="interfaces/statepropsofcombinator.html" class="tsd-signature-type">StatePropsOfCombinator</a><span class="tsd-signature-symbol"> & </span><a href="interfaces/dispatchpropsofcontrol.html" class="tsd-signature-type">DispatchPropsOfControl</a></div>
|
|
475
|
-
<aside class="tsd-sources">
|
|
476
|
-
<ul>
|
|
477
|
-
<li>Defined in packages/core/src/util/renderer.ts:982</li>
|
|
478
|
-
</ul>
|
|
479
|
-
</aside>
|
|
480
|
-
</section>
|
|
481
482
|
<section class="tsd-panel tsd-member tsd-kind-type-alias">
|
|
482
483
|
<a name="coreactions" class="tsd-anchor"></a>
|
|
483
484
|
<h3>Core<wbr>Actions</h3>
|
|
484
485
|
<div class="tsd-signature tsd-kind-icon">Core<wbr>Actions<span class="tsd-signature-symbol">:</span> <a href="interfaces/initaction.html" class="tsd-signature-type">InitAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/updatecoreaction.html" class="tsd-signature-type">UpdateCoreAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/updateaction.html" class="tsd-signature-type">UpdateAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/updateerrorsaction.html" class="tsd-signature-type">UpdateErrorsAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/setajvaction.html" class="tsd-signature-type">SetAjvAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/setschemaaction.html" class="tsd-signature-type">SetSchemaAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/setuischemaaction.html" class="tsd-signature-type">SetUISchemaAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/setvalidationmodeaction.html" class="tsd-signature-type">SetValidationModeAction</a></div>
|
|
485
486
|
<aside class="tsd-sources">
|
|
486
487
|
<ul>
|
|
487
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
488
|
+
<li>Defined in packages/core/src/actions/actions.ts:63</li>
|
|
488
489
|
</ul>
|
|
489
490
|
</aside>
|
|
490
491
|
</section>
|
|
@@ -560,7 +561,54 @@
|
|
|
560
561
|
<div class="tsd-signature tsd-kind-icon">Dispatch<wbr>Props<wbr>OfCell<span class="tsd-signature-symbol">:</span> <a href="interfaces/dispatchpropsofcontrol.html" class="tsd-signature-type">DispatchPropsOfControl</a></div>
|
|
561
562
|
<aside class="tsd-sources">
|
|
562
563
|
<ul>
|
|
563
|
-
<li>Defined in packages/core/src/util/cell.ts:
|
|
564
|
+
<li>Defined in packages/core/src/util/cell.ts:90</li>
|
|
565
|
+
</ul>
|
|
566
|
+
</aside>
|
|
567
|
+
</section>
|
|
568
|
+
<section class="tsd-panel tsd-member tsd-kind-type-alias">
|
|
569
|
+
<a name="errortranslator" class="tsd-anchor"></a>
|
|
570
|
+
<h3>Error<wbr>Translator</h3>
|
|
571
|
+
<div class="tsd-signature tsd-kind-icon">Error<wbr>Translator<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</span>, translate<span class="tsd-signature-symbol">: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a>, uischema<span class="tsd-signature-symbol">?: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">string</span></div>
|
|
572
|
+
<aside class="tsd-sources">
|
|
573
|
+
<ul>
|
|
574
|
+
<li>Defined in packages/core/src/i18n/i18nTypes.ts:9</li>
|
|
575
|
+
</ul>
|
|
576
|
+
</aside>
|
|
577
|
+
<div class="tsd-type-declaration">
|
|
578
|
+
<h4>Type declaration</h4>
|
|
579
|
+
<ul class="tsd-parameters">
|
|
580
|
+
<li class="tsd-parameter-signature">
|
|
581
|
+
<ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias">
|
|
582
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</span>, translate<span class="tsd-signature-symbol">: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a>, uischema<span class="tsd-signature-symbol">?: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
583
|
+
</ul>
|
|
584
|
+
<ul class="tsd-descriptions">
|
|
585
|
+
<li class="tsd-description">
|
|
586
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
587
|
+
<ul class="tsd-parameters">
|
|
588
|
+
<li>
|
|
589
|
+
<h5>error: <span class="tsd-signature-type">ErrorObject</span></h5>
|
|
590
|
+
</li>
|
|
591
|
+
<li>
|
|
592
|
+
<h5>translate: <a href="globals.html#translator" class="tsd-signature-type">Translator</a></h5>
|
|
593
|
+
</li>
|
|
594
|
+
<li>
|
|
595
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a></h5>
|
|
596
|
+
</li>
|
|
597
|
+
</ul>
|
|
598
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
599
|
+
</li>
|
|
600
|
+
</ul>
|
|
601
|
+
</li>
|
|
602
|
+
</ul>
|
|
603
|
+
</div>
|
|
604
|
+
</section>
|
|
605
|
+
<section class="tsd-panel tsd-member tsd-kind-type-alias">
|
|
606
|
+
<a name="i18nactions" class="tsd-anchor"></a>
|
|
607
|
+
<h3>I18n<wbr>Actions</h3>
|
|
608
|
+
<div class="tsd-signature tsd-kind-icon">I18n<wbr>Actions<span class="tsd-signature-symbol">:</span> <a href="interfaces/setlocaleaction.html" class="tsd-signature-type">SetLocaleAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/settranslatoraction.html" class="tsd-signature-type">SetTranslatorAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/updatei18naction.html" class="tsd-signature-type">UpdateI18nAction</a></div>
|
|
609
|
+
<aside class="tsd-sources">
|
|
610
|
+
<ul>
|
|
611
|
+
<li>Defined in packages/core/src/actions/actions.ts:279</li>
|
|
564
612
|
</ul>
|
|
565
613
|
</aside>
|
|
566
614
|
</section>
|
|
@@ -615,16 +663,6 @@
|
|
|
615
663
|
</ul>
|
|
616
664
|
</aside>
|
|
617
665
|
</section>
|
|
618
|
-
<section class="tsd-panel tsd-member tsd-kind-type-alias">
|
|
619
|
-
<a name="localeactions" class="tsd-anchor"></a>
|
|
620
|
-
<h3>Locale<wbr>Actions</h3>
|
|
621
|
-
<div class="tsd-signature tsd-kind-icon">Locale<wbr>Actions<span class="tsd-signature-symbol">:</span> <a href="interfaces/setlocaleaction.html" class="tsd-signature-type">SetLocaleAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/setlocalizedschemasaction.html" class="tsd-signature-type">SetLocalizedSchemasAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/setlocalizeduischemasaction.html" class="tsd-signature-type">SetLocalizedUISchemasAction</a></div>
|
|
622
|
-
<aside class="tsd-sources">
|
|
623
|
-
<ul>
|
|
624
|
-
<li>Defined in packages/core/src/actions/actions.ts:278</li>
|
|
625
|
-
</ul>
|
|
626
|
-
</aside>
|
|
627
|
-
</section>
|
|
628
666
|
<section class="tsd-panel tsd-member tsd-kind-type-alias tsd-has-type-parameter">
|
|
629
667
|
<a name="observable" class="tsd-anchor"></a>
|
|
630
668
|
<h3>Observable</h3>
|
|
@@ -892,7 +930,7 @@
|
|
|
892
930
|
<div class="tsd-signature tsd-kind-icon">Ref<wbr>Resolver<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>schema<span class="tsd-signature-symbol">: </span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a><span class="tsd-signature-symbol">></span></div>
|
|
893
931
|
<aside class="tsd-sources">
|
|
894
932
|
<ul>
|
|
895
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
933
|
+
<li>Defined in packages/core/src/util/renderer.ts:872</li>
|
|
896
934
|
</ul>
|
|
897
935
|
</aside>
|
|
898
936
|
<div class="tsd-type-declaration">
|
|
@@ -956,13 +994,66 @@
|
|
|
956
994
|
</ul>
|
|
957
995
|
</div>
|
|
958
996
|
</section>
|
|
997
|
+
<section class="tsd-panel tsd-member tsd-kind-type-alias">
|
|
998
|
+
<a name="translator" class="tsd-anchor"></a>
|
|
999
|
+
<h3>Translator</h3>
|
|
1000
|
+
<div class="tsd-signature tsd-kind-icon">Translator<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{ </span><span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, defaultMessage<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, values<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</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-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, defaultMessage<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span>, values<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</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">undefined</span><span class="tsd-signature-symbol"> }</span></div>
|
|
1001
|
+
<aside class="tsd-sources">
|
|
1002
|
+
<ul>
|
|
1003
|
+
<li>Defined in packages/core/src/i18n/i18nTypes.ts:4</li>
|
|
1004
|
+
</ul>
|
|
1005
|
+
</aside>
|
|
1006
|
+
<div class="tsd-type-declaration">
|
|
1007
|
+
<h4>Type declaration</h4>
|
|
1008
|
+
<ul class="tsd-parameters">
|
|
1009
|
+
<li class="tsd-parameter-signature">
|
|
1010
|
+
<ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias">
|
|
1011
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, defaultMessage<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, values<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
1012
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, defaultMessage<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span>, values<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</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">undefined</span></li>
|
|
1013
|
+
</ul>
|
|
1014
|
+
<ul class="tsd-descriptions">
|
|
1015
|
+
<li class="tsd-description">
|
|
1016
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1017
|
+
<ul class="tsd-parameters">
|
|
1018
|
+
<li>
|
|
1019
|
+
<h5>id: <span class="tsd-signature-type">string</span></h5>
|
|
1020
|
+
</li>
|
|
1021
|
+
<li>
|
|
1022
|
+
<h5>defaultMessage: <span class="tsd-signature-type">string</span></h5>
|
|
1023
|
+
</li>
|
|
1024
|
+
<li>
|
|
1025
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> values: <span class="tsd-signature-type">any</span></h5>
|
|
1026
|
+
</li>
|
|
1027
|
+
</ul>
|
|
1028
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
1029
|
+
</li>
|
|
1030
|
+
<li class="tsd-description">
|
|
1031
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1032
|
+
<ul class="tsd-parameters">
|
|
1033
|
+
<li>
|
|
1034
|
+
<h5>id: <span class="tsd-signature-type">string</span></h5>
|
|
1035
|
+
</li>
|
|
1036
|
+
<li>
|
|
1037
|
+
<h5>defaultMessage: <span class="tsd-signature-type">undefined</span></h5>
|
|
1038
|
+
</li>
|
|
1039
|
+
<li>
|
|
1040
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> values: <span class="tsd-signature-type">any</span></h5>
|
|
1041
|
+
</li>
|
|
1042
|
+
</ul>
|
|
1043
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h4>
|
|
1044
|
+
</li>
|
|
1045
|
+
</ul>
|
|
1046
|
+
</li>
|
|
1047
|
+
</ul>
|
|
1048
|
+
</div>
|
|
1049
|
+
</section>
|
|
959
1050
|
<section class="tsd-panel tsd-member tsd-kind-type-alias">
|
|
960
1051
|
<a name="uischemaactions" class="tsd-anchor"></a>
|
|
961
1052
|
<h3>UISchema<wbr>Actions</h3>
|
|
962
1053
|
<div class="tsd-signature tsd-kind-icon">UISchema<wbr>Actions<span class="tsd-signature-symbol">:</span> <a href="interfaces/adduischemaaction.html" class="tsd-signature-type">AddUISchemaAction</a><span class="tsd-signature-symbol"> | </span><a href="interfaces/removeuischemaaction.html" class="tsd-signature-type">RemoveUISchemaAction</a></div>
|
|
963
1054
|
<aside class="tsd-sources">
|
|
964
1055
|
<ul>
|
|
965
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1056
|
+
<li>Defined in packages/core/src/actions/actions.ts:246</li>
|
|
966
1057
|
</ul>
|
|
967
1058
|
</aside>
|
|
968
1059
|
</section>
|
|
@@ -1069,7 +1160,17 @@
|
|
|
1069
1160
|
<div class="tsd-signature tsd-kind-icon">Validation<wbr>Mode<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"ValidateAndShow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"ValidateAndHide"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"NoValidation"</span></div>
|
|
1070
1161
|
<aside class="tsd-sources">
|
|
1071
1162
|
<ul>
|
|
1072
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
1163
|
+
<li>Defined in packages/core/src/reducers/core.ts:61</li>
|
|
1164
|
+
</ul>
|
|
1165
|
+
</aside>
|
|
1166
|
+
</section>
|
|
1167
|
+
<section class="tsd-panel tsd-member tsd-kind-type-alias">
|
|
1168
|
+
<a name="i18njsonschema" class="tsd-anchor"></a>
|
|
1169
|
+
<h3>i18n<wbr>Json<wbr>Schema</h3>
|
|
1170
|
+
<div class="tsd-signature tsd-kind-icon">i18n<wbr>Json<wbr>Schema<span class="tsd-signature-symbol">:</span> <a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a><span class="tsd-signature-symbol"> & </span><span class="tsd-signature-symbol">{ </span>i18n<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> }</span></div>
|
|
1171
|
+
<aside class="tsd-sources">
|
|
1172
|
+
<ul>
|
|
1173
|
+
<li>Defined in packages/core/src/i18n/i18nTypes.ts:17</li>
|
|
1073
1174
|
</ul>
|
|
1074
1175
|
</aside>
|
|
1075
1176
|
</section>
|
|
@@ -1092,7 +1193,7 @@
|
|
|
1092
1193
|
<div class="tsd-signature tsd-kind-icon">ADD_<wbr>CELL<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/ADD_CELL"</span><span class="tsd-signature-symbol"> = "jsonforms/ADD_CELL"</span></div>
|
|
1093
1194
|
<aside class="tsd-sources">
|
|
1094
1195
|
<ul>
|
|
1095
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1196
|
+
<li>Defined in packages/core/src/actions/actions.ts:44</li>
|
|
1096
1197
|
</ul>
|
|
1097
1198
|
</aside>
|
|
1098
1199
|
</section>
|
|
@@ -1102,7 +1203,7 @@
|
|
|
1102
1203
|
<div class="tsd-signature tsd-kind-icon">ADD_<wbr>DEFAULT_<wbr>DATA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/ADD_DEFAULT_DATA"</span><span class="tsd-signature-symbol"> = `jsonforms/ADD_DEFAULT_DATA`</span></div>
|
|
1103
1204
|
<aside class="tsd-sources">
|
|
1104
1205
|
<ul>
|
|
1105
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1206
|
+
<li>Defined in packages/core/src/actions/actions.ts:60</li>
|
|
1106
1207
|
</ul>
|
|
1107
1208
|
</aside>
|
|
1108
1209
|
</section>
|
|
@@ -1112,7 +1213,7 @@
|
|
|
1112
1213
|
<div class="tsd-signature tsd-kind-icon">ADD_<wbr>RENDERER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/ADD_RENDERER"</span><span class="tsd-signature-symbol"> = "jsonforms/ADD_RENDERER"</span></div>
|
|
1113
1214
|
<aside class="tsd-sources">
|
|
1114
1215
|
<ul>
|
|
1115
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1216
|
+
<li>Defined in packages/core/src/actions/actions.ts:41</li>
|
|
1116
1217
|
</ul>
|
|
1117
1218
|
</aside>
|
|
1118
1219
|
</section>
|
|
@@ -1122,7 +1223,7 @@
|
|
|
1122
1223
|
<div class="tsd-signature tsd-kind-icon">ADD_<wbr>UI_<wbr>SCHEMA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/ADD_UI_SCHEMA"</span><span class="tsd-signature-symbol"> = `jsonforms/ADD_UI_SCHEMA`</span></div>
|
|
1123
1224
|
<aside class="tsd-sources">
|
|
1124
1225
|
<ul>
|
|
1125
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1226
|
+
<li>Defined in packages/core/src/actions/actions.ts:47</li>
|
|
1126
1227
|
</ul>
|
|
1127
1228
|
</aside>
|
|
1128
1229
|
</section>
|
|
@@ -1132,7 +1233,7 @@
|
|
|
1132
1233
|
<div class="tsd-signature tsd-kind-icon">INIT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/INIT"</span><span class="tsd-signature-symbol"> = "jsonforms/INIT"</span></div>
|
|
1133
1234
|
<aside class="tsd-sources">
|
|
1134
1235
|
<ul>
|
|
1135
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1236
|
+
<li>Defined in packages/core/src/actions/actions.ts:34</li>
|
|
1136
1237
|
</ul>
|
|
1137
1238
|
</aside>
|
|
1138
1239
|
</section>
|
|
@@ -1158,7 +1259,7 @@
|
|
|
1158
1259
|
<div class="tsd-signature tsd-kind-icon">REMOVE_<wbr>CELL<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/REMOVE_CELL"</span><span class="tsd-signature-symbol"> = "jsonforms/REMOVE_CELL"</span></div>
|
|
1159
1260
|
<aside class="tsd-sources">
|
|
1160
1261
|
<ul>
|
|
1161
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1262
|
+
<li>Defined in packages/core/src/actions/actions.ts:45</li>
|
|
1162
1263
|
</ul>
|
|
1163
1264
|
</aside>
|
|
1164
1265
|
</section>
|
|
@@ -1168,7 +1269,7 @@
|
|
|
1168
1269
|
<div class="tsd-signature tsd-kind-icon">REMOVE_<wbr>DEFAULT_<wbr>DATA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/REMOVE_DEFAULT_DATA"</span><span class="tsd-signature-symbol"> = `jsonforms/REMOVE_DEFAULT_DATA`</span></div>
|
|
1169
1270
|
<aside class="tsd-sources">
|
|
1170
1271
|
<ul>
|
|
1171
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1272
|
+
<li>Defined in packages/core/src/actions/actions.ts:61</li>
|
|
1172
1273
|
</ul>
|
|
1173
1274
|
</aside>
|
|
1174
1275
|
</section>
|
|
@@ -1178,7 +1279,7 @@
|
|
|
1178
1279
|
<div class="tsd-signature tsd-kind-icon">REMOVE_<wbr>RENDERER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/REMOVE_RENDERER"</span><span class="tsd-signature-symbol"> = "jsonforms/REMOVE_RENDERER"</span></div>
|
|
1179
1280
|
<aside class="tsd-sources">
|
|
1180
1281
|
<ul>
|
|
1181
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1282
|
+
<li>Defined in packages/core/src/actions/actions.ts:42</li>
|
|
1182
1283
|
</ul>
|
|
1183
1284
|
</aside>
|
|
1184
1285
|
</section>
|
|
@@ -1188,7 +1289,7 @@
|
|
|
1188
1289
|
<div class="tsd-signature tsd-kind-icon">REMOVE_<wbr>UI_<wbr>SCHEMA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/REMOVE_UI_SCHEMA"</span><span class="tsd-signature-symbol"> = `jsonforms/REMOVE_UI_SCHEMA`</span></div>
|
|
1189
1290
|
<aside class="tsd-sources">
|
|
1190
1291
|
<ul>
|
|
1191
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1292
|
+
<li>Defined in packages/core/src/actions/actions.ts:48</li>
|
|
1192
1293
|
</ul>
|
|
1193
1294
|
</aside>
|
|
1194
1295
|
</section>
|
|
@@ -1208,7 +1309,7 @@
|
|
|
1208
1309
|
<div class="tsd-signature tsd-kind-icon">SET_<wbr>AJV<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/SET_AJV"</span><span class="tsd-signature-symbol"> = "jsonforms/SET_AJV"</span></div>
|
|
1209
1310
|
<aside class="tsd-sources">
|
|
1210
1311
|
<ul>
|
|
1211
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1312
|
+
<li>Defined in packages/core/src/actions/actions.ts:36</li>
|
|
1212
1313
|
</ul>
|
|
1213
1314
|
</aside>
|
|
1214
1315
|
</section>
|
|
@@ -1218,7 +1319,7 @@
|
|
|
1218
1319
|
<div class="tsd-signature tsd-kind-icon">SET_<wbr>CONFIG<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/SET_CONFIG"</span><span class="tsd-signature-symbol"> = "jsonforms/SET_CONFIG"</span></div>
|
|
1219
1320
|
<aside class="tsd-sources">
|
|
1220
1321
|
<ul>
|
|
1221
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1322
|
+
<li>Defined in packages/core/src/actions/actions.ts:46</li>
|
|
1222
1323
|
</ul>
|
|
1223
1324
|
</aside>
|
|
1224
1325
|
</section>
|
|
@@ -1226,16 +1327,6 @@
|
|
|
1226
1327
|
<a name="set_locale" class="tsd-anchor"></a>
|
|
1227
1328
|
<h3><span class="tsd-flag ts-flagConst">Const</span> SET_<wbr>LOCALE</h3>
|
|
1228
1329
|
<div class="tsd-signature tsd-kind-icon">SET_<wbr>LOCALE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/SET_LOCALE"</span><span class="tsd-signature-symbol"> = `jsonforms/SET_LOCALE`</span></div>
|
|
1229
|
-
<aside class="tsd-sources">
|
|
1230
|
-
<ul>
|
|
1231
|
-
<li>Defined in packages/core/src/actions/actions.ts:53</li>
|
|
1232
|
-
</ul>
|
|
1233
|
-
</aside>
|
|
1234
|
-
</section>
|
|
1235
|
-
<section class="tsd-panel tsd-member tsd-kind-variable">
|
|
1236
|
-
<a name="set_localized_schemas" class="tsd-anchor"></a>
|
|
1237
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> SET_<wbr>LOCALIZED_<wbr>SCHEMAS</h3>
|
|
1238
|
-
<div class="tsd-signature tsd-kind-icon">SET_<wbr>LOCALIZED_<wbr>SCHEMAS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/SET_LOCALIZED_SCHEMAS"</span><span class="tsd-signature-symbol"> = "jsonforms/SET_LOCALIZED_SCHEMAS"</span></div>
|
|
1239
1330
|
<aside class="tsd-sources">
|
|
1240
1331
|
<ul>
|
|
1241
1332
|
<li>Defined in packages/core/src/actions/actions.ts:54</li>
|
|
@@ -1243,22 +1334,22 @@
|
|
|
1243
1334
|
</aside>
|
|
1244
1335
|
</section>
|
|
1245
1336
|
<section class="tsd-panel tsd-member tsd-kind-variable">
|
|
1246
|
-
<a name="
|
|
1247
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> SET_<wbr>
|
|
1248
|
-
<div class="tsd-signature tsd-kind-icon">SET_<wbr>
|
|
1337
|
+
<a name="set_schema" class="tsd-anchor"></a>
|
|
1338
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> SET_<wbr>SCHEMA</h3>
|
|
1339
|
+
<div class="tsd-signature tsd-kind-icon">SET_<wbr>SCHEMA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/SET_SCHEMA"</span><span class="tsd-signature-symbol"> = `jsonforms/SET_SCHEMA`</span></div>
|
|
1249
1340
|
<aside class="tsd-sources">
|
|
1250
1341
|
<ul>
|
|
1251
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1342
|
+
<li>Defined in packages/core/src/actions/actions.ts:49</li>
|
|
1252
1343
|
</ul>
|
|
1253
1344
|
</aside>
|
|
1254
1345
|
</section>
|
|
1255
1346
|
<section class="tsd-panel tsd-member tsd-kind-variable">
|
|
1256
|
-
<a name="
|
|
1257
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> SET_<wbr>
|
|
1258
|
-
<div class="tsd-signature tsd-kind-icon">SET_<wbr>
|
|
1347
|
+
<a name="set_translator" class="tsd-anchor"></a>
|
|
1348
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> SET_<wbr>TRANSLATOR</h3>
|
|
1349
|
+
<div class="tsd-signature tsd-kind-icon">SET_<wbr>TRANSLATOR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/SET_TRANSLATOR"</span><span class="tsd-signature-symbol"> = "jsonforms/SET_TRANSLATOR"</span></div>
|
|
1259
1350
|
<aside class="tsd-sources">
|
|
1260
1351
|
<ul>
|
|
1261
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1352
|
+
<li>Defined in packages/core/src/actions/actions.ts:55</li>
|
|
1262
1353
|
</ul>
|
|
1263
1354
|
</aside>
|
|
1264
1355
|
</section>
|
|
@@ -1268,7 +1359,7 @@
|
|
|
1268
1359
|
<div class="tsd-signature tsd-kind-icon">SET_<wbr>UISCHEMA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/SET_UISCHEMA"</span><span class="tsd-signature-symbol"> = `jsonforms/SET_UISCHEMA`</span></div>
|
|
1269
1360
|
<aside class="tsd-sources">
|
|
1270
1361
|
<ul>
|
|
1271
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1362
|
+
<li>Defined in packages/core/src/actions/actions.ts:50</li>
|
|
1272
1363
|
</ul>
|
|
1273
1364
|
</aside>
|
|
1274
1365
|
</section>
|
|
@@ -1278,7 +1369,7 @@
|
|
|
1278
1369
|
<div class="tsd-signature tsd-kind-icon">SET_<wbr>VALIDATION_<wbr>MODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/SET_VALIDATION_MODE"</span><span class="tsd-signature-symbol"> = "jsonforms/SET_VALIDATION_MODE"</span></div>
|
|
1279
1370
|
<aside class="tsd-sources">
|
|
1280
1371
|
<ul>
|
|
1281
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1372
|
+
<li>Defined in packages/core/src/actions/actions.ts:51</li>
|
|
1282
1373
|
</ul>
|
|
1283
1374
|
</aside>
|
|
1284
1375
|
</section>
|
|
@@ -1288,7 +1379,7 @@
|
|
|
1288
1379
|
<div class="tsd-signature tsd-kind-icon">UPDATE_<wbr>CORE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/UPDATE_CORE"</span><span class="tsd-signature-symbol"> = `jsonforms/UPDATE_CORE`</span></div>
|
|
1289
1380
|
<aside class="tsd-sources">
|
|
1290
1381
|
<ul>
|
|
1291
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1382
|
+
<li>Defined in packages/core/src/actions/actions.ts:35</li>
|
|
1292
1383
|
</ul>
|
|
1293
1384
|
</aside>
|
|
1294
1385
|
</section>
|
|
@@ -1298,7 +1389,7 @@
|
|
|
1298
1389
|
<div class="tsd-signature tsd-kind-icon">UPDATE_<wbr>DATA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/UPDATE"</span><span class="tsd-signature-symbol"> = "jsonforms/UPDATE"</span></div>
|
|
1299
1390
|
<aside class="tsd-sources">
|
|
1300
1391
|
<ul>
|
|
1301
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1392
|
+
<li>Defined in packages/core/src/actions/actions.ts:37</li>
|
|
1302
1393
|
</ul>
|
|
1303
1394
|
</aside>
|
|
1304
1395
|
</section>
|
|
@@ -1308,7 +1399,17 @@
|
|
|
1308
1399
|
<div class="tsd-signature tsd-kind-icon">UPDATE_<wbr>ERRORS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/UPDATE_ERRORS"</span><span class="tsd-signature-symbol"> = "jsonforms/UPDATE_ERRORS"</span></div>
|
|
1309
1400
|
<aside class="tsd-sources">
|
|
1310
1401
|
<ul>
|
|
1311
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1402
|
+
<li>Defined in packages/core/src/actions/actions.ts:38</li>
|
|
1403
|
+
</ul>
|
|
1404
|
+
</aside>
|
|
1405
|
+
</section>
|
|
1406
|
+
<section class="tsd-panel tsd-member tsd-kind-variable">
|
|
1407
|
+
<a name="update_i18n" class="tsd-anchor"></a>
|
|
1408
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> UPDATE_<wbr><wbr>I18N</h3>
|
|
1409
|
+
<div class="tsd-signature tsd-kind-icon">UPDATE_<wbr><wbr>I18N<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/UPDATE_I18N"</span><span class="tsd-signature-symbol"> = "jsonforms/UPDATE_I18N"</span></div>
|
|
1410
|
+
<aside class="tsd-sources">
|
|
1411
|
+
<ul>
|
|
1412
|
+
<li>Defined in packages/core/src/actions/actions.ts:57</li>
|
|
1312
1413
|
</ul>
|
|
1313
1414
|
</aside>
|
|
1314
1415
|
</section>
|
|
@@ -1318,7 +1419,7 @@
|
|
|
1318
1419
|
<div class="tsd-signature tsd-kind-icon">VALIDATE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"jsonforms/VALIDATE"</span><span class="tsd-signature-symbol"> = "jsonforms/VALIDATE"</span></div>
|
|
1319
1420
|
<aside class="tsd-sources">
|
|
1320
1421
|
<ul>
|
|
1321
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
1422
|
+
<li>Defined in packages/core/src/actions/actions.ts:40</li>
|
|
1322
1423
|
</ul>
|
|
1323
1424
|
</aside>
|
|
1324
1425
|
</section>
|
|
@@ -1328,7 +1429,7 @@
|
|
|
1328
1429
|
<div class="tsd-signature tsd-kind-icon">filtered<wbr>Error<wbr>Keywords<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ['additionalProperties', 'allOf', 'anyOf', 'oneOf']</span></div>
|
|
1329
1430
|
<aside class="tsd-sources">
|
|
1330
1431
|
<ul>
|
|
1331
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
1432
|
+
<li>Defined in packages/core/src/reducers/core.ts:388</li>
|
|
1332
1433
|
</ul>
|
|
1333
1434
|
</aside>
|
|
1334
1435
|
<div class="tsd-comment tsd-typography">
|
|
@@ -1647,7 +1748,7 @@
|
|
|
1647
1748
|
<div class="tsd-signature tsd-kind-icon">map<wbr>Dispatch<wbr>ToCell<wbr>Props<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>dispatch<span class="tsd-signature-symbol">: </span><a href="globals.html#dispatch" class="tsd-signature-type">Dispatch</a><span class="tsd-signature-symbol"><</span><a href="interfaces/anyaction.html" class="tsd-signature-type">AnyAction</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><a href="interfaces/dispatchpropsofcontrol.html" class="tsd-signature-type">DispatchPropsOfControl</a><span class="tsd-signature-symbol"> = mapDispatchToControlProps</span></div>
|
|
1648
1749
|
<aside class="tsd-sources">
|
|
1649
1750
|
<ul>
|
|
1650
|
-
<li>Defined in packages/core/src/util/cell.ts:
|
|
1751
|
+
<li>Defined in packages/core/src/util/cell.ts:253</li>
|
|
1651
1752
|
</ul>
|
|
1652
1753
|
</aside>
|
|
1653
1754
|
<div class="tsd-comment tsd-typography">
|
|
@@ -1733,23 +1834,6 @@
|
|
|
1733
1834
|
</li>
|
|
1734
1835
|
</ul>
|
|
1735
1836
|
</section>
|
|
1736
|
-
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
1737
|
-
<a name="alwaysvalid" class="tsd-anchor"></a>
|
|
1738
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> always<wbr>Valid</h3>
|
|
1739
|
-
<ul class="tsd-signatures tsd-kind-function">
|
|
1740
|
-
<li class="tsd-signature tsd-kind-icon">always<wbr>Valid<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">true</span></li>
|
|
1741
|
-
</ul>
|
|
1742
|
-
<ul class="tsd-descriptions">
|
|
1743
|
-
<li class="tsd-description">
|
|
1744
|
-
<aside class="tsd-sources">
|
|
1745
|
-
<ul>
|
|
1746
|
-
<li>Defined in packages/core/src/reducers/core.ts:70</li>
|
|
1747
|
-
</ul>
|
|
1748
|
-
</aside>
|
|
1749
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">true</span></h4>
|
|
1750
|
-
</li>
|
|
1751
|
-
</ul>
|
|
1752
|
-
</section>
|
|
1753
1837
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
1754
1838
|
<a name="and" class="tsd-anchor"></a>
|
|
1755
1839
|
<h3><span class="tsd-flag ts-flagConst">Const</span> and</h3>
|
|
@@ -1939,13 +2023,13 @@
|
|
|
1939
2023
|
<a name="computelabel" class="tsd-anchor"></a>
|
|
1940
2024
|
<h3><span class="tsd-flag ts-flagConst">Const</span> compute<wbr>Label</h3>
|
|
1941
2025
|
<ul class="tsd-signatures tsd-kind-function">
|
|
1942
|
-
<li class="tsd-signature tsd-kind-icon">compute<wbr>Label<span class="tsd-signature-symbol">(</span>label<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, required<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span>, hideRequiredAsterisk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
2026
|
+
<li class="tsd-signature tsd-kind-icon">compute<wbr>Label<span class="tsd-signature-symbol">(</span>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">undefined</span>, required<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span>, hideRequiredAsterisk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
1943
2027
|
</ul>
|
|
1944
2028
|
<ul class="tsd-descriptions">
|
|
1945
2029
|
<li class="tsd-description">
|
|
1946
2030
|
<aside class="tsd-sources">
|
|
1947
2031
|
<ul>
|
|
1948
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
2032
|
+
<li>Defined in packages/core/src/util/renderer.ts:95</li>
|
|
1949
2033
|
</ul>
|
|
1950
2034
|
</aside>
|
|
1951
2035
|
<div class="tsd-comment tsd-typography">
|
|
@@ -1957,7 +2041,7 @@
|
|
|
1957
2041
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1958
2042
|
<ul class="tsd-parameters">
|
|
1959
2043
|
<li>
|
|
1960
|
-
<h5>label: <span class="tsd-signature-type">string</span></h5>
|
|
2044
|
+
<h5>label: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
1961
2045
|
<div class="tsd-comment tsd-typography">
|
|
1962
2046
|
<div class="lead">
|
|
1963
2047
|
<p>the label string</p>
|
|
@@ -1974,6 +2058,11 @@
|
|
|
1974
2058
|
</li>
|
|
1975
2059
|
<li>
|
|
1976
2060
|
<h5>hideRequiredAsterisk: <span class="tsd-signature-type">boolean</span></h5>
|
|
2061
|
+
<div class="tsd-comment tsd-typography">
|
|
2062
|
+
<div class="lead">
|
|
2063
|
+
<p>applied UI Schema option</p>
|
|
2064
|
+
</div>
|
|
2065
|
+
</div>
|
|
1977
2066
|
</li>
|
|
1978
2067
|
</ul>
|
|
1979
2068
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
@@ -2052,7 +2141,7 @@
|
|
|
2052
2141
|
<li class="tsd-description">
|
|
2053
2142
|
<aside class="tsd-sources">
|
|
2054
2143
|
<ul>
|
|
2055
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
2144
|
+
<li>Defined in packages/core/src/reducers/core.ts:137</li>
|
|
2056
2145
|
</ul>
|
|
2057
2146
|
</aside>
|
|
2058
2147
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2078,7 +2167,7 @@
|
|
|
2078
2167
|
<li class="tsd-description">
|
|
2079
2168
|
<aside class="tsd-sources">
|
|
2080
2169
|
<ul>
|
|
2081
|
-
<li>Defined in packages/core/src/util/validator.ts:
|
|
2170
|
+
<li>Defined in packages/core/src/util/validator.ts:29</li>
|
|
2082
2171
|
</ul>
|
|
2083
2172
|
</aside>
|
|
2084
2173
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2190,7 +2279,7 @@
|
|
|
2190
2279
|
<li class="tsd-description">
|
|
2191
2280
|
<aside class="tsd-sources">
|
|
2192
2281
|
<ul>
|
|
2193
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
2282
|
+
<li>Defined in packages/core/src/util/renderer.ts:122</li>
|
|
2194
2283
|
</ul>
|
|
2195
2284
|
</aside>
|
|
2196
2285
|
<div class="tsd-comment tsd-typography">
|
|
@@ -2368,6 +2457,35 @@
|
|
|
2368
2457
|
</li>
|
|
2369
2458
|
</ul>
|
|
2370
2459
|
</section>
|
|
2460
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2461
|
+
<a name="defaulterrortranslator" class="tsd-anchor"></a>
|
|
2462
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> default<wbr>Error<wbr>Translator</h3>
|
|
2463
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
2464
|
+
<li class="tsd-signature tsd-kind-icon">default<wbr>Error<wbr>Translator<span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</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">Record</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">any</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">></span>, t<span class="tsd-signature-symbol">: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a>, uischema<span class="tsd-signature-symbol">: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
2465
|
+
</ul>
|
|
2466
|
+
<ul class="tsd-descriptions">
|
|
2467
|
+
<li class="tsd-description">
|
|
2468
|
+
<aside class="tsd-sources">
|
|
2469
|
+
<ul>
|
|
2470
|
+
<li>Defined in packages/core/src/i18n/i18nUtil.ts:49</li>
|
|
2471
|
+
</ul>
|
|
2472
|
+
</aside>
|
|
2473
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2474
|
+
<ul class="tsd-parameters">
|
|
2475
|
+
<li>
|
|
2476
|
+
<h5>error: <span class="tsd-signature-type">ErrorObject</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">Record</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">any</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">></span></h5>
|
|
2477
|
+
</li>
|
|
2478
|
+
<li>
|
|
2479
|
+
<h5>t: <a href="globals.html#translator" class="tsd-signature-type">Translator</a></h5>
|
|
2480
|
+
</li>
|
|
2481
|
+
<li>
|
|
2482
|
+
<h5>uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a></h5>
|
|
2483
|
+
</li>
|
|
2484
|
+
</ul>
|
|
2485
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
2486
|
+
</li>
|
|
2487
|
+
</ul>
|
|
2488
|
+
</section>
|
|
2371
2489
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2372
2490
|
<a name="defaultmapdispatchtocontrolprops" class="tsd-anchor"></a>
|
|
2373
2491
|
<h3><span class="tsd-flag ts-flagConst">Const</span> default<wbr>Map<wbr>Dispatch<wbr>ToControl<wbr>Props</h3>
|
|
@@ -2378,7 +2496,7 @@
|
|
|
2378
2496
|
<li class="tsd-description">
|
|
2379
2497
|
<aside class="tsd-sources">
|
|
2380
2498
|
<ul>
|
|
2381
|
-
<li>Defined in packages/core/src/util/cell.ts:
|
|
2499
|
+
<li>Defined in packages/core/src/util/cell.ts:261</li>
|
|
2382
2500
|
</ul>
|
|
2383
2501
|
</aside>
|
|
2384
2502
|
<div class="tsd-comment tsd-typography">
|
|
@@ -2409,7 +2527,7 @@
|
|
|
2409
2527
|
<li class="tsd-description">
|
|
2410
2528
|
<aside class="tsd-sources">
|
|
2411
2529
|
<ul>
|
|
2412
|
-
<li>Defined in packages/core/src/util/cell.ts:
|
|
2530
|
+
<li>Defined in packages/core/src/util/cell.ts:194</li>
|
|
2413
2531
|
</ul>
|
|
2414
2532
|
</aside>
|
|
2415
2533
|
<div class="tsd-comment tsd-typography">
|
|
@@ -2430,6 +2548,32 @@
|
|
|
2430
2548
|
</li>
|
|
2431
2549
|
</ul>
|
|
2432
2550
|
</section>
|
|
2551
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2552
|
+
<a name="defaulttranslator" class="tsd-anchor"></a>
|
|
2553
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> default<wbr>Translator</h3>
|
|
2554
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
2555
|
+
<li class="tsd-signature tsd-kind-icon">default<wbr>Translator<span class="tsd-signature-symbol">(</span>_id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, defaultMessage<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
2556
|
+
</ul>
|
|
2557
|
+
<ul class="tsd-descriptions">
|
|
2558
|
+
<li class="tsd-description">
|
|
2559
|
+
<aside class="tsd-sources">
|
|
2560
|
+
<ul>
|
|
2561
|
+
<li>Defined in packages/core/src/i18n/i18nUtil.ts:47</li>
|
|
2562
|
+
</ul>
|
|
2563
|
+
</aside>
|
|
2564
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2565
|
+
<ul class="tsd-parameters">
|
|
2566
|
+
<li>
|
|
2567
|
+
<h5>_id: <span class="tsd-signature-type">string</span></h5>
|
|
2568
|
+
</li>
|
|
2569
|
+
<li>
|
|
2570
|
+
<h5>defaultMessage: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
2571
|
+
</li>
|
|
2572
|
+
</ul>
|
|
2573
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
2574
|
+
</li>
|
|
2575
|
+
</ul>
|
|
2576
|
+
</section>
|
|
2433
2577
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2434
2578
|
<a name="derivelabel" class="tsd-anchor"></a>
|
|
2435
2579
|
<h3><span class="tsd-flag ts-flagConst">Const</span> derive<wbr>Label</h3>
|
|
@@ -2532,13 +2676,13 @@
|
|
|
2532
2676
|
<a name="enumtoenumoptionmapper" class="tsd-anchor"></a>
|
|
2533
2677
|
<h3><span class="tsd-flag ts-flagConst">Const</span> enum<wbr>ToEnum<wbr>Option<wbr>Mapper</h3>
|
|
2534
2678
|
<ul class="tsd-signatures tsd-kind-function">
|
|
2535
|
-
<li class="tsd-signature tsd-kind-icon">enum<wbr>ToEnum<wbr>Option<wbr>Mapper<span class="tsd-signature-symbol">(</span>e<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/enumoption.html" class="tsd-signature-type">EnumOption</a></li>
|
|
2679
|
+
<li class="tsd-signature tsd-kind-icon">enum<wbr>ToEnum<wbr>Option<wbr>Mapper<span class="tsd-signature-symbol">(</span>e<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, t<span class="tsd-signature-symbol">?: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a>, i18nKey<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><a href="interfaces/enumoption.html" class="tsd-signature-type">EnumOption</a></li>
|
|
2536
2680
|
</ul>
|
|
2537
2681
|
<ul class="tsd-descriptions">
|
|
2538
2682
|
<li class="tsd-description">
|
|
2539
2683
|
<aside class="tsd-sources">
|
|
2540
2684
|
<ul>
|
|
2541
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
2685
|
+
<li>Defined in packages/core/src/util/renderer.ts:178</li>
|
|
2542
2686
|
</ul>
|
|
2543
2687
|
</aside>
|
|
2544
2688
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2546,6 +2690,12 @@
|
|
|
2546
2690
|
<li>
|
|
2547
2691
|
<h5>e: <span class="tsd-signature-type">any</span></h5>
|
|
2548
2692
|
</li>
|
|
2693
|
+
<li>
|
|
2694
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> t: <a href="globals.html#translator" class="tsd-signature-type">Translator</a></h5>
|
|
2695
|
+
</li>
|
|
2696
|
+
<li>
|
|
2697
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> i18nKey: <span class="tsd-signature-type">string</span></h5>
|
|
2698
|
+
</li>
|
|
2549
2699
|
</ul>
|
|
2550
2700
|
<h4 class="tsd-returns-title">Returns <a href="interfaces/enumoption.html" class="tsd-signature-type">EnumOption</a></h4>
|
|
2551
2701
|
</li>
|
|
@@ -2561,7 +2711,7 @@
|
|
|
2561
2711
|
<li class="tsd-description">
|
|
2562
2712
|
<aside class="tsd-sources">
|
|
2563
2713
|
<ul>
|
|
2564
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
2714
|
+
<li>Defined in packages/core/src/reducers/core.ts:397</li>
|
|
2565
2715
|
</ul>
|
|
2566
2716
|
</aside>
|
|
2567
2717
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2587,7 +2737,7 @@
|
|
|
2587
2737
|
<li class="tsd-description">
|
|
2588
2738
|
<aside class="tsd-sources">
|
|
2589
2739
|
<ul>
|
|
2590
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
2740
|
+
<li>Defined in packages/core/src/reducers/core.ts:335</li>
|
|
2591
2741
|
</ul>
|
|
2592
2742
|
</aside>
|
|
2593
2743
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2730,7 +2880,7 @@
|
|
|
2730
2880
|
<li class="tsd-description">
|
|
2731
2881
|
<aside class="tsd-sources">
|
|
2732
2882
|
<ul>
|
|
2733
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
2883
|
+
<li>Defined in packages/core/src/reducers/core.ts:299</li>
|
|
2734
2884
|
</ul>
|
|
2735
2885
|
</aside>
|
|
2736
2886
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2753,7 +2903,7 @@
|
|
|
2753
2903
|
<li class="tsd-description">
|
|
2754
2904
|
<aside class="tsd-sources">
|
|
2755
2905
|
<ul>
|
|
2756
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
2906
|
+
<li>Defined in packages/core/src/reducers/core.ts:296</li>
|
|
2757
2907
|
</ul>
|
|
2758
2908
|
</aside>
|
|
2759
2909
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2799,7 +2949,7 @@
|
|
|
2799
2949
|
<li class="tsd-description">
|
|
2800
2950
|
<aside class="tsd-sources">
|
|
2801
2951
|
<ul>
|
|
2802
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
2952
|
+
<li>Defined in packages/core/src/reducers/core.ts:297</li>
|
|
2803
2953
|
</ul>
|
|
2804
2954
|
</aside>
|
|
2805
2955
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2822,7 +2972,7 @@
|
|
|
2822
2972
|
<li class="tsd-description">
|
|
2823
2973
|
<aside class="tsd-sources">
|
|
2824
2974
|
<ul>
|
|
2825
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
2975
|
+
<li>Defined in packages/core/src/reducers/core.ts:298</li>
|
|
2826
2976
|
</ul>
|
|
2827
2977
|
</aside>
|
|
2828
2978
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -2835,29 +2985,75 @@
|
|
|
2835
2985
|
</li>
|
|
2836
2986
|
</ul>
|
|
2837
2987
|
</section>
|
|
2988
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2989
|
+
<a name="fetcherrortranslator" class="tsd-anchor"></a>
|
|
2990
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> fetch<wbr>Error<wbr>Translator</h3>
|
|
2991
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
2992
|
+
<li class="tsd-signature tsd-kind-icon">fetch<wbr>Error<wbr>Translator<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">?: </span><a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a></li>
|
|
2993
|
+
</ul>
|
|
2994
|
+
<ul class="tsd-descriptions">
|
|
2995
|
+
<li class="tsd-description">
|
|
2996
|
+
<aside class="tsd-sources">
|
|
2997
|
+
<ul>
|
|
2998
|
+
<li>Defined in packages/core/src/reducers/i18n.ts:89</li>
|
|
2999
|
+
</ul>
|
|
3000
|
+
</aside>
|
|
3001
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3002
|
+
<ul class="tsd-parameters">
|
|
3003
|
+
<li>
|
|
3004
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> state: <a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a></h5>
|
|
3005
|
+
</li>
|
|
3006
|
+
</ul>
|
|
3007
|
+
<h4 class="tsd-returns-title">Returns <a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a></h4>
|
|
3008
|
+
</li>
|
|
3009
|
+
</ul>
|
|
3010
|
+
</section>
|
|
2838
3011
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2839
3012
|
<a name="fetchlocale" class="tsd-anchor"></a>
|
|
2840
3013
|
<h3><span class="tsd-flag ts-flagConst">Const</span> fetch<wbr>Locale</h3>
|
|
2841
3014
|
<ul class="tsd-signatures tsd-kind-function">
|
|
2842
|
-
<li class="tsd-signature tsd-kind-icon">fetch<wbr>Locale<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">?: </span><a href="interfaces/
|
|
3015
|
+
<li class="tsd-signature tsd-kind-icon">fetch<wbr>Locale<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">?: </span><a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
2843
3016
|
</ul>
|
|
2844
3017
|
<ul class="tsd-descriptions">
|
|
2845
3018
|
<li class="tsd-description">
|
|
2846
3019
|
<aside class="tsd-sources">
|
|
2847
3020
|
<ul>
|
|
2848
|
-
<li>Defined in packages/core/src/reducers/i18n.ts:
|
|
3021
|
+
<li>Defined in packages/core/src/reducers/i18n.ts:75</li>
|
|
2849
3022
|
</ul>
|
|
2850
3023
|
</aside>
|
|
2851
3024
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2852
3025
|
<ul class="tsd-parameters">
|
|
2853
3026
|
<li>
|
|
2854
|
-
<h5><span class="tsd-flag ts-flagOptional">Optional</span> state: <a href="interfaces/
|
|
3027
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> state: <a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a></h5>
|
|
2855
3028
|
</li>
|
|
2856
3029
|
</ul>
|
|
2857
3030
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
2858
3031
|
</li>
|
|
2859
3032
|
</ul>
|
|
2860
3033
|
</section>
|
|
3034
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3035
|
+
<a name="fetchtranslator" class="tsd-anchor"></a>
|
|
3036
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> fetch<wbr>Translator</h3>
|
|
3037
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
3038
|
+
<li class="tsd-signature tsd-kind-icon">fetch<wbr>Translator<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">?: </span><a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a></li>
|
|
3039
|
+
</ul>
|
|
3040
|
+
<ul class="tsd-descriptions">
|
|
3041
|
+
<li class="tsd-description">
|
|
3042
|
+
<aside class="tsd-sources">
|
|
3043
|
+
<ul>
|
|
3044
|
+
<li>Defined in packages/core/src/reducers/i18n.ts:82</li>
|
|
3045
|
+
</ul>
|
|
3046
|
+
</aside>
|
|
3047
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3048
|
+
<ul class="tsd-parameters">
|
|
3049
|
+
<li>
|
|
3050
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> state: <a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a></h5>
|
|
3051
|
+
</li>
|
|
3052
|
+
</ul>
|
|
3053
|
+
<h4 class="tsd-returns-title">Returns <a href="globals.html#translator" class="tsd-signature-type">Translator</a></h4>
|
|
3054
|
+
</li>
|
|
3055
|
+
</ul>
|
|
3056
|
+
</section>
|
|
2861
3057
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2862
3058
|
<a name="findallrefs" class="tsd-anchor"></a>
|
|
2863
3059
|
<h3><span class="tsd-flag ts-flagConst">Const</span> find<wbr>All<wbr>Refs</h3>
|
|
@@ -2908,52 +3104,6 @@
|
|
|
2908
3104
|
</li>
|
|
2909
3105
|
</ul>
|
|
2910
3106
|
</section>
|
|
2911
|
-
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2912
|
-
<a name="findlocalizedschema" class="tsd-anchor"></a>
|
|
2913
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> find<wbr>Localized<wbr>Schema</h3>
|
|
2914
|
-
<ul class="tsd-signatures tsd-kind-function">
|
|
2915
|
-
<li class="tsd-signature tsd-kind-icon">find<wbr>Localized<wbr>Schema<span class="tsd-signature-symbol">(</span>locale<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">(Anonymous function)</span></li>
|
|
2916
|
-
</ul>
|
|
2917
|
-
<ul class="tsd-descriptions">
|
|
2918
|
-
<li class="tsd-description">
|
|
2919
|
-
<aside class="tsd-sources">
|
|
2920
|
-
<ul>
|
|
2921
|
-
<li>Defined in packages/core/src/reducers/i18n.ts:72</li>
|
|
2922
|
-
</ul>
|
|
2923
|
-
</aside>
|
|
2924
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2925
|
-
<ul class="tsd-parameters">
|
|
2926
|
-
<li>
|
|
2927
|
-
<h5>locale: <span class="tsd-signature-type">string</span></h5>
|
|
2928
|
-
</li>
|
|
2929
|
-
</ul>
|
|
2930
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">(Anonymous function)</span></h4>
|
|
2931
|
-
</li>
|
|
2932
|
-
</ul>
|
|
2933
|
-
</section>
|
|
2934
|
-
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2935
|
-
<a name="findlocalizeduischema" class="tsd-anchor"></a>
|
|
2936
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> find<wbr>LocalizedUISchema</h3>
|
|
2937
|
-
<ul class="tsd-signatures tsd-kind-function">
|
|
2938
|
-
<li class="tsd-signature tsd-kind-icon">find<wbr>LocalizedUISchema<span class="tsd-signature-symbol">(</span>locale<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">(Anonymous function)</span></li>
|
|
2939
|
-
</ul>
|
|
2940
|
-
<ul class="tsd-descriptions">
|
|
2941
|
-
<li class="tsd-description">
|
|
2942
|
-
<aside class="tsd-sources">
|
|
2943
|
-
<ul>
|
|
2944
|
-
<li>Defined in packages/core/src/reducers/i18n.ts:81</li>
|
|
2945
|
-
</ul>
|
|
2946
|
-
</aside>
|
|
2947
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2948
|
-
<ul class="tsd-parameters">
|
|
2949
|
-
<li>
|
|
2950
|
-
<h5>locale: <span class="tsd-signature-type">string</span></h5>
|
|
2951
|
-
</li>
|
|
2952
|
-
</ul>
|
|
2953
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">(Anonymous function)</span></h4>
|
|
2954
|
-
</li>
|
|
2955
|
-
</ul>
|
|
2956
|
-
</section>
|
|
2957
3107
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
2958
3108
|
<a name="findmatchinguischema" class="tsd-anchor"></a>
|
|
2959
3109
|
<h3><span class="tsd-flag ts-flagConst">Const</span> find<wbr>MatchingUISchema</h3>
|
|
@@ -2987,7 +3137,7 @@
|
|
|
2987
3137
|
<li class="tsd-description">
|
|
2988
3138
|
<aside class="tsd-sources">
|
|
2989
3139
|
<ul>
|
|
2990
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
3140
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:73</li>
|
|
2991
3141
|
</ul>
|
|
2992
3142
|
</aside>
|
|
2993
3143
|
<div class="tsd-comment tsd-typography">
|
|
@@ -3304,6 +3454,50 @@
|
|
|
3304
3454
|
</li>
|
|
3305
3455
|
</ul>
|
|
3306
3456
|
</section>
|
|
3457
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3458
|
+
<a name="getcombinederrormessage" class="tsd-anchor"></a>
|
|
3459
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Combined<wbr>Error<wbr>Message</h3>
|
|
3460
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
3461
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>Combined<wbr>Error<wbr>Message<span class="tsd-signature-symbol">(</span>errors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</span><span class="tsd-signature-symbol">[]</span>, et<span class="tsd-signature-symbol">: </span><a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a>, t<span class="tsd-signature-symbol">: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a>, schema<span class="tsd-signature-symbol">?: </span><a href="globals.html#i18njsonschema" class="tsd-signature-type">i18nJsonSchema</a>, uischema<span class="tsd-signature-symbol">?: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a>, path<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></li>
|
|
3462
|
+
</ul>
|
|
3463
|
+
<ul class="tsd-descriptions">
|
|
3464
|
+
<li class="tsd-description">
|
|
3465
|
+
<aside class="tsd-sources">
|
|
3466
|
+
<ul>
|
|
3467
|
+
<li>Defined in packages/core/src/i18n/i18nUtil.ts:86</li>
|
|
3468
|
+
</ul>
|
|
3469
|
+
</aside>
|
|
3470
|
+
<div class="tsd-comment tsd-typography">
|
|
3471
|
+
<div class="lead">
|
|
3472
|
+
<p>Returns the determined error message for the given errors.
|
|
3473
|
+
All errors must correspond to the given schema, uischema or path.</p>
|
|
3474
|
+
</div>
|
|
3475
|
+
</div>
|
|
3476
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3477
|
+
<ul class="tsd-parameters">
|
|
3478
|
+
<li>
|
|
3479
|
+
<h5>errors: <span class="tsd-signature-type">ErrorObject</span><span class="tsd-signature-symbol">[]</span></h5>
|
|
3480
|
+
</li>
|
|
3481
|
+
<li>
|
|
3482
|
+
<h5>et: <a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a></h5>
|
|
3483
|
+
</li>
|
|
3484
|
+
<li>
|
|
3485
|
+
<h5>t: <a href="globals.html#translator" class="tsd-signature-type">Translator</a></h5>
|
|
3486
|
+
</li>
|
|
3487
|
+
<li>
|
|
3488
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> schema: <a href="globals.html#i18njsonschema" class="tsd-signature-type">i18nJsonSchema</a></h5>
|
|
3489
|
+
</li>
|
|
3490
|
+
<li>
|
|
3491
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a></h5>
|
|
3492
|
+
</li>
|
|
3493
|
+
<li>
|
|
3494
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> path: <span class="tsd-signature-type">string</span></h5>
|
|
3495
|
+
</li>
|
|
3496
|
+
</ul>
|
|
3497
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
3498
|
+
</li>
|
|
3499
|
+
</ul>
|
|
3500
|
+
</section>
|
|
3307
3501
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3308
3502
|
<a name="getconditionscope" class="tsd-anchor"></a>
|
|
3309
3503
|
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Condition<wbr>Scope</h3>
|
|
@@ -3340,7 +3534,7 @@
|
|
|
3340
3534
|
<li class="tsd-description">
|
|
3341
3535
|
<aside class="tsd-sources">
|
|
3342
3536
|
<ul>
|
|
3343
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
3537
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:117</li>
|
|
3344
3538
|
</ul>
|
|
3345
3539
|
</aside>
|
|
3346
3540
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3353,6 +3547,29 @@
|
|
|
3353
3547
|
</li>
|
|
3354
3548
|
</ul>
|
|
3355
3549
|
</section>
|
|
3550
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3551
|
+
<a name="getcontrolpath" class="tsd-anchor"></a>
|
|
3552
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Control<wbr>Path</h3>
|
|
3553
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
3554
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>Control<wbr>Path<span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
|
|
3555
|
+
</ul>
|
|
3556
|
+
<ul class="tsd-descriptions">
|
|
3557
|
+
<li class="tsd-description">
|
|
3558
|
+
<aside class="tsd-sources">
|
|
3559
|
+
<ul>
|
|
3560
|
+
<li>Defined in packages/core/src/reducers/core.ts:313</li>
|
|
3561
|
+
</ul>
|
|
3562
|
+
</aside>
|
|
3563
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3564
|
+
<ul class="tsd-parameters">
|
|
3565
|
+
<li>
|
|
3566
|
+
<h5>error: <span class="tsd-signature-type">ErrorObject</span></h5>
|
|
3567
|
+
</li>
|
|
3568
|
+
</ul>
|
|
3569
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
|
|
3570
|
+
</li>
|
|
3571
|
+
</ul>
|
|
3572
|
+
</section>
|
|
3356
3573
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3357
3574
|
<a name="getdata" class="tsd-anchor"></a>
|
|
3358
3575
|
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Data</h3>
|
|
@@ -3409,7 +3626,7 @@
|
|
|
3409
3626
|
<li class="tsd-description">
|
|
3410
3627
|
<aside class="tsd-sources">
|
|
3411
3628
|
<ul>
|
|
3412
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
3629
|
+
<li>Defined in packages/core/src/util/renderer.ts:820</li>
|
|
3413
3630
|
</ul>
|
|
3414
3631
|
</aside>
|
|
3415
3632
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3432,7 +3649,7 @@
|
|
|
3432
3649
|
<li class="tsd-description">
|
|
3433
3650
|
<aside class="tsd-sources">
|
|
3434
3651
|
<ul>
|
|
3435
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
3652
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:107</li>
|
|
3436
3653
|
</ul>
|
|
3437
3654
|
</aside>
|
|
3438
3655
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3448,6 +3665,23 @@
|
|
|
3448
3665
|
</li>
|
|
3449
3666
|
</ul>
|
|
3450
3667
|
</section>
|
|
3668
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3669
|
+
<a name="geterrortranslator" class="tsd-anchor"></a>
|
|
3670
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Error<wbr>Translator</h3>
|
|
3671
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
3672
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>Error<wbr>Translator<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">(Anonymous function)</span></li>
|
|
3673
|
+
</ul>
|
|
3674
|
+
<ul class="tsd-descriptions">
|
|
3675
|
+
<li class="tsd-description">
|
|
3676
|
+
<aside class="tsd-sources">
|
|
3677
|
+
<ul>
|
|
3678
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:126</li>
|
|
3679
|
+
</ul>
|
|
3680
|
+
</aside>
|
|
3681
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">(Anonymous function)</span></h4>
|
|
3682
|
+
</li>
|
|
3683
|
+
</ul>
|
|
3684
|
+
</section>
|
|
3451
3685
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3452
3686
|
<a name="geterrorsat" class="tsd-anchor"></a>
|
|
3453
3687
|
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Errors<wbr>At</h3>
|
|
@@ -3458,7 +3692,7 @@
|
|
|
3458
3692
|
<li class="tsd-description">
|
|
3459
3693
|
<aside class="tsd-sources">
|
|
3460
3694
|
<ul>
|
|
3461
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
3695
|
+
<li>Defined in packages/core/src/reducers/core.ts:390</li>
|
|
3462
3696
|
</ul>
|
|
3463
3697
|
</aside>
|
|
3464
3698
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3519,71 +3753,135 @@
|
|
|
3519
3753
|
</ul>
|
|
3520
3754
|
</section>
|
|
3521
3755
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3522
|
-
<a name="
|
|
3523
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>
|
|
3756
|
+
<a name="geti18nkey" class="tsd-anchor"></a>
|
|
3757
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>I18n<wbr>Key</h3>
|
|
3524
3758
|
<ul class="tsd-signatures tsd-kind-function">
|
|
3525
|
-
<li class="tsd-signature tsd-kind-icon">get<wbr>
|
|
3759
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>I18n<wbr>Key<span class="tsd-signature-symbol">(</span>schema<span class="tsd-signature-symbol">: </span><a href="globals.html#i18njsonschema" class="tsd-signature-type">i18nJsonSchema</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, uischema<span class="tsd-signature-symbol">: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, path<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, key<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">undefined</span></li>
|
|
3526
3760
|
</ul>
|
|
3527
3761
|
<ul class="tsd-descriptions">
|
|
3528
3762
|
<li class="tsd-description">
|
|
3529
3763
|
<aside class="tsd-sources">
|
|
3530
3764
|
<ul>
|
|
3531
|
-
<li>Defined in packages/core/src/
|
|
3765
|
+
<li>Defined in packages/core/src/i18n/i18nUtil.ts:38</li>
|
|
3532
3766
|
</ul>
|
|
3533
3767
|
</aside>
|
|
3534
3768
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3535
3769
|
<ul class="tsd-parameters">
|
|
3536
3770
|
<li>
|
|
3537
|
-
<h5>
|
|
3771
|
+
<h5>schema: <a href="globals.html#i18njsonschema" class="tsd-signature-type">i18nJsonSchema</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
3772
|
+
</li>
|
|
3773
|
+
<li>
|
|
3774
|
+
<h5>uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
3775
|
+
</li>
|
|
3776
|
+
<li>
|
|
3777
|
+
<h5>path: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
3778
|
+
</li>
|
|
3779
|
+
<li>
|
|
3780
|
+
<h5>key: <span class="tsd-signature-type">string</span></h5>
|
|
3538
3781
|
</li>
|
|
3539
3782
|
</ul>
|
|
3540
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
3783
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h4>
|
|
3541
3784
|
</li>
|
|
3542
3785
|
</ul>
|
|
3543
3786
|
</section>
|
|
3544
3787
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3545
|
-
<a name="
|
|
3546
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>
|
|
3788
|
+
<a name="geti18nkeyprefix" class="tsd-anchor"></a>
|
|
3789
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>I18n<wbr>Key<wbr>Prefix</h3>
|
|
3547
3790
|
<ul class="tsd-signatures tsd-kind-function">
|
|
3548
|
-
<li class="tsd-signature tsd-kind-icon">get<wbr>
|
|
3791
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>I18n<wbr>Key<wbr>Prefix<span class="tsd-signature-symbol">(</span>schema<span class="tsd-signature-symbol">: </span><a href="globals.html#i18njsonschema" class="tsd-signature-type">i18nJsonSchema</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, uischema<span class="tsd-signature-symbol">: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, path<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</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">undefined</span></li>
|
|
3549
3792
|
</ul>
|
|
3550
3793
|
<ul class="tsd-descriptions">
|
|
3551
3794
|
<li class="tsd-description">
|
|
3552
3795
|
<aside class="tsd-sources">
|
|
3553
3796
|
<ul>
|
|
3554
|
-
<li>Defined in packages/core/src/
|
|
3797
|
+
<li>Defined in packages/core/src/i18n/i18nUtil.ts:27</li>
|
|
3555
3798
|
</ul>
|
|
3556
3799
|
</aside>
|
|
3557
3800
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3558
3801
|
<ul class="tsd-parameters">
|
|
3559
3802
|
<li>
|
|
3560
|
-
<h5>
|
|
3803
|
+
<h5>schema: <a href="globals.html#i18njsonschema" class="tsd-signature-type">i18nJsonSchema</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
3804
|
+
</li>
|
|
3805
|
+
<li>
|
|
3806
|
+
<h5>uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
3807
|
+
</li>
|
|
3808
|
+
<li>
|
|
3809
|
+
<h5>path: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
3561
3810
|
</li>
|
|
3562
3811
|
</ul>
|
|
3563
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">
|
|
3812
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h4>
|
|
3564
3813
|
</li>
|
|
3565
3814
|
</ul>
|
|
3566
3815
|
</section>
|
|
3567
3816
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3568
|
-
<a name="
|
|
3569
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>
|
|
3817
|
+
<a name="geti18nkeyprefixbyschema" class="tsd-anchor"></a>
|
|
3818
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>I18n<wbr>Key<wbr>Prefix<wbr>BySchema</h3>
|
|
3570
3819
|
<ul class="tsd-signatures tsd-kind-function">
|
|
3571
|
-
<li class="tsd-signature tsd-kind-icon">get<wbr>
|
|
3820
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>I18n<wbr>Key<wbr>Prefix<wbr>BySchema<span class="tsd-signature-symbol">(</span>schema<span class="tsd-signature-symbol">: </span><a href="globals.html#i18njsonschema" class="tsd-signature-type">i18nJsonSchema</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, uischema<span class="tsd-signature-symbol">: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</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">undefined</span></li>
|
|
3572
3821
|
</ul>
|
|
3573
3822
|
<ul class="tsd-descriptions">
|
|
3574
3823
|
<li class="tsd-description">
|
|
3575
3824
|
<aside class="tsd-sources">
|
|
3576
3825
|
<ul>
|
|
3577
|
-
<li>Defined in packages/core/src/
|
|
3826
|
+
<li>Defined in packages/core/src/i18n/i18nUtil.ts:7</li>
|
|
3578
3827
|
</ul>
|
|
3579
3828
|
</aside>
|
|
3580
3829
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3581
3830
|
<ul class="tsd-parameters">
|
|
3582
3831
|
<li>
|
|
3583
|
-
<h5>
|
|
3832
|
+
<h5>schema: <a href="globals.html#i18njsonschema" class="tsd-signature-type">i18nJsonSchema</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
3833
|
+
</li>
|
|
3834
|
+
<li>
|
|
3835
|
+
<h5>uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
3584
3836
|
</li>
|
|
3585
3837
|
</ul>
|
|
3586
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">
|
|
3838
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h4>
|
|
3839
|
+
</li>
|
|
3840
|
+
</ul>
|
|
3841
|
+
</section>
|
|
3842
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3843
|
+
<a name="getinvalidproperty" class="tsd-anchor"></a>
|
|
3844
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Invalid<wbr>Property</h3>
|
|
3845
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
3846
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>Invalid<wbr>Property<span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</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">undefined</span></li>
|
|
3847
|
+
</ul>
|
|
3848
|
+
<ul class="tsd-descriptions">
|
|
3849
|
+
<li class="tsd-description">
|
|
3850
|
+
<aside class="tsd-sources">
|
|
3851
|
+
<ul>
|
|
3852
|
+
<li>Defined in packages/core/src/reducers/core.ts:301</li>
|
|
3853
|
+
</ul>
|
|
3854
|
+
</aside>
|
|
3855
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3856
|
+
<ul class="tsd-parameters">
|
|
3857
|
+
<li>
|
|
3858
|
+
<h5>error: <span class="tsd-signature-type">ErrorObject</span></h5>
|
|
3859
|
+
</li>
|
|
3860
|
+
</ul>
|
|
3861
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h4>
|
|
3862
|
+
</li>
|
|
3863
|
+
</ul>
|
|
3864
|
+
</section>
|
|
3865
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3866
|
+
<a name="getlocale" class="tsd-anchor"></a>
|
|
3867
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Locale</h3>
|
|
3868
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
3869
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>Locale<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">: </span><a href="interfaces/jsonformsstate.html" class="tsd-signature-type">JsonFormsState</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
3870
|
+
</ul>
|
|
3871
|
+
<ul class="tsd-descriptions">
|
|
3872
|
+
<li class="tsd-description">
|
|
3873
|
+
<aside class="tsd-sources">
|
|
3874
|
+
<ul>
|
|
3875
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:119</li>
|
|
3876
|
+
</ul>
|
|
3877
|
+
</aside>
|
|
3878
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3879
|
+
<ul class="tsd-parameters">
|
|
3880
|
+
<li>
|
|
3881
|
+
<h5>state: <a href="interfaces/jsonformsstate.html" class="tsd-signature-type">JsonFormsState</a></h5>
|
|
3882
|
+
</li>
|
|
3883
|
+
</ul>
|
|
3884
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
3587
3885
|
</li>
|
|
3588
3886
|
</ul>
|
|
3589
3887
|
</section>
|
|
@@ -3597,7 +3895,7 @@
|
|
|
3597
3895
|
<li class="tsd-description">
|
|
3598
3896
|
<aside class="tsd-sources">
|
|
3599
3897
|
<ul>
|
|
3600
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
3898
|
+
<li>Defined in packages/core/src/reducers/core.ts:90</li>
|
|
3601
3899
|
</ul>
|
|
3602
3900
|
</aside>
|
|
3603
3901
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3669,7 +3967,7 @@
|
|
|
3669
3967
|
<li class="tsd-description">
|
|
3670
3968
|
<aside class="tsd-sources">
|
|
3671
3969
|
<ul>
|
|
3672
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
3970
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:113</li>
|
|
3673
3971
|
</ul>
|
|
3674
3972
|
</aside>
|
|
3675
3973
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3685,6 +3983,23 @@
|
|
|
3685
3983
|
</li>
|
|
3686
3984
|
</ul>
|
|
3687
3985
|
</section>
|
|
3986
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3987
|
+
<a name="gettranslator" class="tsd-anchor"></a>
|
|
3988
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> get<wbr>Translator</h3>
|
|
3989
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
3990
|
+
<li class="tsd-signature tsd-kind-icon">get<wbr>Translator<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">(Anonymous function)</span></li>
|
|
3991
|
+
</ul>
|
|
3992
|
+
<ul class="tsd-descriptions">
|
|
3993
|
+
<li class="tsd-description">
|
|
3994
|
+
<aside class="tsd-sources">
|
|
3995
|
+
<ul>
|
|
3996
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:122</li>
|
|
3997
|
+
</ul>
|
|
3998
|
+
</aside>
|
|
3999
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">(Anonymous function)</span></h4>
|
|
4000
|
+
</li>
|
|
4001
|
+
</ul>
|
|
4002
|
+
</section>
|
|
3688
4003
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
3689
4004
|
<a name="getuischemas" class="tsd-anchor"></a>
|
|
3690
4005
|
<h3><span class="tsd-flag ts-flagConst">Const</span> getUISchemas</h3>
|
|
@@ -3741,7 +4056,7 @@
|
|
|
3741
4056
|
<li class="tsd-description">
|
|
3742
4057
|
<aside class="tsd-sources">
|
|
3743
4058
|
<ul>
|
|
3744
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
4059
|
+
<li>Defined in packages/core/src/reducers/core.ts:119</li>
|
|
3745
4060
|
</ul>
|
|
3746
4061
|
</aside>
|
|
3747
4062
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3767,7 +4082,7 @@
|
|
|
3767
4082
|
<li class="tsd-description">
|
|
3768
4083
|
<aside class="tsd-sources">
|
|
3769
4084
|
<ul>
|
|
3770
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
4085
|
+
<li>Defined in packages/core/src/reducers/core.ts:112</li>
|
|
3771
4086
|
</ul>
|
|
3772
4087
|
</aside>
|
|
3773
4088
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3885,7 +4200,7 @@
|
|
|
3885
4200
|
<li class="tsd-description">
|
|
3886
4201
|
<aside class="tsd-sources">
|
|
3887
4202
|
<ul>
|
|
3888
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
4203
|
+
<li>Defined in packages/core/src/reducers/core.ts:129</li>
|
|
3889
4204
|
</ul>
|
|
3890
4205
|
</aside>
|
|
3891
4206
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3902,25 +4217,25 @@
|
|
|
3902
4217
|
<a name="i18nreducer" class="tsd-anchor"></a>
|
|
3903
4218
|
<h3><span class="tsd-flag ts-flagConst">Const</span> i18n<wbr>Reducer</h3>
|
|
3904
4219
|
<ul class="tsd-signatures tsd-kind-function">
|
|
3905
|
-
<li class="tsd-signature tsd-kind-icon">i18n<wbr>Reducer<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">?: </span><
|
|
4220
|
+
<li class="tsd-signature tsd-kind-icon">i18n<wbr>Reducer<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">?: </span><a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a>, action<span class="tsd-signature-symbol">: </span><a href="globals.html#i18nactions" class="tsd-signature-type">I18nActions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a></li>
|
|
3906
4221
|
</ul>
|
|
3907
4222
|
<ul class="tsd-descriptions">
|
|
3908
4223
|
<li class="tsd-description">
|
|
3909
4224
|
<aside class="tsd-sources">
|
|
3910
4225
|
<ul>
|
|
3911
|
-
<li>Defined in packages/core/src/reducers/i18n.ts:
|
|
4226
|
+
<li>Defined in packages/core/src/reducers/i18n.ts:36</li>
|
|
3912
4227
|
</ul>
|
|
3913
4228
|
</aside>
|
|
3914
4229
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3915
4230
|
<ul class="tsd-parameters">
|
|
3916
4231
|
<li>
|
|
3917
|
-
<h5><span class="tsd-flag ts-flagDefault value">Default value</span> state: <
|
|
4232
|
+
<h5><span class="tsd-flag ts-flagDefault value">Default value</span> state: <a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a><span class="tsd-signature-symbol"> = defaultJsonFormsI18nState</span></h5>
|
|
3918
4233
|
</li>
|
|
3919
4234
|
<li>
|
|
3920
|
-
<h5>action: <
|
|
4235
|
+
<h5>action: <a href="globals.html#i18nactions" class="tsd-signature-type">I18nActions</a></h5>
|
|
3921
4236
|
</li>
|
|
3922
4237
|
</ul>
|
|
3923
|
-
<h4 class="tsd-returns-title">Returns <
|
|
4238
|
+
<h4 class="tsd-returns-title">Returns <a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a></h4>
|
|
3924
4239
|
</li>
|
|
3925
4240
|
</ul>
|
|
3926
4241
|
</section>
|
|
@@ -3928,13 +4243,13 @@
|
|
|
3928
4243
|
<a name="init" class="tsd-anchor"></a>
|
|
3929
4244
|
<h3><span class="tsd-flag ts-flagConst">Const</span> init</h3>
|
|
3930
4245
|
<ul class="tsd-signatures tsd-kind-function">
|
|
3931
|
-
<li class="tsd-signature tsd-kind-icon">init<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, schema<span class="tsd-signature-symbol">?: </span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a>, uischema<span class="tsd-signature-symbol">?: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a>, options<span class="tsd-signature-symbol">?: </span><a href="interfaces/initactionoptions.html" class="tsd-signature-type">InitActionOptions</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">AJV
|
|
4246
|
+
<li class="tsd-signature tsd-kind-icon">init<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, schema<span class="tsd-signature-symbol">?: </span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a>, uischema<span class="tsd-signature-symbol">?: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a>, options<span class="tsd-signature-symbol">?: </span><a href="interfaces/initactionoptions.html" class="tsd-signature-type">InitActionOptions</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">AJV</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span>options<span class="tsd-signature-symbol">: </span><a href="interfaces/initactionoptions.html" class="tsd-signature-type">InitActionOptions</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Ajv</span><span class="tsd-signature-symbol">; </span>schema<span class="tsd-signature-symbol">: </span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a><span class="tsd-signature-symbol">; </span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"jsonforms/INIT"</span><span class="tsd-signature-symbol">; </span>uischema<span class="tsd-signature-symbol">: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol"> }</span></li>
|
|
3932
4247
|
</ul>
|
|
3933
4248
|
<ul class="tsd-descriptions">
|
|
3934
4249
|
<li class="tsd-description">
|
|
3935
4250
|
<aside class="tsd-sources">
|
|
3936
4251
|
<ul>
|
|
3937
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
4252
|
+
<li>Defined in packages/core/src/actions/actions.ts:110</li>
|
|
3938
4253
|
</ul>
|
|
3939
4254
|
</aside>
|
|
3940
4255
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -3949,7 +4264,7 @@
|
|
|
3949
4264
|
<h5><span class="tsd-flag ts-flagOptional">Optional</span> uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a></h5>
|
|
3950
4265
|
</li>
|
|
3951
4266
|
<li>
|
|
3952
|
-
<h5><span class="tsd-flag ts-flagOptional">Optional</span> options: <a href="interfaces/initactionoptions.html" class="tsd-signature-type">InitActionOptions</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">AJV
|
|
4267
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> options: <a href="interfaces/initactionoptions.html" class="tsd-signature-type">InitActionOptions</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">AJV</span></h5>
|
|
3953
4268
|
</li>
|
|
3954
4269
|
</ul>
|
|
3955
4270
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span>options<span class="tsd-signature-symbol">: </span><a href="interfaces/initactionoptions.html" class="tsd-signature-type">InitActionOptions</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Ajv</span><span class="tsd-signature-symbol">; </span>schema<span class="tsd-signature-symbol">: </span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a><span class="tsd-signature-symbol">; </span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"jsonforms/INIT"</span><span class="tsd-signature-symbol">; </span>uischema<span class="tsd-signature-symbol">: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol"> }</span></h4>
|
|
@@ -4149,13 +4464,13 @@
|
|
|
4149
4464
|
<a name="isdescriptionhidden" class="tsd-anchor"></a>
|
|
4150
4465
|
<h3><span class="tsd-flag ts-flagConst">Const</span> is<wbr>Description<wbr>Hidden</h3>
|
|
4151
4466
|
<ul class="tsd-signatures tsd-kind-function">
|
|
4152
|
-
<li class="tsd-signature tsd-kind-icon">is<wbr>Description<wbr>Hidden<span class="tsd-signature-symbol">(</span>visible<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span>, description<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, isFocused<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span>, showUnfocusedDescription<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
|
4467
|
+
<li class="tsd-signature tsd-kind-icon">is<wbr>Description<wbr>Hidden<span class="tsd-signature-symbol">(</span>visible<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span>, description<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, isFocused<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span>, showUnfocusedDescription<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
|
4153
4468
|
</ul>
|
|
4154
4469
|
<ul class="tsd-descriptions">
|
|
4155
4470
|
<li class="tsd-description">
|
|
4156
4471
|
<aside class="tsd-sources">
|
|
4157
4472
|
<ul>
|
|
4158
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
4473
|
+
<li>Defined in packages/core/src/util/renderer.ts:156</li>
|
|
4159
4474
|
</ul>
|
|
4160
4475
|
</aside>
|
|
4161
4476
|
<div class="tsd-comment tsd-typography">
|
|
@@ -4174,7 +4489,7 @@
|
|
|
4174
4489
|
</div>
|
|
4175
4490
|
</li>
|
|
4176
4491
|
<li>
|
|
4177
|
-
<h5>description: <span class="tsd-signature-type">string</span></h5>
|
|
4492
|
+
<h5>description: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
4178
4493
|
<div class="tsd-comment tsd-typography">
|
|
4179
4494
|
<div class="lead">
|
|
4180
4495
|
<p>the element's description</p>
|
|
@@ -4381,7 +4696,7 @@
|
|
|
4381
4696
|
<li class="tsd-description">
|
|
4382
4697
|
<aside class="tsd-sources">
|
|
4383
4698
|
<ul>
|
|
4384
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
4699
|
+
<li>Defined in packages/core/src/reducers/core.ts:373</li>
|
|
4385
4700
|
</ul>
|
|
4386
4701
|
</aside>
|
|
4387
4702
|
<div class="tsd-comment tsd-typography">
|
|
@@ -4447,7 +4762,7 @@
|
|
|
4447
4762
|
<li class="tsd-description">
|
|
4448
4763
|
<aside class="tsd-sources">
|
|
4449
4764
|
<ul>
|
|
4450
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
4765
|
+
<li>Defined in packages/core/src/util/renderer.ts:61</li>
|
|
4451
4766
|
</ul>
|
|
4452
4767
|
</aside>
|
|
4453
4768
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -4667,7 +4982,7 @@
|
|
|
4667
4982
|
<li class="tsd-description">
|
|
4668
4983
|
<aside class="tsd-sources">
|
|
4669
4984
|
<ul>
|
|
4670
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
4985
|
+
<li>Defined in packages/core/src/util/renderer.ts:727</li>
|
|
4671
4986
|
</ul>
|
|
4672
4987
|
</aside>
|
|
4673
4988
|
<div class="tsd-comment tsd-typography">
|
|
@@ -4701,7 +5016,7 @@
|
|
|
4701
5016
|
<li class="tsd-description">
|
|
4702
5017
|
<aside class="tsd-sources">
|
|
4703
5018
|
<ul>
|
|
4704
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5019
|
+
<li>Defined in packages/core/src/util/renderer.ts:495</li>
|
|
4705
5020
|
</ul>
|
|
4706
5021
|
</aside>
|
|
4707
5022
|
<div class="tsd-comment tsd-typography">
|
|
@@ -4735,7 +5050,7 @@
|
|
|
4735
5050
|
<li class="tsd-description">
|
|
4736
5051
|
<aside class="tsd-sources">
|
|
4737
5052
|
<ul>
|
|
4738
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5053
|
+
<li>Defined in packages/core/src/util/renderer.ts:776</li>
|
|
4739
5054
|
</ul>
|
|
4740
5055
|
</aside>
|
|
4741
5056
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -4758,7 +5073,7 @@
|
|
|
4758
5073
|
<li class="tsd-description">
|
|
4759
5074
|
<aside class="tsd-sources">
|
|
4760
5075
|
<ul>
|
|
4761
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5076
|
+
<li>Defined in packages/core/src/util/renderer.ts:1002</li>
|
|
4762
5077
|
</ul>
|
|
4763
5078
|
</aside>
|
|
4764
5079
|
<div class="tsd-comment tsd-typography">
|
|
@@ -4800,7 +5115,7 @@
|
|
|
4800
5115
|
<li class="tsd-description">
|
|
4801
5116
|
<aside class="tsd-sources">
|
|
4802
5117
|
<ul>
|
|
4803
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5118
|
+
<li>Defined in packages/core/src/util/renderer.ts:1008</li>
|
|
4804
5119
|
</ul>
|
|
4805
5120
|
</aside>
|
|
4806
5121
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -4826,7 +5141,7 @@
|
|
|
4826
5141
|
<li class="tsd-description">
|
|
4827
5142
|
<aside class="tsd-sources">
|
|
4828
5143
|
<ul>
|
|
4829
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5144
|
+
<li>Defined in packages/core/src/util/renderer.ts:688</li>
|
|
4830
5145
|
</ul>
|
|
4831
5146
|
</aside>
|
|
4832
5147
|
<div class="tsd-comment tsd-typography">
|
|
@@ -4868,7 +5183,7 @@
|
|
|
4868
5183
|
<li class="tsd-description">
|
|
4869
5184
|
<aside class="tsd-sources">
|
|
4870
5185
|
<ul>
|
|
4871
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5186
|
+
<li>Defined in packages/core/src/util/renderer.ts:1033</li>
|
|
4872
5187
|
</ul>
|
|
4873
5188
|
</aside>
|
|
4874
5189
|
<div class="tsd-comment tsd-typography">
|
|
@@ -4910,7 +5225,7 @@
|
|
|
4910
5225
|
<li class="tsd-description">
|
|
4911
5226
|
<aside class="tsd-sources">
|
|
4912
5227
|
<ul>
|
|
4913
|
-
<li>Defined in packages/core/src/util/cell.ts:
|
|
5228
|
+
<li>Defined in packages/core/src/util/cell.ts:113</li>
|
|
4914
5229
|
</ul>
|
|
4915
5230
|
</aside>
|
|
4916
5231
|
<div class="tsd-comment tsd-typography">
|
|
@@ -4952,7 +5267,7 @@
|
|
|
4952
5267
|
<li class="tsd-description">
|
|
4953
5268
|
<aside class="tsd-sources">
|
|
4954
5269
|
<ul>
|
|
4955
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5270
|
+
<li>Defined in packages/core/src/util/renderer.ts:925</li>
|
|
4956
5271
|
</ul>
|
|
4957
5272
|
</aside>
|
|
4958
5273
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -4981,7 +5296,7 @@
|
|
|
4981
5296
|
<li class="tsd-description">
|
|
4982
5297
|
<aside class="tsd-sources">
|
|
4983
5298
|
<ul>
|
|
4984
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5299
|
+
<li>Defined in packages/core/src/util/renderer.ts:424</li>
|
|
4985
5300
|
</ul>
|
|
4986
5301
|
</aside>
|
|
4987
5302
|
<div class="tsd-comment tsd-typography">
|
|
@@ -5023,7 +5338,7 @@
|
|
|
5023
5338
|
<li class="tsd-description">
|
|
5024
5339
|
<aside class="tsd-sources">
|
|
5025
5340
|
<ul>
|
|
5026
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5341
|
+
<li>Defined in packages/core/src/util/renderer.ts:657</li>
|
|
5027
5342
|
</ul>
|
|
5028
5343
|
</aside>
|
|
5029
5344
|
<div class="tsd-comment tsd-typography">
|
|
@@ -5065,7 +5380,7 @@
|
|
|
5065
5380
|
<li class="tsd-description">
|
|
5066
5381
|
<aside class="tsd-sources">
|
|
5067
5382
|
<ul>
|
|
5068
|
-
<li>Defined in packages/core/src/util/cell.ts:
|
|
5383
|
+
<li>Defined in packages/core/src/util/cell.ts:173</li>
|
|
5069
5384
|
</ul>
|
|
5070
5385
|
</aside>
|
|
5071
5386
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5091,7 +5406,7 @@
|
|
|
5091
5406
|
<li class="tsd-description">
|
|
5092
5407
|
<aside class="tsd-sources">
|
|
5093
5408
|
<ul>
|
|
5094
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5409
|
+
<li>Defined in packages/core/src/util/renderer.ts:509</li>
|
|
5095
5410
|
</ul>
|
|
5096
5411
|
</aside>
|
|
5097
5412
|
<div class="tsd-comment tsd-typography">
|
|
@@ -5122,7 +5437,7 @@
|
|
|
5122
5437
|
<li class="tsd-description">
|
|
5123
5438
|
<aside class="tsd-sources">
|
|
5124
5439
|
<ul>
|
|
5125
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5440
|
+
<li>Defined in packages/core/src/util/renderer.ts:883</li>
|
|
5126
5441
|
</ul>
|
|
5127
5442
|
</aside>
|
|
5128
5443
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5148,7 +5463,7 @@
|
|
|
5148
5463
|
<li class="tsd-description">
|
|
5149
5464
|
<aside class="tsd-sources">
|
|
5150
5465
|
<ul>
|
|
5151
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5466
|
+
<li>Defined in packages/core/src/util/renderer.ts:836</li>
|
|
5152
5467
|
</ul>
|
|
5153
5468
|
</aside>
|
|
5154
5469
|
<div class="tsd-comment tsd-typography">
|
|
@@ -5189,7 +5504,7 @@
|
|
|
5189
5504
|
<li class="tsd-description">
|
|
5190
5505
|
<aside class="tsd-sources">
|
|
5191
5506
|
<ul>
|
|
5192
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5507
|
+
<li>Defined in packages/core/src/util/renderer.ts:603</li>
|
|
5193
5508
|
</ul>
|
|
5194
5509
|
</aside>
|
|
5195
5510
|
<div class="tsd-comment tsd-typography">
|
|
@@ -5231,7 +5546,7 @@
|
|
|
5231
5546
|
<li class="tsd-description">
|
|
5232
5547
|
<aside class="tsd-sources">
|
|
5233
5548
|
<ul>
|
|
5234
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5549
|
+
<li>Defined in packages/core/src/util/renderer.ts:568</li>
|
|
5235
5550
|
</ul>
|
|
5236
5551
|
</aside>
|
|
5237
5552
|
<div class="tsd-comment tsd-typography">
|
|
@@ -5262,7 +5577,7 @@
|
|
|
5262
5577
|
<li class="tsd-description">
|
|
5263
5578
|
<aside class="tsd-sources">
|
|
5264
5579
|
<ul>
|
|
5265
|
-
<li>Defined in packages/core/src/util/cell.ts:
|
|
5580
|
+
<li>Defined in packages/core/src/util/cell.ts:227</li>
|
|
5266
5581
|
</ul>
|
|
5267
5582
|
</aside>
|
|
5268
5583
|
<div class="tsd-comment tsd-typography">
|
|
@@ -5293,7 +5608,7 @@
|
|
|
5293
5608
|
<li class="tsd-description">
|
|
5294
5609
|
<aside class="tsd-sources">
|
|
5295
5610
|
<ul>
|
|
5296
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5611
|
+
<li>Defined in packages/core/src/util/renderer.ts:542</li>
|
|
5297
5612
|
</ul>
|
|
5298
5613
|
</aside>
|
|
5299
5614
|
<div class="tsd-comment tsd-typography">
|
|
@@ -5324,7 +5639,7 @@
|
|
|
5324
5639
|
<li class="tsd-description">
|
|
5325
5640
|
<aside class="tsd-sources">
|
|
5326
5641
|
<ul>
|
|
5327
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5642
|
+
<li>Defined in packages/core/src/util/renderer.ts:1015</li>
|
|
5328
5643
|
</ul>
|
|
5329
5644
|
</aside>
|
|
5330
5645
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5448,13 +5763,13 @@
|
|
|
5448
5763
|
<a name="oneoftoenumoptionmapper" class="tsd-anchor"></a>
|
|
5449
5764
|
<h3><span class="tsd-flag ts-flagConst">Const</span> one<wbr>OfTo<wbr>Enum<wbr>Option<wbr>Mapper</h3>
|
|
5450
5765
|
<ul class="tsd-signatures tsd-kind-function">
|
|
5451
|
-
<li class="tsd-signature tsd-kind-icon">one<wbr>OfTo<wbr>Enum<wbr>Option<wbr>Mapper<span class="tsd-signature-symbol">(</span>e<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/enumoption.html" class="tsd-signature-type">EnumOption</a></li>
|
|
5766
|
+
<li class="tsd-signature tsd-kind-icon">one<wbr>OfTo<wbr>Enum<wbr>Option<wbr>Mapper<span class="tsd-signature-symbol">(</span>e<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, t<span class="tsd-signature-symbol">?: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a>, fallbackI18nKey<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><a href="interfaces/enumoption.html" class="tsd-signature-type">EnumOption</a></li>
|
|
5452
5767
|
</ul>
|
|
5453
5768
|
<ul class="tsd-descriptions">
|
|
5454
5769
|
<li class="tsd-description">
|
|
5455
5770
|
<aside class="tsd-sources">
|
|
5456
5771
|
<ul>
|
|
5457
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
5772
|
+
<li>Defined in packages/core/src/util/renderer.ts:194</li>
|
|
5458
5773
|
</ul>
|
|
5459
5774
|
</aside>
|
|
5460
5775
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5462,6 +5777,12 @@
|
|
|
5462
5777
|
<li>
|
|
5463
5778
|
<h5>e: <span class="tsd-signature-type">any</span></h5>
|
|
5464
5779
|
</li>
|
|
5780
|
+
<li>
|
|
5781
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> t: <a href="globals.html#translator" class="tsd-signature-type">Translator</a></h5>
|
|
5782
|
+
</li>
|
|
5783
|
+
<li>
|
|
5784
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> fallbackI18nKey: <span class="tsd-signature-type">string</span></h5>
|
|
5785
|
+
</li>
|
|
5465
5786
|
</ul>
|
|
5466
5787
|
<h4 class="tsd-returns-title">Returns <a href="interfaces/enumoption.html" class="tsd-signature-type">EnumOption</a></h4>
|
|
5467
5788
|
</li>
|
|
@@ -5595,7 +5916,7 @@
|
|
|
5595
5916
|
<li class="tsd-description">
|
|
5596
5917
|
<aside class="tsd-sources">
|
|
5597
5918
|
<ul>
|
|
5598
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
5919
|
+
<li>Defined in packages/core/src/actions/actions.ts:201</li>
|
|
5599
5920
|
</ul>
|
|
5600
5921
|
</aside>
|
|
5601
5922
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5632,7 +5953,7 @@
|
|
|
5632
5953
|
<li class="tsd-description">
|
|
5633
5954
|
<aside class="tsd-sources">
|
|
5634
5955
|
<ul>
|
|
5635
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
5956
|
+
<li>Defined in packages/core/src/actions/actions.ts:143</li>
|
|
5636
5957
|
</ul>
|
|
5637
5958
|
</aside>
|
|
5638
5959
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5669,7 +5990,7 @@
|
|
|
5669
5990
|
<li class="tsd-description">
|
|
5670
5991
|
<aside class="tsd-sources">
|
|
5671
5992
|
<ul>
|
|
5672
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
5993
|
+
<li>Defined in packages/core/src/actions/actions.ts:189</li>
|
|
5673
5994
|
</ul>
|
|
5674
5995
|
</aside>
|
|
5675
5996
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5706,7 +6027,7 @@
|
|
|
5706
6027
|
<li class="tsd-description">
|
|
5707
6028
|
<aside class="tsd-sources">
|
|
5708
6029
|
<ul>
|
|
5709
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
6030
|
+
<li>Defined in packages/core/src/actions/actions.ts:254</li>
|
|
5710
6031
|
</ul>
|
|
5711
6032
|
</aside>
|
|
5712
6033
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5924,7 +6245,7 @@
|
|
|
5924
6245
|
<li class="tsd-description">
|
|
5925
6246
|
<aside class="tsd-sources">
|
|
5926
6247
|
<ul>
|
|
5927
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
6248
|
+
<li>Defined in packages/core/src/reducers/core.ts:83</li>
|
|
5928
6249
|
</ul>
|
|
5929
6250
|
</aside>
|
|
5930
6251
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -5940,32 +6261,6 @@
|
|
|
5940
6261
|
</li>
|
|
5941
6262
|
</ul>
|
|
5942
6263
|
</section>
|
|
5943
|
-
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
5944
|
-
<a name="sanitizeerrors" class="tsd-anchor"></a>
|
|
5945
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> sanitize<wbr>Errors</h3>
|
|
5946
|
-
<ul class="tsd-signatures tsd-kind-function">
|
|
5947
|
-
<li class="tsd-signature tsd-kind-icon">sanitize<wbr>Errors<span class="tsd-signature-symbol">(</span>validator<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ValidateFunction</span>, data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</span><span class="tsd-signature-symbol">[]</span></li>
|
|
5948
|
-
</ul>
|
|
5949
|
-
<ul class="tsd-descriptions">
|
|
5950
|
-
<li class="tsd-description">
|
|
5951
|
-
<aside class="tsd-sources">
|
|
5952
|
-
<ul>
|
|
5953
|
-
<li>Defined in packages/core/src/reducers/core.ts:59</li>
|
|
5954
|
-
</ul>
|
|
5955
|
-
</aside>
|
|
5956
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
5957
|
-
<ul class="tsd-parameters">
|
|
5958
|
-
<li>
|
|
5959
|
-
<h5>validator: <span class="tsd-signature-type">ValidateFunction</span></h5>
|
|
5960
|
-
</li>
|
|
5961
|
-
<li>
|
|
5962
|
-
<h5>data: <span class="tsd-signature-type">any</span></h5>
|
|
5963
|
-
</li>
|
|
5964
|
-
</ul>
|
|
5965
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">ErrorObject</span><span class="tsd-signature-symbol">[]</span></h4>
|
|
5966
|
-
</li>
|
|
5967
|
-
</ul>
|
|
5968
|
-
</section>
|
|
5969
6264
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
5970
6265
|
<a name="schemamatches" class="tsd-anchor"></a>
|
|
5971
6266
|
<h3><span class="tsd-flag ts-flagConst">Const</span> schema<wbr>Matches</h3>
|
|
@@ -6173,19 +6468,19 @@
|
|
|
6173
6468
|
<a name="setajv" class="tsd-anchor"></a>
|
|
6174
6469
|
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>Ajv</h3>
|
|
6175
6470
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6176
|
-
<li class="tsd-signature tsd-kind-icon">set<wbr>Ajv<span class="tsd-signature-symbol">(</span>ajv<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AJV
|
|
6471
|
+
<li class="tsd-signature tsd-kind-icon">set<wbr>Ajv<span class="tsd-signature-symbol">(</span>ajv<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AJV</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span>ajv<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Ajv</span><span class="tsd-signature-symbol">; </span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"jsonforms/SET_AJV"</span><span class="tsd-signature-symbol"> }</span></li>
|
|
6177
6472
|
</ul>
|
|
6178
6473
|
<ul class="tsd-descriptions">
|
|
6179
6474
|
<li class="tsd-description">
|
|
6180
6475
|
<aside class="tsd-sources">
|
|
6181
6476
|
<ul>
|
|
6182
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
6477
|
+
<li>Defined in packages/core/src/actions/actions.ts:164</li>
|
|
6183
6478
|
</ul>
|
|
6184
6479
|
</aside>
|
|
6185
6480
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6186
6481
|
<ul class="tsd-parameters">
|
|
6187
6482
|
<li>
|
|
6188
|
-
<h5>ajv: <span class="tsd-signature-type">AJV
|
|
6483
|
+
<h5>ajv: <span class="tsd-signature-type">AJV</span></h5>
|
|
6189
6484
|
</li>
|
|
6190
6485
|
</ul>
|
|
6191
6486
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span>ajv<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Ajv</span><span class="tsd-signature-symbol">; </span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"jsonforms/SET_AJV"</span><span class="tsd-signature-symbol"> }</span></h4>
|
|
@@ -6210,7 +6505,7 @@
|
|
|
6210
6505
|
<li class="tsd-description">
|
|
6211
6506
|
<aside class="tsd-sources">
|
|
6212
6507
|
<ul>
|
|
6213
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
6508
|
+
<li>Defined in packages/core/src/actions/actions.ts:236</li>
|
|
6214
6509
|
</ul>
|
|
6215
6510
|
</aside>
|
|
6216
6511
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6227,19 +6522,19 @@
|
|
|
6227
6522
|
<a name="setlocale" class="tsd-anchor"></a>
|
|
6228
6523
|
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>Locale</h3>
|
|
6229
6524
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6230
|
-
<li class="tsd-signature tsd-kind-icon">set<wbr>Locale<span class="tsd-signature-symbol">(</span>locale<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><a href="interfaces/setlocaleaction.html" class="tsd-signature-type">SetLocaleAction</a></li>
|
|
6525
|
+
<li class="tsd-signature tsd-kind-icon">set<wbr>Locale<span class="tsd-signature-symbol">(</span>locale<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/setlocaleaction.html" class="tsd-signature-type">SetLocaleAction</a></li>
|
|
6231
6526
|
</ul>
|
|
6232
6527
|
<ul class="tsd-descriptions">
|
|
6233
6528
|
<li class="tsd-description">
|
|
6234
6529
|
<aside class="tsd-sources">
|
|
6235
6530
|
<ul>
|
|
6236
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
6531
|
+
<li>Defined in packages/core/src/actions/actions.ts:289</li>
|
|
6237
6532
|
</ul>
|
|
6238
6533
|
</aside>
|
|
6239
6534
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6240
6535
|
<ul class="tsd-parameters">
|
|
6241
6536
|
<li>
|
|
6242
|
-
<h5>locale: <span class="tsd-signature-type">string</span></h5>
|
|
6537
|
+
<h5>locale: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
6243
6538
|
</li>
|
|
6244
6539
|
</ul>
|
|
6245
6540
|
<h4 class="tsd-returns-title">Returns <a href="interfaces/setlocaleaction.html" class="tsd-signature-type">SetLocaleAction</a></h4>
|
|
@@ -6247,163 +6542,185 @@
|
|
|
6247
6542
|
</ul>
|
|
6248
6543
|
</section>
|
|
6249
6544
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6250
|
-
<a name="
|
|
6251
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>
|
|
6545
|
+
<a name="setreadonly" class="tsd-anchor"></a>
|
|
6546
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>Readonly</h3>
|
|
6252
6547
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6253
|
-
<li class="tsd-signature tsd-kind-icon">set<wbr>
|
|
6548
|
+
<li class="tsd-signature tsd-kind-icon">set<wbr>Readonly<span class="tsd-signature-symbol">(</span>uischema<span class="tsd-signature-symbol">: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
6254
6549
|
</ul>
|
|
6255
6550
|
<ul class="tsd-descriptions">
|
|
6256
6551
|
<li class="tsd-description">
|
|
6257
6552
|
<aside class="tsd-sources">
|
|
6258
6553
|
<ul>
|
|
6259
|
-
<li>Defined in packages/core/src/
|
|
6554
|
+
<li>Defined in packages/core/src/util/uischema.ts:39</li>
|
|
6260
6555
|
</ul>
|
|
6261
6556
|
</aside>
|
|
6262
6557
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6263
6558
|
<ul class="tsd-parameters">
|
|
6264
6559
|
<li>
|
|
6265
|
-
<h5>
|
|
6560
|
+
<h5>uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a></h5>
|
|
6266
6561
|
</li>
|
|
6267
6562
|
</ul>
|
|
6268
|
-
<h4 class="tsd-returns-title">Returns <
|
|
6563
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
6269
6564
|
</li>
|
|
6270
6565
|
</ul>
|
|
6271
6566
|
</section>
|
|
6272
6567
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6273
|
-
<a name="
|
|
6274
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>
|
|
6568
|
+
<a name="setreadonlypropertyvalue" class="tsd-anchor"></a>
|
|
6569
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>Readonly<wbr>Property<wbr>Value</h3>
|
|
6275
6570
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6276
|
-
<li class="tsd-signature tsd-kind-icon">set<wbr>
|
|
6571
|
+
<li class="tsd-signature tsd-kind-icon">set<wbr>Readonly<wbr>Property<wbr>Value<span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="globals.html#iteratecallback" class="tsd-signature-type">IterateCallback</a></li>
|
|
6277
6572
|
</ul>
|
|
6278
6573
|
<ul class="tsd-descriptions">
|
|
6279
6574
|
<li class="tsd-description">
|
|
6280
6575
|
<aside class="tsd-sources">
|
|
6281
6576
|
<ul>
|
|
6282
|
-
<li>Defined in packages/core/src/
|
|
6577
|
+
<li>Defined in packages/core/src/util/uischema.ts:31</li>
|
|
6283
6578
|
</ul>
|
|
6284
6579
|
</aside>
|
|
6285
6580
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6286
6581
|
<ul class="tsd-parameters">
|
|
6287
6582
|
<li>
|
|
6288
|
-
<h5>
|
|
6583
|
+
<h5>value: <span class="tsd-signature-type">boolean</span></h5>
|
|
6289
6584
|
</li>
|
|
6290
6585
|
</ul>
|
|
6291
|
-
<h4 class="tsd-returns-title">Returns <a href="
|
|
6586
|
+
<h4 class="tsd-returns-title">Returns <a href="globals.html#iteratecallback" class="tsd-signature-type">IterateCallback</a></h4>
|
|
6292
6587
|
</li>
|
|
6293
6588
|
</ul>
|
|
6294
6589
|
</section>
|
|
6295
6590
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6296
|
-
<a name="
|
|
6297
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>
|
|
6591
|
+
<a name="setschema" class="tsd-anchor"></a>
|
|
6592
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>Schema</h3>
|
|
6298
6593
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6299
|
-
<li class="tsd-signature tsd-kind-icon">set<wbr>
|
|
6594
|
+
<li class="tsd-signature tsd-kind-icon">set<wbr>Schema<span class="tsd-signature-symbol">(</span>schema<span class="tsd-signature-symbol">: </span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/setschemaaction.html" class="tsd-signature-type">SetSchemaAction</a></li>
|
|
6300
6595
|
</ul>
|
|
6301
6596
|
<ul class="tsd-descriptions">
|
|
6302
6597
|
<li class="tsd-description">
|
|
6303
6598
|
<aside class="tsd-sources">
|
|
6304
6599
|
<ul>
|
|
6305
|
-
<li>Defined in packages/core/src/
|
|
6600
|
+
<li>Defined in packages/core/src/actions/actions.ts:299</li>
|
|
6306
6601
|
</ul>
|
|
6307
6602
|
</aside>
|
|
6308
6603
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6309
6604
|
<ul class="tsd-parameters">
|
|
6310
6605
|
<li>
|
|
6311
|
-
<h5>
|
|
6606
|
+
<h5>schema: <a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a></h5>
|
|
6312
6607
|
</li>
|
|
6313
6608
|
</ul>
|
|
6314
|
-
<h4 class="tsd-returns-title">Returns <
|
|
6609
|
+
<h4 class="tsd-returns-title">Returns <a href="interfaces/setschemaaction.html" class="tsd-signature-type">SetSchemaAction</a></h4>
|
|
6315
6610
|
</li>
|
|
6316
6611
|
</ul>
|
|
6317
6612
|
</section>
|
|
6318
6613
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6319
|
-
<a name="
|
|
6320
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>
|
|
6614
|
+
<a name="settranslator" class="tsd-anchor"></a>
|
|
6615
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>Translator</h3>
|
|
6321
6616
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6322
|
-
<li class="tsd-signature tsd-kind-icon">set<wbr>
|
|
6617
|
+
<li class="tsd-signature tsd-kind-icon">set<wbr>Translator<span class="tsd-signature-symbol">(</span>translator<span class="tsd-signature-symbol">?: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a>, errorTranslator<span class="tsd-signature-symbol">?: </span><a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/settranslatoraction.html" class="tsd-signature-type">SetTranslatorAction</a></li>
|
|
6323
6618
|
</ul>
|
|
6324
6619
|
<ul class="tsd-descriptions">
|
|
6325
6620
|
<li class="tsd-description">
|
|
6326
6621
|
<aside class="tsd-sources">
|
|
6327
6622
|
<ul>
|
|
6328
|
-
<li>Defined in packages/core/src/
|
|
6623
|
+
<li>Defined in packages/core/src/actions/actions.ts:310</li>
|
|
6329
6624
|
</ul>
|
|
6330
6625
|
</aside>
|
|
6331
6626
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6332
6627
|
<ul class="tsd-parameters">
|
|
6333
6628
|
<li>
|
|
6334
|
-
<h5>
|
|
6629
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> translator: <a href="globals.html#translator" class="tsd-signature-type">Translator</a></h5>
|
|
6630
|
+
</li>
|
|
6631
|
+
<li>
|
|
6632
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> errorTranslator: <a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a></h5>
|
|
6335
6633
|
</li>
|
|
6336
6634
|
</ul>
|
|
6337
|
-
<h4 class="tsd-returns-title">Returns <a href="
|
|
6635
|
+
<h4 class="tsd-returns-title">Returns <a href="interfaces/settranslatoraction.html" class="tsd-signature-type">SetTranslatorAction</a></h4>
|
|
6338
6636
|
</li>
|
|
6339
6637
|
</ul>
|
|
6340
6638
|
</section>
|
|
6341
6639
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6342
|
-
<a name="
|
|
6343
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span>
|
|
6640
|
+
<a name="setuischema" class="tsd-anchor"></a>
|
|
6641
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> setUISchema</h3>
|
|
6344
6642
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6345
|
-
<li class="tsd-signature tsd-kind-icon">
|
|
6643
|
+
<li class="tsd-signature tsd-kind-icon">setUISchema<span class="tsd-signature-symbol">(</span>uischema<span class="tsd-signature-symbol">: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/setuischemaaction.html" class="tsd-signature-type">SetUISchemaAction</a></li>
|
|
6346
6644
|
</ul>
|
|
6347
6645
|
<ul class="tsd-descriptions">
|
|
6348
6646
|
<li class="tsd-description">
|
|
6349
6647
|
<aside class="tsd-sources">
|
|
6350
6648
|
<ul>
|
|
6351
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
6649
|
+
<li>Defined in packages/core/src/actions/actions.ts:342</li>
|
|
6352
6650
|
</ul>
|
|
6353
6651
|
</aside>
|
|
6354
6652
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6355
6653
|
<ul class="tsd-parameters">
|
|
6356
6654
|
<li>
|
|
6357
|
-
<h5>
|
|
6655
|
+
<h5>uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a></h5>
|
|
6358
6656
|
</li>
|
|
6359
6657
|
</ul>
|
|
6360
|
-
<h4 class="tsd-returns-title">Returns <a href="interfaces/
|
|
6658
|
+
<h4 class="tsd-returns-title">Returns <a href="interfaces/setuischemaaction.html" class="tsd-signature-type">SetUISchemaAction</a></h4>
|
|
6361
6659
|
</li>
|
|
6362
6660
|
</ul>
|
|
6363
6661
|
</section>
|
|
6364
6662
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6365
|
-
<a name="
|
|
6366
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span>
|
|
6663
|
+
<a name="setvalidationmode" class="tsd-anchor"></a>
|
|
6664
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> set<wbr>Validation<wbr>Mode</h3>
|
|
6367
6665
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6368
|
-
<li class="tsd-signature tsd-kind-icon">
|
|
6666
|
+
<li class="tsd-signature tsd-kind-icon">set<wbr>Validation<wbr>Mode<span class="tsd-signature-symbol">(</span>validationMode<span class="tsd-signature-symbol">: </span><a href="globals.html#validationmode" class="tsd-signature-type">ValidationMode</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/setvalidationmodeaction.html" class="tsd-signature-type">SetValidationModeAction</a></li>
|
|
6369
6667
|
</ul>
|
|
6370
6668
|
<ul class="tsd-descriptions">
|
|
6371
6669
|
<li class="tsd-description">
|
|
6372
6670
|
<aside class="tsd-sources">
|
|
6373
6671
|
<ul>
|
|
6374
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
6672
|
+
<li>Defined in packages/core/src/actions/actions.ts:241</li>
|
|
6375
6673
|
</ul>
|
|
6376
6674
|
</aside>
|
|
6377
6675
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6378
6676
|
<ul class="tsd-parameters">
|
|
6379
6677
|
<li>
|
|
6380
|
-
<h5>
|
|
6678
|
+
<h5>validationMode: <a href="globals.html#validationmode" class="tsd-signature-type">ValidationMode</a></h5>
|
|
6381
6679
|
</li>
|
|
6382
6680
|
</ul>
|
|
6383
|
-
<h4 class="tsd-returns-title">Returns <a href="interfaces/
|
|
6681
|
+
<h4 class="tsd-returns-title">Returns <a href="interfaces/setvalidationmodeaction.html" class="tsd-signature-type">SetValidationModeAction</a></h4>
|
|
6384
6682
|
</li>
|
|
6385
6683
|
</ul>
|
|
6386
6684
|
</section>
|
|
6387
6685
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6388
|
-
<a name="
|
|
6389
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span>
|
|
6686
|
+
<a name="showasrequired" class="tsd-anchor"></a>
|
|
6687
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> show<wbr>AsRequired</h3>
|
|
6390
6688
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6391
|
-
<li class="tsd-signature tsd-kind-icon">
|
|
6689
|
+
<li class="tsd-signature tsd-kind-icon">show<wbr>AsRequired<span class="tsd-signature-symbol">(</span>required<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span>, hideRequiredAsterisk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
|
6392
6690
|
</ul>
|
|
6393
6691
|
<ul class="tsd-descriptions">
|
|
6394
6692
|
<li class="tsd-description">
|
|
6395
6693
|
<aside class="tsd-sources">
|
|
6396
6694
|
<ul>
|
|
6397
|
-
<li>Defined in packages/core/src/
|
|
6695
|
+
<li>Defined in packages/core/src/util/renderer.ts:110</li>
|
|
6398
6696
|
</ul>
|
|
6399
6697
|
</aside>
|
|
6698
|
+
<div class="tsd-comment tsd-typography">
|
|
6699
|
+
<div class="lead">
|
|
6700
|
+
<p>Indicates whether to mark a field as required.</p>
|
|
6701
|
+
</div>
|
|
6702
|
+
</div>
|
|
6400
6703
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6401
6704
|
<ul class="tsd-parameters">
|
|
6402
6705
|
<li>
|
|
6403
|
-
<h5>
|
|
6706
|
+
<h5>required: <span class="tsd-signature-type">boolean</span></h5>
|
|
6707
|
+
<div class="tsd-comment tsd-typography">
|
|
6708
|
+
<div class="lead">
|
|
6709
|
+
<p>whether the label belongs to a control which is required</p>
|
|
6710
|
+
</div>
|
|
6711
|
+
</div>
|
|
6712
|
+
</li>
|
|
6713
|
+
<li>
|
|
6714
|
+
<h5>hideRequiredAsterisk: <span class="tsd-signature-type">boolean</span></h5>
|
|
6715
|
+
<div class="tsd-comment tsd-typography">
|
|
6716
|
+
<div class="lead">
|
|
6717
|
+
<p>applied UI Schema option</p>
|
|
6718
|
+
</div>
|
|
6719
|
+
</div>
|
|
6404
6720
|
</li>
|
|
6405
6721
|
</ul>
|
|
6406
|
-
<h4 class="tsd-returns-title">Returns <
|
|
6722
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
|
6723
|
+
<p>should the field be marked as required</p>
|
|
6407
6724
|
</li>
|
|
6408
6725
|
</ul>
|
|
6409
6726
|
</section>
|
|
@@ -6417,7 +6734,7 @@
|
|
|
6417
6734
|
<li class="tsd-description">
|
|
6418
6735
|
<aside class="tsd-sources">
|
|
6419
6736
|
<ul>
|
|
6420
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
6737
|
+
<li>Defined in packages/core/src/reducers/core.ts:399</li>
|
|
6421
6738
|
</ul>
|
|
6422
6739
|
</aside>
|
|
6423
6740
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6509,6 +6826,35 @@
|
|
|
6509
6826
|
</li>
|
|
6510
6827
|
</ul>
|
|
6511
6828
|
</section>
|
|
6829
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6830
|
+
<a name="transformpathtoi18nprefix" class="tsd-anchor"></a>
|
|
6831
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> transform<wbr>Path<wbr>ToI18n<wbr>Prefix</h3>
|
|
6832
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
6833
|
+
<li class="tsd-signature tsd-kind-icon">transform<wbr>Path<wbr>ToI18n<wbr>Prefix<span class="tsd-signature-symbol">(</span>path<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></li>
|
|
6834
|
+
</ul>
|
|
6835
|
+
<ul class="tsd-descriptions">
|
|
6836
|
+
<li class="tsd-description">
|
|
6837
|
+
<aside class="tsd-sources">
|
|
6838
|
+
<ul>
|
|
6839
|
+
<li>Defined in packages/core/src/i18n/i18nUtil.ts:18</li>
|
|
6840
|
+
</ul>
|
|
6841
|
+
</aside>
|
|
6842
|
+
<div class="tsd-comment tsd-typography">
|
|
6843
|
+
<div class="lead">
|
|
6844
|
+
<p>Transforms a given path to a prefix which can be used for i18n keys.
|
|
6845
|
+
Returns 'root' for empty paths and removes array indices</p>
|
|
6846
|
+
</div>
|
|
6847
|
+
</div>
|
|
6848
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6849
|
+
<ul class="tsd-parameters">
|
|
6850
|
+
<li>
|
|
6851
|
+
<h5>path: <span class="tsd-signature-type">string</span></h5>
|
|
6852
|
+
</li>
|
|
6853
|
+
</ul>
|
|
6854
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
6855
|
+
</li>
|
|
6856
|
+
</ul>
|
|
6857
|
+
</section>
|
|
6512
6858
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6513
6859
|
<a name="traverse" class="tsd-anchor"></a>
|
|
6514
6860
|
<h3><span class="tsd-flag ts-flagConst">Const</span> traverse</h3>
|
|
@@ -6622,7 +6968,7 @@
|
|
|
6622
6968
|
<li class="tsd-description">
|
|
6623
6969
|
<aside class="tsd-sources">
|
|
6624
6970
|
<ul>
|
|
6625
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
6971
|
+
<li>Defined in packages/core/src/actions/actions.ts:213</li>
|
|
6626
6972
|
</ul>
|
|
6627
6973
|
</aside>
|
|
6628
6974
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6659,7 +7005,7 @@
|
|
|
6659
7005
|
<li class="tsd-description">
|
|
6660
7006
|
<aside class="tsd-sources">
|
|
6661
7007
|
<ul>
|
|
6662
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
7008
|
+
<li>Defined in packages/core/src/actions/actions.ts:154</li>
|
|
6663
7009
|
</ul>
|
|
6664
7010
|
</aside>
|
|
6665
7011
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6690,7 +7036,7 @@
|
|
|
6690
7036
|
<li class="tsd-description">
|
|
6691
7037
|
<aside class="tsd-sources">
|
|
6692
7038
|
<ul>
|
|
6693
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
7039
|
+
<li>Defined in packages/core/src/actions/actions.ts:225</li>
|
|
6694
7040
|
</ul>
|
|
6695
7041
|
</aside>
|
|
6696
7042
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6727,7 +7073,7 @@
|
|
|
6727
7073
|
<li class="tsd-description">
|
|
6728
7074
|
<aside class="tsd-sources">
|
|
6729
7075
|
<ul>
|
|
6730
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
7076
|
+
<li>Defined in packages/core/src/actions/actions.ts:270</li>
|
|
6731
7077
|
</ul>
|
|
6732
7078
|
</aside>
|
|
6733
7079
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6773,7 +7119,7 @@
|
|
|
6773
7119
|
<li class="tsd-description">
|
|
6774
7120
|
<aside class="tsd-sources">
|
|
6775
7121
|
<ul>
|
|
6776
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
7122
|
+
<li>Defined in packages/core/src/actions/actions.ts:169</li>
|
|
6777
7123
|
</ul>
|
|
6778
7124
|
</aside>
|
|
6779
7125
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6811,13 +7157,13 @@
|
|
|
6811
7157
|
<a name="updatecore" class="tsd-anchor"></a>
|
|
6812
7158
|
<h3><span class="tsd-flag ts-flagConst">Const</span> update<wbr>Core</h3>
|
|
6813
7159
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6814
|
-
<li class="tsd-signature tsd-kind-icon">update<wbr>Core<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, schema<span class="tsd-signature-symbol">: </span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a>, uischema<span class="tsd-signature-symbol">?: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">AJV
|
|
7160
|
+
<li class="tsd-signature tsd-kind-icon">update<wbr>Core<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, schema<span class="tsd-signature-symbol">: </span><a href="globals.html#jsonschema" class="tsd-signature-type">JsonSchema</a>, uischema<span class="tsd-signature-symbol">?: </span><a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">AJV</span><span class="tsd-signature-symbol"> | </span><a href="interfaces/initactionoptions.html" class="tsd-signature-type">InitActionOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/updatecoreaction.html" class="tsd-signature-type">UpdateCoreAction</a></li>
|
|
6815
7161
|
</ul>
|
|
6816
7162
|
<ul class="tsd-descriptions">
|
|
6817
7163
|
<li class="tsd-description">
|
|
6818
7164
|
<aside class="tsd-sources">
|
|
6819
7165
|
<ul>
|
|
6820
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
7166
|
+
<li>Defined in packages/core/src/actions/actions.ts:124</li>
|
|
6821
7167
|
</ul>
|
|
6822
7168
|
</aside>
|
|
6823
7169
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6832,7 +7178,7 @@
|
|
|
6832
7178
|
<h5><span class="tsd-flag ts-flagOptional">Optional</span> uischema: <a href="interfaces/uischemaelement.html" class="tsd-signature-type">UISchemaElement</a></h5>
|
|
6833
7179
|
</li>
|
|
6834
7180
|
<li>
|
|
6835
|
-
<h5><span class="tsd-flag ts-flagOptional">Optional</span> options: <span class="tsd-signature-type">AJV
|
|
7181
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> options: <span class="tsd-signature-type">AJV</span><span class="tsd-signature-symbol"> | </span><a href="interfaces/initactionoptions.html" class="tsd-signature-type">InitActionOptions</a></h5>
|
|
6836
7182
|
</li>
|
|
6837
7183
|
</ul>
|
|
6838
7184
|
<h4 class="tsd-returns-title">Returns <a href="interfaces/updatecoreaction.html" class="tsd-signature-type">UpdateCoreAction</a></h4>
|
|
@@ -6849,7 +7195,7 @@
|
|
|
6849
7195
|
<li class="tsd-description">
|
|
6850
7196
|
<aside class="tsd-sources">
|
|
6851
7197
|
<ul>
|
|
6852
|
-
<li>Defined in packages/core/src/actions/actions.ts:
|
|
7198
|
+
<li>Defined in packages/core/src/actions/actions.ts:178</li>
|
|
6853
7199
|
</ul>
|
|
6854
7200
|
</aside>
|
|
6855
7201
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -6862,11 +7208,40 @@
|
|
|
6862
7208
|
</li>
|
|
6863
7209
|
</ul>
|
|
6864
7210
|
</section>
|
|
7211
|
+
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
7212
|
+
<a name="updatei18n" class="tsd-anchor"></a>
|
|
7213
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> update<wbr>I18n</h3>
|
|
7214
|
+
<ul class="tsd-signatures tsd-kind-function">
|
|
7215
|
+
<li class="tsd-signature tsd-kind-icon">update<wbr>I18n<span class="tsd-signature-symbol">(</span>locale<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, translator<span class="tsd-signature-symbol">: </span><a href="globals.html#translator" class="tsd-signature-type">Translator</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, errorTranslator<span class="tsd-signature-symbol">: </span><a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="interfaces/updatei18naction.html" class="tsd-signature-type">UpdateI18nAction</a></li>
|
|
7216
|
+
</ul>
|
|
7217
|
+
<ul class="tsd-descriptions">
|
|
7218
|
+
<li class="tsd-description">
|
|
7219
|
+
<aside class="tsd-sources">
|
|
7220
|
+
<ul>
|
|
7221
|
+
<li>Defined in packages/core/src/actions/actions.ts:326</li>
|
|
7222
|
+
</ul>
|
|
7223
|
+
</aside>
|
|
7224
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
7225
|
+
<ul class="tsd-parameters">
|
|
7226
|
+
<li>
|
|
7227
|
+
<h5>locale: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
7228
|
+
</li>
|
|
7229
|
+
<li>
|
|
7230
|
+
<h5>translator: <a href="globals.html#translator" class="tsd-signature-type">Translator</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
7231
|
+
</li>
|
|
7232
|
+
<li>
|
|
7233
|
+
<h5>errorTranslator: <a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
7234
|
+
</li>
|
|
7235
|
+
</ul>
|
|
7236
|
+
<h4 class="tsd-returns-title">Returns <a href="interfaces/updatei18naction.html" class="tsd-signature-type">UpdateI18nAction</a></h4>
|
|
7237
|
+
</li>
|
|
7238
|
+
</ul>
|
|
7239
|
+
</section>
|
|
6865
7240
|
<section class="tsd-panel tsd-member tsd-kind-function">
|
|
6866
7241
|
<a name="validate" class="tsd-anchor"></a>
|
|
6867
7242
|
<h3><span class="tsd-flag ts-flagConst">Const</span> validate</h3>
|
|
6868
7243
|
<ul class="tsd-signatures tsd-kind-function">
|
|
6869
|
-
<li class="tsd-signature tsd-kind-icon">validate<span class="tsd-signature-symbol">(</span>validator<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ValidateFunction</span>, data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</span><span class="tsd-signature-symbol">[]</span></li>
|
|
7244
|
+
<li class="tsd-signature tsd-kind-icon">validate<span class="tsd-signature-symbol">(</span>validator<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ValidateFunction</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span>, data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorObject</span><span class="tsd-signature-symbol">[]</span></li>
|
|
6870
7245
|
</ul>
|
|
6871
7246
|
<ul class="tsd-descriptions">
|
|
6872
7247
|
<li class="tsd-description">
|
|
@@ -6878,7 +7253,7 @@
|
|
|
6878
7253
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
6879
7254
|
<ul class="tsd-parameters">
|
|
6880
7255
|
<li>
|
|
6881
|
-
<h5>validator: <span class="tsd-signature-type">ValidateFunction</span></h5>
|
|
7256
|
+
<h5>validator: <span class="tsd-signature-type">ValidateFunction</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></h5>
|
|
6882
7257
|
</li>
|
|
6883
7258
|
<li>
|
|
6884
7259
|
<h5>data: <span class="tsd-signature-type">any</span></h5>
|
|
@@ -8418,7 +8793,7 @@
|
|
|
8418
8793
|
<div class="tsd-signature tsd-kind-icon">control<wbr>Default<wbr>Props<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
|
8419
8794
|
<aside class="tsd-sources">
|
|
8420
8795
|
<ul>
|
|
8421
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
8796
|
+
<li>Defined in packages/core/src/util/renderer.ts:911</li>
|
|
8422
8797
|
</ul>
|
|
8423
8798
|
</aside>
|
|
8424
8799
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
@@ -8427,83 +8802,92 @@
|
|
|
8427
8802
|
<div class="tsd-signature tsd-kind-icon">errors<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = [] as string[]</span></div>
|
|
8428
8803
|
<aside class="tsd-sources">
|
|
8429
8804
|
<ul>
|
|
8430
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
8805
|
+
<li>Defined in packages/core/src/util/renderer.ts:913</li>
|
|
8431
8806
|
</ul>
|
|
8432
8807
|
</aside>
|
|
8433
8808
|
</section>
|
|
8434
8809
|
</section>
|
|
8435
8810
|
<section class="tsd-panel tsd-member tsd-kind-object-literal">
|
|
8436
|
-
<a name="
|
|
8437
|
-
<h3><span class="tsd-flag ts-flagConst">Const</span>
|
|
8438
|
-
<div class="tsd-signature tsd-kind-icon">
|
|
8811
|
+
<a name="defaultjsonformsi18nstate" class="tsd-anchor"></a>
|
|
8812
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> default<wbr>Json<wbr>Forms<wbr>I18n<wbr>State</h3>
|
|
8813
|
+
<div class="tsd-signature tsd-kind-icon">default<wbr>Json<wbr>Forms<wbr>I18n<wbr>State<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
|
8439
8814
|
<aside class="tsd-sources">
|
|
8440
8815
|
<ul>
|
|
8441
|
-
<li>Defined in packages/core/src/reducers/
|
|
8442
|
-
<li>Defined in packages/core/src/reducers/i18n.ts:36</li>
|
|
8816
|
+
<li>Defined in packages/core/src/reducers/i18n.ts:30</li>
|
|
8443
8817
|
</ul>
|
|
8444
8818
|
</aside>
|
|
8445
8819
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
8446
|
-
<a name="
|
|
8447
|
-
<h3>
|
|
8448
|
-
<div class="tsd-signature tsd-kind-icon">
|
|
8820
|
+
<a name="defaultjsonformsi18nstate.locale" class="tsd-anchor"></a>
|
|
8821
|
+
<h3>locale</h3>
|
|
8822
|
+
<div class="tsd-signature tsd-kind-icon">locale<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "en"</span></div>
|
|
8449
8823
|
<aside class="tsd-sources">
|
|
8450
8824
|
<ul>
|
|
8451
|
-
<li>Defined in packages/core/src/reducers/
|
|
8825
|
+
<li>Defined in packages/core/src/reducers/i18n.ts:31</li>
|
|
8452
8826
|
</ul>
|
|
8453
8827
|
</aside>
|
|
8454
8828
|
</section>
|
|
8455
8829
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
8456
|
-
<a name="
|
|
8457
|
-
<h3>
|
|
8458
|
-
<div class="tsd-signature tsd-kind-icon">
|
|
8830
|
+
<a name="defaultjsonformsi18nstate.translate" class="tsd-anchor"></a>
|
|
8831
|
+
<h3>translate</h3>
|
|
8832
|
+
<div class="tsd-signature tsd-kind-icon">translate<span class="tsd-signature-symbol">:</span> <a href="globals.html#translator" class="tsd-signature-type">Translator</a><span class="tsd-signature-symbol"> = defaultTranslator</span></div>
|
|
8459
8833
|
<aside class="tsd-sources">
|
|
8460
8834
|
<ul>
|
|
8461
|
-
<li>Defined in packages/core/src/reducers/
|
|
8835
|
+
<li>Defined in packages/core/src/reducers/i18n.ts:32</li>
|
|
8462
8836
|
</ul>
|
|
8463
8837
|
</aside>
|
|
8464
|
-
<div class="tsd-type-declaration">
|
|
8465
|
-
<h4>Type declaration</h4>
|
|
8466
|
-
<ul class="tsd-parameters">
|
|
8467
|
-
</ul>
|
|
8468
|
-
</div>
|
|
8469
8838
|
</section>
|
|
8470
8839
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
8471
|
-
<a name="
|
|
8472
|
-
<h3>
|
|
8473
|
-
<div class="tsd-signature tsd-kind-icon">
|
|
8840
|
+
<a name="defaultjsonformsi18nstate.translateerror" class="tsd-anchor"></a>
|
|
8841
|
+
<h3>translate<wbr>Error</h3>
|
|
8842
|
+
<div class="tsd-signature tsd-kind-icon">translate<wbr>Error<span class="tsd-signature-symbol">:</span> <a href="globals.html#errortranslator" class="tsd-signature-type">ErrorTranslator</a><span class="tsd-signature-symbol"> = defaultErrorTranslator</span></div>
|
|
8474
8843
|
<aside class="tsd-sources">
|
|
8475
8844
|
<ul>
|
|
8476
|
-
<li>Defined in packages/core/src/reducers/
|
|
8845
|
+
<li>Defined in packages/core/src/reducers/i18n.ts:33</li>
|
|
8477
8846
|
</ul>
|
|
8478
8847
|
</aside>
|
|
8479
8848
|
</section>
|
|
8849
|
+
</section>
|
|
8850
|
+
<section class="tsd-panel tsd-member tsd-kind-object-literal">
|
|
8851
|
+
<a name="initstate" class="tsd-anchor"></a>
|
|
8852
|
+
<h3><span class="tsd-flag ts-flagConst">Const</span> init<wbr>State</h3>
|
|
8853
|
+
<div class="tsd-signature tsd-kind-icon">init<wbr>State<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
|
8854
|
+
<aside class="tsd-sources">
|
|
8855
|
+
<ul>
|
|
8856
|
+
<li>Defined in packages/core/src/reducers/core.ts:73</li>
|
|
8857
|
+
</ul>
|
|
8858
|
+
</aside>
|
|
8480
8859
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
8481
|
-
<a name="initstate.
|
|
8482
|
-
<h3>
|
|
8483
|
-
<div class="tsd-signature tsd-kind-icon">
|
|
8860
|
+
<a name="initstate.ajv" class="tsd-anchor"></a>
|
|
8861
|
+
<h3>ajv</h3>
|
|
8862
|
+
<div class="tsd-signature tsd-kind-icon">ajv<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> = undefined</span></div>
|
|
8484
8863
|
<aside class="tsd-sources">
|
|
8485
8864
|
<ul>
|
|
8486
|
-
<li>Defined in packages/core/src/reducers/
|
|
8865
|
+
<li>Defined in packages/core/src/reducers/core.ts:79</li>
|
|
8487
8866
|
</ul>
|
|
8488
8867
|
</aside>
|
|
8489
8868
|
</section>
|
|
8490
8869
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
8491
|
-
<a name="initstate.
|
|
8492
|
-
<h3>
|
|
8493
|
-
<div class="tsd-signature tsd-kind-icon">
|
|
8870
|
+
<a name="initstate.data" class="tsd-anchor"></a>
|
|
8871
|
+
<h3>data</h3>
|
|
8872
|
+
<div class="tsd-signature tsd-kind-icon">data<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{}</span></div>
|
|
8494
8873
|
<aside class="tsd-sources">
|
|
8495
8874
|
<ul>
|
|
8496
|
-
<li>Defined in packages/core/src/reducers/
|
|
8875
|
+
<li>Defined in packages/core/src/reducers/core.ts:74</li>
|
|
8497
8876
|
</ul>
|
|
8498
8877
|
</aside>
|
|
8878
|
+
<div class="tsd-type-declaration">
|
|
8879
|
+
<h4>Type declaration</h4>
|
|
8880
|
+
<ul class="tsd-parameters">
|
|
8881
|
+
</ul>
|
|
8882
|
+
</div>
|
|
8499
8883
|
</section>
|
|
8500
8884
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
8501
|
-
<a name="initstate.
|
|
8502
|
-
<h3>
|
|
8503
|
-
<div class="tsd-signature tsd-kind-icon">
|
|
8885
|
+
<a name="initstate.errors" class="tsd-anchor"></a>
|
|
8886
|
+
<h3>errors</h3>
|
|
8887
|
+
<div class="tsd-signature tsd-kind-icon">errors<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = []</span></div>
|
|
8504
8888
|
<aside class="tsd-sources">
|
|
8505
8889
|
<ul>
|
|
8506
|
-
<li>Defined in packages/core/src/reducers/
|
|
8890
|
+
<li>Defined in packages/core/src/reducers/core.ts:77</li>
|
|
8507
8891
|
</ul>
|
|
8508
8892
|
</aside>
|
|
8509
8893
|
</section>
|
|
@@ -8513,7 +8897,7 @@
|
|
|
8513
8897
|
<div class="tsd-signature tsd-kind-icon">schema<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{}</span></div>
|
|
8514
8898
|
<aside class="tsd-sources">
|
|
8515
8899
|
<ul>
|
|
8516
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
8900
|
+
<li>Defined in packages/core/src/reducers/core.ts:75</li>
|
|
8517
8901
|
</ul>
|
|
8518
8902
|
</aside>
|
|
8519
8903
|
<div class="tsd-type-declaration">
|
|
@@ -8528,7 +8912,7 @@
|
|
|
8528
8912
|
<div class="tsd-signature tsd-kind-icon">uischema<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> = undefined</span></div>
|
|
8529
8913
|
<aside class="tsd-sources">
|
|
8530
8914
|
<ul>
|
|
8531
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
8915
|
+
<li>Defined in packages/core/src/reducers/core.ts:76</li>
|
|
8532
8916
|
</ul>
|
|
8533
8917
|
</aside>
|
|
8534
8918
|
</section>
|
|
@@ -8538,17 +8922,17 @@
|
|
|
8538
8922
|
<div class="tsd-signature tsd-kind-icon">validation<wbr>Mode<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"ValidateAndShow"</span><span class="tsd-signature-symbol"> = "ValidateAndShow"</span></div>
|
|
8539
8923
|
<aside class="tsd-sources">
|
|
8540
8924
|
<ul>
|
|
8541
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
8925
|
+
<li>Defined in packages/core/src/reducers/core.ts:80</li>
|
|
8542
8926
|
</ul>
|
|
8543
8927
|
</aside>
|
|
8544
8928
|
</section>
|
|
8545
8929
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
8546
8930
|
<a name="initstate.validator" class="tsd-anchor"></a>
|
|
8547
8931
|
<h3>validator</h3>
|
|
8548
|
-
<div class="tsd-signature tsd-kind-icon">validator<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">
|
|
8932
|
+
<div class="tsd-signature tsd-kind-icon">validator<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> = undefined</span></div>
|
|
8549
8933
|
<aside class="tsd-sources">
|
|
8550
8934
|
<ul>
|
|
8551
|
-
<li>Defined in packages/core/src/reducers/core.ts:
|
|
8935
|
+
<li>Defined in packages/core/src/reducers/core.ts:78</li>
|
|
8552
8936
|
</ul>
|
|
8553
8937
|
</aside>
|
|
8554
8938
|
</section>
|
|
@@ -8559,7 +8943,7 @@
|
|
|
8559
8943
|
<div class="tsd-signature tsd-kind-icon">json<wbr>Forms<wbr>Reducer<wbr>Config<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
|
8560
8944
|
<aside class="tsd-sources">
|
|
8561
8945
|
<ul>
|
|
8562
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
8946
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:55</li>
|
|
8563
8947
|
</ul>
|
|
8564
8948
|
</aside>
|
|
8565
8949
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
@@ -8568,7 +8952,7 @@
|
|
|
8568
8952
|
<div class="tsd-signature tsd-kind-icon">cells<span class="tsd-signature-symbol">:</span> <a href="globals.html#reducer" class="tsd-signature-type">Reducer</a><span class="tsd-signature-symbol"><</span><a href="globals.html#jsonformscellrendererregistrystate" class="tsd-signature-type">JsonFormsCellRendererRegistryState</a><span class="tsd-signature-symbol">, </span><a href="globals.html#validcellreduceractions" class="tsd-signature-type">ValidCellReducerActions</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = cellReducer</span></div>
|
|
8569
8953
|
<aside class="tsd-sources">
|
|
8570
8954
|
<ul>
|
|
8571
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
8955
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:58</li>
|
|
8572
8956
|
</ul>
|
|
8573
8957
|
</aside>
|
|
8574
8958
|
</section>
|
|
@@ -8578,7 +8962,7 @@
|
|
|
8578
8962
|
<div class="tsd-signature tsd-kind-icon">config<span class="tsd-signature-symbol">:</span> <a href="globals.html#reducer" class="tsd-signature-type">Reducer</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><a href="interfaces/setconfigaction.html" class="tsd-signature-type">SetConfigAction</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = configReducer</span></div>
|
|
8579
8963
|
<aside class="tsd-sources">
|
|
8580
8964
|
<ul>
|
|
8581
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
8965
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:59</li>
|
|
8582
8966
|
</ul>
|
|
8583
8967
|
</aside>
|
|
8584
8968
|
</section>
|
|
@@ -8588,7 +8972,7 @@
|
|
|
8588
8972
|
<div class="tsd-signature tsd-kind-icon">core<span class="tsd-signature-symbol">:</span> <a href="globals.html#reducer" class="tsd-signature-type">Reducer</a><span class="tsd-signature-symbol"><</span><a href="interfaces/jsonformscore.html" class="tsd-signature-type">JsonFormsCore</a><span class="tsd-signature-symbol">, </span><a href="globals.html#coreactions" class="tsd-signature-type">CoreActions</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = coreReducer</span></div>
|
|
8589
8973
|
<aside class="tsd-sources">
|
|
8590
8974
|
<ul>
|
|
8591
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
8975
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:56</li>
|
|
8592
8976
|
</ul>
|
|
8593
8977
|
</aside>
|
|
8594
8978
|
</section>
|
|
@@ -8598,17 +8982,17 @@
|
|
|
8598
8982
|
<div class="tsd-signature tsd-kind-icon">default<wbr>Data<span class="tsd-signature-symbol">:</span> <a href="globals.html#reducer" class="tsd-signature-type">Reducer</a><span class="tsd-signature-symbol"><</span><a href="interfaces/jsonformsdefaultdataregistryentry.html" class="tsd-signature-type">JsonFormsDefaultDataRegistryEntry</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">, </span><a href="globals.html#validdefaultdataactions" class="tsd-signature-type">ValidDefaultDataActions</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = defaultDataReducer</span></div>
|
|
8599
8983
|
<aside class="tsd-sources">
|
|
8600
8984
|
<ul>
|
|
8601
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
8985
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:61</li>
|
|
8602
8986
|
</ul>
|
|
8603
8987
|
</aside>
|
|
8604
8988
|
</section>
|
|
8605
8989
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
8606
8990
|
<a name="jsonformsreducerconfig.i18n" class="tsd-anchor"></a>
|
|
8607
8991
|
<h3>i18n</h3>
|
|
8608
|
-
<div class="tsd-signature tsd-kind-icon">i18n<span class="tsd-signature-symbol">:</span> <a href="globals.html#reducer" class="tsd-signature-type">Reducer</a><span class="tsd-signature-symbol"><</span><
|
|
8992
|
+
<div class="tsd-signature tsd-kind-icon">i18n<span class="tsd-signature-symbol">:</span> <a href="globals.html#reducer" class="tsd-signature-type">Reducer</a><span class="tsd-signature-symbol"><</span><a href="interfaces/jsonformsi18nstate.html" class="tsd-signature-type">JsonFormsI18nState</a><span class="tsd-signature-symbol">, </span><a href="globals.html#i18nactions" class="tsd-signature-type">I18nActions</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = i18nReducer</span></div>
|
|
8609
8993
|
<aside class="tsd-sources">
|
|
8610
8994
|
<ul>
|
|
8611
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
8995
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:62</li>
|
|
8612
8996
|
</ul>
|
|
8613
8997
|
</aside>
|
|
8614
8998
|
</section>
|
|
@@ -8618,7 +9002,7 @@
|
|
|
8618
9002
|
<div class="tsd-signature tsd-kind-icon">renderers<span class="tsd-signature-symbol">:</span> <a href="globals.html#reducer" class="tsd-signature-type">Reducer</a><span class="tsd-signature-symbol"><</span><a href="interfaces/jsonformsrendererregistryentry.html" class="tsd-signature-type">JsonFormsRendererRegistryEntry</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">, </span><a href="globals.html#validrendererreduceractions" class="tsd-signature-type">ValidRendererReducerActions</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = rendererReducer</span></div>
|
|
8619
9003
|
<aside class="tsd-sources">
|
|
8620
9004
|
<ul>
|
|
8621
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
9005
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:57</li>
|
|
8622
9006
|
</ul>
|
|
8623
9007
|
</aside>
|
|
8624
9008
|
</section>
|
|
@@ -8628,7 +9012,7 @@
|
|
|
8628
9012
|
<div class="tsd-signature tsd-kind-icon">uischemas<span class="tsd-signature-symbol">:</span> <a href="globals.html#reducer" class="tsd-signature-type">Reducer</a><span class="tsd-signature-symbol"><</span><a href="interfaces/jsonformsuischemaregistryentry.html" class="tsd-signature-type">JsonFormsUISchemaRegistryEntry</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">, </span><a href="globals.html#uischemaactions" class="tsd-signature-type">UISchemaActions</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = uischemaRegistryReducer</span></div>
|
|
8629
9013
|
<aside class="tsd-sources">
|
|
8630
9014
|
<ul>
|
|
8631
|
-
<li>Defined in packages/core/src/reducers/reducers.ts:
|
|
9015
|
+
<li>Defined in packages/core/src/reducers/reducers.ts:60</li>
|
|
8632
9016
|
</ul>
|
|
8633
9017
|
</aside>
|
|
8634
9018
|
</section>
|
|
@@ -8639,7 +9023,7 @@
|
|
|
8639
9023
|
<div class="tsd-signature tsd-kind-icon">layout<wbr>Default<wbr>Props<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
|
8640
9024
|
<aside class="tsd-sources">
|
|
8641
9025
|
<ul>
|
|
8642
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
9026
|
+
<li>Defined in packages/core/src/util/renderer.ts:808</li>
|
|
8643
9027
|
</ul>
|
|
8644
9028
|
</aside>
|
|
8645
9029
|
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal">
|
|
@@ -8648,7 +9032,7 @@
|
|
|
8648
9032
|
<div class="tsd-signature tsd-kind-icon">direction<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"column"</span><span class="tsd-signature-symbol"> = "column"</span></div>
|
|
8649
9033
|
<aside class="tsd-sources">
|
|
8650
9034
|
<ul>
|
|
8651
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
9035
|
+
<li>Defined in packages/core/src/util/renderer.ts:817</li>
|
|
8652
9036
|
</ul>
|
|
8653
9037
|
</aside>
|
|
8654
9038
|
</section>
|
|
@@ -8658,7 +9042,7 @@
|
|
|
8658
9042
|
<div class="tsd-signature tsd-kind-icon">enabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">true</span><span class="tsd-signature-symbol"> = true</span></div>
|
|
8659
9043
|
<aside class="tsd-sources">
|
|
8660
9044
|
<ul>
|
|
8661
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
9045
|
+
<li>Defined in packages/core/src/util/renderer.ts:815</li>
|
|
8662
9046
|
</ul>
|
|
8663
9047
|
</aside>
|
|
8664
9048
|
</section>
|
|
@@ -8668,7 +9052,7 @@
|
|
|
8668
9052
|
<div class="tsd-signature tsd-kind-icon">path<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
|
8669
9053
|
<aside class="tsd-sources">
|
|
8670
9054
|
<ul>
|
|
8671
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
9055
|
+
<li>Defined in packages/core/src/util/renderer.ts:816</li>
|
|
8672
9056
|
</ul>
|
|
8673
9057
|
</aside>
|
|
8674
9058
|
</section>
|
|
@@ -8678,7 +9062,7 @@
|
|
|
8678
9062
|
<div class="tsd-signature tsd-kind-icon">visible<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">true</span><span class="tsd-signature-symbol"> = true</span></div>
|
|
8679
9063
|
<aside class="tsd-sources">
|
|
8680
9064
|
<ul>
|
|
8681
|
-
<li>Defined in packages/core/src/util/renderer.ts:
|
|
9065
|
+
<li>Defined in packages/core/src/util/renderer.ts:814</li>
|
|
8682
9066
|
</ul>
|
|
8683
9067
|
</aside>
|
|
8684
9068
|
</section>
|
|
@@ -8807,7 +9191,7 @@
|
|
|
8807
9191
|
<a href="interfaces/jsonformsextendedstate.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Extended<wbr>State</a>
|
|
8808
9192
|
</li>
|
|
8809
9193
|
<li class=" tsd-kind-interface">
|
|
8810
|
-
<a href="interfaces/
|
|
9194
|
+
<a href="interfaces/jsonformsi18nstate.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>I18n<wbr>State</a>
|
|
8811
9195
|
</li>
|
|
8812
9196
|
<li class=" tsd-kind-interface">
|
|
8813
9197
|
<a href="interfaces/jsonformsprops.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Props</a>
|
|
@@ -8912,13 +9296,10 @@
|
|
|
8912
9296
|
<a href="interfaces/setlocaleaction.html" class="tsd-kind-icon">Set<wbr>Locale<wbr>Action</a>
|
|
8913
9297
|
</li>
|
|
8914
9298
|
<li class=" tsd-kind-interface">
|
|
8915
|
-
<a href="interfaces/
|
|
8916
|
-
</li>
|
|
8917
|
-
<li class=" tsd-kind-interface">
|
|
8918
|
-
<a href="interfaces/setlocalizeduischemasaction.html" class="tsd-kind-icon">Set<wbr>LocalizedUISchemas<wbr>Action</a>
|
|
9299
|
+
<a href="interfaces/setschemaaction.html" class="tsd-kind-icon">Set<wbr>Schema<wbr>Action</a>
|
|
8919
9300
|
</li>
|
|
8920
9301
|
<li class=" tsd-kind-interface">
|
|
8921
|
-
<a href="interfaces/
|
|
9302
|
+
<a href="interfaces/settranslatoraction.html" class="tsd-kind-icon">Set<wbr>Translator<wbr>Action</a>
|
|
8922
9303
|
</li>
|
|
8923
9304
|
<li class=" tsd-kind-interface">
|
|
8924
9305
|
<a href="interfaces/setuischemaaction.html" class="tsd-kind-icon">SetUISchema<wbr>Action</a>
|
|
@@ -8980,6 +9361,9 @@
|
|
|
8980
9361
|
<li class=" tsd-kind-interface">
|
|
8981
9362
|
<a href="interfaces/updateerrorsaction.html" class="tsd-kind-icon">Update<wbr>Errors<wbr>Action</a>
|
|
8982
9363
|
</li>
|
|
9364
|
+
<li class=" tsd-kind-interface">
|
|
9365
|
+
<a href="interfaces/updatei18naction.html" class="tsd-kind-icon">Update<wbr>I18n<wbr>Action</a>
|
|
9366
|
+
</li>
|
|
8983
9367
|
<li class=" tsd-kind-interface">
|
|
8984
9368
|
<a href="interfaces/verticallayout.html" class="tsd-kind-icon">Vertical<wbr>Layout</a>
|
|
8985
9369
|
</li>
|
|
@@ -8989,9 +9373,6 @@
|
|
|
8989
9373
|
<li class=" tsd-kind-type-alias">
|
|
8990
9374
|
<a href="globals.html#combinatorkeyword" class="tsd-kind-icon">Combinator<wbr>Keyword</a>
|
|
8991
9375
|
</li>
|
|
8992
|
-
<li class=" tsd-kind-type-alias">
|
|
8993
|
-
<a href="globals.html#combinatorprops" class="tsd-kind-icon">Combinator<wbr>Props</a>
|
|
8994
|
-
</li>
|
|
8995
9376
|
<li class=" tsd-kind-type-alias">
|
|
8996
9377
|
<a href="globals.html#coreactions" class="tsd-kind-icon">Core<wbr>Actions</a>
|
|
8997
9378
|
</li>
|
|
@@ -9001,6 +9382,12 @@
|
|
|
9001
9382
|
<li class=" tsd-kind-type-alias">
|
|
9002
9383
|
<a href="globals.html#dispatchpropsofcell" class="tsd-kind-icon">Dispatch<wbr>Props<wbr>OfCell</a>
|
|
9003
9384
|
</li>
|
|
9385
|
+
<li class=" tsd-kind-type-alias">
|
|
9386
|
+
<a href="globals.html#errortranslator" class="tsd-kind-icon">Error<wbr>Translator</a>
|
|
9387
|
+
</li>
|
|
9388
|
+
<li class=" tsd-kind-type-alias">
|
|
9389
|
+
<a href="globals.html#i18nactions" class="tsd-kind-icon">I18n<wbr>Actions</a>
|
|
9390
|
+
</li>
|
|
9004
9391
|
<li class=" tsd-kind-type-alias">
|
|
9005
9392
|
<a href="globals.html#iteratecallback" class="tsd-kind-icon">Iterate<wbr>Callback</a>
|
|
9006
9393
|
</li>
|
|
@@ -9010,9 +9397,6 @@
|
|
|
9010
9397
|
<li class=" tsd-kind-type-alias">
|
|
9011
9398
|
<a href="globals.html#jsonschema" class="tsd-kind-icon">Json<wbr>Schema</a>
|
|
9012
9399
|
</li>
|
|
9013
|
-
<li class=" tsd-kind-type-alias">
|
|
9014
|
-
<a href="globals.html#localeactions" class="tsd-kind-icon">Locale<wbr>Actions</a>
|
|
9015
|
-
</li>
|
|
9016
9400
|
<li class=" tsd-kind-type-alias tsd-has-type-parameter">
|
|
9017
9401
|
<a href="globals.html#observable" class="tsd-kind-icon">Observable</a>
|
|
9018
9402
|
</li>
|
|
@@ -9034,6 +9418,9 @@
|
|
|
9034
9418
|
<li class=" tsd-kind-type-alias">
|
|
9035
9419
|
<a href="globals.html#tester" class="tsd-kind-icon">Tester</a>
|
|
9036
9420
|
</li>
|
|
9421
|
+
<li class=" tsd-kind-type-alias">
|
|
9422
|
+
<a href="globals.html#translator" class="tsd-kind-icon">Translator</a>
|
|
9423
|
+
</li>
|
|
9037
9424
|
<li class=" tsd-kind-type-alias">
|
|
9038
9425
|
<a href="globals.html#uischemaactions" class="tsd-kind-icon">UISchema<wbr>Actions</a>
|
|
9039
9426
|
</li>
|
|
@@ -9055,6 +9442,9 @@
|
|
|
9055
9442
|
<li class=" tsd-kind-type-alias">
|
|
9056
9443
|
<a href="globals.html#validationmode" class="tsd-kind-icon">Validation<wbr>Mode</a>
|
|
9057
9444
|
</li>
|
|
9445
|
+
<li class=" tsd-kind-type-alias">
|
|
9446
|
+
<a href="globals.html#i18njsonschema" class="tsd-kind-icon">i18n<wbr>Json<wbr>Schema</a>
|
|
9447
|
+
</li>
|
|
9058
9448
|
<li class=" tsd-kind-variable">
|
|
9059
9449
|
<a href="globals.html#additional_properties" class="tsd-kind-icon">ADDITIONAL_<wbr>PROPERTIES</a>
|
|
9060
9450
|
</li>
|
|
@@ -9101,13 +9491,10 @@
|
|
|
9101
9491
|
<a href="globals.html#set_locale" class="tsd-kind-icon">SET_<wbr>LOCALE</a>
|
|
9102
9492
|
</li>
|
|
9103
9493
|
<li class=" tsd-kind-variable">
|
|
9104
|
-
<a href="globals.html#
|
|
9105
|
-
</li>
|
|
9106
|
-
<li class=" tsd-kind-variable">
|
|
9107
|
-
<a href="globals.html#set_localized_uischemas" class="tsd-kind-icon">SET_<wbr>LOCALIZED_<wbr>UISCHEMAS</a>
|
|
9494
|
+
<a href="globals.html#set_schema" class="tsd-kind-icon">SET_<wbr>SCHEMA</a>
|
|
9108
9495
|
</li>
|
|
9109
9496
|
<li class=" tsd-kind-variable">
|
|
9110
|
-
<a href="globals.html#
|
|
9497
|
+
<a href="globals.html#set_translator" class="tsd-kind-icon">SET_<wbr>TRANSLATOR</a>
|
|
9111
9498
|
</li>
|
|
9112
9499
|
<li class=" tsd-kind-variable">
|
|
9113
9500
|
<a href="globals.html#set_uischema" class="tsd-kind-icon">SET_<wbr>UISCHEMA</a>
|
|
@@ -9124,6 +9511,9 @@
|
|
|
9124
9511
|
<li class=" tsd-kind-variable">
|
|
9125
9512
|
<a href="globals.html#update_errors" class="tsd-kind-icon">UPDATE_<wbr>ERRORS</a>
|
|
9126
9513
|
</li>
|
|
9514
|
+
<li class=" tsd-kind-variable">
|
|
9515
|
+
<a href="globals.html#update_i18n" class="tsd-kind-icon">UPDATE_<wbr><wbr>I18N</a>
|
|
9516
|
+
</li>
|
|
9127
9517
|
<li class=" tsd-kind-variable">
|
|
9128
9518
|
<a href="globals.html#validate" class="tsd-kind-icon">VALIDATE</a>
|
|
9129
9519
|
</li>
|
|
@@ -9199,9 +9589,6 @@
|
|
|
9199
9589
|
<li class=" tsd-kind-function">
|
|
9200
9590
|
<a href="globals.html#addlabel" class="tsd-kind-icon">add<wbr>Label</a>
|
|
9201
9591
|
</li>
|
|
9202
|
-
<li class=" tsd-kind-function">
|
|
9203
|
-
<a href="globals.html#alwaysvalid" class="tsd-kind-icon">always<wbr>Valid</a>
|
|
9204
|
-
</li>
|
|
9205
9592
|
<li class=" tsd-kind-function">
|
|
9206
9593
|
<a href="globals.html#and" class="tsd-kind-icon">and</a>
|
|
9207
9594
|
</li>
|
|
@@ -9265,12 +9652,18 @@
|
|
|
9265
9652
|
<li class=" tsd-kind-function">
|
|
9266
9653
|
<a href="globals.html#defaultdatareducer" class="tsd-kind-icon">default<wbr>Data<wbr>Reducer</a>
|
|
9267
9654
|
</li>
|
|
9655
|
+
<li class=" tsd-kind-function">
|
|
9656
|
+
<a href="globals.html#defaulterrortranslator" class="tsd-kind-icon">default<wbr>Error<wbr>Translator</a>
|
|
9657
|
+
</li>
|
|
9268
9658
|
<li class=" tsd-kind-function">
|
|
9269
9659
|
<a href="globals.html#defaultmapdispatchtocontrolprops" class="tsd-kind-icon">default<wbr>Map<wbr>Dispatch<wbr>ToControl<wbr>Props</a>
|
|
9270
9660
|
</li>
|
|
9271
9661
|
<li class=" tsd-kind-function">
|
|
9272
9662
|
<a href="globals.html#defaultmapstatetoenumcellprops" class="tsd-kind-icon">default<wbr>Map<wbr>State<wbr>ToEnum<wbr>Cell<wbr>Props</a>
|
|
9273
9663
|
</li>
|
|
9664
|
+
<li class=" tsd-kind-function">
|
|
9665
|
+
<a href="globals.html#defaulttranslator" class="tsd-kind-icon">default<wbr>Translator</a>
|
|
9666
|
+
</li>
|
|
9274
9667
|
<li class=" tsd-kind-function">
|
|
9275
9668
|
<a href="globals.html#derivelabel" class="tsd-kind-icon">derive<wbr>Label</a>
|
|
9276
9669
|
</li>
|
|
@@ -9314,16 +9707,16 @@
|
|
|
9314
9707
|
<a href="globals.html#extractuischema" class="tsd-kind-icon">extract<wbr>UiSchema</a>
|
|
9315
9708
|
</li>
|
|
9316
9709
|
<li class=" tsd-kind-function">
|
|
9317
|
-
<a href="globals.html#
|
|
9710
|
+
<a href="globals.html#fetcherrortranslator" class="tsd-kind-icon">fetch<wbr>Error<wbr>Translator</a>
|
|
9318
9711
|
</li>
|
|
9319
9712
|
<li class=" tsd-kind-function">
|
|
9320
|
-
<a href="globals.html#
|
|
9713
|
+
<a href="globals.html#fetchlocale" class="tsd-kind-icon">fetch<wbr>Locale</a>
|
|
9321
9714
|
</li>
|
|
9322
9715
|
<li class=" tsd-kind-function">
|
|
9323
|
-
<a href="globals.html#
|
|
9716
|
+
<a href="globals.html#fetchtranslator" class="tsd-kind-icon">fetch<wbr>Translator</a>
|
|
9324
9717
|
</li>
|
|
9325
9718
|
<li class=" tsd-kind-function">
|
|
9326
|
-
<a href="globals.html#
|
|
9719
|
+
<a href="globals.html#findallrefs" class="tsd-kind-icon">find<wbr>All<wbr>Refs</a>
|
|
9327
9720
|
</li>
|
|
9328
9721
|
<li class=" tsd-kind-function">
|
|
9329
9722
|
<a href="globals.html#findmatchinguischema" class="tsd-kind-icon">find<wbr>MatchingUISchema</a>
|
|
@@ -9355,12 +9748,18 @@
|
|
|
9355
9748
|
<li class=" tsd-kind-function">
|
|
9356
9749
|
<a href="globals.html#getcells" class="tsd-kind-icon">get<wbr>Cells</a>
|
|
9357
9750
|
</li>
|
|
9751
|
+
<li class=" tsd-kind-function">
|
|
9752
|
+
<a href="globals.html#getcombinederrormessage" class="tsd-kind-icon">get<wbr>Combined<wbr>Error<wbr>Message</a>
|
|
9753
|
+
</li>
|
|
9358
9754
|
<li class=" tsd-kind-function">
|
|
9359
9755
|
<a href="globals.html#getconditionscope" class="tsd-kind-icon">get<wbr>Condition<wbr>Scope</a>
|
|
9360
9756
|
</li>
|
|
9361
9757
|
<li class=" tsd-kind-function">
|
|
9362
9758
|
<a href="globals.html#getconfig" class="tsd-kind-icon">get<wbr>Config</a>
|
|
9363
9759
|
</li>
|
|
9760
|
+
<li class=" tsd-kind-function">
|
|
9761
|
+
<a href="globals.html#getcontrolpath" class="tsd-kind-icon">get<wbr>Control<wbr>Path</a>
|
|
9762
|
+
</li>
|
|
9364
9763
|
<li class=" tsd-kind-function">
|
|
9365
9764
|
<a href="globals.html#getdata" class="tsd-kind-icon">get<wbr>Data</a>
|
|
9366
9765
|
</li>
|
|
@@ -9373,6 +9772,9 @@
|
|
|
9373
9772
|
<li class=" tsd-kind-function">
|
|
9374
9773
|
<a href="globals.html#geterrorat" class="tsd-kind-icon">get<wbr>Error<wbr>At</a>
|
|
9375
9774
|
</li>
|
|
9775
|
+
<li class=" tsd-kind-function">
|
|
9776
|
+
<a href="globals.html#geterrortranslator" class="tsd-kind-icon">get<wbr>Error<wbr>Translator</a>
|
|
9777
|
+
</li>
|
|
9376
9778
|
<li class=" tsd-kind-function">
|
|
9377
9779
|
<a href="globals.html#geterrorsat" class="tsd-kind-icon">get<wbr>Errors<wbr>At</a>
|
|
9378
9780
|
</li>
|
|
@@ -9380,13 +9782,19 @@
|
|
|
9380
9782
|
<a href="globals.html#getfirstprimitiveprop" class="tsd-kind-icon">get<wbr>First<wbr>Primitive<wbr>Prop</a>
|
|
9381
9783
|
</li>
|
|
9382
9784
|
<li class=" tsd-kind-function">
|
|
9383
|
-
<a href="globals.html#
|
|
9785
|
+
<a href="globals.html#geti18nkey" class="tsd-kind-icon">get<wbr>I18n<wbr>Key</a>
|
|
9786
|
+
</li>
|
|
9787
|
+
<li class=" tsd-kind-function">
|
|
9788
|
+
<a href="globals.html#geti18nkeyprefix" class="tsd-kind-icon">get<wbr>I18n<wbr>Key<wbr>Prefix</a>
|
|
9789
|
+
</li>
|
|
9790
|
+
<li class=" tsd-kind-function">
|
|
9791
|
+
<a href="globals.html#geti18nkeyprefixbyschema" class="tsd-kind-icon">get<wbr>I18n<wbr>Key<wbr>Prefix<wbr>BySchema</a>
|
|
9384
9792
|
</li>
|
|
9385
9793
|
<li class=" tsd-kind-function">
|
|
9386
|
-
<a href="globals.html#
|
|
9794
|
+
<a href="globals.html#getinvalidproperty" class="tsd-kind-icon">get<wbr>Invalid<wbr>Property</a>
|
|
9387
9795
|
</li>
|
|
9388
9796
|
<li class=" tsd-kind-function">
|
|
9389
|
-
<a href="globals.html#
|
|
9797
|
+
<a href="globals.html#getlocale" class="tsd-kind-icon">get<wbr>Locale</a>
|
|
9390
9798
|
</li>
|
|
9391
9799
|
<li class=" tsd-kind-function">
|
|
9392
9800
|
<a href="globals.html#getorcreateajv" class="tsd-kind-icon">get<wbr>OrCreate<wbr>Ajv</a>
|
|
@@ -9400,6 +9808,9 @@
|
|
|
9400
9808
|
<li class=" tsd-kind-function">
|
|
9401
9809
|
<a href="globals.html#getsuberrorsat" class="tsd-kind-icon">get<wbr>Sub<wbr>Errors<wbr>At</a>
|
|
9402
9810
|
</li>
|
|
9811
|
+
<li class=" tsd-kind-function">
|
|
9812
|
+
<a href="globals.html#gettranslator" class="tsd-kind-icon">get<wbr>Translator</a>
|
|
9813
|
+
</li>
|
|
9403
9814
|
<li class=" tsd-kind-function">
|
|
9404
9815
|
<a href="globals.html#getuischemas" class="tsd-kind-icon">getUISchemas</a>
|
|
9405
9816
|
</li>
|
|
@@ -9622,9 +10033,6 @@
|
|
|
9622
10033
|
<li class=" tsd-kind-function">
|
|
9623
10034
|
<a href="globals.html#reuseajvforschema" class="tsd-kind-icon">reuse<wbr>Ajv<wbr>For<wbr>Schema</a>
|
|
9624
10035
|
</li>
|
|
9625
|
-
<li class=" tsd-kind-function">
|
|
9626
|
-
<a href="globals.html#sanitizeerrors" class="tsd-kind-icon">sanitize<wbr>Errors</a>
|
|
9627
|
-
</li>
|
|
9628
10036
|
<li class=" tsd-kind-function">
|
|
9629
10037
|
<a href="globals.html#schemamatches" class="tsd-kind-icon">schema<wbr>Matches</a>
|
|
9630
10038
|
</li>
|
|
@@ -9649,12 +10057,6 @@
|
|
|
9649
10057
|
<li class=" tsd-kind-function">
|
|
9650
10058
|
<a href="globals.html#setlocale" class="tsd-kind-icon">set<wbr>Locale</a>
|
|
9651
10059
|
</li>
|
|
9652
|
-
<li class=" tsd-kind-function">
|
|
9653
|
-
<a href="globals.html#setlocalizedschemas" class="tsd-kind-icon">set<wbr>Localized<wbr>Schemas</a>
|
|
9654
|
-
</li>
|
|
9655
|
-
<li class=" tsd-kind-function">
|
|
9656
|
-
<a href="globals.html#setlocalizeduischemas" class="tsd-kind-icon">set<wbr>LocalizedUISchemas</a>
|
|
9657
|
-
</li>
|
|
9658
10060
|
<li class=" tsd-kind-function">
|
|
9659
10061
|
<a href="globals.html#setreadonly" class="tsd-kind-icon">set<wbr>Readonly</a>
|
|
9660
10062
|
</li>
|
|
@@ -9664,12 +10066,18 @@
|
|
|
9664
10066
|
<li class=" tsd-kind-function">
|
|
9665
10067
|
<a href="globals.html#setschema" class="tsd-kind-icon">set<wbr>Schema</a>
|
|
9666
10068
|
</li>
|
|
10069
|
+
<li class=" tsd-kind-function">
|
|
10070
|
+
<a href="globals.html#settranslator" class="tsd-kind-icon">set<wbr>Translator</a>
|
|
10071
|
+
</li>
|
|
9667
10072
|
<li class=" tsd-kind-function">
|
|
9668
10073
|
<a href="globals.html#setuischema" class="tsd-kind-icon">setUISchema</a>
|
|
9669
10074
|
</li>
|
|
9670
10075
|
<li class=" tsd-kind-function">
|
|
9671
10076
|
<a href="globals.html#setvalidationmode" class="tsd-kind-icon">set<wbr>Validation<wbr>Mode</a>
|
|
9672
10077
|
</li>
|
|
10078
|
+
<li class=" tsd-kind-function">
|
|
10079
|
+
<a href="globals.html#showasrequired" class="tsd-kind-icon">show<wbr>AsRequired</a>
|
|
10080
|
+
</li>
|
|
9673
10081
|
<li class=" tsd-kind-function">
|
|
9674
10082
|
<a href="globals.html#suberrorsat" class="tsd-kind-icon">sub<wbr>Errors<wbr>At</a>
|
|
9675
10083
|
</li>
|
|
@@ -9679,6 +10087,9 @@
|
|
|
9679
10087
|
<li class=" tsd-kind-function">
|
|
9680
10088
|
<a href="globals.html#todatapathsegments" class="tsd-kind-icon">to<wbr>Data<wbr>Path<wbr>Segments</a>
|
|
9681
10089
|
</li>
|
|
10090
|
+
<li class=" tsd-kind-function">
|
|
10091
|
+
<a href="globals.html#transformpathtoi18nprefix" class="tsd-kind-icon">transform<wbr>Path<wbr>ToI18n<wbr>Prefix</a>
|
|
10092
|
+
</li>
|
|
9682
10093
|
<li class=" tsd-kind-function">
|
|
9683
10094
|
<a href="globals.html#traverse" class="tsd-kind-icon">traverse</a>
|
|
9684
10095
|
</li>
|
|
@@ -9712,6 +10123,9 @@
|
|
|
9712
10123
|
<li class=" tsd-kind-function">
|
|
9713
10124
|
<a href="globals.html#updateerrors" class="tsd-kind-icon">update<wbr>Errors</a>
|
|
9714
10125
|
</li>
|
|
10126
|
+
<li class=" tsd-kind-function">
|
|
10127
|
+
<a href="globals.html#updatei18n" class="tsd-kind-icon">update<wbr>I18n</a>
|
|
10128
|
+
</li>
|
|
9715
10129
|
<li class=" tsd-kind-function">
|
|
9716
10130
|
<a href="globals.html#validate" class="tsd-kind-icon">validate</a>
|
|
9717
10131
|
</li>
|
|
@@ -9745,6 +10159,9 @@
|
|
|
9745
10159
|
<li class=" tsd-kind-object-literal">
|
|
9746
10160
|
<a href="globals.html#controldefaultprops" class="tsd-kind-icon">control<wbr>Default<wbr>Props</a>
|
|
9747
10161
|
</li>
|
|
10162
|
+
<li class=" tsd-kind-object-literal">
|
|
10163
|
+
<a href="globals.html#defaultjsonformsi18nstate" class="tsd-kind-icon">default<wbr>Json<wbr>Forms<wbr>I18n<wbr>State</a>
|
|
10164
|
+
</li>
|
|
9748
10165
|
<li class=" tsd-kind-object-literal">
|
|
9749
10166
|
<a href="globals.html#initstate" class="tsd-kind-icon">init<wbr>State</a>
|
|
9750
10167
|
</li>
|