@raclettejs/workbench 0.1.6 → 0.1.7

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,11 +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.5] + [0.1.6] - 11.09.2025
10
+ ## [0.1.7] - 10.09.2025
11
11
 
12
- ### Changed
12
+ ### Style
13
13
 
14
- - raclette core update
14
+ - gave the default landingpage some love
15
+
16
+ ### Chore
17
+
18
+ - skipped versions 0.1.5/0.1.6 to align versionnumbers with core
15
19
 
16
20
  ## [0.1.4] - 10.09.2025
17
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raclettejs/workbench",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
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.6"
34
+ "@raclettejs/core": "^0.1.7"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@eslint/js": "^9.31.0",
@@ -1,30 +1,40 @@
1
1
  <template>
2
- <div class="tw:p-4">
3
- <h1 v-html="$t('workbench.welcomeScreen.title')"></h1>
2
+ <v-container class="tw:py-8">
3
+ <v-row>
4
+ <v-col cols="12">
5
+ <v-card flat>
6
+ <v-card-title>
7
+ 🧀
8
+ {{ $t("workbench.welcomeScreen.title") }}
9
+ </v-card-title>
10
+ </v-card>
11
+ <v-card-text>
12
+ <v-list density="compact" disabled>
13
+ <v-list-subheader
14
+ ><h3>
15
+ {{ $t("workbench.welcomeScreen.whatIsWhat") }}
16
+ </h3></v-list-subheader
17
+ >
4
18
 
5
- <v-list density="compact" disabled>
6
- <v-list-subheader
7
- ><h3>
8
- {{ $t("workbench.welcomeScreen.whatIsWhat") }}
9
- </h3></v-list-subheader
10
- >
19
+ <v-list-item
20
+ v-for="(item, i) in whatIsWhatItems"
21
+ :key="i"
22
+ :value="item"
23
+ color="primary"
24
+ >
25
+ <template #prepend>
26
+ <v-icon :icon="item.icon"></v-icon>
27
+ </template>
11
28
 
12
- <v-list-item
13
- v-for="(item, i) in whatIsWhatItems"
14
- :key="i"
15
- :value="item"
16
- color="primary"
17
- >
18
- <template #prepend>
19
- <v-icon :icon="item.icon"></v-icon>
20
- </template>
21
-
22
- <v-list-item-title>
23
- {{ $t("workbench.welcomeScreen." + item.i18nKey) }}
24
- </v-list-item-title>
25
- </v-list-item>
26
- </v-list>
27
- </div>
29
+ <v-list-item-title>
30
+ {{ $t("workbench.welcomeScreen." + item.i18nKey) }}
31
+ </v-list-item-title>
32
+ </v-list-item>
33
+ </v-list>
34
+ </v-card-text>
35
+ </v-col>
36
+ </v-row>
37
+ </v-container>
28
38
  </template>
29
39
 
30
40
  <script setup lang="ts">
package/yarn.lock CHANGED
@@ -351,10 +351,10 @@
351
351
  resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.2.9.tgz#d229a7b7f9dac167a156992ef23c7f023653f53b"
352
352
  integrity sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==
353
353
 
354
- "@raclettejs/core@^0.1.6":
355
- version "0.1.6"
356
- resolved "https://registry.yarnpkg.com/@raclettejs/core/-/core-0.1.6.tgz#2358a830ca610e6b3026abb9c153b52bfe872387"
357
- integrity sha512-X2BCuHgqLxUSvCMnLOnpi9iZTRE3zjVD4o6JFuyOBzxlmOqKp2p6VKOvVD3+5AO8eHz4lUxCUg+XZjTKF3mVXQ==
354
+ "@raclettejs/core@^0.1.7":
355
+ version "0.1.7"
356
+ resolved "https://registry.yarnpkg.com/@raclettejs/core/-/core-0.1.7.tgz#0cf18b3c1d2f32b1525300fd117ee79d9c304121"
357
+ integrity sha512-RJ06lirto8NaVBApiIykinvpdgKpIznx5ztPEmGhx/q+TeDpzfatD/Rkyd9dTJcOsWshGHMq7ZKT2BBVlC3lgw==
358
358
  dependencies:
359
359
  chalk "^5.4.1"
360
360
  chokidar "3.5.3"