mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
chore(picker): move picker-column to separate directory
This commit is contained in:
62
packages/core/src/components.d.ts
vendored
62
packages/core/src/components.d.ts
vendored
@ -1992,6 +1992,37 @@ declare global {
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
PickerColumnCmp as IonPickerColumn
|
||||
} from './components/picker-column/picker-column';
|
||||
|
||||
declare global {
|
||||
interface HTMLIonPickerColumnElement extends IonPickerColumn, HTMLElement {
|
||||
}
|
||||
var HTMLIonPickerColumnElement: {
|
||||
prototype: HTMLIonPickerColumnElement;
|
||||
new (): HTMLIonPickerColumnElement;
|
||||
};
|
||||
interface HTMLElementTagNameMap {
|
||||
"ion-picker-column": HTMLIonPickerColumnElement;
|
||||
}
|
||||
interface ElementTagNameMap {
|
||||
"ion-picker-column": HTMLIonPickerColumnElement;
|
||||
}
|
||||
namespace JSX {
|
||||
interface IntrinsicElements {
|
||||
"ion-picker-column": JSXElements.IonPickerColumnAttributes;
|
||||
}
|
||||
}
|
||||
namespace JSXElements {
|
||||
export interface IonPickerColumnAttributes extends HTMLAttributes {
|
||||
|
||||
col?: PickerColumn
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
PickerController as IonPickerController
|
||||
} from './components/picker-controller/picker-controller';
|
||||
@ -2022,37 +2053,6 @@ declare global {
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
PickerColumnCmp as IonPickerColumn
|
||||
} from './components/picker/picker-column';
|
||||
|
||||
declare global {
|
||||
interface HTMLIonPickerColumnElement extends IonPickerColumn, HTMLElement {
|
||||
}
|
||||
var HTMLIonPickerColumnElement: {
|
||||
prototype: HTMLIonPickerColumnElement;
|
||||
new (): HTMLIonPickerColumnElement;
|
||||
};
|
||||
interface HTMLElementTagNameMap {
|
||||
"ion-picker-column": HTMLIonPickerColumnElement;
|
||||
}
|
||||
interface ElementTagNameMap {
|
||||
"ion-picker-column": HTMLIonPickerColumnElement;
|
||||
}
|
||||
namespace JSX {
|
||||
interface IntrinsicElements {
|
||||
"ion-picker-column": JSXElements.IonPickerColumnAttributes;
|
||||
}
|
||||
}
|
||||
namespace JSXElements {
|
||||
export interface IonPickerColumnAttributes extends HTMLAttributes {
|
||||
|
||||
col?: PickerColumn
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import {
|
||||
Picker as IonPicker
|
||||
} from './components/picker/picker';
|
||||
|
Reference in New Issue
Block a user