@raclettejs/workbench 0.1.33-canary.2 → 0.1.33

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 (29) hide show
  1. package/.raclette/backend/raclette.config.js +3 -3
  2. package/.raclette/backend/yarn.lock +4 -11
  3. package/.raclette/frontend/raclette.config.js +6 -4
  4. package/.raclette/frontend/yarn.lock +451 -489
  5. package/.raclette/virtual/backend/raclette.config.js +3 -3
  6. package/.raclette/virtual/backend/yarn.lock +4 -11
  7. package/.raclette/virtual/frontend/raclette.config.js +6 -4
  8. package/.raclette/virtual/frontend/yarn.lock +451 -489
  9. package/CHANGELOG.md +19 -3
  10. package/i18n/de-DE.json +15 -0
  11. package/i18n/en-EU.json +15 -0
  12. package/i18n/sk-SK.json +15 -0
  13. package/package.json +5 -4
  14. package/plugins/pacifico__compositions/frontend/widgets/CompositionListWidget.vue +39 -21
  15. package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkListWidget.vue +39 -21
  16. package/plugins/pacifico__plugins/frontend/index.ts +3 -3
  17. package/plugins/pacifico__plugins/frontend/widgets/PluginListWidget.vue +11 -12
  18. package/plugins/pacifico__tags/frontend/widgets/TagListWidget.vue +39 -21
  19. package/plugins/pacifico__users/frontend/widgets/UserListWidget.vue +79 -57
  20. package/services/frontend/src/app/components/dynamicForm/DynamicForm.vue +139 -51
  21. package/services/frontend/src/app/components/dynamicForm/DynamicInput.vue +95 -5
  22. package/services/frontend/src/app/components/dynamicForm/ObjectListInput.vue +78 -41
  23. package/services/frontend/src/app/components/dynamicForm/TextDivider.vue +46 -6
  24. package/services/frontend/src/app/components/dynamicForm/typedInputs/ListInput.vue +118 -27
  25. package/services/frontend/src/app/components/dynamicForm/typedInputs/RecordInput.vue +131 -21
  26. package/services/frontend/src/app/components/dynamicForm/typedInputs/TagsInput.vue +1 -0
  27. package/services/frontend/src/app/components/dynamicForm/typedInputs/TriggerInput.vue +4 -4
  28. package/services/frontend/src/app/composables/useWorkbenchTableActions.ts +29 -0
  29. package/services/frontend/src/orchestrator/assets/styles/themes/light.ts +4 -3
@@ -2,12 +2,12 @@
2
2
  // This file is auto-generated, do not edit directly
3
3
 
4
4
  export const racletteConfig = {
5
- "name": "playground-workbench",
5
+ "name": "raclette-openstack-billingdashboard-workbench",
6
6
  "env": {
7
7
  "development": {
8
8
  "RACLETTE_DEBUG_MODE": true,
9
- "RACLETTE_APP_PATH": "/home/thesilverfisch/Work/Projects/pacifico/PublicRaclette/core-dev/@raclettejs/playground",
10
- "RACLETTE_CORE_ABSOLUTE_PATH": "/home/thesilverfisch/Work/Projects/pacifico/PublicRaclette/core-dev/@raclettejs/core"
9
+ "RACLETTE_APP_PATH": "/Users/michellefuchs/_PACIFICO/Code/__PUBLIC_GITLAB/_APPS/openstack-billingdashboard",
10
+ "RACLETTE_CORE_ABSOLUTE_PATH": "/Users/michellefuchs/_PACIFICO/Code/__PUBLIC_GITLAB/core-dev/@raclettejs/core"
11
11
  },
12
12
  "production": {}
13
13
  },
@@ -325,17 +325,10 @@
325
325
  resolved "https://registry.yarnpkg.com/@lukeed/ms/-/ms-2.0.2.tgz#07f09e59a74c52f4d88c6db5c1054e819538e2a8"
326
326
  integrity sha512-9I2Zn6+NJLfaGoz9jN3lpwDgAYvfGeNYdbAIjJOqzs4Tpc+VU3Jqq4IofSUBKajiDS8k9fZIg18/z13mpk1bsA==
327
327
 
328
- "@mongodb-js/saslprep@^1.1.9":
329
- version "1.4.9"
330
- resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.4.9.tgz#6636ebc9aaa435dbead26f9212953584dc390af6"
331
- integrity sha512-RXSxsokhAF/4nWys8An8npsqOI33Ex1Hlzqjw2pZOO+GKtMAR2noGnUdsFiGwsaO/xXI+56mtjTmDA3JXJsvmA==
332
- dependencies:
333
- sparse-bitfield "^3.0.3"
334
-
335
- "@mongodb-js/saslprep@^1.3.0":
336
- version "1.4.6"
337
- resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.4.6.tgz#2edf5819fa0e69d86059f44d1fe57ae9d7817c12"
338
- integrity sha512-y+x3H1xBZd38n10NZF/rEBlvDOOMQ6LKUTHqr8R9VkJ+mmQOYtJFxIlkkK8fZrtOiL6VixbOBWMbZGBdal3Z1g==
328
+ "@mongodb-js/saslprep@^1.1.9", "@mongodb-js/saslprep@^1.3.0":
329
+ version "1.4.8"
330
+ resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.4.8.tgz#f978459b1c213a2d806fea0e02a03e9d7086b985"
331
+ integrity sha512-kpjr2jy2w71w0oqAMI8oibBmiF9lXxWkEQs5gMkW4hVE48bsqINGLxnCSYW62ck/NHXJQpQEfA9WlJ1sY0eqBg==
339
332
  dependencies:
340
333
  sparse-bitfield "^3.0.3"
341
334
 
@@ -2,12 +2,12 @@
2
2
  // This file is auto-generated, do not edit directly
3
3
 
4
4
  export const racletteConfig = {
5
- "name": "playground-workbench",
5
+ "name": "raclette-openstack-billingdashboard-workbench",
6
6
  "env": {
7
7
  "development": {
8
8
  "RACLETTE_DEBUG_MODE": true,
9
- "RACLETTE_APP_PATH": "/home/thesilverfisch/Work/Projects/pacifico/PublicRaclette/core-dev/@raclettejs/playground",
10
- "RACLETTE_CORE_ABSOLUTE_PATH": "/home/thesilverfisch/Work/Projects/pacifico/PublicRaclette/core-dev/@raclettejs/core"
9
+ "RACLETTE_APP_PATH": "/Users/michellefuchs/_PACIFICO/Code/__PUBLIC_GITLAB/_APPS/openstack-billingdashboard",
10
+ "RACLETTE_CORE_ABSOLUTE_PATH": "/Users/michellefuchs/_PACIFICO/Code/__PUBLIC_GITLAB/core-dev/@raclettejs/core"
11
11
  },
12
12
  "production": {}
13
13
  },
@@ -19,7 +19,9 @@ export const racletteConfig = {
19
19
  "framework": "vue",
20
20
  "i18n": {
21
21
  "locales": [
22
- "en-EU"
22
+ "sk",
23
+ "en-EU",
24
+ "de-DE"
23
25
  ],
24
26
  "priorities": {
25
27
  "app": 10,