@illuminateeducation/dna-atd-frontend 1.0.1-DNAATD-2189.0 → 1.0.2-DNAATD-3045-v3-POC.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 (95) hide show
  1. package/README.md +21 -21
  2. package/dist/assets/dna-atd-frontend.css +1 -0
  3. package/dist/index.d.ts +1 -0
  4. package/dist/index.es.js +47350 -0
  5. package/dist/index.es.js.map +1 -0
  6. package/dist/src/App.vue.d.ts +2 -0
  7. package/dist/src/components/common/BaseButton.vue.d.ts +16 -0
  8. package/dist/src/components/common/BaseInput.vue.d.ts +8 -0
  9. package/dist/src/components/common/BaseModal.vue.d.ts +19 -0
  10. package/dist/src/components/common/ErrorBoundary.vue.d.ts +37 -0
  11. package/dist/src/composables/useAsync.d.ts +24 -0
  12. package/dist/src/composables/useClickOutside.d.ts +7 -0
  13. package/dist/src/composables/useForm.d.ts +38 -0
  14. package/dist/src/composables/useLocalStorage.d.ts +24 -0
  15. package/dist/src/composables/useWindowSize.d.ts +20 -0
  16. package/dist/src/config/app.config.d.ts +67 -0
  17. package/dist/src/context/backendContext.d.ts +9 -0
  18. package/dist/src/features/admin/customization/composables/useCustomization.d.ts +19 -0
  19. package/dist/src/features/admin/customization/store/customizationStore.d.ts +30 -0
  20. package/dist/src/features/admin/customization/views/CustomizationView.vue.d.ts +2 -0
  21. package/dist/src/features/admin/validation/composables/useValidation.d.ts +18 -0
  22. package/dist/src/features/admin/validation/store/validationStore.d.ts +27 -0
  23. package/dist/src/features/admin/validation/views/ValidationView.vue.d.ts +2 -0
  24. package/dist/src/features/reports/codeBasedJasper/components/AssessmentFinder.vue.d.ts +618 -0
  25. package/dist/src/features/reports/codeBasedJasper/components/DownloadButtons.vue.d.ts +13 -0
  26. package/dist/src/features/reports/codeBasedJasper/components/FavoritesWidget.vue.d.ts +10 -0
  27. package/dist/src/features/reports/codeBasedJasper/components/MultipleAssessmentIdsField.vue.d.ts +18 -0
  28. package/dist/src/features/reports/codeBasedJasper/components/ReportFilters.vue.d.ts +18 -0
  29. package/dist/src/features/reports/codeBasedJasper/components/ReportPagination.vue.d.ts +11 -0
  30. package/dist/src/features/reports/codeBasedJasper/components/ReportViewer.vue.d.ts +16 -0
  31. package/dist/src/features/reports/codeBasedJasper/composables/useCodeBasedJasper.d.ts +184 -0
  32. package/dist/src/features/reports/codeBasedJasper/mount.d.ts +1 -0
  33. package/dist/src/features/reports/codeBasedJasper/services/codeBasedJasperApi.d.ts +190 -0
  34. package/dist/src/features/reports/codeBasedJasper/store/codeBasedJasperStore.d.ts +503 -0
  35. package/dist/src/features/reports/codeBasedJasper/types/index.d.ts +54 -0
  36. package/dist/src/features/reports/codeBasedJasper/views/CodeBasedJasperReportView.vue.d.ts +32 -0
  37. package/dist/src/index.d.ts +51 -0
  38. package/dist/src/layouts/AdminLayout.vue.d.ts +2 -0
  39. package/dist/src/plugins/globalErrorHandling.d.ts +36 -0
  40. package/dist/src/plugins/vuetify.d.ts +86 -0
  41. package/dist/src/router/index.d.ts +16 -0
  42. package/dist/src/services/apiService.d.ts +33 -0
  43. package/dist/src/services/integration.d.ts +54 -0
  44. package/dist/src/types/api.d.ts +27 -0
  45. package/dist/src/types/backend.d.ts +27 -0
  46. package/dist/src/utils/helpers.d.ts +50 -0
  47. package/dist/src/utils/safeJson.d.ts +17 -0
  48. package/dist/src/views/HomeView.vue.d.ts +2 -0
  49. package/dist/src/views/NotFoundView.vue.d.ts +2 -0
  50. package/package.json +33 -22
  51. package/dist/.vite/manifest.json +0 -87
  52. package/dist/assets/AdminLayout.css +0 -1
  53. package/dist/assets/AdminLayout.js +0 -1
  54. package/dist/assets/CustomizationView.css +0 -1
  55. package/dist/assets/CustomizationView.js +0 -1
  56. package/dist/assets/HomeView.css +0 -1
  57. package/dist/assets/HomeView.js +0 -1
  58. package/dist/assets/NotFoundView.css +0 -1
  59. package/dist/assets/NotFoundView.js +0 -1
  60. package/dist/assets/ValidationView.css +0 -1
  61. package/dist/assets/ValidationView.js +0 -1
  62. package/dist/assets/_plugin-vue_export-helper.js +0 -1
  63. package/dist/assets/index.css +0 -1
  64. package/dist/assets/index.js +0 -2
  65. package/dist/index.html +0 -14
  66. package/index.js +0 -1
  67. package/src/App.vue +0 -68
  68. package/src/__tests__/App.spec.js +0 -26
  69. package/src/components/common/BaseButton.vue +0 -20
  70. package/src/components/common/BaseInput.vue +0 -27
  71. package/src/components/common/BaseModal.vue +0 -37
  72. package/src/composables/useAsync.js +0 -34
  73. package/src/composables/useClickOutside.js +0 -29
  74. package/src/composables/useForm.js +0 -89
  75. package/src/composables/useLocalStorage.js +0 -51
  76. package/src/composables/useWindowSize.js +0 -30
  77. package/src/config/app.config.js +0 -79
  78. package/src/features/admin/customization/composables/useCustomization.js +0 -19
  79. package/src/features/admin/customization/store/customizationStore.js +0 -30
  80. package/src/features/admin/customization/views/CustomizationView.vue +0 -17
  81. package/src/features/admin/validation/composables/useValidation.js +0 -18
  82. package/src/features/admin/validation/store/validationStore.js +0 -25
  83. package/src/features/admin/validation/views/ValidationView.vue +0 -17
  84. package/src/index.js +0 -53
  85. package/src/layouts/AdminLayout.vue +0 -146
  86. package/src/main.js +0 -41
  87. package/src/router/index.js +0 -57
  88. package/src/services/apiService.js +0 -72
  89. package/src/services/integration.js +0 -59
  90. package/src/services/phpIntegration.js +0 -1
  91. package/src/stores/counter.js +0 -12
  92. package/src/utils/helpers.js +0 -119
  93. package/src/utils/validators.js +0 -131
  94. package/src/views/HomeView.vue +0 -121
  95. package/src/views/NotFoundView.vue +0 -56
@@ -0,0 +1,618 @@
1
+ import { ReportData } from '../services/codeBasedJasperApi';
2
+ interface AssessmentItem {
3
+ type_id: number;
4
+ title: string;
5
+ date_administered: string;
6
+ author?: string;
7
+ [key: string]: unknown;
8
+ }
9
+ type __VLS_Props = {
10
+ finderData?: ReportData['assessment_finder_data'];
11
+ extraHtml?: string;
12
+ };
13
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
+ "assessments-changed": (assessments: AssessmentItem[]) => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ "onAssessments-changed"?: ((assessments: AssessmentItem[]) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
18
+ searchForm: import('vue').CreateComponentPublicInstanceWithMixins<{
19
+ style: string | false | import('vue').StyleValue[] | import('vue').CSSProperties | null;
20
+ disabled: boolean;
21
+ fastFail: boolean;
22
+ readonly: boolean;
23
+ modelValue: boolean | null;
24
+ validateOn: "blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit");
25
+ } & {
26
+ class?: any;
27
+ } & {
28
+ $children?: {
29
+ default?: ((arg: {
30
+ errors: import('vue').Ref<{
31
+ id: string | number;
32
+ errorMessages: string[];
33
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
34
+ id: string | number;
35
+ errorMessages: string[];
36
+ }[]>;
37
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
38
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
39
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
40
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
41
+ readonly externalValue: boolean | null;
42
+ };
43
+ items: import('vue').Ref<{
44
+ id: string | number;
45
+ validate: () => Promise<string[]>;
46
+ reset: () => Promise<void>;
47
+ resetValidation: () => Promise<void>;
48
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
49
+ isValid: boolean | null;
50
+ errorMessages: string[];
51
+ }[], import('vuetify/lib/composables/form').FormField[] | {
52
+ id: string | number;
53
+ validate: () => Promise<string[]>;
54
+ reset: () => Promise<void>;
55
+ resetValidation: () => Promise<void>;
56
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
57
+ isValid: boolean | null;
58
+ errorMessages: string[];
59
+ }[]>;
60
+ validate: () => Promise<{
61
+ valid: boolean;
62
+ errors: {
63
+ id: string | number;
64
+ errorMessages: string[];
65
+ }[];
66
+ }>;
67
+ reset: () => void;
68
+ resetValidation: () => void;
69
+ }) => import('vue').VNodeChild) | undefined;
70
+ } | {
71
+ $stable?: boolean | undefined;
72
+ } | ((arg: {
73
+ errors: import('vue').Ref<{
74
+ id: string | number;
75
+ errorMessages: string[];
76
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
77
+ id: string | number;
78
+ errorMessages: string[];
79
+ }[]>;
80
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
81
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
82
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
83
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
84
+ readonly externalValue: boolean | null;
85
+ };
86
+ items: import('vue').Ref<{
87
+ id: string | number;
88
+ validate: () => Promise<string[]>;
89
+ reset: () => Promise<void>;
90
+ resetValidation: () => Promise<void>;
91
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
92
+ isValid: boolean | null;
93
+ errorMessages: string[];
94
+ }[], import('vuetify/lib/composables/form').FormField[] | {
95
+ id: string | number;
96
+ validate: () => Promise<string[]>;
97
+ reset: () => Promise<void>;
98
+ resetValidation: () => Promise<void>;
99
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
100
+ isValid: boolean | null;
101
+ errorMessages: string[];
102
+ }[]>;
103
+ validate: () => Promise<{
104
+ valid: boolean;
105
+ errors: {
106
+ id: string | number;
107
+ errorMessages: string[];
108
+ }[];
109
+ }>;
110
+ reset: () => void;
111
+ resetValidation: () => void;
112
+ }) => import('vue').VNodeChild) | import('vue').VNodeChild;
113
+ "v-slots"?: {
114
+ default?: false | ((arg: {
115
+ errors: import('vue').Ref<{
116
+ id: string | number;
117
+ errorMessages: string[];
118
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
119
+ id: string | number;
120
+ errorMessages: string[];
121
+ }[]>;
122
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
123
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
124
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
125
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
126
+ readonly externalValue: boolean | null;
127
+ };
128
+ items: import('vue').Ref<{
129
+ id: string | number;
130
+ validate: () => Promise<string[]>;
131
+ reset: () => Promise<void>;
132
+ resetValidation: () => Promise<void>;
133
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
134
+ isValid: boolean | null;
135
+ errorMessages: string[];
136
+ }[], import('vuetify/lib/composables/form').FormField[] | {
137
+ id: string | number;
138
+ validate: () => Promise<string[]>;
139
+ reset: () => Promise<void>;
140
+ resetValidation: () => Promise<void>;
141
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
142
+ isValid: boolean | null;
143
+ errorMessages: string[];
144
+ }[]>;
145
+ validate: () => Promise<{
146
+ valid: boolean;
147
+ errors: {
148
+ id: string | number;
149
+ errorMessages: string[];
150
+ }[];
151
+ }>;
152
+ reset: () => void;
153
+ resetValidation: () => void;
154
+ }) => import('vue').VNodeChild) | undefined;
155
+ } | undefined;
156
+ } & {
157
+ "v-slot:default"?: false | ((arg: {
158
+ errors: import('vue').Ref<{
159
+ id: string | number;
160
+ errorMessages: string[];
161
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
162
+ id: string | number;
163
+ errorMessages: string[];
164
+ }[]>;
165
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
166
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
167
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
168
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
169
+ readonly externalValue: boolean | null;
170
+ };
171
+ items: import('vue').Ref<{
172
+ id: string | number;
173
+ validate: () => Promise<string[]>;
174
+ reset: () => Promise<void>;
175
+ resetValidation: () => Promise<void>;
176
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
177
+ isValid: boolean | null;
178
+ errorMessages: string[];
179
+ }[], import('vuetify/lib/composables/form').FormField[] | {
180
+ id: string | number;
181
+ validate: () => Promise<string[]>;
182
+ reset: () => Promise<void>;
183
+ resetValidation: () => Promise<void>;
184
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
185
+ isValid: boolean | null;
186
+ errorMessages: string[];
187
+ }[]>;
188
+ validate: () => Promise<{
189
+ valid: boolean;
190
+ errors: {
191
+ id: string | number;
192
+ errorMessages: string[];
193
+ }[];
194
+ }>;
195
+ reset: () => void;
196
+ resetValidation: () => void;
197
+ }) => import('vue').VNodeChild) | undefined;
198
+ } & {
199
+ onSubmit?: ((e: import('vuetify/lib/types').SubmitEventPromise) => any) | undefined;
200
+ "onUpdate:modelValue"?: ((val: boolean | null) => any) | undefined;
201
+ }, {
202
+ errors: import('vue').Ref<{
203
+ id: string | number;
204
+ errorMessages: string[];
205
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
206
+ id: string | number;
207
+ errorMessages: string[];
208
+ }[]>;
209
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
210
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
211
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
212
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
213
+ readonly externalValue: boolean | null;
214
+ };
215
+ items: import('vue').Ref<{
216
+ id: string | number;
217
+ validate: () => Promise<string[]>;
218
+ reset: () => Promise<void>;
219
+ resetValidation: () => Promise<void>;
220
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
221
+ isValid: boolean | null;
222
+ errorMessages: string[];
223
+ }[], import('vuetify/lib/composables/form').FormField[] | {
224
+ id: string | number;
225
+ validate: () => Promise<string[]>;
226
+ reset: () => Promise<void>;
227
+ resetValidation: () => Promise<void>;
228
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
229
+ isValid: boolean | null;
230
+ errorMessages: string[];
231
+ }[]>;
232
+ validate: () => Promise<{
233
+ valid: boolean;
234
+ errors: {
235
+ id: string | number;
236
+ errorMessages: string[];
237
+ }[];
238
+ }>;
239
+ reset: () => void;
240
+ resetValidation: () => void;
241
+ } & HTMLFormElement & {
242
+ _allExposed: {
243
+ errors: import('vue').Ref<{
244
+ id: string | number;
245
+ errorMessages: string[];
246
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
247
+ id: string | number;
248
+ errorMessages: string[];
249
+ }[]>;
250
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
251
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
252
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
253
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
254
+ readonly externalValue: boolean | null;
255
+ };
256
+ items: import('vue').Ref<{
257
+ id: string | number;
258
+ validate: () => Promise<string[]>;
259
+ reset: () => Promise<void>;
260
+ resetValidation: () => Promise<void>;
261
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
262
+ isValid: boolean | null;
263
+ errorMessages: string[];
264
+ }[], import('vuetify/lib/composables/form').FormField[] | {
265
+ id: string | number;
266
+ validate: () => Promise<string[]>;
267
+ reset: () => Promise<void>;
268
+ resetValidation: () => Promise<void>;
269
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
270
+ isValid: boolean | null;
271
+ errorMessages: string[];
272
+ }[]>;
273
+ validate: () => Promise<{
274
+ valid: boolean;
275
+ errors: {
276
+ id: string | number;
277
+ errorMessages: string[];
278
+ }[];
279
+ }>;
280
+ reset: () => void;
281
+ resetValidation: () => void;
282
+ };
283
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
284
+ "update:modelValue": (val: boolean | null) => true;
285
+ submit: (e: import('vuetify/lib/types').SubmitEventPromise) => true;
286
+ }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
287
+ style: import('vue').StyleValue;
288
+ disabled: boolean;
289
+ fastFail: boolean;
290
+ readonly: boolean;
291
+ modelValue: boolean | null;
292
+ validateOn: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
293
+ }, true, {}, import('vue').SlotsType<Partial<{
294
+ default: (arg: {
295
+ errors: import('vue').Ref<{
296
+ id: string | number;
297
+ errorMessages: string[];
298
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
299
+ id: string | number;
300
+ errorMessages: string[];
301
+ }[]>;
302
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
303
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
304
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
305
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
306
+ readonly externalValue: boolean | null;
307
+ };
308
+ items: import('vue').Ref<{
309
+ id: string | number;
310
+ validate: () => Promise<string[]>;
311
+ reset: () => Promise<void>;
312
+ resetValidation: () => Promise<void>;
313
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
314
+ isValid: boolean | null;
315
+ errorMessages: string[];
316
+ }[], import('vuetify/lib/composables/form').FormField[] | {
317
+ id: string | number;
318
+ validate: () => Promise<string[]>;
319
+ reset: () => Promise<void>;
320
+ resetValidation: () => Promise<void>;
321
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
322
+ isValid: boolean | null;
323
+ errorMessages: string[];
324
+ }[]>;
325
+ validate: () => Promise<{
326
+ valid: boolean;
327
+ errors: {
328
+ id: string | number;
329
+ errorMessages: string[];
330
+ }[];
331
+ }>;
332
+ reset: () => void;
333
+ resetValidation: () => void;
334
+ }) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
335
+ [key: string]: any;
336
+ }>[];
337
+ }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
338
+ P: {};
339
+ B: {};
340
+ D: {};
341
+ C: {};
342
+ M: {};
343
+ Defaults: {};
344
+ }, {
345
+ style: string | false | import('vue').StyleValue[] | import('vue').CSSProperties | null;
346
+ disabled: boolean;
347
+ fastFail: boolean;
348
+ readonly: boolean;
349
+ modelValue: boolean | null;
350
+ validateOn: "blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit");
351
+ } & {
352
+ class?: any;
353
+ } & {
354
+ $children?: {
355
+ default?: ((arg: {
356
+ errors: import('vue').Ref<{
357
+ id: string | number;
358
+ errorMessages: string[];
359
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
360
+ id: string | number;
361
+ errorMessages: string[];
362
+ }[]>;
363
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
364
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
365
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
366
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
367
+ readonly externalValue: boolean | null;
368
+ };
369
+ items: import('vue').Ref<{
370
+ id: string | number;
371
+ validate: () => Promise<string[]>;
372
+ reset: () => Promise<void>;
373
+ resetValidation: () => Promise<void>;
374
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
375
+ isValid: boolean | null;
376
+ errorMessages: string[];
377
+ }[], import('vuetify/lib/composables/form').FormField[] | {
378
+ id: string | number;
379
+ validate: () => Promise<string[]>;
380
+ reset: () => Promise<void>;
381
+ resetValidation: () => Promise<void>;
382
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
383
+ isValid: boolean | null;
384
+ errorMessages: string[];
385
+ }[]>;
386
+ validate: () => Promise<{
387
+ valid: boolean;
388
+ errors: {
389
+ id: string | number;
390
+ errorMessages: string[];
391
+ }[];
392
+ }>;
393
+ reset: () => void;
394
+ resetValidation: () => void;
395
+ }) => import('vue').VNodeChild) | undefined;
396
+ } | {
397
+ $stable?: boolean | undefined;
398
+ } | ((arg: {
399
+ errors: import('vue').Ref<{
400
+ id: string | number;
401
+ errorMessages: string[];
402
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
403
+ id: string | number;
404
+ errorMessages: string[];
405
+ }[]>;
406
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
407
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
408
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
409
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
410
+ readonly externalValue: boolean | null;
411
+ };
412
+ items: import('vue').Ref<{
413
+ id: string | number;
414
+ validate: () => Promise<string[]>;
415
+ reset: () => Promise<void>;
416
+ resetValidation: () => Promise<void>;
417
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
418
+ isValid: boolean | null;
419
+ errorMessages: string[];
420
+ }[], import('vuetify/lib/composables/form').FormField[] | {
421
+ id: string | number;
422
+ validate: () => Promise<string[]>;
423
+ reset: () => Promise<void>;
424
+ resetValidation: () => Promise<void>;
425
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
426
+ isValid: boolean | null;
427
+ errorMessages: string[];
428
+ }[]>;
429
+ validate: () => Promise<{
430
+ valid: boolean;
431
+ errors: {
432
+ id: string | number;
433
+ errorMessages: string[];
434
+ }[];
435
+ }>;
436
+ reset: () => void;
437
+ resetValidation: () => void;
438
+ }) => import('vue').VNodeChild) | import('vue').VNodeChild;
439
+ "v-slots"?: {
440
+ default?: false | ((arg: {
441
+ errors: import('vue').Ref<{
442
+ id: string | number;
443
+ errorMessages: string[];
444
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
445
+ id: string | number;
446
+ errorMessages: string[];
447
+ }[]>;
448
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
449
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
450
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
451
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
452
+ readonly externalValue: boolean | null;
453
+ };
454
+ items: import('vue').Ref<{
455
+ id: string | number;
456
+ validate: () => Promise<string[]>;
457
+ reset: () => Promise<void>;
458
+ resetValidation: () => Promise<void>;
459
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
460
+ isValid: boolean | null;
461
+ errorMessages: string[];
462
+ }[], import('vuetify/lib/composables/form').FormField[] | {
463
+ id: string | number;
464
+ validate: () => Promise<string[]>;
465
+ reset: () => Promise<void>;
466
+ resetValidation: () => Promise<void>;
467
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
468
+ isValid: boolean | null;
469
+ errorMessages: string[];
470
+ }[]>;
471
+ validate: () => Promise<{
472
+ valid: boolean;
473
+ errors: {
474
+ id: string | number;
475
+ errorMessages: string[];
476
+ }[];
477
+ }>;
478
+ reset: () => void;
479
+ resetValidation: () => void;
480
+ }) => import('vue').VNodeChild) | undefined;
481
+ } | undefined;
482
+ } & {
483
+ "v-slot:default"?: false | ((arg: {
484
+ errors: import('vue').Ref<{
485
+ id: string | number;
486
+ errorMessages: string[];
487
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
488
+ id: string | number;
489
+ errorMessages: string[];
490
+ }[]>;
491
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
492
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
493
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
494
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
495
+ readonly externalValue: boolean | null;
496
+ };
497
+ items: import('vue').Ref<{
498
+ id: string | number;
499
+ validate: () => Promise<string[]>;
500
+ reset: () => Promise<void>;
501
+ resetValidation: () => Promise<void>;
502
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
503
+ isValid: boolean | null;
504
+ errorMessages: string[];
505
+ }[], import('vuetify/lib/composables/form').FormField[] | {
506
+ id: string | number;
507
+ validate: () => Promise<string[]>;
508
+ reset: () => Promise<void>;
509
+ resetValidation: () => Promise<void>;
510
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
511
+ isValid: boolean | null;
512
+ errorMessages: string[];
513
+ }[]>;
514
+ validate: () => Promise<{
515
+ valid: boolean;
516
+ errors: {
517
+ id: string | number;
518
+ errorMessages: string[];
519
+ }[];
520
+ }>;
521
+ reset: () => void;
522
+ resetValidation: () => void;
523
+ }) => import('vue').VNodeChild) | undefined;
524
+ } & {
525
+ onSubmit?: ((e: import('vuetify/lib/types').SubmitEventPromise) => any) | undefined;
526
+ "onUpdate:modelValue"?: ((val: boolean | null) => any) | undefined;
527
+ }, {
528
+ errors: import('vue').Ref<{
529
+ id: string | number;
530
+ errorMessages: string[];
531
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
532
+ id: string | number;
533
+ errorMessages: string[];
534
+ }[]>;
535
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
536
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
537
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
538
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
539
+ readonly externalValue: boolean | null;
540
+ };
541
+ items: import('vue').Ref<{
542
+ id: string | number;
543
+ validate: () => Promise<string[]>;
544
+ reset: () => Promise<void>;
545
+ resetValidation: () => Promise<void>;
546
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
547
+ isValid: boolean | null;
548
+ errorMessages: string[];
549
+ }[], import('vuetify/lib/composables/form').FormField[] | {
550
+ id: string | number;
551
+ validate: () => Promise<string[]>;
552
+ reset: () => Promise<void>;
553
+ resetValidation: () => Promise<void>;
554
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
555
+ isValid: boolean | null;
556
+ errorMessages: string[];
557
+ }[]>;
558
+ validate: () => Promise<{
559
+ valid: boolean;
560
+ errors: {
561
+ id: string | number;
562
+ errorMessages: string[];
563
+ }[];
564
+ }>;
565
+ reset: () => void;
566
+ resetValidation: () => void;
567
+ } & HTMLFormElement & {
568
+ _allExposed: {
569
+ errors: import('vue').Ref<{
570
+ id: string | number;
571
+ errorMessages: string[];
572
+ }[], import('vuetify/lib/composables/form').FieldValidationResult[] | {
573
+ id: string | number;
574
+ errorMessages: string[];
575
+ }[]>;
576
+ isDisabled: Readonly<import('vue').Ref<boolean, boolean>>;
577
+ isReadonly: Readonly<import('vue').Ref<boolean, boolean>>;
578
+ isValidating: import('vue').ShallowRef<boolean, boolean>;
579
+ isValid: import('vue').Ref<boolean | null, boolean | null> & {
580
+ readonly externalValue: boolean | null;
581
+ };
582
+ items: import('vue').Ref<{
583
+ id: string | number;
584
+ validate: () => Promise<string[]>;
585
+ reset: () => Promise<void>;
586
+ resetValidation: () => Promise<void>;
587
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
588
+ isValid: boolean | null;
589
+ errorMessages: string[];
590
+ }[], import('vuetify/lib/composables/form').FormField[] | {
591
+ id: string | number;
592
+ validate: () => Promise<string[]>;
593
+ reset: () => Promise<void>;
594
+ resetValidation: () => Promise<void>;
595
+ vm: import('vue').Raw<import('vue').ComponentInternalInstance>;
596
+ isValid: boolean | null;
597
+ errorMessages: string[];
598
+ }[]>;
599
+ validate: () => Promise<{
600
+ valid: boolean;
601
+ errors: {
602
+ id: string | number;
603
+ errorMessages: string[];
604
+ }[];
605
+ }>;
606
+ reset: () => void;
607
+ resetValidation: () => void;
608
+ };
609
+ }, {}, {}, {}, {
610
+ style: import('vue').StyleValue;
611
+ disabled: boolean;
612
+ fastFail: boolean;
613
+ readonly: boolean;
614
+ modelValue: boolean | null;
615
+ validateOn: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
616
+ }> | null;
617
+ }, HTMLDivElement>;
618
+ export default _default;
@@ -0,0 +1,13 @@
1
+ type __VLS_Props = {
2
+ loading?: boolean;
3
+ };
4
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
+ "download-pdf": () => any;
6
+ "download-excel": () => any;
7
+ "view-browser": () => any;
8
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ "onDownload-pdf"?: (() => any) | undefined;
10
+ "onDownload-excel"?: (() => any) | undefined;
11
+ "onView-browser"?: (() => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
13
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ jasperPrebuiltId: number | string;
3
+ isFavorite: boolean;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
+ toggle: () => any;
7
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ onToggle?: (() => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
10
+ export default _default;
@@ -0,0 +1,18 @@
1
+ type AssessmentItem = {
2
+ type_id: number;
3
+ title: string;
4
+ date_administered?: string;
5
+ author?: string;
6
+ [key: string]: unknown;
7
+ };
8
+ type __VLS_Props = {
9
+ label?: string;
10
+ initialSelected?: AssessmentItem[];
11
+ showHeading?: boolean;
12
+ };
13
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
+ changed: (selected: AssessmentItem[], joinedValue: string) => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ onChanged?: ((selected: AssessmentItem[], joinedValue: string) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
18
+ export default _default;