mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00

Issue number: Internal --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> The `GestureController` provider does not use the correct underlying instance of the utilities from either the lazy or custom elements build, depending on if the developer is using `@ionic/angular` or `@ionic/angular/standalone`. It will always use the lazy instance. This applied to the `createGesture` function. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - `GestureController` uses the instance of the utilities based on it's implementation type, e.g. `@ionic/angular/standalone` uses the custom elements build with the utilities from `@ionic/core/components`. - `@ionic/angular` and `@ionic/angular/standalone` now export their own specific implementation of `GestureController` ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
export { AlertController } from './providers/alert-controller';
|
|
export { LoadingController } from './providers/loading-controller';
|
|
export { MenuController } from './providers/menu-controller';
|
|
export { PickerController } from './providers/picker-controller';
|
|
export { DomController } from './providers/dom-controller';
|
|
export { NavController } from './providers/nav-controller';
|
|
|
|
export { Config, ConfigToken } from './providers/config';
|
|
export { Platform } from './providers/platform';
|
|
|
|
export { bindLifecycleEvents, AngularDelegate } from './providers/angular-delegate';
|
|
|
|
export type { IonicWindow } from './types/interfaces';
|
|
export type { ViewWillEnter, ViewWillLeave, ViewDidEnter, ViewDidLeave } from './types/ionic-lifecycle-hooks';
|
|
|
|
export { NavParams } from './directives/navigation/nav-params';
|
|
|
|
export { IonPopover } from './overlays/popover';
|
|
export { IonModal } from './overlays/modal';
|
|
|
|
export { IonRouterOutlet, provideComponentInputBinding } from './directives/navigation/router-outlet';
|
|
|
|
export { IonBackButton } from './directives/navigation/back-button';
|
|
export {
|
|
RouterLinkDelegateDirective,
|
|
RouterLinkWithHrefDelegateDirective,
|
|
} from './directives/navigation/router-link-delegate';
|
|
export { IonNav } from './directives/navigation/nav';
|
|
export { IonTabs } from './directives/navigation/tabs';
|
|
export * from './directives/control-value-accessors';
|
|
|
|
export { ProxyCmp } from './utils/proxy';
|
|
|
|
export { IonicRouteStrategy } from './utils/routing';
|
|
export { OverlayBaseController } from './utils/overlay';
|
|
|
|
export { raf } from './utils/util';
|