@raclettejs/workbench 0.1.18 → 0.1.20

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 (35) hide show
  1. package/.raclette/backend/raclette.config.js +519 -0
  2. package/{yarn.lock → .raclette/backend/yarn.lock} +1014 -796
  3. package/.raclette/frontend/raclette.config.js +47 -0
  4. package/.raclette/frontend/yarn.lock +3428 -0
  5. package/.raclette/raclette.config.js +643 -0
  6. package/.raclette/virtual/backend/README.md +172 -0
  7. package/.raclette/virtual/backend/raclette.config.js +519 -0
  8. package/.raclette/virtual/backend/yarn.lock +3773 -0
  9. package/.raclette/virtual/frontend/README.md +511 -0
  10. package/.raclette/virtual/frontend/raclette.config.js +47 -0
  11. package/.raclette/virtual/frontend/src/core/lib/eggs/readme.md +75 -0
  12. package/.raclette/virtual/frontend/yarn.lock +3428 -0
  13. package/CHANGELOG.md +11 -0
  14. package/i18n/de-DE.json +17 -1
  15. package/i18n/en-EU.json +17 -1
  16. package/i18n/sk-SK.json +17 -1
  17. package/package.json +6 -4
  18. package/packages.json +3 -1
  19. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/CompositionWidgetsLayout.vue +8 -3
  20. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetContextMenu.vue +60 -0
  21. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetIcon.vue +4 -7
  22. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetList.vue +34 -117
  23. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetListFlat.vue +20 -0
  24. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetListGrouped.vue +50 -0
  25. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetListHeader.vue +213 -0
  26. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetListItem.vue +56 -0
  27. package/plugins/pacifico__compositions/frontend/composables/useWidgetList.ts +288 -0
  28. package/plugins/pacifico__compositions/frontend/widgets/CompositionListWidget.vue +201 -57
  29. package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkListWidget.vue +219 -55
  30. package/plugins/pacifico__tags/frontend/widgets/TagListWidget.vue +198 -48
  31. package/raclette.config.js +4 -1
  32. package/services/frontend/src/app/components/FileUpload.vue +98 -0
  33. package/services/frontend/src/app/components/SelectionDialog.vue +182 -0
  34. package/services/frontend/src/app/components/SummaryDialog.vue +140 -0
  35. package/services/frontend/src/app/lib/jsonTools.ts +81 -0
@@ -0,0 +1,47 @@
1
+
2
+ // Generated Raclette Frontend Configuration
3
+ // This file is auto-generated, do not edit directly
4
+
5
+ export const racletteConfig = {
6
+ "name": "raclette-workbench",
7
+ "env": {
8
+ "development": {
9
+ "RACLETTE_DEBUG_MODE": true
10
+ },
11
+ "production": {
12
+ "NODE_ENV": "production"
13
+ }
14
+ },
15
+ "modules": [],
16
+ "plugins": [],
17
+ "global": {
18
+ "requireAuthentication": true,
19
+ "requiresAuthentication": true
20
+ },
21
+ "service": "frontend",
22
+ "framework": "vue",
23
+ "i18n": {
24
+ "locales": [
25
+ "en-EU"
26
+ ],
27
+ "priorities": {
28
+ "app": 10,
29
+ ".": 30,
30
+ "app-workbench": 5,
31
+ "app-app": 7
32
+ }
33
+ },
34
+ "vue": {
35
+ "plugins": []
36
+ },
37
+ "meta": {
38
+ "title": "Workbench"
39
+ },
40
+ "preventNotifications": {
41
+ "checkToken": {
42
+ "status": 500
43
+ }
44
+ }
45
+ };
46
+
47
+ export default racletteConfig;