@raclettejs/workbench 0.1.24 → 0.1.26

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,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.26] - 2026-04-27 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.25...v0.1.26" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
11
+
12
+ ### Updated
13
+
14
+ - core release
15
+
16
+
17
+ ## [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>
18
+
19
+ ### Updated
20
+
21
+ - core release
22
+
23
+ ### Added
24
+
25
+ - added tooltips containing full widget titles to widget selection sidebar in composition layout editor
10
26
 
11
27
  ## [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
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raclettejs/workbench",
3
- "version": "0.1.24",
3
+ "version": "0.1.26",
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.26",
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.26",
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
-
@@ -296,7 +296,7 @@ const onFinish = async () => {
296
296
  }
297
297
  </script>
298
298
 
299
- <style scoped>
299
+ <style lang="css" scoped>
300
300
  .init-screen-gradient {
301
301
  background: linear-gradient(180deg, #ffeede 0%, #bc9979 100%);
302
302
  }