@ionic/angular 8.7.19-nightly.20260303 → 8.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/index.d.ts +1 -0
- package/common/overlays/modal.d.ts +13 -1
- package/common/providers/angular-delegate.d.ts +4 -3
- package/common/types/overlay-options.d.ts +16 -0
- package/directives/proxies.d.ts +14 -2
- package/esm2022/common/index.mjs +1 -1
- package/esm2022/common/overlays/modal.mjs +4 -1
- package/esm2022/common/providers/angular-delegate.mjs +9 -7
- package/esm2022/common/types/overlay-options.mjs +2 -0
- package/esm2022/directives/proxies.mjs +8 -8
- package/esm2022/index.mjs +1 -1
- package/esm2022/providers/modal-controller.mjs +4 -3
- package/esm2022/providers/popover-controller.mjs +4 -3
- package/esm2022/standalone/directives/proxies.mjs +8 -8
- package/esm2022/standalone/index.mjs +1 -1
- package/esm2022/standalone/providers/modal-controller.mjs +4 -3
- package/esm2022/standalone/providers/popover-controller.mjs +4 -3
- package/fesm2022/ionic-angular-common.mjs +11 -6
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +13 -11
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +13 -11
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +2 -2
- package/providers/modal-controller.d.ts +1 -1
- package/providers/popover-controller.d.ts +1 -1
- package/standalone/directives/proxies.d.ts +14 -2
- package/standalone/index.d.ts +2 -1
- package/standalone/providers/modal-controller.d.ts +1 -1
- package/standalone/providers/popover-controller.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { IonPopover } from './directives/overlays/popover';
|
|
|
12
12
|
export * from './directives/proxies';
|
|
13
13
|
export * from './directives/validators';
|
|
14
14
|
export { DomController, NavController, Config, Platform, AngularDelegate, NavParams, IonicRouteStrategy, IonModalToken, ViewWillEnter, ViewWillLeave, ViewDidEnter, ViewDidLeave, } from '@ionic/angular/common';
|
|
15
|
+
export type { ModalOptions, PopoverOptions } from '@ionic/angular/common';
|
|
15
16
|
export { AlertController } from './providers/alert-controller';
|
|
16
17
|
export { AnimationController } from './providers/animation-controller';
|
|
17
18
|
export { ActionSheetController } from './providers/action-sheet-controller';
|
|
@@ -23,4 +24,4 @@ export { PickerController } from './providers/picker-controller';
|
|
|
23
24
|
export { PopoverController } from './providers/popover-controller';
|
|
24
25
|
export { ToastController } from './providers/toast-controller';
|
|
25
26
|
export { IonicModule } from './ionic-module';
|
|
26
|
-
export { createAnimation, createGesture, iosTransitionAnimation, mdTransitionAnimation, IonicSlides, getPlatforms, isPlatform, getTimeGivenProgression, getIonPageElement, Animation, AnimationBuilder, AnimationCallbackOptions, AnimationDirection, AnimationFill, AnimationKeyFrames, AnimationLifecycle, Gesture, GestureConfig, GestureDetail, NavComponentWithProps, SpinnerTypes, AccordionGroupCustomEvent, AccordionGroupChangeEventDetail, BreadcrumbCustomEvent, BreadcrumbCollapsedClickEventDetail, ActionSheetOptions, ActionSheetButton, AlertOptions, AlertInput, AlertButton, BackButtonEvent, CheckboxCustomEvent, CheckboxChangeEventDetail, DatetimeCustomEvent, DatetimeChangeEventDetail, InfiniteScrollCustomEvent, InputCustomEvent, InputChangeEventDetail, InputOtpCustomEvent, InputOtpChangeEventDetail, InputOtpCompleteEventDetail, InputOtpInputEventDetail, ItemReorderEventDetail, ItemReorderCustomEvent, ItemSlidingCustomEvent, IonicSafeString, LoadingOptions, MenuCustomEvent,
|
|
27
|
+
export { createAnimation, createGesture, iosTransitionAnimation, mdTransitionAnimation, IonicSlides, getPlatforms, isPlatform, getTimeGivenProgression, getIonPageElement, Animation, AnimationBuilder, AnimationCallbackOptions, AnimationDirection, AnimationFill, AnimationKeyFrames, AnimationLifecycle, Gesture, GestureConfig, GestureDetail, NavComponentWithProps, SpinnerTypes, AccordionGroupCustomEvent, AccordionGroupChangeEventDetail, BreadcrumbCustomEvent, BreadcrumbCollapsedClickEventDetail, ActionSheetOptions, ActionSheetButton, AlertOptions, AlertInput, AlertButton, BackButtonEvent, CheckboxCustomEvent, CheckboxChangeEventDetail, DatetimeCustomEvent, DatetimeChangeEventDetail, InfiniteScrollCustomEvent, InputCustomEvent, InputChangeEventDetail, InputOtpCustomEvent, InputOtpChangeEventDetail, InputOtpCompleteEventDetail, InputOtpInputEventDetail, ItemReorderEventDetail, ItemReorderCustomEvent, ItemSlidingCustomEvent, IonicSafeString, LoadingOptions, MenuCustomEvent, ModalDragEventDetail, NavCustomEvent, PickerOptions, PickerButton, PickerColumn, PickerColumnOption, PlatformConfig, RadioGroupCustomEvent, RadioGroupChangeEventDetail, RangeCustomEvent, RangeChangeEventDetail, RangeKnobMoveStartEventDetail, RangeKnobMoveEndEventDetail, RefresherCustomEvent, RefresherEventDetail, ReorderMoveCustomEvent, ReorderMoveEventDetail, ReorderEndCustomEvent, ReorderEndEventDetail, RouterEventDetail, RouterCustomEvent, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollDetail, ScrollCustomEvent, SearchbarCustomEvent, SearchbarChangeEventDetail, SearchbarInputEventDetail, SegmentChangeEventDetail, SegmentCustomEvent, SegmentValue, SelectChangeEventDetail, SelectCustomEvent, TabsCustomEvent, TextareaChangeEventDetail, TextareaCustomEvent, ToastOptions, ToastButton, ToastLayout, ToggleChangeEventDetail, ToggleCustomEvent, TransitionOptions, openURL, } from '@ionic/core';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/angular",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.8.0",
|
|
4
4
|
"description": "Angular specific wrappers for @ionic/core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ionic",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@ionic/core": "8.
|
|
53
|
+
"@ionic/core": "8.8.0",
|
|
54
54
|
"ionicons": "^8.0.13",
|
|
55
55
|
"jsonc-parser": "^3.0.0",
|
|
56
56
|
"tslib": "^2.3.0"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
2
|
-
import type { ModalOptions } from '@ionic/
|
|
2
|
+
import type { ModalOptions } from '@ionic/angular/common';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ModalController extends OverlayBaseController<ModalOptions, HTMLIonModalElement> {
|
|
5
5
|
private angularDelegate;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
2
|
-
import type { PopoverOptions } from '@ionic/
|
|
2
|
+
import type { PopoverOptions } from '@ionic/angular/common';
|
|
3
3
|
export declare class PopoverController extends OverlayBaseController<PopoverOptions, HTMLIonPopoverElement> {
|
|
4
4
|
private angularDelegate;
|
|
5
5
|
private injector;
|
|
@@ -11,6 +11,7 @@ import type { MenuCloseEventDetail as IIonMenuMenuCloseEventDetail } from '@ioni
|
|
|
11
11
|
import type { PickerColumnChangeEventDetail as IIonPickerColumnPickerColumnChangeEventDetail } from '@ionic/core/components';
|
|
12
12
|
import type { OverlayEventDetail as IIonPickerLegacyOverlayEventDetail } from '@ionic/core/components';
|
|
13
13
|
import type { RefresherEventDetail as IIonRefresherRefresherEventDetail } from '@ionic/core/components';
|
|
14
|
+
import type { RefresherPullEndEventDetail as IIonRefresherRefresherPullEndEventDetail } from '@ionic/core/components';
|
|
14
15
|
import type { ItemReorderEventDetail as IIonReorderGroupItemReorderEventDetail } from '@ionic/core/components';
|
|
15
16
|
import type { ReorderMoveEventDetail as IIonReorderGroupReorderMoveEventDetail } from '@ionic/core/components';
|
|
16
17
|
import type { ReorderEndEventDetail as IIonReorderGroupReorderEndEventDetail } from '@ionic/core/components';
|
|
@@ -760,8 +761,19 @@ export declare interface IonRefresher extends Components.IonRefresher {
|
|
|
760
761
|
ionPull: EventEmitter<CustomEvent<void>>;
|
|
761
762
|
/**
|
|
762
763
|
* Emitted when the user begins to start pulling down.
|
|
764
|
+
TODO(FW-7044): Remove this in a major release @deprecated Use `ionPullStart` instead.
|
|
763
765
|
*/
|
|
764
766
|
ionStart: EventEmitter<CustomEvent<void>>;
|
|
767
|
+
/**
|
|
768
|
+
* Emitted when the user begins to start pulling down.
|
|
769
|
+
*/
|
|
770
|
+
ionPullStart: EventEmitter<CustomEvent<void>>;
|
|
771
|
+
/**
|
|
772
|
+
* Emitted when the refresher has returned to the inactive state
|
|
773
|
+
after a pull gesture. This fires whether the refresh completed
|
|
774
|
+
successfully or was canceled.
|
|
775
|
+
*/
|
|
776
|
+
ionPullEnd: EventEmitter<CustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
|
|
765
777
|
}
|
|
766
778
|
export declare class IonRefresherContent {
|
|
767
779
|
protected z: NgZone;
|
|
@@ -855,7 +867,7 @@ export declare class IonSegmentView {
|
|
|
855
867
|
protected el: HTMLIonSegmentViewElement;
|
|
856
868
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
857
869
|
static ɵfac: i0.ɵɵFactoryDeclaration<IonSegmentView, never>;
|
|
858
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IonSegmentView, "ion-segment-view", never, { "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
870
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IonSegmentView, "ion-segment-view", never, { "disabled": { "alias": "disabled"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
859
871
|
}
|
|
860
872
|
export declare interface IonSegmentView extends Components.IonSegmentView {
|
|
861
873
|
/**
|
|
@@ -868,7 +880,7 @@ export declare class IonSelectModal {
|
|
|
868
880
|
protected el: HTMLIonSelectModalElement;
|
|
869
881
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
870
882
|
static ɵfac: i0.ɵɵFactoryDeclaration<IonSelectModal, never>;
|
|
871
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectModal, "ion-select-modal", never, { "header": { "alias": "header"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
883
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectModal, "ion-select-modal", never, { "cancelText": { "alias": "cancelText"; "required": false; }; "header": { "alias": "header"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
872
884
|
}
|
|
873
885
|
export declare interface IonSelectModal extends Components.IonSelectModal {
|
|
874
886
|
}
|
package/standalone/index.d.ts
CHANGED
|
@@ -16,7 +16,8 @@ export { PickerController } from './providers/picker-controller';
|
|
|
16
16
|
export { PopoverController } from './providers/popover-controller';
|
|
17
17
|
export { ToastController } from './providers/toast-controller';
|
|
18
18
|
export { DomController, NavController, Config, Platform, NavParams, IonModalToken, IonicRouteStrategy, ViewWillEnter, ViewDidEnter, ViewWillLeave, ViewDidLeave, } from '@ionic/angular/common';
|
|
19
|
+
export type { ModalOptions, PopoverOptions } from '@ionic/angular/common';
|
|
19
20
|
export { IonNav } from './navigation/nav';
|
|
20
21
|
export { IonCheckbox, IonDatetime, IonInput, IonInputOtp, IonIcon, IonRadioGroup, IonRange, IonSearchbar, IonSegment, IonSelect, IonTextarea, IonToggle, } from './directives';
|
|
21
22
|
export * from './directives/proxies';
|
|
22
|
-
export { createAnimation, createGesture, iosTransitionAnimation, mdTransitionAnimation, IonicSlides, getPlatforms, isPlatform, getTimeGivenProgression, Animation, AnimationBuilder, AnimationCallbackOptions, AnimationDirection, AnimationFill, AnimationKeyFrames, AnimationLifecycle, Gesture, GestureConfig, GestureDetail, NavComponentWithProps, SpinnerTypes, AccordionGroupCustomEvent, AccordionGroupChangeEventDetail, BreadcrumbCustomEvent, BreadcrumbCollapsedClickEventDetail, ActionSheetOptions, ActionSheetButton, AlertOptions, AlertInput, AlertButton, BackButtonEvent, CheckboxCustomEvent, CheckboxChangeEventDetail, DatetimeCustomEvent, DatetimeChangeEventDetail, InfiniteScrollCustomEvent, InputCustomEvent, InputChangeEventDetail, InputOtpCustomEvent, InputOtpChangeEventDetail, InputOtpCompleteEventDetail, InputOtpInputEventDetail, ItemReorderEventDetail, ItemReorderCustomEvent, ItemSlidingCustomEvent, IonicSafeString, LoadingOptions, MenuCustomEvent,
|
|
23
|
+
export { createAnimation, createGesture, iosTransitionAnimation, mdTransitionAnimation, IonicSlides, getPlatforms, isPlatform, getTimeGivenProgression, Animation, AnimationBuilder, AnimationCallbackOptions, AnimationDirection, AnimationFill, AnimationKeyFrames, AnimationLifecycle, Gesture, GestureConfig, GestureDetail, NavComponentWithProps, SpinnerTypes, AccordionGroupCustomEvent, AccordionGroupChangeEventDetail, BreadcrumbCustomEvent, BreadcrumbCollapsedClickEventDetail, ActionSheetOptions, ActionSheetButton, AlertOptions, AlertInput, AlertButton, BackButtonEvent, CheckboxCustomEvent, CheckboxChangeEventDetail, DatetimeCustomEvent, DatetimeChangeEventDetail, InfiniteScrollCustomEvent, InputCustomEvent, InputChangeEventDetail, InputOtpCustomEvent, InputOtpChangeEventDetail, InputOtpCompleteEventDetail, InputOtpInputEventDetail, ItemReorderEventDetail, ItemReorderCustomEvent, ItemSlidingCustomEvent, IonicSafeString, LoadingOptions, MenuCustomEvent, ModalDragEventDetail, NavCustomEvent, PickerOptions, PickerButton, PickerColumn, PickerColumnOption, PlatformConfig, RadioGroupCustomEvent, RadioGroupChangeEventDetail, RangeCustomEvent, RangeChangeEventDetail, RangeKnobMoveStartEventDetail, RangeKnobMoveEndEventDetail, RefresherCustomEvent, RefresherEventDetail, ReorderMoveCustomEvent, ReorderMoveEventDetail, ReorderEndCustomEvent, ReorderEndEventDetail, RouterEventDetail, RouterCustomEvent, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollDetail, ScrollCustomEvent, SearchbarCustomEvent, SearchbarChangeEventDetail, SearchbarInputEventDetail, SegmentChangeEventDetail, SegmentCustomEvent, SegmentValue, SelectChangeEventDetail, SelectCustomEvent, TabsCustomEvent, TextareaChangeEventDetail, TextareaCustomEvent, ToastOptions, ToastButton, ToastLayout, ToggleChangeEventDetail, ToggleCustomEvent, } from '@ionic/core/components';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
2
|
-
import type { ModalOptions } from '@ionic/
|
|
2
|
+
import type { ModalOptions } from '@ionic/angular/common';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ModalController extends OverlayBaseController<ModalOptions, HTMLIonModalElement> {
|
|
5
5
|
private angularDelegate;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
2
|
-
import type { PopoverOptions } from '@ionic/
|
|
2
|
+
import type { PopoverOptions } from '@ionic/angular/common';
|
|
3
3
|
export declare class PopoverController extends OverlayBaseController<PopoverOptions, HTMLIonPopoverElement> {
|
|
4
4
|
private angularDelegate;
|
|
5
5
|
private injector;
|