Skip to content

Commit

Permalink
Should have fixed deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkGhostHunter committed Nov 24, 2023
1 parent f6cf68f commit 152b6bd
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/runtime/types/list.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import Button from '../components/elements/Button.vue'

export type ListSeparatorColor = keyof typeof list.color | typeof colors[number]

interface Item {
export type ListOrientation = keyof typeof list.stacking.orientation

export type ListItem = {
label: string,
icon?: string,
leading?: boolean,
Expand All @@ -14,10 +16,6 @@ interface Item {
trailingIcon?: string
}

export type ListOrientation = keyof typeof list.stacking.orientation

export type ListItem = Item | PropType<Button>

export interface ListSlots {
default: undefined,
separator?: { index: number, isFirst: boolean, isLast: boolean },
Expand Down

0 comments on commit 152b6bd

Please sign in to comment.