Skip to content

Commit ac7724a

Browse files
author
issayah
committed
type components files to use @/types
1 parent f883593 commit ac7724a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+49
-49
lines changed

src/types/ButtonVariant.d.ts

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

33
type ButtonVariant =
44
| ColorVariant

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 'src/types'
1+
import type {VerticalAlign} from '@/types'
22

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

src/types/TableField.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type {StyleValue, TdHTMLAttributes, ThHTMLAttributes} from 'vue'
2-
import type {ColorVariant, LiteralUnion} from 'src/types'
2+
import type {ColorVariant, LiteralUnion} from '@/types'
33

44
export interface TableFieldObject<T = Record<string, unknown>> {
55
key: LiteralUnion<keyof T>

src/types/TableItem.d.ts

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

33
type TableItem<T = Record<string, unknown>> = T & {
44
_rowVariant?: ColorVariant

src/types/components/BAlert.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {ColorVariant} from 'src/types'
1+
import type {ColorVariant} from '@/types'
22
// Props
33
export interface Props {
44
dismissLabel?: string

src/types/components/BAvatar/BAvatar.d.ts

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

33
// Props
44
export interface Props {

src/types/components/BAvatar/BAvatarGroup.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type {ComputedRef} from 'vue'
2-
import type {ColorVariant, InputSize} from 'src/types'
2+
import type {ColorVariant, InputSize} from '@/types'
33
// Props
44
export interface Props {
55
overlap?: number | string

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

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

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 type {BreadcrumbItem} from 'src/types'
1+
import type {BreadcrumbItem} from '@/types'
22
// Props
33
export interface Props {
44
items: Array<BreadcrumbItem>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {ButtonVariant, InputSize, LinkTarget} from 'src/types'
1+
import type {ButtonVariant, InputSize, LinkTarget} from '@/types'
22
import type {BLinkProps} from 'src/types/components'
33
// Props
44
export interface Props extends BLinkProps {

0 commit comments

Comments
 (0)