@raclettejs/workbench 0.1.34 → 0.1.35

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,14 +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.34] - 2026-05-13 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.32...v0.1.34" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
10
+ ## [0.1.35] - 2026-05-14 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.34...v0.1.35" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
11
11
 
12
12
 
13
13
  ### Patch Changes
14
14
 
15
+ - fix: add missing new dark theme color
15
16
  - Updated dependencies
16
- - @raclettejs/core@0.1.34
17
+ - @raclettejs/core@0.1.35
17
18
 
19
+ ## [0.1.34] - 2026-05-13 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.32...v0.1.34" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+
25
+ - @raclettejs/core@0.1.34
18
26
 
19
27
  - set eslint version to latest
20
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raclettejs/workbench",
3
- "version": "0.1.34",
3
+ "version": "0.1.35",
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",
@@ -34,7 +34,7 @@
34
34
  ".": "./index.ts"
35
35
  },
36
36
  "dependencies": {
37
- "@raclettejs/core": "^0.1.34",
37
+ "@raclettejs/core": "^0.1.35",
38
38
  "@vueuse/integrations": "14.2.1",
39
39
  "fuse.js": "7.1.0",
40
40
  "three": "0.183.2",
@@ -44,7 +44,7 @@
44
44
  "@emnapi/core": "1.9.2",
45
45
  "@emnapi/runtime": "1.9.2",
46
46
  "@eslint/js": "9.35.0",
47
- "@raclettejs/types": "^0.1.34",
47
+ "@raclettejs/types": "^0.1.35",
48
48
  "@sinclair/typebox": "0.34.48",
49
49
  "@types/ramda": "0.31.1",
50
50
  "@vueuse/core": "14.2.1",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="tw:p-4">
2
+ <div class="tw:p-4 tw:pt-2">
3
3
  <BaseDataTable
4
4
  :items="parsedCompositions"
5
5
  :exportable-items="exportableCompositions"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="tw:p-4">
2
+ <div class="tw:p-4 tw:pt-2">
3
3
  <BaseDataTable
4
4
  :items="parsedInteractionLinks"
5
5
  :exportable-items="exportableInteractionLinks"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="tw:p-4">
2
+ <div class="tw:p-4 tw:pt-2">
3
3
  <BaseDataTable
4
4
  :items="pluginMetadataFiles"
5
5
  :headers
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="tw:p-4">
2
+ <div class="tw:p-4 tw:pt-2">
3
3
  <BaseDataTable
4
4
  :items="parsedTags"
5
5
  :exportable-items="exportableTags"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="tw:p-4">
2
+ <div class="tw:p-4 tw:pt-2">
3
3
  <BaseDataTable
4
4
  :items="parsedUsers"
5
5
  :exportable-items="exportableUsers"
@@ -4,6 +4,7 @@
4
4
  export default {
5
5
  background: "#212121",
6
6
  surface: "#212121",
7
+ "surface-light": "#212121",
7
8
  primary: "#DD8B41",
8
9
  "primary-darken-1": "#C47A39",
9
10
  "primary-darken-2": "#AB6A32",