Skip to content

Commit 20c6a45

Browse files
author
Alex Page
committed
v4.25.1
1 parent 022fe0f commit 20c6a45

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ The format is based on [these versioning and changelog guidelines](https://git.i
88

99
---
1010

11+
## 4.25.1 - 2020-06-10
12+
13+
### Bug fixes
14+
15+
- Fix latest release on NPM
16+
1117
## 4.25.0 - 2020-06-04
1218

1319
### Enhancements

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Otherwise include the CSS in your HTML. We suggest copying the styles file into
3939
```html
4040
<link
4141
rel="stylesheet"
42-
href="https://unpkg.com/@shopify/[email protected].0/styles.min.css"
42+
href="https://unpkg.com/@shopify/[email protected].1/styles.min.css"
4343
/>
4444
```
4545

@@ -82,7 +82,7 @@ If React doesn’t make sense for your application, you can use a CSS-only versi
8282
```html
8383
<link
8484
rel="stylesheet"
85-
href="https://unpkg.com/@shopify/[email protected].0/styles.min.css"
85+
href="https://unpkg.com/@shopify/[email protected].1/styles.min.css"
8686
/>
8787
```
8888

UNRELEASED.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
- Changed Resource List to a generic functional component ([#2843](https://github.com/Shopify/polaris-react/pull/2843))
1010
- Made the `renderItem` function infer the type of the items prop ([#2843](https://github.com/Shopify/polaris-react/pull/2843))
11+
- Added a `fullWidth` prop to `EmptyState` to support full width layout within a content context ([#2992](https://github.com/Shopify/polaris-react/pull/2992))
12+
- Added an `emptyState` prop to `ResourceList` to support in context empty states in list views ([#2569](https://github.com/Shopify/polaris-react/pull/2569))
13+
- Set `active` prop of `Popover` to true on keyDown in `ComboBox` to fix `Autocomplete` suggestions not showing when searching and selecting via keyboard ([#3028](https://github.com/Shopify/polaris-react/pull/3028))
1114

1215
### Bug fixes
1316

@@ -19,4 +22,6 @@
1922

2023
### Code quality
2124

25+
- Deleted an unused prop and its types in `Navigation` ([#3043](https://github.com/Shopify/polaris-react/pull/3043))
26+
2227
### Deprecations

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@shopify/polaris",
33
"description": "Shopify’s product component library",
4-
"version": "4.25.0",
4+
"version": "4.25.1",
55
"private": false,
66
"license": "SEE LICENSE IN LICENSE.md",
77
"author": "Shopify <[email protected]>",

src/components/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Include the CSS in your HTML. We suggest copying the styles file into your own p
6666
```html
6767
<link
6868
rel="stylesheet"
69-
href="https://unpkg.com/@shopify/[email protected].0/styles.min.css"
69+
href="https://unpkg.com/@shopify/[email protected].1/styles.min.css"
7070
/>
7171
```
7272

@@ -100,7 +100,7 @@ Include the CSS stylesheet in your HTML. We suggest copying the styles file into
100100
```html
101101
<link
102102
rel="stylesheet"
103-
href="https://unpkg.com/@shopify/[email protected].0/styles.min.css"
103+
href="https://unpkg.com/@shopify/[email protected].1/styles.min.css"
104104
/>
105105
```
106106

0 commit comments

Comments
 (0)