mirror of
https://github.com/ElemeFE/element.git
synced 2025-12-16 11:44:01 +08:00
Layout: add xl breakpoint
This commit is contained in:
7
types/col.d.ts
vendored
7
types/col.d.ts
vendored
@@ -32,12 +32,15 @@ export declare class ElCol extends ElementUIComponent {
|
||||
/** ≥768px Responsive columns or column props object */
|
||||
sm: ResponsiveColumn
|
||||
|
||||
/** ≥992 Responsive columns or column props object */
|
||||
/** ≥992px Responsive columns or column props object */
|
||||
md: ResponsiveColumn
|
||||
|
||||
/** ≥1200 Responsive columns or column props object */
|
||||
/** ≥1200px Responsive columns or column props object */
|
||||
lg: ResponsiveColumn
|
||||
|
||||
/** ≥1920px Responsive columns or column props object */
|
||||
xl: ResponsiveColumn
|
||||
|
||||
/** custom element tag */
|
||||
tag: string
|
||||
}
|
||||
|
||||
16
types/switch.d.ts
vendored
16
types/switch.d.ts
vendored
@@ -12,28 +12,28 @@ export declare class ElSwitch extends ElementUIComponent {
|
||||
width: number
|
||||
|
||||
/** Class name of the icon displayed when in on state, overrides on-text */
|
||||
trueIconClass: string
|
||||
activeIconClass: string
|
||||
|
||||
/** Class name of the icon displayed when in off state, overrides off-text */
|
||||
falseIconClass: string
|
||||
inactiveIconClass: string
|
||||
|
||||
/** Text displayed when in on state */
|
||||
trueText: string
|
||||
activeText: string
|
||||
|
||||
/** Text displayed when in off state */
|
||||
falseText: string
|
||||
inactiveText: string
|
||||
|
||||
/** Background color when in on state */
|
||||
trueColor: string
|
||||
activeColor: string
|
||||
|
||||
/** Background color when in off state */
|
||||
falseColor: string
|
||||
inactiveColor: string
|
||||
|
||||
/** Switch value when in on state */
|
||||
trueValue: string | boolean | number
|
||||
activeValue: string | boolean | number
|
||||
|
||||
/** Switch value when in off state */
|
||||
falseValue: string | boolean | number
|
||||
inactiveValue: string | boolean | number
|
||||
|
||||
/** Input name of Switch */
|
||||
name: string
|
||||
|
||||
Reference in New Issue
Block a user