test: fix unit tests, update snapshots
This commit is contained in:
@@ -5,6 +5,7 @@ node_modules
|
|||||||
|
|
||||||
/tests/e2e/reports/
|
/tests/e2e/reports/
|
||||||
selenium-debug.log
|
selenium-debug.log
|
||||||
|
chromedriver.log
|
||||||
|
|
||||||
# local env files
|
# local env files
|
||||||
.env.local
|
.env.local
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
presets: [
|
presets: [
|
||||||
[ "@vue/app" ]
|
['@babel/preset-env']
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
+7
-10
@@ -8,25 +8,22 @@ module.exports = {
|
|||||||
transform: {
|
transform: {
|
||||||
'^.+\\.vue$': 'vue-jest',
|
'^.+\\.vue$': 'vue-jest',
|
||||||
'.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
|
'.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
|
||||||
'^.+\\.jsx?$': '<rootDir>/node_modules/babel-jest'
|
'^.+\\.(js|jsx)?$': '<rootDir>/node_modules/babel-jest'
|
||||||
},
|
},
|
||||||
transformIgnorePatterns: ["/node_modules/(?!@coreui/icons)"],
|
transformIgnorePatterns: ['/node_modules/(?!@coreui/icons/vue|coreui)'],
|
||||||
moduleNameMapper: {
|
moduleNameMapper: {
|
||||||
'^@/(.*)$': '<rootDir>/src/$1'
|
'^@/(.*)$': '<rootDir>/src/$1'
|
||||||
},
|
},
|
||||||
snapshotSerializers: [
|
snapshotSerializers: [
|
||||||
'jest-serializer-vue'
|
'jest-serializer-vue'
|
||||||
],
|
],
|
||||||
testMatch: [
|
testMatch: ['<rootDir>/tests/unit/**/*.spec.js'],
|
||||||
'<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))',
|
|
||||||
'<rootDir>/tests/unit/Dashboard.spec.js'
|
|
||||||
],
|
|
||||||
verbose: true,
|
verbose: true,
|
||||||
testURL: "http://localhost/",
|
testURL: 'http://localhost/',
|
||||||
collectCoverage: true,
|
collectCoverage: true,
|
||||||
collectCoverageFrom: [
|
collectCoverageFrom: [
|
||||||
"src/**/*.{js,vue}",
|
'src/**/*.{js,vue}',
|
||||||
"!**/node_modules/**"
|
'!**/node_modules/**'
|
||||||
],
|
],
|
||||||
coverageReporters: ["html", "text-summary"]
|
coverageReporters: ['html', 'text-summary']
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
// empty custom assertion needed for git to keep track of the folder
|
// empty custom assertion needed for git to keep track of the folder
|
||||||
|
module.exports.assertion = function () {}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
// empty custom command needed for git to keep track of the folder
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
// empty page-object needed for git to keep track of the folder
|
||||||
@@ -1,7 +1,9 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`TheFooter.vue renders correctly 1`] = `
|
exports[`TheFooter.vue renders correctly 1`] = `
|
||||||
<cfooter-stub>
|
<cfooter-stub
|
||||||
|
tag="footer"
|
||||||
|
>
|
||||||
<div>
|
<div>
|
||||||
<a
|
<a
|
||||||
href="https://coreui.io"
|
href="https://coreui.io"
|
||||||
|
|||||||
@@ -2,13 +2,16 @@
|
|||||||
|
|
||||||
exports[`TheHeader.vue renders correctly 1`] = `
|
exports[`TheHeader.vue renders correctly 1`] = `
|
||||||
<cheader-stub
|
<cheader-stub
|
||||||
|
colorscheme="light"
|
||||||
fixed="true"
|
fixed="true"
|
||||||
light="true"
|
light=""
|
||||||
|
tag="header"
|
||||||
withsubheader="true"
|
withsubheader="true"
|
||||||
>
|
>
|
||||||
<ctoggler
|
<ctoggler-stub
|
||||||
class="c-header-toggler ml-3"
|
class="c-header-toggler ml-3"
|
||||||
in-header=""
|
inheader="true"
|
||||||
|
tag="button"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<img
|
<img
|
||||||
@@ -19,7 +22,7 @@ exports[`TheHeader.vue renders correctly 1`] = `
|
|||||||
width="97"
|
width="97"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cheadernav
|
<cheadernav-stub
|
||||||
class="d-md-down-none mr-auto"
|
class="d-md-down-none mr-auto"
|
||||||
>
|
>
|
||||||
<cheadernavitem-stub
|
<cheadernavitem-stub
|
||||||
@@ -60,9 +63,9 @@ exports[`TheHeader.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
Settings
|
Settings
|
||||||
</cheadernavitem-stub>
|
</cheadernavitem-stub>
|
||||||
</cheadernav>
|
</cheadernav-stub>
|
||||||
|
|
||||||
<cheadernav
|
<cheadernav-stub
|
||||||
class="mr-4"
|
class="mr-4"
|
||||||
>
|
>
|
||||||
<cheadernavitem-stub
|
<cheadernavitem-stub
|
||||||
@@ -108,7 +111,7 @@ exports[`TheHeader.vue renders correctly 1`] = `
|
|||||||
</cheadernavitem-stub>
|
</cheadernavitem-stub>
|
||||||
|
|
||||||
<theheaderdropdownaccnt-stub />
|
<theheaderdropdownaccnt-stub />
|
||||||
</cheadernav>
|
</cheadernav-stub>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="c-subheader px-3"
|
class="c-subheader px-3"
|
||||||
|
|||||||
@@ -3,9 +3,11 @@
|
|||||||
exports[`TheHeaderDropdownAccnt.vue renders correctly 1`] = `
|
exports[`TheHeaderDropdownAccnt.vue renders correctly 1`] = `
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
addmenuclasses="pt-0"
|
addmenuclasses="pt-0"
|
||||||
|
caret="true"
|
||||||
class="c-header-nav-items"
|
class="c-header-nav-items"
|
||||||
nav="true"
|
flip="true"
|
||||||
nocaret="true"
|
nav=""
|
||||||
|
no-caret=""
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
togglertext="Dropdown"
|
togglertext="Dropdown"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -3,8 +3,10 @@
|
|||||||
exports[`TheSidebar.vue renders correctly 1`] = `
|
exports[`TheSidebar.vue renders correctly 1`] = `
|
||||||
<csidebar-stub
|
<csidebar-stub
|
||||||
breakpoint="lg"
|
breakpoint="lg"
|
||||||
dropdownstateonroutechange="openActive"
|
colorscheme="dark"
|
||||||
|
dropdownmode="openActive"
|
||||||
fixed="true"
|
fixed="true"
|
||||||
|
hideonmobileclick="true"
|
||||||
show="true"
|
show="true"
|
||||||
>
|
>
|
||||||
<csidebarbrand-stub
|
<csidebarbrand-stub
|
||||||
|
|||||||
@@ -4,15 +4,11 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
<div>
|
<div>
|
||||||
<widgetsdropdown-stub />
|
<widgetsdropdown-stub />
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardbody-stub>
|
||||||
titletag="h4"
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccardbody-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<crow-stub>
|
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
sm="5"
|
sm="5"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -106,12 +102,10 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
/>
|
/>
|
||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
|
|
||||||
<ccardfooter-stub
|
<ccardfooter-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="text-center"
|
class="text-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-sm-2 mb-0"
|
class="mb-sm-2 mb-0"
|
||||||
@@ -242,7 +236,9 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<widgetsbrand-stub />
|
<widgetsbrand-stub />
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="12"
|
md="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -250,16 +246,18 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Traffic & Sales"
|
headerhtml="Traffic & Sales"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
lg="6"
|
lg="6"
|
||||||
sm="12"
|
sm="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
sm="6"
|
sm="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -609,7 +607,9 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
sm="12"
|
sm="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
sm="6"
|
sm="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -784,6 +784,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
class="progress-group-icon"
|
class="progress-group-icon"
|
||||||
|
fonticontag="i"
|
||||||
height="17"
|
height="17"
|
||||||
name="socialFacebook"
|
name="socialFacebook"
|
||||||
/>
|
/>
|
||||||
@@ -828,6 +829,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
class="progress-group-icon"
|
class="progress-group-icon"
|
||||||
|
fonticontag="i"
|
||||||
height="17"
|
height="17"
|
||||||
name="socialTwitter"
|
name="socialTwitter"
|
||||||
/>
|
/>
|
||||||
@@ -872,6 +874,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
class="progress-group-icon"
|
class="progress-group-icon"
|
||||||
|
fonticontag="i"
|
||||||
height="17"
|
height="17"
|
||||||
name="socialLinkedin"
|
name="socialLinkedin"
|
||||||
/>
|
/>
|
||||||
@@ -942,6 +945,7 @@ exports[`Dashboard.vue renders correctly 1`] = `
|
|||||||
items="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]"
|
items="[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]"
|
||||||
itemsperpage="10"
|
itemsperpage="10"
|
||||||
no-sorting=""
|
no-sorting=""
|
||||||
|
responsive="true"
|
||||||
/>
|
/>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
|
|||||||
@@ -42,8 +42,6 @@ exports[`Breadcrumbs.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<ol
|
<ol
|
||||||
class="breadcrumb"
|
class="breadcrumb"
|
||||||
>
|
>
|
||||||
@@ -55,8 +53,9 @@ exports[`Breadcrumbs.vue renders correctly 1`] = `
|
|||||||
class=""
|
class=""
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
text=<b>Admin</b>
|
>
|
||||||
/>
|
<b>Admin</b>
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class="breadcrumb-item"
|
class="breadcrumb-item"
|
||||||
@@ -66,14 +65,17 @@ exports[`Breadcrumbs.vue renders correctly 1`] = `
|
|||||||
class=""
|
class=""
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
text="Manage"
|
>
|
||||||
/>
|
Manage
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class="active breadcrumb-item"
|
class="active breadcrumb-item"
|
||||||
role="presentation"
|
role="presentation"
|
||||||
>
|
>
|
||||||
<span />
|
<span>
|
||||||
|
Library
|
||||||
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
@@ -88,8 +90,9 @@ exports[`Breadcrumbs.vue renders correctly 1`] = `
|
|||||||
class=""
|
class=""
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
text="Go to dashboard"
|
>
|
||||||
/>
|
Go to dashboard
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class="breadcrumb-item"
|
class="breadcrumb-item"
|
||||||
@@ -99,8 +102,9 @@ exports[`Breadcrumbs.vue renders correctly 1`] = `
|
|||||||
class=""
|
class=""
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
text="Go to widgets"
|
>
|
||||||
/>
|
Go to widgets
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class="breadcrumb-item"
|
class="breadcrumb-item"
|
||||||
@@ -110,14 +114,17 @@ exports[`Breadcrumbs.vue renders correctly 1`] = `
|
|||||||
class=""
|
class=""
|
||||||
href="http://google.com"
|
href="http://google.com"
|
||||||
target="_self"
|
target="_self"
|
||||||
text="Go to Google"
|
>
|
||||||
/>
|
Go to Google
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class="active breadcrumb-item"
|
class="active breadcrumb-item"
|
||||||
role="presentation"
|
role="presentation"
|
||||||
>
|
>
|
||||||
<span />
|
<span>
|
||||||
|
Current page
|
||||||
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
@@ -132,8 +139,9 @@ exports[`Breadcrumbs.vue renders correctly 1`] = `
|
|||||||
class=""
|
class=""
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
text="Added"
|
>
|
||||||
/>
|
Added
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class="font-xl breadcrumb-item"
|
class="font-xl breadcrumb-item"
|
||||||
@@ -143,14 +151,17 @@ exports[`Breadcrumbs.vue renders correctly 1`] = `
|
|||||||
class=""
|
class=""
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
text="Custom"
|
>
|
||||||
/>
|
Custom
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class="active font-xl text-danger breadcrumb-item"
|
class="active font-xl text-danger breadcrumb-item"
|
||||||
role="presentation"
|
role="presentation"
|
||||||
>
|
>
|
||||||
<span />
|
<span>
|
||||||
|
Classes
|
||||||
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -39,8 +39,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -106,18 +104,17 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
Card with switch
|
Card with switch
|
||||||
|
|
||||||
<label
|
<label
|
||||||
class="float-right switch form-check-label switch-undefined switch-sm switch-pill"
|
class="float-right c-switch form-check-label c-switch-info c-switch-sm c-switch-pill"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
class="switch-input form-check-input"
|
class="c-switch-input form-check-input"
|
||||||
color="info"
|
|
||||||
data-off="Off"
|
data-off="Off"
|
||||||
data-on="On"
|
data-on="On"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
value=""
|
value=""
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
class="switch-slider"
|
class="c-switch-slider"
|
||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
</header>
|
</header>
|
||||||
@@ -125,8 +122,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -149,8 +144,7 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
Card with label
|
Card with label
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge float-right"
|
class="badge float-right badge-success"
|
||||||
color="success"
|
|
||||||
>
|
>
|
||||||
Success
|
Success
|
||||||
</span>
|
</span>
|
||||||
@@ -159,8 +153,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -183,8 +175,7 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
Card with label
|
Card with label
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge float-right badge-pill"
|
class="badge float-right badge-danger badge-pill"
|
||||||
color="danger"
|
|
||||||
>
|
>
|
||||||
42
|
42
|
||||||
</span>
|
</span>
|
||||||
@@ -193,8 +184,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -211,8 +200,7 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
class="col-sm-6 col-md-4"
|
class="col-sm-6 col-md-4"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
border-color="primary"
|
class="card border-primary"
|
||||||
class="card"
|
|
||||||
header="Card outline primary"
|
header="Card outline primary"
|
||||||
>
|
>
|
||||||
<!---->
|
<!---->
|
||||||
@@ -229,8 +217,7 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
class="col-sm-6 col-md-4"
|
class="col-sm-6 col-md-4"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
border-color="secondary"
|
class="card border-secondary"
|
||||||
class="card"
|
|
||||||
header="Card outline secondary"
|
header="Card outline secondary"
|
||||||
>
|
>
|
||||||
<!---->
|
<!---->
|
||||||
@@ -247,16 +234,13 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
class="col-sm-6 col-md-4"
|
class="col-sm-6 col-md-4"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
border-color="success"
|
class="card border-success"
|
||||||
class="card"
|
|
||||||
header="Card outline success"
|
header="Card outline success"
|
||||||
>
|
>
|
||||||
<!---->
|
<!---->
|
||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -269,8 +253,7 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
class="col-sm-6 col-md-4"
|
class="col-sm-6 col-md-4"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
border-color="info"
|
class="card border-info"
|
||||||
class="card"
|
|
||||||
>
|
>
|
||||||
<header
|
<header
|
||||||
class="card-header"
|
class="card-header"
|
||||||
@@ -280,8 +263,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -294,8 +275,7 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
class="col-sm-6 col-md-4"
|
class="col-sm-6 col-md-4"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
border-color="warning"
|
class="card border-warning"
|
||||||
class="card"
|
|
||||||
>
|
>
|
||||||
<header
|
<header
|
||||||
class="card-header"
|
class="card-header"
|
||||||
@@ -305,8 +285,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -319,8 +297,7 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
class="col-sm-6 col-md-4"
|
class="col-sm-6 col-md-4"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
border-color="danger"
|
class="card border-danger"
|
||||||
class="card"
|
|
||||||
>
|
>
|
||||||
<header
|
<header
|
||||||
class="card-header"
|
class="card-header"
|
||||||
@@ -330,8 +307,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -355,8 +330,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -376,8 +349,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -397,8 +368,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -418,8 +387,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -439,8 +406,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -460,8 +425,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -484,8 +447,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<blockquote
|
<blockquote
|
||||||
class="card-blockquote"
|
class="card-blockquote"
|
||||||
>
|
>
|
||||||
@@ -518,8 +479,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<blockquote
|
<blockquote
|
||||||
class="card-blockquote"
|
class="card-blockquote"
|
||||||
>
|
>
|
||||||
@@ -552,8 +511,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<blockquote
|
<blockquote
|
||||||
class="card-blockquote"
|
class="card-blockquote"
|
||||||
>
|
>
|
||||||
@@ -586,8 +543,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<blockquote
|
<blockquote
|
||||||
class="card-blockquote"
|
class="card-blockquote"
|
||||||
>
|
>
|
||||||
@@ -620,8 +575,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<blockquote
|
<blockquote
|
||||||
class="card-blockquote"
|
class="card-blockquote"
|
||||||
>
|
>
|
||||||
@@ -654,8 +607,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<blockquote
|
<blockquote
|
||||||
class="card-blockquote"
|
class="card-blockquote"
|
||||||
>
|
>
|
||||||
@@ -696,8 +647,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -720,8 +669,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -744,8 +691,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -768,8 +713,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -792,8 +735,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@@ -857,8 +798,6 @@ exports[`Cards.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
|
|||||||
@@ -43,8 +43,6 @@ exports[`Carousels.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div
|
<div
|
||||||
class="carousel slide"
|
class="carousel slide"
|
||||||
style="height: 400px;"
|
style="height: 400px;"
|
||||||
@@ -88,8 +86,9 @@ exports[`Carousels.vue renders correctly 1`] = `
|
|||||||
class="carousel-item"
|
class="carousel-item"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
|
blankColor="grey"
|
||||||
class="d-block w-100 h-100 img-fluid"
|
class="d-block w-100 h-100 img-fluid"
|
||||||
style="background-color: grey;"
|
style="background-color: transparent;"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
class="carousel-caption"
|
class="carousel-caption"
|
||||||
|
|||||||
@@ -43,11 +43,8 @@ exports[`Collapses.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<button
|
<button
|
||||||
class="btn"
|
class="btn btn-primary"
|
||||||
color="primary"
|
|
||||||
id="collapse1"
|
id="collapse1"
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
@@ -59,6 +56,7 @@ exports[`Collapses.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="mt-2"
|
class="mt-2"
|
||||||
style="display: none;"
|
style="display: none;"
|
||||||
|
toggler="collapse1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="card"
|
class="card"
|
||||||
@@ -67,8 +65,6 @@ exports[`Collapses.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<p
|
<p
|
||||||
class="card-text"
|
class="card-text"
|
||||||
>
|
>
|
||||||
@@ -76,8 +72,7 @@ exports[`Collapses.vue renders correctly 1`] = `
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm"
|
class="btn btn-secondary btn-sm"
|
||||||
color="secondary"
|
|
||||||
id="collapse2"
|
id="collapse2"
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
@@ -89,6 +84,7 @@ exports[`Collapses.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="mt-2"
|
class="mt-2"
|
||||||
style="display: none;"
|
style="display: none;"
|
||||||
|
toggler="collapse2"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="card"
|
class="card"
|
||||||
@@ -97,8 +93,6 @@ exports[`Collapses.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
Hello!
|
Hello!
|
||||||
</div>
|
</div>
|
||||||
<!---->
|
<!---->
|
||||||
|
|||||||
@@ -2,18 +2,14 @@
|
|||||||
|
|
||||||
exports[`Jumbotrons.vue renders correctly 1`] = `
|
exports[`Jumbotrons.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -40,10 +36,7 @@ exports[`Jumbotrons.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cjumbotron-stub
|
<cjumbotron-stub
|
||||||
header="Bootstrap 4"
|
header="Bootstrap 4"
|
||||||
lead="Bootstrap 4 Components for Vue.js 2"
|
lead="Bootstrap 4 Components for Vue.js 2"
|
||||||
@@ -73,14 +66,8 @@ exports[`Jumbotrons.vue renders correctly 1`] = `
|
|||||||
<ccol-stub
|
<ccol-stub
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -94,10 +81,7 @@ exports[`Jumbotrons.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cjumbotron-stub
|
<cjumbotron-stub
|
||||||
header="Bootstrap 4"
|
header="Bootstrap 4"
|
||||||
lead=""
|
lead=""
|
||||||
@@ -155,18 +139,14 @@ exports[`Jumbotrons.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -180,16 +160,13 @@ exports[`Jumbotrons.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cjumbotron-stub
|
<cjumbotron-stub
|
||||||
border-color="dark"
|
bordercolor="dark"
|
||||||
color="info"
|
color="info"
|
||||||
header="Bootstrap 4"
|
header="Bootstrap 4"
|
||||||
tag="div"
|
tag="div"
|
||||||
text-color="white"
|
textcolor="white"
|
||||||
>
|
>
|
||||||
<p
|
<p
|
||||||
class="lead"
|
class="lead"
|
||||||
|
|||||||
@@ -2,19 +2,15 @@
|
|||||||
|
|
||||||
exports[`ListGroups.vue renders correctly 1`] = `
|
exports[`ListGroups.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -41,19 +37,16 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Cras justo odio
|
Cras justo odio
|
||||||
@@ -64,7 +57,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Dapibus ac facilisis in
|
Dapibus ac facilisis in
|
||||||
@@ -75,7 +68,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Morbi leo risus
|
Morbi leo risus
|
||||||
@@ -86,7 +79,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Porta ac consectetur ac
|
Porta ac consectetur ac
|
||||||
@@ -97,7 +90,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Vestibulum at eros
|
Vestibulum at eros
|
||||||
@@ -111,14 +104,8 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -130,19 +117,16 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Cras justo odio
|
Cras justo odio
|
||||||
@@ -154,7 +138,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Dapibus ac facilisis in
|
Dapibus ac facilisis in
|
||||||
@@ -165,7 +149,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Morbi leo risus
|
Morbi leo risus
|
||||||
@@ -176,7 +160,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Porta ac consectetur ac
|
Porta ac consectetur ac
|
||||||
@@ -187,7 +171,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Vestibulum at eros
|
Vestibulum at eros
|
||||||
@@ -198,19 +182,15 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -224,12 +204,9 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
@@ -237,7 +214,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Cras justo odio
|
Cras justo odio
|
||||||
@@ -248,7 +225,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Dapibus ac facilisis in
|
Dapibus ac facilisis in
|
||||||
@@ -259,7 +236,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Morbi leo risus
|
Morbi leo risus
|
||||||
@@ -271,7 +248,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Porta ac consectetur ac
|
Porta ac consectetur ac
|
||||||
@@ -282,7 +259,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Vestibulum at eros
|
Vestibulum at eros
|
||||||
@@ -296,14 +273,8 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -317,12 +288,9 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
@@ -330,7 +298,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#some-link"
|
href="#some-link"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Awesome link
|
Awesome link
|
||||||
@@ -343,7 +311,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Link with active state
|
Link with active state
|
||||||
@@ -355,7 +323,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Action links are easy
|
Action links are easy
|
||||||
@@ -368,7 +336,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#foobar"
|
href="#foobar"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Disabled link
|
Disabled link
|
||||||
@@ -379,19 +347,15 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -405,12 +369,9 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
@@ -465,14 +426,8 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -486,12 +441,9 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
@@ -499,7 +451,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -525,7 +477,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -551,7 +503,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -576,19 +528,15 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -602,19 +550,16 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a default list group item
|
This is a default list group item
|
||||||
@@ -626,7 +571,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a primary list group item
|
This is a primary list group item
|
||||||
@@ -638,7 +583,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a secondary list group item
|
This is a secondary list group item
|
||||||
@@ -650,7 +595,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a success list group item
|
This is a success list group item
|
||||||
@@ -662,7 +607,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a danger list group item
|
This is a danger list group item
|
||||||
@@ -674,7 +619,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a warning list group item
|
This is a warning list group item
|
||||||
@@ -686,7 +631,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a info list group item
|
This is a info list group item
|
||||||
@@ -698,7 +643,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a light list group item
|
This is a light list group item
|
||||||
@@ -710,7 +655,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
event="click"
|
event="click"
|
||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a dark list group item
|
This is a dark list group item
|
||||||
@@ -724,14 +669,8 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -745,12 +684,9 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
@@ -758,7 +694,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a default list group item
|
This is a default list group item
|
||||||
@@ -771,7 +707,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a primary list group item
|
This is a primary list group item
|
||||||
@@ -784,7 +720,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a secondary list group item
|
This is a secondary list group item
|
||||||
@@ -797,7 +733,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a success list group item
|
This is a success list group item
|
||||||
@@ -810,7 +746,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a danger list group item
|
This is a danger list group item
|
||||||
@@ -823,7 +759,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a warning list group item
|
This is a warning list group item
|
||||||
@@ -836,7 +772,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a info list group item
|
This is a info list group item
|
||||||
@@ -849,7 +785,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a light list group item
|
This is a light list group item
|
||||||
@@ -862,7 +798,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
This is a dark list group item
|
This is a dark list group item
|
||||||
@@ -873,19 +809,15 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="12"
|
col="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -899,20 +831,15 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardgroup-stub
|
<ccardgroup-stub
|
||||||
deck="true"
|
deck="true"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub
|
||||||
headerhtml=<b>Card with list group</b>
|
headerhtml=<b>Card with list group</b>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
@@ -920,7 +847,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Cras justo odio
|
Cras justo odio
|
||||||
@@ -932,7 +859,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Dapibus ac facilisis in
|
Dapibus ac facilisis in
|
||||||
@@ -944,7 +871,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Vestibulum at eros
|
Vestibulum at eros
|
||||||
@@ -965,12 +892,10 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<ccard-stub
|
<ccard-stub
|
||||||
header=<b>Card with flush list group</b>
|
header=<b>Card with flush list group</b>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
flush="true"
|
flush="true"
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
@@ -978,7 +903,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Cras justo odio
|
Cras justo odio
|
||||||
@@ -990,7 +915,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Dapibus ac facilisis in
|
Dapibus ac facilisis in
|
||||||
@@ -1002,17 +927,14 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
Vestibulum at eros
|
Vestibulum at eros
|
||||||
</clistgroupitem-stub>
|
</clistgroupitem-stub>
|
||||||
</clistgroup-stub>
|
</clistgroup-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Quis magna Lorem anim amet ipsum do mollit sit cillum voluptate ex
|
Quis magna Lorem anim amet ipsum do mollit sit cillum voluptate ex
|
||||||
nulla tempor. Laborum consequat non elit enim exercitation cillum aliqua
|
nulla tempor. Laborum consequat non elit enim exercitation cillum aliqua
|
||||||
@@ -1027,19 +949,15 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -1051,12 +969,9 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<clistgroup-stub
|
<clistgroup-stub
|
||||||
tag="div"
|
tag="ul"
|
||||||
>
|
>
|
||||||
<clistgroupitem-stub
|
<clistgroupitem-stub
|
||||||
active="true"
|
active="true"
|
||||||
@@ -1066,7 +981,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
@@ -1104,7 +1019,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
@@ -1147,7 +1062,7 @@ exports[`ListGroups.vue renders correctly 1`] = `
|
|||||||
exactactiveclass="active"
|
exactactiveclass="active"
|
||||||
href="#"
|
href="#"
|
||||||
routertag="a"
|
routertag="a"
|
||||||
tag="div"
|
tag="li"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -2,14 +2,8 @@
|
|||||||
|
|
||||||
exports[`Navbars.vue renders correctly 1`] = `
|
exports[`Navbars.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -36,17 +30,15 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnavbar-stub
|
<cnavbar-stub
|
||||||
color="info"
|
color="info"
|
||||||
expandable="md"
|
expandable="md"
|
||||||
tag="nav"
|
tag="nav"
|
||||||
>
|
>
|
||||||
<ctoggler
|
<ctoggler-stub
|
||||||
innavbar=""
|
innavbar="true"
|
||||||
|
tag="button"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cnavbarbrand-stub
|
<cnavbarbrand-stub
|
||||||
@@ -101,10 +93,12 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
<cform-stub
|
<cform-stub
|
||||||
inline="true"
|
inline="true"
|
||||||
>
|
>
|
||||||
<cinput
|
<cinput-stub
|
||||||
class="mr-sm-2"
|
class="mr-sm-2"
|
||||||
|
lazy="400"
|
||||||
placeholder="Search"
|
placeholder="Search"
|
||||||
size="sm"
|
size="sm"
|
||||||
|
type="text"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
@@ -125,7 +119,9 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</cform-stub>
|
</cform-stub>
|
||||||
|
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
nav="true"
|
caret="true"
|
||||||
|
flip="true"
|
||||||
|
innav="true"
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
togglertext="Lang"
|
togglertext="Lang"
|
||||||
>
|
>
|
||||||
@@ -171,7 +167,9 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</cdropdown-stub>
|
</cdropdown-stub>
|
||||||
|
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
nav="true"
|
caret="true"
|
||||||
|
flip="true"
|
||||||
|
innav="true"
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
togglertext="User"
|
togglertext="User"
|
||||||
>
|
>
|
||||||
@@ -201,14 +199,8 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -222,10 +214,7 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnavbar-stub
|
<cnavbar-stub
|
||||||
color="faded"
|
color="faded"
|
||||||
light="true"
|
light="true"
|
||||||
@@ -252,14 +241,8 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -273,18 +256,16 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnavbar-stub
|
<cnavbar-stub
|
||||||
color="light"
|
color="light"
|
||||||
light="true"
|
light="true"
|
||||||
tag="nav"
|
tag="nav"
|
||||||
toggleable="sm"
|
toggleable="sm"
|
||||||
>
|
>
|
||||||
<ctoggler
|
<ctoggler-stub
|
||||||
innavbar=""
|
innavbar="true"
|
||||||
|
tag="button"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cnavbarbrand-stub
|
<cnavbarbrand-stub
|
||||||
@@ -316,14 +297,8 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -337,17 +312,15 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnavbar-stub
|
<cnavbar-stub
|
||||||
color="primary"
|
color="primary"
|
||||||
expandable="sm"
|
expandable="sm"
|
||||||
tag="nav"
|
tag="nav"
|
||||||
>
|
>
|
||||||
<ctoggler
|
<ctoggler-stub
|
||||||
innavbar=""
|
innavbar="true"
|
||||||
|
tag="button"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<ccollapse-stub
|
<ccollapse-stub
|
||||||
@@ -383,7 +356,9 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</cnavitem-stub>
|
</cnavitem-stub>
|
||||||
|
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
nav="true"
|
caret="true"
|
||||||
|
flip="true"
|
||||||
|
innav="true"
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
togglertext="Lang"
|
togglertext="Lang"
|
||||||
>
|
>
|
||||||
@@ -429,7 +404,9 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</cdropdown-stub>
|
</cdropdown-stub>
|
||||||
|
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
nav="true"
|
caret="true"
|
||||||
|
flip="true"
|
||||||
|
innav="true"
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
togglertext="User"
|
togglertext="User"
|
||||||
>
|
>
|
||||||
@@ -459,14 +436,8 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -480,10 +451,7 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnavbar-stub
|
<cnavbar-stub
|
||||||
color="light"
|
color="light"
|
||||||
light="true"
|
light="true"
|
||||||
@@ -492,10 +460,12 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
<cform-stub
|
<cform-stub
|
||||||
inline="true"
|
inline="true"
|
||||||
>
|
>
|
||||||
<cinput
|
<cinput-stub
|
||||||
class="mr-sm-2"
|
class="mr-sm-2"
|
||||||
|
lazy="400"
|
||||||
placeholder="Search"
|
placeholder="Search"
|
||||||
size="sm"
|
size="sm"
|
||||||
|
type="text"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
@@ -515,14 +485,8 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -536,10 +500,7 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnavbar-stub
|
<cnavbar-stub
|
||||||
color="light"
|
color="light"
|
||||||
light="true"
|
light="true"
|
||||||
@@ -548,9 +509,11 @@ exports[`Navbars.vue renders correctly 1`] = `
|
|||||||
<cform-stub
|
<cform-stub
|
||||||
inline="true"
|
inline="true"
|
||||||
>
|
>
|
||||||
<cinput
|
<cinput-stub
|
||||||
class="mr-sm-2"
|
class="mr-sm-2"
|
||||||
|
lazy="400"
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
|
type="text"
|
||||||
/>
|
/>
|
||||||
</cform-stub>
|
</cform-stub>
|
||||||
</cnavbar-stub>
|
</cnavbar-stub>
|
||||||
|
|||||||
@@ -2,14 +2,8 @@
|
|||||||
|
|
||||||
exports[`Navs.vue renders correctly 1`] = `
|
exports[`Navs.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -35,10 +29,7 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnav-stub>
|
<cnav-stub>
|
||||||
<cnavitem-stub
|
<cnavitem-stub
|
||||||
active="true"
|
active="true"
|
||||||
@@ -88,14 +79,8 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -109,10 +94,7 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnav-stub>
|
<cnav-stub>
|
||||||
<cnavitem-stub
|
<cnavitem-stub
|
||||||
active="true"
|
active="true"
|
||||||
@@ -169,14 +151,8 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -190,10 +166,7 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnav-stub
|
<cnav-stub
|
||||||
tabs="true"
|
tabs="true"
|
||||||
>
|
>
|
||||||
@@ -252,14 +225,8 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -273,10 +240,7 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnav-stub
|
<cnav-stub
|
||||||
pills="true"
|
pills="true"
|
||||||
>
|
>
|
||||||
@@ -329,14 +293,8 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -350,10 +308,7 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnav-stub
|
<cnav-stub
|
||||||
fill="true"
|
fill="true"
|
||||||
tabs="true"
|
tabs="true"
|
||||||
@@ -407,14 +362,8 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -428,10 +377,7 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnav-stub
|
<cnav-stub
|
||||||
justified="true"
|
justified="true"
|
||||||
tabs="true"
|
tabs="true"
|
||||||
@@ -485,14 +431,8 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -506,10 +446,7 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cnav-stub
|
<cnav-stub
|
||||||
pills="true"
|
pills="true"
|
||||||
>
|
>
|
||||||
@@ -538,8 +475,10 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
button-content="Dropdown"
|
button-content="Dropdown"
|
||||||
|
caret="true"
|
||||||
|
flip="true"
|
||||||
id="nav7_ddown"
|
id="nav7_ddown"
|
||||||
nav="true"
|
nav=""
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
togglertext="Dropdown"
|
togglertext="Dropdown"
|
||||||
>
|
>
|
||||||
@@ -581,14 +520,8 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -602,11 +535,10 @@ exports[`Navs.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
<crow-stub
|
||||||
titletag="h4"
|
gutters="true"
|
||||||
>
|
>
|
||||||
<crow-stub>
|
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="m-0"
|
class="m-0"
|
||||||
col="3"
|
col="3"
|
||||||
|
|||||||
@@ -2,14 +2,8 @@
|
|||||||
|
|
||||||
exports[`Paginations.vue renders correctly 1`] = `
|
exports[`Paginations.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -36,10 +30,7 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<h6>
|
<h6>
|
||||||
Default
|
Default
|
||||||
</h6>
|
</h6>
|
||||||
@@ -47,13 +38,16 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
<cpagination-stub
|
<cpagination-stub
|
||||||
activepage="3"
|
activepage="3"
|
||||||
align="start"
|
align="start"
|
||||||
|
arrows="true"
|
||||||
|
dots="true"
|
||||||
|
doublearrows="true"
|
||||||
firstbuttonhtml="«"
|
firstbuttonhtml="«"
|
||||||
lastbuttonhtml="»"
|
lastbuttonhtml="»"
|
||||||
limit="5"
|
limit="5"
|
||||||
nextbuttonhtml="›"
|
nextbuttonhtml="›"
|
||||||
pages="10"
|
pages="10"
|
||||||
previousbuttonhtml="‹"
|
previousbuttonhtml="‹"
|
||||||
responsive="true"
|
responsive=""
|
||||||
size="md"
|
size="md"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -66,6 +60,9 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
<cpagination-stub
|
<cpagination-stub
|
||||||
activepage="3"
|
activepage="3"
|
||||||
align="start"
|
align="start"
|
||||||
|
arrows="true"
|
||||||
|
dots="true"
|
||||||
|
doublearrows="true"
|
||||||
firstbuttonhtml="«"
|
firstbuttonhtml="«"
|
||||||
lastbuttonhtml="»"
|
lastbuttonhtml="»"
|
||||||
limit="5"
|
limit="5"
|
||||||
@@ -85,13 +82,16 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
<cpagination-stub
|
<cpagination-stub
|
||||||
activepage="3"
|
activepage="3"
|
||||||
align="start"
|
align="start"
|
||||||
|
arrows="true"
|
||||||
|
dots="true"
|
||||||
|
doublearrows="true"
|
||||||
firstbuttonhtml="«"
|
firstbuttonhtml="«"
|
||||||
lastbuttonhtml="»"
|
lastbuttonhtml="»"
|
||||||
limit="5"
|
limit="5"
|
||||||
nextbuttonhtml="›"
|
nextbuttonhtml="›"
|
||||||
pages="10"
|
pages="10"
|
||||||
previousbuttonhtml="‹"
|
previousbuttonhtml="‹"
|
||||||
responsive="true"
|
responsive=""
|
||||||
size="lg"
|
size="lg"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -104,14 +104,8 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -125,10 +119,7 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<h6>
|
<h6>
|
||||||
Left alignment (default)
|
Left alignment (default)
|
||||||
</h6>
|
</h6>
|
||||||
@@ -136,6 +127,9 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
<cpagination-stub
|
<cpagination-stub
|
||||||
activepage="3"
|
activepage="3"
|
||||||
align="start"
|
align="start"
|
||||||
|
arrows="true"
|
||||||
|
dots="true"
|
||||||
|
doublearrows="true"
|
||||||
firstbuttonhtml="«"
|
firstbuttonhtml="«"
|
||||||
lastbuttonhtml="»"
|
lastbuttonhtml="»"
|
||||||
limit="5"
|
limit="5"
|
||||||
@@ -154,6 +148,9 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
<cpagination-stub
|
<cpagination-stub
|
||||||
activepage="3"
|
activepage="3"
|
||||||
align="center"
|
align="center"
|
||||||
|
arrows="true"
|
||||||
|
dots="true"
|
||||||
|
doublearrows="true"
|
||||||
firstbuttonhtml="«"
|
firstbuttonhtml="«"
|
||||||
lastbuttonhtml="»"
|
lastbuttonhtml="»"
|
||||||
limit="5"
|
limit="5"
|
||||||
@@ -172,6 +169,9 @@ exports[`Paginations.vue renders correctly 1`] = `
|
|||||||
<cpagination-stub
|
<cpagination-stub
|
||||||
activepage="3"
|
activepage="3"
|
||||||
align="end"
|
align="end"
|
||||||
|
arrows="true"
|
||||||
|
dots="true"
|
||||||
|
doublearrows="true"
|
||||||
firstbuttonhtml="«"
|
firstbuttonhtml="«"
|
||||||
lastbuttonhtml="»"
|
lastbuttonhtml="»"
|
||||||
limit="5"
|
limit="5"
|
||||||
|
|||||||
@@ -2,14 +2,8 @@
|
|||||||
|
|
||||||
exports[`ProgressBars.vue renders correctly 1`] = `
|
exports[`ProgressBars.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -36,15 +30,12 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cprogress-stub
|
<cprogress-stub
|
||||||
animated="true"
|
animated="true"
|
||||||
max="100"
|
max="100"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="73"
|
value="73"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -94,14 +85,8 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -114,10 +99,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<h6>
|
<h6>
|
||||||
No label
|
No label
|
||||||
</h6>
|
</h6>
|
||||||
@@ -149,7 +131,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
class="mb-3"
|
class="mb-3"
|
||||||
max="50"
|
max="50"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="33.333333333"
|
value="33.333333333"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -173,20 +155,14 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
class="mb-3"
|
class="mb-3"
|
||||||
max="50"
|
max="50"
|
||||||
precision="2"
|
precision="2"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="33.333333333"
|
value="33.333333333"
|
||||||
/>
|
/>
|
||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -200,10 +176,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<h6>
|
<h6>
|
||||||
Default width
|
Default width
|
||||||
</h6>
|
</h6>
|
||||||
@@ -242,14 +215,8 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -263,10 +230,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<h6>
|
<h6>
|
||||||
Default height
|
Default height
|
||||||
</h6>
|
</h6>
|
||||||
@@ -275,7 +239,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
class="mb-3"
|
class="mb-3"
|
||||||
max="100"
|
max="100"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="75"
|
value="75"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -288,7 +252,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
height="2rem"
|
height="2rem"
|
||||||
max="100"
|
max="100"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="75"
|
value="75"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -297,7 +261,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
height="20px"
|
height="20px"
|
||||||
max="100"
|
max="100"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="75"
|
value="75"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -310,14 +274,8 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -331,10 +289,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
class="row mb-1"
|
class="row mb-1"
|
||||||
>
|
>
|
||||||
@@ -478,14 +433,8 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -499,10 +448,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cprogress-stub
|
<cprogress-stub
|
||||||
class="mb-2"
|
class="mb-2"
|
||||||
color="success"
|
color="success"
|
||||||
@@ -555,14 +501,8 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -576,10 +516,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cprogress-stub
|
<cprogress-stub
|
||||||
animated="true"
|
animated="true"
|
||||||
class="mb-2"
|
class="mb-2"
|
||||||
@@ -635,14 +572,8 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -656,10 +587,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cprogress-stub
|
<cprogress-stub
|
||||||
class="mb-3"
|
class="mb-3"
|
||||||
max="100"
|
max="100"
|
||||||
@@ -692,7 +620,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
class="mb-3"
|
class="mb-3"
|
||||||
max="100"
|
max="100"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="0"
|
value="0"
|
||||||
>
|
>
|
||||||
<cprogressbar-stub
|
<cprogressbar-stub
|
||||||
@@ -757,7 +685,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
color="primary"
|
color="primary"
|
||||||
max="100"
|
max="100"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="15"
|
value="15"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -766,7 +694,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
color="success"
|
color="success"
|
||||||
max="100"
|
max="100"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
value="30"
|
value="30"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -774,7 +702,7 @@ exports[`ProgressBars.vue renders correctly 1`] = `
|
|||||||
color="info"
|
color="info"
|
||||||
max="100"
|
max="100"
|
||||||
precision="0"
|
precision="0"
|
||||||
show-percentage=""
|
showpercentage="true"
|
||||||
striped="true"
|
striped="true"
|
||||||
value="20"
|
value="20"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -2,20 +2,16 @@
|
|||||||
|
|
||||||
exports[`Switches.vue renders correctly 1`] = `
|
exports[`Switches.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Radio switches
|
Radio switches
|
||||||
|
|
||||||
@@ -50,10 +46,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
color="primary"
|
color="primary"
|
||||||
@@ -148,20 +141,16 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch default
|
Switch default
|
||||||
|
|
||||||
@@ -178,10 +167,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</cbadge-stub>
|
</cbadge-stub>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -248,23 +234,14 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch pills
|
Switch pills
|
||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -345,23 +322,14 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
3d Switch
|
3d Switch
|
||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -442,14 +410,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
3d Switch
|
3d Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -459,10 +421,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -551,14 +510,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
3d Switch
|
3d Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -568,10 +521,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -661,14 +611,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
3d Switch
|
3d Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -678,10 +622,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -780,14 +721,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
3d Switch
|
3d Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -797,10 +732,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -908,14 +840,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
3d Switch
|
3d Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -925,10 +851,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1018,14 +941,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1035,10 +952,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1119,14 +1033,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1136,10 +1044,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1229,14 +1134,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1246,10 +1145,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1330,14 +1226,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1347,10 +1237,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1440,14 +1327,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1457,10 +1338,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1532,14 +1410,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1549,10 +1421,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1633,14 +1502,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1650,10 +1513,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1734,14 +1594,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1751,10 +1605,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1844,14 +1695,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1861,10 +1706,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -1945,14 +1787,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -1962,10 +1798,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -2055,14 +1888,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -2072,10 +1899,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -2167,14 +1991,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -2184,10 +2002,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -2286,14 +2101,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -2303,10 +2112,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -2405,14 +2211,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -2422,10 +2222,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -2533,14 +2330,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -2550,10 +2341,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -2652,14 +2440,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Switch
|
Switch
|
||||||
<small>
|
<small>
|
||||||
@@ -2669,10 +2451,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cswitch-stub
|
<cswitch-stub
|
||||||
checked="true"
|
checked="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
@@ -2779,14 +2558,8 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
md="12"
|
md="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Sizes
|
Sizes
|
||||||
|
|
||||||
@@ -2794,8 +2567,6 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub
|
||||||
class="p-0"
|
class="p-0"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<ctable-stub
|
<ctable-stub
|
||||||
class="table-align-middle mb-0"
|
class="table-align-middle mb-0"
|
||||||
@@ -2805,6 +2576,7 @@ exports[`Switches.vue renders correctly 1`] = `
|
|||||||
items="[object Object],[object Object],[object Object]"
|
items="[object Object],[object Object],[object Object]"
|
||||||
itemsperpage="10"
|
itemsperpage="10"
|
||||||
no-sorting=""
|
no-sorting=""
|
||||||
|
responsive="true"
|
||||||
striped="true"
|
striped="true"
|
||||||
/>
|
/>
|
||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
|
|||||||
@@ -4,14 +4,13 @@ exports[`Table.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
header="Table"
|
header="Table"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<ctable-stub
|
<ctable-stub
|
||||||
defaultsorter="[object Object]"
|
defaultsorter="[object Object]"
|
||||||
fields="username,registered,role,status"
|
fields="username,registered,role,status"
|
||||||
itemsperpage="5"
|
itemsperpage="5"
|
||||||
pagination="true"
|
pagination="true"
|
||||||
|
responsive="true"
|
||||||
/>
|
/>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
exports[`Tables.vue renders correctly 1`] = `
|
exports[`Tables.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
lg="6"
|
lg="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -27,7 +29,9 @@ exports[`Tables.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
lg="6"
|
lg="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -54,7 +58,9 @@ exports[`Tables.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
sm="12"
|
sm="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -72,7 +78,9 @@ exports[`Tables.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
sm="12"
|
sm="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
|
|||||||
@@ -2,20 +2,16 @@
|
|||||||
|
|
||||||
exports[`Tabs.vue renders correctly 1`] = `
|
exports[`Tabs.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
lg="6"
|
lg="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Tabs
|
Tabs
|
||||||
|
|
||||||
@@ -37,11 +33,9 @@ exports[`Tabs.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ctabs-stub
|
<ctabs-stub
|
||||||
|
fade="true"
|
||||||
tabs="true"
|
tabs="true"
|
||||||
>
|
>
|
||||||
<ctab-stub
|
<ctab-stub
|
||||||
@@ -91,24 +85,16 @@ exports[`Tabs.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Tabs
|
Tabs
|
||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ctabs-stub
|
<ctabs-stub
|
||||||
|
fade="true"
|
||||||
pills="true"
|
pills="true"
|
||||||
tabs="true"
|
tabs="true"
|
||||||
>
|
>
|
||||||
@@ -159,24 +145,16 @@ exports[`Tabs.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Tabs with icons
|
Tabs with icons
|
||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ctabs-stub
|
<ctabs-stub
|
||||||
|
fade="true"
|
||||||
tabs="true"
|
tabs="true"
|
||||||
>
|
>
|
||||||
<ctab-stub
|
<ctab-stub
|
||||||
@@ -235,25 +213,17 @@ exports[`Tabs.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Tabs with icons
|
Tabs with icons
|
||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ctabs-stub
|
<ctabs-stub
|
||||||
addtabclasses="mt-1"
|
addtabclasses="mt-1"
|
||||||
|
fade="true"
|
||||||
tabs="true"
|
tabs="true"
|
||||||
>
|
>
|
||||||
<ctab-stub
|
<ctab-stub
|
||||||
@@ -318,24 +288,16 @@ exports[`Tabs.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Tabs vertical
|
Tabs vertical
|
||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ctabs-stub
|
<ctabs-stub
|
||||||
|
fade="true"
|
||||||
pills="true"
|
pills="true"
|
||||||
tabs="true"
|
tabs="true"
|
||||||
vertical="true"
|
vertical="true"
|
||||||
|
|||||||
@@ -2,14 +2,8 @@
|
|||||||
|
|
||||||
exports[`Tooltips.vue renders correctly 1`] = `
|
exports[`Tooltips.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -43,13 +37,12 @@ exports[`Tooltips.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
<crow-stub
|
||||||
titletag="h4"
|
gutters="true"
|
||||||
>
|
>
|
||||||
<crow-stub>
|
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="4"
|
col="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
@@ -72,7 +65,7 @@ exports[`Tooltips.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
|
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="4"
|
col="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
@@ -93,41 +86,12 @@ exports[`Tooltips.vue renders correctly 1`] = `
|
|||||||
</cbutton-stub>
|
</cbutton-stub>
|
||||||
</div>
|
</div>
|
||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
|
|
||||||
<ccol-stub
|
|
||||||
col="4"
|
|
||||||
tag="div"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="text-center my-3"
|
|
||||||
>
|
|
||||||
<cbutton-stub
|
|
||||||
activeclass="active"
|
|
||||||
color="secondary"
|
|
||||||
event="click"
|
|
||||||
exactactiveclass="active"
|
|
||||||
routertag="a"
|
|
||||||
target="_self"
|
|
||||||
type="button"
|
|
||||||
>
|
|
||||||
|
|
||||||
Click me
|
|
||||||
|
|
||||||
</cbutton-stub>
|
|
||||||
</div>
|
|
||||||
</ccol-stub>
|
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -141,14 +105,13 @@ exports[`Tooltips.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
class="my-3"
|
class="my-3"
|
||||||
>
|
>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="py-4 text-center"
|
class="py-4 text-center"
|
||||||
md="4"
|
md="4"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -44,17 +44,14 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 dropdown"
|
class="m-2 dropdown"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle"
|
class="btn dropdown-toggle btn-secondary"
|
||||||
>
|
>
|
||||||
Dropdown Button
|
Dropdown Button
|
||||||
</button>
|
</button>
|
||||||
@@ -120,12 +117,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 dropdown"
|
class="m-2 dropdown"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle"
|
class="btn dropdown-toggle btn-secondary"
|
||||||
>
|
>
|
||||||
Dropdown with divider
|
Dropdown with divider
|
||||||
</button>
|
</button>
|
||||||
@@ -171,12 +167,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 dropdown"
|
class="m-2 dropdown"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle"
|
class="btn dropdown-toggle btn-secondary"
|
||||||
>
|
>
|
||||||
Dropdown with header
|
Dropdown with header
|
||||||
</button>
|
</button>
|
||||||
@@ -241,17 +236,14 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 d-inline-block dropdown"
|
class="m-2 d-inline-block dropdown"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle"
|
class="btn dropdown-toggle btn-primary"
|
||||||
>
|
>
|
||||||
Left align
|
Left align
|
||||||
</button>
|
</button>
|
||||||
@@ -290,12 +282,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-2 d-inline-block dropdown"
|
class="m-2 d-inline-block dropdown"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle"
|
class="btn dropdown-toggle btn-primary"
|
||||||
>
|
>
|
||||||
Right align
|
Right align
|
||||||
</button>
|
</button>
|
||||||
@@ -336,12 +327,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 dropup"
|
class="m-2 dropup"
|
||||||
color="info"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle"
|
class="btn dropdown-toggle btn-info"
|
||||||
>
|
>
|
||||||
Drop-Up
|
Drop-Up
|
||||||
</button>
|
</button>
|
||||||
@@ -382,12 +372,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 dropdown"
|
class="m-2 dropdown"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle"
|
class="btn dropdown-toggle btn-secondary"
|
||||||
>
|
>
|
||||||
Offset Dropdown
|
Offset Dropdown
|
||||||
</button>
|
</button>
|
||||||
@@ -428,17 +417,16 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 dropdown btn-group"
|
class="m-2 dropdown btn-group"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="btn"
|
class="btn btn-secondary"
|
||||||
>
|
>
|
||||||
Split Dropdown
|
Split Dropdown
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="dropdown-toggle dropdown-toggle-split btn"
|
class="dropdown-toggle dropdown-toggle-split btn btn-secondary"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
class="dropdown-menu"
|
class="dropdown-menu"
|
||||||
@@ -507,17 +495,14 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="dropdown"
|
class="dropdown"
|
||||||
color="link"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn btn-lg"
|
class="btn btn-lg btn-link"
|
||||||
>
|
>
|
||||||
|
|
||||||
🔍
|
🔍
|
||||||
@@ -592,17 +577,14 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 d-inline-block dropdown"
|
class="m-2 d-inline-block dropdown"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-lg"
|
class="btn dropdown-toggle btn-lg btn-secondary"
|
||||||
>
|
>
|
||||||
Large
|
Large
|
||||||
</button>
|
</button>
|
||||||
@@ -641,17 +623,16 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-2 dropdown btn-group"
|
class="m-2 dropdown btn-group"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="btn btn-lg"
|
class="btn btn-lg btn-secondary"
|
||||||
>
|
>
|
||||||
Large Split
|
Large Split
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="dropdown-toggle dropdown-toggle-split btn btn-lg"
|
class="dropdown-toggle dropdown-toggle-split btn btn-lg btn-secondary"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
class="dropdown-menu"
|
class="dropdown-menu"
|
||||||
@@ -689,12 +670,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-2 d-inline-block dropdown"
|
class="m-2 d-inline-block dropdown"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-secondary"
|
||||||
>
|
>
|
||||||
Small
|
Small
|
||||||
</button>
|
</button>
|
||||||
@@ -733,17 +713,16 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-2 dropdown btn-group"
|
class="m-2 dropdown btn-group"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm"
|
class="btn btn-sm btn-secondary"
|
||||||
>
|
>
|
||||||
Small Split
|
Small Split
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="dropdown-toggle dropdown-toggle-split btn btn-sm"
|
class="dropdown-toggle dropdown-toggle-split btn btn-sm btn-secondary"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
class="dropdown-menu"
|
class="dropdown-menu"
|
||||||
@@ -812,17 +791,14 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="m-2 dropdown"
|
class="m-2 dropdown"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle"
|
class="btn dropdown-toggle btn-primary"
|
||||||
>
|
>
|
||||||
Dropdown ARIA
|
Dropdown ARIA
|
||||||
</button>
|
</button>
|
||||||
@@ -941,16 +917,13 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-primary"
|
||||||
>
|
>
|
||||||
Primary
|
Primary
|
||||||
</button>
|
</button>
|
||||||
@@ -989,12 +962,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-secondary"
|
||||||
>
|
>
|
||||||
Secondary
|
Secondary
|
||||||
</button>
|
</button>
|
||||||
@@ -1033,12 +1005,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="success"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-success"
|
||||||
>
|
>
|
||||||
Success
|
Success
|
||||||
</button>
|
</button>
|
||||||
@@ -1077,12 +1048,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="warning"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-warning"
|
||||||
>
|
>
|
||||||
Warning
|
Warning
|
||||||
</button>
|
</button>
|
||||||
@@ -1121,12 +1091,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="danger"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-danger"
|
||||||
>
|
>
|
||||||
Danger
|
Danger
|
||||||
</button>
|
</button>
|
||||||
@@ -1165,12 +1134,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="info"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-info"
|
||||||
>
|
>
|
||||||
Info
|
Info
|
||||||
</button>
|
</button>
|
||||||
@@ -1209,12 +1177,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="light"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-light"
|
||||||
>
|
>
|
||||||
Light
|
Light
|
||||||
</button>
|
</button>
|
||||||
@@ -1253,12 +1220,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="dark"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-dark"
|
||||||
>
|
>
|
||||||
Dark
|
Dark
|
||||||
</button>
|
</button>
|
||||||
@@ -1297,12 +1263,11 @@ exports[`Dropdowns.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
class="m-0 d-inline-block dropdown"
|
class="m-0 d-inline-block dropdown"
|
||||||
color="link"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="true"
|
aria-haspopup="true"
|
||||||
class="btn dropdown-toggle btn-sm"
|
class="btn dropdown-toggle btn-sm btn-link"
|
||||||
>
|
>
|
||||||
Link
|
Link
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -1,19 +1,15 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`ButtonGroups.vue renders correctly 1`] = `
|
exports[`ButtonGroups.vue renders correctly 1`] = `
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="12"
|
col="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -40,10 +36,7 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<cbuttongroup-stub>
|
<cbuttongroup-stub>
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
@@ -195,14 +188,8 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
col="12"
|
col="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -214,10 +201,7 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<cbuttongroup-stub>
|
<cbuttongroup-stub>
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
@@ -351,14 +335,8 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
col="12"
|
col="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -369,10 +347,7 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<cbuttongroup-stub>
|
<cbuttongroup-stub>
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
@@ -402,7 +377,9 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
</cbutton-stub>
|
</cbutton-stub>
|
||||||
|
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
|
caret="true"
|
||||||
color="success"
|
color="success"
|
||||||
|
flip="true"
|
||||||
placement="bottom-start"
|
placement="bottom-start"
|
||||||
right=""
|
right=""
|
||||||
text="Menu"
|
text="Menu"
|
||||||
@@ -457,7 +434,9 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
</cbutton-stub>
|
</cbutton-stub>
|
||||||
|
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
|
caret="true"
|
||||||
color="info"
|
color="info"
|
||||||
|
flip="true"
|
||||||
placement="bottom-start"
|
placement="bottom-start"
|
||||||
right=""
|
right=""
|
||||||
split="true"
|
split="true"
|
||||||
@@ -508,14 +487,8 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
col="12"
|
col="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -527,10 +500,7 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<cbuttongroup-stub
|
<cbuttongroup-stub
|
||||||
vertical="true"
|
vertical="true"
|
||||||
@@ -580,14 +550,8 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
col="12"
|
col="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -601,10 +565,7 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cbuttontoolbar-stub
|
<cbuttontoolbar-stub
|
||||||
aria-label="Toolbar with button groups"
|
aria-label="Toolbar with button groups"
|
||||||
>
|
>
|
||||||
@@ -745,19 +706,21 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
</cbutton-stub>
|
</cbutton-stub>
|
||||||
</cbuttongroup-stub>
|
</cbuttongroup-stub>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
append-html=".00"
|
appendhtml=".00"
|
||||||
class="mb-0 w-25 mx-1"
|
class="mb-0 w-25 mx-1"
|
||||||
prepend-html="$"
|
lazy="400"
|
||||||
|
prependhtml="$"
|
||||||
size="sm"
|
size="sm"
|
||||||
|
type="text"
|
||||||
value="100"
|
value="100"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cselect
|
<cselect-stub
|
||||||
class="mb-0 w-25 mx-1"
|
class="mb-0 w-25 mx-1"
|
||||||
custom=""
|
custom="true"
|
||||||
options="Large,Medium,Small"
|
options="Large,Medium,Small"
|
||||||
prepend-html="Size"
|
prependhtml="Size"
|
||||||
size="sm"
|
size="sm"
|
||||||
value="Medium"
|
value="Medium"
|
||||||
/>
|
/>
|
||||||
@@ -839,8 +802,10 @@ exports[`ButtonGroups.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<cdropdown-stub
|
<cdropdown-stub
|
||||||
button-content="Menu"
|
button-content="Menu"
|
||||||
|
caret="true"
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
|
flip="true"
|
||||||
placement="bottom-end"
|
placement="bottom-end"
|
||||||
togglertext="Dropdown"
|
togglertext="Dropdown"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -2,14 +2,8 @@
|
|||||||
|
|
||||||
exports[`StandardButtons.vue renders correctly 1`] = `
|
exports[`StandardButtons.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Standard buttons
|
Standard buttons
|
||||||
</strong>
|
</strong>
|
||||||
@@ -32,12 +26,10 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center"
|
class="align-items-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -251,6 +243,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -482,6 +475,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -704,23 +698,14 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Outline Buttons
|
Outline Buttons
|
||||||
</strong>
|
</strong>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
Use
|
Use
|
||||||
@@ -733,6 +718,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center"
|
class="align-items-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -941,6 +927,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -1165,6 +1152,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -1381,23 +1369,14 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Ghost Buttons
|
Ghost Buttons
|
||||||
</strong>
|
</strong>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
Use
|
Use
|
||||||
@@ -1411,6 +1390,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center"
|
class="align-items-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -1619,6 +1599,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -1843,6 +1824,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -2059,23 +2041,14 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Square Buttons
|
Square Buttons
|
||||||
</strong>
|
</strong>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
Use
|
Use
|
||||||
@@ -2089,6 +2062,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center"
|
class="align-items-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -2311,6 +2285,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -2551,6 +2526,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -2782,23 +2758,14 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Pill Buttons
|
Pill Buttons
|
||||||
</strong>
|
</strong>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
Use
|
Use
|
||||||
@@ -2812,6 +2779,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center"
|
class="align-items-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -3034,6 +3002,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -3274,6 +3243,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -3505,23 +3475,14 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Sizes
|
Sizes
|
||||||
</strong>
|
</strong>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<p>
|
<p>
|
||||||
Fancy larger or smaller buttons? Add
|
Fancy larger or smaller buttons? Add
|
||||||
<code>
|
<code>
|
||||||
@@ -3536,6 +3497,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center"
|
class="align-items-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -3650,6 +3612,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -3759,6 +3722,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center mt-3"
|
class="align-items-center mt-3"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="mb-3 mb-xl-0"
|
class="mb-3 mb-xl-0"
|
||||||
@@ -3873,25 +3837,17 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
With Icons
|
With Icons
|
||||||
</strong>
|
</strong>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="align-items-center"
|
class="align-items-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="text-center mt-3"
|
class="text-center mt-3"
|
||||||
@@ -4014,24 +3970,17 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Toggle pressed state
|
Toggle pressed state
|
||||||
</strong>
|
</strong>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
<crow-stub
|
||||||
titletag="h4"
|
gutters="true"
|
||||||
>
|
>
|
||||||
<crow-stub>
|
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
class="text-center mt-3"
|
class="text-center mt-3"
|
||||||
sm="true"
|
sm="true"
|
||||||
@@ -4155,20 +4104,16 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Block Level CButtons
|
Block Level CButtons
|
||||||
</strong>
|
</strong>
|
||||||
@@ -4180,10 +4125,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
block="true"
|
block="true"
|
||||||
@@ -4290,14 +4232,8 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
tag="div"
|
tag="div"
|
||||||
xs="12"
|
xs="12"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<strong>
|
<strong>
|
||||||
Block Level CButtons
|
Block Level CButtons
|
||||||
</strong>
|
</strong>
|
||||||
@@ -4309,10 +4245,7 @@ exports[`StandardButtons.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
block="true"
|
block="true"
|
||||||
|
|||||||
@@ -6,14 +6,8 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
class="card-columns cols-2"
|
class="card-columns cols-2"
|
||||||
columns="true"
|
columns="true"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
Line Chart
|
Line Chart
|
||||||
|
|
||||||
@@ -35,10 +29,7 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cchartlineexample-stub />
|
<cchartlineexample-stub />
|
||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
@@ -46,8 +37,6 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Bar Chart"
|
headerhtml="Bar Chart"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cchartbarexample-stub />
|
<cchartbarexample-stub />
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
@@ -55,8 +44,6 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Doughnut Chart"
|
headerhtml="Doughnut Chart"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cchartdoughnutexample-stub />
|
<cchartdoughnutexample-stub />
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
@@ -64,8 +51,6 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Radar Chart"
|
headerhtml="Radar Chart"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cchartradarexample-stub />
|
<cchartradarexample-stub />
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
@@ -73,8 +58,6 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Pie Chart"
|
headerhtml="Pie Chart"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cchartpieexample-stub />
|
<cchartpieexample-stub />
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
@@ -82,8 +65,6 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Polar Area Chart"
|
headerhtml="Polar Area Chart"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cchartpolarareaexample-stub />
|
<cchartpolarareaexample-stub />
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
@@ -91,8 +72,6 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Simple line chart"
|
headerhtml="Simple line chart"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cchartlinesimple-stub
|
<cchartlinesimple-stub
|
||||||
backgroundcolor="transparent"
|
backgroundcolor="transparent"
|
||||||
@@ -106,8 +85,6 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Simple pointed chart"
|
headerhtml="Simple pointed chart"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cchartlinesimple-stub
|
<cchartlinesimple-stub
|
||||||
backgroundcolor="transparent"
|
backgroundcolor="transparent"
|
||||||
@@ -121,8 +98,6 @@ exports[`Charts.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Simple bar chart"
|
headerhtml="Simple bar chart"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cchartbarsimple-stub
|
<cchartbarsimple-stub
|
||||||
backgroundcolor="danger"
|
backgroundcolor="danger"
|
||||||
|
|||||||
@@ -19,8 +19,6 @@ exports[`Brands.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div
|
<div
|
||||||
class="row text-center"
|
class="row text-center"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -2,14 +2,8 @@
|
|||||||
|
|
||||||
exports[`CoreUIIcons.vue renders correctly 1`] = `
|
exports[`CoreUIIcons.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="cui-pencil"
|
class="cui-pencil"
|
||||||
/>
|
/>
|
||||||
@@ -45,12 +39,10 @@ exports[`CoreUIIcons.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="text-center "
|
class="text-center "
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="6"
|
col="6"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,20 +1,16 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`Alerts.vue renders correctly 1`] = `
|
exports[`Alerts.vue renders correctly 1`] = `
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="12"
|
col="12"
|
||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -41,10 +37,7 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<p />
|
<p />
|
||||||
|
|
||||||
@@ -113,14 +106,8 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -135,10 +122,7 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<calert-stub
|
<calert-stub
|
||||||
color="primary"
|
color="primary"
|
||||||
@@ -285,14 +269,8 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -302,10 +280,7 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<calert-stub
|
<calert-stub
|
||||||
color="success"
|
color="success"
|
||||||
show="true"
|
show="true"
|
||||||
@@ -343,14 +318,8 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
md="6"
|
md="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -361,10 +330,7 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<calert-stub
|
<calert-stub
|
||||||
closebutton="true"
|
closebutton="true"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
@@ -409,14 +375,8 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -427,10 +387,7 @@ exports[`Alerts.vue renders correctly 1`] = `
|
|||||||
</small>
|
</small>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<calert-stub
|
<calert-stub
|
||||||
closebutton="true"
|
closebutton="true"
|
||||||
|
|||||||
@@ -43,13 +43,10 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<h2>
|
<h2>
|
||||||
Example heading
|
Example heading
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-primary"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
New
|
New
|
||||||
</span>
|
</span>
|
||||||
@@ -58,8 +55,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
<h3>
|
<h3>
|
||||||
Example heading
|
Example heading
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-primary"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
New
|
New
|
||||||
</span>
|
</span>
|
||||||
@@ -68,8 +64,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
<h4>
|
<h4>
|
||||||
Example heading
|
Example heading
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-primary"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
New
|
New
|
||||||
</span>
|
</span>
|
||||||
@@ -78,8 +73,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
<h5>
|
<h5>
|
||||||
Example heading
|
Example heading
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-primary"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
New
|
New
|
||||||
</span>
|
</span>
|
||||||
@@ -88,8 +82,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
<h6>
|
<h6>
|
||||||
Example heading
|
Example heading
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-primary"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
New
|
New
|
||||||
</span>
|
</span>
|
||||||
@@ -100,16 +93,14 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
class="card-footer"
|
class="card-footer"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="btn"
|
class="btn btn-primary"
|
||||||
color="primary"
|
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
|
|
||||||
Notifications
|
Notifications
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge ml-2 position-static"
|
class="badge ml-2 position-static badge-light"
|
||||||
color="light"
|
|
||||||
>
|
>
|
||||||
4
|
4
|
||||||
</span>
|
</span>
|
||||||
@@ -142,60 +133,50 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-primary"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
Primary
|
Primary
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-secondary"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
Secondary
|
Secondary
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-success"
|
||||||
color="success"
|
|
||||||
>
|
>
|
||||||
Success
|
Success
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-danger"
|
||||||
color="danger"
|
|
||||||
>
|
>
|
||||||
Danger
|
Danger
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-warning"
|
||||||
color="warning"
|
|
||||||
>
|
>
|
||||||
Warning
|
Warning
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-info"
|
||||||
color="info"
|
|
||||||
>
|
>
|
||||||
Info
|
Info
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-light"
|
||||||
color="light"
|
|
||||||
>
|
>
|
||||||
Light
|
Light
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge"
|
class="badge badge-dark"
|
||||||
color="dark"
|
|
||||||
>
|
>
|
||||||
Dark
|
Dark
|
||||||
</span>
|
</span>
|
||||||
@@ -223,60 +204,50 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<span
|
<span
|
||||||
class="badge badge-pill"
|
class="badge badge-primary badge-pill"
|
||||||
color="primary"
|
|
||||||
>
|
>
|
||||||
Primary
|
Primary
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge badge-pill"
|
class="badge badge-secondary badge-pill"
|
||||||
color="secondary"
|
|
||||||
>
|
>
|
||||||
Secondary
|
Secondary
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge badge-pill"
|
class="badge badge-success badge-pill"
|
||||||
color="success"
|
|
||||||
>
|
>
|
||||||
Success
|
Success
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge badge-pill"
|
class="badge badge-danger badge-pill"
|
||||||
color="danger"
|
|
||||||
>
|
>
|
||||||
Danger
|
Danger
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge badge-pill"
|
class="badge badge-warning badge-pill"
|
||||||
color="warning"
|
|
||||||
>
|
>
|
||||||
Warning
|
Warning
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge badge-pill"
|
class="badge badge-info badge-pill"
|
||||||
color="info"
|
|
||||||
>
|
>
|
||||||
Info
|
Info
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge badge-pill"
|
class="badge badge-light badge-pill"
|
||||||
color="light"
|
|
||||||
>
|
>
|
||||||
Light
|
Light
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="badge badge-pill"
|
class="badge badge-dark badge-pill"
|
||||||
color="dark"
|
|
||||||
>
|
>
|
||||||
Dark
|
Dark
|
||||||
</span>
|
</span>
|
||||||
@@ -304,11 +275,8 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<a
|
<a
|
||||||
class="badge"
|
class="badge badge-primary"
|
||||||
color="primary"
|
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
@@ -316,8 +284,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
class="badge"
|
class="badge badge-secondary"
|
||||||
color="secondary"
|
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
@@ -325,8 +292,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
class="badge"
|
class="badge badge-success"
|
||||||
color="success"
|
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
@@ -334,8 +300,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
class="badge"
|
class="badge badge-danger"
|
||||||
color="danger"
|
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
@@ -343,8 +308,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
class="badge"
|
class="badge badge-warning"
|
||||||
color="warning"
|
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
@@ -352,8 +316,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
class="badge"
|
class="badge badge-info"
|
||||||
color="info"
|
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
@@ -361,8 +324,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
class="badge"
|
class="badge badge-light"
|
||||||
color="light"
|
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
@@ -370,8 +332,7 @@ exports[`Badges.vue renders correctly 1`] = `
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
class="badge"
|
class="badge badge-dark"
|
||||||
color="dark"
|
|
||||||
href="#"
|
href="#"
|
||||||
target="_self"
|
target="_self"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -5,19 +5,15 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
class="wrapper"
|
class="wrapper"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="12"
|
col="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<i
|
<i
|
||||||
class="fa fa-align-justify"
|
class="fa fa-align-justify"
|
||||||
/>
|
/>
|
||||||
@@ -41,10 +37,7 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
class="mr-1"
|
class="mr-1"
|
||||||
@@ -188,6 +181,9 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
|
fade="true"
|
||||||
title="Modal title"
|
title="Modal title"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -201,6 +197,9 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</cmodal-stub>
|
</cmodal-stub>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
|
fade="true"
|
||||||
size="lg"
|
size="lg"
|
||||||
title="Modal title"
|
title="Modal title"
|
||||||
>
|
>
|
||||||
@@ -215,6 +214,9 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</cmodal-stub>
|
</cmodal-stub>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
|
fade="true"
|
||||||
size="sm"
|
size="sm"
|
||||||
title="Modal title"
|
title="Modal title"
|
||||||
>
|
>
|
||||||
@@ -229,6 +231,9 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</cmodal-stub>
|
</cmodal-stub>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
|
fade="true"
|
||||||
title="Modal title"
|
title="Modal title"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -242,7 +247,10 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</cmodal-stub>
|
</cmodal-stub>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
color="success"
|
color="success"
|
||||||
|
fade="true"
|
||||||
title="Modal title"
|
title="Modal title"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -256,7 +264,10 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</cmodal-stub>
|
</cmodal-stub>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
color="warning"
|
color="warning"
|
||||||
|
fade="true"
|
||||||
title="Modal title"
|
title="Modal title"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -270,7 +281,10 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</cmodal-stub>
|
</cmodal-stub>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
color="danger"
|
color="danger"
|
||||||
|
fade="true"
|
||||||
title="Modal title"
|
title="Modal title"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -284,7 +298,10 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</cmodal-stub>
|
</cmodal-stub>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
color="info"
|
color="info"
|
||||||
|
fade="true"
|
||||||
title="Modal title"
|
title="Modal title"
|
||||||
>
|
>
|
||||||
|
|
||||||
@@ -298,9 +315,12 @@ exports[`Modals.vue renders correctly 1`] = `
|
|||||||
</cmodal-stub>
|
</cmodal-stub>
|
||||||
|
|
||||||
<cmodal-stub
|
<cmodal-stub
|
||||||
|
backdrop="true"
|
||||||
centered="true"
|
centered="true"
|
||||||
|
closeonbackdrop="true"
|
||||||
color="dark"
|
color="dark"
|
||||||
nocloseonbackdrop="true"
|
fade="true"
|
||||||
|
no-close-on-backdrop="true"
|
||||||
size="lg"
|
size="lg"
|
||||||
title="Modal title 2"
|
title="Modal title 2"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ exports[`Login.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="justify-content-center"
|
class="justify-content-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="8"
|
md="8"
|
||||||
@@ -14,13 +15,8 @@ exports[`Login.vue renders correctly 1`] = `
|
|||||||
<ccardgroup-stub>
|
<ccardgroup-stub>
|
||||||
<ccard-stub
|
<ccard-stub
|
||||||
class="p-4"
|
class="p-4"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardbody-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
|
<ccardbody-stub>
|
||||||
<cform-stub>
|
<cform-stub>
|
||||||
<h1>
|
<h1>
|
||||||
Login
|
Login
|
||||||
@@ -32,20 +28,25 @@ exports[`Login.vue renders correctly 1`] = `
|
|||||||
Sign In to your account
|
Sign In to your account
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
autocomplete="username email"
|
autocomplete="username email"
|
||||||
|
lazy="400"
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
prependhtml=<i class='cui-user'></i>
|
prependhtml=<i class='cui-user'></i>
|
||||||
|
type="text"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
autocomplete="curent-password"
|
autocomplete="curent-password"
|
||||||
|
lazy="400"
|
||||||
placeholder="Password"
|
placeholder="Password"
|
||||||
prependhtml=<i class='cui-lock-locked'></i>
|
prependhtml=<i class='cui-lock-locked'></i>
|
||||||
type="password"
|
type="password"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="6"
|
col="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -90,8 +91,6 @@ exports[`Login.vue renders correctly 1`] = `
|
|||||||
<ccard-stub
|
<ccard-stub
|
||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
class="text-white text-center bg-primary py-5 d-md-down-none"
|
class="text-white text-center bg-primary py-5 d-md-down-none"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<h2>
|
<h2>
|
||||||
Sign up
|
Sign up
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ exports[`Page404.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="w-100 justify-content-center"
|
class="w-100 justify-content-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
@@ -36,10 +37,12 @@ exports[`Page404.vue renders correctly 1`] = `
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
class="mb-3"
|
class="mb-3"
|
||||||
|
lazy="400"
|
||||||
placeholder="What are you looking for?"
|
placeholder="What are you looking for?"
|
||||||
prependhtml=<i class='cui-magnifying-glass'></i>
|
prependhtml=<i class='cui-magnifying-glass'></i>
|
||||||
|
type="text"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ exports[`Page500.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="w-100 justify-content-center"
|
class="w-100 justify-content-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
@@ -33,10 +34,12 @@ exports[`Page500.vue renders correctly 1`] = `
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
class="mb-3"
|
class="mb-3"
|
||||||
|
lazy="400"
|
||||||
placeholder="What are you looking for?"
|
placeholder="What are you looking for?"
|
||||||
prependhtml=<i class='cui-magnifying-glass'></i>
|
prependhtml=<i class='cui-magnifying-glass'></i>
|
||||||
|
type="text"
|
||||||
/>
|
/>
|
||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ exports[`Register.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<crow-stub
|
<crow-stub
|
||||||
class="w-100 justify-content-center"
|
class="w-100 justify-content-center"
|
||||||
|
gutters="true"
|
||||||
>
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="6"
|
md="6"
|
||||||
@@ -14,13 +15,9 @@ exports[`Register.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub
|
||||||
class="mx-4 mb-0"
|
class="mx-4 mb-0"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<ccardbody-stub
|
<ccardbody-stub
|
||||||
class="p-4"
|
class="p-4"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<cform-stub>
|
<cform-stub>
|
||||||
<h1>
|
<h1>
|
||||||
@@ -33,28 +30,34 @@ exports[`Register.vue renders correctly 1`] = `
|
|||||||
Create your account
|
Create your account
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
autocomplete="username"
|
autocomplete="username"
|
||||||
|
lazy="400"
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
prependhtml=<i class='cui-user'></i>
|
prependhtml=<i class='cui-user'></i>
|
||||||
|
type="text"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
autocomplete="email"
|
autocomplete="email"
|
||||||
|
lazy="400"
|
||||||
placeholder="Email"
|
placeholder="Email"
|
||||||
prepend-html="@"
|
prependhtml="@"
|
||||||
|
type="text"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
autocomplete="new-password"
|
autocomplete="new-password"
|
||||||
|
lazy="400"
|
||||||
placeholder="Password"
|
placeholder="Password"
|
||||||
prependhtml=<i class='cui-lock-locked'></i>
|
prependhtml=<i class='cui-lock-locked'></i>
|
||||||
type="password"
|
type="password"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<cinput
|
<cinput-stub
|
||||||
autocomplete="new-password"
|
autocomplete="new-password"
|
||||||
class="mb-4"
|
class="mb-4"
|
||||||
|
lazy="400"
|
||||||
placeholder="Repeat password"
|
placeholder="Repeat password"
|
||||||
prependhtml=<i class='cui-lock-locked'></i>
|
prependhtml=<i class='cui-lock-locked'></i>
|
||||||
type="password"
|
type="password"
|
||||||
@@ -77,10 +80,10 @@ exports[`Register.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<ccardfooter-stub
|
<ccardfooter-stub
|
||||||
class="p-4"
|
class="p-4"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="6"
|
col="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
|
|||||||
@@ -19,8 +19,6 @@ exports[`Colors.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div
|
<div
|
||||||
class="row"
|
class="row"
|
||||||
>
|
>
|
||||||
@@ -421,8 +419,6 @@ exports[`Colors.vue renders correctly 1`] = `
|
|||||||
<div
|
<div
|
||||||
class="card-body"
|
class="card-body"
|
||||||
>
|
>
|
||||||
<!---->
|
|
||||||
<!---->
|
|
||||||
<div
|
<div
|
||||||
class="row"
|
class="row"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,44 +1,35 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`User.vue renders correctly 1`] = `
|
exports[`User.vue renders correctly 1`] = `
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="12"
|
col="12"
|
||||||
lg="6"
|
lg="6"
|
||||||
tag="div"
|
tag="div"
|
||||||
>
|
>
|
||||||
<ccard-stub
|
<ccard-stub>
|
||||||
subtitletag="h6"
|
<ccardheader-stub>
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ccardheader-stub
|
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
|
|
||||||
User id:
|
User id:
|
||||||
|
|
||||||
</ccardheader-stub>
|
</ccardheader-stub>
|
||||||
|
|
||||||
<ccardbody-stub
|
<ccardbody-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<ctable-stub
|
<ctable-stub
|
||||||
defaultsorter="[object Object]"
|
defaultsorter="[object Object]"
|
||||||
fields="[object Object],[object Object]"
|
fields="[object Object],[object Object]"
|
||||||
fixed="true"
|
fixed="true"
|
||||||
items="[object Object]"
|
items="[object Object]"
|
||||||
itemsperpage="10"
|
itemsperpage="10"
|
||||||
small="true"
|
responsive="true"
|
||||||
|
small=""
|
||||||
striped="true"
|
striped="true"
|
||||||
/>
|
/>
|
||||||
</ccardbody-stub>
|
</ccardbody-stub>
|
||||||
|
|
||||||
<ccardfooter-stub
|
<ccardfooter-stub>
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
|
||||||
<cbutton-stub
|
<cbutton-stub
|
||||||
activeclass="active"
|
activeclass="active"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`Users.vue renders correctly 1`] = `
|
exports[`Users.vue renders correctly 1`] = `
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="12"
|
col="12"
|
||||||
tag="div"
|
tag="div"
|
||||||
@@ -11,8 +13,6 @@ exports[`Users.vue renders correctly 1`] = `
|
|||||||
bodywrapper="true"
|
bodywrapper="true"
|
||||||
headerhtml="Users"
|
headerhtml="Users"
|
||||||
name="slide"
|
name="slide"
|
||||||
subtitletag="h6"
|
|
||||||
titletag="h4"
|
|
||||||
>
|
>
|
||||||
<ctable-stub
|
<ctable-stub
|
||||||
clickablerows="true"
|
clickablerows="true"
|
||||||
@@ -23,6 +23,7 @@ exports[`Users.vue renders correctly 1`] = `
|
|||||||
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]"
|
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]"
|
||||||
itemsperpage="5"
|
itemsperpage="5"
|
||||||
pagination="[object Object]"
|
pagination="[object Object]"
|
||||||
|
responsive="true"
|
||||||
striped="true"
|
striped="true"
|
||||||
/>
|
/>
|
||||||
</ccard-stub>
|
</ccard-stub>
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
exports[`Widgets.vue renders correctly 1`] = `
|
exports[`Widgets.vue renders correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
lg="3"
|
lg="3"
|
||||||
sm="6"
|
sm="6"
|
||||||
@@ -67,7 +69,9 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
lg="3"
|
lg="3"
|
||||||
sm="6"
|
sm="6"
|
||||||
@@ -129,7 +133,93 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
|
<ccol-stub
|
||||||
|
col="12"
|
||||||
|
lg="3"
|
||||||
|
sm="6"
|
||||||
|
tag="div"
|
||||||
|
>
|
||||||
|
<cwidgeticon-stub
|
||||||
|
color="primary"
|
||||||
|
header="$1.999,50"
|
||||||
|
iconpadding="true"
|
||||||
|
text="Income"
|
||||||
|
>
|
||||||
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
|
name="settings"
|
||||||
|
width="24"
|
||||||
|
/>
|
||||||
|
</cwidgeticon-stub>
|
||||||
|
</ccol-stub>
|
||||||
|
|
||||||
|
<ccol-stub
|
||||||
|
col="12"
|
||||||
|
lg="3"
|
||||||
|
sm="6"
|
||||||
|
tag="div"
|
||||||
|
>
|
||||||
|
<cwidgeticon-stub
|
||||||
|
color="info"
|
||||||
|
header="$1.999,50"
|
||||||
|
iconpadding="true"
|
||||||
|
text="Income"
|
||||||
|
>
|
||||||
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
|
name="laptop"
|
||||||
|
width="24"
|
||||||
|
/>
|
||||||
|
</cwidgeticon-stub>
|
||||||
|
</ccol-stub>
|
||||||
|
|
||||||
|
<ccol-stub
|
||||||
|
col="12"
|
||||||
|
lg="3"
|
||||||
|
sm="6"
|
||||||
|
tag="div"
|
||||||
|
>
|
||||||
|
<cwidgeticon-stub
|
||||||
|
color="warning"
|
||||||
|
header="$1.999,50"
|
||||||
|
iconpadding="true"
|
||||||
|
text="Income"
|
||||||
|
>
|
||||||
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
|
name="moon"
|
||||||
|
width="24"
|
||||||
|
/>
|
||||||
|
</cwidgeticon-stub>
|
||||||
|
</ccol-stub>
|
||||||
|
|
||||||
|
<ccol-stub
|
||||||
|
col="12"
|
||||||
|
lg="3"
|
||||||
|
sm="6"
|
||||||
|
tag="div"
|
||||||
|
>
|
||||||
|
<cwidgeticon-stub
|
||||||
|
color="danger"
|
||||||
|
header="$1.999,50"
|
||||||
|
iconpadding="true"
|
||||||
|
text="Income"
|
||||||
|
>
|
||||||
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
|
name="bell"
|
||||||
|
width="24"
|
||||||
|
/>
|
||||||
|
</cwidgeticon-stub>
|
||||||
|
</ccol-stub>
|
||||||
|
</crow-stub>
|
||||||
|
|
||||||
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="12"
|
col="12"
|
||||||
lg="3"
|
lg="3"
|
||||||
@@ -142,6 +232,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
text="Income"
|
text="Income"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
name="settings"
|
name="settings"
|
||||||
width="24"
|
width="24"
|
||||||
/>
|
/>
|
||||||
@@ -160,6 +251,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
text="Income"
|
text="Income"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
name="laptop"
|
name="laptop"
|
||||||
width="24"
|
width="24"
|
||||||
/>
|
/>
|
||||||
@@ -178,6 +270,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
text="Income"
|
text="Income"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
name="moon"
|
name="moon"
|
||||||
width="24"
|
width="24"
|
||||||
/>
|
/>
|
||||||
@@ -196,6 +289,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
text="Income"
|
text="Income"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
name="bell"
|
name="bell"
|
||||||
width="24"
|
width="24"
|
||||||
/>
|
/>
|
||||||
@@ -203,81 +297,9 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
<ccol-stub
|
gutters="true"
|
||||||
col="12"
|
|
||||||
lg="3"
|
|
||||||
sm="6"
|
|
||||||
tag="div"
|
|
||||||
>
|
>
|
||||||
<cwidgeticon-stub
|
|
||||||
color="primary"
|
|
||||||
header="$1.999,50"
|
|
||||||
text="Income"
|
|
||||||
>
|
|
||||||
<cicon-stub
|
|
||||||
name="settings"
|
|
||||||
width="24"
|
|
||||||
/>
|
|
||||||
</cwidgeticon-stub>
|
|
||||||
</ccol-stub>
|
|
||||||
|
|
||||||
<ccol-stub
|
|
||||||
col="12"
|
|
||||||
lg="3"
|
|
||||||
sm="6"
|
|
||||||
tag="div"
|
|
||||||
>
|
|
||||||
<cwidgeticon-stub
|
|
||||||
color="info"
|
|
||||||
header="$1.999,50"
|
|
||||||
text="Income"
|
|
||||||
>
|
|
||||||
<cicon-stub
|
|
||||||
name="laptop"
|
|
||||||
width="24"
|
|
||||||
/>
|
|
||||||
</cwidgeticon-stub>
|
|
||||||
</ccol-stub>
|
|
||||||
|
|
||||||
<ccol-stub
|
|
||||||
col="12"
|
|
||||||
lg="3"
|
|
||||||
sm="6"
|
|
||||||
tag="div"
|
|
||||||
>
|
|
||||||
<cwidgeticon-stub
|
|
||||||
color="warning"
|
|
||||||
header="$1.999,50"
|
|
||||||
text="Income"
|
|
||||||
>
|
|
||||||
<cicon-stub
|
|
||||||
name="moon"
|
|
||||||
width="24"
|
|
||||||
/>
|
|
||||||
</cwidgeticon-stub>
|
|
||||||
</ccol-stub>
|
|
||||||
|
|
||||||
<ccol-stub
|
|
||||||
col="12"
|
|
||||||
lg="3"
|
|
||||||
sm="6"
|
|
||||||
tag="div"
|
|
||||||
>
|
|
||||||
<cwidgeticon-stub
|
|
||||||
color="danger"
|
|
||||||
header="$1.999,50"
|
|
||||||
text="Income"
|
|
||||||
>
|
|
||||||
<cicon-stub
|
|
||||||
name="bell"
|
|
||||||
width="24"
|
|
||||||
/>
|
|
||||||
</cwidgeticon-stub>
|
|
||||||
</ccol-stub>
|
|
||||||
</crow-stub>
|
|
||||||
|
|
||||||
<crow-stub>
|
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
col="12"
|
col="12"
|
||||||
lg="4"
|
lg="4"
|
||||||
@@ -291,6 +313,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
class="mx-5 "
|
class="mx-5 "
|
||||||
|
fonticontag="i"
|
||||||
name="settings"
|
name="settings"
|
||||||
width="24"
|
width="24"
|
||||||
/>
|
/>
|
||||||
@@ -310,6 +333,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
class="mx-5 "
|
class="mx-5 "
|
||||||
|
fonticontag="i"
|
||||||
name="laptop"
|
name="laptop"
|
||||||
width="24"
|
width="24"
|
||||||
/>
|
/>
|
||||||
@@ -329,6 +353,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
class="mx-5 "
|
class="mx-5 "
|
||||||
|
fonticontag="i"
|
||||||
name="moon"
|
name="moon"
|
||||||
width="24"
|
width="24"
|
||||||
/>
|
/>
|
||||||
@@ -352,6 +377,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="people"
|
name="people"
|
||||||
/>
|
/>
|
||||||
@@ -364,6 +390,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="userFollow"
|
name="userFollow"
|
||||||
/>
|
/>
|
||||||
@@ -376,6 +403,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="basketLoaded"
|
name="basketLoaded"
|
||||||
/>
|
/>
|
||||||
@@ -387,6 +415,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="chartPie"
|
name="chartPie"
|
||||||
/>
|
/>
|
||||||
@@ -399,6 +428,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="speedometer"
|
name="speedometer"
|
||||||
/>
|
/>
|
||||||
@@ -416,6 +446,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="people"
|
name="people"
|
||||||
/>
|
/>
|
||||||
@@ -429,6 +460,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="userFollow"
|
name="userFollow"
|
||||||
/>
|
/>
|
||||||
@@ -442,6 +474,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="basketLoaded"
|
name="basketLoaded"
|
||||||
/>
|
/>
|
||||||
@@ -455,6 +488,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="chartPie"
|
name="chartPie"
|
||||||
/>
|
/>
|
||||||
@@ -468,13 +502,16 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="speedometer"
|
name="speedometer"
|
||||||
/>
|
/>
|
||||||
</cwidgetprogressicon-stub>
|
</cwidgetprogressicon-stub>
|
||||||
</ccardgroup-stub>
|
</ccardgroup-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="2"
|
md="2"
|
||||||
sm="6"
|
sm="6"
|
||||||
@@ -487,6 +524,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="people"
|
name="people"
|
||||||
/>
|
/>
|
||||||
@@ -505,6 +543,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="userFollow"
|
name="userFollow"
|
||||||
/>
|
/>
|
||||||
@@ -523,6 +562,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="basketLoaded"
|
name="basketLoaded"
|
||||||
/>
|
/>
|
||||||
@@ -541,6 +581,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="chartPie"
|
name="chartPie"
|
||||||
/>
|
/>
|
||||||
@@ -559,6 +600,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="speedometer"
|
name="speedometer"
|
||||||
/>
|
/>
|
||||||
@@ -577,6 +619,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="speech"
|
name="speech"
|
||||||
/>
|
/>
|
||||||
@@ -584,7 +627,9 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
md="2"
|
md="2"
|
||||||
sm="6"
|
sm="6"
|
||||||
@@ -598,6 +643,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="people"
|
name="people"
|
||||||
/>
|
/>
|
||||||
@@ -617,6 +663,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="userFollow"
|
name="userFollow"
|
||||||
/>
|
/>
|
||||||
@@ -636,6 +683,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="basketLoaded"
|
name="basketLoaded"
|
||||||
/>
|
/>
|
||||||
@@ -655,6 +703,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="chartPie"
|
name="chartPie"
|
||||||
/>
|
/>
|
||||||
@@ -674,6 +723,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="speedometer"
|
name="speedometer"
|
||||||
/>
|
/>
|
||||||
@@ -693,6 +743,7 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
value="25"
|
value="25"
|
||||||
>
|
>
|
||||||
<cicon-stub
|
<cicon-stub
|
||||||
|
fonticontag="i"
|
||||||
height="36"
|
height="36"
|
||||||
name="speech"
|
name="speech"
|
||||||
/>
|
/>
|
||||||
@@ -702,7 +753,9 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
|
|
||||||
<widgetsdropdown-stub />
|
<widgetsdropdown-stub />
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
lg="3"
|
lg="3"
|
||||||
sm="6"
|
sm="6"
|
||||||
@@ -820,7 +873,9 @@ exports[`Widgets.vue renders correctly 1`] = `
|
|||||||
</ccol-stub>
|
</ccol-stub>
|
||||||
</crow-stub>
|
</crow-stub>
|
||||||
|
|
||||||
<crow-stub>
|
<crow-stub
|
||||||
|
gutters="true"
|
||||||
|
>
|
||||||
<ccol-stub
|
<ccol-stub
|
||||||
lg="2"
|
lg="2"
|
||||||
sm="4"
|
sm="4"
|
||||||
|
|||||||
Reference in New Issue
Block a user