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
@@ -46,19 +46,19 @@ If the checkbox is selected or not.
46
46
<CodePreview>
47
47
<HStack>
48
48
<Checkbox />
49
-
<Checkbox isSelected />
49
+
<Checkbox selected />
50
50
</HStack>
51
51
</CodePreview>
52
52
53
-
### isIndeterminated
53
+
### indeterminated
54
54
If the checkbox is indeterminated or not. This is usually used for lists of checkboxes when some of their children are checked but not all of them. This is only a visual state, it only changes the checkbox icon.
55
55
56
56
| TYPE | REQUIRED | DEFAULT |
57
57
| ---- | -------- | ------- |
58
58
| bool | No | false |
59
59
60
60
<CodePreview>
61
-
<Checkbox isIndeterminated/>
61
+
<Checkbox indeterminated/>
62
62
</CodePreview>
63
63
64
64
### disabled
@@ -71,8 +71,8 @@ If the checkbox is disabled or not.
71
71
<CodePreview>
72
72
<HStack>
73
73
<Checkbox disabled />
74
-
<Checkbox disabled isSelected />
75
-
<Checkbox disabled isIndeterminated />
74
+
<Checkbox disabled selected />
75
+
<Checkbox disabled indeterminated />
76
76
</HStack>
77
77
</CodePreview>
78
78
@@ -101,4 +101,4 @@ Sets the component to an accessibility element. It is set by default to `true`.
101
101
Communicates the purpose of the component. It is set by default to `"checkbox"`.
102
102
103
103
### accessibilityState
104
-
Describes the current state of the element. By default, indicates if the `Checkbox` is `disabled`, `isSelected` and `isIndeterminated`.
104
+
Describes the current state of the element. By default, indicates if the `Checkbox` is `disabled`, `selected` and `indeterminated`.
0 commit comments