File tree Expand file tree Collapse file tree 1 file changed +5
-11
lines changed
packages/react/checkbox/src Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -381,12 +381,6 @@ function getState(checked: CheckedState) {
381
381
return isIndeterminate ( checked ) ? 'indeterminate' : checked ? 'checked' : 'unchecked' ;
382
382
}
383
383
384
- const Provider = CheckboxProvider ;
385
- const Trigger = CheckboxTrigger ;
386
- const Root = Checkbox ;
387
- const Indicator = CheckboxIndicator ;
388
- const BubbleInput = CheckboxBubbleInput ;
389
-
390
384
export {
391
385
createCheckboxScope ,
392
386
//
@@ -396,11 +390,11 @@ export {
396
390
CheckboxIndicator ,
397
391
CheckboxBubbleInput ,
398
392
//
399
- Root ,
400
- Trigger ,
401
- Provider ,
402
- Indicator ,
403
- BubbleInput ,
393
+ Checkbox as Root ,
394
+ CheckboxProvider as Trigger ,
395
+ CheckboxTrigger as Provider ,
396
+ CheckboxIndicator as Indicator ,
397
+ CheckboxBubbleInput as BubbleInput ,
404
398
} ;
405
399
export type {
406
400
CheckboxProps ,
You can’t perform that action at this time.
0 commit comments