Skip to content

Commit

Permalink
fix nested form row design bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindees committed Aug 16, 2022
1 parent 5411363 commit e492d28
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 22 deletions.
4 changes: 2 additions & 2 deletions typerocket-v5.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: TypeRocket - Andromeda
Plugin URI: https://typerocket.com/
Description: TypeRocket is a framework that joins refined UI elements and modern programming architecture together.
Version: 5.1.6
Version: 5.1.7
Requires at least: 6.0
Requires PHP: 7.4
Author: TypeRocket
Expand Down Expand Up @@ -34,7 +34,7 @@ public function __construct()
return;
}

define('TYPEROCKET_PLUGIN_VERSION', '5.1.6');
define('TYPEROCKET_PLUGIN_VERSION', '5.1.7');
define('TYPEROCKET_PLUGIN_INSTALL', __DIR__);

if(!defined('TYPEROCKET_ROOT_WP'))
Expand Down
12 changes: 6 additions & 6 deletions typerocket/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions typerocket/vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -2963,17 +2963,17 @@
},
{
"name": "typerocket/core",
"version": "v5.1.13",
"version_normalized": "5.1.13.0",
"version": "v5.1.14",
"version_normalized": "5.1.14.0",
"source": {
"type": "git",
"url": "https://github.com/TypeRocket/core.git",
"reference": "82c0b73cbd39aa3f87d734e8d9f5008672843adc"
"reference": "5dbae52cf24e0740605d416e474f79ac36a802d6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/TypeRocket/core/zipball/82c0b73cbd39aa3f87d734e8d9f5008672843adc",
"reference": "82c0b73cbd39aa3f87d734e8d9f5008672843adc",
"url": "https://api.github.com/repos/TypeRocket/core/zipball/5dbae52cf24e0740605d416e474f79ac36a802d6",
"reference": "5dbae52cf24e0740605d416e474f79ac36a802d6",
"shasum": ""
},
"require": {
Expand All @@ -2987,7 +2987,7 @@
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"time": "2022-08-06T23:52:14+00:00",
"time": "2022-08-16T17:45:12+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -3016,7 +3016,7 @@
"support": {
"docs": "https://typerocket.com/docs/v5/",
"issues": "https://github.com/TypeRocket/core/issues",
"source": "https://github.com/TypeRocket/core/tree/v5.1.13"
"source": "https://github.com/TypeRocket/core/tree/v5.1.14"
},
"install-path": "../typerocket/core"
},
Expand Down
10 changes: 5 additions & 5 deletions typerocket/vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => '8621516a9ea1675c3b4b34631733edeb49f4df5b',
'reference' => '5411363dc2a60302034898dfd5cd9cc1356ff42c',
'name' => 'typerocket/typerocket',
'dev' => true,
),
Expand Down Expand Up @@ -404,12 +404,12 @@
'dev_requirement' => true,
),
'typerocket/core' => array(
'pretty_version' => 'v5.1.13',
'version' => '5.1.13.0',
'pretty_version' => 'v5.1.14',
'version' => '5.1.14.0',
'type' => 'library',
'install_path' => __DIR__ . '/../typerocket/core',
'aliases' => array(),
'reference' => '82c0b73cbd39aa3f87d734e8d9f5008672843adc',
'reference' => '5dbae52cf24e0740605d416e474f79ac36a802d6',
'dev_requirement' => false,
),
'typerocket/typerocket' => array(
Expand All @@ -418,7 +418,7 @@
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => '8621516a9ea1675c3b4b34631733edeb49f4df5b',
'reference' => '5411363dc2a60302034898dfd5cd9cc1356ff42c',
'dev_requirement' => false,
),
'webmozart/assert' => array(
Expand Down
2 changes: 1 addition & 1 deletion typerocket/vendor/typerocket/core/assets/dist/css/core.css

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,13 @@
&:first-of-type { padding-top: 0 }
&:last-of-type { padding-bottom: 0 }
}

> .tr-control-row, > .tr-control-grouped-section {
padding: 5px 0;
box-shadow: none;
&:first-of-type { padding-top: 0 }
&:last-of-type { padding-bottom: 0 }
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion typerocket/wordpress/assets/typerocket/css/core.css

Large diffs are not rendered by default.

0 comments on commit e492d28

Please sign in to comment.