-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f2e0be
commit d8a1697
Showing
18 changed files
with
100 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import { ElementUIComponent } from './component' | ||
|
||
/** Aside Component */ | ||
export declare class ElAside extends ElementUIComponent { | ||
interface IAside extends ElementUIComponent { | ||
/** Width of the side section */ | ||
width: string | ||
} | ||
|
||
/** Aside Component */ | ||
export const ElAside: IAside |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import { ElementUIComponent } from './component' | ||
|
||
/** Breadcrumb Item Component */ | ||
export declare class ElBreadcrumbItem extends ElementUIComponent { | ||
interface IBreadcrumbItem extends ElementUIComponent { | ||
/** Target route of the link, same as to of vue-router */ | ||
to: string | object | ||
|
||
/** If true, the navigation will not leave a history record */ | ||
replace: boolean | ||
} | ||
|
||
/** Breadcrumb Item Component */ | ||
export const ElBreadcrumbItem: IBreadcrumbItem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import { ElementUIComponent } from './component' | ||
|
||
/** Displays the location of the current page, making it easier to browser back */ | ||
export declare class ElBreadcrumb extends ElementUIComponent { | ||
interface IBreadcrumb extends ElementUIComponent { | ||
/** Separator character */ | ||
separator: string | ||
|
||
/** Class name of the icon separator */ | ||
separatorClass: string | ||
} | ||
|
||
/** Breadcrumb Component */ | ||
export const ElBreadcrumb: IBreadcrumb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
import { ElementUIComponent } from './component' | ||
|
||
interface IButtonGroup extends ElementUIComponent {} | ||
|
||
/** Button Group Component */ | ||
export declare class ElButtonGroup extends ElementUIComponent {} | ||
export const ElButtonGroup: IButtonGroup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import { ElementUIComponent } from './component' | ||
|
||
/** Carousel Item Component */ | ||
export declare class ElCarouselItem extends ElementUIComponent { | ||
interface ICarouselItem extends ElementUIComponent { | ||
/** Name of the item, can be used in setActiveItem */ | ||
name: string | ||
|
||
/** Text content for the corresponding indicator */ | ||
label: string | ||
} | ||
|
||
/** Carousel Item Component */ | ||
export const ElCarouselItem: ICarouselItem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.