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,145 +1,357 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Step 8 — Neurodiversity (rebuilt 2026-04)
|
|
3
|
+
*
|
|
4
|
+
* Exhaustive coverage of the neurodiversity profile across 11 sub-steps:
|
|
5
|
+
* 1. Identity (including diagnosis status)
|
|
6
|
+
* 2. Specific ND conditions
|
|
7
|
+
* 3. Age of realization / diagnosis
|
|
8
|
+
* 4. Sensory profile (hyper/hypo per sense + seeking + overwhelm)
|
|
9
|
+
* 5. Cognitive strengths (ND-associated gifts)
|
|
10
|
+
* 6. Executive function challenges
|
|
11
|
+
* 7. Learning style
|
|
12
|
+
* 8. Communication preference
|
|
13
|
+
* 9. Support & accommodations that help
|
|
14
|
+
* 10. Masking & burnout
|
|
15
|
+
* 11. Impact on daily life
|
|
16
|
+
*
|
|
17
|
+
* Conditional sub-steps (2, 3, 4, 5, 6, 9, 10, 11) are shown unless the
|
|
18
|
+
* respondent selects `no_neurotypical` or `prefer_not_to_say` for identity.
|
|
19
|
+
* Steps 7 and 8 (learningStyle, communicationPreference) are shown for
|
|
20
|
+
* everyone since they're useful profile data regardless of ND identity.
|
|
21
|
+
*/
|
|
22
|
+
// ─── 1. Identity ────────────────────────────────────────────────────────────
|
|
23
|
+
export const neurodiverseIdentityOptions = [
|
|
24
|
+
{
|
|
25
|
+
value: 'yes_diagnosed',
|
|
26
|
+
label: 'Yes — formally diagnosed',
|
|
27
|
+
description: 'Clinically diagnosed by a qualified professional',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
value: 'yes_self_identified',
|
|
31
|
+
label: 'Yes — self-identified',
|
|
32
|
+
description: 'Identify as neurodivergent without formal diagnosis',
|
|
33
|
+
},
|
|
3
34
|
{
|
|
4
|
-
value: '
|
|
5
|
-
label: '
|
|
6
|
-
description:
|
|
35
|
+
value: 'exploring',
|
|
36
|
+
label: 'Exploring / suspect',
|
|
37
|
+
description: "Not sure yet — exploring whether I'm neurodivergent",
|
|
7
38
|
},
|
|
8
39
|
{
|
|
9
|
-
value: '
|
|
10
|
-
label: '
|
|
11
|
-
description: '
|
|
40
|
+
value: 'no_neurotypical',
|
|
41
|
+
label: 'No — neurotypical',
|
|
42
|
+
description: "Don't identify as neurodivergent",
|
|
43
|
+
},
|
|
44
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
45
|
+
];
|
|
46
|
+
// ─── 2. Specific ND conditions ──────────────────────────────────────────────
|
|
47
|
+
export const neurodiversityConditionOptions = [
|
|
48
|
+
{ value: 'adhd', label: 'ADHD / ADD', description: 'Attention Deficit Hyperactivity Disorder' },
|
|
49
|
+
{ value: 'autism_spectrum', label: 'Autism Spectrum (ASC / ASD)', description: 'Autism Spectrum Condition' },
|
|
50
|
+
{ value: 'dyslexia', label: 'Dyslexia', description: 'Reading and language-processing differences' },
|
|
51
|
+
{
|
|
52
|
+
value: 'dyspraxia',
|
|
53
|
+
label: 'Dyspraxia / DCD',
|
|
54
|
+
description: 'Developmental Coordination Disorder — motor coordination',
|
|
12
55
|
},
|
|
13
|
-
{ value: 'dyspraxia', label: 'Dyspraxia', description: 'Difficulty with motor coordination' },
|
|
14
56
|
{ value: 'dyscalculia', label: 'Dyscalculia', description: 'Difficulty with numbers and math' },
|
|
57
|
+
{ value: 'dysgraphia', label: 'Dysgraphia', description: 'Difficulty with writing / fine motor for writing' },
|
|
15
58
|
{
|
|
16
59
|
value: 'tourettes',
|
|
17
|
-
label: "Tourette's
|
|
60
|
+
label: "Tourette's / Tic Disorder",
|
|
18
61
|
description: 'Involuntary tics and movements',
|
|
19
62
|
},
|
|
20
63
|
{ value: 'ocd', label: 'OCD', description: 'Obsessive-Compulsive Disorder' },
|
|
64
|
+
{ value: 'bipolar', label: 'Bipolar Disorder', description: 'Mood episodes between mania and depression' },
|
|
65
|
+
{ value: 'anxiety_disorder', label: 'Anxiety Disorder', description: 'Persistent excessive worry' },
|
|
66
|
+
{ value: 'depression_mood', label: 'Depression / Mood Disorder', description: 'Clinical depression or mood disorders' },
|
|
67
|
+
{ value: 'ptsd', label: 'PTSD / C-PTSD', description: 'Post-traumatic stress (including complex)' },
|
|
21
68
|
{
|
|
22
|
-
value: '
|
|
23
|
-
label: '
|
|
24
|
-
description: '
|
|
69
|
+
value: 'sensory_processing',
|
|
70
|
+
label: 'Sensory Processing Disorder',
|
|
71
|
+
description: 'Difficulty processing sensory information',
|
|
25
72
|
},
|
|
26
73
|
{
|
|
27
|
-
value: '
|
|
28
|
-
label: '
|
|
29
|
-
description: '
|
|
74
|
+
value: 'auditory_processing',
|
|
75
|
+
label: 'Auditory Processing Disorder',
|
|
76
|
+
description: 'Difficulty processing sounds despite normal hearing',
|
|
30
77
|
},
|
|
31
78
|
{
|
|
32
|
-
value: '
|
|
33
|
-
label: '
|
|
34
|
-
description: 'Difficulty processing
|
|
79
|
+
value: 'visual_processing',
|
|
80
|
+
label: 'Visual Processing Disorder',
|
|
81
|
+
description: 'Difficulty processing visual information',
|
|
35
82
|
},
|
|
83
|
+
{ value: 'giftedness_2e', label: 'Giftedness / Twice-Exceptional (2e)', description: 'High cognitive ability, often with ND' },
|
|
84
|
+
{ value: 'specific_language_impairment', label: 'Specific Language Impairment', description: 'Language development differences' },
|
|
85
|
+
{ value: 'stuttering', label: 'Stuttering / Speech Disorder' },
|
|
86
|
+
{ value: 'schizophrenia', label: 'Schizophrenia / Schizoaffective' },
|
|
87
|
+
{ value: 'eating_disorder', label: 'Eating Disorder', description: 'Anorexia, bulimia, binge, ARFID, etc.' },
|
|
88
|
+
{ value: 'bpd', label: 'Borderline Personality (BPD)' },
|
|
89
|
+
{ value: 'intellectual_disability', label: 'Intellectual Disability' },
|
|
36
90
|
{ value: 'other', label: 'Other' },
|
|
37
91
|
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
38
92
|
];
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
{ value: '
|
|
42
|
-
{ value: '
|
|
43
|
-
{ value: '
|
|
44
|
-
{ value: '
|
|
93
|
+
// ─── 3. Age of realization / diagnosis ──────────────────────────────────────
|
|
94
|
+
export const ageOfRealizationOptions = [
|
|
95
|
+
{ value: 'childhood', label: 'Childhood (before 13)' },
|
|
96
|
+
{ value: 'teen', label: 'Teen years (13–18)' },
|
|
97
|
+
{ value: 'young_adult', label: 'Young adult (19–30)' },
|
|
98
|
+
{ value: 'adult', label: 'Adult (31–50)' },
|
|
99
|
+
{ value: 'later_life', label: 'Later in life (50+)' },
|
|
100
|
+
{ value: 'still_exploring', label: 'Still exploring' },
|
|
101
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
102
|
+
];
|
|
103
|
+
// ─── 4. Sensory profile ─────────────────────────────────────────────────────
|
|
104
|
+
export const sensoryProfileOptions = [
|
|
105
|
+
{ value: 'hyper_sound', label: 'Hypersensitive to sound' },
|
|
106
|
+
{ value: 'hypo_sound', label: 'Hyposensitive to sound' },
|
|
107
|
+
{ value: 'hyper_light', label: 'Hypersensitive to light' },
|
|
108
|
+
{ value: 'hypo_light', label: 'Hyposensitive to light' },
|
|
109
|
+
{ value: 'hyper_touch', label: 'Hypersensitive to touch / textures' },
|
|
110
|
+
{ value: 'hypo_touch', label: 'Hyposensitive to touch' },
|
|
111
|
+
{ value: 'hyper_smell', label: 'Hypersensitive to smells' },
|
|
112
|
+
{ value: 'hypo_smell', label: 'Hyposensitive to smells' },
|
|
113
|
+
{ value: 'hyper_taste', label: 'Hypersensitive to taste' },
|
|
114
|
+
{ value: 'hypo_taste', label: 'Hyposensitive to taste' },
|
|
45
115
|
{ value: 'seeks_stimulation', label: 'Seeks sensory stimulation' },
|
|
46
|
-
{ value: '
|
|
116
|
+
{ value: 'sensory_overwhelm', label: 'Sensory overwhelm / shutdown' },
|
|
117
|
+
{ value: 'none', label: 'No specific sensitivities' },
|
|
118
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
47
119
|
];
|
|
48
|
-
|
|
49
|
-
|
|
120
|
+
// ─── 5. Cognitive strengths ─────────────────────────────────────────────────
|
|
121
|
+
export const cognitiveStrengthOptions = [
|
|
122
|
+
{ value: 'hyperfocus', label: 'Hyperfocus on interests' },
|
|
123
|
+
{ value: 'pattern_recognition', label: 'Pattern recognition' },
|
|
124
|
+
{ value: 'creative_thinking', label: 'Creative / divergent thinking' },
|
|
125
|
+
{ value: 'attention_to_detail', label: 'Attention to detail' },
|
|
126
|
+
{ value: 'systems_thinking', label: 'Systems thinking' },
|
|
127
|
+
{ value: 'big_picture', label: 'Big-picture thinking' },
|
|
128
|
+
{ value: 'visual_spatial', label: 'Visual-spatial skills' },
|
|
129
|
+
{ value: 'specialized_memory', label: 'Specialized / topic memory' },
|
|
130
|
+
{ value: 'problem_solving', label: 'Problem-solving' },
|
|
131
|
+
{ value: 'empathy', label: 'Empathy / emotional insight' },
|
|
132
|
+
{ value: 'passionate_curiosity', label: 'Passionate curiosity' },
|
|
133
|
+
{ value: 'directness_honesty', label: 'Honesty / directness' },
|
|
134
|
+
{ value: 'persistence', label: 'Persistence' },
|
|
135
|
+
{ value: 'none_unsure', label: 'None / unsure' },
|
|
136
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
137
|
+
];
|
|
138
|
+
// ─── 6. Executive function challenges ───────────────────────────────────────
|
|
139
|
+
export const executiveFunctionChallengeOptions = [
|
|
140
|
+
{ value: 'planning_organization', label: 'Planning / organization' },
|
|
141
|
+
{ value: 'time_management', label: 'Time management / time blindness' },
|
|
142
|
+
{ value: 'task_initiation', label: 'Task initiation (getting started)' },
|
|
143
|
+
{ value: 'task_switching', label: 'Task switching / transitions' },
|
|
144
|
+
{ value: 'working_memory', label: 'Working memory' },
|
|
145
|
+
{ value: 'emotional_regulation', label: 'Emotional regulation' },
|
|
146
|
+
{ value: 'impulse_control', label: 'Impulse control' },
|
|
147
|
+
{ value: 'focus_attention', label: 'Focus / sustaining attention' },
|
|
148
|
+
{ value: 'prioritization', label: 'Prioritization' },
|
|
149
|
+
{ value: 'decision_fatigue', label: 'Decision-making / decision fatigue' },
|
|
150
|
+
{ value: 'self_motivation', label: 'Self-motivation' },
|
|
151
|
+
{ value: 'sleep_regulation', label: 'Sleep regulation' },
|
|
152
|
+
{ value: 'none', label: 'No significant challenges' },
|
|
153
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
154
|
+
];
|
|
155
|
+
// ─── 7. Learning style ──────────────────────────────────────────────────────
|
|
156
|
+
export const learningStyleOptions = [
|
|
157
|
+
{ value: 'visual', label: 'Visual learner' },
|
|
158
|
+
{ value: 'auditory', label: 'Auditory learner' },
|
|
159
|
+
{ value: 'kinesthetic', label: 'Kinesthetic / hands-on' },
|
|
160
|
+
{ value: 'reading_writing', label: 'Reading & writing' },
|
|
161
|
+
{ value: 'multimodal', label: 'Multimodal (combination)' },
|
|
162
|
+
{ value: 'needs_repetition', label: 'Needs repetition' },
|
|
163
|
+
{ value: 'needs_structure', label: 'Learns best with structure' },
|
|
164
|
+
{ value: 'prefers_autonomy', label: 'Learns best with autonomy' },
|
|
165
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
166
|
+
];
|
|
167
|
+
// ─── 8. Communication preference ────────────────────────────────────────────
|
|
168
|
+
export const communicationPreferenceOptions = [
|
|
169
|
+
{ value: 'face_to_face', label: 'Face-to-face verbal' },
|
|
170
|
+
{ value: 'written', label: 'Written (text / email / chat)' },
|
|
171
|
+
{ value: 'phone', label: 'Phone calls' },
|
|
172
|
+
{ value: 'video', label: 'Video calls' },
|
|
173
|
+
{ value: 'small_groups', label: 'Small groups only' },
|
|
174
|
+
{ value: 'one_on_one', label: 'One-on-one' },
|
|
175
|
+
{ value: 'visual_aids', label: 'With visual aids' },
|
|
176
|
+
{ value: 'async', label: 'Async over synchronous' },
|
|
177
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
178
|
+
];
|
|
179
|
+
// ─── 9. Support & accommodations ────────────────────────────────────────────
|
|
180
|
+
export const supportAccommodationOptions = [
|
|
181
|
+
{ value: 'flexible_schedule', label: 'Flexible schedule / deadlines' },
|
|
50
182
|
{ value: 'written_instructions', label: 'Written instructions' },
|
|
51
183
|
{ value: 'quiet_workspace', label: 'Quiet workspace' },
|
|
52
184
|
{ value: 'regular_breaks', label: 'Regular breaks' },
|
|
185
|
+
{ value: 'body_doubling', label: 'Body-doubling / co-working' },
|
|
186
|
+
{ value: 'assistive_tech', label: 'Assistive technology' },
|
|
187
|
+
{ value: 'noise_cancelling', label: 'Noise-cancelling headphones' },
|
|
188
|
+
{ value: 'fidget_tools', label: 'Fidget tools / sensory items' },
|
|
53
189
|
{ value: 'structured_routines', label: 'Structured routines' },
|
|
54
|
-
{ value: '
|
|
55
|
-
{ value: '
|
|
56
|
-
{ value: '
|
|
57
|
-
{ value: '
|
|
190
|
+
{ value: 'clear_expectations', label: 'Clear expectations' },
|
|
191
|
+
{ value: 'visual_schedules', label: 'Visual schedules / checklists' },
|
|
192
|
+
{ value: 'therapy', label: 'Professional therapy / counseling' },
|
|
193
|
+
{ value: 'medication', label: 'Medication' },
|
|
194
|
+
{ value: 'peer_support', label: 'Peer support groups' },
|
|
195
|
+
{ value: 'coaching', label: 'ADHD / ASD coaching' },
|
|
196
|
+
{ value: 'family_support', label: 'Family / caregiver support' },
|
|
197
|
+
{ value: 'none', label: 'No specific support needed' },
|
|
198
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
199
|
+
];
|
|
200
|
+
// ─── 10. Masking & burnout ──────────────────────────────────────────────────
|
|
201
|
+
export const maskingBurnoutOptions = [
|
|
202
|
+
{
|
|
203
|
+
value: 'frequently',
|
|
204
|
+
label: 'Frequently — leads to burnout',
|
|
205
|
+
description: 'Mask most of the time; often experience burnout',
|
|
206
|
+
},
|
|
207
|
+
{ value: 'sometimes', label: 'Sometimes', description: 'Mask in certain settings' },
|
|
208
|
+
{ value: 'rarely', label: 'Rarely' },
|
|
209
|
+
{ value: 'never', label: 'Never' },
|
|
210
|
+
{ value: 'not_sure', label: 'Not sure what this means' },
|
|
211
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
212
|
+
];
|
|
213
|
+
// ─── 11. Impact on daily life ───────────────────────────────────────────────
|
|
214
|
+
export const impactOnLifeOptions = [
|
|
215
|
+
{
|
|
216
|
+
value: 'significant',
|
|
217
|
+
label: 'Significant impact',
|
|
218
|
+
description: 'Need daily support to function',
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
value: 'moderate',
|
|
222
|
+
label: 'Moderate impact',
|
|
223
|
+
description: 'Some support helps me thrive',
|
|
224
|
+
},
|
|
225
|
+
{ value: 'mild', label: 'Mild impact', description: 'Manageable with awareness' },
|
|
226
|
+
{ value: 'minimal', label: 'Minimal / no noticeable impact' },
|
|
227
|
+
{ value: 'varies', label: 'Varies day to day' },
|
|
228
|
+
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
58
229
|
];
|
|
230
|
+
// ─── Field Group ────────────────────────────────────────────────────────────
|
|
231
|
+
const IDENTITY_SKIP = ['no_neurotypical', 'prefer_not_to_say']; // conditional hide list
|
|
59
232
|
export const neurodiversity = {
|
|
60
233
|
key: 'neurodiversity',
|
|
61
234
|
label: 'Neurodiversity',
|
|
62
235
|
step: 8,
|
|
63
|
-
description: 'Neurodivergent identity,
|
|
236
|
+
description: 'Neurodivergent identity, sensory profile, cognitive strengths, executive function, and support needs.',
|
|
64
237
|
fields: [
|
|
65
238
|
{
|
|
66
239
|
order: 1,
|
|
67
240
|
key: 'neurodiverseIdentity',
|
|
68
|
-
label: '
|
|
241
|
+
label: 'Neurodivergent Identity',
|
|
69
242
|
type: 'single_select',
|
|
70
243
|
step: 8,
|
|
71
244
|
isOnboarding: true,
|
|
72
245
|
optional: true,
|
|
73
|
-
options: [
|
|
74
|
-
{ value: 'yes', label: 'Yes' },
|
|
75
|
-
{ value: 'no', label: 'No' },
|
|
76
|
-
{ value: 'exploring', label: 'Exploring / Not sure' },
|
|
77
|
-
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
78
|
-
],
|
|
246
|
+
options: [...neurodiverseIdentityOptions],
|
|
79
247
|
},
|
|
80
248
|
{
|
|
81
249
|
order: 2,
|
|
82
250
|
key: 'conditions',
|
|
83
|
-
label: 'Conditions',
|
|
251
|
+
label: 'Specific Conditions',
|
|
84
252
|
type: 'multi_select',
|
|
85
253
|
step: 8,
|
|
86
254
|
isOnboarding: true,
|
|
87
255
|
optional: true,
|
|
88
256
|
options: [...neurodiversityConditionOptions],
|
|
89
|
-
conditionalOn: { field: 'neurodiverseIdentity',
|
|
257
|
+
conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
|
|
90
258
|
},
|
|
91
259
|
{
|
|
92
260
|
order: 3,
|
|
93
|
-
key: '
|
|
94
|
-
label: '
|
|
95
|
-
type: '
|
|
261
|
+
key: 'ageOfRealization',
|
|
262
|
+
label: 'Age of Realization',
|
|
263
|
+
type: 'single_select',
|
|
96
264
|
step: 8,
|
|
97
265
|
isOnboarding: true,
|
|
98
266
|
optional: true,
|
|
99
|
-
options: [...
|
|
267
|
+
options: [...ageOfRealizationOptions],
|
|
268
|
+
conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
|
|
100
269
|
},
|
|
101
270
|
{
|
|
102
271
|
order: 4,
|
|
272
|
+
key: 'sensoryProfile',
|
|
273
|
+
label: 'Sensory Profile',
|
|
274
|
+
type: 'multi_select',
|
|
275
|
+
step: 8,
|
|
276
|
+
isOnboarding: true,
|
|
277
|
+
optional: true,
|
|
278
|
+
options: [...sensoryProfileOptions],
|
|
279
|
+
conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
order: 5,
|
|
283
|
+
key: 'cognitiveStrengths',
|
|
284
|
+
label: 'Cognitive Strengths',
|
|
285
|
+
type: 'multi_select',
|
|
286
|
+
step: 8,
|
|
287
|
+
isOnboarding: true,
|
|
288
|
+
optional: true,
|
|
289
|
+
options: [...cognitiveStrengthOptions],
|
|
290
|
+
conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
order: 6,
|
|
294
|
+
key: 'executiveFunctionChallenges',
|
|
295
|
+
label: 'Executive Function Challenges',
|
|
296
|
+
type: 'multi_select',
|
|
297
|
+
step: 8,
|
|
298
|
+
isOnboarding: true,
|
|
299
|
+
optional: true,
|
|
300
|
+
options: [...executiveFunctionChallengeOptions],
|
|
301
|
+
conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
order: 7,
|
|
103
305
|
key: 'learningStyle',
|
|
104
306
|
label: 'Learning Style',
|
|
105
307
|
type: 'single_select',
|
|
106
308
|
step: 8,
|
|
107
309
|
isOnboarding: true,
|
|
108
310
|
optional: true,
|
|
109
|
-
options: [
|
|
110
|
-
{ value: 'visual', label: 'Visual learner' },
|
|
111
|
-
{ value: 'auditory', label: 'Auditory learner' },
|
|
112
|
-
{ value: 'kinesthetic', label: 'Kinesthetic (hands-on)' },
|
|
113
|
-
{ value: 'reading_writing', label: 'Reading & Writing' },
|
|
114
|
-
{ value: 'mixed', label: 'Mixed / All styles' },
|
|
115
|
-
],
|
|
311
|
+
options: [...learningStyleOptions],
|
|
116
312
|
},
|
|
117
313
|
{
|
|
118
|
-
order:
|
|
314
|
+
order: 8,
|
|
119
315
|
key: 'communicationPreference',
|
|
120
316
|
label: 'Communication Preference',
|
|
121
317
|
type: 'single_select',
|
|
122
318
|
step: 8,
|
|
123
319
|
isOnboarding: true,
|
|
124
320
|
optional: true,
|
|
125
|
-
options: [
|
|
126
|
-
{ value: 'face_to_face', label: 'Face-to-face verbal' },
|
|
127
|
-
{ value: 'written', label: 'Written (text/email)' },
|
|
128
|
-
{ value: 'visual_aids', label: 'Visual aids' },
|
|
129
|
-
{ value: 'phone_calls', label: 'Phone calls' },
|
|
130
|
-
{ value: 'small_groups_only', label: 'Small groups only' },
|
|
131
|
-
{ value: 'prefer_not_to_say', label: 'Prefer not to say' },
|
|
132
|
-
],
|
|
321
|
+
options: [...communicationPreferenceOptions],
|
|
133
322
|
},
|
|
134
323
|
{
|
|
135
|
-
order:
|
|
136
|
-
key: '
|
|
137
|
-
label: 'Support
|
|
324
|
+
order: 9,
|
|
325
|
+
key: 'supportAndAccommodations',
|
|
326
|
+
label: 'Support & Accommodations',
|
|
138
327
|
type: 'multi_select',
|
|
139
328
|
step: 8,
|
|
140
329
|
isOnboarding: true,
|
|
141
330
|
optional: true,
|
|
142
|
-
options: [...
|
|
331
|
+
options: [...supportAccommodationOptions],
|
|
332
|
+
conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
order: 10,
|
|
336
|
+
key: 'maskingAndBurnout',
|
|
337
|
+
label: 'Masking & Burnout',
|
|
338
|
+
type: 'single_select',
|
|
339
|
+
step: 8,
|
|
340
|
+
isOnboarding: true,
|
|
341
|
+
optional: true,
|
|
342
|
+
options: [...maskingBurnoutOptions],
|
|
343
|
+
conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
order: 11,
|
|
347
|
+
key: 'impactOnLife',
|
|
348
|
+
label: 'Impact on Daily Life',
|
|
349
|
+
type: 'single_select',
|
|
350
|
+
step: 8,
|
|
351
|
+
isOnboarding: true,
|
|
352
|
+
optional: true,
|
|
353
|
+
options: [...impactOnLifeOptions],
|
|
354
|
+
conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
|
|
143
355
|
},
|
|
144
356
|
],
|
|
145
357
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"08-neurodiversity.js","sourceRoot":"","sources":["../../src/profile-fields/08-neurodiversity.ts"],"names":[],"mappings":"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","sourcesContent":["import type { FieldGroup } from './types.js';\n\nexport const neurodiversityConditionOptions = [\n { value: 'adhd', label: 'ADHD', description: 'Attention Deficit Hyperactivity Disorder' },\n {\n value: 'autism_spectrum',\n label: 'Autism Spectrum',\n description: 'Autism Spectrum Disorder (ASD)',\n },\n {\n value: 'dyslexia',\n label: 'Dyslexia',\n description: 'Difficulty with reading and language processing',\n },\n { value: 'dyspraxia', label: 'Dyspraxia', description: 'Difficulty with motor coordination' },\n { value: 'dyscalculia', label: 'Dyscalculia', description: 'Difficulty with numbers and math' },\n {\n value: 'tourettes',\n label: \"Tourette's Syndrome\",\n description: 'Involuntary tics and movements',\n },\n { value: 'ocd', label: 'OCD', description: 'Obsessive-Compulsive Disorder' },\n {\n value: 'bipolar',\n label: 'Bipolar Disorder',\n description: 'Mood episodes between mania and depression',\n },\n {\n value: 'anxiety_disorder',\n label: 'Anxiety Disorder',\n description: 'Persistent excessive worry',\n },\n {\n value: 'sensory_processing',\n label: 'Sensory Processing Disorder',\n description: 'Difficulty processing sensory information',\n },\n { value: 'other', label: 'Other' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\nexport const sensoryPreferenceOptions = [\n { value: 'loud_sounds', label: 'Sensitive to loud sounds' },\n { value: 'bright_lights', label: 'Sensitive to bright lights' },\n { value: 'textures', label: 'Sensitive to textures' },\n { value: 'smells', label: 'Sensitive to smells' },\n { value: 'quiet_environment', label: 'Needs quiet environment' },\n { value: 'seeks_stimulation', label: 'Seeks sensory stimulation' },\n { value: 'no_specific', label: 'No specific sensory needs' },\n] as const;\n\nexport const supportNeedOptions = [\n { value: 'flexible_deadlines', label: 'Flexible deadlines' },\n { value: 'written_instructions', label: 'Written instructions' },\n { value: 'quiet_workspace', label: 'Quiet workspace' },\n { value: 'regular_breaks', label: 'Regular breaks' },\n { value: 'structured_routines', label: 'Structured routines' },\n { value: 'assistive_technology', label: 'Assistive technology' },\n { value: 'peer_support', label: 'Peer support' },\n { value: 'professional_support', label: 'Professional support' },\n { value: 'no_specific', label: 'No specific needs' },\n] as const;\n\nexport const neurodiversity: FieldGroup = {\n key: 'neurodiversity',\n label: 'Neurodiversity',\n step: 8,\n description: 'Neurodivergent identity, learning style, and support needs.',\n fields: [\n {\n order: 1,\n key: 'neurodiverseIdentity',\n label: 'Neurodiverse Identity',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [\n { value: 'yes', label: 'Yes' },\n { value: 'no', label: 'No' },\n { value: 'exploring', label: 'Exploring / Not sure' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 2,\n key: 'conditions',\n label: 'Conditions',\n type: 'multi_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...neurodiversityConditionOptions],\n conditionalOn: { field: 'neurodiverseIdentity', values: ['yes', 'exploring'] },\n },\n {\n order: 3,\n key: 'sensoryPreferences',\n label: 'Sensory Preferences',\n type: 'multi_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...sensoryPreferenceOptions],\n },\n {\n order: 4,\n key: 'learningStyle',\n label: 'Learning Style',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [\n { value: 'visual', label: 'Visual learner' },\n { value: 'auditory', label: 'Auditory learner' },\n { value: 'kinesthetic', label: 'Kinesthetic (hands-on)' },\n { value: 'reading_writing', label: 'Reading & Writing' },\n { value: 'mixed', label: 'Mixed / All styles' },\n ],\n },\n {\n order: 5,\n key: 'communicationPreference',\n label: 'Communication Preference',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [\n { value: 'face_to_face', label: 'Face-to-face verbal' },\n { value: 'written', label: 'Written (text/email)' },\n { value: 'visual_aids', label: 'Visual aids' },\n { value: 'phone_calls', label: 'Phone calls' },\n { value: 'small_groups_only', label: 'Small groups only' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 6,\n key: 'supportNeeds',\n label: 'Support Needs',\n type: 'multi_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...supportNeedOptions],\n },\n ],\n};\n"]}
|
|
1
|
+
{"version":3,"file":"08-neurodiversity.js","sourceRoot":"","sources":["../../src/profile-fields/08-neurodiversity.ts"],"names":[],"mappings":"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","sourcesContent":["import type { FieldGroup } from './types.js';\n\n/**\n * Step 8 — Neurodiversity (rebuilt 2026-04)\n *\n * Exhaustive coverage of the neurodiversity profile across 11 sub-steps:\n * 1. Identity (including diagnosis status)\n * 2. Specific ND conditions\n * 3. Age of realization / diagnosis\n * 4. Sensory profile (hyper/hypo per sense + seeking + overwhelm)\n * 5. Cognitive strengths (ND-associated gifts)\n * 6. Executive function challenges\n * 7. Learning style\n * 8. Communication preference\n * 9. Support & accommodations that help\n * 10. Masking & burnout\n * 11. Impact on daily life\n *\n * Conditional sub-steps (2, 3, 4, 5, 6, 9, 10, 11) are shown unless the\n * respondent selects `no_neurotypical` or `prefer_not_to_say` for identity.\n * Steps 7 and 8 (learningStyle, communicationPreference) are shown for\n * everyone since they're useful profile data regardless of ND identity.\n */\n\n// ─── 1. Identity ────────────────────────────────────────────────────────────\n\nexport const neurodiverseIdentityOptions = [\n {\n value: 'yes_diagnosed',\n label: 'Yes — formally diagnosed',\n description: 'Clinically diagnosed by a qualified professional',\n },\n {\n value: 'yes_self_identified',\n label: 'Yes — self-identified',\n description: 'Identify as neurodivergent without formal diagnosis',\n },\n {\n value: 'exploring',\n label: 'Exploring / suspect',\n description: \"Not sure yet — exploring whether I'm neurodivergent\",\n },\n {\n value: 'no_neurotypical',\n label: 'No — neurotypical',\n description: \"Don't identify as neurodivergent\",\n },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 2. Specific ND conditions ──────────────────────────────────────────────\n\nexport const neurodiversityConditionOptions = [\n { value: 'adhd', label: 'ADHD / ADD', description: 'Attention Deficit Hyperactivity Disorder' },\n { value: 'autism_spectrum', label: 'Autism Spectrum (ASC / ASD)', description: 'Autism Spectrum Condition' },\n { value: 'dyslexia', label: 'Dyslexia', description: 'Reading and language-processing differences' },\n {\n value: 'dyspraxia',\n label: 'Dyspraxia / DCD',\n description: 'Developmental Coordination Disorder — motor coordination',\n },\n { value: 'dyscalculia', label: 'Dyscalculia', description: 'Difficulty with numbers and math' },\n { value: 'dysgraphia', label: 'Dysgraphia', description: 'Difficulty with writing / fine motor for writing' },\n {\n value: 'tourettes',\n label: \"Tourette's / Tic Disorder\",\n description: 'Involuntary tics and movements',\n },\n { value: 'ocd', label: 'OCD', description: 'Obsessive-Compulsive Disorder' },\n { value: 'bipolar', label: 'Bipolar Disorder', description: 'Mood episodes between mania and depression' },\n { value: 'anxiety_disorder', label: 'Anxiety Disorder', description: 'Persistent excessive worry' },\n { value: 'depression_mood', label: 'Depression / Mood Disorder', description: 'Clinical depression or mood disorders' },\n { value: 'ptsd', label: 'PTSD / C-PTSD', description: 'Post-traumatic stress (including complex)' },\n {\n value: 'sensory_processing',\n label: 'Sensory Processing Disorder',\n description: 'Difficulty processing sensory information',\n },\n {\n value: 'auditory_processing',\n label: 'Auditory Processing Disorder',\n description: 'Difficulty processing sounds despite normal hearing',\n },\n {\n value: 'visual_processing',\n label: 'Visual Processing Disorder',\n description: 'Difficulty processing visual information',\n },\n { value: 'giftedness_2e', label: 'Giftedness / Twice-Exceptional (2e)', description: 'High cognitive ability, often with ND' },\n { value: 'specific_language_impairment', label: 'Specific Language Impairment', description: 'Language development differences' },\n { value: 'stuttering', label: 'Stuttering / Speech Disorder' },\n { value: 'schizophrenia', label: 'Schizophrenia / Schizoaffective' },\n { value: 'eating_disorder', label: 'Eating Disorder', description: 'Anorexia, bulimia, binge, ARFID, etc.' },\n { value: 'bpd', label: 'Borderline Personality (BPD)' },\n { value: 'intellectual_disability', label: 'Intellectual Disability' },\n { value: 'other', label: 'Other' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 3. Age of realization / diagnosis ──────────────────────────────────────\n\nexport const ageOfRealizationOptions = [\n { value: 'childhood', label: 'Childhood (before 13)' },\n { value: 'teen', label: 'Teen years (13–18)' },\n { value: 'young_adult', label: 'Young adult (19–30)' },\n { value: 'adult', label: 'Adult (31–50)' },\n { value: 'later_life', label: 'Later in life (50+)' },\n { value: 'still_exploring', label: 'Still exploring' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 4. Sensory profile ─────────────────────────────────────────────────────\n\nexport const sensoryProfileOptions = [\n { value: 'hyper_sound', label: 'Hypersensitive to sound' },\n { value: 'hypo_sound', label: 'Hyposensitive to sound' },\n { value: 'hyper_light', label: 'Hypersensitive to light' },\n { value: 'hypo_light', label: 'Hyposensitive to light' },\n { value: 'hyper_touch', label: 'Hypersensitive to touch / textures' },\n { value: 'hypo_touch', label: 'Hyposensitive to touch' },\n { value: 'hyper_smell', label: 'Hypersensitive to smells' },\n { value: 'hypo_smell', label: 'Hyposensitive to smells' },\n { value: 'hyper_taste', label: 'Hypersensitive to taste' },\n { value: 'hypo_taste', label: 'Hyposensitive to taste' },\n { value: 'seeks_stimulation', label: 'Seeks sensory stimulation' },\n { value: 'sensory_overwhelm', label: 'Sensory overwhelm / shutdown' },\n { value: 'none', label: 'No specific sensitivities' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 5. Cognitive strengths ─────────────────────────────────────────────────\n\nexport const cognitiveStrengthOptions = [\n { value: 'hyperfocus', label: 'Hyperfocus on interests' },\n { value: 'pattern_recognition', label: 'Pattern recognition' },\n { value: 'creative_thinking', label: 'Creative / divergent thinking' },\n { value: 'attention_to_detail', label: 'Attention to detail' },\n { value: 'systems_thinking', label: 'Systems thinking' },\n { value: 'big_picture', label: 'Big-picture thinking' },\n { value: 'visual_spatial', label: 'Visual-spatial skills' },\n { value: 'specialized_memory', label: 'Specialized / topic memory' },\n { value: 'problem_solving', label: 'Problem-solving' },\n { value: 'empathy', label: 'Empathy / emotional insight' },\n { value: 'passionate_curiosity', label: 'Passionate curiosity' },\n { value: 'directness_honesty', label: 'Honesty / directness' },\n { value: 'persistence', label: 'Persistence' },\n { value: 'none_unsure', label: 'None / unsure' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 6. Executive function challenges ───────────────────────────────────────\n\nexport const executiveFunctionChallengeOptions = [\n { value: 'planning_organization', label: 'Planning / organization' },\n { value: 'time_management', label: 'Time management / time blindness' },\n { value: 'task_initiation', label: 'Task initiation (getting started)' },\n { value: 'task_switching', label: 'Task switching / transitions' },\n { value: 'working_memory', label: 'Working memory' },\n { value: 'emotional_regulation', label: 'Emotional regulation' },\n { value: 'impulse_control', label: 'Impulse control' },\n { value: 'focus_attention', label: 'Focus / sustaining attention' },\n { value: 'prioritization', label: 'Prioritization' },\n { value: 'decision_fatigue', label: 'Decision-making / decision fatigue' },\n { value: 'self_motivation', label: 'Self-motivation' },\n { value: 'sleep_regulation', label: 'Sleep regulation' },\n { value: 'none', label: 'No significant challenges' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 7. Learning style ──────────────────────────────────────────────────────\n\nexport const learningStyleOptions = [\n { value: 'visual', label: 'Visual learner' },\n { value: 'auditory', label: 'Auditory learner' },\n { value: 'kinesthetic', label: 'Kinesthetic / hands-on' },\n { value: 'reading_writing', label: 'Reading & writing' },\n { value: 'multimodal', label: 'Multimodal (combination)' },\n { value: 'needs_repetition', label: 'Needs repetition' },\n { value: 'needs_structure', label: 'Learns best with structure' },\n { value: 'prefers_autonomy', label: 'Learns best with autonomy' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 8. Communication preference ────────────────────────────────────────────\n\nexport const communicationPreferenceOptions = [\n { value: 'face_to_face', label: 'Face-to-face verbal' },\n { value: 'written', label: 'Written (text / email / chat)' },\n { value: 'phone', label: 'Phone calls' },\n { value: 'video', label: 'Video calls' },\n { value: 'small_groups', label: 'Small groups only' },\n { value: 'one_on_one', label: 'One-on-one' },\n { value: 'visual_aids', label: 'With visual aids' },\n { value: 'async', label: 'Async over synchronous' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 9. Support & accommodations ────────────────────────────────────────────\n\nexport const supportAccommodationOptions = [\n { value: 'flexible_schedule', label: 'Flexible schedule / deadlines' },\n { value: 'written_instructions', label: 'Written instructions' },\n { value: 'quiet_workspace', label: 'Quiet workspace' },\n { value: 'regular_breaks', label: 'Regular breaks' },\n { value: 'body_doubling', label: 'Body-doubling / co-working' },\n { value: 'assistive_tech', label: 'Assistive technology' },\n { value: 'noise_cancelling', label: 'Noise-cancelling headphones' },\n { value: 'fidget_tools', label: 'Fidget tools / sensory items' },\n { value: 'structured_routines', label: 'Structured routines' },\n { value: 'clear_expectations', label: 'Clear expectations' },\n { value: 'visual_schedules', label: 'Visual schedules / checklists' },\n { value: 'therapy', label: 'Professional therapy / counseling' },\n { value: 'medication', label: 'Medication' },\n { value: 'peer_support', label: 'Peer support groups' },\n { value: 'coaching', label: 'ADHD / ASD coaching' },\n { value: 'family_support', label: 'Family / caregiver support' },\n { value: 'none', label: 'No specific support needed' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 10. Masking & burnout ──────────────────────────────────────────────────\n\nexport const maskingBurnoutOptions = [\n {\n value: 'frequently',\n label: 'Frequently — leads to burnout',\n description: 'Mask most of the time; often experience burnout',\n },\n { value: 'sometimes', label: 'Sometimes', description: 'Mask in certain settings' },\n { value: 'rarely', label: 'Rarely' },\n { value: 'never', label: 'Never' },\n { value: 'not_sure', label: 'Not sure what this means' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── 11. Impact on daily life ───────────────────────────────────────────────\n\nexport const impactOnLifeOptions = [\n {\n value: 'significant',\n label: 'Significant impact',\n description: 'Need daily support to function',\n },\n {\n value: 'moderate',\n label: 'Moderate impact',\n description: 'Some support helps me thrive',\n },\n { value: 'mild', label: 'Mild impact', description: 'Manageable with awareness' },\n { value: 'minimal', label: 'Minimal / no noticeable impact' },\n { value: 'varies', label: 'Varies day to day' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n] as const;\n\n// ─── Field Group ────────────────────────────────────────────────────────────\n\nconst IDENTITY_SKIP = ['no_neurotypical', 'prefer_not_to_say']; // conditional hide list\n\nexport const neurodiversity: FieldGroup = {\n key: 'neurodiversity',\n label: 'Neurodiversity',\n step: 8,\n description:\n 'Neurodivergent identity, sensory profile, cognitive strengths, executive function, and support needs.',\n fields: [\n {\n order: 1,\n key: 'neurodiverseIdentity',\n label: 'Neurodivergent Identity',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...neurodiverseIdentityOptions],\n },\n {\n order: 2,\n key: 'conditions',\n label: 'Specific Conditions',\n type: 'multi_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...neurodiversityConditionOptions],\n conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },\n },\n {\n order: 3,\n key: 'ageOfRealization',\n label: 'Age of Realization',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...ageOfRealizationOptions],\n conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },\n },\n {\n order: 4,\n key: 'sensoryProfile',\n label: 'Sensory Profile',\n type: 'multi_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...sensoryProfileOptions],\n conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },\n },\n {\n order: 5,\n key: 'cognitiveStrengths',\n label: 'Cognitive Strengths',\n type: 'multi_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...cognitiveStrengthOptions],\n conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },\n },\n {\n order: 6,\n key: 'executiveFunctionChallenges',\n label: 'Executive Function Challenges',\n type: 'multi_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...executiveFunctionChallengeOptions],\n conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },\n },\n {\n order: 7,\n key: 'learningStyle',\n label: 'Learning Style',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...learningStyleOptions],\n },\n {\n order: 8,\n key: 'communicationPreference',\n label: 'Communication Preference',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...communicationPreferenceOptions],\n },\n {\n order: 9,\n key: 'supportAndAccommodations',\n label: 'Support & Accommodations',\n type: 'multi_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...supportAccommodationOptions],\n conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },\n },\n {\n order: 10,\n key: 'maskingAndBurnout',\n label: 'Masking & Burnout',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...maskingBurnoutOptions],\n conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },\n },\n {\n order: 11,\n key: 'impactOnLife',\n label: 'Impact on Daily Life',\n type: 'single_select',\n step: 8,\n isOnboarding: true,\n optional: true,\n options: [...impactOnLifeOptions],\n conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },\n },\n ],\n};\n"]}
|
|
@@ -10,9 +10,9 @@ export { civicEngagementOptions, electionResultOptions, officeElectionLevelOptio
|
|
|
10
10
|
export { electoralBehaviour, votingIssueOptions } from './03-electoral.js';
|
|
11
11
|
export { desiredPoliticalPositionOptions, leadershipAmbitions, leadershipSkillsetOptions, } from './04-leadership.js';
|
|
12
12
|
export { mbtiOptions, psychologicalAssessment } from './05-psychological.js';
|
|
13
|
-
export { education, qualificationOptions } from './06-education.js';
|
|
13
|
+
export { boardOptions, degreeNameOptions, education, qualificationOptions, streamOptions, subjectOptions, } from './06-education.js';
|
|
14
14
|
export { employment, employmentStatusOptions, incomeRangeOptions, shiftOptions, } from './07-employment.js';
|
|
15
|
-
export { neurodiversity, neurodiversityConditionOptions,
|
|
15
|
+
export { ageOfRealizationOptions, cognitiveStrengthOptions, communicationPreferenceOptions, executiveFunctionChallengeOptions, impactOnLifeOptions, learningStyleOptions, maskingBurnoutOptions, neurodiverseIdentityOptions, neurodiversity, neurodiversityConditionOptions, sensoryProfileOptions, supportAccommodationOptions, } from './08-neurodiversity.js';
|
|
16
16
|
export { dietOptions, disabilityOptions, healthLifestyle, substanceUseOptions, } from './09-health.js';
|
|
17
17
|
export { casteDiscriminationPlaceOptions, lgbtqStatementOptions, transgenderStatementOptions, worldView, } from './10-worldview.js';
|
|
18
18
|
export { residence } from './11-residence.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/profile-fields/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,YAAY,EACV,SAAS,EACT,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,WAAW,EACX,YAAY,EACZ,WAAW,EACX,SAAS,GACV,MAAM,YAAY,CAAC;AAIpB,OAAO,EACL,aAAa,EACb,eAAe,EACf,eAAe,EACf,OAAO,EACP,eAAe,EACf,kBAAkB,GACnB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,sBAAsB,EACtB,qBAAqB,EACrB,0BAA0B,EAC1B,2BAA2B,EAC3B,YAAY,EACZ,oBAAoB,EACpB,wBAAwB,EACxB,0BAA0B,GAC3B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAC3E,OAAO,EACL,+BAA+B,EAC/B,mBAAmB,EACnB,yBAAyB,GAC1B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,WAAW,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/profile-fields/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,YAAY,EACV,SAAS,EACT,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,WAAW,EACX,YAAY,EACZ,WAAW,EACX,SAAS,GACV,MAAM,YAAY,CAAC;AAIpB,OAAO,EACL,aAAa,EACb,eAAe,EACf,eAAe,EACf,OAAO,EACP,eAAe,EACf,kBAAkB,GACnB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,sBAAsB,EACtB,qBAAqB,EACrB,0BAA0B,EAC1B,2BAA2B,EAC3B,YAAY,EACZ,oBAAoB,EACpB,wBAAwB,EACxB,0BAA0B,GAC3B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAC3E,OAAO,EACL,+BAA+B,EAC/B,mBAAmB,EACnB,yBAAyB,GAC1B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,WAAW,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EACL,YAAY,EACZ,iBAAiB,EACjB,SAAS,EACT,oBAAoB,EACpB,aAAa,EACb,cAAc,GACf,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,UAAU,EACV,uBAAuB,EACvB,kBAAkB,EAClB,YAAY,GACb,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,uBAAuB,EACvB,wBAAwB,EACxB,8BAA8B,EAC9B,iCAAiC,EACjC,mBAAmB,EACnB,oBAAoB,EACpB,qBAAqB,EACrB,2BAA2B,EAC3B,cAAc,EACd,8BAA8B,EAC9B,qBAAqB,EACrB,2BAA2B,GAC5B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,WAAW,EACX,iBAAiB,EACjB,eAAe,EACf,mBAAmB,GACpB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,+BAA+B,EAC/B,qBAAqB,EACrB,2BAA2B,EAC3B,SAAS,GACV,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EACL,oBAAoB,EACpB,mBAAmB,EACnB,SAAS,EACT,sBAAsB,GACvB,MAAM,mBAAmB,CAAC;AAgB3B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,cAAc,EAAE,SAAS,UAAU,EAa/C,CAAC"}
|
|
@@ -10,9 +10,9 @@ export { civicEngagementOptions, electionResultOptions, officeElectionLevelOptio
|
|
|
10
10
|
export { electoralBehaviour, votingIssueOptions } from './03-electoral.js';
|
|
11
11
|
export { desiredPoliticalPositionOptions, leadershipAmbitions, leadershipSkillsetOptions, } from './04-leadership.js';
|
|
12
12
|
export { mbtiOptions, psychologicalAssessment } from './05-psychological.js';
|
|
13
|
-
export { education, qualificationOptions } from './06-education.js';
|
|
13
|
+
export { boardOptions, degreeNameOptions, education, qualificationOptions, streamOptions, subjectOptions, } from './06-education.js';
|
|
14
14
|
export { employment, employmentStatusOptions, incomeRangeOptions, shiftOptions, } from './07-employment.js';
|
|
15
|
-
export { neurodiversity, neurodiversityConditionOptions,
|
|
15
|
+
export { ageOfRealizationOptions, cognitiveStrengthOptions, communicationPreferenceOptions, executiveFunctionChallengeOptions, impactOnLifeOptions, learningStyleOptions, maskingBurnoutOptions, neurodiverseIdentityOptions, neurodiversity, neurodiversityConditionOptions, sensoryProfileOptions, supportAccommodationOptions, } from './08-neurodiversity.js';
|
|
16
16
|
export { dietOptions, disabilityOptions, healthLifestyle, substanceUseOptions, } from './09-health.js';
|
|
17
17
|
export { casteDiscriminationPlaceOptions, lgbtqStatementOptions, transgenderStatementOptions, worldView, } from './10-worldview.js';
|
|
18
18
|
export { residence } from './11-residence.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/profile-fields/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAaH,+EAA+E;AAE/E,OAAO,EACL,aAAa,EACb,eAAe,EACf,eAAe,EACf,OAAO,EACP,eAAe,EACf,kBAAkB,GACnB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,sBAAsB,EACtB,qBAAqB,EACrB,0BAA0B,EAC1B,2BAA2B,EAC3B,YAAY,EACZ,oBAAoB,EACpB,wBAAwB,EACxB,0BAA0B,GAC3B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAC3E,OAAO,EACL,+BAA+B,EAC/B,mBAAmB,EACnB,yBAAyB,GAC1B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,WAAW,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/profile-fields/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAaH,+EAA+E;AAE/E,OAAO,EACL,aAAa,EACb,eAAe,EACf,eAAe,EACf,OAAO,EACP,eAAe,EACf,kBAAkB,GACnB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,sBAAsB,EACtB,qBAAqB,EACrB,0BAA0B,EAC1B,2BAA2B,EAC3B,YAAY,EACZ,oBAAoB,EACpB,wBAAwB,EACxB,0BAA0B,GAC3B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAC3E,OAAO,EACL,+BAA+B,EAC/B,mBAAmB,EACnB,yBAAyB,GAC1B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,WAAW,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EACL,YAAY,EACZ,iBAAiB,EACjB,SAAS,EACT,oBAAoB,EACpB,aAAa,EACb,cAAc,GACf,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,UAAU,EACV,uBAAuB,EACvB,kBAAkB,EAClB,YAAY,GACb,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,uBAAuB,EACvB,wBAAwB,EACxB,8BAA8B,EAC9B,iCAAiC,EACjC,mBAAmB,EACnB,oBAAoB,EACpB,qBAAqB,EACrB,2BAA2B,EAC3B,cAAc,EACd,8BAA8B,EAC9B,qBAAqB,EACrB,2BAA2B,GAC5B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,WAAW,EACX,iBAAiB,EACjB,eAAe,EACf,mBAAmB,GACpB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,+BAA+B,EAC/B,qBAAqB,EACrB,2BAA2B,EAC3B,SAAS,GACV,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EACL,oBAAoB,EACpB,mBAAmB,EACnB,SAAS,EACT,sBAAsB,GACvB,MAAM,mBAAmB,CAAC;AAE3B,+EAA+E;AAE/E,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAG9C,MAAM,CAAC,MAAM,cAAc,GAA0B;IACnD,OAAO;IACP,oBAAoB;IACpB,kBAAkB;IAClB,mBAAmB;IACnB,uBAAuB;IACvB,SAAS;IACT,UAAU;IACV,cAAc;IACd,eAAe;IACf,SAAS;IACT,SAAS;IACT,SAAS;CACV,CAAC","sourcesContent":["/**\n * UDP Profile Fields — barrel export.\n *\n * Mirrors the dating-schema profile-fields pattern.\n * Each file defines a FieldGroup with rich field metadata and options.\n */\n\nexport type {\n BaseField,\n FieldGroup,\n FieldOption,\n MultiSelectField,\n NumberField,\n ProfileField,\n SelectField,\n TextField,\n} from './types.js';\n\n// ── Field groups ────────────────────────────────────────────────────────────\n\nexport {\n genderOptions,\n languageOptions,\n minorityOptions,\n profile,\n religionOptions,\n reservationOptions,\n} from './01-profile.js';\nexport {\n civicEngagementOptions,\n electionResultOptions,\n officeElectionLevelOptions,\n partyAssociationRoleOptions,\n partyOptions,\n politicalAssociation,\n politicalSpectrumOptions,\n relativesInPoliticsOptions,\n} from './02-political.js';\nexport { electoralBehaviour, votingIssueOptions } from './03-electoral.js';\nexport {\n desiredPoliticalPositionOptions,\n leadershipAmbitions,\n leadershipSkillsetOptions,\n} from './04-leadership.js';\nexport { mbtiOptions, psychologicalAssessment } from './05-psychological.js';\nexport {\n boardOptions,\n degreeNameOptions,\n education,\n qualificationOptions,\n streamOptions,\n subjectOptions,\n} from './06-education.js';\nexport {\n employment,\n employmentStatusOptions,\n incomeRangeOptions,\n shiftOptions,\n} from './07-employment.js';\nexport {\n ageOfRealizationOptions,\n cognitiveStrengthOptions,\n communicationPreferenceOptions,\n executiveFunctionChallengeOptions,\n impactOnLifeOptions,\n learningStyleOptions,\n maskingBurnoutOptions,\n neurodiverseIdentityOptions,\n neurodiversity,\n neurodiversityConditionOptions,\n sensoryProfileOptions,\n supportAccommodationOptions,\n} from './08-neurodiversity.js';\nexport {\n dietOptions,\n disabilityOptions,\n healthLifestyle,\n substanceUseOptions,\n} from './09-health.js';\nexport {\n casteDiscriminationPlaceOptions,\n lgbtqStatementOptions,\n transgenderStatementOptions,\n worldView,\n} from './10-worldview.js';\nexport { residence } from './11-residence.js';\nexport {\n digitalAccessOptions,\n familyMemberOptions,\n household,\n householdIncomeOptions,\n} from './12-household.js';\n\n// ── All field groups (for building lookup maps) ─────────────────────────────\n\nimport { profile } from './01-profile.js';\nimport { politicalAssociation } from './02-political.js';\nimport { electoralBehaviour } from './03-electoral.js';\nimport { leadershipAmbitions } from './04-leadership.js';\nimport { psychologicalAssessment } from './05-psychological.js';\nimport { education } from './06-education.js';\nimport { employment } from './07-employment.js';\nimport { neurodiversity } from './08-neurodiversity.js';\nimport { healthLifestyle } from './09-health.js';\nimport { worldView } from './10-worldview.js';\nimport { residence } from './11-residence.js';\nimport { household } from './12-household.js';\nimport type { FieldGroup } from './types.js';\n\nexport const allFieldGroups: readonly FieldGroup[] = [\n profile,\n politicalAssociation,\n electoralBehaviour,\n leadershipAmbitions,\n psychologicalAssessment,\n education,\n employment,\n neurodiversity,\n healthLifestyle,\n worldView,\n residence,\n household,\n];\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progress-fields.d.ts","sourceRoot":"","sources":["../src/progress-fields.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"progress-fields.d.ts","sourceRoot":"","sources":["../src/progress-fields.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CA2HxD,CAAC;AAEX,gCAAgC;AAChC,eAAO,MAAM,eAAe,KAAK,CAAC;AAElC;;;;;;GAMG;AACH,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAE3D,CAAC;AAEX;;;GAGG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAYlF;AAED,iEAAiE;AACjE,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAcrD;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,CACnC,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,GAAG,IAAI,GACnD;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAuBnC;AAED;;;;;;;GAOG;AACH,wBAAgB,wBAAwB,CACtC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,GACnE;IACD,KAAK,EAAE;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAC/D,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;CACjB,CAeA"}
|
package/dist/progress-fields.js
CHANGED
|
@@ -76,10 +76,15 @@ export const UDP_PROGRESS_FIELDS = {
|
|
|
76
76
|
8: [
|
|
77
77
|
'neurodiverseIdentity',
|
|
78
78
|
'conditions',
|
|
79
|
-
'
|
|
79
|
+
'ageOfRealization',
|
|
80
|
+
'sensoryProfile',
|
|
81
|
+
'cognitiveStrengths',
|
|
82
|
+
'executiveFunctionChallenges',
|
|
80
83
|
'learningStyle',
|
|
81
84
|
'communicationPreference',
|
|
82
|
-
'
|
|
85
|
+
'supportAndAccommodations',
|
|
86
|
+
'maskingAndBurnout',
|
|
87
|
+
'impactOnLife',
|
|
83
88
|
],
|
|
84
89
|
9: [
|
|
85
90
|
'disabilityStatus',
|