You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
npm i @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^4
53
56
```
54
57
55
-
56
58
Then, add `rescript-chakra` in your `bsconfig.json`:
59
+
57
60
```diff
58
61
-- "bs-dependencies": [],
59
62
++ "bs-dependencies": [rescript-chakra],
60
63
```
61
64
62
65
## Example
63
66
64
-
* following `chakra-ui` example [**here**](https://chakra-ui.com/docs/features/style-props#margin-and-padding)
67
+
- following `chakra-ui` example [**here**](https://chakra-ui.com/docs/features/style-props#margin-and-padding)
65
68
66
69
```javascript
67
70
// JavaScript 🟨 | TypeScript 🟦
@@ -89,9 +92,11 @@ let make = () => <>
89
92
Or you can check this [**Example**](https://github.com/ri7nz/rescript-chakra/tree/main/examples).
90
93
91
94
# Docs
95
+
92
96
All of Binding for Chakra-UI isn't completed, if you want to support this project, see the list below 🙌.
93
97
94
98
## Style Props
99
+
95
100
This is following and closely same with Chakra-UI. [**See Style Props**](https://chakra-ui.com/docs/features/style-props#reference) and Implemented typed **Props** with typed **CSS-Properties** use [bs-css](https://github.com/giraud/bs-css/blob/cb242dbd08a00bd848faecb756a9ddce68d8707a/bs-css/src/Css_AtomicTypes.rei).
96
101
97
102
-[x][Margin and Padding](https://chakra-ui.com/docs/features/style-props#margin-and-padding)
@@ -106,13 +111,14 @@ This is following and closely same with Chakra-UI. [**See Style Props**](https:/
All of Style Props implementation is write in File:[Chakra__MakeProps.res](https://github.com/ri7nz/rescript-chakra/blob/main/src/Interfaces/Chakra__MakeProps.res)
116
+
All of Style Props implementation is write in File:[Chakra\_\_MakeProps.res](https://github.com/ri7nz/rescript-chakra/blob/main/src/Interfaces/Chakra__MakeProps.res)
112
117
113
118
## Component
114
119
115
120
### Layout
121
+
116
122
-[x] Aspect Ratio
117
123
-[x] Box
118
124
-[x] Center
@@ -131,6 +137,7 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
131
137
-[x] WrapItem
132
138
133
139
### Forms
140
+
134
141
-[x] Button
135
142
-[x] Button Group
136
143
-[ ] Checkbox
@@ -147,6 +154,7 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
147
154
-[ ] Textarea
148
155
149
156
### Data Display
157
+
150
158
-[x] Badge
151
159
-[x] Close Button
152
160
-[x] Code
@@ -178,18 +186,26 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
178
186
-[ ] TagCloseButton
179
187
180
188
### Feedback
189
+
181
190
-[ ] Alert
182
-
-[ ] Circular Progress
183
-
-[ ] Progress
184
-
-[ ] Skeleton
185
-
-[ ] Spinner
186
-
-[ ] Toast
191
+
-[x] Circular Progress
192
+
-[x] Circular Progress Label
193
+
-[x] Progress
194
+
-[x] Skeleton
195
+
-[x] SkeletonText
196
+
-[x] SkeletonCircle
197
+
-[x] Spinner
198
+
-[x] Toast
199
+
-[x] useToast
200
+
-[x] createStandaloneToast
187
201
188
202
### Typography
203
+
189
204
-[x] Text
190
205
-[x] Heading
191
206
192
207
### Overlay
208
+
193
209
-[ ] Alert Dialog
194
210
-[ ] Drawer
195
211
-[ ] Menu
@@ -198,11 +214,13 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
198
214
-[ ] Tooltip
199
215
200
216
### Disclosure
217
+
201
218
-[ ] Accordion
202
219
-[ ] Tabs
203
220
-[ ] Visually Hidden
204
221
205
222
### Navigation
223
+
206
224
-[x] Breadcrumb
207
225
-[x] BreadcrumbItem
208
226
-[x] BreadcrumbLink
@@ -212,12 +230,14 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
212
230
-[x] LinkOverlay
213
231
214
232
### Media and Icons
233
+
215
234
-[x] Avatar
216
235
-[x] AvatarGroup
217
236
-[x] Icon
218
237
-[x] Image
219
238
220
239
### Others
240
+
221
241
-[x] Portal
222
242
-[x] Transitions
223
243
-[x] Fade
@@ -227,6 +247,7 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
227
247
-[x] Collapse
228
248
229
249
### Hooks
250
+
230
251
-[ ] useBoolean
231
252
-[ ] useBreakpointValue
232
253
-[ ] useClipboard
@@ -240,21 +261,29 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
240
261
-[ ] useToken
241
262
242
263
# Contribution
264
+
243
265
## Make a Pull Request
244
-
* Please, refer with [conventionalcommits.org](https://www.conventionalcommits.org) for write `commit` message.
266
+
267
+
- Please, refer with [conventionalcommits.org](https://www.conventionalcommits.org) for write `commit` message.
245
268
246
269
## Make a new component binding
270
+
247
271
I'm use [hygen.io](https://hygen.io) for generate new component binding base on `Box.res`, see [\_templates/Box/new/new.ejs.t](https://github.com/ri7nz/rescript-chakra/blob/main/_templates/Box/new/new.ejs.t)
248
272
USAGE:
249
-
* basic
273
+
274
+
- basic
275
+
250
276
```console
251
277
hygen Box new --name Name
252
278
```
253
-
* create `<Flex />`
279
+
280
+
- create `<Flex />`
281
+
254
282
```console
255
283
hygen Box new --name Flex
256
284
```
257
285
258
286
# Acknowledgement
259
-
*[**chakra-ui/chakra-ui**](https://github.com/chakra-ui/chakra-ui) ⚡️ Simple, Modular & Accessible UI Components for your React Applications
260
-
*[**giraud/bs-css**](https://github.com/giraud/bs-css) Statically typed DSL for writing css in reason.
287
+
288
+
-[**chakra-ui/chakra-ui**](https://github.com/chakra-ui/chakra-ui) ⚡️ Simple, Modular & Accessible UI Components for your React Applications
289
+
-[**giraud/bs-css**](https://github.com/giraud/bs-css) Statically typed DSL for writing css in reason.
0 commit comments