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
time.php
59 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 | <span :class="controlClasses"> |
| 10 | <vue-timepicker |
| 11 | v-model="currentValue" |
| 12 | @keyup.enter="handleEnter" |
| 13 | @keyup="handleKeyup" |
| 14 | @keypress="handleKeypress" |
| 15 | @keydown="handleKeydown" |
| 16 | @focus="handleFocus" |
| 17 | @blur="handleBlur" |
| 18 | @input="handleInput" |
| 19 | @change="handleChange" |
| 20 | @open="handleOpen" |
| 21 | @close="handleClose" |
| 22 | @error="handleError" |
| 23 | |
| 24 | :id="currentId" |
| 25 | :input-class="controlClasses" |
| 26 | :name="name" |
| 27 | :placeholder="placeholder" |
| 28 | :autocomplete="autocomplete" |
| 29 | :size="size" |
| 30 | :autofocus="autofocus" |
| 31 | :format="format" |
| 32 | :minute-interval="minuteInterval" |
| 33 | :second-interval="secondInterval" |
| 34 | :hide-clear-button="hideClearButton" |
| 35 | :disabled="disabled" |
| 36 | :close-on-complete="closeOnComplete" |
| 37 | :auto-scroll="autoScroll" |
| 38 | :hour-range="hourRange" |
| 39 | :minute-range="minuteRange" |
| 40 | :second-range="secondRange" |
| 41 | :hide-disabled-hours="hideDisabledHours" |
| 42 | :hide-disabled-minutes="hideDisabledMinutes" |
| 43 | :hide-disabled-seconds="hideDisabledSeconds" |
| 44 | :hide-disabled-items="hideDisabledItems" |
| 45 | :advanced-keyboard="advancedKeyboard" |
| 46 | :blur-delay="blurDelay" |
| 47 | :manual-input="manualDnput" |
| 48 | :manual-input-timeout="manualInputTimeout" |
| 49 | :hide-dropdown="hideDropdown" |
| 50 | :fixed-dropdown-button="fixedDropdownButton" |
| 51 | :drop-direction="dropDirection" |
| 52 | :container-id="containerId" |
| 53 | :drop-offset-height="dropOffsetHeight" |
| 54 | :lazy="lazy" |
| 55 | :debug-mode="debugMode" |
| 56 | ></vue-timepicker> |
| 57 | </span> |
| 58 | </cx-vui-component-wrapper> |
| 59 |