PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.4.7
JetFormBuilder — Dynamic Blocks Form Builder v3.4.7
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 / modules / framework / vue-ui / components / notice.php
jetformbuilder / modules / framework / vue-ui / components Last commit date
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
notice.php
38 lines
1 <div class="cx-vui-notices">
2 <transition-group name="cx-vui-notices" tag="div">
3 <div
4 v-for="( item, itemID ) in stack"
5 :class="[
6 'cx-vui-notice',
7 'cx-vui-notice--' + item.type,
8 ]"
9 :key="'item-' + itemID"
10 >
11 <div
12 :class="[
13 'cx-vui-notice__icon',
14 'cx-vui-notice__icon--' + item.type,
15 ]"
16 v-html="getIcon( item.type )"
17 ></div>
18 <div class="cx-vui-notice__content">
19 <div
20 class="cx-vui-notice__title"
21 v-if="item.title"
22 v-html="item.title"
23 ></div>
24 <div
25 class="cx-vui-notice__message"
26 v-if="item.message"
27 v-html="item.message"
28 ></div>
29 </div>
30 <div
31 class="cx-vui-notice__close"
32 @click="destroyItem( itemID )"
33 >
34 <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 1.61074L9.61074 8L16 14.3893L14.3893 16L8 9.61074L1.61074 16L0 14.3893L6.38926 8L0 1.61074L1.61074 0L8 6.38926L14.3893 0L16 1.61074Z"/></svg>
35 </div>
36 </div>
37 </transition-group>
38 </div>