PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.14.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.14.0
2.14.0 2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 All 81 releases
← All changes | includes/blocks/modal/attributes.php +16 -4 2.9.1 → 2.14.0 View file →
@@ -16,8 +16,12 @@
16 16 'block_id' => array(
17 17 'type' => 'string',
18 18 'default' => '',
19 19 ),
20 + 'blockVersion' => array(
21 + 'type' => 'number',
22 + 'default' => '',
23 + ),
20 24 'popupOnTop' => array(
21 25 'type' => 'boolean',
22 26 'default' => false,
23 27 ),
@@ -32,8 +36,16 @@
32 36 'enableAutoTriggerTimer' => array(
33 37 'type' => 'boolean',
34 38 'default' => false,
35 39 ),
40 + 'showAutoOnce' => array(
41 + 'type' => 'boolean',
42 + 'default' => false,
43 + ),
44 + 'showOnMouseOutOfWindow' => array(
45 + 'type' => 'boolean',
46 + 'default' => false,
47 + ),
36 48 'backdropColor' => array(
37 49 'type' => 'string',
38 50 'default' => '#000000b3',
39 51 ),
@@ -76,19 +88,19 @@
76 88 Range::get_attribute([
77 89 'attributeName' => 'panelWidth',
78 90 'attributeObjectKey' => 'value',
79 91 'isResponsive' => true,
80 - 'defaultValue' => 0,
92 + 'defaultValue' => 50,
81 93 'hasUnit' => true,
82 - 'unitDefaultValue' => 'px',
94 + 'unitDefaultValue' => '%',
83 95 ]),
84 96 Range::get_attribute([
85 97 'attributeName' => 'panelHeight',
86 98 'attributeObjectKey' => 'value',
87 99 'isResponsive' => true,
88 - 'defaultValue' => 0,
100 + 'defaultValue' => 50,
89 101 'hasUnit' => true,
90 - 'unitDefaultValue' => 'px',
102 + 'unitDefaultValue' => '%',
91 103 ]),
92 104 Range::get_attribute([
93 105 'attributeName' => 'autoTriggerTime',
94 106 'isResponsive' => false,