@ionic/angular 8.7.16-dev.11767111768.1552e96d → 8.7.16-dev.11767365495.141917e9
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 +0 -1
- package/common/providers/angular-delegate.d.ts +3 -4
- package/esm2022/common/index.mjs +1 -1
- package/esm2022/common/providers/angular-delegate.mjs +7 -9
- package/esm2022/index.mjs +1 -1
- package/esm2022/providers/modal-controller.mjs +3 -4
- package/esm2022/providers/popover-controller.mjs +3 -4
- package/esm2022/standalone/index.mjs +1 -1
- package/esm2022/standalone/providers/modal-controller.mjs +3 -4
- package/esm2022/standalone/providers/popover-controller.mjs +3 -4
- package/fesm2022/ionic-angular-common.mjs +6 -8
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +4 -6
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +4 -6
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/index.d.ts +0 -1
- package/package.json +2 -2
- package/providers/modal-controller.d.ts +3 -3
- package/providers/popover-controller.d.ts +3 -3
- package/standalone/index.d.ts +0 -1
- package/standalone/providers/modal-controller.d.ts +3 -3
- package/standalone/providers/popover-controller.d.ts +3 -3
- package/common/types/overlay-options.d.ts +0 -8
- package/esm2022/common/types/overlay-options.mjs +0 -2
package/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ 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 { AngularModalOptions, AngularPopoverOptions } from '@ionic/angular/common';
|
|
16
15
|
export { AlertController } from './providers/alert-controller';
|
|
17
16
|
export { AnimationController } from './providers/animation-controller';
|
|
18
17
|
export { ActionSheetController } from './providers/action-sheet-controller';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/angular",
|
|
3
|
-
"version": "8.7.16-dev.
|
|
3
|
+
"version": "8.7.16-dev.11767365495.141917e9",
|
|
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.7.16-dev.
|
|
53
|
+
"@ionic/core": "8.7.16-dev.11767365495.141917e9",
|
|
54
54
|
"ionicons": "^8.0.13",
|
|
55
55
|
"jsonc-parser": "^3.0.0",
|
|
56
56
|
"tslib": "^2.3.0"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
2
|
-
import type {
|
|
2
|
+
import type { ModalOptions } from '@ionic/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ModalController extends OverlayBaseController<
|
|
4
|
+
export declare class ModalController extends OverlayBaseController<ModalOptions, HTMLIonModalElement> {
|
|
5
5
|
private angularDelegate;
|
|
6
6
|
private injector;
|
|
7
7
|
private environmentInjector;
|
|
8
8
|
constructor();
|
|
9
|
-
create(opts:
|
|
9
|
+
create(opts: ModalOptions): Promise<HTMLIonModalElement>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalController, never>;
|
|
11
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<ModalController>;
|
|
12
12
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
2
|
-
import type {
|
|
3
|
-
export declare class PopoverController extends OverlayBaseController<
|
|
2
|
+
import type { PopoverOptions } from '@ionic/core';
|
|
3
|
+
export declare class PopoverController extends OverlayBaseController<PopoverOptions, HTMLIonPopoverElement> {
|
|
4
4
|
private angularDelegate;
|
|
5
5
|
private injector;
|
|
6
6
|
private environmentInjector;
|
|
7
7
|
constructor();
|
|
8
|
-
create(opts:
|
|
8
|
+
create(opts: PopoverOptions): Promise<HTMLIonPopoverElement>;
|
|
9
9
|
}
|
package/standalone/index.d.ts
CHANGED
|
@@ -16,7 +16,6 @@ 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 { AngularModalOptions, AngularPopoverOptions } from '@ionic/angular/common';
|
|
20
19
|
export { IonNav } from './navigation/nav';
|
|
21
20
|
export { IonCheckbox, IonDatetime, IonInput, IonInputOtp, IonIcon, IonRadioGroup, IonRange, IonSearchbar, IonSegment, IonSelect, IonTextarea, IonToggle, } from './directives';
|
|
22
21
|
export * from './directives/proxies';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
2
|
-
import type {
|
|
2
|
+
import type { ModalOptions } from '@ionic/core/components';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ModalController extends OverlayBaseController<
|
|
4
|
+
export declare class ModalController extends OverlayBaseController<ModalOptions, HTMLIonModalElement> {
|
|
5
5
|
private angularDelegate;
|
|
6
6
|
private injector;
|
|
7
7
|
private environmentInjector;
|
|
8
8
|
constructor();
|
|
9
|
-
create(opts:
|
|
9
|
+
create(opts: ModalOptions): Promise<HTMLIonModalElement>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalController, never>;
|
|
11
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<ModalController>;
|
|
12
12
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
2
|
-
import type {
|
|
3
|
-
export declare class PopoverController extends OverlayBaseController<
|
|
2
|
+
import type { PopoverOptions } from '@ionic/core/components';
|
|
3
|
+
export declare class PopoverController extends OverlayBaseController<PopoverOptions, HTMLIonPopoverElement> {
|
|
4
4
|
private angularDelegate;
|
|
5
5
|
private injector;
|
|
6
6
|
private environmentInjector;
|
|
7
7
|
constructor();
|
|
8
|
-
create(opts:
|
|
8
|
+
create(opts: PopoverOptions): Promise<HTMLIonPopoverElement>;
|
|
9
9
|
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { Injector } from '@angular/core';
|
|
2
|
-
import type { ModalOptions, PopoverOptions } from '@ionic/core/components';
|
|
3
|
-
export interface AngularModalOptions extends ModalOptions {
|
|
4
|
-
injector?: Injector;
|
|
5
|
-
}
|
|
6
|
-
export interface AngularPopoverOptions extends PopoverOptions {
|
|
7
|
-
injector?: Injector;
|
|
8
|
-
}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3ZlcmxheS1vcHRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vY29tbW9uL3NyYy90eXBlcy9vdmVybGF5LW9wdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgSW5qZWN0b3IgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB0eXBlIHsgTW9kYWxPcHRpb25zLCBQb3BvdmVyT3B0aW9ucyB9IGZyb20gJ0Bpb25pYy9jb3JlL2NvbXBvbmVudHMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEFuZ3VsYXJNb2RhbE9wdGlvbnMgZXh0ZW5kcyBNb2RhbE9wdGlvbnMge1xuICBpbmplY3Rvcj86IEluamVjdG9yO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEFuZ3VsYXJQb3BvdmVyT3B0aW9ucyBleHRlbmRzIFBvcG92ZXJPcHRpb25zIHtcbiAgaW5qZWN0b3I/OiBJbmplY3Rvcjtcbn1cbiJdfQ==
|