Skip to content

Commit 0ef49cb

Browse files
committed
Merge branch 'master' into css-package
2 parents 3e5a243 + 6a685c5 commit 0ef49cb

File tree

173 files changed

+5652
-2414
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+5652
-2414
lines changed

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
dist
22
.cache
33
public
4+
node_modules
5+
components
6+
*.esm.js

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Additional context**
27+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,34 @@
22

33
## Unreleased
44

5+
- `@theme-ui/components`: on Grid component, allow custom `columns` definitions via strings #541
6+
- Adds `@theme-ui/preset-polaris` #567
7+
- Adjusts default font stack in presets #568
8+
9+
## v0.2.53 2019-12-19
10+
11+
- `@theme-ui/color`: add `transparentize` function #370
12+
- `@theme-ui/style-guide`: move context dependencies to peer dependencies #521
13+
14+
## v0.2.52 2019-12-16
15+
16+
- Fix for issues when `localStorage` is not available #514
17+
- `@theme-ui/match-media`: add option for default index in hook #460
18+
- `@theme-ui/editor`: Update Reakit #517
19+
20+
## v0.2.51 2019-12-03
21+
22+
- `@theme-ui/editor`: fix color picker #498
23+
24+
## v0.2.50 2019-12-02
25+
26+
- `@theme-ui/components`: fix NavLink base styles #497
27+
28+
## v0.2.49 2019-11-15
29+
30+
- `@theme-ui/components`: add more components #458
531
- `@theme-ui/color`: add `alpha` utility #441
32+
- `@theme-ui/match-media`: Add default breakpoint index argument for SSR
633

734
## v0.2.48 2019-11-07
835

examples/codesandbox-starter/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"name": "theme-ui-starter",
33
"private": "true",
4-
"version": "0.2.46",
4+
"version": "0.2.52",
55
"description": "A sandbox configured with Theme UI, including the `base` theme.",
66
"main": "index.html",
77
"scripts": {
88
"start": "parcel index.html --open",
99
"build": "parcel build index.html"
1010
},
1111
"dependencies": {
12-
"@emotion/core": "10.0.17",
13-
"@mdx-js/react": "1.4.5",
12+
"@emotion/core": "^10.0.17",
13+
"@mdx-js/react": "^1.4.5",
1414
"@theme-ui/presets": "^0.2.44",
15-
"react": "16.10.2",
16-
"react-dom": "16.9.0",
17-
"theme-ui": "^0.2.46"
15+
"react": "^16.12.0",
16+
"react-dom": "^16.9.0",
17+
"theme-ui": "^0.2.52"
1818
},
1919
"devDependencies": {
20-
"@babel/core": "7.6.0",
20+
"@babel/core": "^7.7.4",
2121
"parcel-bundler": "^1.6.1"
2222
},
2323
"keywords": [

examples/create-react-app/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ export default {
66
secondary: '#609',
77
},
88
fonts: {
9-
body: 'system-ui, sans-serif',
9+
body:
10+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1011
heading: 'inherit',
1112
},
1213
styles: {

examples/custom-pragma/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "custom-pragma-example",
4-
"version": "0.2.46",
4+
"version": "0.2.52",
55
"main": "index.js",
66
"author": "Brent Jackson <[email protected]>",
77
"license": "MIT",
@@ -17,6 +17,6 @@
1717
"gatsby-plugin-mdx": "^1.0.4",
1818
"react": "^16.8.6",
1919
"react-dom": "^16.8.6",
20-
"theme-ui": "^0.2.46"
20+
"theme-ui": "^0.2.52"
2121
}
2222
}

examples/custom-pragma/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ export default {
66
secondary: '#609',
77
},
88
fonts: {
9-
body: 'system-ui, sans-serif',
9+
body:
10+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1011
heading: 'inherit',
1112
monospace: 'Menlo, monospace',
1213
},

examples/dark-mode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "dark-mode-theme-ui-example",
4-
"version": "0.2.46",
4+
"version": "0.2.52",
55
"main": "index.js",
66
"author": "Brent Jackson <[email protected]>",
77
"license": "MIT",
@@ -17,6 +17,6 @@
1717
"gatsby-plugin-mdx": "^1.0.4",
1818
"react": "^16.8.6",
1919
"react-dom": "^16.8.6",
20-
"theme-ui": "^0.2.46"
20+
"theme-ui": "^0.2.52"
2121
}
2222
}

examples/dark-mode/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export default {
1414
},
1515
},
1616
fonts: {
17-
body: 'system-ui, sans-serif',
17+
body:
18+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1819
heading: 'inherit',
1920
},
2021
lineHeights: {

0 commit comments

Comments
 (0)