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
component-wrapper.php
29 lines
| 1 | <div |
| 2 | :class="wrapperClasses()" v-if="isVisible() && ! preventWrap" |
| 3 | > |
| 4 | <div |
| 5 | class="cx-vui-component__meta" |
| 6 | v-if="this.label || this.description" |
| 7 | > |
| 8 | <label |
| 9 | class="cx-vui-component__label" |
| 10 | v-if="this.label" |
| 11 | :for="elementId" |
| 12 | v-html="this.label" |
| 13 | ></label> |
| 14 | <div |
| 15 | class="cx-vui-component__desc" |
| 16 | v-if="this.description" |
| 17 | v-html="this.description" |
| 18 | ></div> |
| 19 | </div> |
| 20 | <div class="cx-vui-component__control"> |
| 21 | <slot></slot> |
| 22 | </div> |
| 23 | </div> |
| 24 | <div |
| 25 | :class="wrapperClassesRaw" |
| 26 | v-else-if="isVisible()" |
| 27 | > |
| 28 | <slot></slot> |
| 29 | </div> |