@jskit-ai/ui-generator 0.1.35 → 0.1.37

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/ui-generator",
4
- version: "0.1.35",
4
+ version: "0.1.37",
5
5
  kind: "generator",
6
6
  description: "Create non-CRUD pages, reusable UI elements, and subpage hosts.",
7
7
  options: {
@@ -278,7 +278,7 @@ export default Object.freeze({
278
278
  mutations: {
279
279
  dependencies: {
280
280
  runtime: {
281
- "@jskit-ai/users-web": "0.1.67"
281
+ "@jskit-ai/users-web": "0.1.69"
282
282
  },
283
283
  dev: {}
284
284
  },
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@jskit-ai/ui-generator",
3
- "version": "0.1.35",
3
+ "version": "0.1.37",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
7
7
  },
8
8
  "dependencies": {
9
- "@jskit-ai/kernel": "0.1.52",
10
- "@jskit-ai/shell-web": "0.1.51"
9
+ "@jskit-ai/kernel": "0.1.54",
10
+ "@jskit-ai/shell-web": "0.1.53"
11
11
  },
12
12
  "exports": {
13
13
  "./server/buildTemplateContext": "./src/server/buildTemplateContext.js"
@@ -166,7 +166,7 @@ test("buildUiPageTemplateContext supports explicit package outlet link placement
166
166
  placements: {
167
167
  outlets: [
168
168
  {
169
- target: "workspace-tools:primary-menu",
169
+ target: "admin-cog:primary-menu",
170
170
  defaultLinkComponentToken: "local.main.ui.surface-aware-menu-link-item",
171
171
  source: "src/client/components/UsersWorkspaceToolsWidget.vue"
172
172
  }
@@ -182,10 +182,10 @@ test("buildUiPageTemplateContext supports explicit package outlet link placement
182
182
  appRoot,
183
183
  targetFile: "admin/reports/index.vue",
184
184
  options: {
185
- "link-placement": "workspace-tools:primary-menu"
185
+ "link-placement": "admin-cog:primary-menu"
186
186
  }
187
187
  });
188
- assert.equal(context.__JSKIT_UI_LINK_PLACEMENT_TARGET__, "workspace-tools:primary-menu");
188
+ assert.equal(context.__JSKIT_UI_LINK_PLACEMENT_TARGET__, "admin-cog:primary-menu");
189
189
  });
190
190
  });
191
191