mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
89 lines
4.4 KiB
TypeScript
89 lines
4.4 KiB
TypeScript
// Components interfaces
|
|
import { Components as IoniconsComponents, JSX as IoniconsJSX } from 'ionicons';
|
|
export * from './components';
|
|
export * from './index';
|
|
export * from './components/alert/alert-interface';
|
|
export * from './components/action-sheet/action-sheet-interface';
|
|
export * from './components/content/content-interface';
|
|
export * from './components/checkbox/checkbox-interface';
|
|
export * from './components/datetime/datetime-interface';
|
|
export * from './components/input/input-interface';
|
|
export * from './components/loading/loading-interface';
|
|
export * from './components/menu/menu-interface';
|
|
export * from './components/modal/modal-interface';
|
|
export * from './components/nav/nav-interface';
|
|
export * from './components/picker/picker-interface';
|
|
export * from './components/popover/popover-interface';
|
|
export * from './components/radio-group/radio-group-interface';
|
|
export * from './components/range/range-interface';
|
|
export * from './components/router/utils/interface';
|
|
export * from './components/refresher/refresher-interface';
|
|
export * from './components/reorder-group/reorder-group-interface';
|
|
export * from './components/searchbar/searchbar-interface';
|
|
export * from './components/segment/segment-interface';
|
|
export * from './components/select/select-interface';
|
|
export * from './components/select-popover/select-popover-interface';
|
|
export * from './components/spinner/spinner-interface';
|
|
export * from './components/tab-bar/tab-bar-interface';
|
|
export * from './components/textarea/textarea-interface';
|
|
export * from './components/toast/toast-interface';
|
|
export * from './components/toggle/toggle-interface';
|
|
export * from './components/virtual-scroll/virtual-scroll-interface';
|
|
|
|
// Types from utils
|
|
export { Animation, AnimationBuilder, AnimationCallbackOptions, AnimationDirection, AnimationFill, AnimationKeyFrames, AnimationLifecycle } from './utils/animation/animation-interface';
|
|
export * from './utils/overlays-interface';
|
|
export * from './global/config';
|
|
export { Gesture, GestureConfig, GestureDetail } from './utils/gesture';
|
|
|
|
// From: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete
|
|
export type AutocompleteTypes = (
|
|
| 'on' | 'off' | 'name' | 'honorific-prefix' | 'given-name' | 'additional-name' | 'family-name' | 'honorific-suffix'
|
|
| 'nickname' | 'email' | 'username' | 'new-password' | 'current-password' | 'one-time-code' | 'organization-title' | 'organization'
|
|
| 'street-address' | 'address-line1' | 'address-line2' | 'address-line3' | 'address-level4' | 'address-level3' | 'address-level2'
|
|
| 'address-level1' | 'country' | 'country-name' | 'postal-code' | 'cc-name' | 'cc-given-name' | 'cc-additional-name' | 'cc-family-name'
|
|
| 'cc-family-name' | 'cc-number' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-csc' | 'cc-type' | 'transaction-currency' | 'transaction-amount'
|
|
| 'language' | 'bday' | 'bday-day' | 'bday-month' | 'bday-year' | 'sex' | 'tel' | 'tel-country-code' | 'tel-national' | 'tel-area-code' | 'tel-local'
|
|
| 'tel-extension' | 'impp' | 'url' | 'photo');
|
|
|
|
|
|
export type TextFieldTypes = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url' | 'time' | 'week' | 'month' | 'datetime-local';
|
|
export type Side = 'start' | 'end';
|
|
export type PredefinedColors = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'danger' | 'light' | 'medium' | 'dark';
|
|
export type Color = PredefinedColors | string;
|
|
export type Mode = "ios" | "md";
|
|
export type ComponentTags = string;
|
|
export type ComponentRef = Function | HTMLElement | string | null;
|
|
export type ComponentProps<T = null> = {[key: string]: any};
|
|
export type CssClassMap = { [className: string]: boolean };
|
|
export type BackButtonEvent = CustomEvent<BackButtonEventDetail>;
|
|
|
|
export interface FrameworkDelegate {
|
|
attachViewToDom(container: any, component: any, propsOrDataObj?: any, cssClasses?: string[]): Promise<HTMLElement>;
|
|
removeViewFromDom(container: any, component: any): Promise<void>;
|
|
}
|
|
|
|
export interface BackButtonEventDetail {
|
|
register(priority: number, handler: (processNextHandler: () => void) => Promise<any> | void): void;
|
|
}
|
|
|
|
export interface KeyboardEventDetail {
|
|
keyboardHeight: number;
|
|
}
|
|
|
|
export interface StyleEventDetail {
|
|
[styleName: string]: boolean;
|
|
}
|
|
|
|
declare module "./components" {
|
|
export namespace Components {
|
|
export interface IonIcon extends IoniconsComponents.IonIcon{}
|
|
}
|
|
}
|
|
|
|
declare module "./components" {
|
|
export namespace JSX {
|
|
export interface IonIcon extends IoniconsJSX.IonIcon {}
|
|
}
|
|
}
|