From bc822612da823bee9a0f3f113c7d6e49d6a61496 Mon Sep 17 00:00:00 2001 From: woothu <32914662+woothu@users.noreply.github.com> Date: Fri, 8 Nov 2019 17:20:56 +0100 Subject: [PATCH] refactor: replace font icons with svg icons --- package-lock.json | 10 +- package.json | 3 +- src/App.vue | 2 - src/assets/icons/icons.js | 113 +- src/containers/TheHeader.vue | 6 +- src/containers/TheHeaderDropdownAccnt.vue | 26 +- src/containers/_nav.js | 86 +- src/main.js | 5 +- src/views/Dashboard.vue | 10 +- src/views/base/Breadcrumbs.vue | 2 +- src/views/base/Cards.vue | 14 +- src/views/base/Carousels.vue | 2 +- src/views/base/Collapses.vue | 2 +- src/views/base/Forms.vue | 126 +- src/views/base/Jumbotrons.vue | 6 +- src/views/base/ListGroups.vue | 20 +- src/views/base/Navbars.vue | 12 +- src/views/base/Navs.vue | 18 +- src/views/base/Paginations.vue | 4 +- src/views/base/Popovers.vue | 4 +- src/views/base/ProgressBars.vue | 16 +- src/views/base/Table.vue | 43 +- src/views/base/Tables.vue | 12 +- src/views/base/Tabs.vue | 18 +- src/views/base/Tooltips.vue | 4 +- src/views/buttons/ButtonGroups.vue | 16 +- src/views/buttons/Dropdowns.vue | 12 +- src/views/buttons/StandardButtons.vue | 10 +- src/views/icons/Brands.vue | 2 +- src/views/icons/Flags.vue | 2 +- src/views/notifications/Alerts.vue | 10 +- src/views/notifications/Badges.vue | 8 +- src/views/notifications/Modals.vue | 2 +- src/views/pages/Login.vue | 10 +- src/views/pages/Page404.vue | 2 +- src/views/pages/Page500.vue | 2 +- src/views/pages/Register.vue | 17 +- src/views/theme/Colors.vue | 4 +- src/views/widgets/WidgetsDropdown.vue | 9 +- .../__snapshots__/TheHeader.spec.js.snap | 192 - .../TheHeaderDropdownAccnt.spec.js.snap | 250 - .../__snapshots__/Dashboard.spec.js.snap | 954 - .../__snapshots__/Breadcrumbs.spec.js.snap | 172 - .../base/__snapshots__/Cards.spec.js.snap | 812 - .../base/__snapshots__/Carousels.spec.js.snap | 136 - .../base/__snapshots__/Collapses.spec.js.snap | 106 - .../__snapshots__/Jumbotrons.spec.js.snap | 216 - .../__snapshots__/ListGroups.spec.js.snap | 1105 - .../base/__snapshots__/Navbars.spec.js.snap | 523 - .../base/__snapshots__/Navs.spec.js.snap | 602 - .../__snapshots__/Paginations.spec.js.snap | 188 - .../__snapshots__/ProgressBars.spec.js.snap | 713 - .../base/__snapshots__/Tables.spec.js.snap | 102 - .../base/__snapshots__/Tooltips.spec.js.snap | 348 - .../ButtonDropdowns.spec.js.snap | 1312 - .../__snapshots__/ButtonGroups.spec.js.snap | 875 - .../StandardButtons.spec.js.snap | 4358 ---- .../icons/__snapshots__/Brands.spec.js.snap | 7735 ------ .../icons/__snapshots__/Flags.spec.js.snap | 21472 ---------------- .../__snapshots__/Alerts.spec.js.snap | 471 - .../__snapshots__/Badges.spec.js.snap | 354 - .../__snapshots__/Modals.spec.js.snap | 338 - .../pages/__snapshots__/Login.spec.js.snap | 122 - .../pages/__snapshots__/Page404.spec.js.snap | 51 - .../pages/__snapshots__/Page500.spec.js.snap | 47 - .../pages/__snapshots__/Register.spec.js.snap | 132 - .../theme/__snapshots__/Colors.spec.js.snap | 852 - 67 files changed, 397 insertions(+), 44811 deletions(-) delete mode 100644 tests/unit/containers/__snapshots__/TheHeader.spec.js.snap delete mode 100644 tests/unit/containers/__snapshots__/TheHeaderDropdownAccnt.spec.js.snap delete mode 100644 tests/unit/views/__snapshots__/Dashboard.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Breadcrumbs.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Cards.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Carousels.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Collapses.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Jumbotrons.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/ListGroups.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Navbars.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Navs.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Paginations.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/ProgressBars.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Tables.spec.js.snap delete mode 100644 tests/unit/views/base/__snapshots__/Tooltips.spec.js.snap delete mode 100644 tests/unit/views/buttons/__snapshots__/ButtonDropdowns.spec.js.snap delete mode 100644 tests/unit/views/buttons/__snapshots__/ButtonGroups.spec.js.snap delete mode 100644 tests/unit/views/buttons/__snapshots__/StandardButtons.spec.js.snap delete mode 100644 tests/unit/views/icons/__snapshots__/Brands.spec.js.snap delete mode 100644 tests/unit/views/icons/__snapshots__/Flags.spec.js.snap delete mode 100644 tests/unit/views/notifications/__snapshots__/Alerts.spec.js.snap delete mode 100644 tests/unit/views/notifications/__snapshots__/Badges.spec.js.snap delete mode 100644 tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap delete mode 100644 tests/unit/views/pages/__snapshots__/Login.spec.js.snap delete mode 100644 tests/unit/views/pages/__snapshots__/Page404.spec.js.snap delete mode 100644 tests/unit/views/pages/__snapshots__/Page500.spec.js.snap delete mode 100644 tests/unit/views/pages/__snapshots__/Register.spec.js.snap delete mode 100644 tests/unit/views/theme/__snapshots__/Colors.spec.js.snap diff --git a/package-lock.json b/package-lock.json index 0d54db48..676c9c09 100644 --- a/package-lock.json +++ b/package-lock.json @@ -874,9 +874,9 @@ } }, "@coreui/coreui": { - "version": "3.0.0-beta.0", - "resolved": "https://registry.npmjs.org/@coreui/coreui/-/coreui-3.0.0-beta.0.tgz", - "integrity": "sha512-7qYuZyQ3H9soaXMtP+34YkqN7VveDJrPhb+FzfJ9OOk663vF47grvNjWSn1AqAv5JCU0mLHhH0+eu0chp+k6vA==" + "version": "3.0.0-beta.1", + "resolved": "https://registry.npmjs.org/@coreui/coreui/-/coreui-3.0.0-beta.1.tgz", + "integrity": "sha512-AneIQg1/Juw/tGwYyIrrRMHYWt0s9Sn2E/SwGnKtkh/pUxUwOkbT47cIWweA2LaR1Hl65Nb+LH4zd/ddp21Wug==" }, "@coreui/coreui-chartjs": { "version": "file:../coreui-chartjs", @@ -887,11 +887,15 @@ "@coreui/icons": { "version": "file:../coreui-icons" }, + "@coreui/icons-vue": { + "version": "file:../coreui-icons-vue" + }, "@coreui/vue": { "version": "file:../coreui-vue", "requires": { "@coreui/coreui": "3.0.0-beta.0", "@coreui/icons": "github:coreui/coreui-icons#v1-alpha", + "@coreui/icons-vue": "github:coreui/coreui-icons-vue", "clone": "^2.1.2", "perfect-scrollbar": "^1.4.0", "popper.js": "^1.16.0", diff --git a/package.json b/package.json index 7837e17e..692b95a9 100644 --- a/package.json +++ b/package.json @@ -14,9 +14,10 @@ "test:e2e": "vue-cli-service test:e2e" }, "dependencies": { - "@coreui/coreui": "3.0.0-beta.0", + "@coreui/coreui": "3.0.0-beta.1", "@coreui/coreui-chartjs": "../coreui-chartjs", "@coreui/icons": "../coreui-icons", + "@coreui/icons-vue": "../coreui-icons-vue", "@coreui/vue": "../coreui-vue", "vue": "^2.6.10", "vue-router": "^3.1.3" diff --git a/src/App.vue b/src/App.vue index 683fbcb5..bbd8afc8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -9,8 +9,6 @@ export default { diff --git a/src/assets/icons/icons.js b/src/assets/icons/icons.js index fc18d52c..6d8e03a6 100644 --- a/src/assets/icons/icons.js +++ b/src/assets/icons/icons.js @@ -17,14 +17,117 @@ import { reddit, vimeo, ccMastercard, ccVisa, stripe, paypal, googleWallet, ccAmex -} from '@coreui/icons/brands' -import { US, BR, IN, FR, ES, PL } from '@coreui/icons/flags' -import { iconSet } from '@coreui/icons' +} from '@coreui/icons' +import { + US, + BR, + IN, + FR, + ES, + PL +} from '@coreui/icons' +import { + arrowRight, + ban, + basket, + bell, + calculator, + calendar, + cloudDownload, + chartPie, + check, + chevronBottom, + chevronTop, + // circleCheck, + commentSquare, + cursor, + drop, + dollar, + envelopeClosed, + envelopeOpen, + euro, + globeAlt, + file, + justifyCenter, + laptop, + layers, + lightbulb, + list, + locationPin, + lockLocked, + magnifyingGlass, + moon, + pencil, + people, + puzzle, + settings, + shieldAlt, + speech, + speedometer, + star, + task, + user, + userFemale, + userFollow, + xCircle + +} from '@coreui/icons' export const iconsSet = Object.assign( {}, - iconSet, - { US, BR, IN, FR, ES, PL }, + { + arrowRight, + ban, + basket, + bell, + calculator, + calendar, + cloudDownload, + chartPie, + check, + chevronBottom, + chevronTop, + // circleCheck, + commentSquare, + cursor, + drop, + dollar, + envelopeClosed, + envelopeOpen, + euro, + globeAlt, + file, + justifyCenter, + laptop, + layers, + lightbulb, + list, + locationPin, + lockLocked, + magnifyingGlass, + moon, + pencil, + people, + puzzle, + settings, + shieldAlt, + speech, + speedometer, + star, + task, + user, + userFemale, + userFollow, + xCircle + }, + { + US, + BR, + IN, + FR, + ES, + PL + }, { facebook, twitter, diff --git a/src/containers/TheHeader.vue b/src/containers/TheHeader.vue index 3259f213..f6b68927 100644 --- a/src/containers/TheHeader.vue +++ b/src/containers/TheHeader.vue @@ -38,17 +38,17 @@ - + - + - + diff --git a/src/containers/TheHeaderDropdownAccnt.vue b/src/containers/TheHeaderDropdownAccnt.vue index d60f25b3..f995b1d3 100644 --- a/src/containers/TheHeaderDropdownAccnt.vue +++ b/src/containers/TheHeaderDropdownAccnt.vue @@ -19,19 +19,19 @@ Account - Updates + Updates {{ itemsCount }} - Messages + Messages {{ itemsCount }} - Tasks + Tasks {{ itemsCount }} - Comments + Comments {{ itemsCount }} Settings - Profile + Profile - Settings + Settings - Payments + Payments {{ itemsCount }} - Projects + Projects {{ itemsCount }} - Lock Account + Lock Account - Logout + Logout @@ -75,3 +75,9 @@ export default { } } + + \ No newline at end of file diff --git a/src/containers/_nav.js b/src/containers/_nav.js index 7c469bec..a819b114 100644 --- a/src/containers/_nav.js +++ b/src/containers/_nav.js @@ -7,7 +7,7 @@ export default [ props: { name: 'Dashboard', to: '/dashboard', - icon: 'cui-speedometer', + icon: 'speedometer', badge: { color: 'primary', text: 'NEW' @@ -25,7 +25,7 @@ export default [ props: { name: 'Colors', to: '/theme/colors', - icon: 'cui-drop' + icon: 'drop' } } ], @@ -35,7 +35,7 @@ export default [ props: { name: 'Typography', to: '/theme/typography', - icon: 'cui-pencil' + icon: 'pencil' } } ], @@ -49,7 +49,7 @@ export default [ props: { name: 'Base', route: '/base', - icon: 'cui-puzzle', + icon: 'puzzle', } }, [ @@ -59,7 +59,7 @@ export default [ props: { name: 'Breadcrumbs', to: '/base/breadcrumbs', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -69,7 +69,7 @@ export default [ props: { name: 'Cards', to: '/base/cards', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -79,7 +79,7 @@ export default [ props: { name: 'Carousels', to: '/base/carousels', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -89,7 +89,7 @@ export default [ props: { name: 'Collapses', to: '/base/collapses', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -99,7 +99,7 @@ export default [ props: { name: 'Forms', to: '/base/forms', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -109,7 +109,7 @@ export default [ props: { name: 'Jumbotrons', to: '/base/jumbotrons', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -119,7 +119,7 @@ export default [ props: { name: 'List Groups', to: '/base/list-groups', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -129,7 +129,7 @@ export default [ props: { name: 'Navs', to: '/base/navs', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -139,7 +139,7 @@ export default [ props: { name: 'Navbars', to: '/base/navbars', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -149,7 +149,7 @@ export default [ props: { name: 'Paginations', to: '/base/paginations', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -159,7 +159,7 @@ export default [ props: { name: 'Popovers', to: '/base/popovers', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -169,7 +169,7 @@ export default [ props: { name: 'Progress Bars', to: '/base/progress-bars', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -179,7 +179,7 @@ export default [ props: { name: 'Switches', to: '/base/switches', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -189,7 +189,7 @@ export default [ props: { name: 'Tables', to: '/base/tables', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -199,7 +199,7 @@ export default [ props: { name: 'Tabs', to: '/base/tabs', - icon: 'cui-puzzle' + icon: 'puzzle' } } ], @@ -209,7 +209,7 @@ export default [ props: { name: 'Tooltips', to: '/base/tooltips', - icon: 'cui-puzzle' + icon: 'puzzle' } } ] @@ -221,7 +221,7 @@ export default [ props: { name: 'Buttons', route: '/buttons', - icon: 'cui-cursor', + icon: 'cursor', } }, [ @@ -231,7 +231,7 @@ export default [ props: { name: 'Buttons', to: '/buttons/standard-buttons', - icon: 'cui-cursor' + icon: 'cursor' } } ], @@ -241,7 +241,7 @@ export default [ props: { name: 'Button Dropdowns', to: '/buttons/dropdowns', - icon: 'cui-cursor' + icon: 'cursor' } } ], @@ -251,7 +251,7 @@ export default [ props: { name: 'Button Groups', to: '/buttons/button-groups', - icon: 'cui-cursor' + icon: 'cursor' } } ], @@ -261,7 +261,7 @@ export default [ props: { name: 'Brand Buttons', to: '/buttons/brand-buttons', - icon: 'cui-cursor' + icon: 'cursor' } } ] @@ -273,7 +273,7 @@ export default [ props: { name: 'Charts', to: '/charts', - icon: 'cui-pie-chart' + icon: 'chart-pie' } } ], @@ -283,7 +283,7 @@ export default [ props: { name: 'Icons', route: '/icons', - icon: 'cui-star', + icon: 'star', } }, [ @@ -293,7 +293,7 @@ export default [ props: { name: 'CoreUI Icons', to: '/icons/coreui-icons', - icon: 'cui-star', + icon: 'star', badge: { color: 'info', text: 'NEW' @@ -307,7 +307,7 @@ export default [ props: { name: 'Brands', to: '/icons/brands', - icon: 'cui-star' + icon: 'star' } } ], @@ -317,7 +317,7 @@ export default [ props: { name: 'Flags', to: '/icons/flags', - icon: 'cui-star' + icon: 'star' } } ] @@ -329,7 +329,7 @@ export default [ props: { name: 'Notifications', route: '/notifications', - icon: 'cui-bell', + icon: 'bell', } }, [ @@ -339,7 +339,7 @@ export default [ props: { name: 'Alerts', to: '/notifications/alerts', - icon: 'cui-bell' + icon: 'bell' } } ], @@ -349,7 +349,7 @@ export default [ props: { name: 'Badges', to: '/notifications/badges', - icon: 'cui-bell' + icon: 'bell' } } ], @@ -359,7 +359,7 @@ export default [ props: { name: 'Modals', to: '/notifications/modals', - icon: 'cui-bell' + icon: 'bell' } } ] @@ -371,11 +371,11 @@ export default [ props: { name: 'Widgets', to: '/widgets', - icon: 'cui-calculator', + icon: 'calculator', badge: { color: 'primary', text: 'NEW', - pill: true + shape: 'pill' } } } @@ -393,7 +393,7 @@ export default [ props: { name: 'Pages', route: '/pages', - icon: 'cui-star', + icon: 'star', } }, [ @@ -403,7 +403,7 @@ export default [ props: { name: 'Login', to: '/pages/login', - icon: 'cui-star' + icon: 'star' } } ], @@ -413,7 +413,7 @@ export default [ props: { name: 'Register', to: '/pages/register', - icon: 'cui-star' + icon: 'star' } } ], @@ -423,7 +423,7 @@ export default [ props: { name: 'Error 404', to: '/pages/404', - icon: 'cui-star' + icon: 'star' } } ], @@ -433,7 +433,7 @@ export default [ props: { name: 'Error 500', to: '/pages/500', - icon: 'cui-star' + icon: 'star' } } ] @@ -445,7 +445,7 @@ export default [ props: { name: 'Download CoreUI', href: 'http://coreui.io/vue/', - icon: 'cui-cloud-download', + icon: 'cloud-download', addLinkClasses: 'c-nav-link-success', target: '_blank' }, @@ -460,7 +460,7 @@ export default [ props: { name: 'Try CoreUI PRO', href: 'http://coreui.io/pro/vue/', - icon: 'cui-layers', + icon: 'layers', addLinkClasses: 'c-nav-link-danger', target: '_blank' } diff --git a/src/main.js b/src/main.js index 4d6a6c1d..77e1e3b8 100644 --- a/src/main.js +++ b/src/main.js @@ -2,16 +2,15 @@ import Vue from 'vue' import App from './App' import router from './router' import CoreuiVue from '@coreui/vue/src' -import { CIconPlugin } from '@coreui/icons/vue' -import { iconsSet } from './assets/icons/icons.js' +import { iconsSet as icons } from './assets/icons/icons.js' Vue.config.performance = true Vue.use(CoreuiVue) -Vue.use(CIconPlugin, iconsSet) new Vue({ el: '#app', router, + icons, template: '', components: { App diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index 461518fb..da54744c 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -10,7 +10,7 @@ - +
- + Male 43%
@@ -279,7 +279,7 @@
- + Female 37%
@@ -293,7 +293,7 @@
- + Organic Search 191,235(56%) @@ -369,7 +369,7 @@
- +
diff --git a/src/views/base/Breadcrumbs.vue b/src/views/base/Breadcrumbs.vue index 6d654cb9..f63e9049 100644 --- a/src/views/base/Breadcrumbs.vue +++ b/src/views/base/Breadcrumbs.vue @@ -3,7 +3,7 @@ - Bootstrap Breadcrumb + Bootstrap Breadcrumb
- + + Card with icon + {{loremIpsum}} + @@ -240,13 +240,13 @@ Card with header actions
- + - + - +
diff --git a/src/views/base/Carousels.vue b/src/views/base/Carousels.vue index d8e7c974..391e9944 100644 --- a/src/views/base/Carousels.vue +++ b/src/views/base/Carousels.vue @@ -3,7 +3,7 @@ - + Bootstrap Carousel
- + Bootstrap Collapse
- Submit - Reset + Submit + Reset @@ -276,8 +276,8 @@ - Submit - Reset + Submit + Reset @@ -307,8 +307,8 @@ - Submit - Reset + Submit + Reset @@ -337,8 +337,8 @@ /> - Submit - Reset + Submit + Reset @@ -399,8 +399,8 @@ - Login - Reset + Login + Reset @@ -427,8 +427,8 @@ /> - Submit - Reset + Submit + Reset @@ -488,25 +488,26 @@ Icon/Text Groups - + + + + > + + + append=".00" + > + + - Submit - Reset + Submit + Reset @@ -519,7 +520,7 @@ @@ -546,8 +547,8 @@ - Submit - Reset + Submit + Reset @@ -619,8 +620,8 @@ - Submit - Reset + Submit + Reset @@ -691,22 +692,23 @@ + + + - + prepend="Email" + > + + + prepend="Password" + > + +
Submit @@ -723,22 +725,23 @@ - + + + + > + + + > + +
Submit @@ -755,22 +758,23 @@ - + + + + > + + + +
Submit @@ -786,19 +790,19 @@ - Form Elements + Form Elements
- + - + - +
@@ -806,21 +810,21 @@ - + Bootstrap Jumbotron
- Jumbotron + Jumbotron with slots @@ -56,7 +56,7 @@ - Jumbotron + Jumbotron colors diff --git a/src/views/base/ListGroups.vue b/src/views/base/ListGroups.vue index 287f8890..0242c729 100644 --- a/src/views/base/ListGroups.vue +++ b/src/views/base/ListGroups.vue @@ -4,7 +4,7 @@ - + Bootstrap list group
- List group active items + List group active items @@ -49,7 +49,7 @@ - + List group disabled items @@ -67,7 +67,7 @@ - + List group actionable items @@ -86,7 +86,7 @@ - + List group buttons @@ -103,7 +103,7 @@ - + List group with badges @@ -136,7 +136,7 @@ - + List group colors @@ -158,7 +158,7 @@ - + List group colors active @@ -182,7 +182,7 @@ - + List group inside cards @@ -223,7 +223,7 @@ - List group custom content + List group custom content diff --git a/src/views/base/Navbars.vue b/src/views/base/Navbars.vue index 8a512788..b4b52ad5 100644 --- a/src/views/base/Navbars.vue +++ b/src/views/base/Navbars.vue @@ -2,7 +2,7 @@
- + Bootstrap Navbar
- Navbar + Navbar brand @@ -82,7 +82,7 @@ - Navbar + Navbar text @@ -99,7 +99,7 @@ - Navbar + Navbar dropdown @@ -135,7 +135,7 @@ - Navbar + Navbar form @@ -153,7 +153,7 @@ - Navbar + Navbar input group diff --git a/src/views/base/Navs.vue b/src/views/base/Navs.vue index 84796e55..1358ddfd 100644 --- a/src/views/base/Navs.vue +++ b/src/views/base/Navs.vue @@ -2,7 +2,7 @@
- Bootstrap Navs + Bootstrap Navs
- + Bootstrap Navs icons - + Link @@ -46,7 +46,7 @@ - + Bootstrap Navs tab style @@ -67,7 +67,7 @@ - + Bootstrap Navs pill style @@ -82,7 +82,7 @@ - + Bootstrap Navs fill tabs @@ -97,7 +97,7 @@ - + Bootstrap Navs justified tabs @@ -112,7 +112,7 @@ - + Bootstrap Navs dropdown support @@ -137,7 +137,7 @@ - + Bootstrap Navs vertical variation diff --git a/src/views/base/Paginations.vue b/src/views/base/Paginations.vue index af76e4cf..b1d31ffd 100644 --- a/src/views/base/Paginations.vue +++ b/src/views/base/Paginations.vue @@ -2,7 +2,7 @@
- + Responsive bootstrap Pagination
- + Pagination alignment diff --git a/src/views/base/Popovers.vue b/src/views/base/Popovers.vue index 07fc5789..6abefbdc 100644 --- a/src/views/base/Popovers.vue +++ b/src/views/base/Popovers.vue @@ -2,7 +2,7 @@
- + Bootstrap Popovers
- + Popovers placement diff --git a/src/views/base/ProgressBars.vue b/src/views/base/ProgressBars.vue index a31e7349..95438209 100644 --- a/src/views/base/ProgressBars.vue +++ b/src/views/base/ProgressBars.vue @@ -2,7 +2,7 @@
- + Bootstrap Progress
- Progress labels + Progress labels
No label
@@ -50,7 +50,7 @@
- + Progress width @@ -65,7 +65,7 @@ - + Progress height @@ -80,7 +80,7 @@ - + Progress colors @@ -99,7 +99,7 @@ - + Progress striped @@ -135,7 +135,7 @@ - + Progress animated @@ -174,7 +174,7 @@ - + Progress multiple bars diff --git a/src/views/base/Table.vue b/src/views/base/Table.vue index 699b0121..55377253 100644 --- a/src/views/base/Table.vue +++ b/src/views/base/Table.vue @@ -1,23 +1,28 @@ diff --git a/src/views/base/Tables.vue b/src/views/base/Tables.vue index 41d38a8c..646e2b72 100644 --- a/src/views/base/Tables.vue +++ b/src/views/base/Tables.vue @@ -4,7 +4,7 @@ @@ -12,7 +12,7 @@ @@ -22,7 +22,7 @@ @@ -31,7 +31,7 @@ :items="getShuffledUsersData()" fixed bordered - caption=" Bordered Table" + caption="Bordered Table" /> @@ -45,7 +45,7 @@ bordered small fixed - caption=" Combined All Table" + caption="Combined All Table" /> @@ -60,7 +60,7 @@ small fixed dark - caption=" Combined All Table" + caption="Combined All Table" /> diff --git a/src/views/base/Tabs.vue b/src/views/base/Tabs.vue index 41e13a2d..43032a3d 100644 --- a/src/views/base/Tabs.vue +++ b/src/views/base/Tabs.vue @@ -84,7 +84,7 @@ 1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut @@ -94,7 +94,7 @@ 2. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut @@ -104,7 +104,7 @@ 3. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut @@ -125,7 +125,7 @@ 1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut @@ -135,7 +135,7 @@ 2. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut @@ -145,7 +145,7 @@ 3. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut @@ -166,7 +166,7 @@ 1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut @@ -176,7 +176,7 @@ 2. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut @@ -186,7 +186,7 @@ 3. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut diff --git a/src/views/base/Tooltips.vue b/src/views/base/Tooltips.vue index 1b865a26..5886a16d 100644 --- a/src/views/base/Tooltips.vue +++ b/src/views/base/Tooltips.vue @@ -2,7 +2,7 @@
- + Bootstrap Tooltips v-c-tooltip directive -`; diff --git a/tests/unit/views/base/__snapshots__/Cards.spec.js.snap b/tests/unit/views/base/__snapshots__/Cards.spec.js.snap deleted file mode 100644 index 54e5b2b0..00000000 --- a/tests/unit/views/base/__snapshots__/Cards.spec.js.snap +++ /dev/null @@ -1,812 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Cards.vue renders correctly 1`] = ` -
-
-
-
- -
- - Card title - - -
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. -
-
- Card Footer -
-
-
- -
-
-
- - Card with icon -
-
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. -
- -
-
- -
-
- -
- - Card with switch - - -
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- - Card with label - - - Success - -
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- - Card with label - - - 42 - -
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
-
- -
-
-
- -
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. -
- -
-
- -
-
- -
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. -
- -
-
- -
-
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
-
- Card outline info -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
-
- Card outline warning -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
-
- Card outline danger -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
-
- -
-
-
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
-
- -
-
-
- -
-
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. -

- -
- Someone famous in - - - Source Title - -
-
-
- -
-
- -
-
- -
-
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. -

- -
- Someone famous in - - - Source Title - -
-
-
- -
-
- -
-
- -
-
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. -

- -
- Someone famous in - - - Source Title - -
-
-
- -
-
- -
-
- -
-
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. -

- -
- Someone famous in - - - Source Title - -
-
-
- -
-
- -
-
- -
-
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. -

- -
- Someone famous in - - - Source Title - -
-
-
- -
-
- -
-
- -
-
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. -

- -
- Someone famous in - - - Source Title - -
-
-
- -
-
-
- -
-
-
-
- Card title -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
-
- Card title -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
-
- Card title -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
-
- Card title -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
-
- Card title -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
- -
-
- -
-
- -
- - Card with header actions - -
- - - - - - - - - - - -
-
- -
-
- - Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. - -
-
- -
-
-
-
-`; diff --git a/tests/unit/views/base/__snapshots__/Carousels.spec.js.snap b/tests/unit/views/base/__snapshots__/Carousels.spec.js.snap deleted file mode 100644 index 65ac452d..00000000 --- a/tests/unit/views/base/__snapshots__/Carousels.spec.js.snap +++ /dev/null @@ -1,136 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Carousels.vue renders correctly 1`] = ` -
-
-
- -
- - - - Bootstrap Carousel - - - -
- -
- -
- -
-
-
-`; diff --git a/tests/unit/views/base/__snapshots__/Collapses.spec.js.snap b/tests/unit/views/base/__snapshots__/Collapses.spec.js.snap deleted file mode 100644 index 457880a5..00000000 --- a/tests/unit/views/base/__snapshots__/Collapses.spec.js.snap +++ /dev/null @@ -1,106 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Collapses.vue renders correctly 1`] = ` -
-
-
- -
- - - - Bootstrap Collapse - - - -
- -
- - - -
- -
-
-
-`; diff --git a/tests/unit/views/base/__snapshots__/Jumbotrons.spec.js.snap b/tests/unit/views/base/__snapshots__/Jumbotrons.spec.js.snap deleted file mode 100644 index cb231c1f..00000000 --- a/tests/unit/views/base/__snapshots__/Jumbotrons.spec.js.snap +++ /dev/null @@ -1,216 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Jumbotrons.vue renders correctly 1`] = ` -
- - - - - - - - Bootstrap Jumbotron - - - - - - - -

- Bootstrap 4 -

- -

- Bootstrap 4 Components for Vue.js 2.6+ -

- -

- For more information visit website -

- - - More Info - -
-
-
-
- - - - - - - - Jumbotron - - - - with slots - - - - - -

- Bootstrap 4 -

- -

- - This is a simple hero unit, a simple jumbotron-style component for - calling extra attention to featured content or information. - -

- -
- -

- - It uses utility classes for typography and spacing to space content - out within the larger container. - -

- - - Do Something - - - - Do Something Else - -
-
-
-
-
- - - - - - - - - Jumbotron - - - - colors - - - - - -

- Bootstrap 4 -

- -

- - This is a simple hero unit, a simple jumbotron-style component for - calling extra attention to featured content or information. - -

- -
- -

- - It uses utility classes for typography and spacing to space content - out within the larger container. - -

-
-
-
-
-
-
-`; diff --git a/tests/unit/views/base/__snapshots__/ListGroups.spec.js.snap b/tests/unit/views/base/__snapshots__/ListGroups.spec.js.snap deleted file mode 100644 index 17748d77..00000000 --- a/tests/unit/views/base/__snapshots__/ListGroups.spec.js.snap +++ /dev/null @@ -1,1105 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`ListGroups.vue renders correctly 1`] = ` -
- - - - - - - - Bootstrap list group - - - - - - - - - Cras justo odio - - - - Dapibus ac facilisis in - - - - Morbi leo risus - - - - Porta ac consectetur ac - - - - Vestibulum at eros - - - - - - - - - - - - List group - - - active items - - - - - - - Cras justo odio - - - - Dapibus ac facilisis in - - - - Morbi leo risus - - - - Porta ac consectetur ac - - - - Vestibulum at eros - - - - - - - - - - - - - - - List group - - - - disabled items - - - - - - - Cras justo odio - - - - Dapibus ac facilisis in - - - - Morbi leo risus - - - - Porta ac consectetur ac - - - - Vestibulum at eros - - - - - - - - - - - - - List group - - - - actionable items - - - - - - - Awesome link - - - - Link with active state - - - - Action links are easy - - - - Disabled link - - - - - - - - - - - - - - - List group - - - - buttons - - - - - - - Button item - - - - I am a button - - - - Disabled button - - - - This is a button too - - - - - - - - - - - - - List group - - - - with badges - - - - - - - - Cras justo odio - - - 14 - - - - - - Dapibus ac facilisis in - - - 2 - - - - - - Morbi leo risus - - - 1 - - - - - - - - - - - - - - - - List group - - - - colors - - - - - - - This is a default list group item - - - - This is a primary list group item - - - - This is a secondary list group item - - - - This is a success list group item - - - - This is a danger list group item - - - - This is a warning list group item - - - - This is a info list group item - - - - This is a light list group item - - - - This is a dark list group item - - - - - - - - - - - - - List group - - - - colors active - - - - - - - This is a default list group item - - - - This is a primary list group item - - - - This is a secondary list group item - - - - This is a success list group item - - - - This is a danger list group item - - - - This is a warning list group item - - - - This is a info list group item - - - - This is a light list group item - - - - This is a dark list group item - - - - - - - - - - - - - - - List group - - - - inside cards - - - - - - Card with list group - > - - - Cras justo odio - - - - Dapibus ac facilisis in - - - - Vestibulum at eros - - - -

- - Quis magna Lorem anim amet ipsum do mollit sit cillum voluptate ex - nulla tempor. Laborum consequat non elit enim exercitation cillum aliqua - consequat id aliqua. Esse ex consectetur mollit voluptate est in duis laboris - ad sit ipsum anim Lorem. - -

-
- - Card with flush list group - > - - - Cras justo odio - - - - Dapibus ac facilisis in - - - - Vestibulum at eros - - - - - - Quis magna Lorem anim amet ipsum do mollit sit cillum voluptate ex - nulla tempor. Laborum consequat non elit enim exercitation cillum aliqua - consequat id aliqua. Esse ex consectetur mollit voluptate est in duis laboris - ad sit ipsum anim Lorem. - - - -
-
-
-
-
- - - - - - - - List group - - - custom content - - - - - - -
-
- List group item heading -
- - - 3 days ago - -
- -

- - Donec id elit non mi porta gravida at eget metus. Maecenas - sed diam eget risus varius blandit. - -

- - - Donec id elit non mi porta. - -
- - -
-
- List group item heading -
- - - 3 days ago - -
- -

- - Donec id elit non mi porta gravida at eget metus. Maecenas - sed diam eget risus varius blandit. - -

- - - Donec id elit non mi porta. - -
- - -
-
- Disabled List group item -
- - - 3 days ago - -
- -

- - Donec id elit non mi porta gravida at eget metus. Maecenas - sed diam eget risus varius blandit. - -

- - - Donec id elit non mi porta. - -
-
-
-
-
-
-
-`; diff --git a/tests/unit/views/base/__snapshots__/Navbars.spec.js.snap b/tests/unit/views/base/__snapshots__/Navbars.spec.js.snap deleted file mode 100644 index ff7230f8..00000000 --- a/tests/unit/views/base/__snapshots__/Navbars.spec.js.snap +++ /dev/null @@ -1,523 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Navbars.vue renders correctly 1`] = ` -
- - - - - - Bootstrap Navbar - - - - - - - - - - - NavBar - - - - - - Link - - - - Disabled - - - - - - - - - - Search - - - - - - - EN - - - - ES - - - - RU - - - - FA - - - - - - Profile - - - - Signout - - - - - - - - - - - - - - Navbar - - - - brand - - - - - - - CoreuiVue - - CoreuiVue - - - - - - - - - - - - Navbar - - - - text - - - - - - - - - CoreuiVue - - - - - - Navbar text - - - - - - - - - - - - - Navbar - - - - dropdown - - - - - - - - - - - Home - - - - Link - - - - - EN - - - - ES - - - - RU - - - - FA - - - - - - Account - - - - Settings - - - - - - - - - - - - - - Navbar - - - - form - - - - - - - - - - Search - - - - - - - - - - - - Navbar - - - - input group - - - - - - - - - - - -
-`; diff --git a/tests/unit/views/base/__snapshots__/Navs.spec.js.snap b/tests/unit/views/base/__snapshots__/Navs.spec.js.snap deleted file mode 100644 index 7ca544e7..00000000 --- a/tests/unit/views/base/__snapshots__/Navs.spec.js.snap +++ /dev/null @@ -1,602 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Navs.vue renders correctly 1`] = ` -
- - - - - Bootstrap Navs - - - - - - - - - Active - - - - - - Another Link - - - - Disabled - - - - - - - - - - - Bootstrap Navs - - - - icons - - - - - - - - - - - - Link - - - - - - Another Link - - - - - Disabled - - - - - - - - - - - Bootstrap Navs - - - - tab style - - - - - - - - Active - - - - - - Link - - - - - - Another Link - - - - - Disabled - - - - - - - - - - - Bootstrap Navs - - - - pill style - - - - - - - Active - - - - Link - - - - Another Link - - - - Disabled - - - - - - - - - - - Bootstrap Navs - - - - fill tabs - - - - - - - Active - - - - Link - - - - Link with a long name - - - - Disabled - - - - - - - - - - - Bootstrap Navs - - - - justified tabs - - - - - - - Active - - - - Link - - - - Link with a long name - - - - Disabled - - - - - - - - - - - Bootstrap Navs - - - - dropdown support - - - - - - - Active - - - - Link - - - - - one - - - - two - - - - - - three - - - - - - - - - - - - Bootstrap Navs - - - - vertical variation - - - - - - - - - Active - - - - Link - - - - Another Link - - - - Disabled - - - - - - -
-`; diff --git a/tests/unit/views/base/__snapshots__/Paginations.spec.js.snap b/tests/unit/views/base/__snapshots__/Paginations.spec.js.snap deleted file mode 100644 index 83bf3d01..00000000 --- a/tests/unit/views/base/__snapshots__/Paginations.spec.js.snap +++ /dev/null @@ -1,188 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Paginations.vue renders correctly 1`] = ` -
- - - - - - Responsive bootstrap Pagination - - - - - - -
- Default -
- - - -
- -
- Small -
- - - -
- -
-
- Large -
- - - -
-
- -
- currentPage: 3 -
-
-
- - - - - - - Pagination - - - - alignment - - - - -
- Left alignment (default) -
- - - -
- -
- Center alignment -
- - - -
- -
- Right (end) alignment -
- - - -
- -
- currentPage: 3 -
-
-
-
-`; diff --git a/tests/unit/views/base/__snapshots__/ProgressBars.spec.js.snap b/tests/unit/views/base/__snapshots__/ProgressBars.spec.js.snap deleted file mode 100644 index 1dec7fb6..00000000 --- a/tests/unit/views/base/__snapshots__/ProgressBars.spec.js.snap +++ /dev/null @@ -1,713 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`ProgressBars.vue renders correctly 1`] = ` -
- - - - - - Bootstrap Progress - - - - - - - - - - - - - - - - - - - Click me to animate progress bars - - - - - - - - - - - Progress - - - labels - - - - -
- No label -
- - - -
- Value label -
- - - -
- Progress label -
- - - -
- Value label with precision -
- - - -
- Progress label with precision -
- - -
-
- - - - - - - Progress - - - - width - - - - -
- Default width -
- - - -
- Custom widths -
- - - - - - -
-
- - - - - - - Progress - - - - height - - - - -
- Default height -
- - - -
- Custom heights -
- - - - - - -
-
- - - - - - - Progress - - - - colors - - - - -
-
- success: -
- -
- -
-
-
-
- info: -
- -
- -
-
-
-
- warning: -
- -
- -
-
-
-
- danger: -
- -
- -
-
-
-
- primary: -
- -
- -
-
-
-
- secondary: -
- -
- -
-
-
-
- dark: -
- -
- -
-
-
-
- - - - - - - Progress - - - - striped - - - - - - - - - - - - - - - Remove Striped - - - - - - - - - - - Progress - - - - animated - - - - - - - - - - - - - - - Stop Animation - - - - - - - - - - - Progress - - - - multiple bars - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-`; diff --git a/tests/unit/views/base/__snapshots__/Tables.spec.js.snap b/tests/unit/views/base/__snapshots__/Tables.spec.js.snap deleted file mode 100644 index bedd16d7..00000000 --- a/tests/unit/views/base/__snapshots__/Tables.spec.js.snap +++ /dev/null @@ -1,102 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Tables.vue renders correctly 1`] = ` -
- - - Simple Table - fields="username,registered,role,status" - items="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]" - /> - - - - Striped Table - fields="username,registered,role,status" - items="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]" - striped="true" - /> - - - - - - Condensed Table - fields="username,registered,role,status" - items="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]" - small="true" - /> - - - - Bordered Table - fields="username,registered,role,status" - fixed="true" - items="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]" - /> - - - - - - Combined All Table - fields="username,registered,role,status" - fixed="true" - hover="true" - items="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]" - small="true" - striped="true" - /> - - - - - - Combined All Table - dark="true" - fields="username,registered,role,status" - fixed="true" - hover="true" - items="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]" - small="true" - striped="true" - /> - - -
-`; diff --git a/tests/unit/views/base/__snapshots__/Tooltips.spec.js.snap b/tests/unit/views/base/__snapshots__/Tooltips.spec.js.snap deleted file mode 100644 index 03e09061..00000000 --- a/tests/unit/views/base/__snapshots__/Tooltips.spec.js.snap +++ /dev/null @@ -1,348 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Tooltips.vue renders correctly 1`] = ` -
- - - - - - Bootstrap Tooltips - - - - - v-c-tooltip - - directive - - - - - - - - -
- - - Hover Me - - -
-
- - -
- - - Hover me - - -
-
-
-
-
- - - - - - - Tooltips - - - - placement - - - - -
- - - - - top-start - - - - - - - top - - - - - - - top-end - - - - - - - bottom-start - - - - - - - bottom - - - - - - - bottom-end - - - - - - - right-start - - - - - - - right - - - - - - - right-end - - - - - - - left-start - - - - - - - left - - - - - - - left-end - - - - -
-
-
-
-`; diff --git a/tests/unit/views/buttons/__snapshots__/ButtonDropdowns.spec.js.snap b/tests/unit/views/buttons/__snapshots__/ButtonDropdowns.spec.js.snap deleted file mode 100644 index 0b516a34..00000000 --- a/tests/unit/views/buttons/__snapshots__/ButtonDropdowns.spec.js.snap +++ /dev/null @@ -1,1312 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Dropdowns.vue renders correctly 1`] = ` -
-
-
-
- -
- - - - Bootstrap Dropdown - - - -
- -
-
- - -
- - -
- -
-
- -
-
- -
-
- -
- - - - Dropdown - - - - positioning - -
- -
- - - - -
- -
- -
- -
-
- -
-
-
- -
-
-
- -
- - - - Dropdown - - - - hidden caret - -
- -
-
- -
-
- -
-
- -
-
- -
- - - - Dropdown - - - - sizing - -
- - - -
-
-
- -
-
-
- -
- - - - Dropdown - - - - headers and accessibility - -
- -
-
- -
- -
-
- -
-
- -
- - - - Dropdown - - - - - color - - -
- - - -
-
-
-
-`; diff --git a/tests/unit/views/buttons/__snapshots__/ButtonGroups.spec.js.snap b/tests/unit/views/buttons/__snapshots__/ButtonGroups.spec.js.snap deleted file mode 100644 index aaf959c3..00000000 --- a/tests/unit/views/buttons/__snapshots__/ButtonGroups.spec.js.snap +++ /dev/null @@ -1,875 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`ButtonGroups.vue renders correctly 1`] = ` - - - - - - - - Bootstrap button group - - - - - - -
- - - One - - - - Two - - - - Three - - - - Four - - - - Five - - - -
-
- - - - Success - - - - Info - - - - Warn - - - - Primary - - - - Danger - - - - Link - - -
-
-
-
- - - - - - - - Button group - - sizing - - - - -
- - - Left - - - - Middle - - - - Right - - - -
-
- - - - Left - - - - Middle - - - - Right - - - -
-
- - - - Left - - - - Middle - - - - Right - - -
-
-
-
- - - - - - - Button group - - dropdown support - - - - -
- - - Button 1 - - - - Button 2 - - - - - Item 1 - - - - Item 2 - - - - - - Item 3 - - - - - Button 3 - - - - - Item 1 - - - - Item 2 - - - - - - Item 3 - - - -
-
-
-
- - - - - - - - Button group - - vertical variation - - - - -
- - - Top - - - - Middle - - - - Bottom - - -
-
-
-
- - - - - - - - Button toolbar - - - - with button groups - - - - - - - - « - - - - ‹ - - - - - - Edit - - - - Undo - - - - Redo - - - - - - › - - - - » - - - - -
- - - - - New - - - - Edit - - - - - - - - - - Save - - - - Cancel - - - - -
- - - - - New - - - - Edit - - - - Undo - - - - - - Item 1 - - - - Item 2 - - - - Item 3 - - - - - - Save - - - - Cancel - - - -
-
-
-
-`; diff --git a/tests/unit/views/buttons/__snapshots__/StandardButtons.spec.js.snap b/tests/unit/views/buttons/__snapshots__/StandardButtons.spec.js.snap deleted file mode 100644 index 0482ca7f..00000000 --- a/tests/unit/views/buttons/__snapshots__/StandardButtons.spec.js.snap +++ /dev/null @@ -1,4358 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`StandardButtons.vue renders correctly 1`] = ` -
- - - - Standard buttons - - - - - - - - - - Normal - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - - - - - - Active State - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - - - - - - Disabled - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - - - - - - - - Outline Buttons - - - - -

- - Use - - variant="outline" - - prop - -

- - - - - Normal - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - - - - - Active State - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - - - - - Disabled - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - -
-
- - - - - Ghost Buttons - - - - -

- - Use - - - variant="ghost" - - prop for ghost buttons. - -

- - - - - Normal - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - - - - - Active State - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - - - - - Disabled - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - -
-
- - - - - Square Buttons - - - - -

- - Use - - - square - - prop for square buttons. - -

- - - - - Normal - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - - - - - - Active State - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - - - - - - Disabled - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - -
-
- - - - - Pill Buttons - - - - -

- - Use - - - pill - - prop for pill buttons. - -

- - - - - Normal - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - - - - - - Active State - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - - - - - - Disabled - - - - - - Primary - - - - - - Secondary - - - - - - Success - - - - - - Warning - - - - - - Danger - - - - - - Info - - - - - - Light - - - - - - Dark - - - - - - Link - - - -
-
- - - - - Sizes - - - - -

- Fancy larger or smaller buttons? Add - - size="lg" - - or - - size="sm" - - for additional sizes. -

- - - - - Small - - - - - - Standard Button - - - - - - Outline Button - - - - - - Ghost Button - - - - - - Square Button - - - - - - Pill Button - - - - - - - - Normal - - - - - - Standard Button - - - - - - Outline Button - - - - - - Ghost Button - - - - - - Square Button - - - - - - Pill Button - - - - - - - - Large - - - - - - Standard Button - - - - - - Outline Button - - - - - - Ghost Button - - - - - - Square Button - - - - - - Pill Button - - - -
-
- - - - - With Icons - - - - - - - - -  Standard Button - - - - - - - -  Outline Button - - - - - - - -  Ghost Button - - - - - - - -  Square Button - - - - - - - -  Pill Button - - - - - - - - - - - Toggle pressed state - - - - - - - - Primary Off - - - - - - Secondary Off - - - - - - Success Off - - - - - - Info Off - - - - - - Warning Off - - - - - - Danger Off - - - - - - - - - - - - Block Level CButtons - - - Add this - - block - - - - - - - Block level button - - - - Block level button - - - - Block level button - - - - Block level button - - - - Block level button - - - - Block level button - - - - Block level button - - - - - - - - - - Block Level CButtons - - - Add this - - block - - - - - - - Block level button - - - - Block level button - - - - Block level button - - - - Block level button - - - - Block level button - - - - Block level button - - - - Block level button - - - - - -
-`; diff --git a/tests/unit/views/icons/__snapshots__/Brands.spec.js.snap b/tests/unit/views/icons/__snapshots__/Brands.spec.js.snap deleted file mode 100644 index e2800e6f..00000000 --- a/tests/unit/views/icons/__snapshots__/Brands.spec.js.snap +++ /dev/null @@ -1,7735 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Brands.vue renders correctly 1`] = ` -
-
- -
- - Font Awesome brand icons - -
- -
-
-
- - - - -
- accessibleIcon -
-
-
- - - - -
- accusoft -
-
-
- - - - -
- acquisitionsIncorporated -
-
-
- - - - -
- adn -
-
-
- - - - -
- adobe -
-
-
- - - - -
- adversal -
-
-
- - - - -
- affiliatetheme -
-
-
- - - - -
- airbnb -
-
-
- - - - -
- algolia -
-
-
- - - - -
- alipay -
-
-
- - - - -
- amazonPay -
-
-
- - - - -
- amazon -
-
-
- - - - -
- amilia -
-
-
- - - - -
- android -
-
-
- - - - -
- angellist -
-
-
- - - - -
- angrycreative -
-
-
- - - - -
- angular -
-
-
- - - - -
- appStoreIos -
-
-
- - - - -
- appStore -
-
-
- - - - -
- apper -
-
-
- - - - -
- applePay -
-
-
- - - - -
- apple -
-
-
- - - - -
- artstation -
-
-
- - - - -
- asymmetrik -
-
-
- - - - -
- atlassian -
-
-
- - - - -
- audible -
-
-
- - - - -
- autoprefixer -
-
-
- - - - -
- avianex -
-
-
- - - - -
- aviato -
-
-
- - - - -
- aws -
-
-
- - - - -
- bandcamp -
-
-
- - - - -
- battleNet -
-
-
- - - - -
- behanceSquare -
-
-
- - - - -
- behance -
-
-
- - - - -
- bimobject -
-
-
- - - - -
- bitbucket -
-
-
- - - - -
- bitcoin -
-
-
- - - - -
- bity -
-
-
- - - - -
- blackTie -
-
-
- - - - -
- blackberry -
-
-
- - - - -
- bloggerB -
-
-
- - - - -
- blogger -
-
-
- - - - -
- bluetoothB -
-
-
- - - - -
- bluetooth -
-
-
- - - - -
- bootstrap -
-
-
- - - - -
- btc -
-
-
- - - - -
- buffer -
-
-
- - - - -
- buromobelexperte -
-
-
- - - - -
- buysellads -
-
-
- - - - -
- canadianMapleLeaf -
-
-
- - - - -
- ccAmazonPay -
-
-
- - - - -
- ccAmex -
-
-
- - - - -
- ccApplePay -
-
-
- - - - -
- ccDinersClub -
-
-
- - - - -
- ccDiscover -
-
-
- - - - -
- ccJcb -
-
-
- - - - -
- ccMastercard -
-
-
- - - - -
- ccPaypal -
-
-
- - - - -
- ccStripe -
-
-
- - - - -
- ccVisa -
-
-
- - - - -
- centercode -
-
-
- - - - -
- centos -
-
-
- - - - -
- chrome -
-
-
- - - - -
- chromecast -
-
-
- - - - -
- cloudscale -
-
-
- - - - -
- cloudsmith -
-
-
- - - - -
- cloudversify -
-
-
- - - - -
- codepen -
-
-
- - - - -
- codiepie -
-
-
- - - - -
- confluence -
-
-
- - - - -
- connectdevelop -
-
-
- - - - -
- contao -
-
-
- - - - -
- cpanel -
-
-
- - - - -
- creativeCommonsBy -
-
-
- - - - -
- creativeCommonsNcEu -
-
-
- - - - -
- creativeCommonsNcJp -
-
-
- - - - -
- creativeCommonsNc -
-
-
- - - - -
- creativeCommonsNd -
-
-
- - - - -
- creativeCommonsPdAlt -
-
-
- - - - -
- creativeCommonsPd -
-
-
- - - - -
- creativeCommonsRemix -
-
-
- - - - -
- creativeCommonsSa -
-
-
- - - - -
- creativeCommonsSamplingPlus -
-
-
- - - - -
- creativeCommonsSampling -
-
-
- - - - -
- creativeCommonsShare -
-
-
- - - - -
- creativeCommonsZero -
-
-
- - - - -
- creativeCommons -
-
-
- - - - -
- criticalRole -
-
-
- - - - -
- css3Alt -
-
-
- - - - -
- css3 -
-
-
- - - - -
- cuttlefish -
-
-
- - - - -
- dAndDBeyond -
-
-
- - - - -
- dAndD -
-
-
- - - - -
- dashcube -
-
-
- - - - -
- delicious -
-
-
- - - - -
- deploydog -
-
-
- - - - -
- deskpro -
-
-
- - - - -
- dev -
-
-
- - - - -
- deviantart -
-
-
- - - - -
- dhl -
-
-
- - - - -
- diaspora -
-
-
- - - - -
- digg -
-
-
- - - - -
- digitalOcean -
-
-
- - - - -
- discord -
-
-
- - - - -
- discourse -
-
-
- - - - -
- dochub -
-
-
- - - - -
- docker -
-
-
- - - - -
- draft2digital -
-
-
- - - - -
- dribbbleSquare -
-
-
- - - - -
- dribbble -
-
-
- - - - -
- dropbox -
-
-
- - - - -
- drupal -
-
-
- - - - -
- dyalog -
-
-
- - - - -
- earlybirds -
-
-
- - - - -
- ebay -
-
-
- - - - -
- edge -
-
-
- - - - -
- elementor -
-
-
- - - - -
- ello -
-
-
- - - - -
- ember -
-
-
- - - - -
- empire -
-
-
- - - - -
- envira -
-
-
- - - - -
- erlang -
-
-
- - - - -
- ethereum -
-
-
- - - - -
- etsy -
-
-
- - - - -
- evernote -
-
-
- - - - -
- expeditedssl -
-
-
- - - - -
- facebookF -
-
-
- - - - -
- facebookMessenger -
-
-
- - - - -
- facebookSquare -
-
-
- - - - -
- facebook -
-
-
- - - - -
- fantasyFlightGames -
-
-
- - - - -
- fedex -
-
-
- - - - -
- fedora -
-
-
- - - - -
- figma -
-
-
- - - - -
- firefox -
-
-
- - - - -
- firstOrderAlt -
-
-
- - - - -
- firstOrder -
-
-
- - - - -
- firstdraft -
-
-
- - - - -
- flickr -
-
-
- - - - -
- flipboard -
-
-
- - - - -
- fly -
-
-
- - - - -
- fontAwesomeAlt -
-
-
- - - - -
- fontAwesomeFlag -
-
-
- - - - -
- fontAwesomeLogoFull -
-
-
- - - - -
- fontAwesome -
-
-
- - - - -
- fonticonsFi -
-
-
- - - - -
- fonticons -
-
-
- - - - -
- fortAwesomeAlt -
-
-
- - - - -
- fortAwesome -
-
-
- - - - -
- forumbee -
-
-
- - - - -
- foursquare -
-
-
- - - - -
- freeCodeCamp -
-
-
- - - - -
- freebsd -
-
-
- - - - -
- fulcrum -
-
-
- - - - -
- galacticRepublic -
-
-
- - - - -
- galacticSenate -
-
-
- - - - -
- getPocket -
-
-
- - - - -
- ggCircle -
-
-
- - - - -
- gg -
-
-
- - - - -
- gitAlt -
-
-
- - - - -
- gitSquare -
-
-
- - - - -
- git -
-
-
- - - - -
- githubAlt -
-
-
- - - - -
- githubSquare -
-
-
- - - - -
- github -
-
-
- - - - -
- gitkraken -
-
-
- - - - -
- gitlab -
-
-
- - - - -
- gitter -
-
-
- - - - -
- glideG -
-
-
- - - - -
- glide -
-
-
- - - - -
- gofore -
-
-
- - - - -
- goodreadsG -
-
-
- - - - -
- goodreads -
-
-
- - - - -
- googleDrive -
-
-
- - - - -
- googlePlay -
-
-
- - - - -
- googlePlusG -
-
-
- - - - -
- googlePlusSquare -
-
-
- - - - -
- googlePlus -
-
-
- - - - -
- googleWallet -
-
-
- - - - -
- google -
-
-
- - - - -
- gratipay -
-
-
- - - - -
- grav -
-
-
- - - - -
- gripfire -
-
-
- - - - -
- grunt -
-
-
- - - - -
- gulp -
-
-
- - - - -
- hackerNewsSquare -
-
-
- - - - -
- hackerNews -
-
-
- - - - -
- hackerrank -
-
-
- - - - -
- hips -
-
-
- - - - -
- hireAHelper -
-
-
- - - - -
- hooli -
-
-
- - - - -
- hornbill -
-
-
- - - - -
- hotjar -
-
-
- - - - -
- houzz -
-
-
- - - - -
- html5 -
-
-
- - - - -
- hubspot -
-
-
- - - - -
- imdb -
-
-
- - - - -
- instagram -
-
-
- - - - -
- intercom -
-
-
- - - - -
- internetExplorer -
-
-
- - - - -
- invision -
-
-
- - - - -
- ioxhost -
-
-
- - - - -
- itchIo -
-
-
- - - - -
- itunesNote -
-
-
- - - - -
- java -
-
-
- - - - -
- itunes -
-
-
- - - - -
- jediOrder -
-
-
- - - - -
- jenkins -
-
-
- - - - -
- jira -
-
-
- - - - -
- joget -
-
-
- - - - -
- joomla -
-
-
- - - - -
- jsSquare -
-
-
- - - - -
- js -
-
-
- - - - -
- jsfiddle -
-
-
- - - - -
- kaggle -
-
-
- - - - -
- keybase -
-
-
- - - - -
- keycdn -
-
-
- - - - -
- kickstarterK -
-
-
- - - - -
- kickstarter -
-
-
- - - - -
- korvue -
-
-
- - - - -
- laravel -
-
-
- - - - -
- lastfmSquare -
-
-
- - - - -
- lastfm -
-
-
- - - - -
- leanpub -
-
-
- - - - -
- less -
-
-
- - - - -
- line -
-
-
- - - - -
- linkedinIn -
-
-
- - - - -
- linkedin -
-
-
- - - - -
- linode -
-
-
- - - - -
- linux -
-
-
- - - - -
- lyft -
-
-
- - - - -
- magento -
-
-
- - - - -
- mailchimp -
-
-
- - - - -
- mandalorian -
-
-
- - - - -
- markdown -
-
-
- - - - -
- mastodon -
-
-
- - - - -
- maxcdn -
-
-
- - - - -
- medapps -
-
-
- - - - -
- mediumM -
-
-
- - - - -
- medium -
-
-
- - - - -
- medrt -
-
-
- - - - -
- meetup -
-
-
- - - - -
- megaport -
-
-
- - - - -
- mendeley -
-
-
- - - - -
- microsoft -
-
-
- - - - -
- mix -
-
-
- - - - -
- mixcloud -
-
-
- - - - -
- mizuni -
-
-
- - - - -
- modx -
-
-
- - - - -
- monero -
-
-
- - - - -
- napster -
-
-
- - - - -
- neos -
-
-
- - - - -
- nimblr -
-
-
- - - - -
- nintendoSwitch -
-
-
- - - - -
- nodeJs -
-
-
- - - - -
- node -
-
-
- - - - -
- npm -
-
-
- - - - -
- ns8 -
-
-
- - - - -
- nutritionix -
-
-
- - - - -
- odnoklassnikiSquare -
-
-
- - - - -
- odnoklassniki -
-
-
- - - - -
- oldRepublic -
-
-
- - - - -
- opencart -
-
-
- - - - -
- openid -
-
-
- - - - -
- opera -
-
-
- - - - -
- optinMonster -
-
-
- - - - -
- osi -
-
-
- - - - -
- page4 -
-
-
- - - - -
- pagelines -
-
-
- - - - -
- palfed -
-
-
- - - - -
- patreon -
-
-
- - - - -
- paypal -
-
-
- - - - -
- pennyArcade -
-
-
- - - - -
- periscope -
-
-
- - - - -
- phabricator -
-
-
- - - - -
- phoenixFramework -
-
-
- - - - -
- phoenixSquadron -
-
-
- - - - -
- php -
-
-
- - - - -
- piedPiperAlt -
-
-
- - - - -
- piedPiperHat -
-
-
- - - - -
- piedPiperPp -
-
-
- - - - -
- piedPiper -
-
-
- - - - -
- pinterestP -
-
-
- - - - -
- pinterestSquare -
-
-
- - - - -
- pinterest -
-
-
- - - - -
- playstation -
-
-
- - - - -
- productHunt -
-
-
- - - - -
- pushed -
-
-
- - - - -
- python -
-
-
- - - - -
- qq -
-
-
- - - - -
- quinscape -
-
-
- - - - -
- quora -
-
-
- - - - -
- rProject -
-
-
- - - - -
- raspberryPi -
-
-
- - - - -
- ravelry -
-
-
- - - - -
- react -
-
-
- - - - -
- reacteurope -
-
-
- - - - -
- readme -
-
-
- - - - -
- rebel -
-
-
- - - - -
- redRiver -
-
-
- - - - -
- redditAlien -
-
-
- - - - -
- redditSquare -
-
-
- - - - -
- reddit -
-
-
- - - - -
- redhat -
-
-
- - - - -
- renren -
-
-
- - - - -
- replyd -
-
-
- - - - -
- researchgate -
-
-
- - - - -
- resolving -
-
-
- - - - -
- rev -
-
-
- - - - -
- rocketchat -
-
-
- - - - -
- rockrms -
-
-
- - - - -
- safari -
-
-
- - - - -
- salesforce -
-
-
- - - - -
- sass -
-
-
- - - - -
- schlix -
-
-
- - - - -
- scribd -
-
-
- - - - -
- searchengin -
-
-
- - - - -
- sellcast -
-
-
- - - - -
- sellsy -
-
-
- - - - -
- servicestack -
-
-
- - - - -
- shirtsinbulk -
-
-
- - - - -
- shopware -
-
-
- - - - -
- simplybuilt -
-
-
- - - - -
- sistrix -
-
-
- - - - -
- sith -
-
-
- - - - -
- sketch -
-
-
- - - - -
- skyatlas -
-
-
- - - - -
- skype -
-
-
- - - - -
- slackHash -
-
-
- - - - -
- slack -
-
-
- - - - -
- slideshare -
-
-
- - - - -
- snapchatGhost -
-
-
- - - - -
- snapchatSquare -
-
-
- - - - -
- snapchat -
-
-
- - - - -
- soundcloud -
-
-
- - - - -
- sourcetree -
-
-
- - - - -
- speakap -
-
-
- - - - -
- speakerDeck -
-
-
- - - - -
- spotify -
-
-
- - - - -
- squarespace -
-
-
- - - - -
- stackExchange -
-
-
- - - - -
- stackOverflow -
-
-
- - - - -
- stackpath -
-
-
- - - - -
- staylinked -
-
-
- - - - -
- steamSquare -
-
-
- - - - -
- steamSymbol -
-
-
- - - - -
- steam -
-
-
- - - - -
- stickerMule -
-
-
- - - - -
- strava -
-
-
- - - - -
- stripeS -
-
-
- - - - -
- stripe -
-
-
- - - - -
- studiovinari -
-
-
- - - - -
- stumbleuponCircle -
-
-
- - - - -
- stumbleupon -
-
-
- - - - -
- superpowers -
-
-
- - - - -
- supple -
-
-
- - - - -
- suse -
-
-
- - - - -
- symfony -
-
-
- - - - -
- teamspeak -
-
-
- - - - -
- telegramPlane -
-
-
- - - - -
- telegram -
-
-
- - - - -
- tencentWeibo -
-
-
- - - - -
- theRedYeti -
-
-
- - - - -
- themeco -
-
-
- - - - -
- themeisle -
-
-
- - - - -
- thinkPeaks -
-
-
- - - - -
- tradeFederation -
-
-
- - - - -
- trello -
-
-
- - - - -
- tripadvisor -
-
-
- - - - -
- tumblrSquare -
-
-
- - - - -
- tumblr -
-
-
- - - - -
- twitch -
-
-
- - - - -
- twitterSquare -
-
-
- - - - -
- twitter -
-
-
- - - - -
- typo3 -
-
-
- - - - -
- uber -
-
-
- - - - -
- ubuntu -
-
-
- - - - -
- uikit -
-
-
- - - - -
- uniregistry -
-
-
- - - - -
- untappd -
-
-
- - - - -
- ups -
-
-
- - - - -
- usps -
-
-
- - - - -
- usb -
-
-
- - - - -
- ussunnah -
-
-
- - - - -
- vaadin -
-
-
- - - - -
- viacoin -
-
-
- - - - -
- viadeoSquare -
-
-
- - - - -
- viadeo -
-
-
- - - - -
- viber -
-
-
- - - - -
- vimeoSquare -
-
-
- - - - -
- vimeoV -
-
-
- - - - -
- vimeo -
-
-
- - - - -
- vine -
-
-
- - - - -
- vk -
-
-
- - - - -
- vnv -
-
-
- - - - -
- vuejs -
-
-
- - - - -
- waze -
-
-
- - - - -
- weebly -
-
-
- - - - -
- weibo -
-
-
- - - - -
- weixin -
-
-
- - - - -
- whatsappSquare -
-
-
- - - - -
- whatsapp -
-
-
- - - - -
- whmcs -
-
-
- - - - -
- wikipediaW -
-
-
- - - - -
- windows -
-
-
- - - - -
- wix -
-
-
- - - - -
- wizardsOfTheCoast -
-
-
- - - - -
- wolfPackBattalion -
-
-
- - - - -
- wordpressSimple -
-
-
- - - - -
- wordpress -
-
-
- - - - -
- wpbeginner -
-
-
- - - - -
- wpexplorer -
-
-
- - - - -
- wpforms -
-
-
- - - - -
- wpressr -
-
-
- - - - -
- xbox -
-
-
- - - - -
- xingSquare -
-
-
- - - - -
- xing -
-
-
- - - - -
- yCombinator -
-
-
- - - - -
- yahoo -
-
-
- - - - -
- yammer -
-
-
- - - - -
- yandexInternational -
-
-
- - - - -
- yandex -
-
-
- - - - -
- yarn -
-
-
- - - - -
- yelp -
-
-
- - - - -
- yoast -
-
-
- - - - -
- youtubeSquare -
-
-
- - - - -
- youtube -
-
-
- - - - -
- zhihu -
-
-
-
- -
-
-`; diff --git a/tests/unit/views/icons/__snapshots__/Flags.spec.js.snap b/tests/unit/views/icons/__snapshots__/Flags.spec.js.snap deleted file mode 100644 index be5991cb..00000000 --- a/tests/unit/views/icons/__snapshots__/Flags.spec.js.snap +++ /dev/null @@ -1,21472 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Flags.vue renders correctly 1`] = ` -
- - - - Flags - - - - - - - - - - -
- AD -
-
- - - -
- AE -
-
- - - -
- AF -
-
- - - -
- AG -
-
- - - -
- AI -
-
- - - -
- AL -
-
- - - -
- AM -
-
- - - -
- AO -
-
- - - -
- AR -
-
- - - -
- AS -
-
- - - -
- AT -
-
- - - -
- AU -
-
- - - -
- AW -
-
- - - -
- AX -
-
- - - -
- AZ -
-
- - - -
- BA -
-
- - - -
- BB -
-
- - - -
- BD -
-
- - - -
- BE -
-
- - - -
- BF -
-
- - - -
- BG -
-
- - - -
- BH -
-
- - - -
- BI -
-
- - - -
- BJ -
-
- - - -
- BL -
-
- - - -
- BM -
-
- - - -
- BN -
-
- - - -
- BO -
-
- - - -
- BR -
-
- - - -
- BS -
-
- - - -
- BT -
-
- - - -
- BV -
-
- - - -
- BW -
-
- - - -
- BY -
-
- - - -
- BZ -
-
- - - -
- CA -
-
- - - -
- CD -
-
- - - -
- CF -
-
- - - -
- CG -
-
- - - -
- CH -
-
- - - -
- CI -
-
- - - -
- CK -
-
- - - -
- CL -
-
- - - -
- CM -
-
- - - -
- CN -
-
- - - -
- CO -
-
- - - -
- CR -
-
- - - -
- CU -
-
- - - -
- CV -
-
- - - -
- CW -
-
- - - -
- CX -
-
- - - -
- CY -
-
- - - -
- CZ -
-
- - - -
- DE -
-
- - - -
- DJ -
-
- - - -
- DK -
-
- - - -
- DM -
-
- - - -
- CC -
-
- - - -
- DZ -
-
- - - -
- DO -
-
- - - -
- EC -
-
- - - -
- EE -
-
- - - -
- EG -
-
- - - -
- EH -
-
- - - -
- ER -
-
- - - -
- ESCT -
-
- - - -
- ES -
-
- - - -
- ET -
-
- - - -
- EU -
-
- - - -
- FI -
-
- - - -
- FJ -
-
- - - -
- FK -
-
- - - -
- FM -
-
- - - -
- FO -
-
- - - -
- FR -
-
- - - -
- GA -
-
- - - -
- GBENG -
-
- - - -
- GBNIR -
-
- - - -
- GBSCT -
-
- - - -
- GBWLS -
-
- - - -
- GB -
-
- - - -
- GD -
-
- - - -
- GE -
-
- - - -
- GF -
-
- - - -
- GG -
-
- - - -
- GH -
-
- - - -
- GI -
-
- - - -
- GL -
-
- - - -
- GM -
-
- - - -
- GN -
-
- - - -
- GP -
-
- - - -
- GR -
-
- - - -
- GS -
-
- - - -
- GT -
-
- - - -
- GU -
-
- - - -
- GW -
-
- - - -
- GY -
-
- - - -
- HK -
-
- - - -
- HM -
-
- - - -
- HN -
-
- - - -
- HR -
-
- - - -
- HT -
-
- - - -
- HU -
-
- - - -
- ID -
-
- - - -
- IE -
-
- - - -
- IL -
-
- - - -
- IM -
-
- - - -
- IN -
-
- - - -
- IO -
-
- - - -
- IR -
-
- - - -
- IS -
-
- - - -
- IT -
-
- - - -
- JE -
-
- - - -
- JM -
-
- - - -
- JO -
-
- - - -
- JP -
-
- - - -
- KE -
-
- - - -
- KG -
-
- - - -
- KH -
-
- - - -
- KI -
-
- - - -
- KM -
-
- - - -
- KN -
-
- - - -
- KP -
-
- - - -
- KR -
-
- - - -
- KW -
-
- - - -
- KY -
-
- - - -
- KZ -
-
- - - -
- LA -
-
- - - -
- LB -
-
- - - -
- LC -
-
- - - -
- LI -
-
- - - -
- LK -
-
- - - -
- LR -
-
- - - -
- LS -
-
- - - -
- LT -
-
- - - -
- LU -
-
- - - -
- LV -
-
- - - -
- LY -
-
- - - -
- MA -
-
- - - -
- MC -
-
- - - -
- MD -
-
- - - -
- ME -
-
- - - -
- MF -
-
- - - -
- MG -
-
- - - -
- MH -
-
- - - -
- MK -
-
- - - -
- ML -
-
- - - -
- MM -
-
- - - -
- MN -
-
- - - -
- MO -
-
- - - -
- MP -
-
- - - -
- MR -
-
- - - -
- MS -
-
- - - -
- MT -
-
- - - -
- MU -
-
- - - -
- MV -
-
- - - -
- MW -
-
- - - -
- MX -
-
- - - -
- MY -
-
- - - -
- MZ -
-
- - - -
- NA -
-
- - - -
- NC -
-
- - - -
- NE -
-
- - - -
- NF -
-
- - - -
- NG -
-
- - - -
- NI -
-
- - - -
- NL -
-
- - - -
- NO -
-
- - - -
- NP -
-
- - - -
- NR -
-
- - - -
- NU -
-
- - - -
- NZ -
-
- - - -
- OM -
-
- - - -
- PA -
-
- - - -
- PE -
-
- - - -
- PF -
-
- - - -
- PG -
-
- - - -
- PH -
-
- - - -
- PK -
-
- - - -
- PL -
-
- - - -
- PM -
-
- - - -
- PN -
-
- - - -
- PR -
-
- - - -
- PS -
-
- - - -
- PT -
-
- - - -
- PW -
-
- - - -
- PY -
-
- - - -
- RE -
-
- - - -
- RO -
-
- - - -
- RS -
-
- - - -
- RU -
-
- - - -
- RW -
-
- - - -
- SA -
-
- - - -
- SB -
-
- - - -
- SC -
-
- - - -
- SD -
-
- - - -
- SE -
-
- - - -
- SG -
-
- - - -
- SH -
-
- - - -
- SI -
-
- - - -
- SJ -
-
- - - -
- SK -
-
- - - -
- SL -
-
- - - -
- SM -
-
- - - -
- SN -
-
- - - -
- SO -
-
- - - -
- SR -
-
- - - -
- SS -
-
- - - -
- ST -
-
- - - -
- SV -
-
- - - -
- SX -
-
- - - -
- SY -
-
- - - -
- SZ -
-
- - - -
- TC -
-
- - - -
- TD -
-
- - - -
- TF -
-
- - - -
- TG -
-
- - - -
- TH -
-
- - - -
- TJ -
-
- - - -
- TK -
-
- - - -
- TL -
-
- - - -
- TM -
-
- - - -
- TN -
-
- - - -
- TO -
-
- - - -
- TR -
-
- - - -
- TT -
-
- - - -
- TV -
-
- - - -
- TW -
-
- - - -
- TZ -
-
- - - -
- UA -
-
- - - -
- UG -
-
- - - -
- UM -
-
- - - -
- UN -
-
- - - -
- US -
-
- - - -
- UY -
-
- - - -
- UZ -
-
- - - -
- VA -
-
- - - -
- VC -
-
- - - -
- VE -
-
- - - -
- VI -
-
- - - -
- VG -
-
- - - -
- VN -
-
- - - -
- VU -
-
- - - -
- WF -
-
- - - -
- WS -
-
- - - -
- XK -
-
- - - -
- YE -
-
- - - -
- YT -
-
- - - -
- ZA -
-
- - - -
- ZM -
-
- - - -
- ZW -
-
-
-
-
-
-`; diff --git a/tests/unit/views/notifications/__snapshots__/Alerts.spec.js.snap b/tests/unit/views/notifications/__snapshots__/Alerts.spec.js.snap deleted file mode 100644 index 4c234517..00000000 --- a/tests/unit/views/notifications/__snapshots__/Alerts.spec.js.snap +++ /dev/null @@ -1,471 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Alerts.vue renders correctly 1`] = ` - - - - - - - - Bootstrap Alert - - - - - - -
-

- - - Primary Alert - - - - Secondary Alert - - - - Success Alert - - - - Danger Alert - - - - Warning Alert - - - - Info Alert - - - - Light Alert - - - - Dark Alert - -

-
-
-
- - - - - - Alert - - - use - - .alert-link - - to provide links - - - - -
- - - Primary Alert with - - an example link - - . - - - - - - Secondary Alert with - - an example link - - . - - - - - - Success Alert with - - an example link - - . - - - - - - Danger Alert with - - an example link - - . - - - - - - Warning Alert with - - an example link - - . - - - - - - Info Alert with - - an example link - - . - - - - - - Light Alert with - - an example link - - . - - - - - - Dark Alert with - - - an example link - - - . - - -
-
-
-
- - - - - - Alerts - - with additional content - - - - - -

- Well done! -

- -

- - Aww yeah, you successfully read this important alert message. - This example text is going to run a bit longer so that you can see - how spacing within an alert works with this kind of content. - -

- -
- -

- - Whenever you need to, be sure to use margin utilities to keep things nice and tidy. - -

-
-
-
-
- - - - - - Alerts - - - dismissible - - - - - - - Dismissible Alert! - - - - - - Dismissible Alert with custom button! - - - - Close - - - - - - - Show dismissible alerts - - - - - - - - - Alerts - - - auto dismissible - - - - -
- - - Alert will dismiss after - - - 10 - - seconds... - - - - - - Alert will dismiss after 10 seconds... - - - - - - - Show alert with timer - - -
-
-
-
-
-`; diff --git a/tests/unit/views/notifications/__snapshots__/Badges.spec.js.snap b/tests/unit/views/notifications/__snapshots__/Badges.spec.js.snap deleted file mode 100644 index d85be661..00000000 --- a/tests/unit/views/notifications/__snapshots__/Badges.spec.js.snap +++ /dev/null @@ -1,354 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Badges.vue renders correctly 1`] = ` -
-
-
- -
- - - - Bootstrap Badge - - - -
- -
-

- Example heading - - New - -

- -

- Example heading - - New - -

- -

- Example heading - - New - -

- -
- Example heading - - New - -
- -
- Example heading - - New - -
-
- -
- -
- -
-
- -
-
- -
- - Badge - - - contextual variations - -
- -
- - Primary - - - - Secondary - - - - Success - - - - Danger - - - - Warning - - - - Info - - - - Light - - - - Dark - -
- -
- -
- -
- - Badge - - - shape="pill" - -
- -
- - Primary - - - - Secondary - - - - Success - - - - Danger - - - - Warning - - - - Info - - - - Light - - - - Dark - -
- -
- -
- -
- - Badge - - - actionable - -
- - - -
-
-
-`; diff --git a/tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap b/tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap deleted file mode 100644 index 8f9f6890..00000000 --- a/tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap +++ /dev/null @@ -1,338 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Modals.vue renders correctly 1`] = ` -
-
- - - - - - Bootstrap Modals - - - - - - - - Launch demo modal - - - - - - Launch large modal - - - - - - Launch small modal - - - -
- - - - Launch primary modal - - - - - - Launch success modal - - - - - - Launch warning modal - - - - - - Launch danger modal - - - - - - Launch info modal - - - - - - Launch dark modal - - -
-
-
-
-
- - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - - -
-`; diff --git a/tests/unit/views/pages/__snapshots__/Login.spec.js.snap b/tests/unit/views/pages/__snapshots__/Login.spec.js.snap deleted file mode 100644 index 9fca7a9b..00000000 --- a/tests/unit/views/pages/__snapshots__/Login.spec.js.snap +++ /dev/null @@ -1,122 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Login.vue renders correctly 1`] = ` - - - - - - - -

- Login -

- -

- Sign In to your account -

- -
- type="text" - /> - -
- type="password" - /> - - - - - Login - - - - - - Forgot password? - - - - - - - - -

- Sign up -

- -

- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. -

- - - - Register Now! - - -
- - - - -`; diff --git a/tests/unit/views/pages/__snapshots__/Page404.spec.js.snap b/tests/unit/views/pages/__snapshots__/Page404.spec.js.snap deleted file mode 100644 index 49d8bde4..00000000 --- a/tests/unit/views/pages/__snapshots__/Page404.spec.js.snap +++ /dev/null @@ -1,51 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Page404.vue renders correctly 1`] = ` - - - -
-
-

- 404 -

- -

- Oops! You're lost. -

- -

- The page you are looking for was not found. -

-
- -
- type="text" - /> -
- - - -`; diff --git a/tests/unit/views/pages/__snapshots__/Page500.spec.js.snap b/tests/unit/views/pages/__snapshots__/Page500.spec.js.snap deleted file mode 100644 index 427954e0..00000000 --- a/tests/unit/views/pages/__snapshots__/Page500.spec.js.snap +++ /dev/null @@ -1,47 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Page500.vue renders correctly 1`] = ` - - - -
-

- 500 -

- -

- Houston, we have a problem! -

- -

- The page you are looking for is temporarily unavailable. -

-
- -
- type="text" - /> - - - -`; diff --git a/tests/unit/views/pages/__snapshots__/Register.spec.js.snap b/tests/unit/views/pages/__snapshots__/Register.spec.js.snap deleted file mode 100644 index 892cfced..00000000 --- a/tests/unit/views/pages/__snapshots__/Register.spec.js.snap +++ /dev/null @@ -1,132 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Register.vue renders correctly 1`] = ` - - - - - - -

- Register -

- -

- Create your account -

- -
- type="text" - /> - - - -
- type="password" - /> - -
- type="password" - /> - - - Create Account - - - - - - - - - - Facebook - - - - - - - - Twitter - - - - - - - - - -`; diff --git a/tests/unit/views/theme/__snapshots__/Colors.spec.js.snap b/tests/unit/views/theme/__snapshots__/Colors.spec.js.snap deleted file mode 100644 index 7a11c3f5..00000000 --- a/tests/unit/views/theme/__snapshots__/Colors.spec.js.snap +++ /dev/null @@ -1,852 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Colors.vue renders correctly 1`] = ` -
-
- -
- - Theme colors - -
- -
-
-
-
- -
- Brand Primary Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand Secondary Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand Success Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand Danger Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand Warning Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand Info Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand Light Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand Dark Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
-
-
- -
- -
- -
- - Grays - -
- -
-
-
-
- -
- Brand 100 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand 200 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand 300 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand 400 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand 500 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand 600 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand 700 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand 800 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
- -
-
- -
- Brand 900 Color -
- - - - - - - - - - - - - - - -
- HEX: - - #ffffff -
- RGB: - - rgb(255, 255, 255) -
-
-
-
- -
-
-`;