@raclettejs/workbench 0.1.33-canary.3 → 0.1.34

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 (32) hide show
  1. package/CHANGELOG.md +12 -3
  2. package/i18n/de-DE.json +15 -0
  3. package/i18n/en-EU.json +15 -0
  4. package/i18n/sk-SK.json +15 -0
  5. package/package.json +5 -4
  6. package/plugins/pacifico__compositions/frontend/widgets/CompositionListWidget.vue +39 -21
  7. package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkListWidget.vue +39 -21
  8. package/plugins/pacifico__plugins/frontend/index.ts +3 -3
  9. package/plugins/pacifico__plugins/frontend/widgets/PluginListWidget.vue +11 -12
  10. package/plugins/pacifico__tags/frontend/widgets/TagListWidget.vue +39 -21
  11. package/plugins/pacifico__users/frontend/widgets/UserListWidget.vue +79 -57
  12. package/services/frontend/src/app/components/dynamicForm/DynamicForm.vue +139 -51
  13. package/services/frontend/src/app/components/dynamicForm/DynamicInput.vue +95 -5
  14. package/services/frontend/src/app/components/dynamicForm/ObjectListInput.vue +78 -41
  15. package/services/frontend/src/app/components/dynamicForm/TextDivider.vue +46 -6
  16. package/services/frontend/src/app/components/dynamicForm/typedInputs/ListInput.vue +118 -27
  17. package/services/frontend/src/app/components/dynamicForm/typedInputs/RecordInput.vue +131 -21
  18. package/services/frontend/src/app/components/dynamicForm/typedInputs/TagsInput.vue +1 -0
  19. package/services/frontend/src/app/components/dynamicForm/typedInputs/TriggerInput.vue +4 -4
  20. package/services/frontend/src/app/composables/useWorkbenchTableActions.ts +29 -0
  21. package/services/frontend/src/orchestrator/assets/styles/themes/light.ts +4 -3
  22. package/.raclette/backend/raclette.config.js +0 -516
  23. package/.raclette/backend/yarn.lock +0 -3629
  24. package/.raclette/frontend/raclette.config.js +0 -46
  25. package/.raclette/frontend/yarn.lock +0 -3333
  26. package/.raclette/virtual/backend/README.md +0 -172
  27. package/.raclette/virtual/backend/raclette.config.js +0 -516
  28. package/.raclette/virtual/backend/yarn.lock +0 -3629
  29. package/.raclette/virtual/frontend/README.md +0 -511
  30. package/.raclette/virtual/frontend/raclette.config.js +0 -46
  31. package/.raclette/virtual/frontend/src/core/lib/eggs/readme.md +0 -75
  32. package/.raclette/virtual/frontend/yarn.lock +0 -3333
@@ -1,46 +0,0 @@
1
- // Generated Raclette frontend Configuration
2
- // This file is auto-generated, do not edit directly
3
-
4
- export const racletteConfig = {
5
- "name": "raclette-openstack-billingdashboard-workbench",
6
- "env": {
7
- "development": {
8
- "RACLETTE_DEBUG_MODE": true,
9
- "RACLETTE_APP_PATH": "/home/thesilverfisch/Work/Projects/pacifico/PublicRaclette/apps/openstack-billingdashboard",
10
- "RACLETTE_CORE_ABSOLUTE_PATH": "/home/thesilverfisch/Work/Projects/pacifico/PublicRaclette/core-dev/@raclettejs/core"
11
- },
12
- "production": {}
13
- },
14
- "global": {
15
- "requireAuthentication": true,
16
- "requiresAuthentication": true
17
- },
18
- "service": "frontend",
19
- "framework": "vue",
20
- "i18n": {
21
- "locales": [
22
- "sk",
23
- "en-EU",
24
- "de-DE"
25
- ],
26
- "priorities": {
27
- "app": 10,
28
- ".": 30,
29
- "app-workbench": 5,
30
- "app-app": 7
31
- },
32
- "vue": {
33
- "plugins": []
34
- }
35
- },
36
- "meta": {
37
- "title": "Workbench"
38
- },
39
- "preventNotifications": {
40
- "checkToken": {
41
- "status": 500
42
- }
43
- }
44
- };
45
-
46
- export default racletteConfig;