mooho-base-admin-plus 0.1.53 → 0.1.56

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.
Files changed (36) hide show
  1. package/.env +1 -1
  2. package/dist/mooho-base-admin-plus.min.esm.js +120194 -130
  3. package/dist/mooho-base-admin-plus.min.js +54 -58
  4. package/dist/style.css +1 -0
  5. package/package.json +1 -1
  6. package/src/index.js +0 -3
  7. package/src/styles/css/default.css +1 -1
  8. package/test/main.js +3 -0
  9. package/vite.config.js +5 -6
  10. package/dist/fa-brands-400.8ea87917.woff2 +0 -0
  11. package/dist/fa-brands-400.a3b98177.svg +0 -3717
  12. package/dist/fa-brands-400.cda59d6e.ttf +0 -0
  13. package/dist/fa-brands-400.e4299464.eot +0 -0
  14. package/dist/fa-brands-400.f9217f66.woff +0 -0
  15. package/dist/fa-regular-400.79d08806.eot +0 -0
  16. package/dist/fa-regular-400.be0a0849.svg +0 -801
  17. package/dist/fa-regular-400.cb9e9e69.woff +0 -0
  18. package/dist/fa-regular-400.e42a8844.woff2 +0 -0
  19. package/dist/fa-regular-400.e8711bbb.ttf +0 -0
  20. package/dist/fa-solid-900.373c04fd.eot +0 -0
  21. package/dist/fa-solid-900.3f6d3488.woff +0 -0
  22. package/dist/fa-solid-900.9674eb1b.svg +0 -5034
  23. package/dist/fa-solid-900.9834b82a.woff2 +0 -0
  24. package/dist/fa-solid-900.af639750.ttf +0 -0
  25. package/dist/header-theme-dark.932bb39b.svg +0 -40
  26. package/dist/header-theme-primary.10194387.svg +0 -40
  27. package/dist/index.css +0 -4
  28. package/dist/index.html +0 -19
  29. package/dist/ionicons.13d29fa1.ttf +0 -0
  30. package/dist/ionicons.503dc6b7.woff2 +0 -0
  31. package/dist/ionicons.fe9ddf45.woff +0 -0
  32. package/dist/nav-theme-dark.d93c9dff.svg +0 -40
  33. package/dist/nav-theme-light.f039dce7.svg +0 -40
  34. package/src/styles/font/ionicons.svg +0 -870
  35. package/src/styles/font/ionicons.ttf +0 -0
  36. package/src/styles/font/ionicons.woff +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "0.1.53",
4
+ "version": "0.1.56",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "dotnetVersion": "1.3.97",
7
7
  "license": "MIT",
package/src/index.js CHANGED
@@ -67,9 +67,6 @@ import './styles/index.less';
67
67
  // 默认css
68
68
  import './styles/css/default.css';
69
69
 
70
- // fa图标
71
- import '@fortawesome/fontawesome-free/css/all.min.css';
72
-
73
70
  // CKEditor
74
71
  //import ckEditor from 'ckeditor4-vue';
75
72
 
@@ -1,6 +1,6 @@
1
1
  @font-face {
2
2
  font-family: 'Ionicons';
3
- src: url('../font/ionicons.woff2') format('woff2'), url('../font/ionicons.woff') format('woff'), url('../font/ionicons.ttf') format('truetype');
3
+ src: url('../font/ionicons.woff2') format('woff2');
4
4
  font-weight: normal;
5
5
  font-style: normal;
6
6
  }
package/test/main.js CHANGED
@@ -13,6 +13,9 @@ import routes from './router/routes';
13
13
  // 自定义css
14
14
  import './styles/css/custom.css';
15
15
 
16
+ // fa图标
17
+ import '@fortawesome/fontawesome-free/css/all.min.css';
18
+
16
19
  // 环境模式
17
20
  window.$mode = import.meta.env.MODE;
18
21
 
package/vite.config.js CHANGED
@@ -11,12 +11,11 @@ export default defineConfig({
11
11
  sourcemap: false, // 输出.map文件
12
12
  outDir: Setting.outputDir,
13
13
  assetsDir: Setting.assetsDir,
14
- // assetsInlineLimit: 4096,
15
- // // minify: 'terser', // 混淆器,terser构建后文件体积更小
16
- // lib: {
17
- // entry: resolve(__dirname, './src/index.js'),
18
- // name: 'moohoBaseAdminPlus'
19
- // },
14
+ // minify: 'terser', // 混淆器,terser构建后文件体积更小
15
+ lib: {
16
+ entry: resolve(__dirname, './src/index.js'),
17
+ name: 'moohoBaseAdminPlus'
18
+ },
20
19
  rollupOptions: {
21
20
  context: 'globalThis',
22
21
  preserveEntrySignatures: 'strict',
Binary file