Plugin Directory

Changeset 3390546


Ignore:
Timestamp:
11/05/2025 02:48:20 PM (4 months ago)
Author:
xpro
Message:

V 1.4.19.1 – 05 Oct 2025

  • Fix: Added missing unit options in The Icon Box Widget.
Location:
xpro-elementor-addons/trunk
Files:
4 edited

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
    16
    27= V 1.4.19 – 05 Oct 2025
  • xpro-elementor-addons/trunk/readme.txt

    r3390467 r3390546  
    11=== Xpro Addons — 140+ Widgets for Elementor ===
    22Plugin Name: Xpro Addons For Elementor (140+ Widgets & Free Theme Builder)
    3 Version: 1.4.19
     3Version: 1.4.19.1
    44Contributors: Xpro
    55Tags: elementor, widgets for elementor, elementor widgets, addons for elementor, woocommerce elementor
     
    266266== Changelog ==
    267267
     268= V 1.4.19.1 – 05 Oct 2025
     269
     270- Fix: Added missing unit options in The Icon Box Widget.
     271
     272
    268273= V 1.4.19 – 05 Oct 2025
    269274
  • xpro-elementor-addons/trunk/widgets/icon-box/icon-box.php

    r3255986 r3390546  
    602602                'label'      => __( 'Size', 'xpro-elementor-addons' ),
    603603                'type'       => Controls_Manager::SLIDER,
    604                 'size_units' => array( 'px' ),
     604                'size_units' => array( 'px', '%' ),
    605605                'range'      => array(
    606606                    'px' => array(
    607607                        'min' => 5,
    608608                        'max' => 300,
     609                    ),
     610                    '%' => array(
     611                        'min' => 1,
     612                        'max' => 100,
    609613                    ),
    610614                ),
     
    690694                    'unit' => 'px',
    691695                ),
    692                 'size_units'     => array( 'px', 'vh' ),
     696                'size_units'     => array( 'px', 'vh', '%' ),
    693697                'range'          => array(
    694698                    'px' => array(
     
    697701                    ),
    698702                    'vh' => array(
     703                        'min' => 1,
     704                        'max' => 100,
     705                    ),
     706                    '%' => array(
    699707                        'min' => 1,
    700708                        'max' => 100,
  • xpro-elementor-addons/trunk/xpro-elementor-addons.php

    r3390467 r3390546  
    44 * Description: A complete Elementor Addons Pack to enhance your web designing experience. Create amazing websites with 50+ FREE Widgets, Extensions & more.
    55 * Plugin URI:  https://elementor.wpxpro.com/
    6  * Version:     1.4.19
     6 * Version:     1.4.19.1
    77 * Author:      Xpro
    88 * Author URI:  https://www.wpxpro.com/
     
    1414defined( 'ABSPATH' ) || die();
    1515
    16 define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.19' );
     16define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.19.1' );
    1717define( 'XPRO_ELEMENTOR_ADDONS__FILE__', __FILE__ );
    1818define( 'XPRO_ELEMENTOR_ADDONS_BASE', plugin_basename( __FILE__ ) );
     
    6666     * @var string The plugin version.
    6767     */
    68     const VERSION = '1.4.19';
     68    const VERSION = '1.4.19.1';
    6969
    7070    /**
Note: See TracChangeset for help on using the changeset viewer.