Merge pull request woocommerce/woocommerce-admin#2690 from woocommerce/release/0.16.0
Release 0.16.0 tasks
This commit is contained in:
commit
0a01ad8aef
|
@ -22,6 +22,7 @@ Additional class name to style the component.
|
|||
- before: ReactNode - Content displayed before the list item text.
|
||||
- after: ReactNode - Content displayed after the list item text.
|
||||
- onClick: Function - Content displayed after the list item text.
|
||||
- className: String - Additional class name to style the list item.
|
||||
- Default: null
|
||||
|
||||
An array of list items.
|
||||
|
|
|
@ -25,7 +25,7 @@ A label to use for the main select element.
|
|||
- Type: Array
|
||||
- value: String - Input value for this option.
|
||||
- label: String - Label for this option.
|
||||
- disabled: Boolean - Disable this option in the list.
|
||||
- disabled: Boolean - Disable the option.
|
||||
- Default: null
|
||||
|
||||
An array of options to use for the dropddown.
|
||||
|
@ -42,4 +42,5 @@ A function that receives the value of the new option that is being selected as i
|
|||
- Type: String
|
||||
- Default: null
|
||||
|
||||
The selected value for the control.
|
||||
The currently value of the select element.
|
||||
|
||||
|
|
|
@ -79,6 +79,20 @@ A function which returns a callback function to update the query string for a gi
|
|||
|
||||
A function which returns a callback function which is called upon the user changing the visiblity of columns.
|
||||
|
||||
### `onSearch`
|
||||
|
||||
- Type: Function
|
||||
- Default: `noop`
|
||||
|
||||
A function which is called upon the user searching in the table header.
|
||||
|
||||
### `onSort`
|
||||
|
||||
- Type: Function
|
||||
- Default: `undefined`
|
||||
|
||||
A function which is called upon the user changing the sorting of the table.
|
||||
|
||||
### `downloadable`
|
||||
|
||||
- Type: Boolean
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@woocommerce/admin-library",
|
||||
"version": "0.15.0",
|
||||
"version": "0.16.0",
|
||||
"homepage": "https://woocommerce.github.io/woocommerce-admin/",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -71,6 +71,25 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 0.16.0 2019-07-24 =
|
||||
|
||||
- Tweak: Change verbiage of feedback notification. #2677
|
||||
- Dev: Update unit tests to work with PHPUnit 7+. #2678
|
||||
- Fix: Bug that was preventing confirmation dialog from showing after saving settings. #2660
|
||||
- Fix: completed orders lingering in activity panel. #2659 (Activity Panel, REST API)
|
||||
- Dev: Webpack: Use wp.url instead of bundling package #2663 (Build)
|
||||
- Fix: Location of unread indicators in activity panel. #2662
|
||||
- Bug: Fix missing nav on connected admin pages. #2676
|
||||
- Task: Add priority 2 Tracks events #2633 (Components, Packages)
|
||||
- Dev: Replace 'stringifyQuery' with 'addQueryArgs' #2655 (Build, Components, Packages)
|
||||
- Task: Add priority 3 Tracks events #2638 (Components, Packages)
|
||||
- Fix: Z-index issue in empty message on chart #2646 (Components, Packages)
|
||||
- Dev: Tests setup: bring in Woo Core dependencies #2640 (Build)
|
||||
- Fix: Disable placeholder animation when prefers-reduced-motion is set #2645 (Accessibility)
|
||||
- Task: Add instructions for translating to contributing docs. #2618 (Documentation)
|
||||
- Dev: show example extension list as list in readme #2619 (Documentation)
|
||||
- Fix: react-spring breaking IE11 #2698 (Build)
|
||||
|
||||
= 0.15.0 2019-07-11 =
|
||||
|
||||
- Fix: Compare checkboxes in report tables #2571
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* Author URI: https://woocommerce.com/
|
||||
* Text Domain: woocommerce-admin
|
||||
* Domain Path: /languages
|
||||
* Version: 0.15.0
|
||||
* Version: 0.16.0
|
||||
* Requires at least: 5.2.0
|
||||
* Requires PHP: 5.6.20
|
||||
*
|
||||
|
@ -126,7 +126,7 @@ class WC_Admin_Feature_Plugin {
|
|||
$this->define( 'WC_ADMIN_PLUGIN_FILE', __FILE__ );
|
||||
// WARNING: Do not directly edit this version number constant.
|
||||
// It is updated as part of the prebuild process from the package.json value.
|
||||
$this->define( 'WC_ADMIN_VERSION_NUMBER', '0.15.0' );
|
||||
$this->define( 'WC_ADMIN_VERSION_NUMBER', '0.16.0' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue