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
textarea.php
29 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 | <textarea |
| 10 | :id="currentId" |
| 11 | :class="controlClasses" |
| 12 | :placeholder="placeholder" |
| 13 | :disabled="disabled" |
| 14 | :rows="rows" |
| 15 | :readonly="readonly" |
| 16 | :name="name" |
| 17 | :value="currentValue" |
| 18 | @keyup.enter="handleEnter" |
| 19 | @keyup="handleKeyup" |
| 20 | @keypress="handleKeypress" |
| 21 | @keydown="handleKeydown" |
| 22 | @focus="handleFocus" |
| 23 | @blur="handleBlur" |
| 24 | @input="handleInput" |
| 25 | @change="handleChange" |
| 26 | ></textarea> |
| 27 | <slot></slot> |
| 28 | </cx-vui-component-wrapper> |
| 29 |