@jskit-ai/shell-web 0.1.129 → 0.1.130

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.
@@ -1,7 +1,7 @@
1
1
  export default Object.freeze({
2
2
  packageVersion: 1,
3
3
  packageId: "@jskit-ai/shell-web",
4
- version: "0.1.129",
4
+ version: "0.1.130",
5
5
  kind: "runtime",
6
6
  description: "Web shell layout runtime with outlet-based placement contributions.",
7
7
  dependsOn: [],
@@ -311,7 +311,7 @@ export default Object.freeze({
311
311
  dependencies: {
312
312
  runtime: {
313
313
  "@mdi/js": "^7.4.47",
314
- "@jskit-ai/kernel": "0.1.128"
314
+ "@jskit-ai/kernel": "0.1.129"
315
315
  },
316
316
  dev: {
317
317
  "@playwright/test": "1.61.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/shell-web",
3
- "version": "0.1.129",
3
+ "version": "0.1.130",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@mdi/js": "^7.4.47",
31
- "@jskit-ai/kernel": "0.1.128"
31
+ "@jskit-ai/kernel": "0.1.129"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "pinia": "^3.0.4",
@@ -490,6 +490,11 @@ function touchListIncludesActiveTouch(touchList) {
490
490
  min-width: 0;
491
491
  }
492
492
 
493
+ .shell-layout__nav-toggle {
494
+ min-height: 48px;
495
+ min-width: 48px;
496
+ }
497
+
493
498
  .shell-layout__top-right {
494
499
  max-width: min(45vw, 18rem);
495
500
  overflow: hidden;
@@ -77,6 +77,7 @@ test("shell-web shell layout registers navigation at the app layout level", asyn
77
77
  assert.match(source, /<ShellRouteTransition>[\s\S]*<slot \/>[\s\S]*<\/ShellRouteTransition>/);
78
78
  assert.match(source, /data-testid="jskit-shell-app-bar"/);
79
79
  assert.match(source, /:density="isCompactLayout \? 'compact' : 'comfortable'"/);
80
+ assert.match(source, /\.shell-layout__nav-toggle\s*\{[\s\S]*min-height:\s*48px;[\s\S]*min-width:\s*48px;/);
80
81
  assert.match(source, /shell-layout__surface-label/);
81
82
  assert.doesNotMatch(source, /shell-layout__surface-chip/);
82
83
  assert.doesNotMatch(source, /<v-chip[^>]*resolvedSurfaceLabel/);