Skip to content

Commit

Permalink
AUI updated
Browse files Browse the repository at this point in the history
  • Loading branch information
stiofan committed Mar 19, 2024
1 parent 7dc4a46 commit 147dbfd
Show file tree
Hide file tree
Showing 19 changed files with 114 additions and 114 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions vendor/ayecode/wp-ayecode-ui/assets-v5/css/ayecode-ui.css

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ $zindex-lightbox-content: 1110 !default;
//$path-to-fonts: 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap' !default;
//$font-family-sans-serif: 'Poppins', sans-serif !default;
//$headings-color: $gray-900 !default;
$headings-color: null !default;
$headings-color: inherit !default;

$font-size-base: 1rem !default;
$font-size-lg: ($font-size-base * 1.125) !default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,10 @@ $fi-entertainment-alt: '\ea07';

@font-face {
font-family: '#{$icons-font-family}';
src:
url('#{$icons-font-path}/#{$icons-font-family}.ttf?1barpw') format('truetype'),
url('#{$icons-font-path}/#{$icons-font-family}.woff?1barpw') format('woff'),
url('#{$icons-font-path}/#{$icons-font-family}.svg?1barpw##{$icons-font-family}') format('svg');
//src:
// url('#{$icons-font-path}/#{$icons-font-family}.ttf?1barpw') format('truetype'),
// url('#{$icons-font-path}/#{$icons-font-family}.woff?1barpw') format('woff'),
// url('#{$icons-font-path}/#{$icons-font-family}.svg?1barpw##{$icons-font-family}') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
Expand Down
10 changes: 5 additions & 5 deletions vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_map.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
&:hover {
box-shadow: 0 0 0 .625rem rgba($primary, .25);
}

&.leaflet-marker-shadow { display: none; }
}

Expand All @@ -79,12 +79,12 @@
// Popup

.leaflet-popup-content-wrapper {
min-width: 17.5rem;
padding: 0;
overflow: hidden;
.leaflet-popup-content {
width: 100% !important;
margin: 0 !important;
width: 220px !important;
margin:10px !important;
padding:3px !important;
color: $body-color;
}
}
Expand Down Expand Up @@ -150,4 +150,4 @@
position: fixed;
z-index: $zindex-fixed + 1;
}
}
}
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.8";
$this_version = "0.2.9";
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.9 - 2024-03-19 =
* BS5 styles can call broken font awesome url from css - FIXED
* Plugin check review - DONE

= 0.2.8 - 2024-02-22 =
* Gallery padding made slider images taller than single images - FIXED
* aui_modal_iframe() function not loading iframe when bs5 selected - FIXED
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 @@ -41,7 +41,7 @@ public function maybe_show_examples(){
wp_head();
echo "</head>";
echo "<body class='bsui'>";
echo $this->get_examples();
echo $this->get_examples(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
wp_footer();
echo "</body>";
exit;
Expand Down
130 changes: 62 additions & 68 deletions vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions vendor/ayecode/wp-ayecode-ui/includes/class-aui.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function render( $items = array(), $echo = false ) {
}

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand All @@ -126,7 +126,7 @@ public function alert( $args = array(), $echo = false ) {
$output = AUI_Component_Alert::get( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand All @@ -146,7 +146,7 @@ public function input( $args = array(), $echo = false ) {
$output = AUI_Component_Input::input( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand All @@ -166,7 +166,7 @@ public function textarea( $args = array(), $echo = false ) {
$output = AUI_Component_Input::textarea( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand All @@ -186,7 +186,7 @@ public function button( $args = array(), $echo = false ) {
$output = AUI_Component_Button::get( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand Down Expand Up @@ -220,7 +220,7 @@ public function badge( $args = array(), $echo = false ) {
$output = AUI_Component_Button::get( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand All @@ -240,7 +240,7 @@ public function dropdown( $args = array(), $echo = false ) {
$output = AUI_Component_Dropdown::get( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand All @@ -260,7 +260,7 @@ public function select( $args = array(), $echo = false ) {
$output = AUI_Component_Input::select( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand All @@ -280,7 +280,7 @@ public function radio( $args = array(), $echo = false ) {
$output = AUI_Component_Input::radio( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand All @@ -300,7 +300,7 @@ public function pagination( $args = array(), $echo = false ) {
$output = AUI_Component_Pagination::get( $args );

if ( $echo ) {
echo $output;
echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}else{
return $output;
}
Expand Down
6 changes: 3 additions & 3 deletions vendor/ayecode/wp-ayecode-ui/includes/inc/bs4-js.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function check() {
}

function aui_select2_locale() {
var aui_select2_params = <?php echo self::select2_locale(); ?>;
var aui_select2_params = <?php echo self::select2_locale(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;

return {
'language': {
Expand Down Expand Up @@ -150,7 +150,7 @@ function aui_init_select2(){
* @param selector string The .class selector
*/
function aui_time_ago(selector) {
var aui_timeago_params = <?php echo self::timeago_locale(); ?>;
var aui_timeago_params = <?php echo self::timeago_locale(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;

var templates = {
prefix: aui_timeago_params.prefix_ago,
Expand Down Expand Up @@ -242,7 +242,7 @@ function aui_init_tooltips(){
function aui_init_flatpickr(){
if ( typeof jQuery.fn.flatpickr === "function" && !$aui_doing_init_flatpickr) {
$aui_doing_init_flatpickr = true;
<?php if ( ! empty( $flatpickr_locale ) ) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?>
<?php if ( ! empty( $flatpickr_locale ) ) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>);}catch(err){console.log(err.message);}<?php } ?>
jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr();
}
$aui_doing_init_flatpickr = false;
Expand Down
6 changes: 3 additions & 3 deletions vendor/ayecode/wp-ayecode-ui/includes/inc/bs5-js.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function check() {
}

function aui_select2_locale() {
var aui_select2_params = <?php echo self::select2_locale(); ?>;
var aui_select2_params = <?php echo self::select2_locale(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;

return {
theme: "bootstrap-5",
Expand Down Expand Up @@ -159,7 +159,7 @@ function aui_init_select2(){
* @param selector string The .class selector
*/
function aui_time_ago(selector) {
var aui_timeago_params = <?php echo self::timeago_locale(); ?>;
var aui_timeago_params = <?php echo self::timeago_locale(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;

var templates = {
prefix: aui_timeago_params.prefix_ago,
Expand Down Expand Up @@ -252,7 +252,7 @@ function aui_init_tooltips(){
function aui_init_flatpickr(){
if ( typeof jQuery.fn.flatpickr === "function" && !$aui_doing_init_flatpickr) {
$aui_doing_init_flatpickr = true;
<?php if ( ! empty( $flatpickr_locale ) ) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?>
<?php if ( ! empty( $flatpickr_locale ) ) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>);}catch(err){console.log(err.message);}<?php } ?>
jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr();
}
$aui_doing_init_flatpickr = false;
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/composer/autoload_files.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
$baseDir = dirname($vendorDir);

return array(
'e8d544c98e79f913e13eae1306ab635e' => $vendorDir . '/ayecode/wp-ayecode-ui/ayecode-ui-loader.php',
'24583d3588ebda5228dd453cfaa070da' => $vendorDir . '/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php',
'42671a413efb740d7040437ff2a982cd' => $vendorDir . '/ayecode/wp-super-duper/sd-functions.php',
'e8d544c98e79f913e13eae1306ab635e' => $vendorDir . '/ayecode/wp-ayecode-ui/ayecode-ui-loader.php',
);
2 changes: 1 addition & 1 deletion vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
class ComposerStaticInit4fa2f326fa7a2d512ef54b5157a6e2c2
{
public static $files = array (
'e8d544c98e79f913e13eae1306ab635e' => __DIR__ . '/..' . '/ayecode/wp-ayecode-ui/ayecode-ui-loader.php',
'24583d3588ebda5228dd453cfaa070da' => __DIR__ . '/..' . '/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php',
'42671a413efb740d7040437ff2a982cd' => __DIR__ . '/..' . '/ayecode/wp-super-duper/sd-functions.php',
'e8d544c98e79f913e13eae1306ab635e' => __DIR__ . '/..' . '/ayecode/wp-ayecode-ui/ayecode-ui-loader.php',
);

public static $prefixLengthsPsr4 = array (
Expand Down
14 changes: 7 additions & 7 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.8",
"version_normalized": "0.2.8.0",
"version": "0.2.9",
"version_normalized": "0.2.9.0",
"source": {
"type": "git",
"url": "https://github.com/AyeCode/wp-ayecode-ui.git",
"reference": "fa9a748f3bdbe47ed9c036dc3904a32edc9fea48"
"reference": "35173193e2a701cea84f82a13380e6fbabc63896"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AyeCode/wp-ayecode-ui/zipball/fa9a748f3bdbe47ed9c036dc3904a32edc9fea48",
"reference": "fa9a748f3bdbe47ed9c036dc3904a32edc9fea48",
"url": "https://api.github.com/repos/AyeCode/wp-ayecode-ui/zipball/35173193e2a701cea84f82a13380e6fbabc63896",
"reference": "35173193e2a701cea84f82a13380e6fbabc63896",
"shasum": ""
},
"time": "2024-02-22T11:01:08+00:00",
"time": "2024-03-19T15:26:31+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.8"
"source": "https://github.com/AyeCode/wp-ayecode-ui/tree/0.2.9"
},
"install-path": "../ayecode/wp-ayecode-ui"
},
Expand Down
10 changes: 5 additions & 5 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => '90b203f66a93d9d1319768493b2d77c9670735da',
'reference' => '7dc4a466c7c58e893cfc634164e65cc14e951d76',
'name' => 'ayecode/blockstrap-page-builder-blocks',
'dev' => true,
),
Expand All @@ -25,16 +25,16 @@
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => '90b203f66a93d9d1319768493b2d77c9670735da',
'reference' => '7dc4a466c7c58e893cfc634164e65cc14e951d76',
'dev_requirement' => false,
),
'ayecode/wp-ayecode-ui' => array(
'pretty_version' => '0.2.8',
'version' => '0.2.8.0',
'pretty_version' => '0.2.9',
'version' => '0.2.9.0',
'type' => 'library',
'install_path' => __DIR__ . '/../ayecode/wp-ayecode-ui',
'aliases' => array(),
'reference' => 'fa9a748f3bdbe47ed9c036dc3904a32edc9fea48',
'reference' => '35173193e2a701cea84f82a13380e6fbabc63896',
'dev_requirement' => false,
),
'ayecode/wp-deactivation-survey' => array(
Expand Down

0 comments on commit 147dbfd

Please sign in to comment.