Partage d'export enregistré et génération asynchrone des exports

This commit is contained in:
2025-07-08 13:53:25 +00:00
parent c4cc0baa8e
commit 8bc16dadb0
447 changed files with 14134 additions and 3854 deletions

View File

@@ -34,7 +34,7 @@ module.exports = function (encore, entries) {
);
encore.addEntry(
"page_download_exports",
__dirname + "/Resources/public/page/export/download-export.js",
__dirname + "/Resources/public/vuejs/DownloadExport/index.ts",
);
// Modules entrypoints
@@ -106,6 +106,10 @@ module.exports = function (encore, entries) {
"mod_workflow_attachment",
__dirname + "/Resources/public/vuejs/WorkflowAttachment/index",
);
encore.addEntry(
"mod_saved_export_button",
__dirname + "/Resources/public/vuejs/SavedExportButtons/index.ts",
);
// Vue entrypoints
encore.addEntry(
@@ -116,4 +120,5 @@ module.exports = function (encore, entries) {
"vue_onthefly",
__dirname + "/Resources/public/vuejs/OnTheFly/index.js",
);
};