├── .npmignore ├── .babelrc ├── .editorconfig ├── .gitignore ├── dist ├── alert │ ├── index.js │ ├── MdWarning.vue │ └── MdError.vue ├── toggle │ ├── index.js │ └── MdStar.vue ├── file │ ├── index.js │ ├── MdFileUpload.vue │ ├── MdFileDownload.vue │ └── MdFolder.vue ├── places │ └── index.js ├── package.json ├── LICENSE ├── av │ ├── MdStop.vue │ ├── MdPause.vue │ ├── MdPlayArrow.vue │ ├── MdVolumeMute.vue │ ├── MdSkipNext.vue │ ├── MdSkipPrevious.vue │ ├── MdEqualizer.vue │ ├── MdFiberManualRecord.vue │ ├── MdFastForward.vue │ ├── MdFastRewind.vue │ ├── MdRepeat.vue │ ├── MdPlaylistPlay.vue │ ├── MdGames.vue │ ├── MdNote.vue │ ├── MdPlaylistAdd.vue │ ├── MdRepeatOne.vue │ ├── MdReplay.vue │ ├── MdMovie.vue │ ├── MdVideocam.vue │ ├── MdVolumeDown.vue │ └── MdWebAsset.vue ├── content │ ├── MdRemove.vue │ ├── MdAdd.vue │ ├── MdFlag.vue │ ├── MdForward.vue │ ├── MdSend.vue │ ├── MdSort.vue │ ├── MdReply.vue │ ├── MdFilterList.vue │ ├── MdReplyAll.vue │ ├── MdClear.vue │ └── MdMail.vue ├── editor │ ├── MdTitle.vue │ ├── MdBubbleChart.vue │ ├── MdSpaceBar.vue │ ├── MdShortText.vue │ ├── MdPublish.vue │ ├── MdDragHandle.vue │ ├── MdFunctions.vue │ ├── MdFormatQuote.vue │ ├── MdFormatSize.vue │ ├── MdTextFields.vue │ ├── MdFormatItalic.vue │ ├── MdShowChart.vue │ ├── MdBorderAll.vue │ ├── MdVerticalAlignTop.vue │ ├── MdModeComment.vue │ └── MdVerticalAlignBottom.vue ├── action │ ├── MdEject.vue │ ├── MdHome.vue │ ├── MdDone.vue │ ├── MdGetApp.vue │ ├── MdTrendingFlat.vue │ ├── MdViewStream.vue │ ├── MdViewArray.vue │ ├── MdReorder.vue │ ├── MdSubject.vue │ ├── MdBookmark.vue │ ├── MdStore.vue │ ├── MdTurnedIn.vue │ ├── MdViewColumn.vue │ ├── MdDashboard.vue │ ├── MdViewCarousel.vue │ ├── MdChangeHistory.vue │ ├── MdDelete.vue │ ├── MdLineWeight.vue │ ├── MdList.vue │ ├── MdReportProblem.vue │ ├── MdSwapVert.vue │ ├── MdToc.vue │ ├── MdViewQuilt.vue │ ├── MdCode.vue │ ├── MdGrade.vue │ ├── MdPolymer.vue │ ├── MdSwapHoriz.vue │ ├── MdTab.vue │ ├── MdViewHeadline.vue │ ├── MdInfo.vue │ ├── MdTrendingUp.vue │ ├── MdBook.vue │ ├── MdClass.vue │ ├── MdTrendingDown.vue │ ├── MdViewList.vue │ ├── MdCompareArrows.vue │ └── MdViewModule.vue ├── image │ ├── MdBrightness1.vue │ ├── MdFlashOn.vue │ ├── MdDehaze.vue │ ├── MdDetails.vue │ ├── MdLens.vue │ ├── MdAssistantPhoto.vue │ ├── MdViewCompact.vue │ ├── MdLandscape.vue │ ├── MdNavigateNext.vue │ ├── MdCrop.vue │ ├── MdFilterHdr.vue │ ├── MdNavigateBefore.vue │ ├── MdExposureNeg1.vue │ ├── MdCrop75.vue │ ├── MdCrop169.vue │ ├── MdCrop32.vue │ ├── MdCrop54.vue │ ├── MdCropDin.vue │ └── MdMusicNote.vue ├── navigation │ ├── MdMenu.vue │ ├── MdArrowDropUp.vue │ ├── MdCheck.vue │ ├── MdArrowDropDown.vue │ ├── MdExpandLess.vue │ ├── MdExpandMore.vue │ ├── MdChevronLeft.vue │ ├── MdLastPage.vue │ ├── MdArrowBack.vue │ ├── MdChevronRight.vue │ ├── MdFirstPage.vue │ ├── MdArrowUpward.vue │ ├── MdArrowForward.vue │ ├── MdArrowDownward.vue │ ├── MdClose.vue │ └── MdFullscreen.vue ├── maps │ ├── MdNearMe.vue │ ├── MdNavigation.vue │ ├── MdTerrain.vue │ └── MdLocalBar.vue ├── notification │ └── MdPriorityHigh.vue ├── communication │ ├── MdCallMade.vue │ ├── MdClearAll.vue │ ├── MdCallMissed.vue │ ├── MdCallReceived.vue │ ├── MdChatBubble.vue │ └── MdImportExport.vue ├── device │ ├── MdNetworkCell.vue │ ├── MdSignalCellular0Bar.vue │ ├── MdSignalCellular4Bar.vue │ ├── MdGraphicEq.vue │ ├── MdStorage.vue │ ├── MdSignalCellular1Bar.vue │ ├── MdSignalCellular2Bar.vue │ ├── MdSignalCellular3Bar.vue │ ├── MdSignalCellularNull.vue │ └── MdWidgets.vue ├── social │ ├── MdPlusOne.vue │ └── MdSchool.vue └── hardware │ ├── MdPowerInput.vue │ ├── MdKeyboardArrowUp.vue │ ├── MdKeyboardReturn.vue │ ├── MdTv.vue │ ├── MdKeyboardArrowDown.vue │ ├── MdKeyboardArrowLeft.vue │ ├── MdKeyboardArrowRight.vue │ ├── MdKeyboardBackspace.vue │ └── MdLaptop.vue └── LICENSE /.npmignore: -------------------------------------------------------------------------------- 1 | /mdi/ 2 | /build/ 3 | /node_modules/ 4 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"], 3 | "plugins": ["transform-export-extensions"] 4 | } 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | 3 | .DS_Store 4 | npm-debug.log 5 | yarn-error.log 6 | 7 | # Editor directories and files 8 | .idea 9 | *.suo 10 | *.ntvs* 11 | *.njsproj 12 | *.sln 13 | -------------------------------------------------------------------------------- /dist/alert/index.js: -------------------------------------------------------------------------------- 1 | export MdAddAlert from './MdAddAlert.vue'; 2 | export MdError from './MdError.vue'; 3 | export MdErrorOutline from './MdErrorOutline.vue'; 4 | export MdWarning from './MdWarning.vue'; 5 | -------------------------------------------------------------------------------- /dist/toggle/index.js: -------------------------------------------------------------------------------- 1 | export MdCheckBox from './MdCheckBox.vue'; 2 | export MdCheckBoxOutlineBlank from './MdCheckBoxOutlineBlank.vue'; 3 | export MdIndeterminateCheckBox from './MdIndeterminateCheckBox.vue'; 4 | export MdRadioButtonChecked from './MdRadioButtonChecked.vue'; 5 | export MdRadioButtonUnchecked from './MdRadioButtonUnchecked.vue'; 6 | export MdStar from './MdStar.vue'; 7 | export MdStarBorder from './MdStarBorder.vue'; 8 | export MdStarHalf from './MdStarHalf.vue'; 9 | -------------------------------------------------------------------------------- /dist/file/index.js: -------------------------------------------------------------------------------- 1 | export MdAttachment from './MdAttachment.vue'; 2 | export MdCloud from './MdCloud.vue'; 3 | export MdCloudCircle from './MdCloudCircle.vue'; 4 | export MdCloudDone from './MdCloudDone.vue'; 5 | export MdCloudDownload from './MdCloudDownload.vue'; 6 | export MdCloudOff from './MdCloudOff.vue'; 7 | export MdCloudQueue from './MdCloudQueue.vue'; 8 | export MdCloudUpload from './MdCloudUpload.vue'; 9 | export MdCreateNewFolder from './MdCreateNewFolder.vue'; 10 | export MdFileDownload from './MdFileDownload.vue'; 11 | export MdFileUpload from './MdFileUpload.vue'; 12 | export MdFolder from './MdFolder.vue'; 13 | export MdFolderOpen from './MdFolderOpen.vue'; 14 | export MdFolderShared from './MdFolderShared.vue'; 15 | -------------------------------------------------------------------------------- /dist/places/index.js: -------------------------------------------------------------------------------- 1 | export MdAcUnit from './MdAcUnit.vue'; 2 | export MdAirportShuttle from './MdAirportShuttle.vue'; 3 | export MdAllInclusive from './MdAllInclusive.vue'; 4 | export MdBeachAccess from './MdBeachAccess.vue'; 5 | export MdBusinessCenter from './MdBusinessCenter.vue'; 6 | export MdCasino from './MdCasino.vue'; 7 | export MdChildCare from './MdChildCare.vue'; 8 | export MdChildFriendly from './MdChildFriendly.vue'; 9 | export MdFitnessCenter from './MdFitnessCenter.vue'; 10 | export MdFreeBreakfast from './MdFreeBreakfast.vue'; 11 | export MdGolfCourse from './MdGolfCourse.vue'; 12 | export MdHotTub from './MdHotTub.vue'; 13 | export MdKitchen from './MdKitchen.vue'; 14 | export MdPool from './MdPool.vue'; 15 | export MdRoomService from './MdRoomService.vue'; 16 | export MdRvHookup from './MdRvHookup.vue'; 17 | export MdSmokeFree from './MdSmokeFree.vue'; 18 | export MdSmokingRooms from './MdSmokingRooms.vue'; 19 | export MdSpa from './MdSpa.vue'; 20 | -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "md-svg-vue", 3 | "version": "1.0.19", 4 | "description": "Server Side Material Design Icons (SVG) for Vue.js", 5 | "main": "index.js", 6 | "repository": "git@github.com:IPRIT/md-svg-vue.git", 7 | "homepage": "github.com/IPRIT/md-svg-vue", 8 | "keywords": [ 9 | "mdi", 10 | "vue", 11 | "vuejs", 12 | "vue.js", 13 | "material", 14 | "design", 15 | "icons", 16 | "icon", 17 | "server", 18 | "server side", 19 | "ssr" 20 | ], 21 | "bugs": { 22 | "url": "https://github.com/IPRIT/md-svg-vue/issues" 23 | }, 24 | "author": "Alexander Belov ", 25 | "license": "MIT", 26 | "scripts": { 27 | "clean": "rm -rf dist", 28 | "prebuild": "npm run clean && mkdir dist", 29 | "build": "node build.js && cp *LICENSE dist && cp *.md dist", 30 | "release": "node ./node_modules/.bin/standard-version" 31 | }, 32 | "peerDependencies": { 33 | "vue": "^2.5.13" 34 | } 35 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Alexander Belov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /dist/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Alexander Belov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /dist/av/MdStop.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdRemove.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdTitle.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdPause.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdPlayArrow.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdAdd.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdEject.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdHome.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdFlag.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdForward.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdSend.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdBrightness1.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdFlashOn.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdBubbleChart.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdSpaceBar.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdVolumeMute.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdSort.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdShortText.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdMenu.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdDone.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdGetApp.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdSkipNext.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdPublish.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdArrowDropUp.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdTrendingFlat.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdViewStream.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdSkipPrevious.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdDragHandle.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdDehaze.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdDetails.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/maps/MdNearMe.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdCheck.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/notification/MdPriorityHigh.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/alert/MdWarning.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdEqualizer.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdFiberManualRecord.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdReply.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdFunctions.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/file/MdFileUpload.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdArrowDropDown.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdViewArray.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdFastForward.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdFastRewind.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdRepeat.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/communication/MdCallMade.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdNetworkCell.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdLens.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/maps/MdNavigation.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdReorder.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdSubject.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/communication/MdClearAll.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdFilterList.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdFormatQuote.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdFormatSize.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/file/MdFileDownload.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/social/MdPlusOne.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdBookmark.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdStore.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdTurnedIn.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdViewColumn.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdSignalCellular0Bar.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdSignalCellular4Bar.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdTextFields.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdAssistantPhoto.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdViewCompact.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/maps/MdTerrain.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdExpandLess.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdExpandMore.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdDashboard.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdViewCarousel.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/communication/MdCallMissed.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdFormatItalic.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdLandscape.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdNavigateNext.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdChevronLeft.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdLastPage.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/social/MdSchool.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdChangeHistory.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdDelete.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdLineWeight.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdList.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdReportProblem.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdSwapVert.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdToc.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdViewQuilt.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/communication/MdCallReceived.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdShowChart.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdPowerInput.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdCrop.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdFilterHdr.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdNavigateBefore.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/maps/MdLocalBar.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdArrowBack.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdChevronRight.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdFirstPage.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/toggle/MdStar.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdCode.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdGrade.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdPolymer.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdSwapHoriz.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdTab.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdViewHeadline.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdPlaylistPlay.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdExposureNeg1.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdArrowUpward.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdInfo.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdTrendingUp.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/alert/MdError.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdGraphicEq.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdStorage.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdBorderAll.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdVerticalAlignTop.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/file/MdFolder.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdKeyboardArrowUp.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdCrop75.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdArrowForward.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdBook.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdGames.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdNote.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/communication/MdChatBubble.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdReplyAll.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdSignalCellular1Bar.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdSignalCellular2Bar.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdSignalCellular3Bar.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdSignalCellularNull.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdKeyboardReturn.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdTv.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdCrop169.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdCrop32.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdCrop54.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdClass.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdTrendingDown.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdViewList.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdPlaylistAdd.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdRepeatOne.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdReplay.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdClear.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/device/MdWidgets.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdModeComment.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdKeyboardArrowDown.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdCropDin.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/image/MdMusicNote.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdArrowDownward.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdClose.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/navigation/MdFullscreen.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdCompareArrows.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/action/MdViewModule.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdMovie.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdVideocam.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdVolumeDown.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/av/MdWebAsset.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/communication/MdImportExport.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/content/MdMail.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/editor/MdVerticalAlignBottom.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdKeyboardArrowLeft.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdKeyboardArrowRight.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdKeyboardBackspace.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | -------------------------------------------------------------------------------- /dist/hardware/MdLaptop.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | --------------------------------------------------------------------------------