Skip to content

Commit

Permalink
Add Typography Test
Browse files Browse the repository at this point in the history
  • Loading branch information
taufik-nurrohman committed Sep 5, 2021
1 parent 4dbf9ec commit abeaee6
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ GUI Extension for [Mecha](https://github.com/mecha-cms/mecha)
Release Notes
-------------

### 2.7.1
### 2.7.2

- Added [@taufik-nurrohman/option-picker](https://github.com/taufik-nurrohman/option-picker) for consistent select box style.
- Added _Data_ tab next to the _Pages_ tab for pages layout.
- Added `$_['id']` property that stores the first `$_['path']` value.
- Added `$_['skin']` property that stores the skin title and CSS path.
- Added `_.alert()`, `_.confirm()`, and `_.prompt()` methods that return promises, as alternative to the native `alert()`, `confirm()`, and `prompt()` functions.
- Added `data` property to `field/*` type to quickly add hidden fields.
- Added `data` property to `form/*` type to quickly add hidden fields.
- Added `field/button` and `field/buttons` type. Currently useless. Would be useful when combined with certain JavaScript actions, such as to open a pop-up window.
Expand All @@ -23,6 +24,7 @@ Release Notes
- Added comment notification badge in the main menu.
- Added comments counter in the _Comment_ menu.
- Added files/folders counter in the _Trash_ menu.
- Added typography test.
- Fixed bug of tags data that is not stored consistently on edit mode.
- Improved `title` type to allow icons in `file`, `folder`, `field/item`, `field/items`, and `field/toggle` type.
- Improved extension page. It is now possible to filter extensions by searching and/or paginating.
Expand Down
3 changes: 2 additions & 1 deletion test.panel/engine/f/route.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ function __test($_) {
require __DIR__ . \DS . 'route' . \DS . 'separator.php';
require __DIR__ . \DS . 'route' . \DS . 'tabs.php';
require __DIR__ . \DS . 'route' . \DS . 'tasks.php';
require __DIR__ . \DS . 'route' . \DS . 'title.php';
require __DIR__ . \DS . 'route' . \DS . 'title.php';
require __DIR__ . \DS . 'route' . \DS . 'typography.php';
4 changes: 4 additions & 0 deletions test.panel/engine/f/route/bar.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ function bar($_) {
'url' => '/',
'stack' => 20
],
'separator' => [
'type' => 'separator',
'stack' => 20.1
],
'menu-2' => [
'title' => 'Menu 3',
'info' => 24,
Expand Down
Loading

0 comments on commit abeaee6

Please sign in to comment.