@stonecrop/desktop 0.12.0 → 0.12.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stonecrop/desktop",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "author": {
@@ -32,11 +32,11 @@
32
32
  "**/*.css"
33
33
  ],
34
34
  "dependencies": {
35
- "@stonecrop/aform": "0.12.0",
36
- "@stonecrop/atable": "0.12.0",
37
- "@stonecrop/schema": "0.12.0",
38
- "@stonecrop/themes": "0.12.0",
39
- "@stonecrop/stonecrop": "0.12.0"
35
+ "@stonecrop/aform": "0.12.1",
36
+ "@stonecrop/themes": "0.12.1",
37
+ "@stonecrop/stonecrop": "0.12.1",
38
+ "@stonecrop/schema": "0.12.1",
39
+ "@stonecrop/atable": "0.12.1"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "vue": "^3.5.33"
@@ -70,7 +70,7 @@
70
70
  "access": "public"
71
71
  },
72
72
  "engines": {
73
- "node": ">=22.5.0"
73
+ "node": ">=24.0.0"
74
74
  },
75
75
  "scripts": {
76
76
  "_phase:build": "heft build && vite build && rushx docs",
@@ -330,7 +330,7 @@ const navigationBreadcrumbs = computed(() => {
330
330
  } else if (currentView.value === 'record' && routeDoctype.value) {
331
331
  const recordPath = currentRecordId.value
332
332
  ? `/${routeDoctype.value}/${currentRecordId.value}`
333
- : route.value?.fullPath ?? ''
333
+ : (route.value?.fullPath ?? '')
334
334
  breadcrumbs.push(
335
335
  { title: 'Home', to: '/' },
336
336
  { title: formatDoctypeName(routeDoctype.value), to: `/${routeDoctype.value}` },
@@ -246,7 +246,10 @@ a:focus {
246
246
  overflow: hidden;
247
247
  /* Animation for smooth expand/collapse */
248
248
  max-width: 2.4rem;
249
- transition: max-width 0.35s ease-in-out, padding 0.35s ease-in-out, background 0.2s ease;
249
+ transition:
250
+ max-width 0.35s ease-in-out,
251
+ padding 0.35s ease-in-out,
252
+ background 0.2s ease;
250
253
  }
251
254
 
252
255
  .searchtab .search-icon {