Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver

== Changelog ==

= 1.2.44 - 2025-06-TBD =
* Merge AUI 0.2.41 & SD 1.2.26 - CHANGED

= 1.2.43 - 2025-08-25 =
* escape disable_greedy argument value in profile and profile header shortcodes - FIXED

Expand Down
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
add_action('after_setup_theme', function () {
global $ayecode_ui_version,$ayecode_ui_file_key;
$this_version = "0.2.40";
$this_version = "0.2.41";
if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
$ayecode_ui_version = $this_version ;
$ayecode_ui_file_key = wp_hash( __FILE__ );
Expand Down
4 changes: 4 additions & 0 deletions vendor/ayecode/wp-ayecode-ui/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
= 0.2.41 - 2025-08-28 =
* .btn-translucent-primary class don't reflects theme color palette - FIXED
* .text-* class don't reflects theme color palette - FIXED

= 0.2.40 - 2025-07-27 =
* .sr-only with BS5 forces to display hidden label - FIXED
* FontAwesome 7 compatibility changes - CHANGED
Expand Down
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/example-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: AyeCode UI
Plugin URI: https://ayecode.io/
Description: This is an example plugin to test AyeCode UI Quickly.
Version: 0.2.40
Version: 0.2.41
Author: AyeCode Ltd
Author URI: https://userswp.io
License: GPL-2.0+
Expand Down
12 changes: 9 additions & 3 deletions vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class AyeCode_UI_Settings {
*
* @var string
*/
public $version = '0.2.40';
public $version = '0.2.41';

/**
* Class textdomain.
Expand Down Expand Up @@ -1475,6 +1475,8 @@ public static function css_overwrite_bs5($type,$color_code,$compatibility, $hex
// pagination
$output .= $prefix . ' .pagination{--bs-pagination-hover-color: var(--bs-'.esc_attr($type).'); --bs-pagination-active-bg: var(--bs-'.esc_attr($type).');}';

} else if ( $aui_bs5 ) {
$output .= $prefix . ' .text-' . sanitize_key( $type ) . '{color: var(--bs-' . sanitize_key( $type ) . ') !important;}';
}

$output .= $prefix . ' .link-'.esc_attr($type).' {color: var(--bs-'.esc_attr($type).'-rgb) !important;}';
Expand Down Expand Up @@ -1524,16 +1526,20 @@ public static function css_overwrite_bs5($type,$color_code,$compatibility, $hex
// ';
$output .= '}';


// button hover
$output .= $prefix . ' .btn-'.esc_attr($type).':hover{';
$output .= '
box-shadow: 0 0.25rem 0.25rem 0.125rem rgb(var(--bs-'.esc_attr($type).'-rgb), .1), 0 0.375rem 0.75rem -0.125rem rgb(var(--bs-'.esc_attr($type).'-rgb) , .4);
}
';


if ( $aui_bs5 ) {
// translucent primary
if ( $type == 'primary' ) {
$output .= $prefix . ' .btn-translucent-primary{color:rgb(var(--bs-primary-rgb));}';
$output .= $prefix . ' .btn-translucent-primary:hover,' . $prefix . ' .btn-translucent-primary:focus,' . $prefix . ' .btn-translucent-primary.focus{background-color: rgb(var(--bs-primary-rgb));}';
}

// $output .= $is_var ? 'html body {--bs-'.esc_attr($type).'-rgb: '.$color_code.'; }' : 'html body {--bs-'.esc_attr($type).'-rgb: '.self::hex_to_rgb($color_code).'; }';
$output .= 'html body {--bs-'.esc_attr($type).': '.esc_attr($color_code).'; }';
$output .= 'html body {--bs-'.esc_attr($type).'-rgb: '.$rgb.'; }';
Expand Down
3 changes: 3 additions & 0 deletions vendor/ayecode/wp-super-duper/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
= 1.2.26 - 2025-08-28 =
* In some cases it shows $ml_md not found notice - FIXED

= 1.2.25 - 2025-08-07 =
* Divi 5 don't renders add shortcode button in code block - FIXED

Expand Down
6 changes: 3 additions & 3 deletions vendor/ayecode/wp-super-duper/sd-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -2387,19 +2387,19 @@ function sd_build_aui_class( $args ) {
}
if ( isset( $args['mr_md'] ) && $args['mr_md'] !== '' ) {
$classes[] = $p_mr . 'md-' . sanitize_html_class( $args['mr_md'] );
$mt_md = $args['mr_md'];
$mr_md = $args['mr_md'];
} else {
$mr_md = null;
}
if ( isset( $args['mb_md'] ) && $args['mb_md'] !== '' ) {
$classes[] = 'mb-md-' . sanitize_html_class( $args['mb_md'] );
$mt_md = $args['mb_md'];
$mb_md = $args['mb_md'];
} else {
$mb_md = null;
}
if ( isset( $args['ml_md'] ) && $args['ml_md'] !== '' ) {
$classes[] = $p_ml . 'md-' . sanitize_html_class( $args['ml_md'] );
$mt_md = $args['ml_md'];
$ml_md = $args['ml_md'];
} else {
$ml_md = null;
}
Expand Down
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-super-duper/sd-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @wordpress-plugin
* Plugin Name: Super Duper - Examples
* Description: This is a Hello World test plugin for WP Super Duper Class.
* Version: 1.2.25
* Version: 1.2.26
* Author: AyeCode
* Author URI: https://ayecode.io
* Text Domain: super-duper
Expand Down
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-super-duper/wp-super-duper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

if ( ! class_exists( 'WP_Super_Duper' ) ) {

define( 'SUPER_DUPER_VER', '1.2.25' );
define( 'SUPER_DUPER_VER', '1.2.26' );

/**
* A Class to be able to create a Widget, Shortcode or Block to be able to output content for WordPress.
Expand Down
28 changes: 14 additions & 14 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,20 @@
},
{
"name": "ayecode/wp-ayecode-ui",
"version": "0.2.40",
"version_normalized": "0.2.40.0",
"version": "0.2.41",
"version_normalized": "0.2.41.0",
"source": {
"type": "git",
"url": "https://github.com/AyeCode/wp-ayecode-ui.git",
"reference": "028a50c61263a5942949512184d1a4b2f3d37067"
"reference": "126dc664ede0627f264c1de73fbb9964f3cf08d1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AyeCode/wp-ayecode-ui/zipball/028a50c61263a5942949512184d1a4b2f3d37067",
"reference": "028a50c61263a5942949512184d1a4b2f3d37067",
"url": "https://api.github.com/repos/AyeCode/wp-ayecode-ui/zipball/126dc664ede0627f264c1de73fbb9964f3cf08d1",
"reference": "126dc664ede0627f264c1de73fbb9964f3cf08d1",
"shasum": ""
},
"time": "2025-07-24T10:52:44+00:00",
"time": "2025-08-28T13:37:44+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -101,7 +101,7 @@
],
"support": {
"issues": "https://github.com/AyeCode/wp-ayecode-ui/issues",
"source": "https://github.com/AyeCode/wp-ayecode-ui/tree/0.2.40"
"source": "https://github.com/AyeCode/wp-ayecode-ui/tree/0.2.41"
},
"install-path": "../ayecode/wp-ayecode-ui"
},
Expand Down Expand Up @@ -206,24 +206,24 @@
},
{
"name": "ayecode/wp-super-duper",
"version": "1.2.25",
"version_normalized": "1.2.25.0",
"version": "1.2.26",
"version_normalized": "1.2.26.0",
"source": {
"type": "git",
"url": "https://github.com/AyeCode/wp-super-duper.git",
"reference": "ed938064db6a8e6b1b8bb2c0f35b6025e9d9a1b6"
"reference": "474c159decb11aa43d1ba2df661d4d8704dc577d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/ed938064db6a8e6b1b8bb2c0f35b6025e9d9a1b6",
"reference": "ed938064db6a8e6b1b8bb2c0f35b6025e9d9a1b6",
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/474c159decb11aa43d1ba2df661d4d8704dc577d",
"reference": "474c159decb11aa43d1ba2df661d4d8704dc577d",
"shasum": ""
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.4.0"
},
"time": "2025-08-07T09:35:38+00:00",
"time": "2025-08-28T13:41:16+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -255,7 +255,7 @@
],
"support": {
"issues": "https://github.com/AyeCode/wp-super-duper/issues",
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.25"
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.26"
},
"install-path": "../ayecode/wp-super-duper"
},
Expand Down
16 changes: 8 additions & 8 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'uswerwp/userswp',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '6b806da09579ae506a9254fe1473dd8164c80363',
'reference' => '79c1b0930d187196bef4d88d12851a548dbf7a89',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -20,9 +20,9 @@
'dev_requirement' => false,
),
'ayecode/wp-ayecode-ui' => array(
'pretty_version' => '0.2.40',
'version' => '0.2.40.0',
'reference' => '028a50c61263a5942949512184d1a4b2f3d37067',
'pretty_version' => '0.2.41',
'version' => '0.2.41.0',
'reference' => '126dc664ede0627f264c1de73fbb9964f3cf08d1',
'type' => 'library',
'install_path' => __DIR__ . '/../ayecode/wp-ayecode-ui',
'aliases' => array(),
Expand All @@ -47,9 +47,9 @@
'dev_requirement' => false,
),
'ayecode/wp-super-duper' => array(
'pretty_version' => '1.2.25',
'version' => '1.2.25.0',
'reference' => 'ed938064db6a8e6b1b8bb2c0f35b6025e9d9a1b6',
'pretty_version' => '1.2.26',
'version' => '1.2.26.0',
'reference' => '474c159decb11aa43d1ba2df661d4d8704dc577d',
'type' => 'library',
'install_path' => __DIR__ . '/../ayecode/wp-super-duper',
'aliases' => array(),
Expand Down Expand Up @@ -79,7 +79,7 @@
'uswerwp/userswp' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '6b806da09579ae506a9254fe1473dd8164c80363',
'reference' => '79c1b0930d187196bef4d88d12851a548dbf7a89',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down