PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 2.1.8
JetFormBuilder — Dynamic Blocks Form Builder v2.1.8
3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 3.0.0 3.0.0.1 3.0.0.2 3.0.0.3 3.0.1 3.0.1.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.0.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.3.1 3.3.4 3.3.4.1 3.3.4.2 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.6 3.4.7 3.4.7.1 3.5.0 3.5.1 3.5.1.1 3.5.1.2 3.5.2 3.5.2.1 3.5.3 3.5.4 3.5.5 3.5.6 3.5.6.1 3.5.6.2 3.5.6.3 3.6.0
jetformbuilder / framework / vue-ui / components / select.php
jetformbuilder / framework / vue-ui / components Last commit date
button.php 3 years ago checkbox.php 3 years ago collapse.php 3 years ago colorpicker.php 3 years ago component-wrapper.php 3 years ago dimensions.php 3 years ago f-select.php 3 years ago fselect.php 3 years ago iconpicker.php 3 years ago input.php 3 years ago list-table-heading.php 3 years ago list-table-item.php 3 years ago list-table.php 3 years ago notice.php 3 years ago pagination.php 3 years ago popup.php 3 years ago radio.php 3 years ago repeater-item.php 3 years ago repeater.php 3 years ago select.php 3 years ago switcher.php 3 years ago tabs-panel.php 3 years ago tabs.php 3 years ago textarea.php 3 years ago time.php 3 years ago title.php 3 years ago wp-media.php 3 years ago
select.php
33 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 <select
10 :id="currentId"
11 :placeholder="placeholder"
12 :disabled="disabled"
13 :readonly="readonly"
14 :name="name"
15 :multiple="multiple"
16 v-model="currentValue"
17 :class="controlClasses()"
18 @focus="handleFocus"
19 @blur="handleBlur"
20 @change="handleInput"
21 >
22 <option
23 v-if="placeholder"
24 value=""
25 disabled
26 >{{ placeholder }}</option>
27 <option
28 v-for="option in options"
29 :value="option.value"
30 :selected="isOptionSelected( option )"
31 >{{ option.label }}</option>
32 </select>
33 </cx-vui-component-wrapper>