mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00

* Add new keyframes proof of concept * update esm import * add base before and after methods, add tests * add base before and after hooks * update clean up methods, add tests * add web animations support, change to arrow functions * remove console logs * add from, to, fromTo, and other properties * add more tests, fix onFinish functionality, being testing with nav transitions * add progress methods, use force linear * run linter * Add playSync * integrate animations with framework components * onFinish now supports multiple callbacks * change const to let * testing reverse * add support for both animation utilities * bug fix * export createAnimation, a few tweaks * add base tests * fix issue with onFinish being called out of order. added tests * fix race conditions in tests * clean up * fix bug where onFinish not calling for empty elements array, update test * clean up * fix treeshaking, remove old comments * remove old tests * Add test for animationbuilder backwards compat * update typings for menu controller * mock web animations in tests * run build * fix type errors * sync with master * use requestAnimationFrame instead of writeTask * fix flaky tests, fix menu * fix ordering * update webdriver * fix wrong version * Revert "fix wrong version" This reverts commit be91296e9701399f8d784b08d09a3c475ca15df7. Revert chromedriver update * Revert "update webdriver" This reverts commit e49bc9d76e335a0af5828725065399bd6795fa37. Revert chromedriver update * expose raw animation object, add tests * add stylesheet recycling * finalize before and after hook tests * a few styling changes * fix lint warnings * get rid of old code * Fix progressStep overflow bug * disable reuse stylesheet * small updates * fix old animation create * setStyleProperty helper * reuse keyframe styles * keyframes * fix css animation issue with display: none, add tests * add comment * fix issue with progress animations and css animations * clean up * clean up pt2 * fix tests * fix linter * add fill for overlays * fix swipe to go back * clean up css animations when done * fix edge cases with css animations * fix menu open and close * add reset function * clean up reset fn * Fix issue where animation always being reset * allow updating animations on the fly * add clear onfinish method * fix linter * add callback options, expand force direction * ensure opts is defined * fix css animations open and close for menus * remove test * add extra check * clean up * fix css anim bug swipe to go back * fix pause * setup alt animation to avoid flickering * clean up * reset flags on destroy * add ability to change duration on progressEnd * fix flicker on duration change for css animations * fix ios transition * remove unneeded recursion * increase durability of updating css animations on the fly * fix gesture anim * fix web anim as well. more work for cleanup * simplify progressEnd for css animations * fix swipe to go back race condition * clean up * Add todo * fix one more bug
70 lines
3.1 KiB
TypeScript
70 lines
3.1 KiB
TypeScript
// Components interfaces
|
|
import {Components as IoniconsComponents} 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 as IonicAnimation } from './utils/animation/animation-interface';
|
|
export * from './utils/animation/old-animation/animation-interface';
|
|
export * from './utils/overlays-interface';
|
|
export * from './global/config';
|
|
export { Gesture, GestureDetail } from './utils/gesture';
|
|
|
|
// Global aux types
|
|
export type TextFieldTypes = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url' | 'time';
|
|
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: () => Promise<any> | void): void;
|
|
}
|
|
|
|
export interface StyleEventDetail {
|
|
[styleName: string]: boolean;
|
|
}
|
|
|
|
declare module "./components" {
|
|
export namespace Components {
|
|
export interface IonIcon extends IoniconsComponents.IonIcon{}
|
|
}
|
|
}
|