@jskit-ai/users-web 0.1.61 → 0.1.63
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.descriptor.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { HOME_TOOLS_OUTLET } from "./src/shared/toolsOutletContracts.js";
|
|
|
3
3
|
export default Object.freeze({
|
|
4
4
|
packageVersion: 1,
|
|
5
5
|
packageId: "@jskit-ai/users-web",
|
|
6
|
-
version: "0.1.
|
|
6
|
+
version: "0.1.63",
|
|
7
7
|
kind: "runtime",
|
|
8
8
|
description: "Users web module: account/profile UI plus shared users web widgets.",
|
|
9
9
|
dependsOn: [
|
|
@@ -154,12 +154,12 @@ export default Object.freeze({
|
|
|
154
154
|
runtime: {
|
|
155
155
|
"@tanstack/vue-query": "5.92.12",
|
|
156
156
|
"@mdi/js": "^7.4.47",
|
|
157
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
158
|
-
"@jskit-ai/realtime": "0.1.
|
|
159
|
-
"@jskit-ai/kernel": "0.1.
|
|
160
|
-
"@jskit-ai/shell-web": "0.1.
|
|
161
|
-
"@jskit-ai/uploads-image-web": "0.1.
|
|
162
|
-
"@jskit-ai/users-core": "0.1.
|
|
157
|
+
"@jskit-ai/http-runtime": "0.1.47",
|
|
158
|
+
"@jskit-ai/realtime": "0.1.47",
|
|
159
|
+
"@jskit-ai/kernel": "0.1.48",
|
|
160
|
+
"@jskit-ai/shell-web": "0.1.47",
|
|
161
|
+
"@jskit-ai/uploads-image-web": "0.1.26",
|
|
162
|
+
"@jskit-ai/users-core": "0.1.58",
|
|
163
163
|
vuetify: "^4.0.0"
|
|
164
164
|
},
|
|
165
165
|
dev: {}
|
|
@@ -227,7 +227,7 @@ export default Object.freeze({
|
|
|
227
227
|
position: "bottom",
|
|
228
228
|
skipIfContains: "id: \"users.profile.menu.settings\"",
|
|
229
229
|
value:
|
|
230
|
-
"\naddPlacement({\n id: \"users.profile.menu.settings\",\n target: \"auth-profile-menu:primary-menu\",\n surfaces: [\"*\"],\n order: 500,\n componentToken: \"auth.web.profile.menu.link-item\",\n props: {\n label: \"Settings\",\n to: \"/account\"\n },\n when: ({ auth }) =>
|
|
230
|
+
"\naddPlacement({\n id: \"users.profile.menu.settings\",\n target: \"auth-profile-menu:primary-menu\",\n surfaces: [\"*\"],\n order: 500,\n componentToken: \"auth.web.profile.menu.link-item\",\n props: {\n label: \"Settings\",\n to: \"/account\"\n },\n when: ({ auth }) => auth?.authenticated === true\n});\n",
|
|
231
231
|
reason: "Append users-web profile settings menu placement into app-owned placement registry.",
|
|
232
232
|
category: "users-web",
|
|
233
233
|
id: "users-web-profile-settings-placement"
|
|
@@ -238,7 +238,7 @@ export default Object.freeze({
|
|
|
238
238
|
position: "bottom",
|
|
239
239
|
skipIfContains: "id: \"users.home.tools.widget\"",
|
|
240
240
|
value:
|
|
241
|
-
"\naddPlacement({\n id: \"users.home.tools.widget\",\n target: \"shell-layout:top-right\",\n surfaces: [\"home\"],\n order: 900,\n componentToken: \"users.web.home.tools.widget\",\n when: ({ auth }) =>
|
|
241
|
+
"\naddPlacement({\n id: \"users.home.tools.widget\",\n target: \"shell-layout:top-right\",\n surfaces: [\"home\"],\n order: 900,\n componentToken: \"users.web.home.tools.widget\",\n when: ({ auth }) => auth?.authenticated === true\n});\n\naddPlacement({\n id: \"users.home.menu.settings\",\n target: \"home-tools:primary-menu\",\n surfaces: [\"home\"],\n order: 100,\n componentToken: \"local.main.ui.surface-aware-menu-link-item\",\n props: {\n label: \"Settings\",\n surface: \"home\",\n scopedSuffix: \"/settings\",\n unscopedSuffix: \"/settings\"\n },\n when: ({ auth }) => auth?.authenticated === true\n});\n",
|
|
242
242
|
reason: "Append users-web home tools widget and settings menu placements into app-owned placement registry.",
|
|
243
243
|
category: "users-web",
|
|
244
244
|
id: "users-web-home-tools-placement"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/users-web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.63",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "node --test"
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@tanstack/vue-query": "5.92.12",
|
|
37
37
|
"@mdi/js": "^7.4.47",
|
|
38
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
39
|
-
"@jskit-ai/kernel": "0.1.
|
|
40
|
-
"@jskit-ai/realtime": "0.1.
|
|
41
|
-
"@jskit-ai/shell-web": "0.1.
|
|
42
|
-
"@jskit-ai/uploads-image-web": "0.1.
|
|
43
|
-
"@jskit-ai/users-core": "0.1.
|
|
38
|
+
"@jskit-ai/http-runtime": "0.1.47",
|
|
39
|
+
"@jskit-ai/kernel": "0.1.48",
|
|
40
|
+
"@jskit-ai/realtime": "0.1.47",
|
|
41
|
+
"@jskit-ai/shell-web": "0.1.47",
|
|
42
|
+
"@jskit-ai/uploads-image-web": "0.1.26",
|
|
43
|
+
"@jskit-ai/users-core": "0.1.58",
|
|
44
44
|
"vuetify": "^4.0.0"
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -132,7 +132,7 @@ function createCrudLookupFieldRuntime({
|
|
|
132
132
|
},
|
|
133
133
|
placementSource: normalizedPlacementSourcePrefix
|
|
134
134
|
? `${normalizedPlacementSourcePrefix}.${key}`
|
|
135
|
-
: `
|
|
135
|
+
: `lookup.${key}`,
|
|
136
136
|
fallbackLoadError: `Unable to load lookup options (${apiPath}).`,
|
|
137
137
|
recordIdParam: normalizedRecordIdParam,
|
|
138
138
|
recordIdSelector: (item = {}) => item[valueKey],
|