Skip to content

Commit 6b55daa

Browse files
author
issayah
committed
Minor uniformity fixes.
1 parent 4facf0e commit 6b55daa

File tree

10 files changed

+12
-15
lines changed

10 files changed

+12
-15
lines changed

src/types/Container.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type VerticalAlign from './VerticalAlign'
1+
import type {VerticalAlign} from 'src/types'
22

33
export type ContainerVerticalAlign = Exclude<VerticalAlign, 'baseline' | 'text-top' | 'text-bottom'>
44
export type ContainerHorizontalAlign = 'left' | 'center' | 'right'

src/types/components/BBadge/BBadge.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type {ColorVariant} from 'src/types'
2-
import type {BLinkProps} from '..'
2+
import type {BLinkProps} from 'src/types/components'
33
// Props
44
export interface Props extends Omit<BLinkProps, 'event' | 'routerTag'> {
55
pill?: boolean

src/types/components/BBreadcrumb/BBreadcrumb.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {BreadcrumbItem} from 'src/types'
1+
import type {BreadcrumbItem} from 'src/types'
22
// Props
33
export interface Props {
44
items: Array<BreadcrumbItem>

src/types/components/BBreadcrumb/BBreadcrumbItem.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {BLinkProps} from '..'
1+
import type {BLinkProps} from 'src/types/components'
22
// Props
33
export interface Props extends Omit<BLinkProps, 'event' | 'routerTag'> {
44
active?: boolean

src/types/components/BButton/BButton.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type {ButtonVariant, InputSize, LinkTarget} from 'src/types'
2-
import type {BLinkProps} from '..'
2+
import type {BLinkProps} from 'src/types/components'
33
// Props
44
export interface Props extends BLinkProps {
55
active?: boolean

src/types/components/BDropdown/BDropdown.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type * as Popper from '@popperjs/core'
1+
import type Popper from '@popperjs/core'
22
import type {ButtonType, ButtonVariant, Size} from 'src/types'
33
// Props
44
export interface Props {

src/types/components/BToast/BToast.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import {BodyProp} from 'src/components/BToast/plugin'
2-
import {ColorVariant} from 'src/types'
3-
import type {BLinkProps} from '..'
1+
import type {BodyProp} from 'src/components/BToast/plugin'
2+
import type {ColorVariant} from 'src/types'
3+
import type {BLinkProps} from 'src/types/components'
44
// Props
55
export interface Props extends BLinkProps {
66
title: string

src/types/components/BTransition/BTransition.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {TransitionMode} from 'src/types'
1+
import type {TransitionMode} from 'src/types'
22

33
// Props
44
export interface Props {

src/types/components/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,7 @@ export type {Props as BTransitionProps} from './BTransition/BTransition'
122122
export type {Props as BAlertProps} from './BAlert'
123123
export type {Emits as BAlertEmits} from './BAlert'
124124

125-
// export type {Props as BColProps} from './BCol'
126-
// TODO BCol
125+
export type {Props as BColProps} from './BCol'
127126

128127
export type {Props as BCollapseProps} from './BCollapse'
129128
export type {Emits as BCollapseEmits} from './BCollapse'
@@ -153,6 +152,4 @@ export type {Props as BProgressBarProps} from './BProgressBar'
153152

154153
export type {Props as BRowProps} from './BRow'
155154

156-
// TODO BRow
157-
158155
export type {Props as BSpinnerProps} from './BSpinner'

src/types/composables/FormCommonInputProps.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Size} from '..'
1+
import type {Size} from 'src/types'
22

33
interface FormCommonInputProps {
44
ariaInvalid?: boolean | 'false' | 'true' | 'grammar' | 'spelling'

0 commit comments

Comments
 (0)