Skip to content

Commit 1fb7db8

Browse files
author
Michael Lockwitz
committed
Merge branch 'development' into ml-treeshake-take2
2 parents 37c0fac + 18a82c7 commit 1fb7db8

File tree

61 files changed

+5189
-13629
lines changed

Some content is hidden

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

61 files changed

+5189
-13629
lines changed

.prettierrc

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2-
'singleQuote': true,
3-
'trailingComma': 'es5',
4-
}
2+
"trailingComma": "es5",
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": false,
6+
"singleQuote": true
7+
}

README.md

+32-5
Original file line numberDiff line numberDiff line change
@@ -22,33 +22,59 @@ npm install --save rimble-ui styled-components
2222
## Usage
2323

2424
```jsx
25-
import React, { Component } from 'react';
25+
import React, { Component } from 'react'
2626

27-
import { Button } from 'rimble-ui';
27+
import { Button } from 'rimble-ui'
2828

2929
class Example extends Component {
3030
render() {
31-
return <Button size={'medium'}>Click me!</Button>;
31+
return <Button size={'medium'}>Click me!</Button>
3232
}
3333
}
3434
```
3535

3636
## Change log
3737

38+
### 0.13.1
39+
40+
🐛 Bug Fix
41+
42+
- Added default props for `Heading` component.
43+
44+
### 0.13.0
45+
46+
🚀 New Feature
47+
48+
- Added crypto icons under the `Icon` component.
49+
50+
🐛 Bug Fix
51+
52+
- Fixed `Heading` component `as` prop not working.
53+
- Fixed `Text` component `as` prop not working.
54+
- Fixed `Select` component arrow icon placement.
55+
56+
### 0.12.0
57+
58+
🚀 New Feature
59+
60+
- Updated all components to `styled-system` v5.
61+
3862
### 0.11.1
3963

4064
🐛 Bug Fix
65+
4166
- Fixed icon background color on `ToastMessage` component. #381
4267
- fixed display prop not rendering correctly for `Icon` component. #380
4368
- fixed disabled styling for `Slider` component. #414
4469

45-
4670
### 0.11.0
4771

4872
🚀 New Feature
73+
4974
- Added `BaseStyles` component
5075

5176
🐛 Bug Fix
77+
5278
- Updated `Text` component to pass `as` prop correctly.
5379
- Updated `Heading` component to pass `as` prop correctly.
5480
- Updated `Select` component to adjust width.
@@ -58,6 +84,7 @@ class Example extends Component {
5884
- Fixed warnings when building library #376.
5985

6086
💅 Enhancement
87+
6188
- Adjusted `EthAddress` component padding.
6289
- Addeded default font sizes for `h1-h6` elements.
6390
- Styled `input[type="color"]` for better visibility.
@@ -134,7 +161,7 @@ class Example extends Component {
134161

135162
- Removed background color on Image component
136163

137-
0.7.0
164+
### 0.7.0
138165

139166
- Flash component
140167
- Custom labels for PublicAddress component

demo/public/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
2727
<title>React App</title>
28+
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro&display=swap" rel="stylesheet">
2829
</head>
2930
<body>
3031
<noscript>You need to enable JavaScript to run this app.</noscript>

0 commit comments

Comments
 (0)