@dev-crew-berlin/enter-js-utils 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/README.md +63 -2
  2. package/dist/lib/class-names.d.ts +1 -0
  3. package/dist/lib/class-names.js +13 -0
  4. package/dist/lib/class-names.js.map +1 -0
  5. package/dist/lib/index.d.ts +1 -0
  6. package/dist/lib/index.js +1 -0
  7. package/dist/lib/index.js.map +1 -1
  8. package/dist/lib/theme.js +1 -1
  9. package/dist/models/field-group.d.ts +161 -481
  10. package/dist/models/field-group.js +1 -1
  11. package/dist/models/field-group.js.map +1 -1
  12. package/dist/models/field.d.ts +116 -348
  13. package/dist/models/field.js +5 -5
  14. package/dist/models/field.js.map +1 -1
  15. package/dist/ui/button.d.ts +7 -0
  16. package/dist/ui/button.js +32 -0
  17. package/dist/ui/button.js.map +1 -0
  18. package/dist/ui/button.stories.d.ts +18 -0
  19. package/dist/ui/button.stories.js +38 -0
  20. package/dist/ui/button.stories.js.map +1 -0
  21. package/dist/ui/checkin-count-indicator.d.ts +0 -1
  22. package/dist/ui/checkin-count-indicator.stories.js +1 -1
  23. package/dist/ui/checkin-count-indicator.stories.js.map +1 -1
  24. package/dist/ui/companion-info.d.ts +15 -0
  25. package/dist/ui/companion-info.js +17 -0
  26. package/dist/ui/companion-info.js.map +1 -0
  27. package/dist/ui/companion-info.stories.d.ts +44 -0
  28. package/dist/ui/companion-info.stories.js +61 -0
  29. package/dist/ui/companion-info.stories.js.map +1 -0
  30. package/dist/ui/guest-card.d.ts +16 -0
  31. package/dist/ui/guest-card.js +36 -0
  32. package/dist/ui/guest-card.js.map +1 -0
  33. package/dist/ui/guest-card.stories.d.ts +92 -0
  34. package/dist/ui/guest-card.stories.js +125 -0
  35. package/dist/ui/guest-card.stories.js.map +1 -0
  36. package/dist/ui/tag.d.ts +7 -0
  37. package/dist/ui/tag.js +10 -0
  38. package/dist/ui/tag.js.map +1 -0
  39. package/package.json +1 -1
@@ -2,7 +2,7 @@ import { ValidatorReturnType } from 'fefe';
2
2
  import { APIResult } from '../lib';
3
3
  import { Dictionary } from './_helpers';
4
4
  declare type FieldTitle = string | Dictionary<string>;
5
- export declare type FieldLabels = Record<string, FieldTitle | undefined>;
5
+ export declare type FieldLabels = Record<string, FieldTitle | null>;
6
6
  export declare class FieldGroups {
7
7
  groups: FieldGroup[];
8
8
  constructor(rawFieldGroupList: RawFieldGroupList);
@@ -19,83 +19,43 @@ export declare const fieldGroup: import("fefe").Validator<import("fefe").ObjectR
19
19
  };
20
20
  questions: import("fefe").Validator<(import("fefe").ObjectResult<{
21
21
  name: import("fefe").Validator<string, import("fefe").LeafError>;
22
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
23
- optional: true;
24
- };
25
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
26
- optional: true;
27
- };
22
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
23
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
28
24
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
29
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
30
- optional: true;
31
- };
32
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
33
- optional: true;
34
- };
25
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
26
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
35
27
  type: import("fefe").Validator<"static", import("fefe").LeafError>;
36
28
  }> | import("fefe").ObjectResult<{
37
29
  name: import("fefe").Validator<string, import("fefe").LeafError>;
38
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
39
- optional: true;
40
- };
41
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
42
- optional: true;
43
- };
30
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
31
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
44
32
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
45
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
46
- optional: true;
47
- };
48
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
49
- optional: true;
50
- };
33
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
34
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
51
35
  type: import("fefe").Validator<"text", import("fefe").LeafError>;
52
36
  }> | import("fefe").ObjectResult<{
53
37
  name: import("fefe").Validator<string, import("fefe").LeafError>;
54
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
55
- optional: true;
56
- };
57
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
58
- optional: true;
59
- };
38
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
39
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
60
40
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
61
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
62
- optional: true;
63
- };
64
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
65
- optional: true;
66
- };
41
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
42
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
67
43
  type: import("fefe").Validator<"longtext", import("fefe").LeafError>;
68
44
  }> | import("fefe").ObjectResult<{
69
45
  name: import("fefe").Validator<string, import("fefe").LeafError>;
70
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
71
- optional: true;
72
- };
73
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
74
- optional: true;
75
- };
46
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
47
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
76
48
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
77
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
78
- optional: true;
79
- };
80
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
81
- optional: true;
82
- };
49
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
50
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
83
51
  type: import("fefe").Validator<"email", import("fefe").LeafError>;
84
52
  }> | import("fefe").ObjectResult<{
85
53
  name: import("fefe").Validator<string, import("fefe").LeafError>;
86
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
87
- optional: true;
88
- };
89
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
90
- optional: true;
91
- };
54
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
55
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
92
56
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
93
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
94
- optional: true;
95
- };
96
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
97
- optional: true;
98
- };
57
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
58
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
99
59
  type: import("fefe").Validator<"number", import("fefe").LeafError>;
100
60
  }> | import("fefe").ObjectResult<{
101
61
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -105,36 +65,20 @@ export declare const fieldGroup: import("fefe").Validator<import("fefe").ObjectR
105
65
  };
106
66
  }>[], import("fefe").FefeError>;
107
67
  name: import("fefe").Validator<string, import("fefe").LeafError>;
108
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
109
- optional: true;
110
- };
111
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
112
- optional: true;
113
- };
68
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
69
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
114
70
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
115
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
116
- optional: true;
117
- };
118
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
119
- optional: true;
120
- };
71
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
72
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
121
73
  type: import("fefe").Validator<"check", import("fefe").LeafError>;
122
74
  }> | import("fefe").ObjectResult<{
123
75
  value: import("fefe").Validator<number, import("fefe").FefeError>;
124
76
  name: import("fefe").Validator<string, import("fefe").LeafError>;
125
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
126
- optional: true;
127
- };
128
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
129
- optional: true;
130
- };
77
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
78
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
131
79
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
132
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
133
- optional: true;
134
- };
135
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
136
- optional: true;
137
- };
80
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
81
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
138
82
  type: import("fefe").Validator<"checkbox", import("fefe").LeafError>;
139
83
  }> | import("fefe").ObjectResult<{
140
84
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -144,38 +88,22 @@ export declare const fieldGroup: import("fefe").Validator<import("fefe").ObjectR
144
88
  };
145
89
  }>[], import("fefe").FefeError>;
146
90
  name: import("fefe").Validator<string, import("fefe").LeafError>;
147
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
148
- optional: true;
149
- };
150
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
151
- optional: true;
152
- };
91
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
92
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
153
93
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
154
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
155
- optional: true;
156
- };
157
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
158
- optional: true;
159
- };
94
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
95
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
160
96
  type: import("fefe").Validator<"radio", import("fefe").LeafError>;
161
97
  }> | import("fefe").ObjectResult<{
162
98
  itemval: import("fefe").Validator<string, import("fefe").FefeError> & {
163
99
  optional: true;
164
100
  };
165
101
  name: import("fefe").Validator<string, import("fefe").LeafError>;
166
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
167
- optional: true;
168
- };
169
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
170
- optional: true;
171
- };
102
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
103
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
172
104
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
173
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
174
- optional: true;
175
- };
176
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
177
- optional: true;
178
- };
105
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
106
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
179
107
  type: import("fefe").Validator<"radiobutton", import("fefe").LeafError>;
180
108
  }> | import("fefe").ObjectResult<{
181
109
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -185,19 +113,11 @@ export declare const fieldGroup: import("fefe").Validator<import("fefe").ObjectR
185
113
  };
186
114
  }>[], import("fefe").FefeError>;
187
115
  name: import("fefe").Validator<string, import("fefe").LeafError>;
188
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
189
- optional: true;
190
- };
191
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
192
- optional: true;
193
- };
116
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
117
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
194
118
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
195
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
196
- optional: true;
197
- };
198
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
199
- optional: true;
200
- };
119
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
120
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
201
121
  type: import("fefe").Validator<"dropdown", import("fefe").LeafError>;
202
122
  }>)[], import("fefe").FefeError>;
203
123
  info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
@@ -216,83 +136,43 @@ declare const rawFieldGroupList: import("fefe").Validator<import("fefe").ObjectR
216
136
  };
217
137
  questions: import("fefe").Validator<(import("fefe").ObjectResult<{
218
138
  name: import("fefe").Validator<string, import("fefe").LeafError>;
219
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
220
- optional: true;
221
- };
222
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
223
- optional: true;
224
- };
139
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
140
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
225
141
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
226
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
227
- optional: true;
228
- };
229
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
230
- optional: true;
231
- };
142
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
143
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
232
144
  type: import("fefe").Validator<"static", import("fefe").LeafError>;
233
145
  }> | import("fefe").ObjectResult<{
234
146
  name: import("fefe").Validator<string, import("fefe").LeafError>;
235
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
236
- optional: true;
237
- };
238
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
239
- optional: true;
240
- };
147
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
148
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
241
149
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
242
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
243
- optional: true;
244
- };
245
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
246
- optional: true;
247
- };
150
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
151
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
248
152
  type: import("fefe").Validator<"text", import("fefe").LeafError>;
249
153
  }> | import("fefe").ObjectResult<{
250
154
  name: import("fefe").Validator<string, import("fefe").LeafError>;
251
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
252
- optional: true;
253
- };
254
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
255
- optional: true;
256
- };
155
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
156
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
257
157
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
258
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
259
- optional: true;
260
- };
261
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
262
- optional: true;
263
- };
158
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
159
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
264
160
  type: import("fefe").Validator<"longtext", import("fefe").LeafError>;
265
161
  }> | import("fefe").ObjectResult<{
266
162
  name: import("fefe").Validator<string, import("fefe").LeafError>;
267
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
268
- optional: true;
269
- };
270
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
271
- optional: true;
272
- };
163
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
164
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
273
165
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
274
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
275
- optional: true;
276
- };
277
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
278
- optional: true;
279
- };
166
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
167
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
280
168
  type: import("fefe").Validator<"email", import("fefe").LeafError>;
281
169
  }> | import("fefe").ObjectResult<{
282
170
  name: import("fefe").Validator<string, import("fefe").LeafError>;
283
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
284
- optional: true;
285
- };
286
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
287
- optional: true;
288
- };
171
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
172
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
289
173
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
290
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
291
- optional: true;
292
- };
293
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
294
- optional: true;
295
- };
174
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
175
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
296
176
  type: import("fefe").Validator<"number", import("fefe").LeafError>;
297
177
  }> | import("fefe").ObjectResult<{
298
178
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -302,36 +182,20 @@ declare const rawFieldGroupList: import("fefe").Validator<import("fefe").ObjectR
302
182
  };
303
183
  }>[], import("fefe").FefeError>;
304
184
  name: import("fefe").Validator<string, import("fefe").LeafError>;
305
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
306
- optional: true;
307
- };
308
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
309
- optional: true;
310
- };
185
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
186
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
311
187
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
312
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
313
- optional: true;
314
- };
315
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
316
- optional: true;
317
- };
188
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
189
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
318
190
  type: import("fefe").Validator<"check", import("fefe").LeafError>;
319
191
  }> | import("fefe").ObjectResult<{
320
192
  value: import("fefe").Validator<number, import("fefe").FefeError>;
321
193
  name: import("fefe").Validator<string, import("fefe").LeafError>;
322
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
323
- optional: true;
324
- };
325
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
326
- optional: true;
327
- };
194
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
195
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
328
196
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
329
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
330
- optional: true;
331
- };
332
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
333
- optional: true;
334
- };
197
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
198
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
335
199
  type: import("fefe").Validator<"checkbox", import("fefe").LeafError>;
336
200
  }> | import("fefe").ObjectResult<{
337
201
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -341,38 +205,22 @@ declare const rawFieldGroupList: import("fefe").Validator<import("fefe").ObjectR
341
205
  };
342
206
  }>[], import("fefe").FefeError>;
343
207
  name: import("fefe").Validator<string, import("fefe").LeafError>;
344
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
345
- optional: true;
346
- };
347
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
348
- optional: true;
349
- };
208
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
209
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
350
210
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
351
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
352
- optional: true;
353
- };
354
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
355
- optional: true;
356
- };
211
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
212
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
357
213
  type: import("fefe").Validator<"radio", import("fefe").LeafError>;
358
214
  }> | import("fefe").ObjectResult<{
359
215
  itemval: import("fefe").Validator<string, import("fefe").FefeError> & {
360
216
  optional: true;
361
217
  };
362
218
  name: import("fefe").Validator<string, import("fefe").LeafError>;
363
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
364
- optional: true;
365
- };
366
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
367
- optional: true;
368
- };
219
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
220
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
369
221
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
370
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
371
- optional: true;
372
- };
373
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
374
- optional: true;
375
- };
222
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
223
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
376
224
  type: import("fefe").Validator<"radiobutton", import("fefe").LeafError>;
377
225
  }> | import("fefe").ObjectResult<{
378
226
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -382,19 +230,11 @@ declare const rawFieldGroupList: import("fefe").Validator<import("fefe").ObjectR
382
230
  };
383
231
  }>[], import("fefe").FefeError>;
384
232
  name: import("fefe").Validator<string, import("fefe").LeafError>;
385
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
386
- optional: true;
387
- };
388
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
389
- optional: true;
390
- };
233
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
234
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
391
235
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
392
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
393
- optional: true;
394
- };
395
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
396
- optional: true;
397
- };
236
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
237
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
398
238
  type: import("fefe").Validator<"dropdown", import("fefe").LeafError>;
399
239
  }>)[], import("fefe").FefeError>;
400
240
  info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
@@ -413,83 +253,43 @@ export declare const parseFieldGroup: import("../lib").APIValidator<import("fefe
413
253
  };
414
254
  questions: import("fefe").Validator<(import("fefe").ObjectResult<{
415
255
  name: import("fefe").Validator<string, import("fefe").LeafError>;
416
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
417
- optional: true;
418
- };
419
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
420
- optional: true;
421
- };
256
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
257
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
422
258
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
423
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
424
- optional: true;
425
- };
426
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
427
- optional: true;
428
- };
259
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
260
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
429
261
  type: import("fefe").Validator<"static", import("fefe").LeafError>;
430
262
  }> | import("fefe").ObjectResult<{
431
263
  name: import("fefe").Validator<string, import("fefe").LeafError>;
432
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
433
- optional: true;
434
- };
435
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
436
- optional: true;
437
- };
264
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
265
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
438
266
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
439
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
440
- optional: true;
441
- };
442
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
443
- optional: true;
444
- };
267
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
268
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
445
269
  type: import("fefe").Validator<"text", import("fefe").LeafError>;
446
270
  }> | import("fefe").ObjectResult<{
447
271
  name: import("fefe").Validator<string, import("fefe").LeafError>;
448
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
449
- optional: true;
450
- };
451
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
452
- optional: true;
453
- };
272
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
273
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
454
274
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
455
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
456
- optional: true;
457
- };
458
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
459
- optional: true;
460
- };
275
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
276
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
461
277
  type: import("fefe").Validator<"longtext", import("fefe").LeafError>;
462
278
  }> | import("fefe").ObjectResult<{
463
279
  name: import("fefe").Validator<string, import("fefe").LeafError>;
464
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
465
- optional: true;
466
- };
467
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
468
- optional: true;
469
- };
280
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
281
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
470
282
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
471
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
472
- optional: true;
473
- };
474
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
475
- optional: true;
476
- };
283
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
284
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
477
285
  type: import("fefe").Validator<"email", import("fefe").LeafError>;
478
286
  }> | import("fefe").ObjectResult<{
479
287
  name: import("fefe").Validator<string, import("fefe").LeafError>;
480
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
481
- optional: true;
482
- };
483
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
484
- optional: true;
485
- };
288
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
289
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
486
290
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
487
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
488
- optional: true;
489
- };
490
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
491
- optional: true;
492
- };
291
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
292
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
493
293
  type: import("fefe").Validator<"number", import("fefe").LeafError>;
494
294
  }> | import("fefe").ObjectResult<{
495
295
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -499,36 +299,20 @@ export declare const parseFieldGroup: import("../lib").APIValidator<import("fefe
499
299
  };
500
300
  }>[], import("fefe").FefeError>;
501
301
  name: import("fefe").Validator<string, import("fefe").LeafError>;
502
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
503
- optional: true;
504
- };
505
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
506
- optional: true;
507
- };
302
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
303
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
508
304
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
509
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
510
- optional: true;
511
- };
512
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
513
- optional: true;
514
- };
305
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
306
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
515
307
  type: import("fefe").Validator<"check", import("fefe").LeafError>;
516
308
  }> | import("fefe").ObjectResult<{
517
309
  value: import("fefe").Validator<number, import("fefe").FefeError>;
518
310
  name: import("fefe").Validator<string, import("fefe").LeafError>;
519
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
520
- optional: true;
521
- };
522
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
523
- optional: true;
524
- };
311
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
312
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
525
313
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
526
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
527
- optional: true;
528
- };
529
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
530
- optional: true;
531
- };
314
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
315
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
532
316
  type: import("fefe").Validator<"checkbox", import("fefe").LeafError>;
533
317
  }> | import("fefe").ObjectResult<{
534
318
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -538,38 +322,22 @@ export declare const parseFieldGroup: import("../lib").APIValidator<import("fefe
538
322
  };
539
323
  }>[], import("fefe").FefeError>;
540
324
  name: import("fefe").Validator<string, import("fefe").LeafError>;
541
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
542
- optional: true;
543
- };
544
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
545
- optional: true;
546
- };
325
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
326
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
547
327
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
548
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
549
- optional: true;
550
- };
551
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
552
- optional: true;
553
- };
328
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
329
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
554
330
  type: import("fefe").Validator<"radio", import("fefe").LeafError>;
555
331
  }> | import("fefe").ObjectResult<{
556
332
  itemval: import("fefe").Validator<string, import("fefe").FefeError> & {
557
333
  optional: true;
558
334
  };
559
335
  name: import("fefe").Validator<string, import("fefe").LeafError>;
560
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
561
- optional: true;
562
- };
563
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
564
- optional: true;
565
- };
336
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
337
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
566
338
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
567
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
568
- optional: true;
569
- };
570
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
571
- optional: true;
572
- };
339
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
340
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
573
341
  type: import("fefe").Validator<"radiobutton", import("fefe").LeafError>;
574
342
  }> | import("fefe").ObjectResult<{
575
343
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -579,19 +347,11 @@ export declare const parseFieldGroup: import("../lib").APIValidator<import("fefe
579
347
  };
580
348
  }>[], import("fefe").FefeError>;
581
349
  name: import("fefe").Validator<string, import("fefe").LeafError>;
582
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
583
- optional: true;
584
- };
585
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
586
- optional: true;
587
- };
350
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
351
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
588
352
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
589
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
590
- optional: true;
591
- };
592
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
593
- optional: true;
594
- };
353
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
354
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
595
355
  type: import("fefe").Validator<"dropdown", import("fefe").LeafError>;
596
356
  }>)[], import("fefe").FefeError>;
597
357
  info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
@@ -610,83 +370,43 @@ export declare const parseRawFieldGroupList: import("../lib").APIValidator<impor
610
370
  };
611
371
  questions: import("fefe").Validator<(import("fefe").ObjectResult<{
612
372
  name: import("fefe").Validator<string, import("fefe").LeafError>;
613
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
614
- optional: true;
615
- };
616
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
617
- optional: true;
618
- };
373
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
374
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
619
375
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
620
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
621
- optional: true;
622
- };
623
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
624
- optional: true;
625
- };
376
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
377
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
626
378
  type: import("fefe").Validator<"static", import("fefe").LeafError>;
627
379
  }> | import("fefe").ObjectResult<{
628
380
  name: import("fefe").Validator<string, import("fefe").LeafError>;
629
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
630
- optional: true;
631
- };
632
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
633
- optional: true;
634
- };
381
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
382
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
635
383
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
636
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
637
- optional: true;
638
- };
639
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
640
- optional: true;
641
- };
384
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
385
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
642
386
  type: import("fefe").Validator<"text", import("fefe").LeafError>;
643
387
  }> | import("fefe").ObjectResult<{
644
388
  name: import("fefe").Validator<string, import("fefe").LeafError>;
645
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
646
- optional: true;
647
- };
648
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
649
- optional: true;
650
- };
389
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
390
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
651
391
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
652
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
653
- optional: true;
654
- };
655
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
656
- optional: true;
657
- };
392
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
393
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
658
394
  type: import("fefe").Validator<"longtext", import("fefe").LeafError>;
659
395
  }> | import("fefe").ObjectResult<{
660
396
  name: import("fefe").Validator<string, import("fefe").LeafError>;
661
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
662
- optional: true;
663
- };
664
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
665
- optional: true;
666
- };
397
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
398
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
667
399
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
668
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
669
- optional: true;
670
- };
671
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
672
- optional: true;
673
- };
400
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
401
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
674
402
  type: import("fefe").Validator<"email", import("fefe").LeafError>;
675
403
  }> | import("fefe").ObjectResult<{
676
404
  name: import("fefe").Validator<string, import("fefe").LeafError>;
677
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
678
- optional: true;
679
- };
680
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
681
- optional: true;
682
- };
405
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
406
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
683
407
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
684
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
685
- optional: true;
686
- };
687
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
688
- optional: true;
689
- };
408
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
409
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
690
410
  type: import("fefe").Validator<"number", import("fefe").LeafError>;
691
411
  }> | import("fefe").ObjectResult<{
692
412
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -696,36 +416,20 @@ export declare const parseRawFieldGroupList: import("../lib").APIValidator<impor
696
416
  };
697
417
  }>[], import("fefe").FefeError>;
698
418
  name: import("fefe").Validator<string, import("fefe").LeafError>;
699
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
700
- optional: true;
701
- };
702
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
703
- optional: true;
704
- };
419
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
420
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
705
421
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
706
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
707
- optional: true;
708
- };
709
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
710
- optional: true;
711
- };
422
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
423
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
712
424
  type: import("fefe").Validator<"check", import("fefe").LeafError>;
713
425
  }> | import("fefe").ObjectResult<{
714
426
  value: import("fefe").Validator<number, import("fefe").FefeError>;
715
427
  name: import("fefe").Validator<string, import("fefe").LeafError>;
716
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
717
- optional: true;
718
- };
719
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
720
- optional: true;
721
- };
428
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
429
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
722
430
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
723
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
724
- optional: true;
725
- };
726
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
727
- optional: true;
728
- };
431
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
432
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
729
433
  type: import("fefe").Validator<"checkbox", import("fefe").LeafError>;
730
434
  }> | import("fefe").ObjectResult<{
731
435
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -735,38 +439,22 @@ export declare const parseRawFieldGroupList: import("../lib").APIValidator<impor
735
439
  };
736
440
  }>[], import("fefe").FefeError>;
737
441
  name: import("fefe").Validator<string, import("fefe").LeafError>;
738
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
739
- optional: true;
740
- };
741
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
742
- optional: true;
743
- };
442
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
443
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
744
444
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
745
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
746
- optional: true;
747
- };
748
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
749
- optional: true;
750
- };
445
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
446
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
751
447
  type: import("fefe").Validator<"radio", import("fefe").LeafError>;
752
448
  }> | import("fefe").ObjectResult<{
753
449
  itemval: import("fefe").Validator<string, import("fefe").FefeError> & {
754
450
  optional: true;
755
451
  };
756
452
  name: import("fefe").Validator<string, import("fefe").LeafError>;
757
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
758
- optional: true;
759
- };
760
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
761
- optional: true;
762
- };
453
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
454
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
763
455
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
764
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
765
- optional: true;
766
- };
767
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
768
- optional: true;
769
- };
456
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
457
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
770
458
  type: import("fefe").Validator<"radiobutton", import("fefe").LeafError>;
771
459
  }> | import("fefe").ObjectResult<{
772
460
  items: import("fefe").Validator<import("fefe").ObjectResult<{
@@ -776,19 +464,11 @@ export declare const parseRawFieldGroupList: import("../lib").APIValidator<impor
776
464
  };
777
465
  }>[], import("fefe").FefeError>;
778
466
  name: import("fefe").Validator<string, import("fefe").LeafError>;
779
- title: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
780
- optional: true;
781
- };
782
- info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {
783
- optional: true;
784
- };
467
+ title: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
468
+ info: import("fefe").Validator<string | Dictionary<string> | null, import("fefe").FefeError>;
785
469
  required: import("fefe").Validator<boolean, import("fefe").FefeError>;
786
- if: import("fefe").Validator<string, import("fefe").FefeError> & {
787
- optional: true;
788
- };
789
- class: import("fefe").Validator<string, import("fefe").FefeError> & {
790
- optional: true;
791
- };
470
+ if: import("fefe").Validator<string | null, import("fefe").FefeError>;
471
+ class: import("fefe").Validator<string | null, import("fefe").FefeError>;
792
472
  type: import("fefe").Validator<"dropdown", import("fefe").LeafError>;
793
473
  }>)[], import("fefe").FefeError>;
794
474
  info: import("fefe").Validator<string | Dictionary<string>, import("fefe").FefeError> & {