udp-schema 2.12.0 → 2.14.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 (37) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +3 -3
  4. package/dist/index.js.map +1 -1
  5. package/dist/onboarding-config.d.ts.map +1 -1
  6. package/dist/onboarding-config.js +45 -10
  7. package/dist/onboarding-config.js.map +1 -1
  8. package/dist/onboarding-form.d.ts +44 -8
  9. package/dist/onboarding-form.d.ts.map +1 -1
  10. package/dist/profile-fields/01-profile.d.ts +30 -0
  11. package/dist/profile-fields/01-profile.d.ts.map +1 -1
  12. package/dist/profile-fields/01-profile.js +11 -0
  13. package/dist/profile-fields/01-profile.js.map +1 -1
  14. package/dist/profile-fields/06-education.d.ts +292 -0
  15. package/dist/profile-fields/06-education.d.ts.map +1 -1
  16. package/dist/profile-fields/06-education.js +125 -0
  17. package/dist/profile-fields/06-education.js.map +1 -1
  18. package/dist/profile-fields/08-neurodiversity.d.ts +373 -30
  19. package/dist/profile-fields/08-neurodiversity.d.ts.map +1 -1
  20. package/dist/profile-fields/08-neurodiversity.js +305 -53
  21. package/dist/profile-fields/08-neurodiversity.js.map +1 -1
  22. package/dist/profile-fields/index.d.ts +2 -2
  23. package/dist/profile-fields/index.d.ts.map +1 -1
  24. package/dist/profile-fields/index.js +2 -2
  25. package/dist/profile-fields/index.js.map +1 -1
  26. package/dist/progress-fields.d.ts.map +1 -1
  27. package/dist/progress-fields.js +7 -2
  28. package/dist/progress-fields.js.map +1 -1
  29. package/dist/step-06.schema.d.ts +2 -1
  30. package/dist/step-06.schema.d.ts.map +1 -1
  31. package/dist/step-06.schema.js +13 -3
  32. package/dist/step-06.schema.js.map +1 -1
  33. package/dist/step-08.schema.d.ts +50 -10
  34. package/dist/step-08.schema.d.ts.map +1 -1
  35. package/dist/step-08.schema.js +65 -15
  36. package/dist/step-08.schema.js.map +1 -1
  37. package/package.json +1 -1
@@ -1,20 +1,75 @@
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
+ },
34
+ {
35
+ value: 'exploring',
36
+ label: 'Exploring / suspect',
37
+ description: "Not sure yet — exploring whether I'm neurodivergent",
38
+ },
39
+ {
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 ──────────────────────────────────────────────
1
47
  export const neurodiversityConditionOptions = [
2
- { value: 'adhd', label: 'ADHD', description: 'Attention Deficit Hyperactivity Disorder' },
48
+ { value: 'adhd', label: 'ADHD / ADD', description: 'Attention Deficit Hyperactivity Disorder' },
3
49
  {
4
50
  value: 'autism_spectrum',
5
- label: 'Autism Spectrum',
6
- description: 'Autism Spectrum Disorder (ASD)',
51
+ label: 'Autism Spectrum (ASC / ASD)',
52
+ description: 'Autism Spectrum Condition',
7
53
  },
8
54
  {
9
55
  value: 'dyslexia',
10
56
  label: 'Dyslexia',
11
- description: 'Difficulty with reading and language processing',
57
+ description: 'Reading and language-processing differences',
58
+ },
59
+ {
60
+ value: 'dyspraxia',
61
+ label: 'Dyspraxia / DCD',
62
+ description: 'Developmental Coordination Disorder — motor coordination',
12
63
  },
13
- { value: 'dyspraxia', label: 'Dyspraxia', description: 'Difficulty with motor coordination' },
14
64
  { value: 'dyscalculia', label: 'Dyscalculia', description: 'Difficulty with numbers and math' },
65
+ {
66
+ value: 'dysgraphia',
67
+ label: 'Dysgraphia',
68
+ description: 'Difficulty with writing / fine motor for writing',
69
+ },
15
70
  {
16
71
  value: 'tourettes',
17
- label: "Tourette's Syndrome",
72
+ label: "Tourette's / Tic Disorder",
18
73
  description: 'Involuntary tics and movements',
19
74
  },
20
75
  { value: 'ocd', label: 'OCD', description: 'Obsessive-Compulsive Disorder' },
@@ -28,118 +83,315 @@ export const neurodiversityConditionOptions = [
28
83
  label: 'Anxiety Disorder',
29
84
  description: 'Persistent excessive worry',
30
85
  },
86
+ {
87
+ value: 'depression_mood',
88
+ label: 'Depression / Mood Disorder',
89
+ description: 'Clinical depression or mood disorders',
90
+ },
91
+ {
92
+ value: 'ptsd',
93
+ label: 'PTSD / C-PTSD',
94
+ description: 'Post-traumatic stress (including complex)',
95
+ },
31
96
  {
32
97
  value: 'sensory_processing',
33
98
  label: 'Sensory Processing Disorder',
34
99
  description: 'Difficulty processing sensory information',
35
100
  },
101
+ {
102
+ value: 'auditory_processing',
103
+ label: 'Auditory Processing Disorder',
104
+ description: 'Difficulty processing sounds despite normal hearing',
105
+ },
106
+ {
107
+ value: 'visual_processing',
108
+ label: 'Visual Processing Disorder',
109
+ description: 'Difficulty processing visual information',
110
+ },
111
+ {
112
+ value: 'giftedness_2e',
113
+ label: 'Giftedness / Twice-Exceptional (2e)',
114
+ description: 'High cognitive ability, often with ND',
115
+ },
116
+ {
117
+ value: 'specific_language_impairment',
118
+ label: 'Specific Language Impairment',
119
+ description: 'Language development differences',
120
+ },
121
+ { value: 'stuttering', label: 'Stuttering / Speech Disorder' },
122
+ { value: 'schizophrenia', label: 'Schizophrenia / Schizoaffective' },
123
+ {
124
+ value: 'eating_disorder',
125
+ label: 'Eating Disorder',
126
+ description: 'Anorexia, bulimia, binge, ARFID, etc.',
127
+ },
128
+ { value: 'bpd', label: 'Borderline Personality (BPD)' },
129
+ { value: 'intellectual_disability', label: 'Intellectual Disability' },
36
130
  { value: 'other', label: 'Other' },
37
131
  { value: 'prefer_not_to_say', label: 'Prefer not to say' },
38
132
  ];
39
- export const sensoryPreferenceOptions = [
40
- { value: 'loud_sounds', label: 'Sensitive to loud sounds' },
41
- { value: 'bright_lights', label: 'Sensitive to bright lights' },
42
- { value: 'textures', label: 'Sensitive to textures' },
43
- { value: 'smells', label: 'Sensitive to smells' },
44
- { value: 'quiet_environment', label: 'Needs quiet environment' },
133
+ // ─── 3. Age of realization / diagnosis ──────────────────────────────────────
134
+ export const ageOfRealizationOptions = [
135
+ { value: 'childhood', label: 'Childhood (before 13)' },
136
+ { value: 'teen', label: 'Teen years (13–18)' },
137
+ { value: 'young_adult', label: 'Young adult (19–30)' },
138
+ { value: 'adult', label: 'Adult (31–50)' },
139
+ { value: 'later_life', label: 'Later in life (50+)' },
140
+ { value: 'still_exploring', label: 'Still exploring' },
141
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
142
+ ];
143
+ // ─── 4. Sensory profile ─────────────────────────────────────────────────────
144
+ export const sensoryProfileOptions = [
145
+ { value: 'hyper_sound', label: 'Hypersensitive to sound' },
146
+ { value: 'hypo_sound', label: 'Hyposensitive to sound' },
147
+ { value: 'hyper_light', label: 'Hypersensitive to light' },
148
+ { value: 'hypo_light', label: 'Hyposensitive to light' },
149
+ { value: 'hyper_touch', label: 'Hypersensitive to touch / textures' },
150
+ { value: 'hypo_touch', label: 'Hyposensitive to touch' },
151
+ { value: 'hyper_smell', label: 'Hypersensitive to smells' },
152
+ { value: 'hypo_smell', label: 'Hyposensitive to smells' },
153
+ { value: 'hyper_taste', label: 'Hypersensitive to taste' },
154
+ { value: 'hypo_taste', label: 'Hyposensitive to taste' },
45
155
  { value: 'seeks_stimulation', label: 'Seeks sensory stimulation' },
46
- { value: 'no_specific', label: 'No specific sensory needs' },
156
+ { value: 'sensory_overwhelm', label: 'Sensory overwhelm / shutdown' },
157
+ { value: 'none', label: 'No specific sensitivities' },
158
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
159
+ ];
160
+ // ─── 5. Cognitive strengths ─────────────────────────────────────────────────
161
+ export const cognitiveStrengthOptions = [
162
+ { value: 'hyperfocus', label: 'Hyperfocus on interests' },
163
+ { value: 'pattern_recognition', label: 'Pattern recognition' },
164
+ { value: 'creative_thinking', label: 'Creative / divergent thinking' },
165
+ { value: 'attention_to_detail', label: 'Attention to detail' },
166
+ { value: 'systems_thinking', label: 'Systems thinking' },
167
+ { value: 'big_picture', label: 'Big-picture thinking' },
168
+ { value: 'visual_spatial', label: 'Visual-spatial skills' },
169
+ { value: 'specialized_memory', label: 'Specialized / topic memory' },
170
+ { value: 'problem_solving', label: 'Problem-solving' },
171
+ { value: 'empathy', label: 'Empathy / emotional insight' },
172
+ { value: 'passionate_curiosity', label: 'Passionate curiosity' },
173
+ { value: 'directness_honesty', label: 'Honesty / directness' },
174
+ { value: 'persistence', label: 'Persistence' },
175
+ { value: 'none_unsure', label: 'None / unsure' },
176
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
47
177
  ];
48
- export const supportNeedOptions = [
49
- { value: 'flexible_deadlines', label: 'Flexible deadlines' },
178
+ // ─── 6. Executive function challenges ───────────────────────────────────────
179
+ export const executiveFunctionChallengeOptions = [
180
+ { value: 'planning_organization', label: 'Planning / organization' },
181
+ { value: 'time_management', label: 'Time management / time blindness' },
182
+ { value: 'task_initiation', label: 'Task initiation (getting started)' },
183
+ { value: 'task_switching', label: 'Task switching / transitions' },
184
+ { value: 'working_memory', label: 'Working memory' },
185
+ { value: 'emotional_regulation', label: 'Emotional regulation' },
186
+ { value: 'impulse_control', label: 'Impulse control' },
187
+ { value: 'focus_attention', label: 'Focus / sustaining attention' },
188
+ { value: 'prioritization', label: 'Prioritization' },
189
+ { value: 'decision_fatigue', label: 'Decision-making / decision fatigue' },
190
+ { value: 'self_motivation', label: 'Self-motivation' },
191
+ { value: 'sleep_regulation', label: 'Sleep regulation' },
192
+ { value: 'none', label: 'No significant challenges' },
193
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
194
+ ];
195
+ // ─── 7. Learning style ──────────────────────────────────────────────────────
196
+ export const learningStyleOptions = [
197
+ { value: 'visual', label: 'Visual learner' },
198
+ { value: 'auditory', label: 'Auditory learner' },
199
+ { value: 'kinesthetic', label: 'Kinesthetic / hands-on' },
200
+ { value: 'reading_writing', label: 'Reading & writing' },
201
+ { value: 'multimodal', label: 'Multimodal (combination)' },
202
+ { value: 'needs_repetition', label: 'Needs repetition' },
203
+ { value: 'needs_structure', label: 'Learns best with structure' },
204
+ { value: 'prefers_autonomy', label: 'Learns best with autonomy' },
205
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
206
+ ];
207
+ // ─── 8. Communication preference ────────────────────────────────────────────
208
+ export const communicationPreferenceOptions = [
209
+ { value: 'face_to_face', label: 'Face-to-face verbal' },
210
+ { value: 'written', label: 'Written (text / email / chat)' },
211
+ { value: 'phone', label: 'Phone calls' },
212
+ { value: 'video', label: 'Video calls' },
213
+ { value: 'small_groups', label: 'Small groups only' },
214
+ { value: 'one_on_one', label: 'One-on-one' },
215
+ { value: 'visual_aids', label: 'With visual aids' },
216
+ { value: 'async', label: 'Async over synchronous' },
217
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
218
+ ];
219
+ // ─── 9. Support & accommodations ────────────────────────────────────────────
220
+ export const supportAccommodationOptions = [
221
+ { value: 'flexible_schedule', label: 'Flexible schedule / deadlines' },
50
222
  { value: 'written_instructions', label: 'Written instructions' },
51
223
  { value: 'quiet_workspace', label: 'Quiet workspace' },
52
224
  { value: 'regular_breaks', label: 'Regular breaks' },
225
+ { value: 'body_doubling', label: 'Body-doubling / co-working' },
226
+ { value: 'assistive_tech', label: 'Assistive technology' },
227
+ { value: 'noise_cancelling', label: 'Noise-cancelling headphones' },
228
+ { value: 'fidget_tools', label: 'Fidget tools / sensory items' },
53
229
  { value: 'structured_routines', label: 'Structured routines' },
54
- { value: 'assistive_technology', label: 'Assistive technology' },
55
- { value: 'peer_support', label: 'Peer support' },
56
- { value: 'professional_support', label: 'Professional support' },
57
- { value: 'no_specific', label: 'No specific needs' },
230
+ { value: 'clear_expectations', label: 'Clear expectations' },
231
+ { value: 'visual_schedules', label: 'Visual schedules / checklists' },
232
+ { value: 'therapy', label: 'Professional therapy / counseling' },
233
+ { value: 'medication', label: 'Medication' },
234
+ { value: 'peer_support', label: 'Peer support groups' },
235
+ { value: 'coaching', label: 'ADHD / ASD coaching' },
236
+ { value: 'family_support', label: 'Family / caregiver support' },
237
+ { value: 'none', label: 'No specific support needed' },
238
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
239
+ ];
240
+ // ─── 10. Masking & burnout ──────────────────────────────────────────────────
241
+ export const maskingBurnoutOptions = [
242
+ {
243
+ value: 'frequently',
244
+ label: 'Frequently — leads to burnout',
245
+ description: 'Mask most of the time; often experience burnout',
246
+ },
247
+ { value: 'sometimes', label: 'Sometimes', description: 'Mask in certain settings' },
248
+ { value: 'rarely', label: 'Rarely' },
249
+ { value: 'never', label: 'Never' },
250
+ { value: 'not_sure', label: 'Not sure what this means' },
251
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
58
252
  ];
253
+ // ─── 11. Impact on daily life ───────────────────────────────────────────────
254
+ export const impactOnLifeOptions = [
255
+ {
256
+ value: 'significant',
257
+ label: 'Significant impact',
258
+ description: 'Need daily support to function',
259
+ },
260
+ {
261
+ value: 'moderate',
262
+ label: 'Moderate impact',
263
+ description: 'Some support helps me thrive',
264
+ },
265
+ { value: 'mild', label: 'Mild impact', description: 'Manageable with awareness' },
266
+ { value: 'minimal', label: 'Minimal / no noticeable impact' },
267
+ { value: 'varies', label: 'Varies day to day' },
268
+ { value: 'prefer_not_to_say', label: 'Prefer not to say' },
269
+ ];
270
+ // ─── Field Group ────────────────────────────────────────────────────────────
271
+ const IDENTITY_SKIP = ['no_neurotypical', 'prefer_not_to_say']; // conditional hide list
59
272
  export const neurodiversity = {
60
273
  key: 'neurodiversity',
61
274
  label: 'Neurodiversity',
62
275
  step: 8,
63
- description: 'Neurodivergent identity, learning style, and support needs.',
276
+ description: 'Neurodivergent identity, sensory profile, cognitive strengths, executive function, and support needs.',
64
277
  fields: [
65
278
  {
66
279
  order: 1,
67
280
  key: 'neurodiverseIdentity',
68
- label: 'Neurodiverse Identity',
281
+ label: 'Neurodivergent Identity',
69
282
  type: 'single_select',
70
283
  step: 8,
71
284
  isOnboarding: true,
72
285
  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
- ],
286
+ options: [...neurodiverseIdentityOptions],
79
287
  },
80
288
  {
81
289
  order: 2,
82
290
  key: 'conditions',
83
- label: 'Conditions',
291
+ label: 'Specific Conditions',
84
292
  type: 'multi_select',
85
293
  step: 8,
86
294
  isOnboarding: true,
87
295
  optional: true,
88
296
  options: [...neurodiversityConditionOptions],
89
- conditionalOn: { field: 'neurodiverseIdentity', values: ['yes', 'exploring'] },
297
+ conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
90
298
  },
91
299
  {
92
300
  order: 3,
93
- key: 'sensoryPreferences',
94
- label: 'Sensory Preferences',
95
- type: 'multi_select',
301
+ key: 'ageOfRealization',
302
+ label: 'Age of Realization',
303
+ type: 'single_select',
96
304
  step: 8,
97
305
  isOnboarding: true,
98
306
  optional: true,
99
- options: [...sensoryPreferenceOptions],
307
+ options: [...ageOfRealizationOptions],
308
+ conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
100
309
  },
101
310
  {
102
311
  order: 4,
312
+ key: 'sensoryProfile',
313
+ label: 'Sensory Profile',
314
+ type: 'multi_select',
315
+ step: 8,
316
+ isOnboarding: true,
317
+ optional: true,
318
+ options: [...sensoryProfileOptions],
319
+ conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
320
+ },
321
+ {
322
+ order: 5,
323
+ key: 'cognitiveStrengths',
324
+ label: 'Cognitive Strengths',
325
+ type: 'multi_select',
326
+ step: 8,
327
+ isOnboarding: true,
328
+ optional: true,
329
+ options: [...cognitiveStrengthOptions],
330
+ conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
331
+ },
332
+ {
333
+ order: 6,
334
+ key: 'executiveFunctionChallenges',
335
+ label: 'Executive Function Challenges',
336
+ type: 'multi_select',
337
+ step: 8,
338
+ isOnboarding: true,
339
+ optional: true,
340
+ options: [...executiveFunctionChallengeOptions],
341
+ conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
342
+ },
343
+ {
344
+ order: 7,
103
345
  key: 'learningStyle',
104
346
  label: 'Learning Style',
105
347
  type: 'single_select',
106
348
  step: 8,
107
349
  isOnboarding: true,
108
350
  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
- ],
351
+ options: [...learningStyleOptions],
116
352
  },
117
353
  {
118
- order: 5,
354
+ order: 8,
119
355
  key: 'communicationPreference',
120
356
  label: 'Communication Preference',
121
357
  type: 'single_select',
122
358
  step: 8,
123
359
  isOnboarding: true,
124
360
  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
- ],
361
+ options: [...communicationPreferenceOptions],
133
362
  },
134
363
  {
135
- order: 6,
136
- key: 'supportNeeds',
137
- label: 'Support Needs',
364
+ order: 9,
365
+ key: 'supportAndAccommodations',
366
+ label: 'Support & Accommodations',
138
367
  type: 'multi_select',
139
368
  step: 8,
140
369
  isOnboarding: true,
141
370
  optional: true,
142
- options: [...supportNeedOptions],
371
+ options: [...supportAccommodationOptions],
372
+ conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
373
+ },
374
+ {
375
+ order: 10,
376
+ key: 'maskingAndBurnout',
377
+ label: 'Masking & Burnout',
378
+ type: 'single_select',
379
+ step: 8,
380
+ isOnboarding: true,
381
+ optional: true,
382
+ options: [...maskingBurnoutOptions],
383
+ conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
384
+ },
385
+ {
386
+ order: 11,
387
+ key: 'impactOnLife',
388
+ label: 'Impact on Daily Life',
389
+ type: 'single_select',
390
+ step: 8,
391
+ isOnboarding: true,
392
+ optional: true,
393
+ options: [...impactOnLifeOptions],
394
+ conditionalOn: { field: 'neurodiverseIdentity', notIn: IDENTITY_SKIP },
143
395
  },
144
396
  ],
145
397
  };
@@ -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 {\n value: 'autism_spectrum',\n label: 'Autism Spectrum (ASC / ASD)',\n description: 'Autism Spectrum Condition',\n },\n {\n value: 'dyslexia',\n label: 'Dyslexia',\n description: 'Reading and language-processing differences',\n },\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 {\n value: 'dysgraphia',\n label: 'Dysgraphia',\n description: 'Difficulty with writing / fine motor for writing',\n },\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 {\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: 'depression_mood',\n label: 'Depression / Mood Disorder',\n description: 'Clinical depression or mood disorders',\n },\n {\n value: 'ptsd',\n label: 'PTSD / C-PTSD',\n description: 'Post-traumatic stress (including complex)',\n },\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 {\n value: 'giftedness_2e',\n label: 'Giftedness / Twice-Exceptional (2e)',\n description: 'High cognitive ability, often with ND',\n },\n {\n value: 'specific_language_impairment',\n label: 'Specific Language Impairment',\n description: 'Language development differences',\n },\n { value: 'stuttering', label: 'Stuttering / Speech Disorder' },\n { value: 'schizophrenia', label: 'Schizophrenia / Schizoaffective' },\n {\n value: 'eating_disorder',\n label: 'Eating Disorder',\n description: 'Anorexia, bulimia, binge, ARFID, etc.',\n },\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, sensoryPreferenceOptions, supportNeedOptions, } from './08-neurodiversity.js';
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,EAAE,SAAS,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACpE,OAAO,EACL,UAAU,EACV,uBAAuB,EACvB,kBAAkB,EAClB,YAAY,GACb,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,cAAc,EACd,8BAA8B,EAC9B,wBAAwB,EACxB,kBAAkB,GACnB,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"}
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, sensoryPreferenceOptions, supportNeedOptions, } from './08-neurodiversity.js';
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,EAAE,SAAS,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACpE,OAAO,EACL,UAAU,EACV,uBAAuB,EACvB,kBAAkB,EAClB,YAAY,GACb,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,cAAc,EACd,8BAA8B,EAC9B,wBAAwB,EACxB,kBAAkB,GACnB,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 { education, qualificationOptions } from './06-education.js';\nexport {\n employment,\n employmentStatusOptions,\n incomeRangeOptions,\n shiftOptions,\n} from './07-employment.js';\nexport {\n neurodiversity,\n neurodiversityConditionOptions,\n sensoryPreferenceOptions,\n supportNeedOptions,\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
+ {"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,CAsHxD,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"}
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"}