zova-ui-vuetify 5.1.45 → 5.1.46

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.
@@ -18,22 +18,22 @@
18
18
  "editor.formatOnSave": true,
19
19
  // oxlint
20
20
  "editor.codeActionsOnSave": {
21
- "source.fixAll.oxc": "always"
21
+ "source.fixAll.oxc": "always",
22
22
  },
23
23
  "[typescriptreact]": {
24
- "editor.defaultFormatter": "oxc.oxc-vscode"
24
+ "editor.defaultFormatter": "oxc.oxc-vscode",
25
25
  },
26
26
  "[typescript]": {
27
- "editor.defaultFormatter": "oxc.oxc-vscode"
27
+ "editor.defaultFormatter": "oxc.oxc-vscode",
28
28
  },
29
29
  // associations
30
30
  "files.associations": {
31
31
  "*.ejs": "html",
32
32
  "*.code-snippets": "text",
33
- "docker-compose-dockerfile-app": "dockerfile"
33
+ "docker-compose-dockerfile-app": "dockerfile",
34
34
  },
35
35
  // watcher
36
36
  "files.watcherExclude": {
37
- "node_modules": true
38
- }
37
+ "node_modules": true,
38
+ },
39
39
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zova-ui-vuetify",
3
- "version": "5.1.45",
4
- "gitHead": "e7525b418f4d685bb67fe143e47e5f3957df5913",
3
+ "version": "5.1.46",
4
+ "gitHead": "039f24b3b302a7d7abe42e983464c87a15442f2f",
5
5
  "description": "A vue3 vuetify framework with ioc",
6
6
  "keywords": [
7
7
  "ioc",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-vuetify",
3
- "version": "5.1.42",
3
+ "version": "5.1.45",
4
4
  "description": "A vue3 vuetify framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -59,7 +59,7 @@
59
59
  "vue": "^3.5.32",
60
60
  "vuetify": "^4.0.5",
61
61
  "vue-router": "npm:@cabloy/vue-router@^4.4.16",
62
- "zova": "^5.1.28"
62
+ "zova": "^5.1.30"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@cabloy/lint": "^5.1.5",
package/quasar.config.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js
5
5
 
6
6
  import { configure } from 'quasar/wrappers';
7
- import Fonts from 'unplugin-fonts/vite';
7
+ // import Fonts from 'unplugin-fonts/vite';
8
8
  import Vuetify, { transformAssetUrls } from 'vite-plugin-vuetify';
9
9
 
10
10
  export default configure(_ctx => {
@@ -13,7 +13,7 @@ export default configure(_ctx => {
13
13
  extendViteConf(viteConf) {
14
14
  // Ensure Vuetify is bundled for SSR so Node doesn't try to import raw CSS
15
15
  viteConf.ssr = {
16
- ...(viteConf.ssr || {}),
16
+ ...viteConf.ssr,
17
17
  noExternal: [...((viteConf.ssr && (viteConf.ssr as any).noExternal) || []), 'vuetify'],
18
18
  } as any;
19
19
  // plugins
@@ -25,17 +25,17 @@ export default configure(_ctx => {
25
25
  // configFile: 'src/css/settings.scss',
26
26
  // },
27
27
  }),
28
- Fonts({
29
- fontsource: {
30
- families: [
31
- {
32
- name: 'Roboto',
33
- weights: [100, 300, 400, 500, 700, 900],
34
- styles: ['normal', 'italic'],
35
- },
36
- ],
37
- },
38
- }),
28
+ // Fonts({
29
+ // fontsource: {
30
+ // families: [
31
+ // {
32
+ // name: 'Roboto',
33
+ // weights: [100, 300, 400, 500, 700, 900],
34
+ // styles: ['normal', 'italic'],
35
+ // },
36
+ // ],
37
+ // },
38
+ // }),
39
39
  ]);
40
40
  },
41
41
  viteVuePluginOptions: {
@@ -14,7 +14,7 @@ import { aliases } from 'vuetify/iconsets/mdi-svg';
14
14
  import '../css/settings.scss';
15
15
  import 'vuetify/lib/styles/main.sass';
16
16
  // import 'vuetify/styles';
17
- import 'unfonts.css';
17
+ // import 'unfonts.css';
18
18
 
19
19
  // https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
20
20
  let theme;
@@ -9,6 +9,12 @@
9
9
  $color-pack: false
10
10
  );
11
11
 
12
+ :root {
13
+ --v-font-body:
14
+ 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
15
+ 'Helvetica Neue', sans-serif;
16
+ }
17
+
12
18
  .zova-icon__img {
13
19
  border-radius: 6px;
14
20
  width: 100%;