@pristy/pristy-libvue 2.4.0 → 2.5.1
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 +11359 -10112
- 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/breadcrumb/ComplexBreadcrumb.vue.d.ts +16 -0
- package/dist/src/components/breadcrumb/ComplexBreadcrumb.vue.d.ts.map +1 -1
- package/dist/src/components/classification/AdminClassificationPage.vue.d.ts +85 -0
- package/dist/src/components/classification/AdminClassificationPage.vue.d.ts.map +1 -1
- package/dist/src/components/classification/MetadataFormFields.vue.d.ts +152 -4
- package/dist/src/components/classification/NatureSelector.vue.d.ts +150 -2
- package/dist/src/components/classification/RequalifyPlanPopup.vue.d.ts +452 -8
- package/dist/src/components/classification/UploadPlanPopup.vue.d.ts +452 -8
- package/dist/src/components/classification/ViewSelectorPopup.vue.d.ts +83 -0
- package/dist/src/components/classification/ViewSelectorPopup.vue.d.ts.map +1 -0
- package/dist/src/components/navigation/ContentCompactTableView.vue.d.ts +1 -0
- package/dist/src/components/navigation/ContentCompactTableView.vue.d.ts.map +1 -1
- package/dist/src/components/navigation/ContentTableView.vue.d.ts +1 -0
- package/dist/src/components/navigation/DynamicContentView.vue.d.ts +2 -0
- package/dist/src/components/search/AddCriterionPopup.vue.d.ts.map +1 -1
- package/dist/src/components/search/AdvancedSearchPanel.vue.d.ts +48 -4
- package/dist/src/components/search/AdvancedSearchPanel.vue.d.ts.map +1 -1
- package/dist/src/components/search/AdvancedViewPanel.vue.d.ts +89 -16
- package/dist/src/components/search/AdvancedViewPanel.vue.d.ts.map +1 -1
- package/dist/src/components/search/FavoriteViewMenu.vue.d.ts +2 -0
- package/dist/src/components/search/SaveViewPopup.vue.d.ts +28 -0
- package/dist/src/components/search/SaveViewPopup.vue.d.ts.map +1 -1
- package/dist/src/components/search/UserViewsFavoritesPanel.vue.d.ts +18 -4
- package/dist/src/components/search/UserViewsFavoritesPanel.vue.d.ts.map +1 -1
- package/dist/src/components/search/ViewResultsPanel.vue.d.ts +275 -0
- package/dist/src/components/search/ViewResultsPanel.vue.d.ts.map +1 -0
- package/dist/src/components/views/PredefinedViewsPanel.vue.d.ts +12 -239
- package/dist/src/components/views/PredefinedViewsPanel.vue.d.ts.map +1 -1
- package/dist/src/i18n/index.d.ts +149 -1
- package/dist/src/i18n/index.d.ts.map +1 -1
- package/dist/src/index.d.ts +5 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/services/AftsQueryBuilder.d.ts +43 -0
- package/dist/src/services/AftsQueryBuilder.d.ts.map +1 -0
- package/dist/src/services/ClassificationService.d.ts +9 -0
- package/dist/src/services/ClassificationService.d.ts.map +1 -1
- package/dist/src/services/UserViewService.d.ts +2 -1
- package/dist/src/services/UserViewService.d.ts.map +1 -1
- package/dist/src/services/ViewConfigService.d.ts +39 -0
- package/dist/src/services/ViewConfigService.d.ts.map +1 -0
- package/dist/src/stores/config.d.ts +0 -3
- package/dist/src/stores/config.d.ts.map +1 -1
- package/dist/src/stores/filingPlan.d.ts +51 -0
- package/dist/src/stores/filingPlan.d.ts.map +1 -0
- package/dist/src/stores/userView.d.ts +42 -6
- package/dist/src/stores/userView.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -57,6 +57,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
57
57
|
type: BooleanConstructor;
|
|
58
58
|
default: boolean;
|
|
59
59
|
};
|
|
60
|
+
/**
|
|
61
|
+
* Afficher l'élément home (premier élément du breadcrumb)
|
|
62
|
+
*/
|
|
63
|
+
showHome: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
60
67
|
/**
|
|
61
68
|
* Route pour le home (premier élément)
|
|
62
69
|
*/
|
|
@@ -86,6 +93,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
86
93
|
actionMenuItems: Ref<any[], any[]>;
|
|
87
94
|
computedPath: ComputedRef<any>;
|
|
88
95
|
displayMode: ComputedRef<string>;
|
|
96
|
+
workspaceItem: ComputedRef<any>;
|
|
89
97
|
lastItem: ComputedRef<any>;
|
|
90
98
|
secondToLastItem: ComputedRef<any>;
|
|
91
99
|
ellipsisMenuItems: ComputedRef<any>;
|
|
@@ -151,6 +159,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
151
159
|
type: BooleanConstructor;
|
|
152
160
|
default: boolean;
|
|
153
161
|
};
|
|
162
|
+
/**
|
|
163
|
+
* Afficher l'élément home (premier élément du breadcrumb)
|
|
164
|
+
*/
|
|
165
|
+
showHome: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
154
169
|
/**
|
|
155
170
|
* Route pour le home (premier élément)
|
|
156
171
|
*/
|
|
@@ -185,6 +200,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
185
200
|
mode: string;
|
|
186
201
|
ellipsisThreshold: number;
|
|
187
202
|
showActions: boolean;
|
|
203
|
+
showHome: boolean;
|
|
188
204
|
homeRoute: string | Record<string, any>;
|
|
189
205
|
workspaceRouteName: string;
|
|
190
206
|
folderRouteName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComplexBreadcrumb.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/breadcrumb/ComplexBreadcrumb.vue"],"names":[],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"ComplexBreadcrumb.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/breadcrumb/ComplexBreadcrumb.vue"],"names":[],"mappings":";;;;;AA2LA;;IAotBI;;;OAGG;;;;;IAKH;;OAEG;;;;;IAKH;;;OAGG;;;;;;IAMH;;;OAGG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;IA5EH;;;OAGG;;;;;IAKH;;OAEG;;;;;IAKH;;;OAGG;;;;;;IAMH;;;OAGG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG"}
|
|
@@ -23,6 +23,9 @@ import { MessageProps, MessageSlots } from 'primevue/message';
|
|
|
23
23
|
import { InputNumberProps, InputNumberSlots, InputNumberBlurEvent, InputNumberInputEvent, InputNumberMethods } from 'primevue/inputnumber';
|
|
24
24
|
import { InputGroupProps, InputGroupSlots } from 'primevue/inputgroup';
|
|
25
25
|
import { InputGroupAddonProps, InputGroupAddonSlots } from 'primevue/inputgroupaddon';
|
|
26
|
+
import { CheckboxProps, CheckboxSlots } from 'primevue/checkbox';
|
|
27
|
+
import { IconFieldProps, IconFieldSlots } from 'primevue/iconfield';
|
|
28
|
+
import { InputIconProps, InputIconSlots } from 'primevue/inputicon';
|
|
26
29
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
27
30
|
filename: {
|
|
28
31
|
type: StringConstructor;
|
|
@@ -50,12 +53,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
50
53
|
id: string;
|
|
51
54
|
label: string;
|
|
52
55
|
display: any[];
|
|
56
|
+
views: any[];
|
|
53
57
|
};
|
|
54
58
|
isEditingCategory: boolean;
|
|
55
59
|
displayOptions: {
|
|
56
60
|
label: string;
|
|
57
61
|
value: string;
|
|
58
62
|
}[];
|
|
63
|
+
availableViews: any[];
|
|
64
|
+
viewsLoading: boolean;
|
|
65
|
+
displayViewSelector: boolean;
|
|
66
|
+
viewSelectorCategory: any;
|
|
67
|
+
canEdit: boolean;
|
|
59
68
|
}, {}, {
|
|
60
69
|
getCategoryLabel(catId: any): any;
|
|
61
70
|
loadPlan(): void;
|
|
@@ -64,6 +73,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
64
73
|
exportPlan(): void;
|
|
65
74
|
triggerImport(): void;
|
|
66
75
|
handleFileImport(event: any): void;
|
|
76
|
+
loadAvailableViews(): Promise<void>;
|
|
67
77
|
openNewNatureDialog(): void;
|
|
68
78
|
openEditNatureDialog(item: any): void;
|
|
69
79
|
openDuplicateNatureDialog(item: any): void;
|
|
@@ -82,6 +92,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
82
92
|
openEditCategoryDialog(cat: any): void;
|
|
83
93
|
onCategoryReorder(event: any): void;
|
|
84
94
|
saveCategoryForm(): void;
|
|
95
|
+
openViewSelector(cat: any): void;
|
|
96
|
+
onViewsUpdated(views: any): void;
|
|
85
97
|
confirmDeleteCategory(cat: any): void;
|
|
86
98
|
autocreateFieldsFromNature(nature: any): void;
|
|
87
99
|
autocreateFieldsFromEmplacement(emplacement: any): void;
|
|
@@ -314,6 +326,79 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
314
326
|
PrimeDataTable: DefineComponent<DataTableProps<any>, DataTableSlots<any>, ((e: "sort", event: DataTableSortEvent) => void) & ((e: "filter", event: DataTableFilterEvent) => void) & ((e: "update:first", value: number) => void) & ((e: "update:rows", value: number) => void) & ((e: "page", event: DataTablePageEvent) => void) & ((e: "value-change", value: any[]) => void) & ((e: "update:sortField", value: string) => void) & ((e: "update:sortOrder", value: number) => void) & ((e: "update:multiSortMeta", value: DataTableSortMeta[]) => void) & ((e: "update:selection", value: any) => void) & ((e: "update:contextMenuSelection", value: any) => void) & ((e: "update:expandedRows", value: any[] | DataTableExpandedRows) => void) & ((e: "update:expandedRowGroups", value: any[] | DataTableExpandedRows) => void) & ((e: "update:filters", value: DataTableFilterMeta) => void) & ((e: "update:editingRows", value: any[] | DataTableEditingRows) => void) & ((e: "row-click", event: DataTableRowClickEvent<any>) => void) & ((e: "row-dblclick", event: DataTableRowDoubleClickEvent) => void) & ((e: "row-contextmenu", event: DataTableRowContextMenuEvent) => void) & ((e: "row-select", event: DataTableRowSelectEvent<any>) => void) & ((e: "row-select-all", event: DataTableRowSelectAllEvent<any>) => void) & ((e: "row-unselect-all", event: DataTableRowUnselectAllEvent) => void) & ((e: "row-unselect", event: DataTableRowUnselectEvent) => void) & ((e: "select-all-change", event: DataTableSelectAllChangeEvent) => void) & ((e: "column-resize-end", event: DataTableColumnResizeEndEvent) => void) & ((e: "column-reorder", event: DataTableColumnReorderEvent) => void) & ((e: "row-reorder", event: DataTableRowReorderEvent) => void) & ((e: "row-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "row-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "rowgroup-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "rowgroup-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "cell-edit-init", event: DataTableCellEditInitEvent<any>) => void) & ((e: "cell-edit-complete", event: DataTableCellEditCompleteEvent<any>) => void) & ((e: "cell-edit-cancel", event: DataTableCellEditCancelEvent) => void) & ((e: "row-edit-init", event: DataTableRowEditInitEvent<any>) => void) & ((e: "row-edit-save", event: DataTableRowEditSaveEvent<any>) => void) & ((e: "row-edit-cancel", event: DataTableRowEditCancelEvent<any>) => void) & ((e: "state-restore", event: DataTableStateEvent<any>) => void) & ((e: "state-save", event: DataTableStateEvent<any>) => void), DataTableMethods>;
|
|
315
327
|
PrimeColumn: DefineComponent<ColumnProps, ColumnSlots, (e: string, ...args: any[]) => void>;
|
|
316
328
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
329
|
+
ViewSelectorPopup: DefineComponent<ExtractPropTypes<{
|
|
330
|
+
visible: BooleanConstructor;
|
|
331
|
+
selectedViews: {
|
|
332
|
+
type: ArrayConstructor;
|
|
333
|
+
default: () => any[];
|
|
334
|
+
};
|
|
335
|
+
availableViews: {
|
|
336
|
+
type: ArrayConstructor;
|
|
337
|
+
default: () => any[];
|
|
338
|
+
};
|
|
339
|
+
loading: {
|
|
340
|
+
type: BooleanConstructor;
|
|
341
|
+
default: boolean;
|
|
342
|
+
};
|
|
343
|
+
readonly: {
|
|
344
|
+
type: BooleanConstructor;
|
|
345
|
+
default: boolean;
|
|
346
|
+
};
|
|
347
|
+
}>, {}, {
|
|
348
|
+
localSelected: any[];
|
|
349
|
+
searchQuery: string;
|
|
350
|
+
dragIndex: any;
|
|
351
|
+
dragOverIndex: any;
|
|
352
|
+
}, {
|
|
353
|
+
allFilenames(): any[];
|
|
354
|
+
unselectedViews(): any[];
|
|
355
|
+
isSearching(): boolean;
|
|
356
|
+
searchResults(): any[];
|
|
357
|
+
}, {
|
|
358
|
+
isSelected(view: any): boolean;
|
|
359
|
+
toggleView(view: any, checked: any): void;
|
|
360
|
+
moveView(index: any, direction: any): void;
|
|
361
|
+
onDragStart(index: any, event: any): void;
|
|
362
|
+
onDragOver(index: any): void;
|
|
363
|
+
onDragLeave(): void;
|
|
364
|
+
onDrop(targetIndex: any): void;
|
|
365
|
+
onDragEnd(): void;
|
|
366
|
+
validate(): void;
|
|
367
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:visible" | "update:selectedViews")[], "update:visible" | "update:selectedViews", PublicProps, Readonly< ExtractPropTypes<{
|
|
368
|
+
visible: BooleanConstructor;
|
|
369
|
+
selectedViews: {
|
|
370
|
+
type: ArrayConstructor;
|
|
371
|
+
default: () => any[];
|
|
372
|
+
};
|
|
373
|
+
availableViews: {
|
|
374
|
+
type: ArrayConstructor;
|
|
375
|
+
default: () => any[];
|
|
376
|
+
};
|
|
377
|
+
loading: {
|
|
378
|
+
type: BooleanConstructor;
|
|
379
|
+
default: boolean;
|
|
380
|
+
};
|
|
381
|
+
readonly: {
|
|
382
|
+
type: BooleanConstructor;
|
|
383
|
+
default: boolean;
|
|
384
|
+
};
|
|
385
|
+
}>> & Readonly<{
|
|
386
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
387
|
+
"onUpdate:selectedViews"?: (...args: any[]) => any;
|
|
388
|
+
}>, {
|
|
389
|
+
loading: boolean;
|
|
390
|
+
visible: boolean;
|
|
391
|
+
selectedViews: unknown[];
|
|
392
|
+
availableViews: unknown[];
|
|
393
|
+
readonly: boolean;
|
|
394
|
+
}, {}, {
|
|
395
|
+
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)>;
|
|
396
|
+
PrimeButton: DefineComponent<ButtonProps, ButtonSlots, (e: string, ...args: any[]) => void>;
|
|
397
|
+
PrimeCheckbox: DefineComponent<CheckboxProps, CheckboxSlots, ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "change", event: Event) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "update:indeterminate", value: false) => void)>;
|
|
398
|
+
PrimeInputText: DefineComponent<InputTextProps, InputTextSlots, ((e: "update:modelValue", value: string) => void) & ((e: "value-change", value: string) => void)>;
|
|
399
|
+
PrimeIconField: DefineComponent<IconFieldProps, IconFieldSlots, (e: string, ...args: any[]) => void>;
|
|
400
|
+
PrimeInputIcon: DefineComponent<InputIconProps, InputIconSlots, (e: string, ...args: any[]) => void>;
|
|
401
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
317
402
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
318
403
|
export default _default;
|
|
319
404
|
//# sourceMappingURL=AdminClassificationPage.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdminClassificationPage.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/classification/AdminClassificationPage.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AdminClassificationPage.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/classification/AdminClassificationPage.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwjBA;"}
|