Skip to content

Commit

Permalink
3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Nov 7, 2020
1 parent b0bbed9 commit 947f5de
Show file tree
Hide file tree
Showing 5 changed files with 683 additions and 38 deletions.
16 changes: 2 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
# Changelog of `@reason-react-native/paper`

## X.Y.Z - 20YY-MM-DD
## 3.0.2 - 2020-11-07

Short & concise description

### 💥 Breaking changes

- Something, in [1234567](<link to commit on github>) by @<usename>

### 🐛 Fixes

- Something else, in [1234567](<link to commit on github>) by @<usename>

### Internal changes

(If worth mentioning)
Initial release
23 changes: 13 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "@reason-react-native/paper",
"version": "3.0.1",
"version": "3.0.2",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"reason-react": "^0.7.0",
"reason-react-native": "^0.60.0"
"react-native-paper": "^3.0.0",
"reason-react": "^0.9.0",
"reason-react-native": "^0.63.0"
},
"repository": "https://github.com/reason-react-native/paper.git",
"license": "MIT",
Expand Down Expand Up @@ -34,16 +35,18 @@
"re:clean-build": "bsb -clean-world -make-world",
"start": "yarn re:start",
"build": "yarn re:build",
"test": "yarn re:clean-build"
"test": "yarn re:clean-build",
"release": "npmpub"
},
"devDependencies": {
"bs-platform": "8.2.0",
"husky": "^1.3.0",
"lint-staged": "^10.1.1",
"prettier": "^1.18.0",
"bs-platform": "^8.2.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"npmpub": "^5.0.0",
"prettier": "^2.0.0",
"react-native-paper": "^3.0.0",
"reason-react": "0.9.0",
"reason-react-native": "0.62.3"
"reason-react": "^0.9.0",
"reason-react-native": "^0.63.0"
},
"prettier": {
"trailingComma": "all"
Expand Down
2 changes: 1 addition & 1 deletion src/Paper__Snackbar.re
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module Action = {

[@bs.val] external none: t = "null";

[@bs.obj] external make: (~label: string, ~onPress: unit => unit) => t = "";
[@bs.obj] external make: (~label: string, ~onPress: unit => unit) => t;
};

[@bs.module "react-native-paper"] [@react.component]
Expand Down
9 changes: 3 additions & 6 deletions src/Paper__ThemeProvider.re
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ module Theme = {
~placeholder: string,
~backdrop: string
) =>
t =
"";
t;

[@bs.get] external primary: t => string = "primary";
[@bs.get] external accent: t => string = "accent";
Expand Down Expand Up @@ -46,8 +45,7 @@ module Theme = {

[@bs.obj]
external make:
(~regular: font, ~medium: font, ~light: font, ~thin: font) => t =
"";
(~regular: font, ~medium: font, ~light: font, ~thin: font) => t;
};

[@bs.obj]
Expand All @@ -59,8 +57,7 @@ module Theme = {
~fonts: Fonts.configured=?,
unit
) =>
t =
"";
t;

[@bs.get] external fonts: t => Fonts.configured = "fonts";
[@bs.get] external colors: t => Colors.t = "colors";
Expand Down
Loading

0 comments on commit 947f5de

Please sign in to comment.