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 | assets/build/blocks/tabs/block.json +318 -28 2.9.1 → 2.14.0 View file →
@@ -31,8 +31,12 @@
31 31 "block_id": {
32 32 "type": "string",
33 33 "default": ""
34 34 },
35 + "blockVersion": {
36 + "type": "number",
37 + "default": ""
38 + },
35 39 "className": {
36 40 "type": "string",
37 41 "default": ""
38 42 },
@@ -47,8 +51,12 @@
47 51 "clickedTabIndex": {
48 52 "type": "number",
49 53 "default": 0
50 54 },
55 + "tabMenusBackgroundColor": {
56 + "type": "string",
57 + "default": ""
58 + },
51 59 "tabPositionChange": {
52 60 "type": "boolean",
53 61 "default": false
54 62 },
@@ -99,8 +107,12 @@
99 107 "activeColorOptions": {
100 108 "type": "string",
101 109 "default": "background"
102 110 },
111 + "enableHoverSwitch": {
112 + "type": "boolean",
113 + "default": false
114 + },
103 115 "tabMenuAlign": {
104 116 "type": "string",
105 117 "default": ""
106 118 },
@@ -127,8 +139,12 @@
127 139 "tabBackgroundColor": {
128 140 "type": "string",
129 141 "default": "#F9F9F9"
130 142 },
143 + "contentBackgroundColor": {
144 + "type": "string",
145 + "default": ""
146 + },
131 147 "tabActiveBackgroundColor": {
132 148 "type": "string",
133 149 "default": "#61CE70"
134 150 },
@@ -141,18 +157,14 @@
141 157 "default": "#0A0909"
142 158 },
143 159 "subTitleTextColor": {
144 160 "type": "string",
145 - "default": "#74777C"
161 + "default": "#3A3A3A "
146 162 },
147 163 "subTitleTextActiveColor": {
148 164 "type": "string",
149 - "default": "#74777C"
165 + "default": "#3A3A3A"
150 166 },
151 - "contentBackgroundColor": {
152 - "type": "string",
153 - "default": "#ffffff00"
154 - },
155 167 "activeBorderColor": {
156 168 "type": "string",
157 169 "default": "#61CE70"
158 170 },
@@ -303,8 +315,16 @@
303 315 "iconBgColor": {
304 316 "type": "string",
305 317 "default": ""
306 318 },
319 + "iconHoverColor": {
320 + "type": "string",
321 + "default": ""
322 + },
323 + "iconHoverBgColor": {
324 + "type": "string",
325 + "default": ""
326 + },
307 327 "iconPadding": {
308 328 "type": "object",
309 329 "default": {
310 330 "isLinked": true,
@@ -315,30 +335,70 @@
315 335 "left": "",
316 336 "unit": "px"
317 337 }
318 338 },
319 - "iconBorderRadius": {
339 + "iconBorder": {
320 340 "type": "object",
321 341 "default": {
322 - "isLinked": true,
323 - "common": "",
324 - "top": "",
325 - "right": "",
326 - "bottom": "",
327 - "left": "",
328 - "unit": "px"
342 + "borderStyle": "default",
343 + "borderStyleH": "default",
344 + "borderColor": "",
345 + "borderColorH": "",
346 + "isLinkedWidth": true,
347 + "isLinkedWidthTablet": true,
348 + "isLinkedWidthMobile": true,
349 + "commonWidth": "",
350 + "topWidth": "",
351 + "rightWidth": "",
352 + "bottomWidth": "",
353 + "leftWidth": "",
354 + "unitWidth": "px",
355 + "isLinkedWidthH": true,
356 + "isLinkedWidthHTablet": true,
357 + "isLinkedWidthHMobile": true,
358 + "commonWidthH": "",
359 + "topWidthH": "",
360 + "rightWidthH": "",
361 + "bottomWidthH": "",
362 + "leftWidthH": "",
363 + "unitWidthH": "px",
364 + "isLinkedRadius": true,
365 + "commonRadius": "",
366 + "topRadius": "",
367 + "rightRadius": "",
368 + "bottomRadius": "",
369 + "leftRadius": "",
370 + "unitRadius": "px",
371 + "isLinkedRadiusH": true,
372 + "isLinkedRadiusHTablet": true,
373 + "isLinkedRadiusHMobile": true,
374 + "commonRadiusH": "",
375 + "topRadiusH": "",
376 + "leftRadiusH": "",
377 + "unitRadiusH": "px",
378 + "transitionDuration": ""
329 379 }
330 380 },
331 - "iconBorderWidth": {
381 + "iconBoxShadow": {
332 382 "type": "object",
333 383 "default": {
334 - "isLinked": true,
335 - "common": "",
336 - "top": "",
337 - "right": "",
338 - "bottom": "",
339 - "left": "",
340 - "unit": "px"
384 + "preset": "",
385 + "shadowType": "default",
386 + "shadow": "",
387 + "horizontal": "",
388 + "vertical": "",
389 + "blur": "",
390 + "spread": "",
391 + "color": "",
392 + "presetH": "",
393 + "shadowTypeH": "default",
394 + "shadowH": "",
395 + "horizontalH": "",
396 + "verticalH": "",
397 + "blurH": "",
398 + "spreadH": "",
399 + "colorH": "",
400 + "transitionDuration": "0"
341 401 }
342 402 },
343 403 "iconSize": {
344 404 "type": "number",
@@ -389,10 +449,14 @@
389 449 "type": "number",
390 450 "default": 0
391 451 },
392 452 "iconPosition": {
393 - "type": "string",
394 - "default": "left"
453 + "type": "object",
454 + "default": {
455 + "value": "left",
456 + "valueTablet": "",
457 + "valueMobile": ""
458 + }
395 459 },
396 460 "tabsMenuPositioning": {
397 461 "type": "object",
398 462 "default": {
@@ -400,12 +464,44 @@
400 464 "valueTablet": "",
401 465 "valueMobile": ""
402 466 }
403 467 },
468 + "tabsMenuDirection": {
469 + "type": "object",
470 + "default": {
471 + "value": "row",
472 + "valueTablet": "",
473 + "valueMobile": ""
474 + }
475 + },
476 + "tabsWidthType": {
477 + "type": "object",
478 + "default": {
479 + "value": "auto",
480 + "valueTablet": "",
481 + "valueMobile": ""
482 + }
483 + },
484 + "tabsContentWidthType": {
485 + "type": "object",
486 + "default": {
487 + "value": "auto",
488 + "valueTablet": "",
489 + "valueMobile": ""
490 + }
491 + },
492 + "tabWrap": {
493 + "type": "object",
494 + "default": {
495 + "value": "wrap",
496 + "valueTablet": "",
497 + "valueMobile": ""
498 + }
499 + },
404 500 "tabMenuAlignment": {
405 501 "type": "object",
406 502 "default": {
407 - "value": "",
503 + "value": "center",
408 504 "valueTablet": "",
409 505 "valueMobile": ""
410 506 }
411 507 },
@@ -416,8 +512,154 @@
416 512 "valueTablet": "",
417 513 "valueMobile": ""
418 514 }
419 515 },
516 + "tabMenusMargin": {
517 + "type": "object",
518 + "default": {
519 + "isLinked": true,
520 + "isLinkedTablet": true,
521 + "isLinkedMobile": true,
522 + "common": "",
523 + "top": "",
524 + "right": "",
525 + "bottom": "",
526 + "left": "",
527 + "unit": "px",
528 + "commonTablet": "",
529 + "topTablet": "",
530 + "rightTablet": "",
531 + "bottomTablet": "",
532 + "leftTablet": "",
533 + "unitTablet": "",
534 + "commonMobile": "",
535 + "topMobile": "",
536 + "rightMobile": "",
537 + "bottomMobile": "",
538 + "leftMobile": "",
539 + "unitMobile": ""
540 + }
541 + },
542 + "tabMenusPadding": {
543 + "type": "object",
544 + "default": {
545 + "isLinked": true,
546 + "isLinkedTablet": true,
547 + "isLinkedMobile": true,
548 + "common": "",
549 + "top": "",
550 + "right": "",
551 + "bottom": "",
552 + "left": "",
553 + "unit": "px",
554 + "commonTablet": "",
555 + "topTablet": "",
556 + "rightTablet": "",
557 + "bottomTablet": "",
558 + "leftTablet": "",
559 + "unitTablet": "",
560 + "commonMobile": "",
561 + "topMobile": "",
562 + "rightMobile": "",
563 + "bottomMobile": "",
564 + "leftMobile": "",
565 + "unitMobile": ""
566 + }
567 + },
568 + "tabMenusBorder": {
569 + "type": "object",
570 + "default": {
571 + "borderStyle": "default",
572 + "borderStyleH": "default",
573 + "borderColor": "",
574 + "borderColorH": "",
575 + "isLinkedWidth": true,
576 + "isLinkedWidthTablet": true,
577 + "isLinkedWidthMobile": true,
578 + "commonWidth": "",
579 + "commonWidthTablet": "",
580 + "commonWidthMobile": "",
581 + "topWidth": "",
582 + "rightWidth": "",
583 + "bottomWidth": "",
584 + "leftWidth": "",
585 + "topWidthTablet": "",
586 + "rightWidthTablet": "",
587 + "bottomWidthTablet": "",
588 + "leftWidthTablet": "",
589 + "topWidthMobile": "",
590 + "rightWidthMobile": "",
591 + "bottomWidthMobile": "",
592 + "leftWidthMobile": "",
593 + "unitWidth": "px",
594 + "unitWidthTablet": "",
595 + "unitWidthMobile": "",
596 + "isLinkedWidthH": true,
597 + "isLinkedWidthHTablet": true,
598 + "isLinkedWidthHMobile": true,
599 + "commonWidthH": "",
600 + "commonWidthHTablet": "",
601 + "commonWidthHMobile": "",
602 + "topWidthH": "",
603 + "rightWidthH": "",
604 + "bottomWidthH": "",
605 + "leftWidthH": "",
606 + "topWidthHTablet": "",
607 + "rightWidthHTablet": "",
608 + "bottomWidthHTablet": "",
609 + "leftWidthHTablet": "",
610 + "topWidthHMobile": "",
611 + "rightWidthHMobile": "",
612 + "bottomWidthHMobile": "",
613 + "leftWidthHMobile": "",
614 + "unitWidthH": "px",
615 + "unitWidthHTablet": "",
616 + "unitWidthHMobile": "",
617 + "isLinkedRadius": true,
618 + "isLinkedRadiusTablet": true,
619 + "isLinkedRadiusMobile": true,
620 + "commonRadius": "",
621 + "commonRadiusTablet": "",
622 + "commonRadiusMobile": "",
623 + "topRadius": "",
624 + "rightRadius": "",
625 + "bottomRadius": "",
626 + "leftRadius": "",
627 + "topRadiusTablet": "",
628 + "rightRadiusTablet": "",
629 + "bottomRadiusTablet": "",
630 + "leftRadiusTablet": "",
631 + "topRadiusMobile": "",
632 + "rightRadiusMobile": "",
633 + "bottomRadiusMobile": "",
634 + "leftRadiusMobile": "",
635 + "unitRadius": "px",
636 + "unitRadiusTablet": "",
637 + "unitRadiusMobile": "",
638 + "isLinkedRadiusH": true,
639 + "isLinkedRadiusHTablet": true,
640 + "isLinkedRadiusHMobile": true,
641 + "commonRadiusH": "",
642 + "commonRadiusHTablet": "",
643 + "commonRadiusHMobile": "",
644 + "topRadiusH": "",
645 + "rightRadiusH": "",
646 + "bottomRadiusH": "",
647 + "leftRadiusH": "",
648 + "topRadiusHTablet": "",
649 + "rightRadiusHTablet": "",
650 + "bottomRadiusHTablet": "",
651 + "leftRadiusHTablet": "",
652 + "topRadiusHMobile": "",
653 + "rightRadiusHMobile": "",
654 + "bottomRadiusHMobile": "",
655 + "leftRadiusHMobile": "",
656 + "unitRadiusH": "px",
657 + "unitRadiusHTablet": "",
658 + "unitRadiusHMobile": "",
659 + "transitionDuration": ""
660 + }
661 + },
420 662 "contentMargin": {
421 663 "type": "object",
422 664 "default": {
423 665 "isLinked": true,
@@ -468,13 +710,17 @@
468 710 "leftMobile": "",
469 711 "unitMobile": ""
470 712 }
471 713 },
714 + "titleTypographyGlobal": {
715 + "type": "string",
716 + "default": ""
717 + },
472 718 "titleTypography": {
473 719 "type": "object",
474 720 "default": {
475 721 "fontFamily": "",
476 - "weight": "400",
722 + "weight": "",
477 723 "transform": "",
478 724 "style": "",
479 725 "decoration": "",
480 726 "fontSize": "",
@@ -502,13 +748,17 @@
502 748 "wordSpacingUnitTablet": "px",
503 749 "wordSpacingUnitMobile": "px"
504 750 }
505 751 },
752 + "subTitleTypographyGlobal": {
753 + "type": "string",
754 + "default": ""
755 + },
506 756 "subTitleTypography": {
507 757 "type": "object",
508 758 "default": {
509 759 "fontFamily": "",
510 - "weight": "400",
760 + "weight": "",
511 761 "transform": "",
512 762 "style": "",
513 763 "decoration": "",
514 764 "fontSize": "",
@@ -1221,9 +1471,9 @@
1221 1471 "xPositionUnitMobile": "px",
1222 1472 "xPosition": "",
1223 1473 "xPositionTablet": "0",
1224 1474 "xPositionMobile": "0",
1225 - "yPositionUnit": "0",
1475 + "yPositionUnit": "px",
1226 1476 "yPositionUnitTablet": "px",
1227 1477 "yPositionUnitMobile": "px",
1228 1478 "yPosition": "0",
1229 1479 "yPositionTablet": "0",
@@ -1261,8 +1511,34 @@
1261 1511 "colorH": "",
1262 1512 "transitionDuration": "0"
1263 1513 }
1264 1514 },
1515 + "_gsapAnimation": {
1516 + "type": "object",
1517 + "default": {
1518 + "animationType": "none",
1519 + "duration": 1,
1520 + "delay": 0,
1521 + "triggerType": "scroll",
1522 + "ease": "none",
1523 + "x": 0,
1524 + "y": 0,
1525 + "rotation": 0,
1526 + "rotationY": 0,
1527 + "opacity": 1,
1528 + "xTo": 0,
1529 + "yTo": 0,
1530 + "rotationTo": 0,
1531 + "rotationYTo": 0,
1532 + "opacityTo": 1,
1533 + "easeTo": "none",
1534 + "loops": false,
1535 + "numberOfRepeat": 0,
1536 + "isSmooth": true,
1537 + "startPoint": 80,
1538 + "endPoint": 10
1539 + }
1540 + },
1265 1541 "_hide_on_desktop": {
1266 1542 "type": "boolean",
1267 1543 "default": false
1268 1544 },
@@ -1276,7 +1552,21 @@
1276 1552 },
1277 1553 "_custom_css": {
1278 1554 "type": "string",
1279 1555 "default": ""
1556 + },
1557 + "_animation_element_trigger": {
1558 + "type": "array",
1559 + "default": [],
1560 + "items": {
1561 + "type": "object"
1562 + }
1563 + },
1564 + "_animation_page_trigger": {
1565 + "type": "array",
1566 + "default": [],
1567 + "items": {
1568 + "type": "object"
1569 + }
1280 1570 }
1281 1571 }
1282 1572 }