File tree Expand file tree Collapse file tree 4 files changed +55
-3
lines changed Expand file tree Collapse file tree 4 files changed +55
-3
lines changed Original file line number Diff line number Diff line change
1
+ export interface ColBreakpointProps {
2
+ sm ?: boolean | string | number
3
+ md ?: boolean | string | number
4
+ lg ?: boolean | string | number
5
+ xl ?: boolean | string | number
6
+ xxl ?: boolean | string | number
7
+ }
8
+
9
+ export interface RowColsBreakpointProps {
10
+ colsSm ?: string | number
11
+ colsMd ?: string | number
12
+ colsLg ?: string | number
13
+ colsXl ?: string | number
14
+ colsXxl ?: string | number
15
+ }
16
+
17
+ export interface OffsetBreakpointProps {
18
+ offsetSm ?: string | number
19
+ offsetMd ?: string | number
20
+ offsetLg ?: string | number
21
+ offsetXl ?: string | number
22
+ offsetXxl ?: string | number
23
+ }
24
+
25
+ export interface OrderBreakpointProps {
26
+ OrderSm ?: string | number
27
+ OrderMd ?: string | number
28
+ OrderLg ?: string | number
29
+ OrderXl ?: string | number
30
+ OrderXxl ?: string | number
31
+ }
Original file line number Diff line number Diff line change
1
+ import type Alignment from 'src/types/Alignment'
2
+ import type { ColBreakpointProps , OffsetBreakpointProps , OrderBreakpointProps } from 'src/types'
3
+
1
4
// Props
2
- export interface Props { }
5
+ export interface Props extends ColBreakpointProps , OffsetBreakpointProps , OrderBreakpointProps {
6
+ col ?: boolean
7
+ cols ?: string | number
8
+ offset ?: string | number
9
+ order ?: string | number
10
+ alignSelf ?: Alignment . Vertical | 'auto'
11
+ tag ?: string
12
+ }
3
13
// Emits
4
14
5
15
// Other
Original file line number Diff line number Diff line change
1
+ import type Alignment from 'src/types/Alignment'
2
+ import type { RowColsBreakpointProps } from 'src/types'
1
3
// Props
2
- export interface Props {
3
-
4
+ export interface Props extends RowColsBreakpointProps {
5
+ tag ?: string
6
+ gutterX ?: string
7
+ gutterY ?: string
8
+ alignV ?: Alignment . Vertical
9
+ alignH ?: Alignment . Horizontal
10
+ alignContent ?: Alignment . Content
4
11
}
5
12
// Emits
6
13
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ export type {default as Animation} from './Animation'
3
3
export type { default as BootstrapVueOptions } from './BootstrapVueOptions'
4
4
export type { default as BreadcrumbItem } from './BreadcrumbItem'
5
5
export type { default as Breakpoint } from './Breakpoint'
6
+ export type { ColBreakpointProps } from './BreakpointProps'
7
+ export type { RowColsBreakpointProps } from './BreakpointProps'
8
+ export type { OffsetBreakpointProps } from './BreakpointProps'
9
+ export type { OrderBreakpointProps } from './BreakpointProps'
6
10
export type { default as ButtonType } from './ButtonType'
7
11
export type { default as ButtonVariant } from './ButtonVariant'
8
12
export type { default as ColorVariant } from './ColorVariant'
You can’t perform that action at this time.
0 commit comments