Changeset 3390546
- Timestamp:
- 11/05/2025 02:48:20 PM (4 months ago)
- Location:
- xpro-elementor-addons/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
widgets/icon-box/icon-box.php (modified) (3 diffs)
-
xpro-elementor-addons.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
xpro-elementor-addons/trunk/changelog.txt
r3390467 r3390546 1 2 = V 1.4.19.1 – 05 Oct 2025 3 4 - Fix: Added missing unit options in The Icon Box Widget. 5 1 6 2 7 = V 1.4.19 – 05 Oct 2025 -
xpro-elementor-addons/trunk/readme.txt
r3390467 r3390546 1 1 === Xpro Addons — 140+ Widgets for Elementor === 2 2 Plugin Name: Xpro Addons For Elementor (140+ Widgets & Free Theme Builder) 3 Version: 1.4.19 3 Version: 1.4.19.1 4 4 Contributors: Xpro 5 5 Tags: elementor, widgets for elementor, elementor widgets, addons for elementor, woocommerce elementor … … 266 266 == Changelog == 267 267 268 = V 1.4.19.1 – 05 Oct 2025 269 270 - Fix: Added missing unit options in The Icon Box Widget. 271 272 268 273 = V 1.4.19 – 05 Oct 2025 269 274 -
xpro-elementor-addons/trunk/widgets/icon-box/icon-box.php
r3255986 r3390546 602 602 'label' => __( 'Size', 'xpro-elementor-addons' ), 603 603 'type' => Controls_Manager::SLIDER, 604 'size_units' => array( 'px' ),604 'size_units' => array( 'px', '%' ), 605 605 'range' => array( 606 606 'px' => array( 607 607 'min' => 5, 608 608 'max' => 300, 609 ), 610 '%' => array( 611 'min' => 1, 612 'max' => 100, 609 613 ), 610 614 ), … … 690 694 'unit' => 'px', 691 695 ), 692 'size_units' => array( 'px', 'vh' ),696 'size_units' => array( 'px', 'vh', '%' ), 693 697 'range' => array( 694 698 'px' => array( … … 697 701 ), 698 702 'vh' => array( 703 'min' => 1, 704 'max' => 100, 705 ), 706 '%' => array( 699 707 'min' => 1, 700 708 'max' => 100, -
xpro-elementor-addons/trunk/xpro-elementor-addons.php
r3390467 r3390546 4 4 * Description: A complete Elementor Addons Pack to enhance your web designing experience. Create amazing websites with 50+ FREE Widgets, Extensions & more. 5 5 * Plugin URI: https://elementor.wpxpro.com/ 6 * Version: 1.4.19 6 * Version: 1.4.19.1 7 7 * Author: Xpro 8 8 * Author URI: https://www.wpxpro.com/ … … 14 14 defined( 'ABSPATH' ) || die(); 15 15 16 define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.19 ' );16 define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.19.1' ); 17 17 define( 'XPRO_ELEMENTOR_ADDONS__FILE__', __FILE__ ); 18 18 define( 'XPRO_ELEMENTOR_ADDONS_BASE', plugin_basename( __FILE__ ) ); … … 66 66 * @var string The plugin version. 67 67 */ 68 const VERSION = '1.4.19 ';68 const VERSION = '1.4.19.1'; 69 69 70 70 /**
Note: See TracChangeset
for help on using the changeset viewer.