@vc-shell/framework 1.0.280 → 1.0.281
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/dist/shared/pages/ChangePasswordPage/components/change-password/ChangePassword.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChangePassword.vue.d.ts","sourceRoot":"","sources":["../../../../../../shared/pages/ChangePasswordPage/components/change-password/ChangePassword.vue.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ChangePassword.vue.d.ts","sourceRoot":"","sources":["../../../../../../shared/pages/ChangePasswordPage/components/change-password/ChangePassword.vue.ts"],"names":[],"mappings":"AAcA,MAAM,WAAW,KAAK;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;;AAoED,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/framework",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.281",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/framework.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/dompurify": "^3.0.5",
|
|
63
63
|
"@types/quill": "^2.0.14",
|
|
64
|
-
"@vc-shell/api-client-generator": "^1.0.
|
|
65
|
-
"@vc-shell/config-generator": "^1.0.
|
|
66
|
-
"@vc-shell/ts-config": "^1.0.
|
|
64
|
+
"@vc-shell/api-client-generator": "^1.0.281",
|
|
65
|
+
"@vc-shell/config-generator": "^1.0.281",
|
|
66
|
+
"@vc-shell/ts-config": "^1.0.281",
|
|
67
67
|
"@vitejs/plugin-vue": "^5.0.3",
|
|
68
68
|
"cypress-signalr-mock": "^1.5.0",
|
|
69
69
|
"sass": "^1.69.6",
|
|
@@ -14,6 +14,7 @@ import { useRouter } from "vue-router";
|
|
|
14
14
|
const router = useRouter();
|
|
15
15
|
|
|
16
16
|
const forced = router.currentRoute.value.meta?.forced;
|
|
17
|
+
const bgimage = router.currentRoute.value.meta?.bgimage;
|
|
17
18
|
|
|
18
19
|
import { ChangePassword } from "../../../../components/change-password";
|
|
19
20
|
|
|
@@ -25,6 +26,6 @@ export interface Props {
|
|
|
25
26
|
const props = defineProps<Props>();
|
|
26
27
|
|
|
27
28
|
const backgroundImageHandler = computed(() => {
|
|
28
|
-
return `background: url(
|
|
29
|
+
return `background: url(${bgimage}) center / cover no-repeat`;
|
|
29
30
|
});
|
|
30
31
|
</script>
|