diff --git a/CHANGELOG.md b/CHANGELOG.md
index bd78061e..94e649f7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,41 @@
## [CoreUI for Vue.js](./README.md) version `changelog`
+##### `v2.1.0`
+- feat(SidebarNav): navLink `attributes` - optional JS object with valid JS API naming:
+ - attributes: `rel`, `target`, `hidden`, `disabled`, etc...
+ - starting with `@coreui/coreui ^2.1.4`, `@coreui/vue ^2.1.0`
+ - item example(`./src/_nav.js`):
+```
+{
+ name: 'Disabled',
+ url: '/disabled',
+ icon: 'icon-ban',
+ attributes: { disabled: true },
+},
+{
+ name: 'Try CoreUI PRO',
+ url: 'https://coreui.io/pro/react/',
+ icon: 'cui-layers icons',
+ variant: 'danger',
+ attributes: { target: '_blank', rel: "noopener" },
+},
+```
+- test: e2e and snapshots update
+- chore: update `@coreui/coreui` to `^2.1.4`
+- chore: update `@coreui/vue` to `^2.1.0`
+- chore: update `core-js` to `^2.6.0`
+- chore: update `css-vars-ponyfill` to `^1.15.3`
+- chore: update `vue` to `^2.5.19`
+- chore: update `vue-router` to `^3.0.2"
+- chore: update `vue-template-compiler` to `^2.5.19`
+- chore: update `@vue/cli-plugin-babel` to `^3.2.0`
+- chore: update `@vue/cli-plugin-e2e-nightwatch` to `^3.2.0`
+- chore: update `@vue/cli-plugin-eslint` to `^3.2.1`
+- chore: update `@vue/cli-plugin-unit-jest` to `^3.2.0`
+- chore: update `@vue/cli-service` to `^3.2.0`
+- chore: update `@vue/test-utils` to `^1.0.0-beta.27`
+- chore: update `node-sass` to `^4.11.0`
+
##### `v2.0.3`
- test(init): update Tables snapshot
- test(e2e): add `aside-menu-*-show` testing
diff --git a/package.json b/package.json
index 5349b259..59a5fe5f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@coreui/coreui-free-vue-admin-template",
- "version": "2.0.3",
+ "version": "2.1.0",
"description": "Open Source Bootstrap Admin Template",
"author": "Łukasz Holeczek",
"homepage": "http://coreui.io",
@@ -14,38 +14,38 @@
"test:e2e": "vue-cli-service test:e2e"
},
"dependencies": {
- "@coreui/coreui": "^2.1.0",
+ "@coreui/coreui": "^2.1.4",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
"@coreui/icons": "0.3.0",
- "@coreui/vue": "^2.0.2",
+ "@coreui/vue": "^2.1.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"chart.js": "^2.7.3",
- "core-js": "^2.5.7",
- "css-vars-ponyfill": "^1.15.0",
+ "core-js": "^2.6.0",
+ "css-vars-ponyfill": "^1.15.3",
"flag-icon-css": "^3.2.0",
"font-awesome": "^4.7.0",
"perfect-scrollbar": "^1.4.0",
"simple-line-icons": "^2.4.1",
- "vue": "^2.5.17",
+ "vue": "^2.5.19",
"vue-chartjs": "^3.4.0",
"vue-perfect-scrollbar": "^0.1.0",
- "vue-router": "^3.0.1"
+ "vue-router": "^3.0.2"
},
"devDependencies": {
- "@vue/cli-plugin-babel": "^3.1.1",
- "@vue/cli-plugin-e2e-nightwatch": "^3.1.1",
- "@vue/cli-plugin-eslint": "^3.1.5",
- "@vue/cli-plugin-unit-jest": "^3.1.1",
- "@vue/cli-service": "^3.1.4",
- "@vue/test-utils": "^1.0.0-beta.25",
+ "@vue/cli-plugin-babel": "^3.2.0",
+ "@vue/cli-plugin-e2e-nightwatch": "^3.2.0",
+ "@vue/cli-plugin-eslint": "^3.2.1",
+ "@vue/cli-plugin-unit-jest": "^3.2.0",
+ "@vue/cli-service": "^3.2.0",
+ "@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"growl": "^1.10.5",
"https-proxy-agent": "^2.2.1",
- "node-sass": "^4.10.0",
+ "node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
- "vue-template-compiler": "^2.5.17"
+ "vue-template-compiler": "^2.5.19"
},
"browserslist": [
"> 1%",
diff --git a/src/_nav.js b/src/_nav.js
index 00378de3..54802883 100644
--- a/src/_nav.js
+++ b/src/_nav.js
@@ -256,18 +256,30 @@ export default {
}
]
},
+ {
+ name: 'Disabled',
+ url: '/dashboard',
+ icon: 'icon-ban',
+ badge: {
+ variant: 'secondary',
+ text: 'NEW'
+ },
+ attributes: { disabled: true },
+ },
{
name: 'Download CoreUI',
url: 'http://coreui.io/vue/',
icon: 'icon-cloud-download',
class: 'mt-auto',
- variant: 'success'
+ variant: 'success',
+ attributes: { target: '_blank', rel: 'noopener' }
},
{
name: 'Try CoreUI PRO',
url: 'http://coreui.io/pro/vue/',
icon: 'icon-layers',
- variant: 'danger'
- }
+ variant: 'danger',
+ attributes: { target: '_blank', rel: 'noopener' }
+ },
]
}
diff --git a/tests/e2e/specs/test.js b/tests/e2e/specs/test.js
index 752aff1d..03669a06 100644
--- a/tests/e2e/specs/test.js
+++ b/tests/e2e/specs/test.js
@@ -99,7 +99,7 @@ module.exports = {
browser
.pause(500)
- .click('/html/body/div/div/div/nav/section/ul/li[1]/div/a', function (response) {
+ .click('/html/body/div/div/div/nav/section/ul/li[1]/a', function (response) {
console.log('response', typeof response)
this.assert.cssClassNotPresent('/html/body', 'sidebar-show')
})
diff --git a/tests/unit/containers/__snapshots__/DefaultAside.spec.js.snap b/tests/unit/containers/__snapshots__/DefaultAside.spec.js.snap
index d0f38a0f..93a6093b 100644
--- a/tests/unit/containers/__snapshots__/DefaultAside.spec.js.snap
+++ b/tests/unit/containers/__snapshots__/DefaultAside.spec.js.snap
@@ -1,10 +1,10 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`DefaultAside.vue renders correctly 1`] = `
-
-
-
-
+
-
-
+
-
On-line
-
+
-
+
-
-
+
-
Palo Alto, CA
-
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
`;
diff --git a/tests/unit/containers/__snapshots__/DefaultContainer.spec.js.snap b/tests/unit/containers/__snapshots__/DefaultContainer.spec.js.snap
index 929bd638..28f808c1 100644
--- a/tests/unit/containers/__snapshots__/DefaultContainer.spec.js.snap
+++ b/tests/unit/containers/__snapshots__/DefaultContainer.spec.js.snap
@@ -14,7 +14,7 @@ exports[`DefaultContainer.vue renders correctly 1`] = `
mobile="true"
/>
-
-
+
-
-
Dashboard
-
+
-
Users
-
+
-
Settings
-
-
+
+
-
-
-
5
-
-
+
+
-
-
+
-
-
+
-
+
diff --git a/tests/unit/containers/__snapshots__/DefaultHeaderDropdownAccnt.spec.js.snap b/tests/unit/containers/__snapshots__/DefaultHeaderDropdownAccnt.spec.js.snap
index 7033a750..5482489c 100644
--- a/tests/unit/containers/__snapshots__/DefaultHeaderDropdownAccnt.spec.js.snap
+++ b/tests/unit/containers/__snapshots__/DefaultHeaderDropdownAccnt.spec.js.snap
@@ -15,16 +15,16 @@ exports[`DefaultHeaderDropdownAccnt.vue renders correctly 1`] = `
\\
-
Account
-
+
-
Updates
-
42
-
-
+
+
-
Messages
-
42
-
-
+
+
-
Tasks
-
42
-
-
+
+
-
Comments
-
42
-
-
+
+
-
Settings
-
+
-
Profile
-
+
-
Settings
-
+
-
Payments
-
42
-
-
+
+
-
Projects
-
42
-
-
+
+
-
-
Lock Account
-
+
-
Logout
-
+
`;
diff --git a/tests/unit/views/__snapshots__/Charts.spec.js.snap b/tests/unit/views/__snapshots__/Charts.spec.js.snap
index 7204dbe5..4d041aed 100644
--- a/tests/unit/views/__snapshots__/Charts.spec.js.snap
+++ b/tests/unit/views/__snapshots__/Charts.spec.js.snap
@@ -4,12 +4,12 @@ exports[`Charts.vue renders correctly 1`] = `
-
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
-
+
+
`;
diff --git a/tests/unit/views/__snapshots__/Dashboard.spec.js.snap b/tests/unit/views/__snapshots__/Dashboard.spec.js.snap
index e479a0ac..f1df1325 100644
--- a/tests/unit/views/__snapshots__/Dashboard.spec.js.snap
+++ b/tests/unit/views/__snapshots__/Dashboard.spec.js.snap
@@ -4,15 +4,15 @@ exports[`Dashboard.vue renders correctly 1`] = `
-
-
-
-
-
-
Action
-
+
-
Another action
-
+
-
Something else here...
-
+
-
Disabled action
-
-
+
+
Members online
-
+
-
-
-
+
+
-
-
-
-
-
Action
-
+
-
Another action
-
+
-
Something else here...
-
+
-
Disabled action
-
-
+
+
Members online
-
+
-
-
-
+
+
-
-
-
-
-
Action
-
+
-
Another action
-
+
-
Something else here...
-
+
-
Disabled action
-
-
+
+
Members online
-
+
-
-
-
+
+
-
-
-
-
-
Action
-
+
-
Another action
-
+
-
Something else here...
-
+
-
Disabled action
-
-
+
+
Members online
-
+
-
-
-
-
+
+
+
-
-
-
@@ -424,14 +424,14 @@ exports[`Dashboard.vue renders correctly 1`] = `
>
November 2017
-
+
-
-
-
+
-
-
-
Day
-
+
-
Month
-
+
-
Year
-
-
-
-
-
+
+
+
+
+
-
-
-
@@ -510,7 +510,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
29.703 Users (40%)
-
-
+
-
@@ -534,7 +534,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
24.093 Users (20%)
-
-
+
-
@@ -558,7 +558,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
78.706 Views (60%)
-
-
+
-
@@ -582,7 +582,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
22.123 Users (80%)
-
-
+
-
@@ -606,22 +606,22 @@ exports[`Dashboard.vue renders correctly 1`] = `
Average Rate (40.15%)
-
-
-
+
+
-
+
-
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
-
+
+
-
-
-
-
-
-
-
@@ -913,7 +913,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
class="chart-wrapper"
style="top: -10px;"
>
-
-
+
-
@@ -948,7 +948,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
class="chart-wrapper"
style="top: -10px;"
>
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
New clients
-
-
+
Recurring clients
-
+
-
-
-
@@ -1305,7 +1305,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
class="chart-wrapper"
style="top: -10px;"
>
-
-
+
-
@@ -1340,7 +1340,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
class="chart-wrapper"
style="top: -10px;"
>
-
-
-
+
+
-
-
-
-
-
-
-
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
`;
diff --git a/tests/unit/views/__snapshots__/Widgets.spec.js.snap b/tests/unit/views/__snapshots__/Widgets.spec.js.snap
index 0d06576c..4ecd7ffb 100644
--- a/tests/unit/views/__snapshots__/Widgets.spec.js.snap
+++ b/tests/unit/views/__snapshots__/Widgets.spec.js.snap
@@ -4,15 +4,15 @@ exports[`Widgets.vue renders correctly 1`] = `
-
-
-
-
Lorem ipsum dolor sit amet enim.
-
-
+
+
-
-
-
Lorem ipsum dolor sit amet enim.
-
-
+
+
-
-
-
Lorem ipsum dolor sit amet enim.
-
-
+
+
-
-
-
Lorem ipsum dolor sit amet enim.
-
-
-
+
+
+
-
-
-
-
Lorem ipsum dolor sit amet enim.
-
-
+
+
-
-
-
Lorem ipsum dolor sit amet enim.
-
-
+
+
-
-
-
Lorem ipsum dolor sit amet enim.
-
-
+
+
-
-
-
Lorem ipsum dolor sit amet enim.
-
-
-
+
+
+
-
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
+
-
-
+
-
-
+
+
-
-
-
Income
-
+
-
-
+
-
-
+
+
-
-
-
Income
-
+
-
-
+
-
-
+
+
-
-
-
Income
-
+
-
-
+
-
-
-
+
+
+
-
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
+
+
+
-
-
-
Income
-
-
-
-
+
+
+
+
-
-
-
@@ -1120,9 +1120,9 @@ exports[`Widgets.vue renders correctly 1`] = `
-
+
-
-
@@ -1179,9 +1179,9 @@ exports[`Widgets.vue renders correctly 1`] = `
-
+
-
-
@@ -1238,9 +1238,9 @@ exports[`Widgets.vue renders correctly 1`] = `
-
+
-
-
@@ -1297,14 +1297,14 @@ exports[`Widgets.vue renders correctly 1`] = `
-
-
+
+
-
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
-
+
+
-
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
-
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Forms.spec.js.snap b/tests/unit/views/base/__snapshots__/Forms.spec.js.snap
index 048d57d1..6a26c845 100644
--- a/tests/unit/views/base/__snapshots__/Forms.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Forms.spec.js.snap
@@ -4,14 +4,14 @@ exports[`Forms.vue renders correctly 1`] = `
-
-
-
-
-
-
@@ -48,23 +48,23 @@ exports[`Forms.vue renders correctly 1`] = `
Name
-
-
-
-
+
+
+
-
-
-
@@ -74,23 +74,23 @@ exports[`Forms.vue renders correctly 1`] = `
Credit Card Number
-
-
-
-
+
+
+
-
-
-
@@ -100,20 +100,20 @@ exports[`Forms.vue renders correctly 1`] = `
Month
-
-
-
+
+
-
-
@@ -123,20 +123,20 @@ exports[`Forms.vue renders correctly 1`] = `
Year
-
-
-
+
+
-
-
@@ -146,22 +146,22 @@ exports[`Forms.vue renders correctly 1`] = `
CVV/CVC
-
-
-
-
-
-
+
+
+
+
+
-
-
-
@@ -190,14 +190,14 @@ exports[`Forms.vue renders correctly 1`] = `
Company
-
-
+
-
@@ -207,14 +207,14 @@ exports[`Forms.vue renders correctly 1`] = `
VAT
-
-
+
-
@@ -224,21 +224,21 @@ exports[`Forms.vue renders correctly 1`] = `
Street
-
-
+
-
-
-
@@ -248,19 +248,19 @@ exports[`Forms.vue renders correctly 1`] = `
City
-
-
-
+
+
-
-
@@ -270,16 +270,16 @@ exports[`Forms.vue renders correctly 1`] = `
Postal Code
-
-
-
-
+
+
+
-
@@ -289,24 +289,24 @@ exports[`Forms.vue renders correctly 1`] = `
Country
-
-
-
-
-
+
+
+
+
-
-
-
-
-
+
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
+
-
-
-
Option 1
-
+
-
Option 2
-
+
-
Option 3
-
-
-
+
+
+
-
-
-
Option 1
-
+
-
Option 2
-
+
-
Option 3
-
-
-
+
+
+
-
-
-
-
+
+
-
-
-
-
+
+
-
-
-
-
+
+
-
-
@@ -914,42 +914,42 @@ exports[`Forms.vue renders correctly 1`] = `
Option 3
-
-
+
+
-
-
-
+
-
-
-
+
-
Submit
-
+
-
Reset
-
+
-
-
+
+
-
-
-
-
-
+
-
Submit
-
+
-
Reset
-
+
-
-
+
+
-
-
-
-
+
-
-
+
-
-
-
+
-
Submit
-
+
-
Reset
-
+
-
-
+
+
-
-
-
+
-
-
+
-
-
-
+
-
Submit
-
+
-
Reset
-
+
-
-
+
+
-
-
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
-
Login
-
+
-
Reset
-
+
-
+
-
-
-
-
+
-
-
-
+
-
-
-
+
-
Submit
-
+
-
Reset
-
+
-
-
-
+
+
+
-
-
-
-
-
-
+
-
Input is valid.
-
-
+
+
-
@@ -1649,25 +1649,25 @@ exports[`Forms.vue renders correctly 1`] = `
type="text"
/>
-
Please provide a valid information.
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
Input is not required.
-
-
+
+
-
-
-
Input provided.
-
+
-
Please provide a required input.
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
-
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
+
+
-
-
-
.00
-
-
-
-
+
+
+
+
-
Submit
-
+
-
Reset
-
+
-
-
+
+
-
-
-
-
-
-
Search
-
-
+
+
-
-
-
+
+
-
-
-
-
-
Submit
-
-
-
-
+
+
+
+
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
+
+
+
+
-
Submit
-
+
-
Reset
-
+
-
-
+
+
-
-
-
-
-
-
-
Action
-
+
-
Another action
-
+
-
Something else here...
-
+
-
Disabled action
-
-
-
+
+
+
-
-
-
+
+
-
-
-
-
-
-
Action
-
+
-
Another action
-
+
-
Something else here...
-
+
-
Disabled action
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
Action
-
+
-
Another action
-
+
-
Something else here...
-
+
-
Disabled action
-
-
-
+
+
+
-
-
-
-
Action
-
+
-
Another action
-
+
-
Something else here...
-
+
-
Disabled action
-
-
-
-
-
+
+
+
+
+
-
Submit
-
+
-
Reset
-
+
-
-
-
+
+
+
-
-
-
-
-
-
-
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
-
+
+
-
Action
-
+
-
Action
-
+
-
Action
-
+
-
Action
-
+
-
Action
-
+
-
-
+
+
-
-
-
-
-
-
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
-
+
+
-
Action
-
+
-
Action
-
+
-
Action
-
+
-
Action
-
+
-
Action
-
+
-
-
-
+
+
+
-
-
-
-
-
+
-
-
-
Username
-
-
+
+
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
Email
-
-
+
+
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
Password
-
-
+
+
-
-
-
-
-
-
-
+
+
+
+
-
Submit
-
+
-
-
-
+
+
+
-
-
-
-
+
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
-
Submit
-
+
-
-
-
+
+
+
-
-
-
-
+
-
-
-
-
-
+
+
-
-
-
+
+
-
-
-
-
-
-
+
+
-
-
-
+
+
-
-
-
-
-
-
+
+
-
-
-
+
+
-
Submit
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Jumbotrons.spec.js.snap b/tests/unit/views/base/__snapshots__/Jumbotrons.spec.js.snap
index 1157f527..6cfa1981 100644
--- a/tests/unit/views/base/__snapshots__/Jumbotrons.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Jumbotrons.spec.js.snap
@@ -7,13 +7,13 @@ exports[`Jumbotrons.vue renders correctly 1`] = `
-
-
-
-
-
More Info
-
-
+
+
-
-
+
+
-
-
-
-
Do Something
-
+
-
Do Something Else
-
-
+
+
-
-
-
+
+
+
-
-
-
-
-
+
-
-
-
+
+
+
`;
diff --git a/tests/unit/views/base/__snapshots__/ListGroups.spec.js.snap b/tests/unit/views/base/__snapshots__/ListGroups.spec.js.snap
index 104d30f8..86b081b3 100644
--- a/tests/unit/views/base/__snapshots__/ListGroups.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/ListGroups.spec.js.snap
@@ -7,14 +7,14 @@ exports[`ListGroups.vue renders correctly 1`] = `
-
-
-
-
-
Cras justo odio
-
+
-
Dapibus ac facilisis in
-
+
-
Morbi leo risus
-
+
-
Porta ac consectetur ac
-
+
-
Vestibulum at eros
-
-
-
-
+
+
+
+
-
-
-
-
Cras justo odio
-
+
-
Dapibus ac facilisis in
-
+
-
Morbi leo risus
-
+
-
Porta ac consectetur ac
-
+
-
Vestibulum at eros
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
Cras justo odio
-
+
-
Dapibus ac facilisis in
-
+
-
Morbi leo risus
-
+
-
Porta ac consectetur ac
-
+
-
Vestibulum at eros
-
-
-
-
+
+
+
+
-
-
-
-
Awesome link
-
+
-
Link with active state
-
+
-
Action links are easy
-
+
-
Disabled link
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
Button item
-
+
-
I am a button
-
+
-
Disabled button
-
+
-
This is a button too
-
-
-
-
+
+
+
+
-
-
-
-
14
-
-
+
+
-
2
-
-
+
+
-
1
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
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
-
-
-
-
+
+
+
+
-
-
-
-
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
-
-
-
-
-
+
+
+
+
+
-
-
-
-
- Card with list group
@@ -903,10 +903,10 @@ exports[`ListGroups.vue renders correctly 1`] = `
tag="div"
titletag="h4"
>
-
-
Cras justo odio
-
+
-
Dapibus ac facilisis in
-
+
-
Vestibulum at eros
-
-
+
+
-
+
- Card with flush list group
@@ -965,11 +965,11 @@ exports[`ListGroups.vue renders correctly 1`] = `
tag="div"
titletag="h4"
>
-
-
Cras justo odio
-
+
-
Dapibus ac facilisis in
-
+
-
Vestibulum at eros
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
Donec id elit non mi porta.
-
+
-
Donec id elit non mi porta.
-
+
-
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
index 427bf1b9..27259df8 100644
--- a/tests/unit/views/base/__snapshots__/Navbars.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Navbars.spec.js.snap
@@ -7,7 +7,7 @@ exports[`Navbars.vue renders correctly 1`] = `
-
-
-
-
NavBar
-
+
-
-
-
Link
-
+
-
Disabled
-
-
+
+
-
-
-
+
-
Search
-
-
+
+
-
-
EN
-
+
-
ES
-
+
-
RU
-
+
-
FA
-
-
+
+
-
-
Profile
-
+
-
Signout
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
-
+
-
-
-
-
BootstrapVue
-
+
-
-
-
Navbar text
-
-
-
-
+
+
+
+
-
+
-
-
-
-
-
-
Home
-
+
-
Link
-
+
-
-
EN
-
+
-
ES
-
+
-
RU
-
+
-
FA
-
-
+
+
-
-
Account
-
+
-
Settings
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
+
-
Search
-
-
-
+
+
+
-
+
-
-
-
-
+
-
-
-
-
+
+
+
-
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Navs.spec.js.snap b/tests/unit/views/base/__snapshots__/Navs.spec.js.snap
index 1c3dc4df..6da652e4 100644
--- a/tests/unit/views/base/__snapshots__/Navs.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Navs.spec.js.snap
@@ -7,7 +7,7 @@ exports[`Navs.vue renders correctly 1`] = `
-
-
-
Active
-
+
-
Link
-
+
-
Another Link
-
+
-
Disabled
-
-
+
+
-
+
-
-
-
Active
-
+
-
Link
-
+
-
Another Link
-
+
-
Disabled
-
-
+
+
-
+
-
-
-
Active
-
+
-
Link
-
+
-
Another Link
-
+
-
Disabled
-
-
+
+
-
+
-
-
-
Active
-
+
-
Link
-
+
-
Link with a long name
-
+
-
Disabled
-
-
+
+
-
+
-
-
-
Active
-
+
-
Link
-
+
-
Link with a long name
-
+
-
Disabled
-
-
+
+
-
+
-
-
-
Active
-
+
-
Link
-
+
-
-
one
-
+
-
two
-
+
-
-
three
-
-
-
+
+
+
-
+
-
-
-
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
index ed954b47..ba10bb60 100644
--- a/tests/unit/views/base/__snapshots__/Paginations.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Paginations.spec.js.snap
@@ -7,7 +7,7 @@ exports[`Paginations.vue renders correctly 1`] = `
-
-
-
-
-
+
-
-
@@ -129,7 +129,7 @@ exports[`Paginations.vue renders correctly 1`] = `
Center alignment
-
-
-
+
-
-
-
-
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Popovers.spec.js.snap b/tests/unit/views/base/__snapshots__/Popovers.spec.js.snap
index 0aa52af9..db039460 100644
--- a/tests/unit/views/base/__snapshots__/Popovers.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Popovers.spec.js.snap
@@ -7,7 +7,7 @@ exports[`Popovers.vue renders correctly 1`] = `
-
-
-
-
+
-
+
-
-
Button
-
+
-
open
-
+
-
-
-
+
+
+
-
-
-
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
-
+
-
-
-
+
+
-
+
-
-
-
-
Using properties
-
+
-
-
+
-
-
Using slots
-
+
-
-
-
-
+
+
+
+
-
-
I have a popover
-
+
-
Toggle Popover
-
+
-
World!
-
+
-
+
-
-
I have a popover
-
+
-
Open
-
+
-
Close
-
+
-
World!
-
+
-
+
-
-
I have a popover
-
+
-
Enable
-
+
-
Disable
-
+
-
World!
-
+
-
+
-
-
-
-
Top
-
-
+
+
-
-
Left
-
-
+
+
-
-
Right
-
-
+
+
-
-
Bottom
-
-
-
-
+
+
+
+
`;
diff --git a/tests/unit/views/base/__snapshots__/ProgressBars.spec.js.snap b/tests/unit/views/base/__snapshots__/ProgressBars.spec.js.snap
index 7e8a1ef3..c7690f01 100644
--- a/tests/unit/views/base/__snapshots__/ProgressBars.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/ProgressBars.spec.js.snap
@@ -7,7 +7,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
-
-
-
-
-
-
-
+
-
Click me
-
+
-
+
-
-
-
-
-
-
-
+
-
-
-
-
-
-
+
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
+
-
+
-
-
-
-
-
-
+
-
+
-
-
-
-
-
-
+
-
-
-
-
-
+
-
-
-
-
-
+
-
-
-
-
-
+
-
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Switches.spec.js.snap b/tests/unit/views/base/__snapshots__/Switches.spec.js.snap
index 4ca85481..35b3866d 100644
--- a/tests/unit/views/base/__snapshots__/Switches.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Switches.spec.js.snap
@@ -4,15 +4,15 @@ exports[`Switches.vue renders correctly 1`] = `
-
-
-
yes
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Table.spec.js.snap b/tests/unit/views/base/__snapshots__/Table.spec.js.snap
index 51be7909..d141b2dd 100644
--- a/tests/unit/views/base/__snapshots__/Table.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Table.spec.js.snap
@@ -1,7 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Table.vue renders correctly 1`] = `
-
-
-
-
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Tables.spec.js.snap b/tests/unit/views/base/__snapshots__/Tables.spec.js.snap
index bbeea00a..ead8f910 100644
--- a/tests/unit/views/base/__snapshots__/Tables.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Tables.spec.js.snap
@@ -4,14 +4,14 @@ exports[`Tables.vue renders correctly 1`] = `
-
-
- Simple Table
fields="[object Object],[object Object],[object Object],[object Object]"
perpage="5"
@@ -149,13 +149,13 @@ exports[`Tables.vue renders correctly 1`] = `
}]);
}"
/>
-
+
-
- Striped Table
fields=""
perpage="5"
@@ -294,17 +294,17 @@ exports[`Tables.vue renders correctly 1`] = `
}]);
}"
/>
-
-
+
+
-
-
- Condensed Table
fields=""
perpage="5"
@@ -443,13 +443,13 @@ exports[`Tables.vue renders correctly 1`] = `
}]);
}"
/>
-
+
-
- Bordered Table
fields=""
@@ -589,17 +589,17 @@ exports[`Tables.vue renders correctly 1`] = `
}]);
}"
/>
-
-
+
+
-
-
- Combined All Table
fields=""
@@ -610,17 +610,17 @@ exports[`Tables.vue renders correctly 1`] = `
striped="true"
tabledata="[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]"
/>
-
-
+
+
-
-
- Dark Table
dark="true"
@@ -632,7 +632,7 @@ exports[`Tables.vue renders correctly 1`] = `
striped="true"
tabledata="[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]"
/>
-
-
+
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Tabs.spec.js.snap b/tests/unit/views/base/__snapshots__/Tabs.spec.js.snap
index b6c5c026..58dd2ddf 100644
--- a/tests/unit/views/base/__snapshots__/Tabs.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Tabs.spec.js.snap
@@ -4,15 +4,15 @@ exports[`Tabs.vue renders correctly 1`] = `
-
-
-
-
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
`;
diff --git a/tests/unit/views/base/__snapshots__/Tooltips.spec.js.snap b/tests/unit/views/base/__snapshots__/Tooltips.spec.js.snap
index a7e6ebc9..896d3c54 100644
--- a/tests/unit/views/base/__snapshots__/Tooltips.spec.js.snap
+++ b/tests/unit/views/base/__snapshots__/Tooltips.spec.js.snap
@@ -7,7 +7,7 @@ exports[`Tooltips.vue renders correctly 1`] = `
-
-
-
-
Hover Me
-
+
-
+
-
-
Button
-
+
-
+
-
-
-
+
+
+
-
-
-
-
Live chat
-
-
+
+
-
-
Html chat
-
-
-
+
+
+
-
-
World!
-
-
+
+
-
-
I have a tooltip
-
+
-
Toggle Tooltip
-
+
-
World!
-
+
-
+
-
-
I have a tooltip
-
+
-
Open
-
+
-
Close
-
+
-
World!
-
+
-
+
-
-
I have a tooltip
-
+
-
+
-
+
-
World!
-
+
-
+
`;
diff --git a/tests/unit/views/buttons/__snapshots__/StandardButtons.spec.js.snap b/tests/unit/views/buttons/__snapshots__/StandardButtons.spec.js.snap
index 3e3bd67e..9790e616 100644
--- a/tests/unit/views/buttons/__snapshots__/StandardButtons.spec.js.snap
+++ b/tests/unit/views/buttons/__snapshots__/StandardButtons.spec.js.snap
@@ -4,7 +4,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
-
-
Standard buttons
-
+
-
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
+
+
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
+
+
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
-
-
+
+
+
+
+
-
-
Outline Buttons
-
+
-
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
-
-
+
+
+
-
-
Ghost Buttons
-
+
-
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
-
-
+
+
+
-
-
Square Buttons
-
+
-
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
+
+
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
+
+
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
-
-
+
+
+
+
+
-
-
Pill Buttons
-
+
-
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
+
+
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
+
+
+
-
-
+
-
-
Primary
-
-
+
+
-
-
Secondary
-
-
+
+
-
-
Success
-
-
+
+
-
-
Warning
-
-
+
+
-
-
Danger
-
-
+
+
-
-
Info
-
-
+
+
-
-
Light
-
-
+
+
-
-
Dark
-
-
+
+
-
-
Link
-
-
-
-
-
+
+
+
+
+
-
-
Sizes
-
+
-
-
-
+
-
-
Standard Button
-
-
+
+
-
-
Outline Button
-
-
+
+
-
-
Ghost Button
-
-
+
+
-
-
Square Button
-
-
+
+
-
-
Pill Button
-
-
-
+
+
+
-
-
+
-
-
Standard Button
-
-
+
+
-
-
Outline Button
-
-
+
+
-
-
Ghost Button
-
-
+
+
-
-
Square Button
-
-
+
+
-
-
Pill Button
-
-
-
+
+
+
-
-
+
-
-
Standard Button
-
-
+
+
-
-
Outline Button
-
-
+
+
-
-
Ghost Button
-
-
+
+
-
-
Square Button
-
-
+
+
-
-
Pill Button
-
-
-
-
-
+
+
+
+
+
-
-
With Icons
-
+
-
-
-
-
Standard Button
-
-
+
+
-
-
Outline Button
-
-
+
+
-
-
Ghost Button
-
-
+
+
-
-
Square Button
-
-
+
+
-
-
Pill Button
-
-
-
-
-
+
+
+
+
+
-
-
-
-
Primary Off
-
-
+
+
-
-
Secondary Off
-
-
+
+
-
-
Success Off
-
-
+
+
-
-
Info Off
-
-
+
+
-
-
Warning Off
-
-
+
+
-
-
Danger Off
-
-
-
-
+
+
+
+
-
-
-
-
Block level button
-
+
-
Block level button
-
+
-
Block level button
-
+
-
Block level button
-
+
-
Block level button
-
+
-
Block level button
-
+
-
Block level button
-
-
-
+
+
+
-
-
-
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__/Flags.spec.js.snap b/tests/unit/views/icons/__snapshots__/Flags.spec.js.snap
index ef34388f..11eb21b5 100644
--- a/tests/unit/views/icons/__snapshots__/Flags.spec.js.snap
+++ b/tests/unit/views/icons/__snapshots__/Flags.spec.js.snap
@@ -4,7 +4,7 @@ exports[`Flags.vue renders correctly 1`] = `
-
-
-
-
(where xx is the ISO 3166-1-alpha-2 code of a country) to an empty span. If you want to have a squared version flag then add the class flag-icon-squared as well.
-
+
-
flag-icon-ad
-
+
-
flag-icon-ae
-
+
-
flag-icon-af
-
+
-
flag-icon-ag
-
+
-
flag-icon-ai
-
+
-
flag-icon-al
-
+
-
flag-icon-am
-
+
-
flag-icon-ao
-
+
-
flag-icon-aq
-
+
-
flag-icon-ar
-
+
-
flag-icon-as
-
+
-
flag-icon-at
-
+
-
flag-icon-au
-
+
-
flag-icon-aw
-
+
-
flag-icon-ax
-
+
-
flag-icon-az
-
+
-
flag-icon-ba
-
+
-
flag-icon-bb
-
+
-
flag-icon-bd
-
+
-
flag-icon-be
-
+
-
flag-icon-bf
-
+
-
flag-icon-bg
-
+
-
flag-icon-bh
-
+
-
flag-icon-bi
-
+
-
flag-icon-bj
-
+
-
flag-icon-bl
-
+
-
flag-icon-bm
-
+
-
flag-icon-bn
-
+
-
flag-icon-bo
-
+
-
flag-icon-bq
-
+
-
flag-icon-br
-
+
-
flag-icon-bs
-
+
-
flag-icon-bt
-
+
-
flag-icon-bv
-
+
-
flag-icon-bw
-
+
-
flag-icon-by
-
+
-
flag-icon-bz
-
+
-
flag-icon-ca
-
+
-
flag-icon-cc
-
+
-
flag-icon-cd
-
+
-
flag-icon-cf
-
+
-
flag-icon-cg
-
+
-
flag-icon-ch
-
+
-
flag-icon-ci
-
+
-
flag-icon-ck
-
+
-
flag-icon-cl
-
+
-
flag-icon-cm
-
+
-
flag-icon-cn
-
+
-
flag-icon-co
-
+
-
flag-icon-cr
-
+
-
flag-icon-cu
-
+
-
flag-icon-cv
-
+
-
flag-icon-cw
-
+
-
flag-icon-cx
-
+
-
flag-icon-cy
-
+
-
flag-icon-cz
-
+
-
flag-icon-de
-
+
-
flag-icon-dj
-
+
-
flag-icon-dk
-
+
-
flag-icon-dm
-
+
-
flag-icon-do
-
+
-
flag-icon-dz
-
+
-
flag-icon-ec
-
+
-
flag-icon-ee
-
+
-
flag-icon-eg
-
+
-
flag-icon-eh
-
+
-
flag-icon-er
-
+
-
flag-icon-es
-
+
-
flag-icon-et
-
+
-
flag-icon-fi
-
+
-
flag-icon-fj
-
+
-
flag-icon-fk
-
+
-
flag-icon-fm
-
+
-
flag-icon-fo
-
+
-
flag-icon-fr
-
+
-
flag-icon-ga
-
+
-
flag-icon-gb
-
+
-
flag-icon-gd
-
+
-
flag-icon-ge
-
+
-
flag-icon-gf
-
+
-
flag-icon-gg
-
+
-
flag-icon-gh
-
+
-
flag-icon-gi
-
+
-
flag-icon-gl
-
+
-
flag-icon-gm
-
+
-
flag-icon-gn
-
+
-
flag-icon-gp
-
+
-
flag-icon-gq
-
+
-
flag-icon-gr
-
+
-
flag-icon-gs
-
+
-
flag-icon-gt
-
+
-
flag-icon-gu
-
+
-
flag-icon-gw
-
+
-
flag-icon-gy
-
+
-
flag-icon-hk
-
+
-
flag-icon-hm
-
+
-
flag-icon-hn
-
+
-
flag-icon-hr
-
+
-
flag-icon-ht
-
+
-
flag-icon-hu
-
+
-
flag-icon-id
-
+
-
flag-icon-ie
-
+
-
flag-icon-il
-
+
-
flag-icon-im
-
+
-
flag-icon-in
-
+
-
flag-icon-io
-
+
-
flag-icon-iq
-
+
-
flag-icon-ir
-
+
-
flag-icon-is
-
+
-
flag-icon-it
-
+
-
flag-icon-je
-
+
-
flag-icon-jm
-
+
-
flag-icon-jo
-
+
-
flag-icon-jp
-
+
-
flag-icon-ke
-
+
-
flag-icon-kg
-
+
-
flag-icon-kh
-
+
-
flag-icon-ki
-
+
-
flag-icon-km
-
+
-
flag-icon-kn
-
+
-
flag-icon-kp
-
+
-
flag-icon-kr
-
+
-
flag-icon-kw
-
+
-
flag-icon-ky
-
+
-
flag-icon-kz
-
+
-
flag-icon-la
-
+
-
flag-icon-lb
-
+
-
flag-icon-lc
-
+
-
flag-icon-li
-
+
-
flag-icon-lk
-
+
-
flag-icon-lr
-
+
-
flag-icon-ls
-
+
-
flag-icon-lt
-
+
-
flag-icon-lu
-
+
-
flag-icon-lv
-
+
-
flag-icon-ly
-
+
-
flag-icon-ma
-
+
-
flag-icon-mc
-
+
-
flag-icon-md
-
+
-
flag-icon-me
-
+
-
flag-icon-mf
-
+
-
flag-icon-mg
-
+
-
flag-icon-mh
-
+
-
flag-icon-mk
-
+
-
flag-icon-ml
-
+
-
flag-icon-mm
-
+
-
flag-icon-mn
-
+
-
flag-icon-mo
-
+
-
flag-icon-mp
-
+
-
flag-icon-mq
-
+
-
flag-icon-mr
-
+
-
flag-icon-ms
-
+
-
flag-icon-mt
-
+
-
flag-icon-mu
-
+
-
flag-icon-mv
-
+
-
flag-icon-mw
-
+
-
flag-icon-mx
-
+
-
flag-icon-my
-
+
-
flag-icon-mz
-
+
-
flag-icon-na
-
+
-
flag-icon-nc
-
+
-
flag-icon-ne
-
+
-
flag-icon-nf
-
+
-
flag-icon-ng
-
+
-
flag-icon-ni
-
+
-
flag-icon-nl
-
+
-
flag-icon-no
-
+
-
flag-icon-np
-
+
-
flag-icon-nr
-
+
-
flag-icon-nu
-
+
-
flag-icon-nz
-
+
-
flag-icon-om
-
+
-
flag-icon-pa
-
+
-
flag-icon-pe
-
+
-
flag-icon-pf
-
+
-
flag-icon-pg
-
+
-
flag-icon-ph
-
+
-
flag-icon-pk
-
+
-
flag-icon-pl
-
+
-
flag-icon-pm
-
+
-
flag-icon-pn
-
+
-
flag-icon-pr
-
+
-
flag-icon-ps
-
+
-
flag-icon-pt
-
+
-
flag-icon-pw
-
+
-
flag-icon-py
-
+
-
flag-icon-qa
-
+
-
flag-icon-re
-
+
-
flag-icon-ro
-
+
-
flag-icon-rs
-
+
-
flag-icon-ru
-
+
-
flag-icon-rw
-
+
-
flag-icon-sa
-
+
-
flag-icon-sb
-
+
-
flag-icon-sc
-
+
-
flag-icon-sd
-
+
-
flag-icon-se
-
+
-
flag-icon-sg
-
+
-
flag-icon-sh
-
+
-
flag-icon-si
-
+
-
flag-icon-sj
-
+
-
flag-icon-sk
-
+
-
flag-icon-sl
-
+
-
flag-icon-sm
-
+
-
flag-icon-sn
-
+
-
flag-icon-so
-
+
-
flag-icon-sr
-
+
-
flag-icon-ss
-
+
-
flag-icon-st
-
+
-
flag-icon-sv
-
+
-
flag-icon-sx
-
+
-
flag-icon-sy
-
+
-
flag-icon-sz
-
+
-
flag-icon-tc
-
+
-
flag-icon-td
-
+
-
flag-icon-tf
-
+
-
flag-icon-tg
-
+
-
flag-icon-th
-
+
-
flag-icon-tj
-
+
-
flag-icon-tk
-
+
-
flag-icon-tl
-
+
-
flag-icon-tm
-
+
-
flag-icon-tn
-
+
-
flag-icon-to
-
+
-
flag-icon-tr
-
+
-
flag-icon-tt
-
+
-
flag-icon-tv
-
+
-
flag-icon-tw
-
+
-
flag-icon-tz
-
+
-
flag-icon-ua
-
+
-
flag-icon-ug
-
+
-
flag-icon-um
-
+
-
flag-icon-us
-
+
-
flag-icon-uy
-
+
-
flag-icon-uz
-
+
-
flag-icon-va
-
+
-
flag-icon-vc
-
+
-
flag-icon-ve
-
+
-
flag-icon-vg
-
+
-
flag-icon-vi
-
+
-
flag-icon-vn
-
+
-
flag-icon-vu
-
+
-
flag-icon-wf
-
+
-
flag-icon-ws
-
+
-
flag-icon-ye
-
+
-
flag-icon-yt
-
+
-
flag-icon-za
-
+
-
flag-icon-zm
-
+
-
flag-icon-zw
-
-
-
-
+
+
+
+
`;
diff --git a/tests/unit/views/icons/__snapshots__/FontAwesome.spec.js.snap b/tests/unit/views/icons/__snapshots__/FontAwesome.spec.js.snap
index 8522b7a4..8c287eb9 100644
--- a/tests/unit/views/icons/__snapshots__/FontAwesome.spec.js.snap
+++ b/tests/unit/views/icons/__snapshots__/FontAwesome.spec.js.snap
@@ -4,7 +4,7 @@ exports[`FontAwesome.vue renders correctly 1`] = `
-
-
-
-
address-book
-
+
-
address-book-o
-
+
-
address-card
-
+
-
address-card-o
-
+
-
bandcamp
-
+
-
bath
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
eercast
-
+
-
envelope-open
-
+
-
envelope-open-o
-
+
-
etsy
-
+
-
free-code-camp
-
+
-
grav
-
+
-
handshake-o
-
+
-
id-badge
-
+
-
id-card
-
+
-
id-card-o
-
+
-
imdb
-
+
-
linode
-
+
-
meetup
-
+
-
microchip
-
+
-
podcast
-
+
-
quora
-
+
-
ravelry
-
+
-
(alias)
-
+
-
shower
-
+
-
snowflake-o
-
+
-
superpowers
-
+
-
telegram
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
thermometer-empty
-
+
-
thermometer-full
-
+
-
thermometer-half
-
+
-
thermometer-quarter
-
+
-
thermometer-three-quarters
-
+
-
(alias)
-
+
-
(alias)
-
+
-
user-circle
-
+
-
user-circle-o
-
+
-
user-o
-
+
-
(alias)
-
+
-
(alias)
-
+
-
window-close
-
+
-
window-close-o
-
+
-
window-maximize
-
+
-
window-minimize
-
+
-
window-restore
-
+
-
wpexplorer
-
-
-
-
+
+
+
+
-
-
-
-
bluetooth
-
+
-
bluetooth-b
-
+
-
codiepie
-
+
-
credit-card-alt
-
+
-
edge
-
+
-
fort-awesome
-
+
-
hashtag
-
+
-
mixcloud
-
+
-
modx
-
+
-
pause-circle
-
+
-
pause-circle-o
-
+
-
percent
-
+
-
product-hunt
-
+
-
reddit-alien
-
+
-
scribd
-
+
-
shopping-bag
-
+
-
shopping-basket
-
+
-
stop-circle
-
+
-
stop-circle-o
-
+
-
usb
-
-
-
-
+
+
+
+
-
-
-
-
adjust
-
+
-
anchor
-
+
-
archive
-
+
-
area-chart
-
+
-
arrows
-
+
-
arrows-h
-
+
-
arrows-v
-
+
-
asterisk
-
+
-
at
-
+
-
(alias)
-
+
-
balance-scale
-
+
-
ban
-
+
-
(alias)
-
+
-
bar-chart
-
+
-
(alias)
-
+
-
barcode
-
+
-
bars
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
battery-empty
-
+
-
battery-full
-
+
-
battery-half
-
+
-
battery-quarter
-
+
-
battery-three-quarters
-
+
-
bed
-
+
-
beer
-
+
-
bell
-
+
-
bell-o
-
+
-
bell-slash
-
+
-
bell-slash-o
-
+
-
bicycle
-
+
-
binoculars
-
+
-
birthday-cake
-
+
-
bluetooth
-
+
-
bluetooth-b
-
+
-
bolt
-
+
-
bomb
-
+
-
book
-
+
-
bookmark
-
+
-
bookmark-o
-
+
-
briefcase
-
+
-
bug
-
+
-
building
-
+
-
building-o
-
+
-
bullhorn
-
+
-
bullseye
-
+
-
bus
-
+
-
(alias)
-
+
-
calculator
-
+
-
calendar
-
+
-
calendar-check-o
-
+
-
calendar-minus-o
-
+
-
calendar-o
-
+
-
calendar-plus-o
-
+
-
calendar-times-o
-
+
-
camera
-
+
-
camera-retro
-
+
-
car
-
+
-
caret-square-o-down
-
+
-
caret-square-o-left
-
+
-
caret-square-o-right
-
+
-
caret-square-o-up
-
+
-
cart-arrow-down
-
+
-
cart-plus
-
+
-
cc
-
+
-
certificate
-
+
-
check
-
+
-
check-circle
-
+
-
check-circle-o
-
+
-
check-square
-
+
-
check-square-o
-
+
-
child
-
+
-
circle
-
+
-
circle-o
-
+
-
circle-o-notch
-
+
-
circle-thin
-
+
-
clock-o
-
+
-
clone
-
+
-
(alias)
-
+
-
cloud
-
+
-
cloud-download
-
+
-
cloud-upload
-
+
-
code
-
+
-
code-fork
-
+
-
coffee
-
+
-
cog
-
+
-
cogs
-
+
-
comment
-
+
-
comment-o
-
+
-
commenting
-
+
-
commenting-o
-
+
-
comments
-
+
-
comments-o
-
+
-
compass
-
+
-
copyright
-
+
-
creative-commons
-
+
-
credit-card
-
+
-
credit-card-alt
-
+
-
crop
-
+
-
crosshairs
-
+
-
cube
-
+
-
cubes
-
+
-
cutlery
-
+
-
(alias)
-
+
-
database
-
+
-
desktop
-
+
-
diamond
-
+
-
dot-circle-o
-
+
-
download
-
+
-
(alias)
-
+
-
ellipsis-h
-
+
-
ellipsis-v
-
+
-
envelope
-
+
-
envelope-o
-
+
-
envelope-square
-
+
-
eraser
-
+
-
exchange
-
+
-
exclamation
-
+
-
exclamation-circle
-
+
-
exclamation-triangle
-
+
-
external-link
-
+
-
external-link-square
-
+
-
eye
-
+
-
eye-slash
-
+
-
eyedropper
-
+
-
fax
-
+
-
(alias)
-
+
-
female
-
+
-
fighter-jet
-
+
-
file-archive-o
-
+
-
file-audio-o
-
+
-
file-code-o
-
+
-
file-excel-o
-
+
-
file-image-o
-
+
-
(alias)
-
+
-
file-pdf-o
-
+
-
(alias)
-
+
-
(alias)
-
+
-
file-powerpoint-o
-
+
-
(alias)
-
+
-
file-video-o
-
+
-
file-word-o
-
+
-
(alias)
-
+
-
film
-
+
-
filter
-
+
-
fire
-
+
-
fire-extinguisher
-
+
-
flag
-
+
-
flag-checkered
-
+
-
flag-o
-
+
-
(alias)
-
+
-
flask
-
+
-
folder
-
+
-
folder-o
-
+
-
folder-open
-
+
-
folder-open-o
-
+
-
frown-o
-
+
-
futbol-o
-
+
-
gamepad
-
+
-
gavel
-
+
-
(alias)
-
+
-
(alias)
-
+
-
gift
-
+
-
glass
-
+
-
globe
-
+
-
graduation-cap
-
+
-
(alias)
-
+
-
(alias)
-
+
-
hand-lizard-o
-
+
-
hand-paper-o
-
+
-
hand-peace-o
-
+
-
hand-pointer-o
-
+
-
hand-rock-o
-
+
-
hand-scissors-o
-
+
-
hand-spock-o
-
+
-
(alias)
-
+
-
hashtag
-
+
-
hdd-o
-
+
-
headphones
-
+
-
heart
-
+
-
heart-o
-
+
-
heartbeat
-
+
-
history
-
+
-
home
-
+
-
(alias)
-
+
-
hourglass
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
hourglass-end
-
+
-
hourglass-half
-
+
-
hourglass-o
-
+
-
hourglass-start
-
+
-
i-cursor
-
+
-
(alias)
-
+
-
inbox
-
+
-
industry
-
+
-
info
-
+
-
info-circle
-
+
-
(alias)
-
+
-
key
-
+
-
keyboard-o
-
+
-
language
-
+
-
laptop
-
+
-
leaf
-
+
-
(alias)
-
+
-
lemon-o
-
+
-
level-down
-
+
-
level-up
-
+
-
(alias)
-
+
-
(alias)
-
+
-
life-ring
-
+
-
(alias)
-
+
-
lightbulb-o
-
+
-
line-chart
-
+
-
location-arrow
-
+
-
lock
-
+
-
magic
-
+
-
magnet
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
male
-
+
-
map
-
+
-
map-marker
-
+
-
map-o
-
+
-
map-pin
-
+
-
map-signs
-
+
-
meh-o
-
+
-
microphone
-
+
-
microphone-slash
-
+
-
minus
-
+
-
minus-circle
-
+
-
minus-square
-
+
-
minus-square-o
-
+
-
mobile
-
+
-
(alias)
-
+
-
money
-
+
-
moon-o
-
+
-
(alias)
-
+
-
motorcycle
-
+
-
mouse-pointer
-
+
-
music
-
+
-
(alias)
-
+
-
newspaper-o
-
+
-
object-group
-
+
-
object-ungroup
-
+
-
paint-brush
-
+
-
paper-plane
-
+
-
paper-plane-o
-
+
-
paw
-
+
-
pencil
-
+
-
pencil-square
-
+
-
pencil-square-o
-
+
-
percent
-
+
-
phone
-
+
-
phone-square
-
+
-
(alias)
-
+
-
picture-o
-
+
-
pie-chart
-
+
-
plane
-
+
-
plug
-
+
-
plus
-
+
-
plus-circle
-
+
-
plus-square
-
+
-
plus-square-o
-
+
-
power-off
-
+
-
print
-
+
-
puzzle-piece
-
+
-
qrcode
-
+
-
question
-
+
-
question-circle
-
+
-
quote-left
-
+
-
quote-right
-
+
-
random
-
+
-
recycle
-
+
-
refresh
-
+
-
registered
-
+
-
(alias)
-
+
-
(alias)
-
+
-
reply
-
+
-
reply-all
-
+
-
retweet
-
+
-
road
-
+
-
rocket
-
+
-
rss
-
+
-
rss-square
-
+
-
search
-
+
-
search-minus
-
+
-
search-plus
-
+
-
(alias)
-
+
-
(alias)
-
+
-
server
-
+
-
share
-
+
-
share-alt
-
+
-
share-alt-square
-
+
-
share-square
-
+
-
share-square-o
-
+
-
shield
-
+
-
ship
-
+
-
shopping-bag
-
+
-
shopping-basket
-
+
-
shopping-cart
-
+
-
sign-in
-
+
-
sign-out
-
+
-
signal
-
+
-
sitemap
-
+
-
sliders
-
+
-
smile-o
-
+
-
(alias)
-
+
-
sort
-
+
-
sort-alpha-asc
-
+
-
sort-alpha-desc
-
+
-
sort-amount-asc
-
+
-
sort-amount-desc
-
+
-
sort-asc
-
+
-
sort-desc
-
+
-
(alias)
-
+
-
sort-numeric-asc
-
+
-
sort-numeric-desc
-
+
-
(alias)
-
+
-
space-shuttle
-
+
-
spinner
-
+
-
spoon
-
+
-
square
-
+
-
square-o
-
+
-
star
-
+
-
star-half
-
+
-
(alias)
-
+
-
(alias)
-
+
-
star-half-o
-
+
-
star-o
-
+
-
sticky-note
-
+
-
sticky-note-o
-
+
-
street-view
-
+
-
suitcase
-
+
-
sun-o
-
+
-
(alias)
-
+
-
tablet
-
+
-
tachometer
-
+
-
tag
-
+
-
tags
-
+
-
tasks
-
+
-
taxi
-
+
-
television
-
+
-
terminal
-
+
-
thumb-tack
-
+
-
thumbs-down
-
+
-
thumbs-o-down
-
+
-
thumbs-o-up
-
+
-
thumbs-up
-
+
-
ticket
-
+
-
times
-
+
-
times-circle
-
+
-
times-circle-o
-
+
-
tint
-
+
-
(alias)
-
+
-
(alias)
-
+
-
toggle-off
-
+
-
toggle-on
-
+
-
(alias)
-
+
-
(alias)
-
+
-
trademark
-
+
-
trash
-
+
-
trash-o
-
+
-
tree
-
+
-
trophy
-
+
-
truck
-
+
-
tty
-
+
-
(alias)
-
+
-
umbrella
-
+
-
university
-
+
-
unlock
-
+
-
unlock-alt
-
+
-
(alias)
-
+
-
upload
-
+
-
user
-
+
-
user-plus
-
+
-
user-secret
-
+
-
user-times
-
+
-
users
-
+
-
video-camera
-
+
-
volume-down
-
+
-
volume-off
-
+
-
volume-up
-
+
-
(alias)
-
+
-
wheelchair
-
+
-
wifi
-
+
-
wrench
-
-
-
-
+
+
+
+
-
-
-
-
(alias)
-
+
-
hand-lizard-o
-
+
-
hand-o-down
-
+
-
hand-o-left
-
+
-
hand-o-right
-
+
-
hand-o-up
-
+
-
hand-paper-o
-
+
-
hand-peace-o
-
+
-
hand-pointer-o
-
+
-
hand-rock-o
-
+
-
hand-scissors-o
-
+
-
hand-spock-o
-
+
-
(alias)
-
+
-
thumbs-down
-
+
-
thumbs-o-down
-
+
-
thumbs-o-up
-
+
-
thumbs-up
-
-
-
-
+
+
+
+
-
-
-
-
ambulance
-
+
-
(alias)
-
+
-
bicycle
-
+
-
bus
-
+
-
(alias)
-
+
-
car
-
+
-
fighter-jet
-
+
-
motorcycle
-
+
-
plane
-
+
-
rocket
-
+
-
ship
-
+
-
space-shuttle
-
+
-
subway
-
+
-
taxi
-
+
-
train
-
+
-
truck
-
+
-
wheelchair
-
-
-
-
+
+
+
+
-
-
-
-
genderless
-
+
-
(alias)
-
+
-
mars
-
+
-
mars-double
-
+
-
mars-stroke
-
+
-
mars-stroke-h
-
+
-
mars-stroke-v
-
+
-
mercury
-
+
-
neuter
-
+
-
transgender
-
+
-
transgender-alt
-
+
-
venus
-
+
-
venus-double
-
+
-
venus-mars
-
-
-
-
+
+
+
+
-
-
-
-
file
-
+
-
file-archive-o
-
+
-
file-audio-o
-
+
-
file-code-o
-
+
-
file-excel-o
-
+
-
file-image-o
-
+
-
(alias)
-
+
-
file-o
-
+
-
file-pdf-o
-
+
-
(alias)
-
+
-
(alias)
-
+
-
file-powerpoint-o
-
+
-
(alias)
-
+
-
file-text
-
+
-
file-text-o
-
+
-
file-video-o
-
+
-
file-word-o
-
+
-
(alias)
-
-
-
-
+
+
+
+
-
-
-
-
circle-o-notch
-
+
-
cog
-
+
-
(alias)
-
+
-
refresh
-
+
-
spinner
-
-
-
-
+
+
+
+
-
-
-
-
check-square
-
+
-
check-square-o
-
+
-
circle
-
+
-
circle-o
-
+
-
dot-circle-o
-
+
-
minus-square
-
+
-
minus-square-o
-
+
-
plus-square
-
+
-
plus-square-o
-
+
-
square
-
+
-
square-o
-
-
-
-
+
+
+
+
-
-
-
-
cc-amex
-
+
-
cc-diners-club
-
+
-
cc-discover
-
+
-
cc-jcb
-
+
-
cc-mastercard
-
+
-
cc-paypal
-
+
-
cc-stripe
-
+
-
cc-visa
-
+
-
credit-card
-
+
-
credit-card-alt
-
+
-
google-wallet
-
+
-
paypal
-
-
-
-
+
+
+
+
-
-
-
-
area-chart
-
+
-
bar-chart
-
+
-
(alias)
-
+
-
line-chart
-
+
-
pie-chart
-
-
-
-
+
+
+
+
-
-
-
-
(alias)
-
+
-
btc
-
+
-
(alias)
-
+
-
(alias)
-
+
-
eur
-
+
-
(alias)
-
+
-
gbp
-
+
-
gg
-
+
-
gg-circle
-
+
-
ils
-
+
-
inr
-
+
-
jpy
-
+
-
krw
-
+
-
money
-
+
-
(alias)
-
+
-
(alias)
-
+
-
rub
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
try
-
+
-
(alias)
-
+
-
usd
-
+
-
(alias)
-
+
-
(alias)
-
-
-
-
+
+
+
+
-
-
-
-
align-center
-
+
-
align-justify
-
+
-
align-left
-
+
-
align-right
-
+
-
bold
-
+
-
(alias)
-
+
-
chain-broken
-
+
-
clipboard
-
+
-
columns
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
eraser
-
+
-
file
-
+
-
file-o
-
+
-
file-text
-
+
-
file-text-o
-
+
-
files-o
-
+
-
floppy-o
-
+
-
font
-
+
-
header
-
+
-
indent
-
+
-
italic
-
+
-
link
-
+
-
list
-
+
-
list-alt
-
+
-
list-ol
-
+
-
list-ul
-
+
-
outdent
-
+
-
paperclip
-
+
-
paragraph
-
+
-
(alias)
-
+
-
repeat
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
scissors
-
+
-
strikethrough
-
+
-
subscript
-
+
-
superscript
-
+
-
table
-
+
-
text-height
-
+
-
text-width
-
+
-
th
-
+
-
th-large
-
+
-
th-list
-
+
-
underline
-
+
-
undo
-
+
-
(alias)
-
-
-
-
+
+
+
+
-
-
-
-
angle-double-down
-
+
-
angle-double-left
-
+
-
angle-double-right
-
+
-
angle-double-up
-
+
-
angle-down
-
+
-
angle-left
-
+
-
angle-right
-
+
-
angle-up
-
+
-
arrow-circle-down
-
+
-
arrow-circle-left
-
+
-
arrow-circle-o-down
-
+
-
arrow-circle-o-left
-
+
-
arrow-circle-o-right
-
+
-
arrow-circle-o-up
-
+
-
arrow-circle-right
-
+
-
arrow-circle-up
-
+
-
arrow-down
-
+
-
arrow-left
-
+
-
arrow-right
-
+
-
arrow-up
-
+
-
arrows
-
+
-
arrows-alt
-
+
-
arrows-h
-
+
-
arrows-v
-
+
-
caret-down
-
+
-
caret-left
-
+
-
caret-right
-
+
-
caret-square-o-down
-
+
-
caret-square-o-left
-
+
-
caret-square-o-right
-
+
-
caret-square-o-up
-
+
-
caret-up
-
+
-
chevron-circle-down
-
+
-
chevron-circle-left
-
+
-
chevron-circle-right
-
+
-
chevron-circle-up
-
+
-
chevron-down
-
+
-
chevron-left
-
+
-
chevron-right
-
+
-
chevron-up
-
+
-
exchange
-
+
-
hand-o-down
-
+
-
hand-o-left
-
+
-
hand-o-right
-
+
-
hand-o-up
-
+
-
long-arrow-down
-
+
-
long-arrow-left
-
+
-
long-arrow-right
-
+
-
long-arrow-up
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
+
-
(alias)
-
-
-
-
+
+
+
+
-
-
-
-
arrows-alt
-
+
-
backward
-
+
-
compress
-
+
-
eject
-
+
-
expand
-
+
-
fast-backward
-
+
-
fast-forward
-
+
-
forward
-
+
-
pause
-
+
-
pause-circle
-
+
-
pause-circle-o
-
+
-
play
-
+
-
play-circle
-
+
-
play-circle-o
-
+
-
random
-
+
-
step-backward
-
+
-
step-forward
-
+
-
stop
-
+
-
stop-circle
-
+
-
stop-circle-o
-
+
-
youtube-play
-
-
-
-
+
+
+
+
-
-
-
-
500px
-
+
-
adn
-
+
-
amazon
-
+
-
android
-
+
-
angellist
-
+
-
apple
-
+
-
behance
-
+
-
behance-square
-
+
-
bitbucket
-
+
-
bitbucket-square
-
+
-
(alias)
-
+
-
black-tie
-
+
-
bluetooth
-
+
-
bluetooth-b
-
+
-
btc
-
+
-
buysellads
-
+
-
cc-amex
-
+
-
cc-diners-club
-
+
-
cc-discover
-
+
-
cc-jcb
-
+
-
cc-mastercard
-
+
-
cc-paypal
-
+
-
cc-stripe
-
+
-
cc-visa
-
+
-
chrome
-
+
-
codepen
-
+
-
codiepie
-
+
-
connectdevelop
-
+
-
contao
-
+
-
css3
-
+
-
dashcube
-
+
-
delicious
-
+
-
deviantart
-
+
-
digg
-
+
-
dribbble
-
+
-
dropbox
-
+
-
drupal
-
+
-
edge
-
+
-
empire
-
+
-
expeditedssl
-
+
-
facebook
-
+
-
(alias)
-
+
-
facebook-official
-
+
-
facebook-square
-
+
-
firefox
-
+
-
flickr
-
+
-
fonticons
-
+
-
fort-awesome
-
+
-
forumbee
-
+
-
foursquare
-
+
-
(alias)
-
+
-
get-pocket
-
+
-
gg
-
+
-
gg-circle
-
+
-
git
-
+
-
git-square
-
+
-
github
-
+
-
github-alt
-
+
-
github-square
-
+
-
(alias)
-
+
-
google
-
+
-
google-plus
-
+
-
google-plus-square
-
+
-
google-wallet
-
+
-
gratipay
-
+
-
hacker-news
-
+
-
houzz
-
+
-
html5
-
+
-
instagram
-
+
-
internet-explorer
-
+
-
ioxhost
-
+
-
joomla
-
+
-
jsfiddle
-
+
-
lastfm
-
+
-
lastfm-square
-
+
-
leanpub
-
+
-
linkedin
-
+
-
linkedin-square
-
+
-
linux
-
+
-
maxcdn
-
+
-
meanpath
-
+
-
medium
-
+
-
mixcloud
-
+
-
modx
-
+
-
odnoklassniki
-
+
-
odnoklassniki-square
-
+
-
opencart
-
+
-
openid
-
+
-
opera
-
+
-
optin-monster
-
+
-
pagelines
-
+
-
paypal
-
+
-
pied-piper
-
+
-
pied-piper-alt
-
+
-
pinterest
-
+
-
pinterest-p
-
+
-
pinterest-square
-
+
-
product-hunt
-
+
-
qq
-
+
-
(alias)
-
+
-
rebel
-
+
-
reddit
-
+
-
reddit-alien
-
+
-
reddit-square
-
+
-
renren
-
+
-
safari
-
+
-
scribd
-
+
-
sellsy
-
+
-
share-alt
-
+
-
share-alt-square
-
+
-
shirtsinbulk
-
+
-
simplybuilt
-
+
-
skyatlas
-
+
-
skype
-
+
-
slack
-
+
-
slideshare
-
+
-
soundcloud
-
+
-
spotify
-
+
-
stack-exchange
-
+
-
stack-overflow
-
+
-
steam
-
+
-
steam-square
-
+
-
stumbleupon
-
+
-
stumbleupon-circle
-
+
-
tencent-weibo
-
+
-
trello
-
+
-
tripadvisor
-
+
-
tumblr
-
+
-
tumblr-square
-
+
-
twitch
-
+
-
twitter
-
+
-
twitter-square
-
+
-
usb
-
+
-
viacoin
-
+
-
vimeo
-
+
-
vimeo-square
-
+
-
vine
-
+
-
vk
-
+
-
(alias)
-
+
-
weibo
-
+
-
weixin
-
+
-
whatsapp
-
+
-
wikipedia-w
-
+
-
windows
-
+
-
wordpress
-
+
-
xing
-
+
-
xing-square
-
+
-
y-combinator
-
+
-
(alias)
-
+
-
yahoo
-
+
-
(alias)
-
+
-
(alias)
-
+
-
yelp
-
+
-
youtube
-
+
-
youtube-play
-
+
-
youtube-square
-
-
+
+
-
-
+
+
-
-
-
-
ambulance
-
+
-
h-square
-
+
-
heart
-
+
-
heart-o
-
+
-
heartbeat
-
+
-
hospital-o
-
+
-
medkit
-
+
-
plus-square
-
+
-
stethoscope
-
+
-
user-md
-
+
-
wheelchair
-
-
-
-
+
+
+
+
`;
diff --git a/tests/unit/views/icons/__snapshots__/SimpleLineIcons.spec.js.snap b/tests/unit/views/icons/__snapshots__/SimpleLineIcons.spec.js.snap
index 7ce1d59c..fbbd74f4 100644
--- a/tests/unit/views/icons/__snapshots__/SimpleLineIcons.spec.js.snap
+++ b/tests/unit/views/icons/__snapshots__/SimpleLineIcons.spec.js.snap
@@ -4,7 +4,7 @@ exports[`SimpleLineIcons.vue renders correctly 1`] = `
-
-
-
-
icon-user
-
+
-
icon-people
-
+
-
icon-user-female
-
+
-
icon-user-follow
-
+
-
icon-user-following
-
+
-
icon-user-unfollow
-
+
-
icon-login
-
+
-
icon-logout
-
+
-
icon-emotsmile
-
+
-
icon-phone
-
+
-
icon-call-end
-
+
-
icon-call-in
-
+
-
icon-call-out
-
+
-
icon-map
-
+
-
icon-location-pin
-
+
-
icon-direction
-
+
-
icon-directions
-
+
-
icon-compass
-
+
-
icon-layers
-
+
-
icon-menu
-
+
-
icon-list
-
+
-
icon-options-vertical
-
+
-
icon-options
-
+
-
icon-arrow-down
-
+
-
icon-arrow-left
-
+
-
icon-arrow-right
-
+
-
icon-arrow-up
-
+
-
icon-arrow-up-circle
-
+
-
icon-arrow-left-circle
-
+
-
icon-arrow-right-circle
-
+
-
icon-arrow-down-circle
-
+
-
icon-check
-
+
-
icon-clock
-
+
-
icon-plus
-
+
-
icon-close
-
+
-
icon-trophy
-
+
-
icon-screen-smartphone
-
+
-
icon-screen-desktop
-
+
-
icon-plane
-
+
-
icon-notebook
-
+
-
icon-mustache
-
+
-
icon-mouse
-
+
-
icon-magnet
-
+
-
icon-energy
-
+
-
icon-disc
-
+
-
icon-cursor
-
+
-
icon-cursor-move
-
+
-
icon-crop
-
+
-
icon-chemistry
-
+
-
icon-speedometer
-
+
-
icon-shield
-
+
-
icon-screen-tablet
-
+
-
- cols="6" sm="4" md="3">
-
icon-magic-wand
-
+
-
icon-hourglass
-
+
-
icon-graduation
-
+
-
icon-ghost
-
+
-
icon-game-controller
-
+
-
icon-fire
-
+
-
icon-eyeglass
-
+
-
icon-envelope-open
-
+
-
icon-envelope-letter
-
+
-
icon-bell
-
+
-
icon-badge
-
+
-
icon-anchor
-
+
-
icon-wallet
-
+
-
icon-vector
-
+
-
icon-speech
-
+
-
icon-puzzle
-
+
-
icon-printer
-
+
-
icon-present
-
+
-
icon-playlist
-
+
-
icon-pin
-
+
-
icon-picture
-
+
-
icon-handbag
-
+
-
icon-globe-alt
-
+
-
icon-globe
-
+
-
icon-folder-alt
-
+
-
icon-folder
-
+
-
icon-film
-
+
-
icon-feed
-
+
-
icon-drop
-
+
-
icon-drawer
-
+
-
icon-docs
-
+
-
icon-doc
-
+
-
icon-diamond
-
+
-
icon-cup
-
+
-
icon-calculator
-
+
-
icon-bubbles
-
+
-
icon-briefcase
-
+
-
icon-book-open
-
+
-
icon-basket-loaded
-
+
-
icon-basket
-
+
-
icon-bag
-
+
-
icon-action-undo
-
+
-
icon-action-redo
-
+
-
icon-wrench
-
+
-
icon-umbrella
-
+
-
icon-trash
-
+
-
icon-tag
-
+
-
icon-support
-
+
-
icon-frame
-
+
-
icon-size-fullscreen
-
+
-
icon-size-actual
-
+
-
icon-shuffle
-
+
-
icon-share-alt
-
+
-
icon-share
-
+
-
icon-rocket
-
+
-
icon-question
-
+
-
icon-pie-chart
-
+
-
icon-pencil
-
+
-
icon-note
-
+
-
icon-loop
-
+
-
icon-home
-
+
-
icon-grid
-
+
-
icon-graph
-
+
-
icon-microphone
-
+
-
icon-music-tone-alt
-
+
-
icon-music-tone
-
+
-
icon-earphones-alt
-
+
-
icon-earphones
-
+
-
icon-equalizer
-
+
-
icon-like
-
+
-
icon-dislike
-
+
-
icon-control-start
-
+
-
icon-control-rewind
-
+
-
icon-control-play
-
+
-
icon-control-pause
-
+
-
icon-control-forward
-
+
-
icon-control-end
-
+
-
icon-volume-1
-
+
-
icon-volume-2
-
+
-
icon-volume-off
-
+
-
icon-calendar
-
+
-
icon-bulb
-
+
-
icon-chart
-
+
-
icon-ban
-
+
-
icon-bubble
-
+
-
icon-camrecorder
-
+
-
icon-camera
-
+
-
icon-cloud-download
-
+
-
icon-cloud-upload
-
+
-
icon-envelope
-
+
-
icon-eye
-
+
-
icon-flag
-
+
-
icon-heart
-
+
-
icon-info
-
+
-
icon-key
-
+
-
icon-link
-
+
-
icon-lock
-
+
-
icon-lock-open
-
+
-
icon-magnifier
-
+
-
icon-magnifier-add
-
+
-
icon-magnifier-remove
-
+
-
icon-paper-clip
-
+
-
icon-paper-plane
-
+
-
icon-power
-
+
-
icon-refresh
-
+
-
icon-reload
-
+
-
icon-settings
-
+
-
icon-star
-
+
-
icon-symbol-female
-
+
-
icon-symbol-male
-
+
-
icon-target
-
+
-
icon-credit-card
-
+
-
icon-paypal
-
+
-
icon-social-tumblr
-
+
-
icon-social-twitter
-
+
-
icon-social-facebook
-
+
-
icon-social-instagram
-
+
-
icon-social-linkedin
-
+
-
icon-social-pinterest
-
+
-
icon-social-github
-
+
-
icon-social-gplus
-
+
-
icon-social-reddit
-
+
-
icon-social-skype
-
+
-
icon-social-dribbble
-
+
-
icon-social-behance
-
+
-
icon-social-foursqare
-
+
-
icon-social-soundcloud
-
+
-
icon-social-spotify
-
+
-
icon-social-stumbleupon
-
+
-
icon-social-youtube
-
+
-
icon-social-dropbox
-
-
-
-
+
+
+
+
`;
diff --git a/tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap b/tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap
index 96ddc057..bb269cf9 100644
--- a/tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap
+++ b/tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap
@@ -7,14 +7,14 @@ exports[`Modals.vue renders correctly 1`] = `
-
-
- Bootstrap Modals
@@ -23,7 +23,7 @@ exports[`Modals.vue renders correctly 1`] = `
tag="div"
titletag="h4"
>
-
Launch demo modal
-
+
-
Launch large modal
-
+
-
Launch small modal
-
+
-
Launch primary modal
-
+
-
Launch success modal
-
+
-
Launch warning modal
-
+
-
Launch danger modal
-
+
-
Launch info modal
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
`;
diff --git a/tests/unit/views/pages/__snapshots__/Login.spec.js.snap b/tests/unit/views/pages/__snapshots__/Login.spec.js.snap
index 36d56294..e1dc4418 100644
--- a/tests/unit/views/pages/__snapshots__/Login.spec.js.snap
+++ b/tests/unit/views/pages/__snapshots__/Login.spec.js.snap
@@ -7,18 +7,18 @@ exports[`Login.vue renders correctly 1`] = `
-
-
-
-
-
-
+
Login
@@ -44,62 +44,62 @@ exports[`Login.vue renders correctly 1`] = `
Sign In to your account
-
-
-
-
-
+
+
-
-
+
-
-
-
-
-
+
+
-
-
+
-
-
-
Login
-
-
+
+
-
-
Forgot password?
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
Register Now!
-
+
-
-
-
-
-
+
+
+
+
+
`;
diff --git a/tests/unit/views/pages/__snapshots__/Page404.spec.js.snap b/tests/unit/views/pages/__snapshots__/Page404.spec.js.snap
index efb2aaee..172b295d 100644
--- a/tests/unit/views/pages/__snapshots__/Page404.spec.js.snap
+++ b/tests/unit/views/pages/__snapshots__/Page404.spec.js.snap
@@ -7,11 +7,11 @@ exports[`Page404.vue renders correctly 1`] = `
-
-
@@ -37,20 +37,20 @@ exports[`Page404.vue renders correctly 1`] = `
-
-
-
-
-
+
+
-
-
Search
-
-
-
-
-
+
+
+
+
+
`;
diff --git a/tests/unit/views/pages/__snapshots__/Page500.spec.js.snap b/tests/unit/views/pages/__snapshots__/Page500.spec.js.snap
index e5478b3d..f3f4fd32 100644
--- a/tests/unit/views/pages/__snapshots__/Page500.spec.js.snap
+++ b/tests/unit/views/pages/__snapshots__/Page500.spec.js.snap
@@ -7,11 +7,11 @@ exports[`Page500.vue renders correctly 1`] = `
-
-
@@ -37,20 +37,20 @@ exports[`Page500.vue renders correctly 1`] = `
-
-
-
-
-
+
+
-
-
Search
-
-
-
-
-
+
+
+
+
+
`;
diff --git a/tests/unit/views/pages/__snapshots__/Register.spec.js.snap b/tests/unit/views/pages/__snapshots__/Register.spec.js.snap
index cc0d919a..b1224219 100644
--- a/tests/unit/views/pages/__snapshots__/Register.spec.js.snap
+++ b/tests/unit/views/pages/__snapshots__/Register.spec.js.snap
@@ -7,16 +7,16 @@ exports[`Register.vue renders correctly 1`] = `
-
-
-
-
-
+
Register
@@ -43,101 +43,101 @@ exports[`Register.vue renders correctly 1`] = `
Create your account
-
-
-
-
-
+
+
-
-
+
-
-
-
@
-
-
+
+
-
-
+
-
-
-
-
-
+
+
-
-
+
-
-
-
-
-
+
+
-
-
+
-
Create Account
-
-
-
+
+
+
-
-
-
-
facebook
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
`;
diff --git a/tests/unit/views/theme/__snapshots__/Colors.spec.js.snap b/tests/unit/views/theme/__snapshots__/Colors.spec.js.snap
index 7fd49b2a..97ec4a32 100644
--- a/tests/unit/views/theme/__snapshots__/Colors.spec.js.snap
+++ b/tests/unit/views/theme/__snapshots__/Colors.spec.js.snap
@@ -440,437 +440,77 @@ exports[`Colors.vue renders correctly 1`] = `
-
-
-
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)
-
-
-
-
-
+
@@ -900,485 +540,85 @@ exports[`Colors.vue renders correctly 1`] = `
-
-
-
Brand Blue Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Indigo Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Purple Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Pink Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Red Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Orange Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Yellow Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Green Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Teal Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
-
-
-
Brand Cyan Color
-
-
-
-
-
- HEX:
-
-
-
- #ffffff
-
-
-
-
-
- RGB:
-
-
-
- rgb(255, 255, 255)
-
-
-
-
-
+
diff --git a/tests/unit/views/users/__snapshots__/User.spec.js.snap b/tests/unit/views/users/__snapshots__/User.spec.js.snap
index 8757ed32..730c2397 100644
--- a/tests/unit/views/users/__snapshots__/User.spec.js.snap
+++ b/tests/unit/views/users/__snapshots__/User.spec.js.snap
@@ -1,15 +1,15 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`User.vue renders correctly 1`] = `
-
-
-
-
-
Back
-
+
-
-
-
+
+
+
`;
diff --git a/tests/unit/views/users/__snapshots__/Users.spec.js.snap b/tests/unit/views/users/__snapshots__/Users.spec.js.snap
index 5ae65591..5bfbf127 100644
--- a/tests/unit/views/users/__snapshots__/Users.spec.js.snap
+++ b/tests/unit/views/users/__snapshots__/Users.spec.js.snap
@@ -1,15 +1,15 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Users.vue renders correctly 1`] = `
-
-
-
-
-
-
-
-
+
+
+
`;