UNPKG
slightning-coco-widget
Version:
alpha (2.9.0-alpha.0)
latest (2.10.2)
2.10.2
2.10.1
2.10.0
2.9.0-alpha.0
2.8.1
2.8.0
2.7.0
2.6.0
2.5.0
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.1
2.3.0
2.2.1
2.2.0
2.1.0
2.0.1-alpha
2.0.0-alpha
1.0.1-alpha.13
1.0.1-alpha.12
1.0.1-alpha.11
1.0.1-alpha.10
1.0.1-alpha.9
1.0.1-alpha.8
1.0.1-alpha.7
1.0.1-alpha.6
1.0.1-alpha.5
1.0.1-alpha.4
1.0.1-alpha.3
1.0.1-alpha.2
1.0.1-alpha.1
1.0.1-alpha
1.0.0
SLIGHTNING 的 CoCo 控件框架。
slightning-coco-widget
/
types-of-provided-modules
/
antd-mobile
/
cjs
/
components
/
checkbox
/
group-context.d.ts
8 lines
(7 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
CheckboxValue
}
from
'.'
;
export
declare
const
CheckboxGroupContext
:
import
(
"react"
).
Context
<{
value
:
CheckboxValue
[];
disabled
:
boolean
;
check
:
(
val
:
CheckboxValue
) =>
void
;
uncheck
:
(
val
:
CheckboxValue
) =>
void
; } |
null
>;