Skip to content

Commit 7ecbc7a

Browse files
committed
AUI 0.2.41 & SD 1.2.26
1 parent 79c1b09 commit 7ecbc7a

11 files changed

Lines changed: 48 additions & 32 deletions

File tree

readme.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver
150150

151151
== Changelog ==
152152

153+
= 1.2.44 - 2025-06-TBD =
154+
* Merge AUI 0.2.41 & SD 1.2.26 - CHANGED
155+
153156
= 1.2.43 - 2025-08-25 =
154157
* escape disable_greedy argument value in profile and profile header shortcodes - FIXED
155158

vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
add_action('after_setup_theme', function () {
1717
global $ayecode_ui_version,$ayecode_ui_file_key;
18-
$this_version = "0.2.40";
18+
$this_version = "0.2.41";
1919
if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
2020
$ayecode_ui_version = $this_version ;
2121
$ayecode_ui_file_key = wp_hash( __FILE__ );

vendor/ayecode/wp-ayecode-ui/change-log.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
= 0.2.41 - 2025-08-28 =
2+
* .btn-translucent-primary class don't reflects theme color palette - FIXED
3+
* .text-* class don't reflects theme color palette - FIXED
4+
15
= 0.2.40 - 2025-07-27 =
26
* .sr-only with BS5 forces to display hidden label - FIXED
37
* FontAwesome 7 compatibility changes - CHANGED

vendor/ayecode/wp-ayecode-ui/example-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: AyeCode UI
44
Plugin URI: https://ayecode.io/
55
Description: This is an example plugin to test AyeCode UI Quickly.
6-
Version: 0.2.40
6+
Version: 0.2.41
77
Author: AyeCode Ltd
88
Author URI: https://userswp.io
99
License: GPL-2.0+

vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AyeCode_UI_Settings {
3535
*
3636
* @var string
3737
*/
38-
public $version = '0.2.40';
38+
public $version = '0.2.41';
3939

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

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

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

1527-
15281529
// button hover
15291530
$output .= $prefix . ' .btn-'.esc_attr($type).':hover{';
15301531
$output .= '
15311532
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);
15321533
}
15331534
';
15341535

1535-
15361536
if ( $aui_bs5 ) {
1537+
// translucent primary
1538+
if ( $type == 'primary' ) {
1539+
$output .= $prefix . ' .btn-translucent-primary{color:rgb(var(--bs-primary-rgb));}';
1540+
$output .= $prefix . ' .btn-translucent-primary:hover,' . $prefix . ' .btn-translucent-primary:focus,' . $prefix . ' .btn-translucent-primary.focus{background-color: rgb(var(--bs-primary-rgb));}';
1541+
}
1542+
15371543
// $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).'; }';
15381544
$output .= 'html body {--bs-'.esc_attr($type).': '.esc_attr($color_code).'; }';
15391545
$output .= 'html body {--bs-'.esc_attr($type).'-rgb: '.$rgb.'; }';

vendor/ayecode/wp-super-duper/change-log.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
= 1.2.26 - 2025-08-28 =
2+
* In some cases it shows $ml_md not found notice - FIXED
3+
14
= 1.2.25 - 2025-08-07 =
25
* Divi 5 don't renders add shortcode button in code block - FIXED
36

vendor/ayecode/wp-super-duper/sd-functions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2387,19 +2387,19 @@ function sd_build_aui_class( $args ) {
23872387
}
23882388
if ( isset( $args['mr_md'] ) && $args['mr_md'] !== '' ) {
23892389
$classes[] = $p_mr . 'md-' . sanitize_html_class( $args['mr_md'] );
2390-
$mt_md = $args['mr_md'];
2390+
$mr_md = $args['mr_md'];
23912391
} else {
23922392
$mr_md = null;
23932393
}
23942394
if ( isset( $args['mb_md'] ) && $args['mb_md'] !== '' ) {
23952395
$classes[] = 'mb-md-' . sanitize_html_class( $args['mb_md'] );
2396-
$mt_md = $args['mb_md'];
2396+
$mb_md = $args['mb_md'];
23972397
} else {
23982398
$mb_md = null;
23992399
}
24002400
if ( isset( $args['ml_md'] ) && $args['ml_md'] !== '' ) {
24012401
$classes[] = $p_ml . 'md-' . sanitize_html_class( $args['ml_md'] );
2402-
$mt_md = $args['ml_md'];
2402+
$ml_md = $args['ml_md'];
24032403
} else {
24042404
$ml_md = null;
24052405
}

vendor/ayecode/wp-super-duper/sd-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @wordpress-plugin
66
* Plugin Name: Super Duper - Examples
77
* Description: This is a Hello World test plugin for WP Super Duper Class.
8-
* Version: 1.2.25
8+
* Version: 1.2.26
99
* Author: AyeCode
1010
* Author URI: https://ayecode.io
1111
* Text Domain: super-duper

vendor/ayecode/wp-super-duper/wp-super-duper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
if ( ! class_exists( 'WP_Super_Duper' ) ) {
77

8-
define( 'SUPER_DUPER_VER', '1.2.25' );
8+
define( 'SUPER_DUPER_VER', '1.2.26' );
99

1010
/**
1111
* A Class to be able to create a Widget, Shortcode or Block to be able to output content for WordPress.

vendor/composer/installed.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,20 @@
5959
},
6060
{
6161
"name": "ayecode/wp-ayecode-ui",
62-
"version": "0.2.40",
63-
"version_normalized": "0.2.40.0",
62+
"version": "0.2.41",
63+
"version_normalized": "0.2.41.0",
6464
"source": {
6565
"type": "git",
6666
"url": "https://github.com/AyeCode/wp-ayecode-ui.git",
67-
"reference": "028a50c61263a5942949512184d1a4b2f3d37067"
67+
"reference": "126dc664ede0627f264c1de73fbb9964f3cf08d1"
6868
},
6969
"dist": {
7070
"type": "zip",
71-
"url": "https://api.github.com/repos/AyeCode/wp-ayecode-ui/zipball/028a50c61263a5942949512184d1a4b2f3d37067",
72-
"reference": "028a50c61263a5942949512184d1a4b2f3d37067",
71+
"url": "https://api.github.com/repos/AyeCode/wp-ayecode-ui/zipball/126dc664ede0627f264c1de73fbb9964f3cf08d1",
72+
"reference": "126dc664ede0627f264c1de73fbb9964f3cf08d1",
7373
"shasum": ""
7474
},
75-
"time": "2025-07-24T10:52:44+00:00",
75+
"time": "2025-08-28T13:37:44+00:00",
7676
"type": "library",
7777
"installation-source": "dist",
7878
"autoload": {
@@ -101,7 +101,7 @@
101101
],
102102
"support": {
103103
"issues": "https://github.com/AyeCode/wp-ayecode-ui/issues",
104-
"source": "https://github.com/AyeCode/wp-ayecode-ui/tree/0.2.40"
104+
"source": "https://github.com/AyeCode/wp-ayecode-ui/tree/0.2.41"
105105
},
106106
"install-path": "../ayecode/wp-ayecode-ui"
107107
},
@@ -206,24 +206,24 @@
206206
},
207207
{
208208
"name": "ayecode/wp-super-duper",
209-
"version": "1.2.25",
210-
"version_normalized": "1.2.25.0",
209+
"version": "1.2.26",
210+
"version_normalized": "1.2.26.0",
211211
"source": {
212212
"type": "git",
213213
"url": "https://github.com/AyeCode/wp-super-duper.git",
214-
"reference": "ed938064db6a8e6b1b8bb2c0f35b6025e9d9a1b6"
214+
"reference": "474c159decb11aa43d1ba2df661d4d8704dc577d"
215215
},
216216
"dist": {
217217
"type": "zip",
218-
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/ed938064db6a8e6b1b8bb2c0f35b6025e9d9a1b6",
219-
"reference": "ed938064db6a8e6b1b8bb2c0f35b6025e9d9a1b6",
218+
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/474c159decb11aa43d1ba2df661d4d8704dc577d",
219+
"reference": "474c159decb11aa43d1ba2df661d4d8704dc577d",
220220
"shasum": ""
221221
},
222222
"require": {
223223
"composer/installers": "~1.0",
224224
"php": ">=5.4.0"
225225
},
226-
"time": "2025-08-07T09:35:38+00:00",
226+
"time": "2025-08-28T13:41:16+00:00",
227227
"type": "library",
228228
"installation-source": "dist",
229229
"autoload": {
@@ -255,7 +255,7 @@
255255
],
256256
"support": {
257257
"issues": "https://github.com/AyeCode/wp-super-duper/issues",
258-
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.25"
258+
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.26"
259259
},
260260
"install-path": "../ayecode/wp-super-duper"
261261
},

0 commit comments

Comments
 (0)