@raclettejs/workbench 0.1.31 → 0.1.32-nightly

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 (26) hide show
  1. package/.raclette/backend/raclette.config.js +515 -0
  2. package/.raclette/backend/yarn.lock +3636 -0
  3. package/.raclette/frontend/raclette.config.js +43 -0
  4. package/.raclette/frontend/yarn.lock +3388 -0
  5. package/.raclette/virtual/backend/README.md +172 -0
  6. package/.raclette/virtual/backend/raclette.config.js +515 -0
  7. package/.raclette/virtual/backend/yarn.lock +3636 -0
  8. package/.raclette/virtual/frontend/README.md +511 -0
  9. package/.raclette/virtual/frontend/raclette.config.js +43 -0
  10. package/.raclette/virtual/frontend/src/core/lib/eggs/readme.md +75 -0
  11. package/.raclette/virtual/frontend/yarn.lock +3388 -0
  12. package/CHANGELOG.md +6 -10
  13. package/i18n/de-DE.json +1 -10
  14. package/i18n/en-EU.json +1 -10
  15. package/i18n/sk-SK.json +1 -10
  16. package/package.json +5 -3
  17. package/plugins/pacifico__compositions/frontend/widgets/CompositionListWidget.vue +61 -105
  18. package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkListWidget.vue +64 -120
  19. package/plugins/pacifico__plugins/frontend/widgets/PluginListWidget.vue +2 -2
  20. package/plugins/pacifico__tags/frontend/widgets/TagListWidget.vue +45 -102
  21. package/plugins/pacifico__users/frontend/widgets/UserListWidget.vue +24 -16
  22. package/services/frontend/src/app/lib/jsonTools.ts +69 -3
  23. package/services/frontend/src/app/components/BaseDataTable.vue +0 -303
  24. package/services/frontend/src/app/components/FileUpload.vue +0 -98
  25. package/services/frontend/src/app/components/SelectionDialog.vue +0 -182
  26. package/services/frontend/src/app/components/SummaryDialog.vue +0 -140
@@ -0,0 +1,43 @@
1
+ // Generated Raclette frontend Configuration
2
+ // This file is auto-generated, do not edit directly
3
+
4
+ export const racletteConfig = {
5
+ "name": "playground-workbench",
6
+ "env": {
7
+ "development": {
8
+ "RACLETTE_DEBUG_MODE": true,
9
+ "RACLETTE_APP_PATH": "/home/thesilverfisch/Work/Projects/pacifico/PublicRaclette/core-dev/@raclettejs/playground"
10
+ },
11
+ "production": {}
12
+ },
13
+ "global": {
14
+ "requireAuthentication": true,
15
+ "requiresAuthentication": true
16
+ },
17
+ "service": "frontend",
18
+ "framework": "vue",
19
+ "i18n": {
20
+ "locales": [
21
+ "en-EU"
22
+ ],
23
+ "priorities": {
24
+ "app": 10,
25
+ ".": 30,
26
+ "app-workbench": 5,
27
+ "app-app": 7
28
+ },
29
+ "vue": {
30
+ "plugins": []
31
+ }
32
+ },
33
+ "meta": {
34
+ "title": "Workbench"
35
+ },
36
+ "preventNotifications": {
37
+ "checkToken": {
38
+ "status": 500
39
+ }
40
+ }
41
+ };
42
+
43
+ export default racletteConfig;