@raclettejs/workbench 0.1.24 → 0.1.25

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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.25] - 2026-04-17 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.23...v0.1.25" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
11
+
12
+ ### Updated
13
+
14
+ - core release
15
+
16
+ ### Added
17
+
18
+ - added tooltips containing full widget titles to widget selection sidebar in composition layout editor
10
19
 
11
20
  ## [0.1.24] - 2026-04-15 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.23...v0.1.24" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
12
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raclettejs/workbench",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "license": "MIT",
5
5
  "description": "racletteJS Workbench - used to configure your application, for dev and prod",
6
6
  "repository": "https://gitlab.com/raclettejs/workbench",
@@ -31,7 +31,7 @@
31
31
  ".": "./index.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@raclettejs/core": "^0.1.24",
34
+ "@raclettejs/core": "^0.1.25",
35
35
  "@vueuse/integrations": "14.2.1",
36
36
  "fuse.js": "7.1.0",
37
37
  "three": "0.183.2",
@@ -41,7 +41,7 @@
41
41
  "@emnapi/core": "1.9.2",
42
42
  "@emnapi/runtime": "1.9.2",
43
43
  "@eslint/js": "9.35.0",
44
- "@raclettejs/types": "^0.1.24",
44
+ "@raclettejs/types": "^0.1.25",
45
45
  "@sinclair/typebox": "0.34.48",
46
46
  "@types/ramda": "0.31.1",
47
47
  "@vueuse/core": "14.2.1",
@@ -31,6 +31,9 @@
31
31
  </div>
32
32
  </div>
33
33
  </div>
34
+ <v-tooltip activator="parent" location="end">
35
+ {{ widget.title }}</v-tooltip
36
+ >
34
37
  </div>
35
38
  </DraggableElement>
36
39
  </template>
@@ -53,4 +56,3 @@ const pluginLabel = computed(() => {
53
56
  return deslugify(slug)
54
57
  })
55
58
  </script>
56
-