Skip to content

Commit 42e8157

Browse files
Merge pull request #194 from cca-io/fix-input
Fix Input type
2 parents d48d616 + 89de28d commit 42e8157

File tree

4 files changed

+13
-23
lines changed

4 files changed

+13
-23
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,17 @@ title: Changelog
1414
(_Tags are copied from
1515
[babel](https://github.com/babel/babel/blob/master/CHANGELOG.md)_)
1616

17+
## master
18+
19+
- :bug: Fix Input element type.
20+
1721
## 5.0.0-alpha.1
1822

1923
- :boom: Complete rewrite to adapt to MUI v5 (in progress).
2024
- :boom: Release rescript-mui packages under a new npm organization (`@rescript-mui`).
2125
- :memo: Rename the repository to rescript-mui.
2226
- :memo: Deprecate website.
23-
- :house: - Restructure repo to a ReScript-Monorepo with pinned-packages.
27+
- :house: Restructure repo to a ReScript-Monorepo with pinned-packages.
2428

2529
## 3.0.2
2630

examples/src/examples/ExampleSelect.bs.js

Lines changed: 6 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/src/examples/ExampleSlider.bs.js

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/rescript-mui-material/src/components/Input.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ type props<'value> = {
6969
}
7070

7171
@module("@mui/material/Input")
72-
external make: props<'value> => React.element = "default"
72+
external make: React.component<props<'value>> = "default"

0 commit comments

Comments
 (0)