File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
packages/kit-headless/src Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {
11
11
useTask$ ,
12
12
} from '@builder.io/qwik' ;
13
13
import { CheckListContext , CheckboxContext } from './context-id' ;
14
- import { TriBool , getTriBool } from './checklist-context-wrapper' ;
14
+ import { TriBool , getTriBool } from '../checklist /checklist-context-wrapper' ;
15
15
export type MixedStateCheckboxProps = {
16
16
checkBoxSig ?: Signal < boolean > ;
17
17
checkList ?: boolean ;
@@ -32,7 +32,7 @@ export type ChecklistTwoStateCheckboxProps = {
32
32
_useCheckListContext ?: boolean ;
33
33
_overWriteCheckbox ?: boolean ;
34
34
} & PropsOf < 'div' > ;
35
- export const Checkbox = component$ < MixedStateCheckboxProps > ( ( props ) => {
35
+ export const CheckboxRoot = component$ < MixedStateCheckboxProps > ( ( props ) => {
36
36
// this is done to avoid consumers dealing with two types checkboxes, could go in different files
37
37
if ( props . _useCheckListContext && ! props . checkList ) {
38
38
}
Original file line number Diff line number Diff line change 1
- export { Checkbox as Root } from './checkbox' ;
1
+ export { CheckboxRoot as Root } from './checkbox' ;
2
2
export { CheckboxIndicator as Indicator } from './checkbox-indicator' ;
3
3
export * from './context-id' ;
Original file line number Diff line number Diff line change
1
+ export * as Checkbox from './components/checkbox' ;
2
+ export * as Checklist from './components/checklist/checklist' ;
1
3
export * as Accordion from './components/accordion/' ;
2
4
export * as Carousel from './components/carousel' ;
3
5
export * as Collapsible from './components/collapsible' ;
4
6
export * as Combobox from './components/combobox' ;
5
7
export { type ResolvedOption } from './components/combobox' ;
6
8
export * from './components/carousel' ;
7
- export * as Checkbox from './components/checkbox/checkbox' ;
8
- export * as Checklist from './components/checklist/checklist' ;
9
9
export * as Modal from './components/modal' ;
10
10
export { Pagination } from './components/pagination' ;
11
11
export * as Popover from './components/popover' ;
You can’t perform that action at this time.
0 commit comments