zova-ui-empty 5.0.288 → 5.0.290

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": "zova-ui-empty",
3
- "version": "5.0.288",
3
+ "version": "5.0.290",
4
4
  "description": "A vue3 empty framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -79,5 +79,5 @@
79
79
  "zova-vite": "^1.0.172"
80
80
  },
81
81
  "license": "MIT",
82
- "gitHead": "d732f9a44e3484b5534c84e1ca9c72ee55abe7fe"
82
+ "gitHead": "8ba3a030d69a65bf9d78ceb760b8dddba2951246"
83
83
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.0.285",
3
+ "version": "5.0.288",
4
4
  "description": "A vue3 empty framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -53,7 +53,7 @@
53
53
  "@types/node": "^20.14.2",
54
54
  "@vitejs/plugin-vue": "^5.0.5",
55
55
  "concurrently": "^8.2.2",
56
- "quasar-app-extension-zova": "^1.1.171",
56
+ "quasar-app-extension-zova": "^1.1.172",
57
57
  "sass": "^1.77.5",
58
58
  "typescript": "^5.4.5",
59
59
  "vite": "^5.3.1",
@@ -9,13 +9,11 @@ export interface RenderErrorNotFound extends StyleErrorNotFound {}
9
9
  export class RenderErrorNotFound extends BeanRenderBase<ScopeModule> {
10
10
  render() {
11
11
  return (
12
- <div class="fill-height bg-blue text-white text-center">
12
+ <div class="text-center">
13
13
  <div>
14
14
  <div style="font-size: 30vh">404</div>
15
15
 
16
- <div class="text-h2" style="opacity:.4">
17
- Oops. Nothing here...
18
- </div>
16
+ <div style="font-size: 30px;line-height:2;opacity:.4">Oops. Nothing here...</div>
19
17
 
20
18
  <RouterLink to="/">Go Home</RouterLink>
21
19
  </div>
@@ -2,9 +2,8 @@
2
2
  "extends": "./tsconfig.base.esm",
3
3
  "compilerOptions": {
4
4
  "noEmit": true,
5
- "baseUrl": "./",
6
5
  "paths": {
7
- "@/*": ["src/legacy/*"]
6
+ "@/*": ["./src/legacy/*"]
8
7
  }
9
8
  }
10
9
  }