@pristy/pristy-libvue 2.5.0 → 2.5.2
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/pristy-libvue.css +1 -1
- package/dist/pristy-libvue.es.js +6260 -5900
- package/dist/pristy-libvue.es.js.map +1 -1
- package/dist/pristy-libvue.umd.js +22 -22
- package/dist/pristy-libvue.umd.js.map +1 -1
- package/dist/src/components/classification/AdminClassificationPage.vue.d.ts +11 -0
- package/dist/src/components/classification/AdminClassificationPage.vue.d.ts.map +1 -1
- package/dist/src/components/classification/MetadataFormFields.vue.d.ts +19 -1
- package/dist/src/components/classification/NatureSelector.vue.d.ts +19 -1
- package/dist/src/components/classification/RequalifyPlanPopup.vue.d.ts +57 -3
- package/dist/src/components/classification/UploadPlanPopup.vue.d.ts +57 -3
- package/dist/src/components/classification/ViewSelectorPopup.vue.d.ts +9 -0
- package/dist/src/components/classification/ViewSelectorPopup.vue.d.ts.map +1 -1
- package/dist/src/components/search/AddCriterionPopup.vue.d.ts +12 -1
- package/dist/src/components/search/AddCriterionPopup.vue.d.ts.map +1 -1
- package/dist/src/components/search/AdvancedSearchPanel.vue.d.ts +23 -2
- package/dist/src/components/search/AdvancedSearchPanel.vue.d.ts.map +1 -1
- package/dist/src/components/search/AdvancedViewPanel.vue.d.ts +33 -2
- package/dist/src/components/search/AdvancedViewPanel.vue.d.ts.map +1 -1
- package/dist/src/components/search/FavoriteViewMenu.vue.d.ts +5 -0
- package/dist/src/components/search/UserViewsFavoritesPanel.vue.d.ts +5 -0
- package/dist/src/i18n/index.d.ts +18 -0
- package/dist/src/i18n/index.d.ts.map +1 -1
- package/dist/src/services/AftsQueryBuilder.d.ts +18 -0
- package/dist/src/services/AftsQueryBuilder.d.ts.map +1 -1
- package/dist/src/services/ClassificationService.d.ts +9 -0
- package/dist/src/services/ClassificationService.d.ts.map +1 -1
- package/dist/src/stores/favorites.d.ts.map +1 -1
- package/dist/src/stores/userView.d.ts +86 -6
- package/dist/src/stores/userView.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -20,6 +20,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20
20
|
type: BooleanConstructor;
|
|
21
21
|
default: boolean;
|
|
22
22
|
};
|
|
23
|
+
readonly: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
23
27
|
}>, {}, {
|
|
24
28
|
localSelected: any[];
|
|
25
29
|
searchQuery: string;
|
|
@@ -54,6 +58,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
54
58
|
type: BooleanConstructor;
|
|
55
59
|
default: boolean;
|
|
56
60
|
};
|
|
61
|
+
readonly: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
57
65
|
}>> & Readonly<{
|
|
58
66
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
59
67
|
"onUpdate:selectedViews"?: (...args: any[]) => any;
|
|
@@ -62,6 +70,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
62
70
|
visible: boolean;
|
|
63
71
|
selectedViews: unknown[];
|
|
64
72
|
availableViews: unknown[];
|
|
73
|
+
readonly: boolean;
|
|
65
74
|
}, {}, {
|
|
66
75
|
PrimeDialog: DefineComponent<DialogProps, DialogSlots, ((e: "show") => void) & ((e: "hide") => void) & ((e: "update:visible", value: boolean) => void) & ((e: "after-hide") => void) & ((e: "maximize", event: Event) => void) & ((e: "unmaximize", event: Event) => void) & ((e: "dragstart", event: Event) => void) & ((e: "dragend", event: Event) => void)>;
|
|
67
76
|
PrimeButton: DefineComponent<ButtonProps, ButtonSlots, (e: string, ...args: any[]) => void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ViewSelectorPopup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/classification/ViewSelectorPopup.vue"],"names":[],"mappings":";;;;;;;;
|
|
1
|
+
{"version":3,"file":"ViewSelectorPopup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/classification/ViewSelectorPopup.vue"],"names":[],"mappings":";;;;;;;;AA0KA;"}
|
|
@@ -15,6 +15,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15
15
|
type: ArrayConstructor;
|
|
16
16
|
required: true;
|
|
17
17
|
};
|
|
18
|
+
editCriterion: {
|
|
19
|
+
type: ObjectConstructor;
|
|
20
|
+
default: any;
|
|
21
|
+
};
|
|
18
22
|
}>, {}, {
|
|
19
23
|
criterion: {
|
|
20
24
|
id: any;
|
|
@@ -69,17 +73,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
69
73
|
getOperatorsForCriterion(): any;
|
|
70
74
|
onPropertyChange(): void;
|
|
71
75
|
addCriterion(): void;
|
|
72
|
-
|
|
76
|
+
updateCriterion(): void;
|
|
77
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:visible" | "add-criterion" | "update-criterion")[], "update:visible" | "add-criterion" | "update-criterion", PublicProps, Readonly< ExtractPropTypes<{
|
|
73
78
|
visible: BooleanConstructor;
|
|
74
79
|
properties: {
|
|
75
80
|
type: ArrayConstructor;
|
|
76
81
|
required: true;
|
|
77
82
|
};
|
|
83
|
+
editCriterion: {
|
|
84
|
+
type: ObjectConstructor;
|
|
85
|
+
default: any;
|
|
86
|
+
};
|
|
78
87
|
}>> & Readonly<{
|
|
79
88
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
80
89
|
"onAdd-criterion"?: (...args: any[]) => any;
|
|
90
|
+
"onUpdate-criterion"?: (...args: any[]) => any;
|
|
81
91
|
}>, {
|
|
82
92
|
visible: boolean;
|
|
93
|
+
editCriterion: Record<string, any>;
|
|
83
94
|
}, {}, {
|
|
84
95
|
PrimeDialog: DefineComponent<DialogProps, DialogSlots, ((e: "show") => void) & ((e: "hide") => void) & ((e: "update:visible", value: boolean) => void) & ((e: "after-hide") => void) & ((e: "maximize", event: Event) => void) & ((e: "unmaximize", event: Event) => void) & ((e: "dragstart", event: Event) => void) & ((e: "dragend", event: Event) => void)>;
|
|
85
96
|
PrimeSelect: DefineComponent<SelectProps, SelectSlots, ((e: "filter", event: SelectFilterEvent) => void) & ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "change", event: SelectChangeEvent) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "before-show") => void) & ((e: "before-hide") => void) & ((e: "show") => void) & ((e: "hide") => void), SelectMethods>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AddCriterionPopup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/search/AddCriterionPopup.vue"],"names":[],"mappings":";;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"AddCriterionPopup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/search/AddCriterionPopup.vue"],"names":[],"mappings":";;;;;;;;;;;AA4KA;"}
|
|
@@ -53,8 +53,8 @@ declare const _default: DefineComponent<{}, {}, {
|
|
|
53
53
|
viewToEdit(): any;
|
|
54
54
|
availableProperties(): any[];
|
|
55
55
|
location: () => any;
|
|
56
|
-
loadedView: () => any;
|
|
57
56
|
criteria: () => any;
|
|
57
|
+
loadedView: () => any;
|
|
58
58
|
isPristyAdmin: () => any;
|
|
59
59
|
}, {
|
|
60
60
|
clearSaveViewError(): void;
|
|
@@ -73,6 +73,11 @@ declare const _default: DefineComponent<{}, {}, {
|
|
|
73
73
|
removeLocation: (index: number) => void;
|
|
74
74
|
setLocation: (newLocation: ViewLocation) => void;
|
|
75
75
|
setCriteria: (newCriteria: ViewCriterion[]) => void;
|
|
76
|
+
addGroup: (operator?: "AND" | "OR") => void;
|
|
77
|
+
removeGroup: (groupIndex: number) => void;
|
|
78
|
+
addCriterionToGroup: (groupIndex: number, criterion: ViewCriterion) => void;
|
|
79
|
+
removeCriterionFromGroup: (groupIndex: number, criterionIndex: number) => void;
|
|
80
|
+
updateCriterionInGroup: (groupIndex: number, criterionIndex: number, updated: ViewCriterion) => void;
|
|
76
81
|
addCriterion: (criterion: ViewCriterion) => void;
|
|
77
82
|
removeCriterion: (index: number) => void;
|
|
78
83
|
resetUserView: () => void;
|
|
@@ -164,6 +169,11 @@ declare const _default: DefineComponent<{}, {}, {
|
|
|
164
169
|
removeLocation: (index: number) => void;
|
|
165
170
|
setLocation: (newLocation: ViewLocation) => void;
|
|
166
171
|
setCriteria: (newCriteria: ViewCriterion[]) => void;
|
|
172
|
+
addGroup: (operator?: "AND" | "OR") => void;
|
|
173
|
+
removeGroup: (groupIndex: number) => void;
|
|
174
|
+
addCriterionToGroup: (groupIndex: number, criterion: ViewCriterion) => void;
|
|
175
|
+
removeCriterionFromGroup: (groupIndex: number, criterionIndex: number) => void;
|
|
176
|
+
updateCriterionInGroup: (groupIndex: number, criterionIndex: number, updated: ViewCriterion) => void;
|
|
167
177
|
addCriterion: (criterion: ViewCriterion) => void;
|
|
168
178
|
removeCriterion: (index: number) => void;
|
|
169
179
|
resetUserView: () => void;
|
|
@@ -194,6 +204,10 @@ declare const _default: DefineComponent<{}, {}, {
|
|
|
194
204
|
type: ArrayConstructor;
|
|
195
205
|
required: true;
|
|
196
206
|
};
|
|
207
|
+
editCriterion: {
|
|
208
|
+
type: ObjectConstructor;
|
|
209
|
+
default: any;
|
|
210
|
+
};
|
|
197
211
|
}>, {}, {
|
|
198
212
|
criterion: {
|
|
199
213
|
id: any;
|
|
@@ -248,17 +262,24 @@ declare const _default: DefineComponent<{}, {}, {
|
|
|
248
262
|
getOperatorsForCriterion(): any;
|
|
249
263
|
onPropertyChange(): void;
|
|
250
264
|
addCriterion(): void;
|
|
251
|
-
|
|
265
|
+
updateCriterion(): void;
|
|
266
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:visible" | "add-criterion" | "update-criterion")[], "update:visible" | "add-criterion" | "update-criterion", PublicProps, Readonly< ExtractPropTypes<{
|
|
252
267
|
visible: BooleanConstructor;
|
|
253
268
|
properties: {
|
|
254
269
|
type: ArrayConstructor;
|
|
255
270
|
required: true;
|
|
256
271
|
};
|
|
272
|
+
editCriterion: {
|
|
273
|
+
type: ObjectConstructor;
|
|
274
|
+
default: any;
|
|
275
|
+
};
|
|
257
276
|
}>> & Readonly<{
|
|
258
277
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
259
278
|
"onAdd-criterion"?: (...args: any[]) => any;
|
|
279
|
+
"onUpdate-criterion"?: (...args: any[]) => any;
|
|
260
280
|
}>, {
|
|
261
281
|
visible: boolean;
|
|
282
|
+
editCriterion: Record<string, any>;
|
|
262
283
|
}, {}, {
|
|
263
284
|
PrimeDialog: DefineComponent<DialogProps, DialogSlots, ((e: "show") => void) & ((e: "hide") => void) & ((e: "update:visible", value: boolean) => void) & ((e: "after-hide") => void) & ((e: "maximize", event: Event) => void) & ((e: "unmaximize", event: Event) => void) & ((e: "dragstart", event: Event) => void) & ((e: "dragend", event: Event) => void)>;
|
|
264
285
|
PrimeSelect: DefineComponent<SelectProps, SelectSlots, ((e: "filter", event: SelectFilterEvent) => void) & ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "change", event: SelectChangeEvent) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "before-show") => void) & ((e: "before-hide") => void) & ((e: "show") => void) & ((e: "hide") => void), SelectMethods>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdvancedSearchPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/search/AdvancedSearchPanel.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0NA
|
|
1
|
+
{"version":3,"file":"AdvancedSearchPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/search/AdvancedSearchPanel.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0NA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAoeA,KApYsE,CAoYtE,aApYoF;;;;;;;;;;;6BAoYpF,MAjQmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAiQnB,KA3P8D;;2BA2P9D,KAzNC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAyND,KApYsE,CAoYtE,aApYoF;;;;;;;;;;;iCAoYpF,MAjQmB"}
|
|
@@ -55,6 +55,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
55
55
|
label: string;
|
|
56
56
|
};
|
|
57
57
|
newLocationSiteInput: any;
|
|
58
|
+
editingCriterion: any;
|
|
59
|
+
editingGroupIndex: any;
|
|
60
|
+
editingCriterionIndex: any;
|
|
61
|
+
targetGroupIndex: any;
|
|
58
62
|
}, {
|
|
59
63
|
locationOptions(): {
|
|
60
64
|
label: string;
|
|
@@ -69,9 +73,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
69
73
|
canManageLoadedView(): any;
|
|
70
74
|
viewToEdit(): any;
|
|
71
75
|
availableProperties(): any[];
|
|
76
|
+
allCriteria: () => any;
|
|
72
77
|
loadedView: () => any;
|
|
73
|
-
criteria: () => any;
|
|
74
78
|
locations: () => any;
|
|
79
|
+
criteriaGroups: () => any;
|
|
75
80
|
isPristyAdmin: () => any;
|
|
76
81
|
}, {
|
|
77
82
|
removeLocationAtIndex(index: any): void;
|
|
@@ -86,7 +91,12 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
86
91
|
handleDeleteConfirmation(): Promise<void>;
|
|
87
92
|
handleSaveView(payload: any): Promise<void>;
|
|
88
93
|
handleLoadView(searchConfig: any): void;
|
|
94
|
+
handleAddFirstCriterion(): void;
|
|
95
|
+
handleAddGroup(): void;
|
|
96
|
+
openAddCriterionForGroup(groupIndex: any): void;
|
|
89
97
|
handleCriterionAdded(criterion: any): void;
|
|
98
|
+
startEditCriterion(groupIndex: any, criterionIndex: any, criterion: any): void;
|
|
99
|
+
handleCriterionUpdated(updated: any): void;
|
|
90
100
|
formatCriterionValueForDisplay(criterion: any): string;
|
|
91
101
|
loadSites(): Promise<void>;
|
|
92
102
|
searchSites(event: any): void;
|
|
@@ -95,6 +105,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
95
105
|
removeLocation: (index: number) => void;
|
|
96
106
|
setLocation: (newLocation: ViewLocation) => void;
|
|
97
107
|
setCriteria: (newCriteria: ViewCriterion[]) => void;
|
|
108
|
+
addGroup: (operator?: "AND" | "OR") => void;
|
|
109
|
+
removeGroup: (groupIndex: number) => void;
|
|
110
|
+
addCriterionToGroup: (groupIndex: number, criterion: ViewCriterion) => void;
|
|
111
|
+
removeCriterionFromGroup: (groupIndex: number, criterionIndex: number) => void;
|
|
112
|
+
updateCriterionInGroup: (groupIndex: number, criterionIndex: number, updated: ViewCriterion) => void;
|
|
98
113
|
addCriterion: (criterion: ViewCriterion) => void;
|
|
99
114
|
removeCriterion: (index: number) => void;
|
|
100
115
|
resetUserView: () => void;
|
|
@@ -164,6 +179,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
164
179
|
removeLocation: (index: number) => void;
|
|
165
180
|
setLocation: (newLocation: ViewLocation) => void;
|
|
166
181
|
setCriteria: (newCriteria: ViewCriterion[]) => void;
|
|
182
|
+
addGroup: (operator?: "AND" | "OR") => void;
|
|
183
|
+
removeGroup: (groupIndex: number) => void;
|
|
184
|
+
addCriterionToGroup: (groupIndex: number, criterion: ViewCriterion) => void;
|
|
185
|
+
removeCriterionFromGroup: (groupIndex: number, criterionIndex: number) => void;
|
|
186
|
+
updateCriterionInGroup: (groupIndex: number, criterionIndex: number, updated: ViewCriterion) => void;
|
|
167
187
|
addCriterion: (criterion: ViewCriterion) => void;
|
|
168
188
|
removeCriterion: (index: number) => void;
|
|
169
189
|
resetUserView: () => void;
|
|
@@ -195,6 +215,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
195
215
|
type: ArrayConstructor;
|
|
196
216
|
required: true;
|
|
197
217
|
};
|
|
218
|
+
editCriterion: {
|
|
219
|
+
type: ObjectConstructor;
|
|
220
|
+
default: any;
|
|
221
|
+
};
|
|
198
222
|
}>, {}, {
|
|
199
223
|
criterion: {
|
|
200
224
|
id: any;
|
|
@@ -249,17 +273,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
249
273
|
getOperatorsForCriterion(): any;
|
|
250
274
|
onPropertyChange(): void;
|
|
251
275
|
addCriterion(): void;
|
|
252
|
-
|
|
276
|
+
updateCriterion(): void;
|
|
277
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:visible" | "add-criterion" | "update-criterion")[], "update:visible" | "add-criterion" | "update-criterion", PublicProps, Readonly< ExtractPropTypes<{
|
|
253
278
|
visible: BooleanConstructor;
|
|
254
279
|
properties: {
|
|
255
280
|
type: ArrayConstructor;
|
|
256
281
|
required: true;
|
|
257
282
|
};
|
|
283
|
+
editCriterion: {
|
|
284
|
+
type: ObjectConstructor;
|
|
285
|
+
default: any;
|
|
286
|
+
};
|
|
258
287
|
}>> & Readonly<{
|
|
259
288
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
260
289
|
"onAdd-criterion"?: (...args: any[]) => any;
|
|
290
|
+
"onUpdate-criterion"?: (...args: any[]) => any;
|
|
261
291
|
}>, {
|
|
262
292
|
visible: boolean;
|
|
293
|
+
editCriterion: Record<string, any>;
|
|
263
294
|
}, {}, {
|
|
264
295
|
PrimeDialog: DefineComponent<DialogProps, DialogSlots, ((e: "show") => void) & ((e: "hide") => void) & ((e: "update:visible", value: boolean) => void) & ((e: "after-hide") => void) & ((e: "maximize", event: Event) => void) & ((e: "unmaximize", event: Event) => void) & ((e: "dragstart", event: Event) => void) & ((e: "dragend", event: Event) => void)>;
|
|
265
296
|
PrimeSelect: DefineComponent<SelectProps, SelectSlots, ((e: "filter", event: SelectFilterEvent) => void) & ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "change", event: SelectChangeEvent) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "before-show") => void) & ((e: "before-hide") => void) & ((e: "show") => void) & ((e: "hide") => void), SelectMethods>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdvancedViewPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/search/AdvancedViewPanel.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"AdvancedViewPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/search/AdvancedViewPanel.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BA85BA,KA7zBuB,CA6zBvB,aA7zBqC;;;;;;;;;;;6BA6zBrC,MAxtBqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAwtBrC,KA7zBuB,CA6zBvB,aA7zBqC;;;;;;;;;;;iCA6zBrC,MAxtBqC"}
|
|
@@ -12,6 +12,11 @@ declare const _default: DefineComponent<{}, {}, {}, {
|
|
|
12
12
|
removeLocation: (index: number) => void;
|
|
13
13
|
setLocation: (newLocation: ViewLocation) => void;
|
|
14
14
|
setCriteria: (newCriteria: ViewCriterion[]) => void;
|
|
15
|
+
addGroup: (operator?: "AND" | "OR") => void;
|
|
16
|
+
removeGroup: (groupIndex: number) => void;
|
|
17
|
+
addCriterionToGroup: (groupIndex: number, criterion: ViewCriterion) => void;
|
|
18
|
+
removeCriterionFromGroup: (groupIndex: number, criterionIndex: number) => void;
|
|
19
|
+
updateCriterionInGroup: (groupIndex: number, criterionIndex: number, updated: ViewCriterion) => void;
|
|
15
20
|
addCriterion: (criterion: ViewCriterion) => void;
|
|
16
21
|
removeCriterion: (index: number) => void;
|
|
17
22
|
resetUserView: () => void;
|
|
@@ -23,6 +23,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
23
23
|
removeLocation: (index: number) => void;
|
|
24
24
|
setLocation: (newLocation: ViewLocation) => void;
|
|
25
25
|
setCriteria: (newCriteria: ViewCriterion[]) => void;
|
|
26
|
+
addGroup: (operator?: "AND" | "OR") => void;
|
|
27
|
+
removeGroup: (groupIndex: number) => void;
|
|
28
|
+
addCriterionToGroup: (groupIndex: number, criterion: ViewCriterion) => void;
|
|
29
|
+
removeCriterionFromGroup: (groupIndex: number, criterionIndex: number) => void;
|
|
30
|
+
updateCriterionInGroup: (groupIndex: number, criterionIndex: number, updated: ViewCriterion) => void;
|
|
26
31
|
addCriterion: (criterion: ViewCriterion) => void;
|
|
27
32
|
removeCriterion: (index: number) => void;
|
|
28
33
|
resetUserView: () => void;
|
package/dist/src/i18n/index.d.ts
CHANGED
|
@@ -397,6 +397,14 @@ declare const i18n: I18n<{
|
|
|
397
397
|
addAsExcludeFolder: string;
|
|
398
398
|
addAsIncludeSite: string;
|
|
399
399
|
addAsExcludeSite: string;
|
|
400
|
+
editCriterionPopupTitle: string;
|
|
401
|
+
updateButton: string;
|
|
402
|
+
addGroupButton: string;
|
|
403
|
+
addOrGroup: string;
|
|
404
|
+
removeGroup: string;
|
|
405
|
+
operatorAnd: string;
|
|
406
|
+
operatorOr: string;
|
|
407
|
+
emptyGroup: string;
|
|
400
408
|
};
|
|
401
409
|
pdfTools: {
|
|
402
410
|
title: string;
|
|
@@ -683,6 +691,7 @@ declare const i18n: I18n<{
|
|
|
683
691
|
};
|
|
684
692
|
columns: {
|
|
685
693
|
name: string;
|
|
694
|
+
emplacement: string;
|
|
686
695
|
type: string;
|
|
687
696
|
icon: string;
|
|
688
697
|
actions: string;
|
|
@@ -1386,6 +1395,14 @@ declare const i18n: I18n<{
|
|
|
1386
1395
|
addAsExcludeFolder: string;
|
|
1387
1396
|
addAsIncludeSite: string;
|
|
1388
1397
|
addAsExcludeSite: string;
|
|
1398
|
+
editCriterionPopupTitle: string;
|
|
1399
|
+
updateButton: string;
|
|
1400
|
+
addGroupButton: string;
|
|
1401
|
+
addOrGroup: string;
|
|
1402
|
+
removeGroup: string;
|
|
1403
|
+
operatorAnd: string;
|
|
1404
|
+
operatorOr: string;
|
|
1405
|
+
emptyGroup: string;
|
|
1389
1406
|
};
|
|
1390
1407
|
pdfTools: {
|
|
1391
1408
|
title: string;
|
|
@@ -1672,6 +1689,7 @@ declare const i18n: I18n<{
|
|
|
1672
1689
|
};
|
|
1673
1690
|
columns: {
|
|
1674
1691
|
name: string;
|
|
1692
|
+
emplacement: string;
|
|
1675
1693
|
type: string;
|
|
1676
1694
|
icon: string;
|
|
1677
1695
|
actions: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/i18n/index.js"],"names":[],"mappings":";;AAsBA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/i18n/index.js"],"names":[],"mappings":";;AAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAOG"}
|
|
@@ -39,5 +39,23 @@ declare class AftsQueryBuilder {
|
|
|
39
39
|
locations?: any[];
|
|
40
40
|
criteria?: any[];
|
|
41
41
|
}): string;
|
|
42
|
+
/**
|
|
43
|
+
* Builds an AFTS query fragment for a single criterion.
|
|
44
|
+
* @param {Object} c - A criterion object.
|
|
45
|
+
* @returns {string|null} The AFTS fragment, or null if invalid.
|
|
46
|
+
*/
|
|
47
|
+
_buildCriterionPart(c: any): string | null;
|
|
48
|
+
/**
|
|
49
|
+
* Builds an AFTS query for a single group of criteria.
|
|
50
|
+
* @param {Object} group - A criteria group with operator and criteria array.
|
|
51
|
+
* @returns {string|null} The AFTS fragment for the group, or null if empty.
|
|
52
|
+
*/
|
|
53
|
+
_buildGroupQuery(group: any): string | null;
|
|
54
|
+
/**
|
|
55
|
+
* Builds the criteria portion of the AFTS query from criteriaGroups.
|
|
56
|
+
* @param {Object} criteriaGroups - The grouped criteria structure.
|
|
57
|
+
* @returns {string|null} The AFTS fragment for all groups, or null if empty.
|
|
58
|
+
*/
|
|
59
|
+
_buildGroupsParts(criteriaGroups: any): string | null;
|
|
42
60
|
}
|
|
43
61
|
//# sourceMappingURL=AftsQueryBuilder.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AftsQueryBuilder.d.ts","sourceRoot":"","sources":["../../../src/services/AftsQueryBuilder.js"],"names":[],"mappings":";;AAmCA;;;GAGG;AACH;IACE;;;;;OAKG;IACH,qBAHW,MAAM,GACJ,MAAM,CAQlB;IAED;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,kCAJG;QAA0B,SAAS;QACT,QAAQ;KAClC,GAAU,MAAM,
|
|
1
|
+
{"version":3,"file":"AftsQueryBuilder.d.ts","sourceRoot":"","sources":["../../../src/services/AftsQueryBuilder.js"],"names":[],"mappings":";;AAmCA;;;GAGG;AACH;IACE;;;;;OAKG;IACH,qBAHW,MAAM,GACJ,MAAM,CAQlB;IAED;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,kCAJG;QAA0B,SAAS;QACT,QAAQ;KAClC,GAAU,MAAM,CAyDlB;IAED;;;;OAIG;IACH,6BAFa,MAAM,GAAC,IAAI,CAkEvB;IAED;;;;OAIG;IACH,8BAFa,MAAM,GAAC,IAAI,CAavB;IAED;;;;OAIG;IACH,wCAFa,MAAM,GAAC,IAAI,CAavB;CACF"}
|
|
@@ -19,6 +19,15 @@ declare class ClassificationService {
|
|
|
19
19
|
* @returns {Promise<string[]>} A promise that resolves with an array of filenames.
|
|
20
20
|
*/
|
|
21
21
|
listPlans(): Promise<string[]>;
|
|
22
|
+
/**
|
|
23
|
+
* Fetches a classification plan along with its allowableOperations.
|
|
24
|
+
* @param {string} filename The name of the plan file.
|
|
25
|
+
* @returns {Promise<{content: any, allowableOperations: string[]}>}
|
|
26
|
+
*/
|
|
27
|
+
getPlanWithPermissions(filename: string): Promise<{
|
|
28
|
+
content: any;
|
|
29
|
+
allowableOperations: string[];
|
|
30
|
+
}>;
|
|
22
31
|
/**
|
|
23
32
|
* Lists all existing classification plan entries (full Alfresco nodes).
|
|
24
33
|
* @returns {Promise<Object[]>} A promise that resolves with an array of Alfresco entry objects.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClassificationService.d.ts","sourceRoot":"","sources":["../../../src/services/ClassificationService.js"],"names":[],"mappings":";;AAqBA;IACE;;;;OAIG;IACH,kBAHW,MAAM,GACJ,OAAO,CAAC,GAAG,CAAC,CAOxB;IAED;;;;;OAKG;IACH,mBAJW,MAAM,WACN,MAAM,GACJ,OAAO,CAAC,IAAI,CAAC,CASzB;IAED;;;OAGG;IACH,aAFa,OAAO,CAAC,MAAM,EAAE,CAAC,CAa7B;IAED;;;OAGG;IACH,mBAFa,OAAO,CAAC,KAAQ,CAAC,CAa7B;CACF"}
|
|
1
|
+
{"version":3,"file":"ClassificationService.d.ts","sourceRoot":"","sources":["../../../src/services/ClassificationService.js"],"names":[],"mappings":";;AAqBA;IACE;;;;OAIG;IACH,kBAHW,MAAM,GACJ,OAAO,CAAC,GAAG,CAAC,CAOxB;IAED;;;;;OAKG;IACH,mBAJW,MAAM,WACN,MAAM,GACJ,OAAO,CAAC,IAAI,CAAC,CASzB;IAED;;;OAGG;IACH,aAFa,OAAO,CAAC,MAAM,EAAE,CAAC,CAa7B;IAED;;;;OAIG;IACH,iCAHW,MAAM,GACJ,OAAO,CAAC;QAAC,OAAO,EAAE,GAAG,CAAC;QAAC,mBAAmB,EAAE,MAAM,EAAE,CAAA;KAAC,CAAC,CAkBlE;IAED;;;OAGG;IACH,mBAFa,OAAO,CAAC,KAAQ,CAAC,CAa7B;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"favorites.d.ts","sourceRoot":"","sources":["../../../src/stores/favorites.js"],"names":[],"mappings":";AAwBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmBI;;;;;OAKG;0BAFQ,OAAO,GACL,OAAO,OAAO;
|
|
1
|
+
{"version":3,"file":"favorites.d.ts","sourceRoot":"","sources":["../../../src/stores/favorites.js"],"names":[],"mappings":";AAwBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmBI;;;;;OAKG;0BAFQ,OAAO,GACL,OAAO,OAAO;IA0C3B;;;OAGG;;IAKH;;;OAGG;wCADQ,MAAM;IAQjB;;OAEG;;GAQJ"}
|
|
@@ -16,6 +16,17 @@ import { StoreDefinition } from 'pinia';
|
|
|
16
16
|
* @property {boolean} negation - Whether the location is excluded (true) or included (false).
|
|
17
17
|
* @property {string} label - Human-readable label for the location.
|
|
18
18
|
*/
|
|
19
|
+
/**
|
|
20
|
+
* @typedef {Object} CriteriaGroup
|
|
21
|
+
* @property {string} id - Unique identifier for the group.
|
|
22
|
+
* @property {'AND'|'OR'} operator - Operator between criteria within the group.
|
|
23
|
+
* @property {ViewCriterion[]} criteria - The list of search criteria in the group.
|
|
24
|
+
*/
|
|
25
|
+
/**
|
|
26
|
+
* @typedef {Object} CriteriaGroups
|
|
27
|
+
* @property {'AND'|'OR'} rootOperator - Operator between groups.
|
|
28
|
+
* @property {CriteriaGroup[]} groups - The list of criteria groups.
|
|
29
|
+
*/
|
|
19
30
|
/**
|
|
20
31
|
* @typedef {Object} SavedView
|
|
21
32
|
* @property {string} id - Unique identifier for the saved view.
|
|
@@ -25,7 +36,8 @@ import { StoreDefinition } from 'pinia';
|
|
|
25
36
|
* @property {boolean} [isFavorite] - Whether the view is marked as a favorite.
|
|
26
37
|
* @property {Object} config - The view configuration.
|
|
27
38
|
* @property {ViewLocation[]} config.locations - The location criteria (array).
|
|
28
|
-
* @property {
|
|
39
|
+
* @property {CriteriaGroups} [config.criteriaGroups] - The grouped criteria (new format).
|
|
40
|
+
* @property {ViewCriterion[]} [config.criteria] - The list of search criteria (legacy flat format).
|
|
29
41
|
*/
|
|
30
42
|
/**
|
|
31
43
|
* Pinia store for managing the state of the user view feature.
|
|
@@ -46,6 +58,18 @@ export const useUserViewStore: StoreDefinition<"userView", any, {
|
|
|
46
58
|
type: null;
|
|
47
59
|
value: string;
|
|
48
60
|
};
|
|
61
|
+
/**
|
|
62
|
+
* Backward-compatible getter: flattens all criteria from all groups.
|
|
63
|
+
* @param {Object} state - The store's state.
|
|
64
|
+
* @returns {ViewCriterion[]}
|
|
65
|
+
*/
|
|
66
|
+
allCriteria(state: any): ViewCriterion[];
|
|
67
|
+
/**
|
|
68
|
+
* Backward-compatible alias for allCriteria (used by AdvancedSearchPanel).
|
|
69
|
+
* @param {Object} state - The store's state.
|
|
70
|
+
* @returns {ViewCriterion[]}
|
|
71
|
+
*/
|
|
72
|
+
criteria(state: any): ViewCriterion[];
|
|
49
73
|
}, {
|
|
50
74
|
/**
|
|
51
75
|
* Loads a saved view into the store, updating locations, criteria, and the loaded view reference.
|
|
@@ -70,19 +94,50 @@ export const useUserViewStore: StoreDefinition<"userView", any, {
|
|
|
70
94
|
*/
|
|
71
95
|
setLocation(newLocation: ViewLocation): void;
|
|
72
96
|
/**
|
|
73
|
-
* Sets the criteria for the user view.
|
|
97
|
+
* Sets the criteria for the user view (legacy, wraps into single group).
|
|
74
98
|
* This action also resets the currently loaded view.
|
|
75
99
|
* @param {ViewCriterion[]} newCriteria - The new array of criteria.
|
|
76
100
|
*/
|
|
77
101
|
setCriteria(newCriteria: ViewCriterion[]): void;
|
|
78
102
|
/**
|
|
79
|
-
* Adds a new
|
|
103
|
+
* Adds a new empty criteria group.
|
|
104
|
+
* @param {'AND'|'OR'} [operator='AND'] - The operator for criteria within the group.
|
|
105
|
+
*/
|
|
106
|
+
addGroup(operator?: "AND" | "OR"): void;
|
|
107
|
+
/**
|
|
108
|
+
* Removes a criteria group by index.
|
|
109
|
+
* @param {number} groupIndex - The index of the group to remove.
|
|
110
|
+
*/
|
|
111
|
+
removeGroup(groupIndex: number): void;
|
|
112
|
+
/**
|
|
113
|
+
* Adds a criterion to a specific group.
|
|
114
|
+
* @param {number} groupIndex - The index of the group.
|
|
115
|
+
* @param {ViewCriterion} criterion - The criterion to add.
|
|
116
|
+
*/
|
|
117
|
+
addCriterionToGroup(groupIndex: number, criterion: ViewCriterion): void;
|
|
118
|
+
/**
|
|
119
|
+
* Removes a criterion from a specific group.
|
|
120
|
+
* @param {number} groupIndex - The index of the group.
|
|
121
|
+
* @param {number} criterionIndex - The index of the criterion within the group.
|
|
122
|
+
*/
|
|
123
|
+
removeCriterionFromGroup(groupIndex: number, criterionIndex: number): void;
|
|
124
|
+
/**
|
|
125
|
+
* Updates a criterion in a specific group.
|
|
126
|
+
* @param {number} groupIndex - The index of the group.
|
|
127
|
+
* @param {number} criterionIndex - The index of the criterion within the group.
|
|
128
|
+
* @param {ViewCriterion} updated - The updated criterion.
|
|
129
|
+
*/
|
|
130
|
+
updateCriterionInGroup(groupIndex: number, criterionIndex: number, updated: ViewCriterion): void;
|
|
131
|
+
/**
|
|
132
|
+
* Backward-compatible: adds a criterion to the first group (creates one if needed).
|
|
133
|
+
* Used by AdvancedSearchPanel (legacy).
|
|
80
134
|
* @param {ViewCriterion} criterion - The criterion to add.
|
|
81
135
|
*/
|
|
82
136
|
addCriterion(criterion: ViewCriterion): void;
|
|
83
137
|
/**
|
|
84
|
-
*
|
|
85
|
-
*
|
|
138
|
+
* Backward-compatible: removes a criterion by flat index across all groups.
|
|
139
|
+
* Used by AdvancedSearchPanel (legacy).
|
|
140
|
+
* @param {number} index - The flat index of the criterion to remove.
|
|
86
141
|
*/
|
|
87
142
|
removeCriterion(index: number): void;
|
|
88
143
|
/**
|
|
@@ -164,6 +219,30 @@ export type ViewLocation = {
|
|
|
164
219
|
*/
|
|
165
220
|
label: string;
|
|
166
221
|
};
|
|
222
|
+
export type CriteriaGroup = {
|
|
223
|
+
/**
|
|
224
|
+
* - Unique identifier for the group.
|
|
225
|
+
*/
|
|
226
|
+
id: string;
|
|
227
|
+
/**
|
|
228
|
+
* - Operator between criteria within the group.
|
|
229
|
+
*/
|
|
230
|
+
operator: "AND" | "OR";
|
|
231
|
+
/**
|
|
232
|
+
* - The list of search criteria in the group.
|
|
233
|
+
*/
|
|
234
|
+
criteria: ViewCriterion[];
|
|
235
|
+
};
|
|
236
|
+
export type CriteriaGroups = {
|
|
237
|
+
/**
|
|
238
|
+
* - Operator between groups.
|
|
239
|
+
*/
|
|
240
|
+
rootOperator: "AND" | "OR";
|
|
241
|
+
/**
|
|
242
|
+
* - The list of criteria groups.
|
|
243
|
+
*/
|
|
244
|
+
groups: CriteriaGroup[];
|
|
245
|
+
};
|
|
167
246
|
export type SavedView = {
|
|
168
247
|
/**
|
|
169
248
|
* - Unique identifier for the saved view.
|
|
@@ -190,7 +269,8 @@ export type SavedView = {
|
|
|
190
269
|
*/
|
|
191
270
|
config: {
|
|
192
271
|
locations: ViewLocation[];
|
|
193
|
-
|
|
272
|
+
criteriaGroups?: CriteriaGroups;
|
|
273
|
+
criteria?: ViewCriterion[];
|
|
194
274
|
};
|
|
195
275
|
};
|
|
196
276
|
//# sourceMappingURL=userView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"userView.d.ts","sourceRoot":"","sources":["../../../src/stores/userView.js"],"names":[],"mappings":";AAGA;;;;;;;;GAQG;AAEH;;;;;;;GAOG;AAEH
|
|
1
|
+
{"version":3,"file":"userView.d.ts","sourceRoot":"","sources":["../../../src/stores/userView.js"],"names":[],"mappings":";AAGA;;;;;;;;GAQG;AAEH;;;;;;;GAOG;AAEH;;;;;GAKG;AAEH;;;;GAIG;AAEH;;;;;;;;;;;GAWG;AAEH;;GAEG;AACH;IAiCI;;;;OAIG;mCADU,OAAO;IAKpB;;;;OAIG;0BADU,YAAY,GAAC;QAAC,IAAI,EAAE,IAAI,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAC;IAQrD;;;;OAIG;6BADU,aAAa,EAAE;IAK5B;;;;OAIG;0BADU,aAAa,EAAE;;IAU5B;;;;OAIG;wBADQ,SAAS;IAkEpB;;;OAGG;qBADQ,YAAY;IAQvB;;;OAGG;0BADQ,MAAM;IAKjB;;;;OAIG;6BADQ,YAAY;IAiBvB;;;;OAIG;6BADQ,aAAa,EAAE;IAe1B;;;OAGG;wBADQ,KAAK,GAAC,IAAI;IASrB;;;OAGG;4BADQ,MAAM;IAKjB;;;;OAIG;oCAFQ,MAAM,aACN,aAAa;IAOxB;;;;OAIG;yCAFQ,MAAM,kBACN,MAAM;IAUjB;;;;;OAKG;uCAHQ,MAAM,kBACN,MAAM,WACN,aAAa;IAWxB;;;;OAIG;4BADQ,aAAa;IAQxB;;;;OAIG;2BADQ,MAAM;IAYjB;;OAEG;;IAMH;;;OAGG;gCADQ,SAAS;IAYpB;;;OAGG;oCADQ,SAAS;IAWpB;;;OAGG;yBADU,OAAO,CAAC,IAAI,CAAC;IAe1B;;;;OAIG;6BAFQ,SAAS,GACP,OAAO,CAAC,IAAI,CAAC;IAe1B;;OAEG;;;GA8DJ;;;;;QA3cW,MAAM;;;;;;;;cAEN,OAAO;;;;cACP,MAAM;;;;WACN,GAAC;;;;eACD,GAAC,GAAC,IAAI;;;;;;QAKN,MAAM;;;;UACN,MAAM,GAAC,QAAQ,GAAC,IAAI;;;;WACpB,MAAM;;;;cACN,OAAO;;;;WACP,MAAM;;;;;;QAKN,MAAM;;;;cACN,KAAK,GAAC,IAAI;;;;cACV,aAAa,EAAE;;;;;;kBAKf,KAAK,GAAC,IAAI;;;;YACV,aAAa,EAAE;;;;;;QAKf,MAAM;;;;UACN,MAAM;;;;kBACN,MAAM;;;;WACN,MAAM,GAAC,QAAQ;;;;iBACf,OAAO;;;;YAElB;QAAkC,SAAS,EAAhC,YAAY,EAAE;QACU,cAAc,GAAtC,cAAc;QACW,QAAQ,GAAjC,aAAa,EAAE;KAC5B"}
|