-
Notifications
You must be signed in to change notification settings - Fork 422
Expand file tree
/
Copy pathindex.ts
More file actions
152 lines (146 loc) · 5.69 KB
/
index.ts
File metadata and controls
152 lines (146 loc) · 5.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
The MIT License
Copyright (c) 2017-2021 EclipseSource Munich
https://github.com/eclipsesource/jsonforms
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
import * as allOf from './examples/allOf';
import * as anyOf from './examples/anyOf';
import * as oneOf from './examples/oneOf';
import * as oneOfArray from './examples/oneOfArray';
import * as anyOfOneOfAllOfResolve from './examples/anyOf-oneOf-allOf-resolve';
import * as array from './examples/arrays';
import * as arrayI18n from './examples/arraysI18n';
import * as nestedArray from './examples/nestedArrays';
import * as nestedCategorization from './examples/nestedCategorization';
import * as arrayWithDetail from './examples/arrays-with-detail';
import * as arrayWithDetailAndRule from './examples/arrays-with-detail-and-rule';
import * as arrayWithCustomChildLabel from './examples/arrays-with-custom-element-label';
import * as arrayWithSorting from './examples/arrays-with-sorting';
import * as arrayWithTranslatedCustomChildLabel from './examples/arrays-with-translated-custom-element-label';
import * as arrayWithDefaults from './examples/arrays-with-defaults';
import * as stringArray from './examples/stringArray';
import * as categorization from './examples/categorization';
import * as stepper from './examples/categorization-stepper';
import * as steppershownav from './examples/categorization-stepper-nav-buttons';
import * as controlOptions from './examples/control-options';
import * as dates from './examples/dates';
import * as generateDynamic from './examples/generate-dynamic';
import * as generateSchema from './examples/generate';
import * as generateUISchema from './examples/generateUI';
import * as layout from './examples/layout';
import * as person from './examples/person';
import * as issue_1884 from './examples/1884';
import * as rule from './examples/rule';
import * as ruleInheritance from './examples/ruleInheritance';
import * as config from './examples/config';
import * as text from './examples/text';
import * as numbers from './examples/numbers';
import * as scope from './examples/scope';
import * as listWithDetail from './examples/list-with-detail';
import * as listWithDetailRegistered from './examples/list-with-detail-registered';
import * as object from './examples/object';
import * as i18n from './examples/i18n';
import * as issue_1948 from './examples/1948';
import * as oneOfRecursive from './examples/oneOf-recursive';
import * as huge from './examples/huge';
import * as defaultExample from './examples/default';
import * as onChange from './examples/onChange';
import * as enumExample from './examples/enum';
import * as radioGroupExample from './examples/radioGroup';
import * as multiEnum from './examples/enum-multi';
import * as enumInArray from './examples/enumInArray';
import * as readonly from './examples/readonly';
import * as listWithDetailPrimitives from './examples/list-with-detail-primitives';
import * as conditionalSchemaComposition from './examples/conditional-schema-compositions';
import * as additionalErrors from './examples/additional-errors';
import * as employeeRegistration from './examples/employee-registration';
import * as multiEnumWithLabelAndDesc from './examples/enum-multi-with-label-and-desc';
import * as additionalProperties from './examples/additional-properties';
import * as login from './examples/login';
import * as mixed from './examples/mixed';
import * as mixedObject from './examples/mixed-object';
import * as string from './examples/string';
import * as prependAppendSlots from './examples/prepend-append-slots';
export * from './register';
export * from './example';
import * as ifThenElse from './examples/if_then_else';
import * as jsonschema from './examples/jsonschema';
import * as jsoneditor from './examples/json-editor';
export {
issue_1948,
defaultExample,
allOf,
anyOf,
oneOf,
oneOfArray,
anyOfOneOfAllOfResolve,
stringArray,
array,
arrayI18n,
nestedArray,
nestedCategorization,
arrayWithDetail,
arrayWithDetailAndRule,
arrayWithCustomChildLabel,
arrayWithSorting,
arrayWithTranslatedCustomChildLabel,
categorization,
stepper,
steppershownav,
controlOptions,
generateSchema,
generateUISchema,
layout,
person,
rule,
ruleInheritance,
dates,
generateDynamic,
config,
text,
numbers,
scope,
listWithDetail,
listWithDetailRegistered,
object,
i18n,
oneOfRecursive,
huge,
ifThenElse,
jsoneditor,
jsonschema,
onChange,
enumExample,
radioGroupExample,
multiEnum,
employeeRegistration,
multiEnumWithLabelAndDesc,
enumInArray,
readonly,
listWithDetailPrimitives,
conditionalSchemaComposition,
additionalErrors,
additionalProperties,
login,
mixed,
mixedObject,
issue_1884,
arrayWithDefaults,
string,
prependAppendSlots,
};