button.php
2 years ago
checkbox.php
2 years ago
collapse.php
2 years ago
colorpicker.php
2 years ago
component-wrapper.php
2 years ago
dimensions.php
2 years ago
f-select.php
2 years ago
fselect.php
2 years ago
iconpicker.php
2 years ago
input.php
2 years ago
list-table-heading.php
2 years ago
list-table-item.php
2 years ago
list-table.php
2 years ago
notice.php
2 years ago
pagination.php
2 years ago
popup.php
2 years ago
radio.php
2 years ago
repeater-item.php
2 years ago
repeater.php
2 years ago
select.php
2 years ago
switcher.php
2 years ago
tabs-panel.php
2 years ago
tabs.php
2 years ago
textarea.php
2 years ago
time.php
2 years ago
title.php
2 years ago
wp-media.php
2 years ago
switcher.php
34 lines
| 1 | <cx-vui-component-wrapper |
| 2 | :elementId="currentId" |
| 3 | :label="label" |
| 4 | :description="description" |
| 5 | :wrapper-css="wrapperCss" |
| 6 | :preventWrap="preventWrap" |
| 7 | v-if="isVisible()" |
| 8 | > |
| 9 | <div |
| 10 | tabIndex="0" |
| 11 | :id="currentId" |
| 12 | :class="{ |
| 13 | 'cx-vui-switcher': true, |
| 14 | 'cx-vui-switcher--disabled': this.disabled, |
| 15 | 'cx-vui-switcher--on': this.isOn, |
| 16 | 'cx-vui-switcher--off': ! this.isOn, |
| 17 | 'cx-vui-switcher--in-focus': this.inFocus |
| 18 | }" |
| 19 | @keyup.enter="handleEnter" |
| 20 | @focus="handleFocus" |
| 21 | @blur="handleBlur" |
| 22 | @click="switchState" |
| 23 | > |
| 24 | <input |
| 25 | type="hidden" |
| 26 | checked="checked" |
| 27 | class="cx-vui-switcher__input" |
| 28 | :name="name" |
| 29 | :value="currentValue" |
| 30 | > |
| 31 | <div class="cx-vui-switcher__panel"></div> |
| 32 | <div class="cx-vui-switcher__trigger"></div> |
| 33 | </div> |
| 34 | </cx-vui-component-wrapper> |