| @@ -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, |