mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 14:01:20 +08:00
chore(components): update components to exclude wp mode
This commit is contained in:
50
packages/core/src/components.d.ts
vendored
50
packages/core/src/components.d.ts
vendored
@ -327,7 +327,7 @@ declare global {
|
|||||||
export interface IonBadgeAttributes extends HTMLAttributes {
|
export interface IonBadgeAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -373,7 +373,7 @@ declare global {
|
|||||||
full?: boolean,
|
full?: boolean,
|
||||||
strong?: boolean,
|
strong?: boolean,
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -435,7 +435,7 @@ declare global {
|
|||||||
export interface IonCardContentAttributes extends HTMLAttributes {
|
export interface IonCardContentAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -467,7 +467,7 @@ declare global {
|
|||||||
export interface IonCardHeaderAttributes extends HTMLAttributes {
|
export interface IonCardHeaderAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -499,7 +499,7 @@ declare global {
|
|||||||
export interface IonCardSubtitleAttributes extends HTMLAttributes {
|
export interface IonCardSubtitleAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -531,7 +531,7 @@ declare global {
|
|||||||
export interface IonCardTitleAttributes extends HTMLAttributes {
|
export interface IonCardTitleAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -563,7 +563,7 @@ declare global {
|
|||||||
export interface IonCardAttributes extends HTMLAttributes {
|
export interface IonCardAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -595,7 +595,7 @@ declare global {
|
|||||||
export interface IonCheckboxAttributes extends HTMLAttributes {
|
export interface IonCheckboxAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
checked?: boolean,
|
checked?: boolean,
|
||||||
disabled?: boolean,
|
disabled?: boolean,
|
||||||
value?: string
|
value?: string
|
||||||
@ -631,7 +631,7 @@ declare global {
|
|||||||
|
|
||||||
href?: string,
|
href?: string,
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
clear?: boolean,
|
clear?: boolean,
|
||||||
disabled?: boolean
|
disabled?: boolean
|
||||||
}
|
}
|
||||||
@ -665,7 +665,7 @@ declare global {
|
|||||||
export interface IonChipAttributes extends HTMLAttributes {
|
export interface IonChipAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -841,7 +841,7 @@ declare global {
|
|||||||
export interface IonFabButtonAttributes extends HTMLAttributes {
|
export interface IonFabButtonAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
href?: string,
|
href?: string,
|
||||||
activated?: boolean,
|
activated?: boolean,
|
||||||
toggleActive?: Function,
|
toggleActive?: Function,
|
||||||
@ -1273,7 +1273,7 @@ declare global {
|
|||||||
export interface IonItemDividerAttributes extends HTMLAttributes {
|
export interface IonItemDividerAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1305,7 +1305,7 @@ declare global {
|
|||||||
export interface IonItemOptionAttributes extends HTMLAttributes {
|
export interface IonItemOptionAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
href?: string,
|
href?: string,
|
||||||
disabled?: boolean
|
disabled?: boolean
|
||||||
}
|
}
|
||||||
@ -1400,7 +1400,7 @@ declare global {
|
|||||||
export interface IonItemAttributes extends HTMLAttributes {
|
export interface IonItemAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
href?: string
|
href?: string
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1463,7 +1463,7 @@ declare global {
|
|||||||
export interface IonLabelAttributes extends HTMLAttributes {
|
export interface IonLabelAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
fixed?: boolean,
|
fixed?: boolean,
|
||||||
floating?: boolean,
|
floating?: boolean,
|
||||||
stacked?: boolean
|
stacked?: boolean
|
||||||
@ -1498,7 +1498,7 @@ declare global {
|
|||||||
export interface IonListHeaderAttributes extends HTMLAttributes {
|
export interface IonListHeaderAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1950,7 +1950,7 @@ declare global {
|
|||||||
export interface IonNoteAttributes extends HTMLAttributes {
|
export interface IonNoteAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2218,7 +2218,7 @@ declare global {
|
|||||||
export interface IonRadioAttributes extends HTMLAttributes {
|
export interface IonRadioAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
checked?: boolean,
|
checked?: boolean,
|
||||||
disabled?: boolean,
|
disabled?: boolean,
|
||||||
value?: string
|
value?: string
|
||||||
@ -2292,7 +2292,7 @@ declare global {
|
|||||||
export interface IonRangeAttributes extends HTMLAttributes {
|
export interface IonRangeAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
debounce?: number,
|
debounce?: number,
|
||||||
disabled?: boolean,
|
disabled?: boolean,
|
||||||
dualKnobs?: boolean,
|
dualKnobs?: boolean,
|
||||||
@ -2527,7 +2527,7 @@ declare global {
|
|||||||
export interface IonSearchbarAttributes extends HTMLAttributes {
|
export interface IonSearchbarAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
animated?: boolean,
|
animated?: boolean,
|
||||||
autocomplete?: string,
|
autocomplete?: string,
|
||||||
autocorrect?: string,
|
autocorrect?: string,
|
||||||
@ -2569,7 +2569,7 @@ declare global {
|
|||||||
export interface IonSegmentButtonAttributes extends HTMLAttributes {
|
export interface IonSegmentButtonAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
checked?: boolean,
|
checked?: boolean,
|
||||||
disabled?: boolean,
|
disabled?: boolean,
|
||||||
value?: string
|
value?: string
|
||||||
@ -2604,7 +2604,7 @@ declare global {
|
|||||||
export interface IonSegmentAttributes extends HTMLAttributes {
|
export interface IonSegmentAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
disabled?: boolean,
|
disabled?: boolean,
|
||||||
value?: string
|
value?: string
|
||||||
}
|
}
|
||||||
@ -2847,7 +2847,7 @@ declare global {
|
|||||||
export interface IonSpinnerAttributes extends HTMLAttributes {
|
export interface IonSpinnerAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
duration?: number,
|
duration?: number,
|
||||||
name?: string,
|
name?: string,
|
||||||
paused?: boolean
|
paused?: boolean
|
||||||
@ -3249,7 +3249,7 @@ declare global {
|
|||||||
export interface IonToggleAttributes extends HTMLAttributes {
|
export interface IonToggleAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp',
|
mode?: 'ios' | 'md',
|
||||||
checked?: boolean,
|
checked?: boolean,
|
||||||
disabled?: boolean,
|
disabled?: boolean,
|
||||||
value?: string
|
value?: string
|
||||||
@ -3318,7 +3318,7 @@ declare global {
|
|||||||
export interface IonToolbarAttributes extends HTMLAttributes {
|
export interface IonToolbarAttributes extends HTMLAttributes {
|
||||||
|
|
||||||
color?: string,
|
color?: string,
|
||||||
mode?: 'ios' | 'md' | 'wp'
|
mode?: 'ios' | 'md'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user