Merge pull request woocommerce/woocommerce-admin#2597 from woocommerce/update/components-package-3.1.0
Update components package 3.1.0
This commit is contained in:
commit
ca7f706620
|
@ -1,6 +1,9 @@
|
|||
# unreleased
|
||||
- SearchListItem component: new `countLabel` prop that will overwrite the `item.count` value.
|
||||
|
||||
# 3.1.0
|
||||
- Added support for a countLabel prop on SearchListItem to allow custom counts.
|
||||
|
||||
# 3.0.0
|
||||
- <DateInput> and <DatePicker> got a `disabled` prop.
|
||||
- TableCard component: new `onPageChange` prop.
|
||||
|
@ -16,7 +19,7 @@
|
|||
- Card component: new `description` prop.
|
||||
- Card component: new `isInactive` prop.
|
||||
- DateRangeFilterPicker (breaking change): Introduced `onRangeSelect` prop and remove `path` prop better control.
|
||||
- Update liscence to GPL-3.0-or-later.
|
||||
- Update license to GPL-3.0-or-later.
|
||||
|
||||
# 2.0.0
|
||||
- Chart legend component now uses withInstanceId HOC so the ids used in several HTML elements are unique.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@woocommerce/components",
|
||||
"version": "3.0.0",
|
||||
"version": "3.1.0",
|
||||
"description": "UI components for WooCommerce.",
|
||||
"author": "Automattic",
|
||||
"license": "GPL-3.0-or-later",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# 1.1.1
|
||||
|
||||
- Update liscence to GPL-3.0-or-later
|
||||
- Update license to GPL-3.0-or-later
|
||||
|
||||
# 1.1.0
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# 1.1.2
|
||||
|
||||
- Update liscence to GPL-3.0-or-later
|
||||
- Update license to GPL-3.0-or-later
|
||||
|
||||
# 1.1.1
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# 1.2.0
|
||||
|
||||
- Enhancement: gather default date settings from `wcSettings.wcAdminSettings.woocommerce_default_date_range` if they exist.
|
||||
- Update liscence to GPL-3.0-or-later
|
||||
- Update license to GPL-3.0-or-later
|
||||
|
||||
# 1.0.7
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
# 2.1.1
|
||||
|
||||
- Update liscence to GPL-3.0-or-later
|
||||
- Update license to GPL-3.0-or-later
|
||||
|
||||
# 2.1.0
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# 1.0.3
|
||||
|
||||
- Update liscence to GPL-3.0-or-later
|
||||
- Update license to GPL-3.0-or-later
|
||||
|
||||
# 1.0.2
|
||||
|
||||
|
|
Loading…
Reference in New Issue