From 5f4426ddc20bf77307aa3ef1325b7601124fba88 Mon Sep 17 00:00:00 2001 From: Asva Date: Wed, 10 Oct 2018 16:36:22 +0300 Subject: [PATCH] fix: http icons + refactor * move icon fonts into modules * add weloveiconfonts.com icons to project directly --- build/webpack.prod.conf.js | 2 +- package.json | 3 +- .../pages/404-pages/MadeByComponent.vue | 2 +- src/components/ui/icons/Icons.vue | 17 +- src/components/ui/icons/sets/names.json | 12 - .../vuestic-sass/icons/_fonts.scss | 13 +- .../vuestic-sass/icons/_vuestic-icons.scss | 89 +- .../icons/icon-fonts/brandico/brandico.eot | Bin 0 -> 16550 bytes .../icons/icon-fonts/brandico/brandico.scss | 143 ++ .../icons/icon-fonts/brandico/brandico.svg | 153 +++ .../icons/icon-fonts/brandico/brandico.ttf | Bin 0 -> 16304 bytes .../icons/icon-fonts/brandico/brandico.woff | Bin 0 -> 10656 bytes .../icons/icon-fonts/entypo/entypo.eot | Bin 0 -> 76038 bytes .../icons/icon-fonts/entypo/entypo.scss | 1151 +++++++++++++++++ .../icons/icon-fonts/entypo/entypo.svg | 834 ++++++++++++ .../icons/icon-fonts/entypo/entypo.ttf | Bin 0 -> 75800 bytes .../icons/icon-fonts/entypo/entypo.woff | Bin 0 -> 45152 bytes .../icons/icon-fonts/fontelico/fontelico.eot | Bin 0 -> 14706 bytes .../icons/icon-fonts/fontelico/fontelico.scss | 135 ++ .../icons/icon-fonts/fontelico/fontelico.svg | 146 +++ .../icons/icon-fonts/fontelico/fontelico.ttf | Bin 0 -> 14456 bytes .../icons/icon-fonts/fontelico/fontelico.woff | Bin 0 -> 8852 bytes .../icons/icon-fonts/icon-fonts.scss | 16 + .../icon-fonts/iconicfill/iconicfill.eot | Bin 0 -> 15621 bytes .../icon-fonts/iconicfill/iconicfill.scss | 619 +++++++++ .../icon-fonts/iconicfill/iconicfill.svg | 539 ++++++++ .../icon-fonts/iconicfill/iconicfill.ttf | Bin 0 -> 18084 bytes .../icon-fonts/iconicfill/iconicfill.woff | Bin 0 -> 20560 bytes .../icon-fonts/iconicstroke/iconicstroke.eot | Bin 0 -> 16485 bytes .../icon-fonts/iconicstroke/iconicstroke.scss | 619 +++++++++ .../icon-fonts/iconicstroke/iconicstroke.svg | 553 ++++++++ .../icon-fonts/iconicstroke/iconicstroke.ttf | Bin 0 -> 18648 bytes .../icon-fonts/iconicstroke/iconicstroke.woff | Bin 0 -> 21484 bytes .../icons/icon-fonts/maki/maki.eot | Bin 0 -> 19586 bytes .../icons/icon-fonts/maki/maki.scss | 268 ++++ .../icons/icon-fonts/maki/maki.svg | 209 +++ .../icons/icon-fonts/maki/maki.ttf | Bin 0 -> 19356 bytes .../icons/icon-fonts/maki/maki.woff | Bin 0 -> 11944 bytes .../icon-fonts/openwebicons/openwebicons.eot | Bin 0 -> 7835 bytes .../icon-fonts/openwebicons/openwebicons.scss | 208 +++ .../icon-fonts/openwebicons/openwebicons.svg | 74 ++ .../icon-fonts/openwebicons/openwebicons.ttf | Bin 0 -> 13008 bytes .../icon-fonts/openwebicons/openwebicons.woff | Bin 0 -> 8808 bytes .../typicons/typicons-regular-webfont.eot | Bin 0 -> 24116 bytes .../typicons/typicons-regular-webfont.svg | 159 +++ .../typicons/typicons-regular-webfont.ttf | Bin 0 -> 23876 bytes .../typicons/typicons-regular-webfont.woff | Bin 0 -> 14820 bytes .../icons/icon-fonts/typicons/typicons.scss | 363 ++++++ .../vuestic-icons/vuestic-icons.eot} | Bin .../vuestic-icons/vuestic-icons.scss | 44 + .../vuestic-icons/vuestic-icons.svg} | 0 .../vuestic-icons/vuestic-icons.ttf} | Bin .../vuestic-icons/vuestic-icons.woff} | Bin .../zocial/zocial-regular-webfont.eot | Bin 0 -> 30338 bytes .../zocial/zocial-regular-webfont.svg | 145 +++ .../zocial/zocial-regular-webfont.ttf | Bin 0 -> 45508 bytes .../zocial/zocial-regular-webfont.woff | Bin 0 -> 33076 bytes .../icons/icon-fonts/zocial/zocial.scss | 392 ++++++ .../vuestic-sass/icons/icons.scss | 7 +- 59 files changed, 6797 insertions(+), 118 deletions(-) delete mode 100644 src/components/ui/icons/sets/names.json create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/brandico/brandico.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/brandico/brandico.scss create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/brandico/brandico.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/brandico/brandico.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/brandico/brandico.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/entypo/entypo.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/entypo/entypo.scss create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/entypo/entypo.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/entypo/entypo.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/entypo/entypo.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/fontelico/fontelico.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/fontelico/fontelico.scss create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/fontelico/fontelico.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/fontelico/fontelico.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/fontelico/fontelico.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/icon-fonts.scss create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicfill/iconicfill.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicfill/iconicfill.scss create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicfill/iconicfill.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicfill/iconicfill.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicfill/iconicfill.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicstroke/iconicstroke.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicstroke/iconicstroke.scss create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicstroke/iconicstroke.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicstroke/iconicstroke.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/iconicstroke/iconicstroke.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/maki/maki.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/maki/maki.scss create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/maki/maki.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/maki/maki.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/maki/maki.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/openwebicons/openwebicons.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/openwebicons/openwebicons.scss create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/openwebicons/openwebicons.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/openwebicons/openwebicons.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/openwebicons/openwebicons.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/typicons/typicons-regular-webfont.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/typicons/typicons-regular-webfont.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/typicons/typicons-regular-webfont.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/typicons/typicons-regular-webfont.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/typicons/typicons.scss rename src/{fonts/Glyphter.eot => vuestic-theme/vuestic-sass/icons/icon-fonts/vuestic-icons/vuestic-icons.eot} (100%) mode change 100755 => 100644 create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/vuestic-icons/vuestic-icons.scss rename src/{fonts/Glyphter.svg => vuestic-theme/vuestic-sass/icons/icon-fonts/vuestic-icons/vuestic-icons.svg} (100%) mode change 100755 => 100644 rename src/{fonts/Glyphter.ttf => vuestic-theme/vuestic-sass/icons/icon-fonts/vuestic-icons/vuestic-icons.ttf} (100%) mode change 100755 => 100644 rename src/{fonts/Glyphter.woff => vuestic-theme/vuestic-sass/icons/icon-fonts/vuestic-icons/vuestic-icons.woff} (100%) mode change 100755 => 100644 create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/zocial/zocial-regular-webfont.eot create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/zocial/zocial-regular-webfont.svg create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/zocial/zocial-regular-webfont.ttf create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/zocial/zocial-regular-webfont.woff create mode 100644 src/vuestic-theme/vuestic-sass/icons/icon-fonts/zocial/zocial.scss diff --git a/build/webpack.prod.conf.js b/build/webpack.prod.conf.js index a13e1b652..1d5fe1a6f 100644 --- a/build/webpack.prod.conf.js +++ b/build/webpack.prod.conf.js @@ -26,7 +26,7 @@ const webpackConfig = merge(baseWebpackConfig, { chunkFilename: utils.assetsPath('js/[id].[chunkhash].js') }, plugins: [ - // http://vuejs.github.io/vue-loader/en/workflow/production.html + // https://vuejs.github.io/vue-loader/en/workflow/production.html new webpack.DefinePlugin({ 'process.env': env }), diff --git a/package.json b/package.json index 103d07d2e..32c9eb25f 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "build": "vue-cli-service build", "lint": "vue-cli-service lint", "dev-old": "node build/dev-server.js", - "build-old": "node build/build.js" + "build-old": "node build/build.js", + "inspect": "vue-cli-service inspect > inspect.js" }, "repository": { "type": "git", diff --git a/src/components/pages/404-pages/MadeByComponent.vue b/src/components/pages/404-pages/MadeByComponent.vue index 5173a8d5a..d81656353 100644 --- a/src/components/pages/404-pages/MadeByComponent.vue +++ b/src/components/pages/404-pages/MadeByComponent.vue @@ -2,7 +2,7 @@
©2018. Made by - Epicmax + Epicmax
diff --git a/src/components/ui/icons/Icons.vue b/src/components/ui/icons/Icons.vue index 237e359a1..cdc67a9f0 100644 --- a/src/components/ui/icons/Icons.vue +++ b/src/components/ui/icons/Icons.vue @@ -7,6 +7,19 @@