Skip to content

Commit 7e50fe9

Browse files
author
issayah
committed
Stage index file
1 parent 2c8aa52 commit 7e50fe9

File tree

1 file changed

+28
-10
lines changed

1 file changed

+28
-10
lines changed

src/types/components/index.ts

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ export type {Emits as BAvatarEmits} from './BAvatar/BAvatar'
77
export type {Props as BAvatarGroupProps} from './BAvatar/BAvatarGroup'
88
export type {ParentData as BAvatarGroupParentData} from './BAvatar/BAvatarGroup'
99
// BBadge
10+
export type {Props as BBadgeProps} from './BBadge/BBadge'
1011
// BBreadcrumb
1112
export type {Props as BBreadcrumbProps} from './BBreadcrumb/BBreadcrumb'
12-
// TODO BBreadcrumbItem
13+
export type {Props as BBreadcrumbItem} from './BBreadcrumb/BBreadcrumbItem'
1314
// BButton
14-
// TODO BButton
15+
export type {Props as BButtonProps} from './BButton/BButton'
16+
export type {Emits as BButtonEmits} from './BButton/BButton'
1517
export type {Props as BButtonGroupProps} from './BButton/BButtonGroup'
1618
export type {Props as BButtonToolbarProps} from './BButton/BButtonToolbar'
1719
export type {Props as BCloseButtonProps} from './BButton/BCloseButton'
@@ -23,7 +25,6 @@ export type {Props as BCardGroupProps} from './BCard/BCardGroup'
2325
export type {Props as BCardHeaderProps} from './BCard/BCardHeader'
2426
export type {Props as BCardImgProps} from './BCard/BCardImg'
2527
export type {Props as BCardSubtitleProps} from './BCard/BCardSubtitle'
26-
// TODO BCardText
2728
export type {Props as BCardTitleProps} from './BCard/BCardTitle'
2829
// BCarousel
2930
export type {Props as BCarouselProps} from './BCarousel/BCarousel'
@@ -34,14 +35,11 @@ export type {Props as BCarouselSlideProps} from './BCarousel/BCarouselSlide'
3435
export type {Props as BDropdownProps} from './BDropdown/BDropdown'
3536
export type {Emits as BDropdownEmits} from './BDropdown/BDropdown'
3637
export type {Props as BDropdownDividerProps} from './BDropdown/BDropdownDivider'
37-
// TODO BDropdownForm
3838
export type {Props as BDropdownGroupProps} from './BDropdown/BDropdownGroup'
39-
// TODO BDropdownHeader
4039
export type {Props as BDropdownItemProps} from './BDropdown/BDropdownItem'
4140
export type {Emits as BDropdownItemEmits} from './BDropdown/BDropdownItem'
4241
export type {Props as BDropdownItemButtonProps} from './BDropdown/BDropdownItemButton'
4342
export type {Emits as BDropdownItemButtonEmits} from './BDropdown/BDropdownItemButton'
44-
// TODO BDropdownText
4543
// BForm
4644
export type {Props as BFormProps} from './BForm/BForm'
4745
export type {Emits as BFormEmits} from './BForm/BForm'
@@ -58,7 +56,8 @@ export type {Emits as BFormCheckboxGroupEmits} from './BFormCheckbox/BFormCheckb
5856
// BFormGroup
5957
export type {Props as BFormGroupProps} from './BFormGroup/BFormGroup'
6058
// BFormInput
61-
// TODO BFormInput
59+
export type {Props as BFormInputProps} from './BFormInput/BFormInput'
60+
export type {Emits as BFormInputEmits} from './BFormInput/BFormInput'
6261
// BFormRadio
6362
export type {Props as BFormRadioProps} from './BFormRadio/BFormRadio'
6463
export type {Emits as BFormRadioEmits} from './BFormRadio/BFormRadio'
@@ -75,7 +74,8 @@ export type {Emits as BFormTagEmits} from './BFormTags/BFormTag'
7574
export type {Props as BFormTagsProps} from './BFormTags/BFormTags'
7675
export type {Emits as BFormTagsEmits} from './BFormTags/BFormTags'
7776
// BFormTextarea
78-
// TODO BFormTextarea
77+
export type {Props as BFormTextareaProps} from './BFormTextarea/BFormTextarea'
78+
export type {Emits as BFormTextareaEmits} from './BFormTextarea/BFormTextarea'
7979
// BInputGroup
8080
export type {Props as BInputGroupProps} from './BInputGroup/BInputGroup'
8181
export type {Props as BInputGroupAddonProps} from './BInputGroup/BInputGroupAddon'
@@ -91,7 +91,7 @@ export type {Props as BListGroupItemProps} from './BListGroup/BListGroupItem'
9191
// BOverlay
9292
export type {Props as BOverlayProps} from './BOverlay/BOverlay'
9393
export type {Emits as BOverlayEmits} from './BOverlay/BOverlay'
94-
export type {ISlotScope as BOverlayISlotScope} from './BOverlay/BOverlay'
94+
export type {SlotScope as BOverlaySlotScope} from './BOverlay/BOverlay'
9595
// BPagination
9696
export type {Props as BPaginationProps} from './BPagination/BPagination'
9797
export type {Emits as BPaginationEmits} from './BPagination/BPagination'
@@ -114,27 +114,45 @@ export type {Props as BTabProps} from './BTabs/BTab'
114114
export type {Props as BTabsProps} from './BTabs/BTabs'
115115
// BToast
116116
export type {Props as BToastProps} from './BToast/BToast'
117+
export type {Emits as BToastEmits} from './BToast/BToast'
117118
export type {Props as BToasterProps} from './BToast/BToaster'
118119
// BTransition
119120
export type {Props as BTransitionProps} from './BTransition/BTransition'
120121
//
121122
export type {Props as BAlertProps} from './BAlert'
122123
export type {Emits as BAlertEmits} from './BAlert'
123-
export type {Props as BColProps} from './BCol'
124+
125+
// export type {Props as BColProps} from './BCol'
126+
// TODO BCol
127+
124128
export type {Props as BCollapseProps} from './BCollapse'
125129
export type {Emits as BCollapseEmits} from './BCollapse'
130+
126131
export type {Props as BContainerProps} from './BContainer'
132+
127133
export type {Props as BImgProps} from './BImg'
134+
128135
export type {Props as BModalProps} from './BModal'
129136
export type {Emits as BModalEmits} from './BModal'
137+
130138
export type {Props as BNavProps} from './BNav'
139+
131140
export type {Props as BNavItemProps} from './BNavItem'
141+
132142
export type {Props as BNavItemDropdownProps} from './BNavItemDropdown'
143+
133144
export type {Props as BOffcanvasProps} from './BOffcanvas'
134145
export type {Emits as BOffcanvasEmits} from './BOffcanvas'
146+
135147
export type {Props as BPopoverProps} from './BPopover'
136148
export type {Emits as BPopoverEmits} from './BPopover'
149+
137150
export type {Props as BProgressProps} from './BProgress'
151+
138152
export type {Props as BProgressBarProps} from './BProgressBar'
153+
139154
export type {Props as BRowProps} from './BRow'
155+
156+
// TODO BRow
157+
140158
export type {Props as BSpinnerProps} from './BSpinner'

0 commit comments

Comments
 (0)