🆕 V 1.5.3.7 Source Updated

master 1.5.3.7
Varun Sridharan 3 years ago
parent 3c647482f6
commit b45a110d3c
No known key found for this signature in database
GPG Key ID: 93FB46DCF16E0D6F

@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# [1.5.3.7] - 25/03/2021
## Fixed
* Admin Notice Module Not working
* Improved Tippyjs integration and avoided most Tippyjs warnings
* Some jQuery Migrate Warning fixed
* Spinner field css fixed.
## Changed
* Bump [sweetalert2] from `10.15.5` to `10.15.6` #359
* Bump [@popperjs/core] from `2.9.0` to `2.9.1` #355
* Bump [@wordpress/hooks] from `2.11.1` to `2.12.0` #358
* [Security] Bump [yargs-parser] from `5.0.0` to `5.0.1` #356
# [1.5.3.6] - 08/03/2021
## Added
* Option to bulk add fields in nested fields

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -148,7 +148,6 @@ class Util {
'content' => $content,
'image' => false,
'arrow' => true,
'arrowType' => 'round',
'js_field_id' => $this->js_id(),
'element' => $this->element,
'placement' => 'top',

@ -341,7 +341,7 @@ if ( ! function_exists( 'wponion_admin_notices' ) ) {
if ( is_scalar( $instance_id_or_args ) ) {
return wponion_admin_notices_registry( $instance_id_or_args );
} elseif ( empty( $instance_id_or_args ) ) {
$instance_id_or_args = '_wponion_admin_notices';
$instance_id_or_args = new Handler( '_wponion_admin_notices' );
$instance = wponion_admin_notices_registry( $instance_id_or_args );
if ( $instance ) {
return $instance;

@ -126,6 +126,7 @@ JAVASCRIPT;
*/
protected function get_db_values() {
$this->db_values = wponion_get_option( $this->unique );
$this->db_values = ( ! wponion_is_array( $this->db_values ) ) ? array() : $this->db_values;
return $this->db_values;
}

@ -519,7 +519,9 @@ class Notice extends Bridge {
$content = $this->option( 'content' );
$class = $type;
if ( 'update-nag' !== $type ) {
if ( 'update-nag' === $type ) {
$class = wponion_html_class( array( 'notice', 'notice-warning', 'inline', $type ) );
} else {
$class = wponion_html_class( array(
'notice',
( true === $this->option( 'dismissible' ) ) ? 'is-dismissible' : '',

@ -1,5 +1,5 @@
<?php
// Last Updated : 2021-03-08 06:14:47:am
// Last Updated : 2021-03-25 05:48:46:am
if ( ! defined( "ABSPATH") ) { die; }
return array (
'ABeeZee' =>
@ -323,14 +323,24 @@ return array (
),
'Archivo' =>
array (
100 => 'Thin 100',
200 => 'Extra Light 200',
300 => 'Light 300',
400 => 'Regular 400',
500 => 'Medium 500',
600 => 'Semi-Bold 600',
700 => 'Bold 700',
800 => 'Extra Bold 800',
900 => 'Black 900',
'100italic' => 'Thin 100 Italic',
'200italic' => 'Extra Light 200 Italic',
'300italic' => 'Light 300 Italic',
'400italic' => 'Regular 400 Italic',
'500italic' => 'Medium 500 Italic',
'600italic' => 'Semi-Bold 600 Italic',
'700italic' => 'Bold 700 Italic',
'800italic' => 'Extra Bold 800 Italic',
'900italic' => 'Black 900 Italic',
),
'Archivo Black' =>
array (
@ -1030,6 +1040,10 @@ return array (
500 => 'Medium 500',
600 => 'Semi-Bold 600',
700 => 'Bold 700',
'400italic' => 'Regular 400 Italic',
'500italic' => 'Medium 500 Italic',
'600italic' => 'Semi-Bold 600 Italic',
'700italic' => 'Bold 700 Italic',
),
'Bubblegum Sans' =>
array (
@ -1674,6 +1688,10 @@ return array (
array (
400 => 'Regular 400',
),
'Dela Gothic One' =>
array (
400 => 'Regular 400',
),
'Delius' =>
array (
400 => 'Regular 400',
@ -3179,6 +3197,12 @@ return array (
array (
400 => 'Regular 400',
),
'Kiwi Maru' =>
array (
300 => 'Light 300',
400 => 'Regular 400',
500 => 'Medium 500',
),
'Knewave' =>
array (
400 => 'Regular 400',
@ -3389,6 +3413,16 @@ return array (
600 => 'Semi-Bold 600',
700 => 'Bold 700',
),
'Lexend' =>
array (
100 => 'Thin 100',
300 => 'Light 300',
400 => 'Regular 400',
500 => 'Medium 500',
600 => 'Semi-Bold 600',
700 => 'Bold 700',
800 => 'Extra Bold 800',
),
'Lexend Deca' =>
array (
400 => 'Regular 400',
@ -4198,6 +4232,10 @@ return array (
array (
400 => 'Regular 400',
),
'New Tegomin' =>
array (
400 => 'Regular 400',
),
'News Cycle' =>
array (
400 => 'Regular 400',
@ -6208,6 +6246,10 @@ return array (
array (
400 => 'Regular 400',
),
'Train One' =>
array (
400 => 'Regular 400',
),
'Trirong' =>
array (
100 => 'Thin 100',

@ -1,5 +1,5 @@
<?php
/* Last Updated : 08/03/2021 - 06:11:34:pm */
/* Last Updated : 25/03/2021 - 10:46:23:am */
defined( 'ABSPATH' ) || exit;

@ -2,14 +2,14 @@
# This file is distributed under the same license as the WPOnion plugin.
msgid ""
msgstr ""
"Project-Id-Version: WPOnion 1.5.3.6\n"
"Project-Id-Version: WPOnion 1.5.3.7\n"
"Report-Msgid-Bugs-To: https:\/\/wordpress.org\/support\/plugin\/wponion\n\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: hello@wponion.com\n\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2021-03-08T18:11:36+05:30\n"
"POT-Creation-Date: 2021-03-25T10:46:26+05:30\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: wponion\n"
@ -451,7 +451,7 @@ msgstr ""
msgid "WPOnion Version : %s"
msgstr ""
#: core/modules/admin/notice/class-notice.php:544
#: core/modules/admin/notice/class-notice.php:546
msgid "Dismiss this notice."
msgstr ""

@ -18,21 +18,20 @@ class Color_Picker extends Checkbox_Radio {
*/
protected function output() {
if ( empty( $this->option( 'options' ) ) ) {
$attr = $this->attributes( array(
$attr = $this->attributes( array(
'type' => 'text',
'name' => $this->name(),
'value' => $this->value(),
'class' => 'wponion-color-picker-element wponion-form-control',
) );
$input = "<input ${attr} />";
$element = "<input ${attr} />";
if ( true === $this->option( 'settings/inline' ) ) {
$element = $input;
if ( true === $this->option( 'settings/components/interaction/input' ) ) {
$element = wponion_input_group_html( "<span class=\"cpickr-bg\" style=\"background-color:{$this->value}\"></span>", '', $input );
}
return $this->before() . "<div class=\"colorpickerwrap\"> ${element} <div class=\"wponion-color-picker-element\" ></div> </div>" . $this->after();
$is_inline = $this->option( 'settings/inline' );
$show_input = $this->option( 'settings/components/interaction/input' );
if ( false === $is_inline || ( true === $is_inline && true === $show_input ) ) {
$element = wponion_input_group_html( "<span class=\"cpickr-bg\" style=\"background-color:{$this->value}\"></span>", '', $element );
}
return $this->before() . "<div class=\"colorpickerwrap\"> ${element} <div class=\"wponion-color-picker-element\" ></div> </div>" . $this->after();
} else {
$type = ( true === $this->option( 'multiple' ) ) ? 'checkbox' : 'radio';
$this->set_option( 'type', $type );

@ -3,7 +3,7 @@
* Plugin Name: WPOnion
* Plugin URI: https://github.com/wponion/
* Description: ~ Lightweight, Flexible & Rapid WP Development Framework ~
* Version: 1.5.3.6
* Version: 1.5.3.7
* Author: varunsridharan
* Author URI: https://varunsridharan.in
* Text Domain: wponion

@ -1,5 +1,5 @@
<?php
// Last Updated: Mon 08-Mar-2021 | 06:11:28:pm
// Last Updated: Thu 25-Mar-2021 | 10:46:16:am
// Total Class: 288
return array (

@ -2,7 +2,7 @@
defined( 'ABSPATH' ) || exit;
defined( 'WPONION_VERSION' ) or define( 'WPONION_VERSION', '1.5.3.6' );
defined( 'WPONION_VERSION' ) or define( 'WPONION_VERSION', '1.5.3.7' );
defined( 'WPONION_CDN_VERSION' ) or define( 'WPONION_CDN_VERSION', '1.5' );
defined( 'WPONION_CDN_URL' ) or define( 'WPONION_CDN_URL', 'https://cdn.jsdelivr.net/gh/wponion/vendor-support' );
defined( 'WPONION_NAME' ) or define( 'WPONION_NAME', 'WPOnion' );

Loading…
Cancel
Save