@pristy/pristy-libvue 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pristy-libvue.css +1 -1
- package/dist/pristy-libvue.es.js +12250 -11386
- package/dist/pristy-libvue.es.js.map +1 -1
- package/dist/pristy-libvue.umd.js +15 -15
- package/dist/pristy-libvue.umd.js.map +1 -1
- package/dist/src/components/FolderUpload.vue.d.ts +1 -0
- package/dist/src/components/UploadStatus.vue.d.ts +1 -0
- package/dist/src/components/classification/AdminClassificationPage.vue.d.ts +31 -3
- package/dist/src/components/classification/AdminClassificationPage.vue.d.ts.map +1 -1
- package/dist/src/components/classification/EmplacementForm.vue.d.ts +14 -2
- package/dist/src/components/classification/EmplacementForm.vue.d.ts.map +1 -1
- package/dist/src/components/classification/FieldForm.vue.d.ts +5 -0
- package/dist/src/components/classification/FieldForm.vue.d.ts.map +1 -1
- package/dist/src/components/classification/MetadataFormFields.vue.d.ts +127 -1
- package/dist/src/components/classification/MetadataFormFields.vue.d.ts.map +1 -1
- package/dist/src/components/classification/NatureForm.vue.d.ts +14 -2
- package/dist/src/components/classification/NatureForm.vue.d.ts.map +1 -1
- package/dist/src/components/classification/NatureSelector.vue.d.ts +127 -1
- package/dist/src/components/classification/UploadPlanPopup.vue.d.ts +18 -7331
- package/dist/src/components/classification/UploadPlanPopup.vue.d.ts.map +1 -1
- package/dist/src/components/layouts/AppLayout.vue.d.ts +17 -1
- package/dist/src/components/layouts/AppLayout.vue.d.ts.map +1 -1
- package/dist/src/components/layouts/AppSidebar.vue.d.ts.map +1 -1
- package/dist/src/components/layouts/AppSubmenu.vue.d.ts.map +1 -1
- package/dist/src/components/layouts/AppTopbar.vue.d.ts.map +1 -1
- package/dist/src/components/navigation/DynamicContentView.vue.d.ts +2 -2
- package/dist/src/components/popup/ImportPopupWithWorker.vue.d.ts +2 -0
- package/dist/src/components/popup/MemberListPopup.vue.d.ts +2 -2
- package/dist/src/components/search/AddCriterionPopup.vue.d.ts +6 -0
- package/dist/src/components/search/AddCriterionPopup.vue.d.ts.map +1 -1
- package/dist/src/components/search/AdvancedSearchPanel.vue.d.ts +6 -0
- package/dist/src/components/search/AdvancedSearchPanel.vue.d.ts.map +1 -1
- package/dist/src/components/search/AdvancedViewPanel.vue.d.ts +8 -2
- package/dist/src/components/search/AdvancedViewPanel.vue.d.ts.map +1 -1
- package/dist/src/components/users/MemberList.vue.d.ts +2 -2
- package/dist/src/composables/useClassificationPlan.d.ts +3 -1
- package/dist/src/composables/useClassificationPlan.d.ts.map +1 -1
- package/dist/src/composables/useLayout.d.ts +17 -1
- package/dist/src/composables/useLayout.d.ts.map +1 -1
- package/dist/src/i18n/index.d.ts +126 -0
- package/dist/src/i18n/index.d.ts.map +1 -1
- package/dist/src/index.d.ts +5 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/services/ClassificationFileService.d.ts.map +1 -1
- package/dist/src/stores/config.d.ts +12 -0
- package/dist/src/stores/config.d.ts.map +1 -1
- package/dist/src/stores/upload.d.ts +9 -0
- package/dist/src/stores/upload.d.ts.map +1 -1
- package/dist/src/utils/classificationPlanUtils.d.ts +4 -1
- package/dist/src/utils/classificationPlanUtils.d.ts.map +1 -1
- package/package.json +5 -5
- package/dist/src/components/classification/RequalifyPlanPopup.vue.d.ts +0 -7289
- package/dist/src/components/classification/RequalifyPlanPopup.vue.d.ts.map +0 -1
package/dist/src/i18n/index.d.ts
CHANGED
|
@@ -346,6 +346,7 @@ declare const i18n: I18n<{
|
|
|
346
346
|
addCriterionPopupTitle: string;
|
|
347
347
|
propertyLabel: string;
|
|
348
348
|
propertyPlaceholder: string;
|
|
349
|
+
searchProperty: string;
|
|
349
350
|
propertyName: string;
|
|
350
351
|
propertyId: string;
|
|
351
352
|
propertyDescription: string;
|
|
@@ -831,6 +832,8 @@ declare const i18n: I18n<{
|
|
|
831
832
|
display: string;
|
|
832
833
|
categories: string;
|
|
833
834
|
views: string;
|
|
835
|
+
optional: string;
|
|
836
|
+
status: string;
|
|
834
837
|
};
|
|
835
838
|
buttons: {
|
|
836
839
|
newNature: string;
|
|
@@ -927,6 +930,7 @@ declare const i18n: I18n<{
|
|
|
927
930
|
nameAndCodeRequired: string;
|
|
928
931
|
codeAlreadyExists: string;
|
|
929
932
|
};
|
|
933
|
+
optionalFieldTooltip: string;
|
|
930
934
|
};
|
|
931
935
|
emplacementForm: {
|
|
932
936
|
code: string;
|
|
@@ -946,6 +950,7 @@ declare const i18n: I18n<{
|
|
|
946
950
|
validation: {
|
|
947
951
|
codeRequired: string;
|
|
948
952
|
};
|
|
953
|
+
optionalFieldTooltip: string;
|
|
949
954
|
};
|
|
950
955
|
fieldForm: {
|
|
951
956
|
name: {
|
|
@@ -1016,6 +1021,25 @@ declare const i18n: I18n<{
|
|
|
1016
1021
|
fetchError: string;
|
|
1017
1022
|
};
|
|
1018
1023
|
};
|
|
1024
|
+
optional: {
|
|
1025
|
+
label: string;
|
|
1026
|
+
help: string;
|
|
1027
|
+
};
|
|
1028
|
+
optionalSettings: {
|
|
1029
|
+
title: string;
|
|
1030
|
+
};
|
|
1031
|
+
defaultValue: {
|
|
1032
|
+
label: string;
|
|
1033
|
+
help: string;
|
|
1034
|
+
};
|
|
1035
|
+
prefix: {
|
|
1036
|
+
label: string;
|
|
1037
|
+
help: string;
|
|
1038
|
+
};
|
|
1039
|
+
suffix: {
|
|
1040
|
+
label: string;
|
|
1041
|
+
help: string;
|
|
1042
|
+
};
|
|
1019
1043
|
errors: {
|
|
1020
1044
|
nameAndDescriptionRequired: string;
|
|
1021
1045
|
fieldNameExists: string;
|
|
@@ -1066,10 +1090,12 @@ declare const i18n: I18n<{
|
|
|
1066
1090
|
max: string;
|
|
1067
1091
|
na: string;
|
|
1068
1092
|
constraint: string;
|
|
1093
|
+
defaultValue: string;
|
|
1069
1094
|
validationRegexError: string;
|
|
1070
1095
|
summary: {
|
|
1071
1096
|
verifyBeforeImport: string;
|
|
1072
1097
|
verifyBeforeRequalify: string;
|
|
1098
|
+
verifyBeforeDeposit: string;
|
|
1073
1099
|
generalInfo: string;
|
|
1074
1100
|
metadataToSend: string;
|
|
1075
1101
|
metadata: string;
|
|
@@ -1078,6 +1104,37 @@ declare const i18n: I18n<{
|
|
|
1078
1104
|
movement: string;
|
|
1079
1105
|
document: string;
|
|
1080
1106
|
};
|
|
1107
|
+
multiFile: {
|
|
1108
|
+
noFiles: string;
|
|
1109
|
+
fileName: string;
|
|
1110
|
+
category: string;
|
|
1111
|
+
metadataBtn: string;
|
|
1112
|
+
status: string;
|
|
1113
|
+
complete: string;
|
|
1114
|
+
incomplete: string;
|
|
1115
|
+
selectCategory: string;
|
|
1116
|
+
selectNature: string;
|
|
1117
|
+
selectCategoryFirst: string;
|
|
1118
|
+
searchNature: string;
|
|
1119
|
+
removeFile: string;
|
|
1120
|
+
metadataTitle: string;
|
|
1121
|
+
allCategories: string;
|
|
1122
|
+
configSingle: string;
|
|
1123
|
+
configMultiple: string;
|
|
1124
|
+
summaryBefore: string;
|
|
1125
|
+
selectedCount: string;
|
|
1126
|
+
unassigned: string;
|
|
1127
|
+
filterAll: string;
|
|
1128
|
+
filterIncomplete: string;
|
|
1129
|
+
filterComplete: string;
|
|
1130
|
+
progressLabel: string;
|
|
1131
|
+
modeMultiCategory: string;
|
|
1132
|
+
modeMonoCategory: string;
|
|
1133
|
+
bulkSelectNature: string;
|
|
1134
|
+
layoutRow: string;
|
|
1135
|
+
layoutCol: string;
|
|
1136
|
+
metadataFilled: string;
|
|
1137
|
+
};
|
|
1081
1138
|
buttons: {
|
|
1082
1139
|
cancel: string;
|
|
1083
1140
|
previous: string;
|
|
@@ -1086,6 +1143,8 @@ declare const i18n: I18n<{
|
|
|
1086
1143
|
acceptAndCreate: string;
|
|
1087
1144
|
acceptAndImport: string;
|
|
1088
1145
|
requalify: string;
|
|
1146
|
+
depositing: string;
|
|
1147
|
+
deposit: string;
|
|
1089
1148
|
};
|
|
1090
1149
|
toast: {
|
|
1091
1150
|
searchError: string;
|
|
@@ -1095,6 +1154,10 @@ declare const i18n: I18n<{
|
|
|
1095
1154
|
workspaceError: string;
|
|
1096
1155
|
requalifySuccess: string;
|
|
1097
1156
|
requalifyError: string;
|
|
1157
|
+
depositSuccess: string;
|
|
1158
|
+
depositError: string;
|
|
1159
|
+
createSuccess: string;
|
|
1160
|
+
createError: string;
|
|
1098
1161
|
};
|
|
1099
1162
|
requalify: {
|
|
1100
1163
|
title: string;
|
|
@@ -1517,6 +1580,7 @@ declare const i18n: I18n<{
|
|
|
1517
1580
|
addCriterionPopupTitle: string;
|
|
1518
1581
|
propertyLabel: string;
|
|
1519
1582
|
propertyPlaceholder: string;
|
|
1583
|
+
searchProperty: string;
|
|
1520
1584
|
propertyName: string;
|
|
1521
1585
|
propertyId: string;
|
|
1522
1586
|
propertyDescription: string;
|
|
@@ -2000,6 +2064,8 @@ declare const i18n: I18n<{
|
|
|
2000
2064
|
display: string;
|
|
2001
2065
|
categories: string;
|
|
2002
2066
|
views: string;
|
|
2067
|
+
optional: string;
|
|
2068
|
+
status: string;
|
|
2003
2069
|
};
|
|
2004
2070
|
buttons: {
|
|
2005
2071
|
newNature: string;
|
|
@@ -2096,6 +2162,7 @@ declare const i18n: I18n<{
|
|
|
2096
2162
|
nameAndCodeRequired: string;
|
|
2097
2163
|
codeAlreadyExists: string;
|
|
2098
2164
|
};
|
|
2165
|
+
optionalFieldTooltip: string;
|
|
2099
2166
|
};
|
|
2100
2167
|
emplacementForm: {
|
|
2101
2168
|
code: string;
|
|
@@ -2115,6 +2182,7 @@ declare const i18n: I18n<{
|
|
|
2115
2182
|
validation: {
|
|
2116
2183
|
codeRequired: string;
|
|
2117
2184
|
};
|
|
2185
|
+
optionalFieldTooltip: string;
|
|
2118
2186
|
};
|
|
2119
2187
|
fieldForm: {
|
|
2120
2188
|
name: {
|
|
@@ -2185,6 +2253,25 @@ declare const i18n: I18n<{
|
|
|
2185
2253
|
fetchError: string;
|
|
2186
2254
|
};
|
|
2187
2255
|
};
|
|
2256
|
+
optional: {
|
|
2257
|
+
label: string;
|
|
2258
|
+
help: string;
|
|
2259
|
+
};
|
|
2260
|
+
optionalSettings: {
|
|
2261
|
+
title: string;
|
|
2262
|
+
};
|
|
2263
|
+
defaultValue: {
|
|
2264
|
+
label: string;
|
|
2265
|
+
help: string;
|
|
2266
|
+
};
|
|
2267
|
+
prefix: {
|
|
2268
|
+
label: string;
|
|
2269
|
+
help: string;
|
|
2270
|
+
};
|
|
2271
|
+
suffix: {
|
|
2272
|
+
label: string;
|
|
2273
|
+
help: string;
|
|
2274
|
+
};
|
|
2188
2275
|
errors: {
|
|
2189
2276
|
nameAndDescriptionRequired: string;
|
|
2190
2277
|
fieldNameExists: string;
|
|
@@ -2235,10 +2322,12 @@ declare const i18n: I18n<{
|
|
|
2235
2322
|
max: string;
|
|
2236
2323
|
na: string;
|
|
2237
2324
|
constraint: string;
|
|
2325
|
+
defaultValue: string;
|
|
2238
2326
|
validationRegexError: string;
|
|
2239
2327
|
summary: {
|
|
2240
2328
|
verifyBeforeImport: string;
|
|
2241
2329
|
verifyBeforeRequalify: string;
|
|
2330
|
+
verifyBeforeDeposit: string;
|
|
2242
2331
|
generalInfo: string;
|
|
2243
2332
|
metadataToSend: string;
|
|
2244
2333
|
metadata: string;
|
|
@@ -2247,6 +2336,37 @@ declare const i18n: I18n<{
|
|
|
2247
2336
|
movement: string;
|
|
2248
2337
|
document: string;
|
|
2249
2338
|
};
|
|
2339
|
+
multiFile: {
|
|
2340
|
+
noFiles: string;
|
|
2341
|
+
fileName: string;
|
|
2342
|
+
category: string;
|
|
2343
|
+
metadataBtn: string;
|
|
2344
|
+
status: string;
|
|
2345
|
+
complete: string;
|
|
2346
|
+
incomplete: string;
|
|
2347
|
+
selectCategory: string;
|
|
2348
|
+
selectNature: string;
|
|
2349
|
+
selectCategoryFirst: string;
|
|
2350
|
+
searchNature: string;
|
|
2351
|
+
removeFile: string;
|
|
2352
|
+
metadataTitle: string;
|
|
2353
|
+
allCategories: string;
|
|
2354
|
+
configSingle: string;
|
|
2355
|
+
configMultiple: string;
|
|
2356
|
+
summaryBefore: string;
|
|
2357
|
+
selectedCount: string;
|
|
2358
|
+
unassigned: string;
|
|
2359
|
+
filterAll: string;
|
|
2360
|
+
filterIncomplete: string;
|
|
2361
|
+
filterComplete: string;
|
|
2362
|
+
progressLabel: string;
|
|
2363
|
+
modeMultiCategory: string;
|
|
2364
|
+
modeMonoCategory: string;
|
|
2365
|
+
bulkSelectNature: string;
|
|
2366
|
+
layoutRow: string;
|
|
2367
|
+
layoutCol: string;
|
|
2368
|
+
metadataFilled: string;
|
|
2369
|
+
};
|
|
2250
2370
|
buttons: {
|
|
2251
2371
|
cancel: string;
|
|
2252
2372
|
previous: string;
|
|
@@ -2255,6 +2375,8 @@ declare const i18n: I18n<{
|
|
|
2255
2375
|
acceptAndCreate: string;
|
|
2256
2376
|
acceptAndImport: string;
|
|
2257
2377
|
requalify: string;
|
|
2378
|
+
depositing: string;
|
|
2379
|
+
deposit: string;
|
|
2258
2380
|
};
|
|
2259
2381
|
toast: {
|
|
2260
2382
|
searchError: string;
|
|
@@ -2264,6 +2386,10 @@ declare const i18n: I18n<{
|
|
|
2264
2386
|
workspaceError: string;
|
|
2265
2387
|
requalifySuccess: string;
|
|
2266
2388
|
requalifyError: string;
|
|
2389
|
+
depositSuccess: string;
|
|
2390
|
+
depositError: string;
|
|
2391
|
+
createSuccess: string;
|
|
2392
|
+
createError: string;
|
|
2267
2393
|
};
|
|
2268
2394
|
requalify: {
|
|
2269
2395
|
title: 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"}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -76,7 +76,8 @@ import { default as NatureForm } from '../components/classification/NatureForm.v
|
|
|
76
76
|
import { default as FieldForm } from '../components/classification/FieldForm.vue';
|
|
77
77
|
import { default as EmplacementForm } from '../components/classification/EmplacementForm.vue';
|
|
78
78
|
import { default as UploadPlanPopup } from '../components/classification/UploadPlanPopup.vue';
|
|
79
|
-
import { default as
|
|
79
|
+
import { default as NatureSelector } from '../components/classification/NatureSelector.vue';
|
|
80
|
+
import { default as MetadataFormFields } from '../components/classification/MetadataFormFields.vue';
|
|
80
81
|
export { default as alfrescoFileService } from '../services/AlfrescoFileService.js';
|
|
81
82
|
export { default as alfrescoNodeService } from '../services/AlfrescoNodeService.js';
|
|
82
83
|
export { default as alfrescoPermissionService } from '../services/AlfrescoPermissionService.js';
|
|
@@ -128,10 +129,11 @@ export { useFilingPlanStore } from '../stores/filingPlan.js';
|
|
|
128
129
|
export { default as LoginPage } from '../pages/LoginPage.vue';
|
|
129
130
|
export { default as NotFoundPages } from '../pages/NotFoundPages.vue';
|
|
130
131
|
export { default as ErrorPage } from '../pages/ErrorPage.vue';
|
|
132
|
+
export { useClassificationPlan } from '../composables/useClassificationPlan.js';
|
|
131
133
|
export namespace componentLibrary {
|
|
132
134
|
function install(app: any): void;
|
|
133
135
|
}
|
|
134
|
-
export { PDFComponent, PristyIcon, PaginatorComponent, CopyOrMovePopup, TreeExplorer, EllipsisBreadcrumb, BreadCrumbAlfresco, ComplexBreadcrumb, ContentTableView, ContentListView, ContentCompactTableView, ContentGridView, DynamicContentView, ContentFiltersHeader, ImageViewer, VideoPlayer, AudioPlayer, PreviewPanel, LayoutSelector, ColumnTogglePanel, ContentToolbar, SelectionBar, HelpKeyMessage, SelectionStatus, MemberList, ActionMenu, CustomToastContent, FolderUpload, UploadTargetInfo, UploadStatus, AddPairInConfigDialog, ConfigDatatable, ConfigItemEditor, ConfigSplitView, ConfigUpload, ListVersionConfig, AddCriterionPopup, AdvancedSearchPanel, AdvancedViewPanel, ExactSearch, FavoriteViewMenu, UserViewsFavoritesPanel, SaveViewPopup, ViewResultsPanel, PdfToolsComponent, CodeMirrorEditor, DiffViewerDialog, ArrayEditor, WorkspaceCard, WorkspaceList, PredefinedViewsPanel, ViewList, CreateWorkflowPopup, ImportNewVersionPopup, ShareLinkPopup, MemberListPopup, SendMailPopup, ImportPopupWithWorker, ErrorComponent, AppLayout, AppSidebar, AppTopbar, AppSubmenu, AppFooter, AppMobileLayout, SidebarProfileSection, ChatPanel, ChatMessage, ChatInput, ChatRoomList, AdminClassificationLauncher, ClassificationPlanList, ClassificationPlanCreate, AdminClassificationPage, NatureForm, FieldForm, EmplacementForm, UploadPlanPopup,
|
|
136
|
+
export { PDFComponent, PristyIcon, PaginatorComponent, CopyOrMovePopup, TreeExplorer, EllipsisBreadcrumb, BreadCrumbAlfresco, ComplexBreadcrumb, ContentTableView, ContentListView, ContentCompactTableView, ContentGridView, DynamicContentView, ContentFiltersHeader, ImageViewer, VideoPlayer, AudioPlayer, PreviewPanel, LayoutSelector, ColumnTogglePanel, ContentToolbar, SelectionBar, HelpKeyMessage, SelectionStatus, MemberList, ActionMenu, CustomToastContent, FolderUpload, UploadTargetInfo, UploadStatus, AddPairInConfigDialog, ConfigDatatable, ConfigItemEditor, ConfigSplitView, ConfigUpload, ListVersionConfig, AddCriterionPopup, AdvancedSearchPanel, AdvancedViewPanel, ExactSearch, FavoriteViewMenu, UserViewsFavoritesPanel, SaveViewPopup, ViewResultsPanel, PdfToolsComponent, CodeMirrorEditor, DiffViewerDialog, ArrayEditor, WorkspaceCard, WorkspaceList, PredefinedViewsPanel, ViewList, CreateWorkflowPopup, ImportNewVersionPopup, ShareLinkPopup, MemberListPopup, SendMailPopup, ImportPopupWithWorker, ErrorComponent, AppLayout, AppSidebar, AppTopbar, AppSubmenu, AppFooter, AppMobileLayout, SidebarProfileSection, ChatPanel, ChatMessage, ChatInput, ChatRoomList, AdminClassificationLauncher, ClassificationPlanList, ClassificationPlanCreate, AdminClassificationPage, NatureForm, FieldForm, EmplacementForm, UploadPlanPopup, NatureSelector, MetadataFormFields };
|
|
135
137
|
export { default as filingPlanService, NatureDocument, TypeDossier } from '../services/FilingPlanService.js';
|
|
136
138
|
export { useLayout, MENU_MODES, MENU_THEMES } from '../composables/useLayout.js';
|
|
137
139
|
export { checkNotNull, checkString } from '../directives/assert.js';
|
|
@@ -140,4 +142,5 @@ export { useMarkdownPreview, renderMarkdown, sanitizeHtml, generatePreviewDocume
|
|
|
140
142
|
export { useCollabWebSocket, ConnectionState } from '../composables/useCollabWebSocket.js';
|
|
141
143
|
export { useCollabEditor, ROLE_EDITOR, ROLE_OBSERVER } from '../composables/useCollabEditor.js';
|
|
142
144
|
export { useChatWebSocket, ConnectionState as ChatConnectionState } from '../composables/useChatWebSocket.js';
|
|
145
|
+
export { resolveTemplate, extractVariables } from '../utils/classificationPlanUtils.js';
|
|
143
146
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuGE,iCAqEC;;yBA3JsB,sCAAsC;uBACxC,6BAA6B;+BAFrB,gDAAgD;4BAGnD,wCAAwC;yBAC3C,+BAA+B;+BACzB,gDAAgD;+BAChD,gDAAgD;8BACjD,+CAA+C;6BAChD,8CAA8C;4BAC/C,6CAA6C;oCACrC,qDAAqD;4BAC7D,6CAA6C;+BAC1C,gDAAgD;iCAC9C,kDAAkD;wBAC3D,qCAAqC;wBACrC,qCAAqC;wBACrC,qCAAqC;yBACpC,0CAA0C;2BAOxC,4CAA4C;8BACzC,+CAA+C;2BAClD,4CAA4C;yBAC9C,0CAA0C;2BACxC,iCAAiC;4BARhC,kCAAkC;uBASvC,mCAAmC;uBACnC,kCAAkC;+BAC1B,2CAA2C;yBAGjD,+BAA+B;6BAD3B,mCAAmC;yBADvC,+BAA+B;kCAItB,+CAA+C;4BACrD,yCAAyC;6BACxC,0CAA0C;4BAC3C,yCAAyC;yBAC5C,sCAAsC;8BACjC,2CAA2C;8BAC3C,2CAA2C;gCACzC,6CAA6C;8BAC/C,2CAA2C;wBACjD,qCAAqC;6BAChC,0CAA0C;oCACnC,iDAAiD;0BAC3D,uCAAuC;6BACpC,0CAA0C;8BACzC,6CAA6C;6BAC9C,mCAAmC;6BACnC,mCAAmC;wBACxC,qCAAqC;0BAMnC,0CAA0C;0BAC1C,0CAA0C;iCACnC,6CAA6C;qBACzD,iCAAiC;gCA5CtB,4CAA4C;kCAC1C,8CAA8C;2BAErD,uCAAuC;4BACtC,wCAAwC;0BAC1C,sCAAsC;kCAY9B,8CAA8C;2BAmBrD,iCAAiC;sBAuBtC,oCAAoC;uBACnC,qCAAqC;sBACtC,oCAAoC;uBACnC,qCAAqC;sBACtC,oCAAoC;4BAC9B,0CAA0C;kCACpC,gDAAgD;sBA5B5D,iCAAiC;wBAC/B,mCAAmC;sBACrC,iCAAiC;yBAC9B,oCAAoC;wCAOrB,6DAA6D;mCAClE,wDAAwD;qCACtD,0DAA0D;oCAC3D,yDAAyD;uBACtE,4CAA4C;sBAC7C,2CAA2C;4BACrC,iDAAiD;4BACjD,iDAAiD;2BAClD,gDAAgD;+BAC5C,oDAAoD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClassificationFileService.d.ts","sourceRoot":"","sources":["../../../src/services/ClassificationFileService.js"],"names":[],"mappings":";;AAsBA;;;;GAIG;AACH;IACE;;;;;;;OAOG;IACH,gCAJW,MAAM,YACN,KAAQ,GACN,OAAO,CAAC,MAAM,CAAC,CA0C3B;IAED;;;;OAIG;IACH,sCAHW,MAAM,GACJ,OAAO,CAAC,MAAM,CAAC,CAM3B;IAED;;;;;;;;;;OAUG;IACH,oCARW,MAAM,YACN,KAAQ,kBACR,MAAM,YACN,MAAM,+BAGJ,OAAO,KAAQ,CA2C3B;IAED;;;;;;;;;;OAUG;IACH,0BARW,MAAM,mBACN,MAAM,YACN,KAAQ,8BAER,MAAM,wCAEJ,OAAO,KAAQ,
|
|
1
|
+
{"version":3,"file":"ClassificationFileService.d.ts","sourceRoot":"","sources":["../../../src/services/ClassificationFileService.js"],"names":[],"mappings":";;AAsBA;;;;GAIG;AACH;IACE;;;;;;;OAOG;IACH,gCAJW,MAAM,YACN,KAAQ,GACN,OAAO,CAAC,MAAM,CAAC,CA0C3B;IAED;;;;OAIG;IACH,sCAHW,MAAM,GACJ,OAAO,CAAC,MAAM,CAAC,CAM3B;IAED;;;;;;;;;;OAUG;IACH,oCARW,MAAM,YACN,KAAQ,kBACR,MAAM,YACN,MAAM,+BAGJ,OAAO,KAAQ,CA2C3B;IAED;;;;;;;;;;OAUG;IACH,0BARW,MAAM,mBACN,MAAM,YACN,KAAQ,8BAER,MAAM,wCAEJ,OAAO,KAAQ,CAwC3B;IAED;;;;;;;;;OASG;IACH,gCANW,MAAM,YACN,KAAQ,SACR,IAAI,EAAE,8BAEN,KAAQ,yCAmBlB;CACF"}
|
|
@@ -85,6 +85,10 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
|
|
|
85
85
|
WORKSPACE_TYPE_GALLERY_ENABLED: boolean;
|
|
86
86
|
CLASSIFICATION_PLAN_ENABLED: boolean;
|
|
87
87
|
CLASSIFICATION_PLAN_NAME: string;
|
|
88
|
+
CLASSIFICATION_PLAN_ALLOW_NO_NATURE: boolean;
|
|
89
|
+
CLASSIFICATION_PLAN_FULL_VIEW_THRESHOLD: number;
|
|
90
|
+
CLASSIFICATION_PLAN_INLINE_METADATA_THRESHOLD: number;
|
|
91
|
+
CLASSIFICATION_PLAN_NATURE_CODE_PROPERTY: string;
|
|
88
92
|
}, {
|
|
89
93
|
oidc: (state: {
|
|
90
94
|
INSTANCE_NAME: string;
|
|
@@ -172,6 +176,10 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
|
|
|
172
176
|
WORKSPACE_TYPE_GALLERY_ENABLED: boolean;
|
|
173
177
|
CLASSIFICATION_PLAN_ENABLED: boolean;
|
|
174
178
|
CLASSIFICATION_PLAN_NAME: string;
|
|
179
|
+
CLASSIFICATION_PLAN_ALLOW_NO_NATURE: boolean;
|
|
180
|
+
CLASSIFICATION_PLAN_FULL_VIEW_THRESHOLD: number;
|
|
181
|
+
CLASSIFICATION_PLAN_INLINE_METADATA_THRESHOLD: number;
|
|
182
|
+
CLASSIFICATION_PLAN_NATURE_CODE_PROPERTY: string;
|
|
175
183
|
} & PiniaCustomStateProperties<{
|
|
176
184
|
INSTANCE_NAME: string;
|
|
177
185
|
APP_ROOT_TITLE: string;
|
|
@@ -258,6 +266,10 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
|
|
|
258
266
|
WORKSPACE_TYPE_GALLERY_ENABLED: boolean;
|
|
259
267
|
CLASSIFICATION_PLAN_ENABLED: boolean;
|
|
260
268
|
CLASSIFICATION_PLAN_NAME: string;
|
|
269
|
+
CLASSIFICATION_PLAN_ALLOW_NO_NATURE: boolean;
|
|
270
|
+
CLASSIFICATION_PLAN_FULL_VIEW_THRESHOLD: number;
|
|
271
|
+
CLASSIFICATION_PLAN_INLINE_METADATA_THRESHOLD: number;
|
|
272
|
+
CLASSIFICATION_PLAN_NATURE_CODE_PROPERTY: string;
|
|
261
273
|
}>) => {
|
|
262
274
|
init: {
|
|
263
275
|
onLoad: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/stores/config.js"],"names":[],"mappings":";AAoBA
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/stores/config.js"],"names":[],"mappings":";AAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqLI;;OAEG;;IAiBH;;;;;OAKG;0CADS,OAAO,CAAC,IAAI,CAAC;GAgC1B"}
|
|
@@ -50,6 +50,15 @@ export const useUploadStore: StoreDefinition<"upload", {
|
|
|
50
50
|
* @param {Array} fileRenames - Array of {original, new} rename mappings
|
|
51
51
|
*/
|
|
52
52
|
startUploadWithClassificationPlan(workspaceSiteId: string, pathFull: string, files: any[], metadata: any, fileRenames: any[], destinationNodeId: any): void;
|
|
53
|
+
/**
|
|
54
|
+
* Start a classification plan upload where each file has its own
|
|
55
|
+
* pathFull, metadata, and fileRenames.
|
|
56
|
+
* @param {string} workspaceSiteId
|
|
57
|
+
* @param {File[]} files
|
|
58
|
+
* @param {Object[]} perFileData - Array of { pathFull, metadata, fileRenames } per file
|
|
59
|
+
* @param {string} destinationNodeId
|
|
60
|
+
*/
|
|
61
|
+
startUploadWithClassificationPlanMulti(workspaceSiteId: string, files: File[], perFileData: any[], destinationNodeId: string): void;
|
|
53
62
|
/**
|
|
54
63
|
* Handle classification plan upload request from worker
|
|
55
64
|
* Uses multipart/form-data for efficient upload without base64 encoding
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"upload.d.ts","sourceRoot":"","sources":["../../../src/stores/upload.js"],"names":[],"mappings":";AA6BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuNI;;;;;;;;OAQG;uDALQ,MAAM,YACN,MAAM;IA+DjB;;;OAGG;;GAwGJ"}
|
|
1
|
+
{"version":3,"file":"upload.d.ts","sourceRoot":"","sources":["../../../src/stores/upload.js"],"names":[],"mappings":";AA6BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuNI;;;;;;;;OAQG;uDALQ,MAAM,YACN,MAAM;IA+DjB;;;;;;;OAOG;4DAJQ,MAAM,SACN,IAAI,EAAE,eACN,KAAQ,qBACR,MAAM;IAoDjB;;;OAGG;;GAwGJ"}
|
|
@@ -8,9 +8,12 @@ export function extractVariables(template: string): string[];
|
|
|
8
8
|
/**
|
|
9
9
|
* Resolve a template string by replacing ${var} placeholders with values.
|
|
10
10
|
* Supports the :upper filter.
|
|
11
|
+
* When a variable has no value, uses the field's default if available.
|
|
12
|
+
* Applies prefix/suffix around the resolved value (only if non-empty).
|
|
11
13
|
* @param {string} template
|
|
12
14
|
* @param {Object} values - key/value map of field values
|
|
15
|
+
* @param {Array} [fields] - optional array of field definitions (with default, prefix, suffix)
|
|
13
16
|
* @returns {string}
|
|
14
17
|
*/
|
|
15
|
-
export function resolveTemplate(template: string, values: any): string;
|
|
18
|
+
export function resolveTemplate(template: string, values: any, fields?: any[]): string;
|
|
16
19
|
//# sourceMappingURL=classificationPlanUtils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"classificationPlanUtils.d.ts","sourceRoot":"","sources":["../../../src/utils/classificationPlanUtils.js"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,2CAHW,MAAM,GACJ,MAAM,EAAE,CASpB;AAED
|
|
1
|
+
{"version":3,"file":"classificationPlanUtils.d.ts","sourceRoot":"","sources":["../../../src/utils/classificationPlanUtils.js"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,2CAHW,MAAM,GACJ,MAAM,EAAE,CASpB;AAED;;;;;;;;;GASG;AACH,0CALW,MAAM,gCAGJ,MAAM,CAkClB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pristy/pristy-libvue",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "Core library used by all Pristy applications",
|
|
5
5
|
"homepage": "https://pristy.fr/en/",
|
|
6
6
|
"author": "JECI SARL",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@codemirror/search": "^6.6.0",
|
|
55
55
|
"@codemirror/state": "^6.6.0",
|
|
56
56
|
"@codemirror/theme-one-dark": "^6.1.3",
|
|
57
|
-
"@codemirror/view": "^6.41.
|
|
57
|
+
"@codemirror/view": "^6.41.1",
|
|
58
58
|
"codemirror": "6.0.2",
|
|
59
59
|
"vue": "^3.5.22",
|
|
60
60
|
"vue-i18n": "^11.3.2",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@tato30/vue-pdf": "^1.11.5",
|
|
72
72
|
"@vueuse/core": "^12.8.2",
|
|
73
73
|
"async-retry": "^1.3.3",
|
|
74
|
-
"axios": "^1.15.
|
|
74
|
+
"axios": "^1.15.1",
|
|
75
75
|
"dompurify": "^3.4.0",
|
|
76
76
|
"email-validator": "^2.0.4",
|
|
77
77
|
"highlight.js": "^11.11.1",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"pinia": "^2.3.1",
|
|
85
85
|
"primevue": "^4.5.5",
|
|
86
86
|
"quick-lru": "^7.3.0",
|
|
87
|
-
"sanitize-html": "^2.17.
|
|
87
|
+
"sanitize-html": "^2.17.3",
|
|
88
88
|
"type-check": "^0.4.0",
|
|
89
89
|
"vue-draggable-next": "^2.3.0"
|
|
90
90
|
},
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"eslint-plugin-promise": "^7.2.1",
|
|
103
103
|
"eslint-plugin-vue": "^9.33.0",
|
|
104
104
|
"jsdom": "^27.4.0",
|
|
105
|
-
"prettier": "^3.8.
|
|
105
|
+
"prettier": "^3.8.3",
|
|
106
106
|
"rollup-plugin-visualizer": "^6.0.11",
|
|
107
107
|
"sass": "^1.99.0",
|
|
108
108
|
"svgo": "^4.0.1",
|