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
repeater.php
22 lines
| 1 | <div |
| 2 | class="cx-vui-repeater" |
| 3 | tabindex="0" |
| 4 | @focus="inFocus = true" |
| 5 | @blur="inFocus = false" |
| 6 | @keyup.alt.78.stop="handleClick" |
| 7 | v-if="isVisible()" |
| 8 | > |
| 9 | <div class="cx-vui-repeater__items"> |
| 10 | <slot></slot> |
| 11 | </div> |
| 12 | <div class="cx-vui-repeater__actions"> |
| 13 | <cx-vui-button |
| 14 | :button-style="buttonStyle" |
| 15 | :size="buttonSize" |
| 16 | @click="handleClick" |
| 17 | ><span slot="label">{{ buttonLabel }}</span></cx-vui-button> |
| 18 | <i class="cx-vui-repeater__tip" v-if="inFocus"> |
| 19 | Or press <kbd v-if="!isMac">alt</kbd><kbd v-if="isMac">option</kbd>+<kbd>n</kbd> to add new item |
| 20 | </i> |
| 21 | </div> |
| 22 | </div> |