File tree 5 files changed +23
-10
lines changed
5 files changed +23
-10
lines changed Original file line number Diff line number Diff line change 1
- yarnPath : " .yarn/releases/yarn-berry.cjs "
2
- nodeLinker : " node-modules "
1
+ nodeLinker : node-modules
2
+ yarnPath : .yarn/releases/yarn-berry.cjs
Original file line number Diff line number Diff line change @@ -185,8 +185,6 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
185
185
- [ ] Toast
186
186
187
187
### Typography
188
- - [ ] Text
189
- - [ ] Heading
190
188
- [x] Text
191
189
- [x] Heading
192
190
@@ -214,8 +212,13 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
214
212
- [x] Image
215
213
216
214
### Others
217
- - [ ] Portal
218
- - [ ] Transitions
215
+ - [x] Portal
216
+ - [x] Transitions
217
+ - [x] Fade
218
+ - [x] ScaleFade
219
+ - [x] Slide
220
+ - [x] SlideFade
221
+ - [x] Collapse
219
222
220
223
### Hooks
221
224
- [ ] useBoolean
Original file line number Diff line number Diff line change 2
2
"name" : " rescript-chakra" ,
3
3
"version" : " 1.2.0-next.1" ,
4
4
"description" : " ⚡️ ReScript bindings for @chakra-ui/react" ,
5
+ "keywords" : [
6
+ " rescript" ,
7
+ " react" ,
8
+ " chakra-ui" ,
9
+ " ui-component" ,
10
+ " bindings"
11
+ ],
5
12
"author" :
" ri7nz <[email protected] >" ,
6
13
"license" : " MIT" ,
7
14
"homepage" : " https://rescript-chakra.vercel.app/" ,
Original file line number Diff line number Diff line change @@ -103,10 +103,7 @@ module Icon = Chakra__Icon
103
103
module Image = Chakra__Image
104
104
105
105
// ### Others
106
- // TODO Others
107
- // module Portal = Chakra__Portal;
108
- // module Transitions = Chakra__Transitions;
109
-
106
+ module Portal = Chakra__Portal
110
107
include Chakra__Transitions
111
108
// ### Hooks
112
109
// TODO Hooks
Original file line number Diff line number Diff line change
1
+ @react.component @module ("@chakra-ui/react" )
2
+ external make : (
3
+ ~children : React .element ,
4
+ ~appendToParentPortal : bool = ?,
5
+ ~containerRef : ReactDOM .domRef = ?,
6
+ ) => React .element = "Portal"
You can’t perform that action at this time.
0 commit comments