|
12 | 12 | use Illuminate\View\Factory;
|
13 | 13 |
|
14 | 14 | /**
|
15 |
| - * @method static \Galahad\Aire\Elements\Form bind($bound_data) |
16 |
| - * @method static mixed getBoundValue($name, $default = NULL) |
17 |
| - * @method static array getErrors(string $name) |
18 |
| - * @method static \Galahad\Aire\Elements\Form close() |
19 |
| - * @method static \Galahad\Aire\Elements\Form route(string $route_name, array $parameters = [], bool $absolute = true) |
20 |
| - * @method static \Galahad\Aire\Elements\Form get() |
21 |
| - * @method static \Galahad\Aire\Elements\Form post() |
22 |
| - * @method static \Galahad\Aire\Elements\Form put() |
23 |
| - * @method static \Galahad\Aire\Elements\Form patch() |
24 |
| - * @method static \Galahad\Aire\Elements\Form delete() |
25 |
| - * @method static mixed acceptCharset($value = NULL) |
26 |
| - * @method static mixed action($value = NULL) |
27 |
| - * @method static mixed autoComplete($value = NULL) |
28 |
| - * @method static mixed encType($value = NULL) |
29 |
| - * @method static mixed method($value = NULL) |
30 |
| - * @method static mixed name($value = NULL) |
31 |
| - * @method static mixed noValidate(bool $no_validate = true) |
32 |
| - * @method static mixed target($value = NULL) |
33 |
| - * @method static mixed getAttribute(string $attribute, $default = NULL) |
34 |
| - * @method static mixed data($key, $value) |
35 |
| - * @method static mixed toHtml() |
36 |
| - * @method static mixed accessKey($value = NULL) |
37 |
| - * @method static mixed class($value = NULL) |
38 |
| - * @method static mixed contentEditable(bool $content_editable = true) |
39 |
| - * @method static mixed contextMenu($value = NULL) |
40 |
| - * @method static mixed dir($value = NULL) |
41 |
| - * @method static mixed draggable($value = NULL) |
42 |
| - * @method static mixed dropZone($value = NULL) |
43 |
| - * @method static mixed hidden(bool $hidden = true) |
44 |
| - * @method static mixed id($value = NULL) |
45 |
| - * @method static mixed lang($value = NULL) |
46 |
| - * @method static mixed role($value = NULL) |
47 |
| - * @method static mixed spellCheck(bool $spell_check = true) |
48 |
| - * @method static mixed style($value = NULL) |
49 |
| - * @method static mixed tabIndex($value = NULL) |
50 |
| - * @method static mixed title($value = NULL) |
51 |
| - * @method static mixed ariaActiveDescendant($value = NULL) |
52 |
| - * @method static mixed ariaAtomic(bool $aria_atomic = true) |
53 |
| - * @method static mixed ariaBusy(bool $aria_busy = true) |
54 |
| - * @method static mixed ariaControls($value = NULL) |
55 |
| - * @method static mixed ariaDescribedBy($value = NULL) |
56 |
| - * @method static mixed ariaDisabled($value = NULL) |
57 |
| - * @method static mixed ariaDropEffect($value = NULL) |
58 |
| - * @method static mixed ariaFlowTo($value = NULL) |
59 |
| - * @method static mixed ariaGrabbed($value = NULL) |
60 |
| - * @method static mixed ariaHasPopup(bool $aria_has_popup = true) |
61 |
| - * @method static mixed ariaHidden(bool $aria_hidden = true) |
62 |
| - * @method static mixed ariaInvalid($value = NULL) |
63 |
| - * @method static mixed ariaLabel($value = NULL) |
64 |
| - * @method static mixed ariaLabelledBy($value = NULL) |
65 |
| - * @method static mixed ariaLive($value = NULL) |
66 |
| - * @method static mixed ariaOwns($value = NULL) |
67 |
| - * @method static mixed ariaRelevant($value = NULL) |
68 |
| - * @method static mixed grouped() |
69 |
| - * @method static mixed withoutGroup() |
70 | 15 | * @method static \Galahad\Aire\Elements\Label label(string $label)
|
71 |
| - * @method static \Galahad\Aire\Elements\Button button(string $label = null) |
| 16 | + * @method static \Galahad\Aire\Elements\Button button(string $label = NULL) |
72 | 17 | * @method static \Galahad\Aire\Elements\Button submit(string $label = 'Submit')
|
73 | 18 | * @method static \Galahad\Aire\Elements\Input input($name = NULL, $label = NULL)
|
74 | 19 | * @method static \Galahad\Aire\Elements\Select select(array $options, $name = NULL, $label = NULL)
|
75 | 20 | * @method static \Galahad\Aire\Elements\Textarea textArea($name = NULL, $label = NULL)
|
76 | 21 | * @method static \Galahad\Aire\Elements\Summary summary()
|
77 | 22 | * @method static \Galahad\Aire\Elements\Checkbox checkbox($name = NULL, $label = NULL)
|
| 23 | + * @method static \Galahad\Aire\Elements\CheckboxGroup checkboxGroup($name, array $options, $label = NULL) |
| 24 | + * @method static \Galahad\Aire\Elements\RadioGroup radioGroup($name, array $options, $label = NULL) |
| 25 | + * @method static \Galahad\Aire\Elements\Input hidden($name = NULL, $value = NULL) |
78 | 26 | * @method static \Galahad\Aire\Elements\Input color($name = NULL, $label = NULL)
|
79 | 27 | * @method static \Galahad\Aire\Elements\Input date($name = NULL, $label = NULL)
|
80 | 28 | * @method static \Galahad\Aire\Elements\Input dateTime($name = NULL, $label = NULL)
|
|
85 | 33 | * @method static \Galahad\Aire\Elements\Input month($name = NULL, $label = NULL)
|
86 | 34 | * @method static \Galahad\Aire\Elements\Input number($name = NULL, $label = NULL)
|
87 | 35 | * @method static \Galahad\Aire\Elements\Input password($name = NULL, $label = NULL)
|
88 |
| - * @method static \Galahad\Aire\Elements\Input radio($name = NULL, $label = NULL) |
89 | 36 | * @method static \Galahad\Aire\Elements\Input range($name = NULL, $label = NULL, $min = 0, $max = 100)
|
90 | 37 | * @method static \Galahad\Aire\Elements\Input search($name = NULL, $label = NULL)
|
91 | 38 | * @method static \Galahad\Aire\Elements\Input tel($name = NULL, $label = NULL)
|
|
0 commit comments