@jskit-ai/shell-web 0.1.167 → 0.1.169

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": "@jskit-ai/shell-web",
3
- "version": "0.1.167",
3
+ "version": "0.1.169",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@mdi/js": "^7.4.47",
32
- "@jskit-ai/kernel": "0.1.163"
32
+ "@jskit-ai/kernel": "0.1.165"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "pinia": "^3.0.4",
@@ -828,6 +828,10 @@ function touchListIncludesActiveTouch(touchList) {
828
828
  padding-bottom: env(safe-area-inset-bottom, 0px);
829
829
  }
830
830
 
831
+ .shell-layout__bottom-nav :deep(.v-btn) {
832
+ min-height: 48px;
833
+ }
834
+
831
835
  .shell-layout__supporting-sheet {
832
836
  max-height: min(72vh, 40rem);
833
837
  overflow: auto;
@@ -76,6 +76,7 @@ test("shell-web shell layout registers navigation at the app layout level", asyn
76
76
  assert.doesNotMatch(source, /<v-chip[^>]*resolvedSurfaceLabel/);
77
77
  assert.match(source, /shell-layout__top-right[\s\S]*max-width:\s*min\(45vw, 18rem\)/);
78
78
  assert.match(source, /<v-bottom-navigation[\s\S]*target="shell-layout:primary-bottom-nav"/);
79
+ assert.match(source, /\.shell-layout__bottom-nav\s+:deep\(\.v-btn\)\s*\{[\s\S]*min-height:\s*48px;/);
79
80
  assert.match(source, /<v-bottom-sheet[\s\S]*target="shell-layout:supporting-bottom-sheet"/);
80
81
  assert.match(source, /target="shell-layout:supporting-side-panel"/);
81
82
  assert.match(source, /data-testid="jskit-shell-supporting-bottom-sheet"/);