@jskit-ai/workspaces-web 0.1.106 → 0.1.108

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/workspaces-web",
4
- version: "0.1.106",
4
+ version: "0.1.108",
5
5
  kind: "runtime",
6
6
  description: "Workspace web module: workspace selector, tools widget, workspace surfaces, members UI, and settings hosts.",
7
7
  dependsOn: [
@@ -232,9 +232,9 @@ export default Object.freeze({
232
232
  mutations: {
233
233
  dependencies: {
234
234
  runtime: {
235
- "@jskit-ai/auth-web": "0.1.128",
236
- "@jskit-ai/workspaces-core": "0.1.105",
237
- "@jskit-ai/users-web": "0.1.144"
235
+ "@jskit-ai/auth-web": "0.1.129",
236
+ "@jskit-ai/workspaces-core": "0.1.106",
237
+ "@jskit-ai/users-web": "0.1.145"
238
238
  },
239
239
  dev: {}
240
240
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/workspaces-web",
3
- "version": "0.1.106",
3
+ "version": "0.1.108",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -15,13 +15,13 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@mdi/js": "^7.4.47",
18
- "@jskit-ai/auth-web": "0.1.128",
19
- "@jskit-ai/http-runtime": "0.1.126",
20
- "@jskit-ai/kernel": "0.1.128",
21
- "@jskit-ai/shell-web": "0.1.129",
22
- "@jskit-ai/users-core": "0.1.138",
23
- "@jskit-ai/users-web": "0.1.144",
24
- "@jskit-ai/workspaces-core": "0.1.105"
18
+ "@jskit-ai/auth-web": "0.1.129",
19
+ "@jskit-ai/http-runtime": "0.1.127",
20
+ "@jskit-ai/kernel": "0.1.129",
21
+ "@jskit-ai/shell-web": "0.1.130",
22
+ "@jskit-ai/users-core": "0.1.139",
23
+ "@jskit-ai/users-web": "0.1.145",
24
+ "@jskit-ai/workspaces-core": "0.1.106"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "@tanstack/vue-query": "^5.90.5",
@@ -205,7 +205,7 @@ function workspaceAvatarStyle(workspace) {
205
205
  <v-btn
206
206
  v-bind="activatorProps"
207
207
  variant="text"
208
- class="text-none"
208
+ class="users-workspace-selector__activator text-none"
209
209
  :prepend-icon="mdiBriefcaseOutline"
210
210
  >
211
211
  {{ activeWorkspaceLabel }}
@@ -241,3 +241,9 @@ function workspaceAvatarStyle(workspace) {
241
241
  </v-list>
242
242
  </v-menu>
243
243
  </template>
244
+
245
+ <style scoped>
246
+ .users-workspace-selector__activator {
247
+ min-height: 48px;
248
+ }
249
+ </style>
@@ -17,3 +17,10 @@ test("UsersWorkspaceSelector passes workspaceSlug through generic page params",
17
17
  );
18
18
  assert.doesNotMatch(source, /workspaceSlug:\s*normalizedSlug,\s*mode:\s*"workspace"/s);
19
19
  });
20
+
21
+ test("UsersWorkspaceSelector activator preserves the generated tap-target contract", async () => {
22
+ const source = await readFile(COMPONENT_PATH, "utf8");
23
+
24
+ assert.match(source, /class="users-workspace-selector__activator text-none"/);
25
+ assert.match(source, /\.users-workspace-selector__activator\s*\{[\s\S]*min-height:\s*48px;/);
26
+ });