udp-schema 2.11.0 → 2.13.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.
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/onboarding-config.d.ts.map +1 -1
- package/dist/onboarding-config.js +45 -10
- package/dist/onboarding-config.js.map +1 -1
- package/dist/onboarding-form.d.ts +44 -8
- package/dist/onboarding-form.d.ts.map +1 -1
- package/dist/profile-fields/04-leadership.d.ts +98 -11
- package/dist/profile-fields/04-leadership.d.ts.map +1 -1
- package/dist/profile-fields/04-leadership.js +46 -5
- package/dist/profile-fields/04-leadership.js.map +1 -1
- package/dist/profile-fields/06-education.d.ts +292 -0
- package/dist/profile-fields/06-education.d.ts.map +1 -1
- package/dist/profile-fields/06-education.js +125 -0
- package/dist/profile-fields/06-education.js.map +1 -1
- package/dist/profile-fields/08-neurodiversity.d.ts +373 -30
- package/dist/profile-fields/08-neurodiversity.d.ts.map +1 -1
- package/dist/profile-fields/08-neurodiversity.js +278 -66
- package/dist/profile-fields/08-neurodiversity.js.map +1 -1
- package/dist/profile-fields/index.d.ts +2 -2
- package/dist/profile-fields/index.d.ts.map +1 -1
- package/dist/profile-fields/index.js +2 -2
- package/dist/profile-fields/index.js.map +1 -1
- package/dist/progress-fields.d.ts.map +1 -1
- package/dist/progress-fields.js +7 -2
- package/dist/progress-fields.js.map +1 -1
- package/dist/step-06.schema.d.ts +2 -1
- package/dist/step-06.schema.d.ts.map +1 -1
- package/dist/step-06.schema.js +13 -3
- package/dist/step-06.schema.js.map +1 -1
- package/dist/step-08.schema.d.ts +50 -10
- package/dist/step-08.schema.d.ts.map +1 -1
- package/dist/step-08.schema.js +65 -15
- package/dist/step-08.schema.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,27 +1,72 @@
|
|
|
1
1
|
import type { FieldGroup } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Step 8 — Neurodiversity (rebuilt 2026-04)
|
|
4
|
+
*
|
|
5
|
+
* Exhaustive coverage of the neurodiversity profile across 11 sub-steps:
|
|
6
|
+
* 1. Identity (including diagnosis status)
|
|
7
|
+
* 2. Specific ND conditions
|
|
8
|
+
* 3. Age of realization / diagnosis
|
|
9
|
+
* 4. Sensory profile (hyper/hypo per sense + seeking + overwhelm)
|
|
10
|
+
* 5. Cognitive strengths (ND-associated gifts)
|
|
11
|
+
* 6. Executive function challenges
|
|
12
|
+
* 7. Learning style
|
|
13
|
+
* 8. Communication preference
|
|
14
|
+
* 9. Support & accommodations that help
|
|
15
|
+
* 10. Masking & burnout
|
|
16
|
+
* 11. Impact on daily life
|
|
17
|
+
*
|
|
18
|
+
* Conditional sub-steps (2, 3, 4, 5, 6, 9, 10, 11) are shown unless the
|
|
19
|
+
* respondent selects `no_neurotypical` or `prefer_not_to_say` for identity.
|
|
20
|
+
* Steps 7 and 8 (learningStyle, communicationPreference) are shown for
|
|
21
|
+
* everyone since they're useful profile data regardless of ND identity.
|
|
22
|
+
*/
|
|
23
|
+
export declare const neurodiverseIdentityOptions: readonly [{
|
|
24
|
+
readonly value: "yes_diagnosed";
|
|
25
|
+
readonly label: "Yes — formally diagnosed";
|
|
26
|
+
readonly description: "Clinically diagnosed by a qualified professional";
|
|
27
|
+
}, {
|
|
28
|
+
readonly value: "yes_self_identified";
|
|
29
|
+
readonly label: "Yes — self-identified";
|
|
30
|
+
readonly description: "Identify as neurodivergent without formal diagnosis";
|
|
31
|
+
}, {
|
|
32
|
+
readonly value: "exploring";
|
|
33
|
+
readonly label: "Exploring / suspect";
|
|
34
|
+
readonly description: "Not sure yet — exploring whether I'm neurodivergent";
|
|
35
|
+
}, {
|
|
36
|
+
readonly value: "no_neurotypical";
|
|
37
|
+
readonly label: "No — neurotypical";
|
|
38
|
+
readonly description: "Don't identify as neurodivergent";
|
|
39
|
+
}, {
|
|
40
|
+
readonly value: "prefer_not_to_say";
|
|
41
|
+
readonly label: "Prefer not to say";
|
|
42
|
+
}];
|
|
2
43
|
export declare const neurodiversityConditionOptions: readonly [{
|
|
3
44
|
readonly value: "adhd";
|
|
4
|
-
readonly label: "ADHD";
|
|
45
|
+
readonly label: "ADHD / ADD";
|
|
5
46
|
readonly description: "Attention Deficit Hyperactivity Disorder";
|
|
6
47
|
}, {
|
|
7
48
|
readonly value: "autism_spectrum";
|
|
8
|
-
readonly label: "Autism Spectrum";
|
|
9
|
-
readonly description: "Autism Spectrum
|
|
49
|
+
readonly label: "Autism Spectrum (ASC / ASD)";
|
|
50
|
+
readonly description: "Autism Spectrum Condition";
|
|
10
51
|
}, {
|
|
11
52
|
readonly value: "dyslexia";
|
|
12
53
|
readonly label: "Dyslexia";
|
|
13
|
-
readonly description: "
|
|
54
|
+
readonly description: "Reading and language-processing differences";
|
|
14
55
|
}, {
|
|
15
56
|
readonly value: "dyspraxia";
|
|
16
|
-
readonly label: "Dyspraxia";
|
|
17
|
-
readonly description: "
|
|
57
|
+
readonly label: "Dyspraxia / DCD";
|
|
58
|
+
readonly description: "Developmental Coordination Disorder — motor coordination";
|
|
18
59
|
}, {
|
|
19
60
|
readonly value: "dyscalculia";
|
|
20
61
|
readonly label: "Dyscalculia";
|
|
21
62
|
readonly description: "Difficulty with numbers and math";
|
|
63
|
+
}, {
|
|
64
|
+
readonly value: "dysgraphia";
|
|
65
|
+
readonly label: "Dysgraphia";
|
|
66
|
+
readonly description: "Difficulty with writing / fine motor for writing";
|
|
22
67
|
}, {
|
|
23
68
|
readonly value: "tourettes";
|
|
24
|
-
readonly label: "Tourette's
|
|
69
|
+
readonly label: "Tourette's / Tic Disorder";
|
|
25
70
|
readonly description: "Involuntary tics and movements";
|
|
26
71
|
}, {
|
|
27
72
|
readonly value: "ocd";
|
|
@@ -35,10 +80,50 @@ export declare const neurodiversityConditionOptions: readonly [{
|
|
|
35
80
|
readonly value: "anxiety_disorder";
|
|
36
81
|
readonly label: "Anxiety Disorder";
|
|
37
82
|
readonly description: "Persistent excessive worry";
|
|
83
|
+
}, {
|
|
84
|
+
readonly value: "depression_mood";
|
|
85
|
+
readonly label: "Depression / Mood Disorder";
|
|
86
|
+
readonly description: "Clinical depression or mood disorders";
|
|
87
|
+
}, {
|
|
88
|
+
readonly value: "ptsd";
|
|
89
|
+
readonly label: "PTSD / C-PTSD";
|
|
90
|
+
readonly description: "Post-traumatic stress (including complex)";
|
|
38
91
|
}, {
|
|
39
92
|
readonly value: "sensory_processing";
|
|
40
93
|
readonly label: "Sensory Processing Disorder";
|
|
41
94
|
readonly description: "Difficulty processing sensory information";
|
|
95
|
+
}, {
|
|
96
|
+
readonly value: "auditory_processing";
|
|
97
|
+
readonly label: "Auditory Processing Disorder";
|
|
98
|
+
readonly description: "Difficulty processing sounds despite normal hearing";
|
|
99
|
+
}, {
|
|
100
|
+
readonly value: "visual_processing";
|
|
101
|
+
readonly label: "Visual Processing Disorder";
|
|
102
|
+
readonly description: "Difficulty processing visual information";
|
|
103
|
+
}, {
|
|
104
|
+
readonly value: "giftedness_2e";
|
|
105
|
+
readonly label: "Giftedness / Twice-Exceptional (2e)";
|
|
106
|
+
readonly description: "High cognitive ability, often with ND";
|
|
107
|
+
}, {
|
|
108
|
+
readonly value: "specific_language_impairment";
|
|
109
|
+
readonly label: "Specific Language Impairment";
|
|
110
|
+
readonly description: "Language development differences";
|
|
111
|
+
}, {
|
|
112
|
+
readonly value: "stuttering";
|
|
113
|
+
readonly label: "Stuttering / Speech Disorder";
|
|
114
|
+
}, {
|
|
115
|
+
readonly value: "schizophrenia";
|
|
116
|
+
readonly label: "Schizophrenia / Schizoaffective";
|
|
117
|
+
}, {
|
|
118
|
+
readonly value: "eating_disorder";
|
|
119
|
+
readonly label: "Eating Disorder";
|
|
120
|
+
readonly description: "Anorexia, bulimia, binge, ARFID, etc.";
|
|
121
|
+
}, {
|
|
122
|
+
readonly value: "bpd";
|
|
123
|
+
readonly label: "Borderline Personality (BPD)";
|
|
124
|
+
}, {
|
|
125
|
+
readonly value: "intellectual_disability";
|
|
126
|
+
readonly label: "Intellectual Disability";
|
|
42
127
|
}, {
|
|
43
128
|
readonly value: "other";
|
|
44
129
|
readonly label: "Other";
|
|
@@ -46,31 +131,219 @@ export declare const neurodiversityConditionOptions: readonly [{
|
|
|
46
131
|
readonly value: "prefer_not_to_say";
|
|
47
132
|
readonly label: "Prefer not to say";
|
|
48
133
|
}];
|
|
49
|
-
export declare const
|
|
50
|
-
readonly value: "
|
|
51
|
-
readonly label: "
|
|
134
|
+
export declare const ageOfRealizationOptions: readonly [{
|
|
135
|
+
readonly value: "childhood";
|
|
136
|
+
readonly label: "Childhood (before 13)";
|
|
137
|
+
}, {
|
|
138
|
+
readonly value: "teen";
|
|
139
|
+
readonly label: "Teen years (13–18)";
|
|
140
|
+
}, {
|
|
141
|
+
readonly value: "young_adult";
|
|
142
|
+
readonly label: "Young adult (19–30)";
|
|
143
|
+
}, {
|
|
144
|
+
readonly value: "adult";
|
|
145
|
+
readonly label: "Adult (31–50)";
|
|
146
|
+
}, {
|
|
147
|
+
readonly value: "later_life";
|
|
148
|
+
readonly label: "Later in life (50+)";
|
|
149
|
+
}, {
|
|
150
|
+
readonly value: "still_exploring";
|
|
151
|
+
readonly label: "Still exploring";
|
|
152
|
+
}, {
|
|
153
|
+
readonly value: "prefer_not_to_say";
|
|
154
|
+
readonly label: "Prefer not to say";
|
|
155
|
+
}];
|
|
156
|
+
export declare const sensoryProfileOptions: readonly [{
|
|
157
|
+
readonly value: "hyper_sound";
|
|
158
|
+
readonly label: "Hypersensitive to sound";
|
|
159
|
+
}, {
|
|
160
|
+
readonly value: "hypo_sound";
|
|
161
|
+
readonly label: "Hyposensitive to sound";
|
|
162
|
+
}, {
|
|
163
|
+
readonly value: "hyper_light";
|
|
164
|
+
readonly label: "Hypersensitive to light";
|
|
165
|
+
}, {
|
|
166
|
+
readonly value: "hypo_light";
|
|
167
|
+
readonly label: "Hyposensitive to light";
|
|
52
168
|
}, {
|
|
53
|
-
readonly value: "
|
|
54
|
-
readonly label: "
|
|
169
|
+
readonly value: "hyper_touch";
|
|
170
|
+
readonly label: "Hypersensitive to touch / textures";
|
|
55
171
|
}, {
|
|
56
|
-
readonly value: "
|
|
57
|
-
readonly label: "
|
|
172
|
+
readonly value: "hypo_touch";
|
|
173
|
+
readonly label: "Hyposensitive to touch";
|
|
58
174
|
}, {
|
|
59
|
-
readonly value: "
|
|
60
|
-
readonly label: "
|
|
175
|
+
readonly value: "hyper_smell";
|
|
176
|
+
readonly label: "Hypersensitive to smells";
|
|
61
177
|
}, {
|
|
62
|
-
readonly value: "
|
|
63
|
-
readonly label: "
|
|
178
|
+
readonly value: "hypo_smell";
|
|
179
|
+
readonly label: "Hyposensitive to smells";
|
|
180
|
+
}, {
|
|
181
|
+
readonly value: "hyper_taste";
|
|
182
|
+
readonly label: "Hypersensitive to taste";
|
|
183
|
+
}, {
|
|
184
|
+
readonly value: "hypo_taste";
|
|
185
|
+
readonly label: "Hyposensitive to taste";
|
|
64
186
|
}, {
|
|
65
187
|
readonly value: "seeks_stimulation";
|
|
66
188
|
readonly label: "Seeks sensory stimulation";
|
|
67
189
|
}, {
|
|
68
|
-
readonly value: "
|
|
69
|
-
readonly label: "
|
|
190
|
+
readonly value: "sensory_overwhelm";
|
|
191
|
+
readonly label: "Sensory overwhelm / shutdown";
|
|
192
|
+
}, {
|
|
193
|
+
readonly value: "none";
|
|
194
|
+
readonly label: "No specific sensitivities";
|
|
195
|
+
}, {
|
|
196
|
+
readonly value: "prefer_not_to_say";
|
|
197
|
+
readonly label: "Prefer not to say";
|
|
198
|
+
}];
|
|
199
|
+
export declare const cognitiveStrengthOptions: readonly [{
|
|
200
|
+
readonly value: "hyperfocus";
|
|
201
|
+
readonly label: "Hyperfocus on interests";
|
|
202
|
+
}, {
|
|
203
|
+
readonly value: "pattern_recognition";
|
|
204
|
+
readonly label: "Pattern recognition";
|
|
205
|
+
}, {
|
|
206
|
+
readonly value: "creative_thinking";
|
|
207
|
+
readonly label: "Creative / divergent thinking";
|
|
208
|
+
}, {
|
|
209
|
+
readonly value: "attention_to_detail";
|
|
210
|
+
readonly label: "Attention to detail";
|
|
211
|
+
}, {
|
|
212
|
+
readonly value: "systems_thinking";
|
|
213
|
+
readonly label: "Systems thinking";
|
|
214
|
+
}, {
|
|
215
|
+
readonly value: "big_picture";
|
|
216
|
+
readonly label: "Big-picture thinking";
|
|
217
|
+
}, {
|
|
218
|
+
readonly value: "visual_spatial";
|
|
219
|
+
readonly label: "Visual-spatial skills";
|
|
220
|
+
}, {
|
|
221
|
+
readonly value: "specialized_memory";
|
|
222
|
+
readonly label: "Specialized / topic memory";
|
|
223
|
+
}, {
|
|
224
|
+
readonly value: "problem_solving";
|
|
225
|
+
readonly label: "Problem-solving";
|
|
226
|
+
}, {
|
|
227
|
+
readonly value: "empathy";
|
|
228
|
+
readonly label: "Empathy / emotional insight";
|
|
229
|
+
}, {
|
|
230
|
+
readonly value: "passionate_curiosity";
|
|
231
|
+
readonly label: "Passionate curiosity";
|
|
232
|
+
}, {
|
|
233
|
+
readonly value: "directness_honesty";
|
|
234
|
+
readonly label: "Honesty / directness";
|
|
235
|
+
}, {
|
|
236
|
+
readonly value: "persistence";
|
|
237
|
+
readonly label: "Persistence";
|
|
238
|
+
}, {
|
|
239
|
+
readonly value: "none_unsure";
|
|
240
|
+
readonly label: "None / unsure";
|
|
241
|
+
}, {
|
|
242
|
+
readonly value: "prefer_not_to_say";
|
|
243
|
+
readonly label: "Prefer not to say";
|
|
70
244
|
}];
|
|
71
|
-
export declare const
|
|
72
|
-
readonly value: "
|
|
73
|
-
readonly label: "
|
|
245
|
+
export declare const executiveFunctionChallengeOptions: readonly [{
|
|
246
|
+
readonly value: "planning_organization";
|
|
247
|
+
readonly label: "Planning / organization";
|
|
248
|
+
}, {
|
|
249
|
+
readonly value: "time_management";
|
|
250
|
+
readonly label: "Time management / time blindness";
|
|
251
|
+
}, {
|
|
252
|
+
readonly value: "task_initiation";
|
|
253
|
+
readonly label: "Task initiation (getting started)";
|
|
254
|
+
}, {
|
|
255
|
+
readonly value: "task_switching";
|
|
256
|
+
readonly label: "Task switching / transitions";
|
|
257
|
+
}, {
|
|
258
|
+
readonly value: "working_memory";
|
|
259
|
+
readonly label: "Working memory";
|
|
260
|
+
}, {
|
|
261
|
+
readonly value: "emotional_regulation";
|
|
262
|
+
readonly label: "Emotional regulation";
|
|
263
|
+
}, {
|
|
264
|
+
readonly value: "impulse_control";
|
|
265
|
+
readonly label: "Impulse control";
|
|
266
|
+
}, {
|
|
267
|
+
readonly value: "focus_attention";
|
|
268
|
+
readonly label: "Focus / sustaining attention";
|
|
269
|
+
}, {
|
|
270
|
+
readonly value: "prioritization";
|
|
271
|
+
readonly label: "Prioritization";
|
|
272
|
+
}, {
|
|
273
|
+
readonly value: "decision_fatigue";
|
|
274
|
+
readonly label: "Decision-making / decision fatigue";
|
|
275
|
+
}, {
|
|
276
|
+
readonly value: "self_motivation";
|
|
277
|
+
readonly label: "Self-motivation";
|
|
278
|
+
}, {
|
|
279
|
+
readonly value: "sleep_regulation";
|
|
280
|
+
readonly label: "Sleep regulation";
|
|
281
|
+
}, {
|
|
282
|
+
readonly value: "none";
|
|
283
|
+
readonly label: "No significant challenges";
|
|
284
|
+
}, {
|
|
285
|
+
readonly value: "prefer_not_to_say";
|
|
286
|
+
readonly label: "Prefer not to say";
|
|
287
|
+
}];
|
|
288
|
+
export declare const learningStyleOptions: readonly [{
|
|
289
|
+
readonly value: "visual";
|
|
290
|
+
readonly label: "Visual learner";
|
|
291
|
+
}, {
|
|
292
|
+
readonly value: "auditory";
|
|
293
|
+
readonly label: "Auditory learner";
|
|
294
|
+
}, {
|
|
295
|
+
readonly value: "kinesthetic";
|
|
296
|
+
readonly label: "Kinesthetic / hands-on";
|
|
297
|
+
}, {
|
|
298
|
+
readonly value: "reading_writing";
|
|
299
|
+
readonly label: "Reading & writing";
|
|
300
|
+
}, {
|
|
301
|
+
readonly value: "multimodal";
|
|
302
|
+
readonly label: "Multimodal (combination)";
|
|
303
|
+
}, {
|
|
304
|
+
readonly value: "needs_repetition";
|
|
305
|
+
readonly label: "Needs repetition";
|
|
306
|
+
}, {
|
|
307
|
+
readonly value: "needs_structure";
|
|
308
|
+
readonly label: "Learns best with structure";
|
|
309
|
+
}, {
|
|
310
|
+
readonly value: "prefers_autonomy";
|
|
311
|
+
readonly label: "Learns best with autonomy";
|
|
312
|
+
}, {
|
|
313
|
+
readonly value: "prefer_not_to_say";
|
|
314
|
+
readonly label: "Prefer not to say";
|
|
315
|
+
}];
|
|
316
|
+
export declare const communicationPreferenceOptions: readonly [{
|
|
317
|
+
readonly value: "face_to_face";
|
|
318
|
+
readonly label: "Face-to-face verbal";
|
|
319
|
+
}, {
|
|
320
|
+
readonly value: "written";
|
|
321
|
+
readonly label: "Written (text / email / chat)";
|
|
322
|
+
}, {
|
|
323
|
+
readonly value: "phone";
|
|
324
|
+
readonly label: "Phone calls";
|
|
325
|
+
}, {
|
|
326
|
+
readonly value: "video";
|
|
327
|
+
readonly label: "Video calls";
|
|
328
|
+
}, {
|
|
329
|
+
readonly value: "small_groups";
|
|
330
|
+
readonly label: "Small groups only";
|
|
331
|
+
}, {
|
|
332
|
+
readonly value: "one_on_one";
|
|
333
|
+
readonly label: "One-on-one";
|
|
334
|
+
}, {
|
|
335
|
+
readonly value: "visual_aids";
|
|
336
|
+
readonly label: "With visual aids";
|
|
337
|
+
}, {
|
|
338
|
+
readonly value: "async";
|
|
339
|
+
readonly label: "Async over synchronous";
|
|
340
|
+
}, {
|
|
341
|
+
readonly value: "prefer_not_to_say";
|
|
342
|
+
readonly label: "Prefer not to say";
|
|
343
|
+
}];
|
|
344
|
+
export declare const supportAccommodationOptions: readonly [{
|
|
345
|
+
readonly value: "flexible_schedule";
|
|
346
|
+
readonly label: "Flexible schedule / deadlines";
|
|
74
347
|
}, {
|
|
75
348
|
readonly value: "written_instructions";
|
|
76
349
|
readonly label: "Written instructions";
|
|
@@ -80,21 +353,91 @@ export declare const supportNeedOptions: readonly [{
|
|
|
80
353
|
}, {
|
|
81
354
|
readonly value: "regular_breaks";
|
|
82
355
|
readonly label: "Regular breaks";
|
|
356
|
+
}, {
|
|
357
|
+
readonly value: "body_doubling";
|
|
358
|
+
readonly label: "Body-doubling / co-working";
|
|
359
|
+
}, {
|
|
360
|
+
readonly value: "assistive_tech";
|
|
361
|
+
readonly label: "Assistive technology";
|
|
362
|
+
}, {
|
|
363
|
+
readonly value: "noise_cancelling";
|
|
364
|
+
readonly label: "Noise-cancelling headphones";
|
|
365
|
+
}, {
|
|
366
|
+
readonly value: "fidget_tools";
|
|
367
|
+
readonly label: "Fidget tools / sensory items";
|
|
83
368
|
}, {
|
|
84
369
|
readonly value: "structured_routines";
|
|
85
370
|
readonly label: "Structured routines";
|
|
86
371
|
}, {
|
|
87
|
-
readonly value: "
|
|
88
|
-
readonly label: "
|
|
372
|
+
readonly value: "clear_expectations";
|
|
373
|
+
readonly label: "Clear expectations";
|
|
374
|
+
}, {
|
|
375
|
+
readonly value: "visual_schedules";
|
|
376
|
+
readonly label: "Visual schedules / checklists";
|
|
377
|
+
}, {
|
|
378
|
+
readonly value: "therapy";
|
|
379
|
+
readonly label: "Professional therapy / counseling";
|
|
380
|
+
}, {
|
|
381
|
+
readonly value: "medication";
|
|
382
|
+
readonly label: "Medication";
|
|
89
383
|
}, {
|
|
90
384
|
readonly value: "peer_support";
|
|
91
|
-
readonly label: "Peer support";
|
|
385
|
+
readonly label: "Peer support groups";
|
|
386
|
+
}, {
|
|
387
|
+
readonly value: "coaching";
|
|
388
|
+
readonly label: "ADHD / ASD coaching";
|
|
389
|
+
}, {
|
|
390
|
+
readonly value: "family_support";
|
|
391
|
+
readonly label: "Family / caregiver support";
|
|
392
|
+
}, {
|
|
393
|
+
readonly value: "none";
|
|
394
|
+
readonly label: "No specific support needed";
|
|
395
|
+
}, {
|
|
396
|
+
readonly value: "prefer_not_to_say";
|
|
397
|
+
readonly label: "Prefer not to say";
|
|
398
|
+
}];
|
|
399
|
+
export declare const maskingBurnoutOptions: readonly [{
|
|
400
|
+
readonly value: "frequently";
|
|
401
|
+
readonly label: "Frequently — leads to burnout";
|
|
402
|
+
readonly description: "Mask most of the time; often experience burnout";
|
|
403
|
+
}, {
|
|
404
|
+
readonly value: "sometimes";
|
|
405
|
+
readonly label: "Sometimes";
|
|
406
|
+
readonly description: "Mask in certain settings";
|
|
407
|
+
}, {
|
|
408
|
+
readonly value: "rarely";
|
|
409
|
+
readonly label: "Rarely";
|
|
92
410
|
}, {
|
|
93
|
-
readonly value: "
|
|
94
|
-
readonly label: "
|
|
411
|
+
readonly value: "never";
|
|
412
|
+
readonly label: "Never";
|
|
95
413
|
}, {
|
|
96
|
-
readonly value: "
|
|
97
|
-
readonly label: "
|
|
414
|
+
readonly value: "not_sure";
|
|
415
|
+
readonly label: "Not sure what this means";
|
|
416
|
+
}, {
|
|
417
|
+
readonly value: "prefer_not_to_say";
|
|
418
|
+
readonly label: "Prefer not to say";
|
|
419
|
+
}];
|
|
420
|
+
export declare const impactOnLifeOptions: readonly [{
|
|
421
|
+
readonly value: "significant";
|
|
422
|
+
readonly label: "Significant impact";
|
|
423
|
+
readonly description: "Need daily support to function";
|
|
424
|
+
}, {
|
|
425
|
+
readonly value: "moderate";
|
|
426
|
+
readonly label: "Moderate impact";
|
|
427
|
+
readonly description: "Some support helps me thrive";
|
|
428
|
+
}, {
|
|
429
|
+
readonly value: "mild";
|
|
430
|
+
readonly label: "Mild impact";
|
|
431
|
+
readonly description: "Manageable with awareness";
|
|
432
|
+
}, {
|
|
433
|
+
readonly value: "minimal";
|
|
434
|
+
readonly label: "Minimal / no noticeable impact";
|
|
435
|
+
}, {
|
|
436
|
+
readonly value: "varies";
|
|
437
|
+
readonly label: "Varies day to day";
|
|
438
|
+
}, {
|
|
439
|
+
readonly value: "prefer_not_to_say";
|
|
440
|
+
readonly label: "Prefer not to say";
|
|
98
441
|
}];
|
|
99
442
|
export declare const neurodiversity: FieldGroup;
|
|
100
443
|
//# sourceMappingURL=08-neurodiversity.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"08-neurodiversity.d.ts","sourceRoot":"","sources":["../../src/profile-fields/08-neurodiversity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,8BAA8B
|
|
1
|
+
{"version":3,"file":"08-neurodiversity.d.ts","sourceRoot":"","sources":["../../src/profile-fields/08-neurodiversity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C;;;;;;;;;;;;;;;;;;;;GAoBG;AAIH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;EAsB9B,CAAC;AAIX,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6CjC,CAAC;AAIX,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;EAQ1B,CAAC;AAIX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAexB,CAAC;AAIX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgB3B,CAAC;AAIX,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAepC,CAAC;AAIX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUvB,CAAC;AAIX,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUjC,CAAC;AAIX,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB9B,CAAC;AAIX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;EAWxB,CAAC;AAIX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAetB,CAAC;AAMX,eAAO,MAAM,cAAc,EAAE,UA8H5B,CAAC"}
|