-
Notifications
You must be signed in to change notification settings - Fork 0
/
css_materialize.mli
433 lines (391 loc) · 13.8 KB
/
css_materialize.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
type doc
val document : doc
(* -------------------------------------------------------------------------- *)
module Head :
sig
type css_link = Bower_css | Link_css of string
type jquery_link = Bower_jquery | Link_jquery of string
type js_link = Bower_js | Link_js of string
val add_css_materialize : css_link -> unit
val add_js_jquery : jquery_link -> unit
val add_js_materialize : js_link -> unit
val add_icons : string -> unit
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Icon :
sig
type size =
| Tiny
| Small
| Medium
| Large
| Normal
(* Need to list all icons. See https://design.google.com/icons/ *)
(*
type icon =
| Add
| Info_outline
*)
val create_icon : ?size:size -> string -> Dom_html.element Js.t
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Grid :
sig
val create_container : ?class_name:string ->
?childs:#Dom.node Js.t list ->
string ->
Dom_html.divElement Js.t
val create_row : ?class_name:string ->
?childs:#Dom.node Js.t list ->
string ->
Dom_html.divElement Js.t
val create_col : ?lg:int ->
?md:int ->
?xs:int ->
?offset_lg:int ->
?offset_md:int ->
?offset_xs:int ->
?class_name:string ->
?childs:#Dom.node Js.t list ->
string ->
Dom_html.divElement Js.t
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Button :
sig
type btn_size = Large | Normal
type btn_effect = Waves | Teal | Light | No_effect
val create_button : ?size:btn_size ->
?effect:btn_effect ->
?enable:bool ->
?color:string -> (* Use sum type !! *)
?floating:bool ->
?flat:bool ->
?class_name:string ->
string ->
Dom_html.anchorElement Js.t
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Color :
sig
type t =
(* Red *)
| Red_lighten_5
| Red_lighten_4
| Red_lighten_3
| Red_lighten_2
| Red_lighten_1
| Red
| Red_darken_4
| Red_darken_3
| Red_darken_2
| Red_darken_1
| Red_accent_1
| Red_accent_2
| Red_accent_3
| Red_accent_4
(* Pink *)
| Pink_lighten_5
| Pink_lighten_4
| Pink_lighten_3
| Pink_lighten_2
| Pink_lighten_1
| Pink
| Pink_darken_4
| Pink_darken_3
| Pink_darken_2
| Pink_darken_1
| Pink_accent_1
| Pink_accent_2
| Pink_accent_3
| Pink_accent_4
(* Purple *)
| Purple_lighten_5
| Purple_lighten_4
| Purple_lighten_3
| Purple_lighten_2
| Purple_lighten_1
| Purple
| Purple_darken_4
| Purple_darken_3
| Purple_darken_2
| Purple_darken_1
| Purple_accent_1
| Purple_accent_2
| Purple_accent_3
| Purple_accent_4
(* Deep purple *)
| Deep_purple_lighten_5
| Deep_purple_lighten_4
| Deep_purple_lighten_3
| Deep_purple_lighten_2
| Deep_purple_lighten_1
| Deep_purple
| Deep_purple_darken_4
| Deep_purple_darken_3
| Deep_purple_darken_2
| Deep_purple_darken_1
| Deep_purple_accent_1
| Deep_purple_accent_2
| Deep_purple_accent_3
| Deep_purple_accent_4
(* Indigo *)
| Indigo_lighten_5
| Indigo_lighten_4
| Indigo_lighten_3
| Indigo_lighten_2
| Indigo_lighten_1
| Indigo
| Indigo_darken_4
| Indigo_darken_3
| Indigo_darken_2
| Indigo_darken_1
| Indigo_accent_1
| Indigo_accent_2
| Indigo_accent_3
| Indigo_accent_4
(* Blue *)
| Blue_lighten_5
| Blue_lighten_4
| Blue_lighten_3
| Blue_lighten_2
| Blue_lighten_1
| Blue
| Blue_darken_4
| Blue_darken_3
| Blue_darken_2
| Blue_darken_1
| Blue_accent_1
| Blue_accent_2
| Blue_accent_3
| Blue_accent_4
(* Light-blue *)
(* Cyan *)
(* Teal *)
(* Green *)
(* Light green *)
(* Lime *)
(* Yellow *)
(* Amber *)
(* Orange *)
(* Deep-orange *)
(* Brown !! No accent !! *)
(* Grey !! No accent !! *)
(* Blue-grey !! No accent !! *)
| Black
| White
| Transparent
val to_str : t -> string
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Badges *)
module Badges :
sig
(* See http://materializecss.com/badges.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Cards *)
module Cards :
sig
(* http://materializecss.com/cards.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Chips *)
module Chips :
sig
(* http://materializecss.com/chips.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Collections *)
module Collections :
sig
(* See http://materializecss.com/collections.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Footer *)
module Footer :
sig
(* See http://materializecss.com/footer.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Forms *)
module Forms :
sig
type input =
| Button
| Checkbox
| Color
| Date
| Datetime
| Datetime_local
| Email
| File
| Hidden
| Image
| Month
| Number
| Password
| Radio
| Range
| Reset
| Search
| Submit
| Tel
| Text
| Time
| Url
| Week
(*
val create_form : ?lg:int ->
?md:int ->
?xs:int ->
?offset_lg:int ->
?offset_md:int ->
?offset_xs:int ->
?class_name:string ->
?childs:#Dom.node Js.t list ->
string ->
Dom_html.formElement Js.t
*)
val create_input_field : ?lg:int ->
?md:int ->
?xs:int ->
?offset_lg:int ->
?offset_md:int ->
?offset_xs:int ->
?class_name:string ->
?childs:#Dom.node Js.t list ->
string ->
Dom_html.divElement Js.t
val create_input : ?id:string ->
?enable:bool ->
?placeholder:string ->
?value:string ->
?validate:bool ->
?class_name:string ->
?childs:#Dom.node Js.t list ->
input ->
Dom_html.inputElement Js.t
val create_label : ?_for:string ->
?class_name:string ->
?active:bool ->
?data_error:string ->
?data_success:string ->
?childs:#Dom.node Js.t list ->
string ->
Dom_html.labelElement Js.t
val create_textarea : ?id:string ->
?class_name:string ->
?autofocus:bool ->
?cols:int ->
?disabled:bool ->
?max_length:int ->
?placeholder:string ->
?read_only:bool ->
?rows:int ->
?required:bool ->
unit ->
Dom_html.textAreaElement Js.t
val create_switches : ?text_disable:string ->
?text_enable:string ->
bool ->
Dom_html.divElement Js.t
(* See http://materializecss.com/forms.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Navbar *)
module Navbar :
sig
(* See http://materializecss.com/navbar.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Paginatior *)
module Pagination :
sig
(* See http://materializecss.com/pagination.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* Preloader *)
module Preloader :
sig
(* See http://materializecss.com/preloader.html *)
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Collapsible :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Dialogs :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Dropdown :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Media :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Modals :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Parallax :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Pushpin :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module ScrollFire :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Scrollspy :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module SideNav :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Tabs :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Transitions :
sig
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
module Waves :
sig
end
(* -------------------------------------------------------------------------- *)