refactor: view fixes and changes, update packages, add e2e sidebar tests

This commit is contained in:
woothu
2020-07-16 11:55:13 +02:00
parent 5a23cd1890
commit 8c14ca9331
11 changed files with 2719 additions and 1105 deletions
+47 -2
View File
@@ -175,6 +175,7 @@
horizontal
:options="options"
placeholder="Please select"
custom
/>
<CSelect
label="Select"
@@ -202,6 +203,50 @@
</CCol>
</CRow>
</template>
<CRow form class="form-group">
<CCol tag="label" sm="3" class="col-form-label">
Switch checkboxes
</CCol>
<CCol sm="9">
<CSwitch
class="mr-1"
color="primary"
:checked="true"
/>
<CSwitch
class="mr-1"
color="success"
:checked="true"
variant="outline"
/>
<CSwitch
class="mr-1"
color="warning"
:checked="true"
variant="opposite"
/>
<CSwitch
class="mr-1"
color="danger"
:checked="true"
shape="pill"
/>
<CSwitch
class="mr-1"
color="info"
:checked="true"
shape="pill"
variant="outline"
/>
<CSwitch
class="mr-1"
color="dark"
:checked="true"
shape="pill"
variant="opposite"
/>
</CCol>
</CRow>
<template v-for="(name, key) in radioNames">
<CRow form class="form-group" :key="name">
<CCol sm="3">
@@ -533,10 +578,10 @@
autocomplete="email"
>
<template #prepend>
<CButton color="primary"><CIcon name="cib-facebook" height="14"/></CButton>
<CButton color="primary"><CIcon name="cib-facebook"/></CButton>
</template>
<template #append>
<CButton color="primary"><CIcon name="cib-twitter" height="14"/></CButton>
<CButton color="primary"><CIcon name="cib-twitter"/></CButton>
</template>
</CInput>
</CCardBody>