@ionic/angular 8.8.9-dev.11781098612.122c6758 → 8.8.9-dev.11781201980.1b6e8398
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/README.md +1 -1
- package/app-initialize.d.ts +3 -0
- package/common/directives/control-value-accessors/index.d.ts +1 -0
- package/common/directives/control-value-accessors/value-accessor.d.ts +36 -0
- package/common/directives/navigation/back-button.d.ts +23 -0
- package/common/directives/navigation/nav-params.d.ts +45 -0
- package/common/directives/navigation/nav.d.ts +21 -0
- package/common/directives/navigation/router-link-delegate.d.ts +60 -0
- package/common/directives/navigation/router-outlet.d.ts +104 -0
- package/common/directives/navigation/stack-controller.d.ts +42 -0
- package/common/directives/navigation/stack-utils.d.ts +38 -0
- package/common/directives/navigation/tabs.d.ts +83 -0
- package/common/index.d.ts +22 -0
- package/common/overlays/modal.d.ts +62 -0
- package/common/overlays/popover.d.ts +46 -0
- package/common/providers/angular-delegate.d.ts +28 -0
- package/common/providers/config.d.ts +11 -0
- package/common/providers/dom-controller.d.ts +16 -0
- package/common/providers/menu-controller.d.ts +78 -0
- package/common/providers/nav-controller.d.ts +116 -0
- package/common/providers/platform.d.ts +174 -0
- package/common/types/interfaces.d.ts +8 -0
- package/common/types/ionic-lifecycle-hooks.d.ts +27 -0
- package/common/types/overlay-options.d.ts +16 -0
- package/common/utils/overlay.d.ts +21 -0
- package/common/utils/proxy.d.ts +8 -0
- package/common/utils/routing.d.ts +28 -0
- package/common/utils/util.d.ts +1 -0
- package/css/core.css +1 -1
- package/css/core.css.map +1 -1
- package/css/display.css +1 -1
- package/css/display.css.map +1 -1
- package/css/flex-utils.css +1 -1
- package/css/flex-utils.css.map +1 -1
- package/css/float-elements.css.map +1 -1
- package/css/global.bundle.css.map +1 -1
- package/css/ionic/bundle.ionic.css +1 -0
- package/css/ionic/bundle.ionic.css.map +1 -0
- package/css/ionic/core.ionic.css +1 -0
- package/css/ionic/core.ionic.css.map +1 -0
- package/css/ionic/global.bundle.ionic.css +1 -0
- package/css/ionic/global.bundle.ionic.css.map +1 -0
- package/css/ionic/ionic-swiper.ionic.css +1 -0
- package/css/ionic/ionic-swiper.ionic.css.map +1 -0
- package/css/ionic/link.ionic.css +1 -0
- package/css/ionic/link.ionic.css.map +1 -0
- package/css/ionic/structure.ionic.css +1 -0
- package/css/ionic/structure.ionic.css.map +1 -0
- package/css/ionic/typography.ionic.css +1 -0
- package/css/ionic/typography.ionic.css.map +1 -0
- package/css/ionic/utils.bundle.ionic.css +1 -0
- package/css/ionic/utils.bundle.ionic.css.map +1 -0
- package/css/ionic-swiper.css +1 -1
- package/css/ionic-swiper.css.map +1 -1
- package/css/ionic.bundle.css +1 -1
- package/css/ionic.bundle.css.map +1 -1
- package/css/normalize.css.map +1 -1
- package/css/padding.css.map +1 -1
- package/css/palettes/dark.always.css.map +1 -1
- package/css/palettes/dark.class.css.map +1 -1
- package/css/palettes/dark.system.css.map +1 -1
- package/css/palettes/high-contrast-dark.always.css.map +1 -1
- package/css/palettes/high-contrast-dark.class.css.map +1 -1
- package/css/palettes/high-contrast-dark.system.css.map +1 -1
- package/css/palettes/high-contrast.always.css.map +1 -1
- package/css/palettes/high-contrast.class.css.map +1 -1
- package/css/palettes/high-contrast.system.css.map +1 -1
- package/css/structure.css.map +1 -1
- package/css/text-alignment.css.map +1 -1
- package/css/text-transformation.css.map +1 -1
- package/css/typography.css.map +1 -1
- package/css/utils.bundle.css +1 -1
- package/css/utils.bundle.css.map +1 -1
- package/directives/angular-component-lib/utils.d.ts +9 -0
- package/directives/control-value-accessors/boolean-value-accessor.d.ts +10 -0
- package/directives/control-value-accessors/index.d.ts +4 -0
- package/directives/control-value-accessors/numeric-value-accessor.d.ts +11 -0
- package/directives/control-value-accessors/select-value-accessor.d.ts +9 -0
- package/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
- package/directives/navigation/ion-back-button.d.ts +9 -0
- package/directives/navigation/ion-nav.d.ts +8 -0
- package/directives/navigation/ion-router-outlet.d.ts +25 -0
- package/directives/navigation/ion-tabs.d.ts +13 -0
- package/directives/navigation/router-link-delegate.d.ts +16 -0
- package/directives/overlays/modal.d.ts +6 -0
- package/directives/overlays/popover.d.ts +6 -0
- package/directives/proxies-list.d.ts +2 -0
- package/{types/ionic-angular.d.ts → directives/proxies.d.ts} +478 -703
- package/directives/validators/index.d.ts +2 -0
- package/directives/validators/max-validator.d.ts +12 -0
- package/directives/validators/min-validator.d.ts +12 -0
- package/esm2022/app-initialize.mjs +29 -0
- package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
- package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
- package/esm2022/common/directives/navigation/back-button.mjs +61 -0
- package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
- package/esm2022/common/directives/navigation/nav.mjs +49 -0
- package/esm2022/common/directives/navigation/router-link-delegate.mjs +156 -0
- package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
- package/esm2022/common/directives/navigation/stack-controller.mjs +280 -0
- package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
- package/esm2022/common/directives/navigation/tabs.mjs +279 -0
- package/esm2022/common/index.mjs +20 -0
- package/esm2022/common/ionic-angular-common.mjs +5 -0
- package/esm2022/common/overlays/modal.mjs +103 -0
- package/esm2022/common/overlays/popover.mjs +91 -0
- package/esm2022/common/providers/angular-delegate.mjs +203 -0
- package/esm2022/common/providers/config.mjs +45 -0
- package/esm2022/common/providers/dom-controller.mjs +45 -0
- package/esm2022/common/providers/menu-controller.mjs +114 -0
- package/esm2022/common/providers/nav-controller.mjs +235 -0
- package/esm2022/common/providers/platform.mjs +258 -0
- package/esm2022/common/types/interfaces.mjs +2 -0
- package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
- package/esm2022/common/types/overlay-options.mjs +2 -0
- package/esm2022/common/utils/overlay.mjs +26 -0
- package/esm2022/common/utils/proxy.mjs +47 -0
- package/esm2022/common/utils/routing.mjs +55 -0
- package/esm2022/common/utils/util.mjs +10 -0
- package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
- package/esm2022/directives/control-value-accessors/index.mjs +5 -0
- package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
- package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
- package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
- package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
- package/esm2022/directives/navigation/ion-nav.mjs +21 -0
- package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
- package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
- package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
- package/esm2022/directives/overlays/modal.mjs +22 -0
- package/esm2022/directives/overlays/popover.mjs +18 -0
- package/esm2022/directives/proxies-list.mjs +93 -0
- package/esm2022/directives/proxies.mjs +2465 -0
- package/esm2022/directives/validators/index.mjs +3 -0
- package/esm2022/directives/validators/max-validator.mjs +27 -0
- package/esm2022/directives/validators/min-validator.mjs +27 -0
- package/esm2022/index.mjs +32 -0
- package/esm2022/ionic-angular.mjs +5 -0
- package/esm2022/ionic-module.mjs +111 -0
- package/esm2022/providers/action-sheet-controller.mjs +19 -0
- package/esm2022/providers/alert-controller.mjs +19 -0
- package/esm2022/providers/animation-controller.mjs +38 -0
- package/esm2022/providers/gesture-controller.mjs +33 -0
- package/esm2022/providers/loading-controller.mjs +19 -0
- package/esm2022/providers/menu-controller.mjs +19 -0
- package/esm2022/providers/modal-controller.mjs +26 -0
- package/esm2022/providers/picker-controller.mjs +22 -0
- package/esm2022/providers/popover-controller.mjs +19 -0
- package/esm2022/providers/toast-controller.mjs +19 -0
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/standalone/directives/checkbox.mjs +76 -0
- package/esm2022/standalone/directives/datetime.mjs +95 -0
- package/esm2022/standalone/directives/icon.mjs +35 -0
- package/esm2022/standalone/directives/index.mjs +13 -0
- package/esm2022/standalone/directives/input-otp.mjs +90 -0
- package/esm2022/standalone/directives/input.mjs +113 -0
- package/esm2022/standalone/directives/proxies.mjs +2356 -0
- package/esm2022/standalone/directives/radio-group.mjs +60 -0
- package/esm2022/standalone/directives/range.mjs +78 -0
- package/esm2022/standalone/directives/searchbar.mjs +82 -0
- package/esm2022/standalone/directives/segment.mjs +60 -0
- package/esm2022/standalone/directives/select.mjs +84 -0
- package/esm2022/standalone/directives/textarea.mjs +91 -0
- package/esm2022/standalone/directives/toggle.mjs +76 -0
- package/esm2022/standalone/index.mjs +25 -0
- package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
- package/esm2022/standalone/navigation/back-button.mjs +32 -0
- package/esm2022/standalone/navigation/nav.mjs +28 -0
- package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
- package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
- package/esm2022/standalone/navigation/tabs.mjs +58 -0
- package/esm2022/standalone/overlays/modal.mjs +32 -0
- package/esm2022/standalone/overlays/popover.mjs +28 -0
- package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
- package/esm2022/standalone/providers/alert-controller.mjs +21 -0
- package/esm2022/standalone/providers/animation-controller.mjs +38 -0
- package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
- package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
- package/esm2022/standalone/providers/loading-controller.mjs +21 -0
- package/esm2022/standalone/providers/menu-controller.mjs +19 -0
- package/esm2022/standalone/providers/modal-controller.mjs +28 -0
- package/esm2022/standalone/providers/picker-controller.mjs +24 -0
- package/esm2022/standalone/providers/popover-controller.mjs +21 -0
- package/esm2022/standalone/providers/toast-controller.mjs +21 -0
- package/fesm2022/ionic-angular-common.mjs +93 -107
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +911 -900
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +779 -1087
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/index.d.ts +27 -0
- package/ionic-module.d.ts +28 -0
- package/package.json +16 -16
- package/providers/action-sheet-controller.d.ts +8 -0
- package/providers/alert-controller.d.ts +8 -0
- package/providers/animation-controller.d.ts +25 -0
- package/providers/gesture-controller.d.ts +13 -0
- package/providers/loading-controller.d.ts +8 -0
- package/providers/menu-controller.d.ts +7 -0
- package/providers/modal-controller.d.ts +12 -0
- package/providers/picker-controller.d.ts +11 -0
- package/providers/popover-controller.d.ts +9 -0
- package/providers/toast-controller.d.ts +8 -0
- package/schematics/add/index.js +2 -2
- package/schematics/utils/ast.js +3 -35
- package/schematics/utils/config.js +11 -10
- package/schematics/utils/package.js +2 -5
- package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
- package/standalone/directives/checkbox.d.ts +30 -0
- package/standalone/directives/datetime.d.ts +30 -0
- package/standalone/directives/icon.d.ts +9 -0
- package/standalone/directives/index.d.ts +12 -0
- package/standalone/directives/input-otp.d.ts +49 -0
- package/standalone/directives/input.d.ts +47 -0
- package/standalone/directives/proxies.d.ts +1062 -0
- package/standalone/directives/radio-group.d.ts +18 -0
- package/standalone/directives/range.d.ts +47 -0
- package/standalone/directives/searchbar.d.ts +45 -0
- package/standalone/directives/segment.d.ts +19 -0
- package/standalone/directives/select.d.ts +34 -0
- package/standalone/directives/textarea.d.ts +37 -0
- package/standalone/directives/toggle.d.ts +28 -0
- package/standalone/index.d.ts +23 -0
- package/standalone/navigation/back-button.d.ts +9 -0
- package/standalone/navigation/nav.d.ts +8 -0
- package/standalone/navigation/router-link-delegate.d.ts +10 -0
- package/standalone/navigation/router-outlet.d.ts +25 -0
- package/standalone/navigation/tabs.d.ts +13 -0
- package/standalone/overlays/modal.d.ts +6 -0
- package/standalone/overlays/popover.d.ts +6 -0
- package/standalone/providers/action-sheet-controller.d.ts +8 -0
- package/standalone/providers/alert-controller.d.ts +8 -0
- package/standalone/providers/animation-controller.d.ts +25 -0
- package/standalone/providers/gesture-controller.d.ts +13 -0
- package/standalone/providers/ionic-angular.d.ts +7 -0
- package/standalone/providers/loading-controller.d.ts +8 -0
- package/standalone/providers/menu-controller.d.ts +7 -0
- package/standalone/providers/modal-controller.d.ts +12 -0
- package/standalone/providers/picker-controller.d.ts +11 -0
- package/standalone/providers/popover-controller.d.ts +9 -0
- package/standalone/providers/toast-controller.d.ts +8 -0
- package/types/ionic-angular-common.d.ts +0 -1021
- package/types/ionic-angular-standalone.d.ts +0 -1560
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Directive, HostListener, Component, ChangeDetectionStrategy, ViewContainerRef, Attribute, Optional, SkipSelf, ViewChild, ContentChild, ContentChildren, forwardRef, Injectable, inject, Injector, EnvironmentInjector, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR, NG_VALIDATORS, MaxValidator, MinValidator } from '@angular/forms';
|
|
4
4
|
import * as i2$1 from '@ionic/angular/common';
|
|
5
5
|
import { ValueAccessor, setIonicClasses, IonRouterOutlet as IonRouterOutlet$1, IonTabs as IonTabs$1, IonBackButton as IonBackButton$1, IonNav as IonNav$1, RouterLinkDelegateDirective as RouterLinkDelegateDirective$1, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegateDirective$1, IonModal as IonModal$1, IonPopover as IonPopover$1, OverlayBaseController, MenuController as MenuController$1, AngularDelegate, raf, ConfigToken, provideComponentInputBinding } from '@ionic/angular/common';
|
|
@@ -9,7 +9,7 @@ import { fromEvent } from 'rxjs';
|
|
|
9
9
|
import * as i1 from '@angular/common';
|
|
10
10
|
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
11
11
|
import * as i2 from '@angular/router';
|
|
12
|
-
import { alertController, createAnimation, getTimeGivenProgression, actionSheetController, createGesture, loadingController, menuController, modalController, popoverController, toastController, setupConfig } from '@ionic/core';
|
|
12
|
+
import { alertController, createAnimation, getTimeGivenProgression, actionSheetController, createGesture, loadingController, menuController, modalController, pickerController, popoverController, toastController, setupConfig } from '@ionic/core';
|
|
13
13
|
export { IonicSafeString, IonicSlides, createAnimation, createGesture, getIonPageElement, getPlatforms, getTimeGivenProgression, iosTransitionAnimation, isPlatform, mdTransitionAnimation, openURL } from '@ionic/core';
|
|
14
14
|
import { defineCustomElements } from '@ionic/core/loader';
|
|
15
15
|
|
|
@@ -21,16 +21,11 @@ class BooleanValueAccessorDirective extends ValueAccessor {
|
|
|
21
21
|
this.elementRef.nativeElement.checked = this.lastValue = value;
|
|
22
22
|
setIonicClasses(this.elementRef);
|
|
23
23
|
}
|
|
24
|
-
|
|
25
|
-
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
26
|
-
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
27
|
-
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
28
|
-
_handleIonChange(ev) {
|
|
29
|
-
const el = ev.target;
|
|
24
|
+
_handleIonChange(el) {
|
|
30
25
|
this.handleValueChange(el, el.checked);
|
|
31
26
|
}
|
|
32
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
33
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
27
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: BooleanValueAccessorDirective, selector: "ion-checkbox,ion-toggle", host: { listeners: { "ionChange": "_handleIonChange($event.target)" } }, providers: [
|
|
34
29
|
{
|
|
35
30
|
provide: NG_VALUE_ACCESSOR,
|
|
36
31
|
useExisting: BooleanValueAccessorDirective,
|
|
@@ -38,10 +33,9 @@ class BooleanValueAccessorDirective extends ValueAccessor {
|
|
|
38
33
|
},
|
|
39
34
|
], usesInheritance: true, ngImport: i0 });
|
|
40
35
|
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
36
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
|
|
42
37
|
type: Directive,
|
|
43
38
|
args: [{
|
|
44
|
-
standalone: false,
|
|
45
39
|
selector: 'ion-checkbox,ion-toggle',
|
|
46
40
|
providers: [
|
|
47
41
|
{
|
|
@@ -51,9 +45,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
51
45
|
},
|
|
52
46
|
],
|
|
53
47
|
}]
|
|
54
|
-
}], ctorParameters: ()
|
|
48
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleIonChange: [{
|
|
55
49
|
type: HostListener,
|
|
56
|
-
args: ['ionChange', ['$event']]
|
|
50
|
+
args: ['ionChange', ['$event.target']]
|
|
57
51
|
}] } });
|
|
58
52
|
|
|
59
53
|
class NumericValueAccessorDirective extends ValueAccessor {
|
|
@@ -62,12 +56,7 @@ class NumericValueAccessorDirective extends ValueAccessor {
|
|
|
62
56
|
super(injector, el);
|
|
63
57
|
this.el = el;
|
|
64
58
|
}
|
|
65
|
-
|
|
66
|
-
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
67
|
-
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
68
|
-
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
69
|
-
handleInputEvent(ev) {
|
|
70
|
-
const el = ev.target;
|
|
59
|
+
handleInputEvent(el) {
|
|
71
60
|
this.handleValueChange(el, el.value);
|
|
72
61
|
}
|
|
73
62
|
registerOnChange(fn) {
|
|
@@ -80,8 +69,8 @@ class NumericValueAccessorDirective extends ValueAccessor {
|
|
|
80
69
|
super.registerOnChange(fn);
|
|
81
70
|
}
|
|
82
71
|
}
|
|
83
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
84
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
72
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
73
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NumericValueAccessorDirective, selector: "ion-input[type=number],ion-input-otp:not([type=text]),ion-range", host: { listeners: { "ionInput": "handleInputEvent($event.target)" } }, providers: [
|
|
85
74
|
{
|
|
86
75
|
provide: NG_VALUE_ACCESSOR,
|
|
87
76
|
useExisting: NumericValueAccessorDirective,
|
|
@@ -89,10 +78,9 @@ class NumericValueAccessorDirective extends ValueAccessor {
|
|
|
89
78
|
},
|
|
90
79
|
], usesInheritance: true, ngImport: i0 });
|
|
91
80
|
}
|
|
92
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessorDirective, decorators: [{
|
|
93
82
|
type: Directive,
|
|
94
83
|
args: [{
|
|
95
|
-
standalone: false,
|
|
96
84
|
selector: 'ion-input[type=number],ion-input-otp:not([type=text]),ion-range',
|
|
97
85
|
providers: [
|
|
98
86
|
{
|
|
@@ -102,25 +90,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
102
90
|
},
|
|
103
91
|
],
|
|
104
92
|
}]
|
|
105
|
-
}], ctorParameters: ()
|
|
93
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
|
|
106
94
|
type: HostListener,
|
|
107
|
-
args: ['ionInput', ['$event']]
|
|
95
|
+
args: ['ionInput', ['$event.target']]
|
|
108
96
|
}] } });
|
|
109
97
|
|
|
110
98
|
class SelectValueAccessorDirective extends ValueAccessor {
|
|
111
99
|
constructor(injector, el) {
|
|
112
100
|
super(injector, el);
|
|
113
101
|
}
|
|
114
|
-
|
|
115
|
-
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
116
|
-
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
117
|
-
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
118
|
-
_handleChangeEvent(ev) {
|
|
119
|
-
const el = ev.target;
|
|
102
|
+
_handleChangeEvent(el) {
|
|
120
103
|
this.handleValueChange(el, el.value);
|
|
121
104
|
}
|
|
122
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
123
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
105
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
106
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SelectValueAccessorDirective, selector: "ion-select, ion-radio-group, ion-segment, ion-datetime", host: { listeners: { "ionChange": "_handleChangeEvent($event.target)" } }, providers: [
|
|
124
107
|
{
|
|
125
108
|
provide: NG_VALUE_ACCESSOR,
|
|
126
109
|
useExisting: SelectValueAccessorDirective,
|
|
@@ -128,10 +111,9 @@ class SelectValueAccessorDirective extends ValueAccessor {
|
|
|
128
111
|
},
|
|
129
112
|
], usesInheritance: true, ngImport: i0 });
|
|
130
113
|
}
|
|
131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
114
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
|
|
132
115
|
type: Directive,
|
|
133
116
|
args: [{
|
|
134
|
-
standalone: false,
|
|
135
117
|
/* tslint:disable-next-line:directive-selector */
|
|
136
118
|
selector: 'ion-select, ion-radio-group, ion-segment, ion-datetime',
|
|
137
119
|
providers: [
|
|
@@ -142,25 +124,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
142
124
|
},
|
|
143
125
|
],
|
|
144
126
|
}]
|
|
145
|
-
}], ctorParameters: ()
|
|
127
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleChangeEvent: [{
|
|
146
128
|
type: HostListener,
|
|
147
|
-
args: ['ionChange', ['$event']]
|
|
129
|
+
args: ['ionChange', ['$event.target']]
|
|
148
130
|
}] } });
|
|
149
131
|
|
|
150
132
|
class TextValueAccessorDirective extends ValueAccessor {
|
|
151
133
|
constructor(injector, el) {
|
|
152
134
|
super(injector, el);
|
|
153
135
|
}
|
|
154
|
-
|
|
155
|
-
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
156
|
-
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
157
|
-
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
158
|
-
_handleInputEvent(ev) {
|
|
159
|
-
const el = ev.target;
|
|
136
|
+
_handleInputEvent(el) {
|
|
160
137
|
this.handleValueChange(el, el.value);
|
|
161
138
|
}
|
|
162
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
163
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
139
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
140
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TextValueAccessorDirective, selector: "ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar", host: { listeners: { "ionInput": "_handleInputEvent($event.target)" } }, providers: [
|
|
164
141
|
{
|
|
165
142
|
provide: NG_VALUE_ACCESSOR,
|
|
166
143
|
useExisting: TextValueAccessorDirective,
|
|
@@ -168,10 +145,9 @@ class TextValueAccessorDirective extends ValueAccessor {
|
|
|
168
145
|
},
|
|
169
146
|
], usesInheritance: true, ngImport: i0 });
|
|
170
147
|
}
|
|
171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
|
|
172
149
|
type: Directive,
|
|
173
150
|
args: [{
|
|
174
|
-
standalone: false,
|
|
175
151
|
selector: 'ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar',
|
|
176
152
|
providers: [
|
|
177
153
|
{
|
|
@@ -181,9 +157,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
181
157
|
},
|
|
182
158
|
],
|
|
183
159
|
}]
|
|
184
|
-
}], ctorParameters: ()
|
|
160
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleInputEvent: [{
|
|
185
161
|
type: HostListener,
|
|
186
|
-
args: ['ionInput', ['$event']]
|
|
162
|
+
args: ['ionInput', ['$event.target']]
|
|
187
163
|
}] } });
|
|
188
164
|
|
|
189
165
|
/* eslint-disable */
|
|
@@ -252,162 +228,107 @@ let IonAccordion = class IonAccordion {
|
|
|
252
228
|
c.detach();
|
|
253
229
|
this.el = r.nativeElement;
|
|
254
230
|
}
|
|
255
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
256
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
231
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
232
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordion, selector: "ion-accordion", inputs: { disabled: "disabled", mode: "mode", readonly: "readonly", theme: "theme", toggleIcon: "toggleIcon", toggleIconSlot: "toggleIconSlot", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
257
233
|
};
|
|
258
234
|
IonAccordion = __decorate([
|
|
259
235
|
ProxyCmp({
|
|
260
|
-
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
236
|
+
inputs: ['disabled', 'mode', 'readonly', 'theme', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
261
237
|
})
|
|
262
238
|
], IonAccordion);
|
|
263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, decorators: [{
|
|
264
240
|
type: Component,
|
|
265
241
|
args: [{
|
|
266
242
|
selector: 'ion-accordion',
|
|
267
243
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
268
244
|
template: '<ng-content></ng-content>',
|
|
269
245
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
270
|
-
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value'],
|
|
271
|
-
standalone: false
|
|
246
|
+
inputs: ['disabled', 'mode', 'readonly', 'theme', 'toggleIcon', 'toggleIconSlot', 'value'],
|
|
272
247
|
}]
|
|
273
|
-
}], ctorParameters: ()
|
|
248
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
274
249
|
let IonAccordionGroup = class IonAccordionGroup {
|
|
275
250
|
z;
|
|
276
251
|
el;
|
|
277
|
-
ionChange = new EventEmitter();
|
|
278
252
|
constructor(c, r, z) {
|
|
279
253
|
this.z = z;
|
|
280
254
|
c.detach();
|
|
281
255
|
this.el = r.nativeElement;
|
|
256
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
282
257
|
}
|
|
283
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
284
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
258
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
259
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordionGroup, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly", shape: "shape", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
285
260
|
};
|
|
286
261
|
IonAccordionGroup = __decorate([
|
|
287
262
|
ProxyCmp({
|
|
288
|
-
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
|
|
263
|
+
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'shape', 'theme', 'value']
|
|
289
264
|
})
|
|
290
265
|
], IonAccordionGroup);
|
|
291
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, decorators: [{
|
|
292
267
|
type: Component,
|
|
293
268
|
args: [{
|
|
294
269
|
selector: 'ion-accordion-group',
|
|
295
270
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
296
271
|
template: '<ng-content></ng-content>',
|
|
297
272
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
298
|
-
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value'],
|
|
299
|
-
outputs: ['ionChange'],
|
|
300
|
-
standalone: false
|
|
273
|
+
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'shape', 'theme', 'value'],
|
|
301
274
|
}]
|
|
302
|
-
}], ctorParameters: ()
|
|
303
|
-
type: Output
|
|
304
|
-
}] } });
|
|
275
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
305
276
|
let IonActionSheet = class IonActionSheet {
|
|
306
277
|
z;
|
|
307
278
|
el;
|
|
308
|
-
ionActionSheetDidPresent = new EventEmitter();
|
|
309
|
-
ionActionSheetWillPresent = new EventEmitter();
|
|
310
|
-
ionActionSheetWillDismiss = new EventEmitter();
|
|
311
|
-
ionActionSheetDidDismiss = new EventEmitter();
|
|
312
|
-
didPresent = new EventEmitter();
|
|
313
|
-
willPresent = new EventEmitter();
|
|
314
|
-
willDismiss = new EventEmitter();
|
|
315
|
-
didDismiss = new EventEmitter();
|
|
316
279
|
constructor(c, r, z) {
|
|
317
280
|
this.z = z;
|
|
318
281
|
c.detach();
|
|
319
282
|
this.el = r.nativeElement;
|
|
283
|
+
proxyOutputs(this, this.el, ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
320
284
|
}
|
|
321
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
322
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
285
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
286
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonActionSheet, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
323
287
|
};
|
|
324
288
|
IonActionSheet = __decorate([
|
|
325
289
|
ProxyCmp({
|
|
326
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
290
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
|
|
327
291
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
328
292
|
})
|
|
329
293
|
], IonActionSheet);
|
|
330
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, decorators: [{
|
|
331
295
|
type: Component,
|
|
332
296
|
args: [{
|
|
333
297
|
selector: 'ion-action-sheet',
|
|
334
298
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
335
299
|
template: '<ng-content></ng-content>',
|
|
336
300
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
337
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
}]
|
|
341
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionActionSheetDidPresent: [{
|
|
342
|
-
type: Output
|
|
343
|
-
}], ionActionSheetWillPresent: [{
|
|
344
|
-
type: Output
|
|
345
|
-
}], ionActionSheetWillDismiss: [{
|
|
346
|
-
type: Output
|
|
347
|
-
}], ionActionSheetDidDismiss: [{
|
|
348
|
-
type: Output
|
|
349
|
-
}], didPresent: [{
|
|
350
|
-
type: Output
|
|
351
|
-
}], willPresent: [{
|
|
352
|
-
type: Output
|
|
353
|
-
}], willDismiss: [{
|
|
354
|
-
type: Output
|
|
355
|
-
}], didDismiss: [{
|
|
356
|
-
type: Output
|
|
357
|
-
}] } });
|
|
301
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
|
|
302
|
+
}]
|
|
303
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
358
304
|
let IonAlert = class IonAlert {
|
|
359
305
|
z;
|
|
360
306
|
el;
|
|
361
|
-
ionAlertDidPresent = new EventEmitter();
|
|
362
|
-
ionAlertWillPresent = new EventEmitter();
|
|
363
|
-
ionAlertWillDismiss = new EventEmitter();
|
|
364
|
-
ionAlertDidDismiss = new EventEmitter();
|
|
365
|
-
didPresent = new EventEmitter();
|
|
366
|
-
willPresent = new EventEmitter();
|
|
367
|
-
willDismiss = new EventEmitter();
|
|
368
|
-
didDismiss = new EventEmitter();
|
|
369
307
|
constructor(c, r, z) {
|
|
370
308
|
this.z = z;
|
|
371
309
|
c.detach();
|
|
372
310
|
this.el = r.nativeElement;
|
|
311
|
+
proxyOutputs(this, this.el, ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
373
312
|
}
|
|
374
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
375
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
313
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
314
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAlert, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
376
315
|
};
|
|
377
316
|
IonAlert = __decorate([
|
|
378
317
|
ProxyCmp({
|
|
379
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
318
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
|
|
380
319
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
381
320
|
})
|
|
382
321
|
], IonAlert);
|
|
383
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, decorators: [{
|
|
384
323
|
type: Component,
|
|
385
324
|
args: [{
|
|
386
325
|
selector: 'ion-alert',
|
|
387
326
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
388
327
|
template: '<ng-content></ng-content>',
|
|
389
328
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
390
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
}]
|
|
394
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionAlertDidPresent: [{
|
|
395
|
-
type: Output
|
|
396
|
-
}], ionAlertWillPresent: [{
|
|
397
|
-
type: Output
|
|
398
|
-
}], ionAlertWillDismiss: [{
|
|
399
|
-
type: Output
|
|
400
|
-
}], ionAlertDidDismiss: [{
|
|
401
|
-
type: Output
|
|
402
|
-
}], didPresent: [{
|
|
403
|
-
type: Output
|
|
404
|
-
}], willPresent: [{
|
|
405
|
-
type: Output
|
|
406
|
-
}], willDismiss: [{
|
|
407
|
-
type: Output
|
|
408
|
-
}], didDismiss: [{
|
|
409
|
-
type: Output
|
|
410
|
-
}] } });
|
|
329
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
|
|
330
|
+
}]
|
|
331
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
411
332
|
let IonApp = class IonApp {
|
|
412
333
|
z;
|
|
413
334
|
el;
|
|
@@ -416,25 +337,25 @@ let IonApp = class IonApp {
|
|
|
416
337
|
c.detach();
|
|
417
338
|
this.el = r.nativeElement;
|
|
418
339
|
}
|
|
419
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
420
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
340
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
341
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonApp, selector: "ion-app", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
421
342
|
};
|
|
422
343
|
IonApp = __decorate([
|
|
423
344
|
ProxyCmp({
|
|
345
|
+
inputs: ['mode', 'theme'],
|
|
424
346
|
methods: ['setFocus']
|
|
425
347
|
})
|
|
426
348
|
], IonApp);
|
|
427
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, decorators: [{
|
|
428
350
|
type: Component,
|
|
429
351
|
args: [{
|
|
430
352
|
selector: 'ion-app',
|
|
431
353
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
432
354
|
template: '<ng-content></ng-content>',
|
|
433
355
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
434
|
-
inputs: [],
|
|
435
|
-
standalone: false
|
|
356
|
+
inputs: ['mode', 'theme'],
|
|
436
357
|
}]
|
|
437
|
-
}], ctorParameters: ()
|
|
358
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
438
359
|
let IonAvatar = class IonAvatar {
|
|
439
360
|
z;
|
|
440
361
|
el;
|
|
@@ -443,54 +364,51 @@ let IonAvatar = class IonAvatar {
|
|
|
443
364
|
c.detach();
|
|
444
365
|
this.el = r.nativeElement;
|
|
445
366
|
}
|
|
446
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
447
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
367
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
368
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAvatar, selector: "ion-avatar", inputs: { disabled: "disabled", mode: "mode", shape: "shape", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
448
369
|
};
|
|
449
370
|
IonAvatar = __decorate([
|
|
450
|
-
ProxyCmp({
|
|
371
|
+
ProxyCmp({
|
|
372
|
+
inputs: ['disabled', 'mode', 'shape', 'size', 'theme']
|
|
373
|
+
})
|
|
451
374
|
], IonAvatar);
|
|
452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
375
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, decorators: [{
|
|
453
376
|
type: Component,
|
|
454
377
|
args: [{
|
|
455
378
|
selector: 'ion-avatar',
|
|
456
379
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
457
380
|
template: '<ng-content></ng-content>',
|
|
458
381
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
459
|
-
inputs: [],
|
|
460
|
-
standalone: false
|
|
382
|
+
inputs: ['disabled', 'mode', 'shape', 'size', 'theme'],
|
|
461
383
|
}]
|
|
462
|
-
}], ctorParameters: ()
|
|
384
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
463
385
|
let IonBackdrop = class IonBackdrop {
|
|
464
386
|
z;
|
|
465
387
|
el;
|
|
466
|
-
ionBackdropTap = new EventEmitter();
|
|
467
388
|
constructor(c, r, z) {
|
|
468
389
|
this.z = z;
|
|
469
390
|
c.detach();
|
|
470
391
|
this.el = r.nativeElement;
|
|
392
|
+
proxyOutputs(this, this.el, ['ionBackdropTap']);
|
|
471
393
|
}
|
|
472
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
473
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
394
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
395
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackdrop, selector: "ion-backdrop", inputs: { mode: "mode", stopPropagation: "stopPropagation", tappable: "tappable", theme: "theme", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
474
396
|
};
|
|
475
397
|
IonBackdrop = __decorate([
|
|
476
398
|
ProxyCmp({
|
|
477
|
-
inputs: ['stopPropagation', 'tappable', 'visible']
|
|
399
|
+
inputs: ['mode', 'stopPropagation', 'tappable', 'theme', 'visible']
|
|
478
400
|
})
|
|
479
401
|
], IonBackdrop);
|
|
480
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, decorators: [{
|
|
481
403
|
type: Component,
|
|
482
404
|
args: [{
|
|
483
405
|
selector: 'ion-backdrop',
|
|
484
406
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
485
407
|
template: '<ng-content></ng-content>',
|
|
486
408
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
487
|
-
inputs: ['stopPropagation', 'tappable', 'visible'],
|
|
488
|
-
outputs: ['ionBackdropTap'],
|
|
489
|
-
standalone: false
|
|
409
|
+
inputs: ['mode', 'stopPropagation', 'tappable', 'theme', 'visible'],
|
|
490
410
|
}]
|
|
491
|
-
}], ctorParameters: ()
|
|
492
|
-
type: Output
|
|
493
|
-
}] } });
|
|
411
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
494
412
|
let IonBadge = class IonBadge {
|
|
495
413
|
z;
|
|
496
414
|
el;
|
|
@@ -499,124 +417,105 @@ let IonBadge = class IonBadge {
|
|
|
499
417
|
c.detach();
|
|
500
418
|
this.el = r.nativeElement;
|
|
501
419
|
}
|
|
502
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
503
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
420
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
421
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBadge, selector: "ion-badge", inputs: { color: "color", hue: "hue", mode: "mode", shape: "shape", size: "size", theme: "theme", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
504
422
|
};
|
|
505
423
|
IonBadge = __decorate([
|
|
506
424
|
ProxyCmp({
|
|
507
|
-
inputs: ['color', 'mode']
|
|
425
|
+
inputs: ['color', 'hue', 'mode', 'shape', 'size', 'theme', 'vertical']
|
|
508
426
|
})
|
|
509
427
|
], IonBadge);
|
|
510
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
428
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, decorators: [{
|
|
511
429
|
type: Component,
|
|
512
430
|
args: [{
|
|
513
431
|
selector: 'ion-badge',
|
|
514
432
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
515
433
|
template: '<ng-content></ng-content>',
|
|
516
434
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
517
|
-
inputs: ['color', 'mode'],
|
|
518
|
-
standalone: false
|
|
435
|
+
inputs: ['color', 'hue', 'mode', 'shape', 'size', 'theme', 'vertical'],
|
|
519
436
|
}]
|
|
520
|
-
}], ctorParameters: ()
|
|
437
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
521
438
|
let IonBreadcrumb = class IonBreadcrumb {
|
|
522
439
|
z;
|
|
523
440
|
el;
|
|
524
|
-
ionFocus = new EventEmitter();
|
|
525
|
-
ionBlur = new EventEmitter();
|
|
526
441
|
constructor(c, r, z) {
|
|
527
442
|
this.z = z;
|
|
528
443
|
c.detach();
|
|
529
444
|
this.el = r.nativeElement;
|
|
445
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
530
446
|
}
|
|
531
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
532
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
447
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
448
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumb, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
533
449
|
};
|
|
534
450
|
IonBreadcrumb = __decorate([
|
|
535
451
|
ProxyCmp({
|
|
536
|
-
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
|
|
452
|
+
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target', 'theme']
|
|
537
453
|
})
|
|
538
454
|
], IonBreadcrumb);
|
|
539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
455
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, decorators: [{
|
|
540
456
|
type: Component,
|
|
541
457
|
args: [{
|
|
542
458
|
selector: 'ion-breadcrumb',
|
|
543
459
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
544
460
|
template: '<ng-content></ng-content>',
|
|
545
461
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
546
|
-
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'],
|
|
547
|
-
outputs: ['ionFocus', 'ionBlur'],
|
|
548
|
-
standalone: false
|
|
462
|
+
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target', 'theme'],
|
|
549
463
|
}]
|
|
550
|
-
}], ctorParameters: ()
|
|
551
|
-
type: Output
|
|
552
|
-
}], ionBlur: [{
|
|
553
|
-
type: Output
|
|
554
|
-
}] } });
|
|
464
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
555
465
|
let IonBreadcrumbs = class IonBreadcrumbs {
|
|
556
466
|
z;
|
|
557
467
|
el;
|
|
558
|
-
ionCollapsedClick = new EventEmitter();
|
|
559
468
|
constructor(c, r, z) {
|
|
560
469
|
this.z = z;
|
|
561
470
|
c.detach();
|
|
562
471
|
this.el = r.nativeElement;
|
|
472
|
+
proxyOutputs(this, this.el, ['ionCollapsedClick']);
|
|
563
473
|
}
|
|
564
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
565
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
474
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
475
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumbs, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
566
476
|
};
|
|
567
477
|
IonBreadcrumbs = __decorate([
|
|
568
478
|
ProxyCmp({
|
|
569
|
-
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode']
|
|
479
|
+
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode', 'theme']
|
|
570
480
|
})
|
|
571
481
|
], IonBreadcrumbs);
|
|
572
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, decorators: [{
|
|
573
483
|
type: Component,
|
|
574
484
|
args: [{
|
|
575
485
|
selector: 'ion-breadcrumbs',
|
|
576
486
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
577
487
|
template: '<ng-content></ng-content>',
|
|
578
488
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
579
|
-
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode'],
|
|
580
|
-
outputs: ['ionCollapsedClick'],
|
|
581
|
-
standalone: false
|
|
489
|
+
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode', 'theme'],
|
|
582
490
|
}]
|
|
583
|
-
}], ctorParameters: ()
|
|
584
|
-
type: Output
|
|
585
|
-
}] } });
|
|
491
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
586
492
|
let IonButton = class IonButton {
|
|
587
493
|
z;
|
|
588
494
|
el;
|
|
589
|
-
ionFocus = new EventEmitter();
|
|
590
|
-
ionBlur = new EventEmitter();
|
|
591
495
|
constructor(c, r, z) {
|
|
592
496
|
this.z = z;
|
|
593
497
|
c.detach();
|
|
594
498
|
this.el = r.nativeElement;
|
|
499
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
595
500
|
}
|
|
596
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
597
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
501
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
502
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButton, selector: "ion-button", inputs: { buttonType: "buttonType", color: "color", disabled: "disabled", download: "download", expand: "expand", fill: "fill", form: "form", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", size: "size", strong: "strong", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
598
503
|
};
|
|
599
504
|
IonButton = __decorate([
|
|
600
505
|
ProxyCmp({
|
|
601
|
-
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type']
|
|
506
|
+
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'theme', 'type']
|
|
602
507
|
})
|
|
603
508
|
], IonButton);
|
|
604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, decorators: [{
|
|
605
510
|
type: Component,
|
|
606
511
|
args: [{
|
|
607
512
|
selector: 'ion-button',
|
|
608
513
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
609
514
|
template: '<ng-content></ng-content>',
|
|
610
515
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
611
|
-
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type'],
|
|
612
|
-
outputs: ['ionFocus', 'ionBlur'],
|
|
613
|
-
standalone: false
|
|
516
|
+
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'theme', 'type'],
|
|
614
517
|
}]
|
|
615
|
-
}], ctorParameters: ()
|
|
616
|
-
type: Output
|
|
617
|
-
}], ionBlur: [{
|
|
618
|
-
type: Output
|
|
619
|
-
}] } });
|
|
518
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
620
519
|
let IonButtons = class IonButtons {
|
|
621
520
|
z;
|
|
622
521
|
el;
|
|
@@ -625,25 +524,24 @@ let IonButtons = class IonButtons {
|
|
|
625
524
|
c.detach();
|
|
626
525
|
this.el = r.nativeElement;
|
|
627
526
|
}
|
|
628
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
629
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
527
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
528
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButtons, selector: "ion-buttons", inputs: { collapse: "collapse", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
630
529
|
};
|
|
631
530
|
IonButtons = __decorate([
|
|
632
531
|
ProxyCmp({
|
|
633
|
-
inputs: ['collapse']
|
|
532
|
+
inputs: ['collapse', 'mode', 'theme']
|
|
634
533
|
})
|
|
635
534
|
], IonButtons);
|
|
636
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, decorators: [{
|
|
637
536
|
type: Component,
|
|
638
537
|
args: [{
|
|
639
538
|
selector: 'ion-buttons',
|
|
640
539
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
641
540
|
template: '<ng-content></ng-content>',
|
|
642
541
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
643
|
-
inputs: ['collapse'],
|
|
644
|
-
standalone: false
|
|
542
|
+
inputs: ['collapse', 'mode', 'theme'],
|
|
645
543
|
}]
|
|
646
|
-
}], ctorParameters: ()
|
|
544
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
647
545
|
let IonCard = class IonCard {
|
|
648
546
|
z;
|
|
649
547
|
el;
|
|
@@ -652,25 +550,24 @@ let IonCard = class IonCard {
|
|
|
652
550
|
c.detach();
|
|
653
551
|
this.el = r.nativeElement;
|
|
654
552
|
}
|
|
655
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
656
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
553
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
554
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCard, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
657
555
|
};
|
|
658
556
|
IonCard = __decorate([
|
|
659
557
|
ProxyCmp({
|
|
660
|
-
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
558
|
+
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'target', 'theme', 'type']
|
|
661
559
|
})
|
|
662
560
|
], IonCard);
|
|
663
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, decorators: [{
|
|
664
562
|
type: Component,
|
|
665
563
|
args: [{
|
|
666
564
|
selector: 'ion-card',
|
|
667
565
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
668
566
|
template: '<ng-content></ng-content>',
|
|
669
567
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
670
|
-
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
|
|
671
|
-
standalone: false
|
|
568
|
+
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'target', 'theme', 'type'],
|
|
672
569
|
}]
|
|
673
|
-
}], ctorParameters: ()
|
|
570
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
674
571
|
let IonCardContent = class IonCardContent {
|
|
675
572
|
z;
|
|
676
573
|
el;
|
|
@@ -679,25 +576,24 @@ let IonCardContent = class IonCardContent {
|
|
|
679
576
|
c.detach();
|
|
680
577
|
this.el = r.nativeElement;
|
|
681
578
|
}
|
|
682
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
683
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
579
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
580
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardContent, selector: "ion-card-content", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
684
581
|
};
|
|
685
582
|
IonCardContent = __decorate([
|
|
686
583
|
ProxyCmp({
|
|
687
|
-
inputs: ['mode']
|
|
584
|
+
inputs: ['mode', 'theme']
|
|
688
585
|
})
|
|
689
586
|
], IonCardContent);
|
|
690
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
587
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, decorators: [{
|
|
691
588
|
type: Component,
|
|
692
589
|
args: [{
|
|
693
590
|
selector: 'ion-card-content',
|
|
694
591
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
695
592
|
template: '<ng-content></ng-content>',
|
|
696
593
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
697
|
-
inputs: ['mode'],
|
|
698
|
-
standalone: false
|
|
594
|
+
inputs: ['mode', 'theme'],
|
|
699
595
|
}]
|
|
700
|
-
}], ctorParameters: ()
|
|
596
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
701
597
|
let IonCardHeader = class IonCardHeader {
|
|
702
598
|
z;
|
|
703
599
|
el;
|
|
@@ -706,25 +602,24 @@ let IonCardHeader = class IonCardHeader {
|
|
|
706
602
|
c.detach();
|
|
707
603
|
this.el = r.nativeElement;
|
|
708
604
|
}
|
|
709
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
710
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
605
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
606
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardHeader, selector: "ion-card-header", inputs: { color: "color", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
711
607
|
};
|
|
712
608
|
IonCardHeader = __decorate([
|
|
713
609
|
ProxyCmp({
|
|
714
|
-
inputs: ['color', 'mode', 'translucent']
|
|
610
|
+
inputs: ['color', 'mode', 'theme', 'translucent']
|
|
715
611
|
})
|
|
716
612
|
], IonCardHeader);
|
|
717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, decorators: [{
|
|
718
614
|
type: Component,
|
|
719
615
|
args: [{
|
|
720
616
|
selector: 'ion-card-header',
|
|
721
617
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
722
618
|
template: '<ng-content></ng-content>',
|
|
723
619
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
724
|
-
inputs: ['color', 'mode', 'translucent'],
|
|
725
|
-
standalone: false
|
|
620
|
+
inputs: ['color', 'mode', 'theme', 'translucent'],
|
|
726
621
|
}]
|
|
727
|
-
}], ctorParameters: ()
|
|
622
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
728
623
|
let IonCardSubtitle = class IonCardSubtitle {
|
|
729
624
|
z;
|
|
730
625
|
el;
|
|
@@ -733,25 +628,24 @@ let IonCardSubtitle = class IonCardSubtitle {
|
|
|
733
628
|
c.detach();
|
|
734
629
|
this.el = r.nativeElement;
|
|
735
630
|
}
|
|
736
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
737
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
631
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
632
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardSubtitle, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
738
633
|
};
|
|
739
634
|
IonCardSubtitle = __decorate([
|
|
740
635
|
ProxyCmp({
|
|
741
|
-
inputs: ['color', 'mode']
|
|
636
|
+
inputs: ['color', 'mode', 'theme']
|
|
742
637
|
})
|
|
743
638
|
], IonCardSubtitle);
|
|
744
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, decorators: [{
|
|
745
640
|
type: Component,
|
|
746
641
|
args: [{
|
|
747
642
|
selector: 'ion-card-subtitle',
|
|
748
643
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
749
644
|
template: '<ng-content></ng-content>',
|
|
750
645
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
751
|
-
inputs: ['color', 'mode'],
|
|
752
|
-
standalone: false
|
|
646
|
+
inputs: ['color', 'mode', 'theme'],
|
|
753
647
|
}]
|
|
754
|
-
}], ctorParameters: ()
|
|
648
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
755
649
|
let IonCardTitle = class IonCardTitle {
|
|
756
650
|
z;
|
|
757
651
|
el;
|
|
@@ -760,62 +654,51 @@ let IonCardTitle = class IonCardTitle {
|
|
|
760
654
|
c.detach();
|
|
761
655
|
this.el = r.nativeElement;
|
|
762
656
|
}
|
|
763
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
764
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
657
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
658
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardTitle, selector: "ion-card-title", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
765
659
|
};
|
|
766
660
|
IonCardTitle = __decorate([
|
|
767
661
|
ProxyCmp({
|
|
768
|
-
inputs: ['color', 'mode']
|
|
662
|
+
inputs: ['color', 'mode', 'theme']
|
|
769
663
|
})
|
|
770
664
|
], IonCardTitle);
|
|
771
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
665
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, decorators: [{
|
|
772
666
|
type: Component,
|
|
773
667
|
args: [{
|
|
774
668
|
selector: 'ion-card-title',
|
|
775
669
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
776
670
|
template: '<ng-content></ng-content>',
|
|
777
671
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
778
|
-
inputs: ['color', 'mode'],
|
|
779
|
-
standalone: false
|
|
672
|
+
inputs: ['color', 'mode', 'theme'],
|
|
780
673
|
}]
|
|
781
|
-
}], ctorParameters: ()
|
|
674
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
782
675
|
let IonCheckbox = class IonCheckbox {
|
|
783
676
|
z;
|
|
784
677
|
el;
|
|
785
|
-
ionChange = new EventEmitter();
|
|
786
|
-
ionFocus = new EventEmitter();
|
|
787
|
-
ionBlur = new EventEmitter();
|
|
788
678
|
constructor(c, r, z) {
|
|
789
679
|
this.z = z;
|
|
790
680
|
c.detach();
|
|
791
681
|
this.el = r.nativeElement;
|
|
682
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionFocus', 'ionBlur']);
|
|
792
683
|
}
|
|
793
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
794
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
684
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
685
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCheckbox, selector: "ion-checkbox", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", shape: "shape", size: "size", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
795
686
|
};
|
|
796
687
|
IonCheckbox = __decorate([
|
|
797
688
|
ProxyCmp({
|
|
798
|
-
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
689
|
+
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'shape', 'size', 'theme', 'value']
|
|
799
690
|
})
|
|
800
691
|
], IonCheckbox);
|
|
801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, decorators: [{
|
|
802
693
|
type: Component,
|
|
803
694
|
args: [{
|
|
804
695
|
selector: 'ion-checkbox',
|
|
805
696
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
806
697
|
template: '<ng-content></ng-content>',
|
|
807
698
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
808
|
-
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value'],
|
|
809
|
-
outputs: ['ionChange', 'ionFocus', 'ionBlur'],
|
|
810
|
-
standalone: false
|
|
699
|
+
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'shape', 'size', 'theme', 'value'],
|
|
811
700
|
}]
|
|
812
|
-
}], ctorParameters: ()
|
|
813
|
-
type: Output
|
|
814
|
-
}], ionFocus: [{
|
|
815
|
-
type: Output
|
|
816
|
-
}], ionBlur: [{
|
|
817
|
-
type: Output
|
|
818
|
-
}] } });
|
|
701
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
819
702
|
let IonChip = class IonChip {
|
|
820
703
|
z;
|
|
821
704
|
el;
|
|
@@ -824,25 +707,24 @@ let IonChip = class IonChip {
|
|
|
824
707
|
c.detach();
|
|
825
708
|
this.el = r.nativeElement;
|
|
826
709
|
}
|
|
827
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
828
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
710
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
711
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonChip, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", hue: "hue", mode: "mode", outline: "outline", shape: "shape", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
829
712
|
};
|
|
830
713
|
IonChip = __decorate([
|
|
831
714
|
ProxyCmp({
|
|
832
|
-
inputs: ['color', 'disabled', 'mode', 'outline']
|
|
715
|
+
inputs: ['color', 'disabled', 'hue', 'mode', 'outline', 'shape', 'size', 'theme']
|
|
833
716
|
})
|
|
834
717
|
], IonChip);
|
|
835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
718
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, decorators: [{
|
|
836
719
|
type: Component,
|
|
837
720
|
args: [{
|
|
838
721
|
selector: 'ion-chip',
|
|
839
722
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
840
723
|
template: '<ng-content></ng-content>',
|
|
841
724
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
842
|
-
inputs: ['color', 'disabled', 'mode', 'outline'],
|
|
843
|
-
standalone: false
|
|
725
|
+
inputs: ['color', 'disabled', 'hue', 'mode', 'outline', 'shape', 'size', 'theme'],
|
|
844
726
|
}]
|
|
845
|
-
}], ctorParameters: ()
|
|
727
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
846
728
|
let IonCol = class IonCol {
|
|
847
729
|
z;
|
|
848
730
|
el;
|
|
@@ -851,104 +733,80 @@ let IonCol = class IonCol {
|
|
|
851
733
|
c.detach();
|
|
852
734
|
this.el = r.nativeElement;
|
|
853
735
|
}
|
|
854
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
855
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
736
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
737
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCol, selector: "ion-col", inputs: { mode: "mode", offset: "offset", offsetLg: "offsetLg", offsetMd: "offsetMd", offsetSm: "offsetSm", offsetXl: "offsetXl", offsetXs: "offsetXs", order: "order", orderLg: "orderLg", orderMd: "orderMd", orderSm: "orderSm", orderXl: "orderXl", orderXs: "orderXs", pull: "pull", pullLg: "pullLg", pullMd: "pullMd", pullSm: "pullSm", pullXl: "pullXl", pullXs: "pullXs", push: "push", pushLg: "pushLg", pushMd: "pushMd", pushSm: "pushSm", pushXl: "pushXl", pushXs: "pushXs", size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm", sizeXl: "sizeXl", sizeXs: "sizeXs", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
856
738
|
};
|
|
857
739
|
IonCol = __decorate([
|
|
858
740
|
ProxyCmp({
|
|
859
|
-
inputs: ['offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs']
|
|
741
|
+
inputs: ['mode', 'offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'order', 'orderLg', 'orderMd', 'orderSm', 'orderXl', 'orderXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs', 'theme']
|
|
860
742
|
})
|
|
861
743
|
], IonCol);
|
|
862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, decorators: [{
|
|
863
745
|
type: Component,
|
|
864
746
|
args: [{
|
|
865
747
|
selector: 'ion-col',
|
|
866
748
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
867
749
|
template: '<ng-content></ng-content>',
|
|
868
750
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
869
|
-
inputs: ['offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs'],
|
|
870
|
-
standalone: false
|
|
751
|
+
inputs: ['mode', 'offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'order', 'orderLg', 'orderMd', 'orderSm', 'orderXl', 'orderXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs', 'theme'],
|
|
871
752
|
}]
|
|
872
|
-
}], ctorParameters: ()
|
|
753
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
873
754
|
let IonContent = class IonContent {
|
|
874
755
|
z;
|
|
875
756
|
el;
|
|
876
|
-
ionScrollStart = new EventEmitter();
|
|
877
|
-
ionScroll = new EventEmitter();
|
|
878
|
-
ionScrollEnd = new EventEmitter();
|
|
879
757
|
constructor(c, r, z) {
|
|
880
758
|
this.z = z;
|
|
881
759
|
c.detach();
|
|
882
760
|
this.el = r.nativeElement;
|
|
761
|
+
proxyOutputs(this, this.el, ['ionScrollStart', 'ionScroll', 'ionScrollEnd']);
|
|
883
762
|
}
|
|
884
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
885
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
763
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
764
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonContent, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen", mode: "mode", scrollEvents: "scrollEvents", scrollX: "scrollX", scrollY: "scrollY", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
886
765
|
};
|
|
887
766
|
IonContent = __decorate([
|
|
888
767
|
ProxyCmp({
|
|
889
|
-
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
|
|
768
|
+
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'mode', 'scrollEvents', 'scrollX', 'scrollY', 'theme'],
|
|
890
769
|
methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
|
|
891
770
|
})
|
|
892
771
|
], IonContent);
|
|
893
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, decorators: [{
|
|
894
773
|
type: Component,
|
|
895
774
|
args: [{
|
|
896
775
|
selector: 'ion-content',
|
|
897
776
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
898
777
|
template: '<ng-content></ng-content>',
|
|
899
778
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
900
|
-
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
|
|
901
|
-
outputs: ['ionScrollStart', 'ionScroll', 'ionScrollEnd'],
|
|
902
|
-
standalone: false
|
|
779
|
+
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'mode', 'scrollEvents', 'scrollX', 'scrollY', 'theme'],
|
|
903
780
|
}]
|
|
904
|
-
}], ctorParameters: ()
|
|
905
|
-
type: Output
|
|
906
|
-
}], ionScroll: [{
|
|
907
|
-
type: Output
|
|
908
|
-
}], ionScrollEnd: [{
|
|
909
|
-
type: Output
|
|
910
|
-
}] } });
|
|
781
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
911
782
|
let IonDatetime = class IonDatetime {
|
|
912
783
|
z;
|
|
913
784
|
el;
|
|
914
|
-
ionCancel = new EventEmitter();
|
|
915
|
-
ionChange = new EventEmitter();
|
|
916
|
-
ionFocus = new EventEmitter();
|
|
917
|
-
ionBlur = new EventEmitter();
|
|
918
785
|
constructor(c, r, z) {
|
|
919
786
|
this.z = z;
|
|
920
787
|
c.detach();
|
|
921
788
|
this.el = r.nativeElement;
|
|
789
|
+
proxyOutputs(this, this.el, ['ionCancel', 'ionChange', 'ionFocus', 'ionBlur']);
|
|
922
790
|
}
|
|
923
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
924
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
791
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
792
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetime, selector: "ion-datetime", inputs: { cancelText: "cancelText", clearText: "clearText", color: "color", dayValues: "dayValues", disabled: "disabled", doneText: "doneText", firstDayOfWeek: "firstDayOfWeek", formatOptions: "formatOptions", highlightedDates: "highlightedDates", hourCycle: "hourCycle", hourValues: "hourValues", isDateEnabled: "isDateEnabled", locale: "locale", max: "max", min: "min", minuteValues: "minuteValues", mode: "mode", monthValues: "monthValues", multiple: "multiple", name: "name", preferWheel: "preferWheel", presentation: "presentation", readonly: "readonly", showAdjacentDays: "showAdjacentDays", showClearButton: "showClearButton", showDefaultButtons: "showDefaultButtons", showDefaultTimeLabel: "showDefaultTimeLabel", showDefaultTitle: "showDefaultTitle", size: "size", theme: "theme", titleSelectedDatesFormatter: "titleSelectedDatesFormatter", value: "value", yearValues: "yearValues" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
925
793
|
};
|
|
926
794
|
IonDatetime = __decorate([
|
|
927
795
|
ProxyCmp({
|
|
928
|
-
inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
|
|
796
|
+
inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'theme', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
|
|
929
797
|
methods: ['confirm', 'reset', 'cancel']
|
|
930
798
|
})
|
|
931
799
|
], IonDatetime);
|
|
932
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetime, decorators: [{
|
|
933
801
|
type: Component,
|
|
934
802
|
args: [{
|
|
935
803
|
selector: 'ion-datetime',
|
|
936
804
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
937
805
|
template: '<ng-content></ng-content>',
|
|
938
806
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
939
|
-
inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
|
|
940
|
-
outputs: ['ionCancel', 'ionChange', 'ionFocus', 'ionBlur'],
|
|
941
|
-
standalone: false
|
|
807
|
+
inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'theme', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
|
|
942
808
|
}]
|
|
943
|
-
}], ctorParameters: ()
|
|
944
|
-
type: Output
|
|
945
|
-
}], ionChange: [{
|
|
946
|
-
type: Output
|
|
947
|
-
}], ionFocus: [{
|
|
948
|
-
type: Output
|
|
949
|
-
}], ionBlur: [{
|
|
950
|
-
type: Output
|
|
951
|
-
}] } });
|
|
809
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
952
810
|
let IonDatetimeButton = class IonDatetimeButton {
|
|
953
811
|
z;
|
|
954
812
|
el;
|
|
@@ -957,25 +815,50 @@ let IonDatetimeButton = class IonDatetimeButton {
|
|
|
957
815
|
c.detach();
|
|
958
816
|
this.el = r.nativeElement;
|
|
959
817
|
}
|
|
960
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
961
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
818
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
819
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetimeButton, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
962
820
|
};
|
|
963
821
|
IonDatetimeButton = __decorate([
|
|
964
822
|
ProxyCmp({
|
|
965
|
-
inputs: ['color', 'datetime', 'disabled', 'mode']
|
|
823
|
+
inputs: ['color', 'datetime', 'disabled', 'mode', 'theme']
|
|
966
824
|
})
|
|
967
825
|
], IonDatetimeButton);
|
|
968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, decorators: [{
|
|
969
827
|
type: Component,
|
|
970
828
|
args: [{
|
|
971
829
|
selector: 'ion-datetime-button',
|
|
972
830
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
973
831
|
template: '<ng-content></ng-content>',
|
|
974
832
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
975
|
-
inputs: ['color', 'datetime', 'disabled', 'mode'],
|
|
976
|
-
|
|
833
|
+
inputs: ['color', 'datetime', 'disabled', 'mode', 'theme'],
|
|
834
|
+
}]
|
|
835
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
836
|
+
let IonDivider = class IonDivider {
|
|
837
|
+
z;
|
|
838
|
+
el;
|
|
839
|
+
constructor(c, r, z) {
|
|
840
|
+
this.z = z;
|
|
841
|
+
c.detach();
|
|
842
|
+
this.el = r.nativeElement;
|
|
843
|
+
}
|
|
844
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
845
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDivider, selector: "ion-divider", inputs: { inset: "inset", spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
846
|
+
};
|
|
847
|
+
IonDivider = __decorate([
|
|
848
|
+
ProxyCmp({
|
|
849
|
+
inputs: ['inset', 'spacing']
|
|
850
|
+
})
|
|
851
|
+
], IonDivider);
|
|
852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDivider, decorators: [{
|
|
853
|
+
type: Component,
|
|
854
|
+
args: [{
|
|
855
|
+
selector: 'ion-divider',
|
|
856
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
857
|
+
template: '<ng-content></ng-content>',
|
|
858
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
859
|
+
inputs: ['inset', 'spacing'],
|
|
977
860
|
}]
|
|
978
|
-
}], ctorParameters: ()
|
|
861
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
979
862
|
let IonFab = class IonFab {
|
|
980
863
|
z;
|
|
981
864
|
el;
|
|
@@ -984,60 +867,52 @@ let IonFab = class IonFab {
|
|
|
984
867
|
c.detach();
|
|
985
868
|
this.el = r.nativeElement;
|
|
986
869
|
}
|
|
987
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
988
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
870
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
871
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFab, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal", mode: "mode", theme: "theme", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
989
872
|
};
|
|
990
873
|
IonFab = __decorate([
|
|
991
874
|
ProxyCmp({
|
|
992
|
-
inputs: ['activated', 'edge', 'horizontal', 'vertical'],
|
|
875
|
+
inputs: ['activated', 'edge', 'horizontal', 'mode', 'theme', 'vertical'],
|
|
993
876
|
methods: ['close']
|
|
994
877
|
})
|
|
995
878
|
], IonFab);
|
|
996
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, decorators: [{
|
|
997
880
|
type: Component,
|
|
998
881
|
args: [{
|
|
999
882
|
selector: 'ion-fab',
|
|
1000
883
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1001
884
|
template: '<ng-content></ng-content>',
|
|
1002
885
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1003
|
-
inputs: ['activated', 'edge', 'horizontal', 'vertical'],
|
|
1004
|
-
standalone: false
|
|
886
|
+
inputs: ['activated', 'edge', 'horizontal', 'mode', 'theme', 'vertical'],
|
|
1005
887
|
}]
|
|
1006
|
-
}], ctorParameters: ()
|
|
888
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1007
889
|
let IonFabButton = class IonFabButton {
|
|
1008
890
|
z;
|
|
1009
891
|
el;
|
|
1010
|
-
ionFocus = new EventEmitter();
|
|
1011
|
-
ionBlur = new EventEmitter();
|
|
1012
892
|
constructor(c, r, z) {
|
|
1013
893
|
this.z = z;
|
|
1014
894
|
c.detach();
|
|
1015
895
|
this.el = r.nativeElement;
|
|
896
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
1016
897
|
}
|
|
1017
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1018
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
898
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
899
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabButton, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", show: "show", size: "size", target: "target", theme: "theme", translucent: "translucent", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1019
900
|
};
|
|
1020
901
|
IonFabButton = __decorate([
|
|
1021
902
|
ProxyCmp({
|
|
1022
|
-
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type']
|
|
903
|
+
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'theme', 'translucent', 'type']
|
|
1023
904
|
})
|
|
1024
905
|
], IonFabButton);
|
|
1025
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, decorators: [{
|
|
1026
907
|
type: Component,
|
|
1027
908
|
args: [{
|
|
1028
909
|
selector: 'ion-fab-button',
|
|
1029
910
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1030
911
|
template: '<ng-content></ng-content>',
|
|
1031
912
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1032
|
-
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type'],
|
|
1033
|
-
outputs: ['ionFocus', 'ionBlur'],
|
|
1034
|
-
standalone: false
|
|
913
|
+
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'theme', 'translucent', 'type'],
|
|
1035
914
|
}]
|
|
1036
|
-
}], ctorParameters: ()
|
|
1037
|
-
type: Output
|
|
1038
|
-
}], ionBlur: [{
|
|
1039
|
-
type: Output
|
|
1040
|
-
}] } });
|
|
915
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1041
916
|
let IonFabList = class IonFabList {
|
|
1042
917
|
z;
|
|
1043
918
|
el;
|
|
@@ -1046,25 +921,24 @@ let IonFabList = class IonFabList {
|
|
|
1046
921
|
c.detach();
|
|
1047
922
|
this.el = r.nativeElement;
|
|
1048
923
|
}
|
|
1049
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1050
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
924
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
925
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabList, selector: "ion-fab-list", inputs: { activated: "activated", mode: "mode", side: "side", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1051
926
|
};
|
|
1052
927
|
IonFabList = __decorate([
|
|
1053
928
|
ProxyCmp({
|
|
1054
|
-
inputs: ['activated', 'side']
|
|
929
|
+
inputs: ['activated', 'mode', 'side', 'theme']
|
|
1055
930
|
})
|
|
1056
931
|
], IonFabList);
|
|
1057
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, decorators: [{
|
|
1058
933
|
type: Component,
|
|
1059
934
|
args: [{
|
|
1060
935
|
selector: 'ion-fab-list',
|
|
1061
936
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1062
937
|
template: '<ng-content></ng-content>',
|
|
1063
938
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1064
|
-
inputs: ['activated', 'side'],
|
|
1065
|
-
standalone: false
|
|
939
|
+
inputs: ['activated', 'mode', 'side', 'theme'],
|
|
1066
940
|
}]
|
|
1067
|
-
}], ctorParameters: ()
|
|
941
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1068
942
|
let IonFooter = class IonFooter {
|
|
1069
943
|
z;
|
|
1070
944
|
el;
|
|
@@ -1073,25 +947,76 @@ let IonFooter = class IonFooter {
|
|
|
1073
947
|
c.detach();
|
|
1074
948
|
this.el = r.nativeElement;
|
|
1075
949
|
}
|
|
1076
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1077
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
950
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
951
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFooter, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1078
952
|
};
|
|
1079
953
|
IonFooter = __decorate([
|
|
1080
954
|
ProxyCmp({
|
|
1081
|
-
inputs: ['collapse', 'mode', 'translucent']
|
|
955
|
+
inputs: ['collapse', 'mode', 'theme', 'translucent']
|
|
1082
956
|
})
|
|
1083
957
|
], IonFooter);
|
|
1084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, decorators: [{
|
|
1085
959
|
type: Component,
|
|
1086
960
|
args: [{
|
|
1087
961
|
selector: 'ion-footer',
|
|
1088
962
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1089
963
|
template: '<ng-content></ng-content>',
|
|
1090
964
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1091
|
-
inputs: ['collapse', 'mode', 'translucent'],
|
|
1092
|
-
|
|
965
|
+
inputs: ['collapse', 'mode', 'theme', 'translucent'],
|
|
966
|
+
}]
|
|
967
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
968
|
+
let IonGallery = class IonGallery {
|
|
969
|
+
z;
|
|
970
|
+
el;
|
|
971
|
+
constructor(c, r, z) {
|
|
972
|
+
this.z = z;
|
|
973
|
+
c.detach();
|
|
974
|
+
this.el = r.nativeElement;
|
|
975
|
+
}
|
|
976
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGallery, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
977
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGallery, selector: "ion-gallery", inputs: { columns: "columns", gap: "gap", layout: "layout", mode: "mode", order: "order", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
978
|
+
};
|
|
979
|
+
IonGallery = __decorate([
|
|
980
|
+
ProxyCmp({
|
|
981
|
+
inputs: ['columns', 'gap', 'layout', 'mode', 'order', 'theme']
|
|
982
|
+
})
|
|
983
|
+
], IonGallery);
|
|
984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGallery, decorators: [{
|
|
985
|
+
type: Component,
|
|
986
|
+
args: [{
|
|
987
|
+
selector: 'ion-gallery',
|
|
988
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
989
|
+
template: '<ng-content></ng-content>',
|
|
990
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
991
|
+
inputs: ['columns', 'gap', 'layout', 'mode', 'order', 'theme'],
|
|
992
|
+
}]
|
|
993
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
994
|
+
let IonGalleryItem = class IonGalleryItem {
|
|
995
|
+
z;
|
|
996
|
+
el;
|
|
997
|
+
constructor(c, r, z) {
|
|
998
|
+
this.z = z;
|
|
999
|
+
c.detach();
|
|
1000
|
+
this.el = r.nativeElement;
|
|
1001
|
+
}
|
|
1002
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGalleryItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1003
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGalleryItem, selector: "ion-gallery-item", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1004
|
+
};
|
|
1005
|
+
IonGalleryItem = __decorate([
|
|
1006
|
+
ProxyCmp({
|
|
1007
|
+
inputs: ['mode', 'theme']
|
|
1008
|
+
})
|
|
1009
|
+
], IonGalleryItem);
|
|
1010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGalleryItem, decorators: [{
|
|
1011
|
+
type: Component,
|
|
1012
|
+
args: [{
|
|
1013
|
+
selector: 'ion-gallery-item',
|
|
1014
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1015
|
+
template: '<ng-content></ng-content>',
|
|
1016
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1017
|
+
inputs: ['mode', 'theme'],
|
|
1093
1018
|
}]
|
|
1094
|
-
}], ctorParameters: ()
|
|
1019
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1095
1020
|
let IonGrid = class IonGrid {
|
|
1096
1021
|
z;
|
|
1097
1022
|
el;
|
|
@@ -1100,25 +1025,24 @@ let IonGrid = class IonGrid {
|
|
|
1100
1025
|
c.detach();
|
|
1101
1026
|
this.el = r.nativeElement;
|
|
1102
1027
|
}
|
|
1103
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1104
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1028
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1029
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGrid, selector: "ion-grid", inputs: { fixed: "fixed", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1105
1030
|
};
|
|
1106
1031
|
IonGrid = __decorate([
|
|
1107
1032
|
ProxyCmp({
|
|
1108
|
-
inputs: ['fixed']
|
|
1033
|
+
inputs: ['fixed', 'mode', 'theme']
|
|
1109
1034
|
})
|
|
1110
1035
|
], IonGrid);
|
|
1111
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, decorators: [{
|
|
1112
1037
|
type: Component,
|
|
1113
1038
|
args: [{
|
|
1114
1039
|
selector: 'ion-grid',
|
|
1115
1040
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1116
1041
|
template: '<ng-content></ng-content>',
|
|
1117
1042
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1118
|
-
inputs: ['fixed'],
|
|
1119
|
-
standalone: false
|
|
1043
|
+
inputs: ['fixed', 'mode', 'theme'],
|
|
1120
1044
|
}]
|
|
1121
|
-
}], ctorParameters: ()
|
|
1045
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1122
1046
|
let IonHeader = class IonHeader {
|
|
1123
1047
|
z;
|
|
1124
1048
|
el;
|
|
@@ -1127,25 +1051,24 @@ let IonHeader = class IonHeader {
|
|
|
1127
1051
|
c.detach();
|
|
1128
1052
|
this.el = r.nativeElement;
|
|
1129
1053
|
}
|
|
1130
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1131
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1054
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1055
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonHeader, selector: "ion-header", inputs: { collapse: "collapse", divider: "divider", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1132
1056
|
};
|
|
1133
1057
|
IonHeader = __decorate([
|
|
1134
1058
|
ProxyCmp({
|
|
1135
|
-
inputs: ['collapse', 'mode', 'translucent']
|
|
1059
|
+
inputs: ['collapse', 'divider', 'mode', 'theme', 'translucent']
|
|
1136
1060
|
})
|
|
1137
1061
|
], IonHeader);
|
|
1138
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, decorators: [{
|
|
1139
1063
|
type: Component,
|
|
1140
1064
|
args: [{
|
|
1141
1065
|
selector: 'ion-header',
|
|
1142
1066
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1143
1067
|
template: '<ng-content></ng-content>',
|
|
1144
1068
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1145
|
-
inputs: ['collapse', 'mode', 'translucent'],
|
|
1146
|
-
standalone: false
|
|
1069
|
+
inputs: ['collapse', 'divider', 'mode', 'theme', 'translucent'],
|
|
1147
1070
|
}]
|
|
1148
|
-
}], ctorParameters: ()
|
|
1071
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1149
1072
|
let IonIcon = class IonIcon {
|
|
1150
1073
|
z;
|
|
1151
1074
|
el;
|
|
@@ -1154,15 +1077,15 @@ let IonIcon = class IonIcon {
|
|
|
1154
1077
|
c.detach();
|
|
1155
1078
|
this.el = r.nativeElement;
|
|
1156
1079
|
}
|
|
1157
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1158
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1080
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1081
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonIcon, selector: "ion-icon", inputs: { color: "color", flipRtl: "flipRtl", icon: "icon", ios: "ios", lazy: "lazy", md: "md", mode: "mode", name: "name", sanitize: "sanitize", size: "size", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1159
1082
|
};
|
|
1160
1083
|
IonIcon = __decorate([
|
|
1161
1084
|
ProxyCmp({
|
|
1162
1085
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src']
|
|
1163
1086
|
})
|
|
1164
1087
|
], IonIcon);
|
|
1165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonIcon, decorators: [{
|
|
1166
1089
|
type: Component,
|
|
1167
1090
|
args: [{
|
|
1168
1091
|
selector: 'ion-icon',
|
|
@@ -1170,78 +1093,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
1170
1093
|
template: '<ng-content></ng-content>',
|
|
1171
1094
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1172
1095
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
|
|
1173
|
-
standalone: false
|
|
1174
1096
|
}]
|
|
1175
|
-
}], ctorParameters: ()
|
|
1097
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1176
1098
|
let IonImg = class IonImg {
|
|
1177
1099
|
z;
|
|
1178
1100
|
el;
|
|
1179
|
-
ionImgWillLoad = new EventEmitter();
|
|
1180
|
-
ionImgDidLoad = new EventEmitter();
|
|
1181
|
-
ionError = new EventEmitter();
|
|
1182
1101
|
constructor(c, r, z) {
|
|
1183
1102
|
this.z = z;
|
|
1184
1103
|
c.detach();
|
|
1185
1104
|
this.el = r.nativeElement;
|
|
1105
|
+
proxyOutputs(this, this.el, ['ionImgWillLoad', 'ionImgDidLoad', 'ionError']);
|
|
1186
1106
|
}
|
|
1187
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1188
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1107
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1108
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonImg, selector: "ion-img", inputs: { alt: "alt", mode: "mode", src: "src", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1189
1109
|
};
|
|
1190
1110
|
IonImg = __decorate([
|
|
1191
1111
|
ProxyCmp({
|
|
1192
|
-
inputs: ['alt', 'src']
|
|
1112
|
+
inputs: ['alt', 'mode', 'src', 'theme']
|
|
1193
1113
|
})
|
|
1194
1114
|
], IonImg);
|
|
1195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, decorators: [{
|
|
1196
1116
|
type: Component,
|
|
1197
1117
|
args: [{
|
|
1198
1118
|
selector: 'ion-img',
|
|
1199
1119
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1200
1120
|
template: '<ng-content></ng-content>',
|
|
1201
1121
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1202
|
-
inputs: ['alt', 'src'],
|
|
1203
|
-
outputs: ['ionImgWillLoad', 'ionImgDidLoad', 'ionError'],
|
|
1204
|
-
standalone: false
|
|
1122
|
+
inputs: ['alt', 'mode', 'src', 'theme'],
|
|
1205
1123
|
}]
|
|
1206
|
-
}], ctorParameters: ()
|
|
1207
|
-
type: Output
|
|
1208
|
-
}], ionImgDidLoad: [{
|
|
1209
|
-
type: Output
|
|
1210
|
-
}], ionError: [{
|
|
1211
|
-
type: Output
|
|
1212
|
-
}] } });
|
|
1124
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1213
1125
|
let IonInfiniteScroll = class IonInfiniteScroll {
|
|
1214
1126
|
z;
|
|
1215
1127
|
el;
|
|
1216
|
-
ionInfinite = new EventEmitter();
|
|
1217
1128
|
constructor(c, r, z) {
|
|
1218
1129
|
this.z = z;
|
|
1219
1130
|
c.detach();
|
|
1220
1131
|
this.el = r.nativeElement;
|
|
1132
|
+
proxyOutputs(this, this.el, ['ionInfinite']);
|
|
1221
1133
|
}
|
|
1222
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1223
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1134
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1135
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScroll, selector: "ion-infinite-scroll", inputs: { disabled: "disabled", mode: "mode", position: "position", preserveRerenderScrollPosition: "preserveRerenderScrollPosition", theme: "theme", threshold: "threshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1224
1136
|
};
|
|
1225
1137
|
IonInfiniteScroll = __decorate([
|
|
1226
1138
|
ProxyCmp({
|
|
1227
|
-
inputs: ['disabled', 'position', 'threshold'],
|
|
1139
|
+
inputs: ['disabled', 'mode', 'position', 'preserveRerenderScrollPosition', 'theme', 'threshold'],
|
|
1228
1140
|
methods: ['complete']
|
|
1229
1141
|
})
|
|
1230
1142
|
], IonInfiniteScroll);
|
|
1231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, decorators: [{
|
|
1232
1144
|
type: Component,
|
|
1233
1145
|
args: [{
|
|
1234
1146
|
selector: 'ion-infinite-scroll',
|
|
1235
1147
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1236
1148
|
template: '<ng-content></ng-content>',
|
|
1237
1149
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1238
|
-
inputs: ['disabled', 'position', 'threshold'],
|
|
1239
|
-
outputs: ['ionInfinite'],
|
|
1240
|
-
standalone: false
|
|
1150
|
+
inputs: ['disabled', 'mode', 'position', 'preserveRerenderScrollPosition', 'theme', 'threshold'],
|
|
1241
1151
|
}]
|
|
1242
|
-
}], ctorParameters: ()
|
|
1243
|
-
type: Output
|
|
1244
|
-
}] } });
|
|
1152
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1245
1153
|
let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
1246
1154
|
z;
|
|
1247
1155
|
el;
|
|
@@ -1250,110 +1158,80 @@ let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
|
1250
1158
|
c.detach();
|
|
1251
1159
|
this.el = r.nativeElement;
|
|
1252
1160
|
}
|
|
1253
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1254
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1161
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1162
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScrollContent, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1255
1163
|
};
|
|
1256
1164
|
IonInfiniteScrollContent = __decorate([
|
|
1257
1165
|
ProxyCmp({
|
|
1258
|
-
inputs: ['loadingSpinner', 'loadingText']
|
|
1166
|
+
inputs: ['loadingSpinner', 'loadingText', 'mode', 'theme']
|
|
1259
1167
|
})
|
|
1260
1168
|
], IonInfiniteScrollContent);
|
|
1261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
|
|
1262
1170
|
type: Component,
|
|
1263
1171
|
args: [{
|
|
1264
1172
|
selector: 'ion-infinite-scroll-content',
|
|
1265
1173
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1266
1174
|
template: '<ng-content></ng-content>',
|
|
1267
1175
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1268
|
-
inputs: ['loadingSpinner', 'loadingText'],
|
|
1269
|
-
standalone: false
|
|
1176
|
+
inputs: ['loadingSpinner', 'loadingText', 'mode', 'theme'],
|
|
1270
1177
|
}]
|
|
1271
|
-
}], ctorParameters: ()
|
|
1178
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1272
1179
|
let IonInput = class IonInput {
|
|
1273
1180
|
z;
|
|
1274
1181
|
el;
|
|
1275
|
-
ionInput = new EventEmitter();
|
|
1276
|
-
ionChange = new EventEmitter();
|
|
1277
|
-
ionBlur = new EventEmitter();
|
|
1278
|
-
ionFocus = new EventEmitter();
|
|
1279
1182
|
constructor(c, r, z) {
|
|
1280
1183
|
this.z = z;
|
|
1281
1184
|
c.detach();
|
|
1282
1185
|
this.el = r.nativeElement;
|
|
1186
|
+
proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionBlur', 'ionFocus']);
|
|
1283
1187
|
}
|
|
1284
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1285
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1188
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1189
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInput, selector: "ion-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearInput: "clearInput", clearInputIcon: "clearInputIcon", clearOnEdit: "clearOnEdit", color: "color", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", mode: "mode", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", shape: "shape", size: "size", spellcheck: "spellcheck", step: "step", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1286
1190
|
};
|
|
1287
1191
|
IonInput = __decorate([
|
|
1288
1192
|
ProxyCmp({
|
|
1289
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'spellcheck', 'step', 'type', 'value'],
|
|
1193
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'size', 'spellcheck', 'step', 'theme', 'type', 'value'],
|
|
1290
1194
|
methods: ['setFocus', 'getInputElement']
|
|
1291
1195
|
})
|
|
1292
1196
|
], IonInput);
|
|
1293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInput, decorators: [{
|
|
1294
1198
|
type: Component,
|
|
1295
1199
|
args: [{
|
|
1296
1200
|
selector: 'ion-input',
|
|
1297
1201
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1298
1202
|
template: '<ng-content></ng-content>',
|
|
1299
1203
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1300
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'spellcheck', 'step', 'type', 'value'],
|
|
1301
|
-
outputs: ['ionInput', 'ionChange', 'ionBlur', 'ionFocus'],
|
|
1302
|
-
standalone: false
|
|
1204
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'size', 'spellcheck', 'step', 'theme', 'type', 'value'],
|
|
1303
1205
|
}]
|
|
1304
|
-
}], ctorParameters: ()
|
|
1305
|
-
type: Output
|
|
1306
|
-
}], ionChange: [{
|
|
1307
|
-
type: Output
|
|
1308
|
-
}], ionBlur: [{
|
|
1309
|
-
type: Output
|
|
1310
|
-
}], ionFocus: [{
|
|
1311
|
-
type: Output
|
|
1312
|
-
}] } });
|
|
1206
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1313
1207
|
let IonInputOtp = class IonInputOtp {
|
|
1314
1208
|
z;
|
|
1315
1209
|
el;
|
|
1316
|
-
ionInput = new EventEmitter();
|
|
1317
|
-
ionChange = new EventEmitter();
|
|
1318
|
-
ionComplete = new EventEmitter();
|
|
1319
|
-
ionBlur = new EventEmitter();
|
|
1320
|
-
ionFocus = new EventEmitter();
|
|
1321
1210
|
constructor(c, r, z) {
|
|
1322
1211
|
this.z = z;
|
|
1323
1212
|
c.detach();
|
|
1324
1213
|
this.el = r.nativeElement;
|
|
1214
|
+
proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionComplete', 'ionBlur', 'ionFocus']);
|
|
1325
1215
|
}
|
|
1326
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1327
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1216
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputOtp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1217
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputOtp, selector: "ion-input-otp", inputs: { autocapitalize: "autocapitalize", color: "color", disabled: "disabled", fill: "fill", inputmode: "inputmode", length: "length", mode: "mode", pattern: "pattern", readonly: "readonly", separators: "separators", shape: "shape", size: "size", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1328
1218
|
};
|
|
1329
1219
|
IonInputOtp = __decorate([
|
|
1330
1220
|
ProxyCmp({
|
|
1331
|
-
inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'pattern', 'readonly', 'separators', 'shape', 'size', 'type', 'value'],
|
|
1221
|
+
inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'mode', 'pattern', 'readonly', 'separators', 'shape', 'size', 'theme', 'type', 'value'],
|
|
1332
1222
|
methods: ['setFocus']
|
|
1333
1223
|
})
|
|
1334
1224
|
], IonInputOtp);
|
|
1335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputOtp, decorators: [{
|
|
1336
1226
|
type: Component,
|
|
1337
1227
|
args: [{
|
|
1338
1228
|
selector: 'ion-input-otp',
|
|
1339
1229
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1340
1230
|
template: '<ng-content></ng-content>',
|
|
1341
1231
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1342
|
-
inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'pattern', 'readonly', 'separators', 'shape', 'size', 'type', 'value'],
|
|
1343
|
-
outputs: ['ionInput', 'ionChange', 'ionComplete', 'ionBlur', 'ionFocus'],
|
|
1344
|
-
standalone: false
|
|
1232
|
+
inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'mode', 'pattern', 'readonly', 'separators', 'shape', 'size', 'theme', 'type', 'value'],
|
|
1345
1233
|
}]
|
|
1346
|
-
}], ctorParameters: ()
|
|
1347
|
-
type: Output
|
|
1348
|
-
}], ionChange: [{
|
|
1349
|
-
type: Output
|
|
1350
|
-
}], ionComplete: [{
|
|
1351
|
-
type: Output
|
|
1352
|
-
}], ionBlur: [{
|
|
1353
|
-
type: Output
|
|
1354
|
-
}], ionFocus: [{
|
|
1355
|
-
type: Output
|
|
1356
|
-
}] } });
|
|
1234
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1357
1235
|
let IonInputPasswordToggle = class IonInputPasswordToggle {
|
|
1358
1236
|
z;
|
|
1359
1237
|
el;
|
|
@@ -1362,15 +1240,15 @@ let IonInputPasswordToggle = class IonInputPasswordToggle {
|
|
|
1362
1240
|
c.detach();
|
|
1363
1241
|
this.el = r.nativeElement;
|
|
1364
1242
|
}
|
|
1365
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1366
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1243
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputPasswordToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1244
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputPasswordToggle, selector: "ion-input-password-toggle", inputs: { color: "color", hideIcon: "hideIcon", mode: "mode", showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1367
1245
|
};
|
|
1368
1246
|
IonInputPasswordToggle = __decorate([
|
|
1369
1247
|
ProxyCmp({
|
|
1370
1248
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon']
|
|
1371
1249
|
})
|
|
1372
1250
|
], IonInputPasswordToggle);
|
|
1373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
|
|
1374
1252
|
type: Component,
|
|
1375
1253
|
args: [{
|
|
1376
1254
|
selector: 'ion-input-password-toggle',
|
|
@@ -1378,9 +1256,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
1378
1256
|
template: '<ng-content></ng-content>',
|
|
1379
1257
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1380
1258
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon'],
|
|
1381
|
-
standalone: false
|
|
1382
1259
|
}]
|
|
1383
|
-
}], ctorParameters: ()
|
|
1260
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1384
1261
|
let IonItem = class IonItem {
|
|
1385
1262
|
z;
|
|
1386
1263
|
el;
|
|
@@ -1389,25 +1266,24 @@ let IonItem = class IonItem {
|
|
|
1389
1266
|
c.detach();
|
|
1390
1267
|
this.el = r.nativeElement;
|
|
1391
1268
|
}
|
|
1392
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1393
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1269
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1270
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItem, selector: "ion-item", inputs: { button: "button", color: "color", detail: "detail", detailIcon: "detailIcon", disabled: "disabled", download: "download", href: "href", lines: "lines", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1394
1271
|
};
|
|
1395
1272
|
IonItem = __decorate([
|
|
1396
1273
|
ProxyCmp({
|
|
1397
|
-
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
1274
|
+
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'theme', 'type']
|
|
1398
1275
|
})
|
|
1399
1276
|
], IonItem);
|
|
1400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1277
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, decorators: [{
|
|
1401
1278
|
type: Component,
|
|
1402
1279
|
args: [{
|
|
1403
1280
|
selector: 'ion-item',
|
|
1404
1281
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1405
1282
|
template: '<ng-content></ng-content>',
|
|
1406
1283
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1407
|
-
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
|
|
1408
|
-
standalone: false
|
|
1284
|
+
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'theme', 'type'],
|
|
1409
1285
|
}]
|
|
1410
|
-
}], ctorParameters: ()
|
|
1286
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1411
1287
|
let IonItemDivider = class IonItemDivider {
|
|
1412
1288
|
z;
|
|
1413
1289
|
el;
|
|
@@ -1416,25 +1292,24 @@ let IonItemDivider = class IonItemDivider {
|
|
|
1416
1292
|
c.detach();
|
|
1417
1293
|
this.el = r.nativeElement;
|
|
1418
1294
|
}
|
|
1419
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1420
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1295
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1296
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemDivider, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1421
1297
|
};
|
|
1422
1298
|
IonItemDivider = __decorate([
|
|
1423
1299
|
ProxyCmp({
|
|
1424
|
-
inputs: ['color', 'mode', 'sticky']
|
|
1300
|
+
inputs: ['color', 'mode', 'sticky', 'theme']
|
|
1425
1301
|
})
|
|
1426
1302
|
], IonItemDivider);
|
|
1427
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, decorators: [{
|
|
1428
1304
|
type: Component,
|
|
1429
1305
|
args: [{
|
|
1430
1306
|
selector: 'ion-item-divider',
|
|
1431
1307
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1432
1308
|
template: '<ng-content></ng-content>',
|
|
1433
1309
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1434
|
-
inputs: ['color', 'mode', 'sticky'],
|
|
1435
|
-
standalone: false
|
|
1310
|
+
inputs: ['color', 'mode', 'sticky', 'theme'],
|
|
1436
1311
|
}]
|
|
1437
|
-
}], ctorParameters: ()
|
|
1312
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1438
1313
|
let IonItemGroup = class IonItemGroup {
|
|
1439
1314
|
z;
|
|
1440
1315
|
el;
|
|
@@ -1443,23 +1318,24 @@ let IonItemGroup = class IonItemGroup {
|
|
|
1443
1318
|
c.detach();
|
|
1444
1319
|
this.el = r.nativeElement;
|
|
1445
1320
|
}
|
|
1446
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1447
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1321
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1322
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemGroup, selector: "ion-item-group", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1448
1323
|
};
|
|
1449
1324
|
IonItemGroup = __decorate([
|
|
1450
|
-
ProxyCmp({
|
|
1325
|
+
ProxyCmp({
|
|
1326
|
+
inputs: ['mode', 'theme']
|
|
1327
|
+
})
|
|
1451
1328
|
], IonItemGroup);
|
|
1452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, decorators: [{
|
|
1453
1330
|
type: Component,
|
|
1454
1331
|
args: [{
|
|
1455
1332
|
selector: 'ion-item-group',
|
|
1456
1333
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1457
1334
|
template: '<ng-content></ng-content>',
|
|
1458
1335
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1459
|
-
inputs: [],
|
|
1460
|
-
standalone: false
|
|
1336
|
+
inputs: ['mode', 'theme'],
|
|
1461
1337
|
}]
|
|
1462
|
-
}], ctorParameters: ()
|
|
1338
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1463
1339
|
let IonItemOption = class IonItemOption {
|
|
1464
1340
|
z;
|
|
1465
1341
|
el;
|
|
@@ -1468,88 +1344,79 @@ let IonItemOption = class IonItemOption {
|
|
|
1468
1344
|
c.detach();
|
|
1469
1345
|
this.el = r.nativeElement;
|
|
1470
1346
|
}
|
|
1471
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1472
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1347
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1348
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOption, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", hue: "hue", mode: "mode", rel: "rel", shape: "shape", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1473
1349
|
};
|
|
1474
1350
|
IonItemOption = __decorate([
|
|
1475
1351
|
ProxyCmp({
|
|
1476
|
-
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type']
|
|
1352
|
+
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'hue', 'mode', 'rel', 'shape', 'target', 'theme', 'type']
|
|
1477
1353
|
})
|
|
1478
1354
|
], IonItemOption);
|
|
1479
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1355
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, decorators: [{
|
|
1480
1356
|
type: Component,
|
|
1481
1357
|
args: [{
|
|
1482
1358
|
selector: 'ion-item-option',
|
|
1483
1359
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1484
1360
|
template: '<ng-content></ng-content>',
|
|
1485
1361
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1486
|
-
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type'],
|
|
1487
|
-
standalone: false
|
|
1362
|
+
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'hue', 'mode', 'rel', 'shape', 'target', 'theme', 'type'],
|
|
1488
1363
|
}]
|
|
1489
|
-
}], ctorParameters: ()
|
|
1364
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1490
1365
|
let IonItemOptions = class IonItemOptions {
|
|
1491
1366
|
z;
|
|
1492
1367
|
el;
|
|
1493
|
-
ionSwipe = new EventEmitter();
|
|
1494
1368
|
constructor(c, r, z) {
|
|
1495
1369
|
this.z = z;
|
|
1496
1370
|
c.detach();
|
|
1497
1371
|
this.el = r.nativeElement;
|
|
1372
|
+
proxyOutputs(this, this.el, ['ionSwipe']);
|
|
1498
1373
|
}
|
|
1499
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1500
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1374
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1375
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOptions, selector: "ion-item-options", inputs: { mode: "mode", side: "side", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1501
1376
|
};
|
|
1502
1377
|
IonItemOptions = __decorate([
|
|
1503
1378
|
ProxyCmp({
|
|
1504
|
-
inputs: ['side']
|
|
1379
|
+
inputs: ['mode', 'side', 'theme']
|
|
1505
1380
|
})
|
|
1506
1381
|
], IonItemOptions);
|
|
1507
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, decorators: [{
|
|
1508
1383
|
type: Component,
|
|
1509
1384
|
args: [{
|
|
1510
1385
|
selector: 'ion-item-options',
|
|
1511
1386
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1512
1387
|
template: '<ng-content></ng-content>',
|
|
1513
1388
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1514
|
-
inputs: ['side'],
|
|
1515
|
-
outputs: ['ionSwipe'],
|
|
1516
|
-
standalone: false
|
|
1389
|
+
inputs: ['mode', 'side', 'theme'],
|
|
1517
1390
|
}]
|
|
1518
|
-
}], ctorParameters: ()
|
|
1519
|
-
type: Output
|
|
1520
|
-
}] } });
|
|
1391
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1521
1392
|
let IonItemSliding = class IonItemSliding {
|
|
1522
1393
|
z;
|
|
1523
1394
|
el;
|
|
1524
|
-
ionDrag = new EventEmitter();
|
|
1525
1395
|
constructor(c, r, z) {
|
|
1526
1396
|
this.z = z;
|
|
1527
1397
|
c.detach();
|
|
1528
1398
|
this.el = r.nativeElement;
|
|
1399
|
+
proxyOutputs(this, this.el, ['ionDrag']);
|
|
1529
1400
|
}
|
|
1530
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1531
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1401
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1402
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemSliding, selector: "ion-item-sliding", inputs: { disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1532
1403
|
};
|
|
1533
1404
|
IonItemSliding = __decorate([
|
|
1534
1405
|
ProxyCmp({
|
|
1535
|
-
inputs: ['disabled'],
|
|
1406
|
+
inputs: ['disabled', 'mode', 'theme'],
|
|
1536
1407
|
methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
|
|
1537
1408
|
})
|
|
1538
1409
|
], IonItemSliding);
|
|
1539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, decorators: [{
|
|
1540
1411
|
type: Component,
|
|
1541
1412
|
args: [{
|
|
1542
1413
|
selector: 'ion-item-sliding',
|
|
1543
1414
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1544
1415
|
template: '<ng-content></ng-content>',
|
|
1545
1416
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1546
|
-
inputs: ['disabled'],
|
|
1547
|
-
outputs: ['ionDrag'],
|
|
1548
|
-
standalone: false
|
|
1417
|
+
inputs: ['disabled', 'mode', 'theme'],
|
|
1549
1418
|
}]
|
|
1550
|
-
}], ctorParameters: ()
|
|
1551
|
-
type: Output
|
|
1552
|
-
}] } });
|
|
1419
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1553
1420
|
let IonLabel = class IonLabel {
|
|
1554
1421
|
z;
|
|
1555
1422
|
el;
|
|
@@ -1558,25 +1425,24 @@ let IonLabel = class IonLabel {
|
|
|
1558
1425
|
c.detach();
|
|
1559
1426
|
this.el = r.nativeElement;
|
|
1560
1427
|
}
|
|
1561
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1562
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1428
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1429
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLabel, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1563
1430
|
};
|
|
1564
1431
|
IonLabel = __decorate([
|
|
1565
1432
|
ProxyCmp({
|
|
1566
|
-
inputs: ['color', 'mode', 'position']
|
|
1433
|
+
inputs: ['color', 'mode', 'position', 'theme']
|
|
1567
1434
|
})
|
|
1568
1435
|
], IonLabel);
|
|
1569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, decorators: [{
|
|
1570
1437
|
type: Component,
|
|
1571
1438
|
args: [{
|
|
1572
1439
|
selector: 'ion-label',
|
|
1573
1440
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1574
1441
|
template: '<ng-content></ng-content>',
|
|
1575
1442
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1576
|
-
inputs: ['color', 'mode', 'position'],
|
|
1577
|
-
standalone: false
|
|
1443
|
+
inputs: ['color', 'mode', 'position', 'theme'],
|
|
1578
1444
|
}]
|
|
1579
|
-
}], ctorParameters: ()
|
|
1445
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1580
1446
|
let IonList = class IonList {
|
|
1581
1447
|
z;
|
|
1582
1448
|
el;
|
|
@@ -1585,26 +1451,25 @@ let IonList = class IonList {
|
|
|
1585
1451
|
c.detach();
|
|
1586
1452
|
this.el = r.nativeElement;
|
|
1587
1453
|
}
|
|
1588
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1589
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1454
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1455
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonList, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode", shape: "shape", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1590
1456
|
};
|
|
1591
1457
|
IonList = __decorate([
|
|
1592
1458
|
ProxyCmp({
|
|
1593
|
-
inputs: ['inset', 'lines', 'mode'],
|
|
1459
|
+
inputs: ['inset', 'lines', 'mode', 'shape', 'theme'],
|
|
1594
1460
|
methods: ['closeSlidingItems']
|
|
1595
1461
|
})
|
|
1596
1462
|
], IonList);
|
|
1597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, decorators: [{
|
|
1598
1464
|
type: Component,
|
|
1599
1465
|
args: [{
|
|
1600
1466
|
selector: 'ion-list',
|
|
1601
1467
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1602
1468
|
template: '<ng-content></ng-content>',
|
|
1603
1469
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1604
|
-
inputs: ['inset', 'lines', 'mode'],
|
|
1605
|
-
standalone: false
|
|
1470
|
+
inputs: ['inset', 'lines', 'mode', 'shape', 'theme'],
|
|
1606
1471
|
}]
|
|
1607
|
-
}], ctorParameters: ()
|
|
1472
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1608
1473
|
let IonListHeader = class IonListHeader {
|
|
1609
1474
|
z;
|
|
1610
1475
|
el;
|
|
@@ -1613,119 +1478,80 @@ let IonListHeader = class IonListHeader {
|
|
|
1613
1478
|
c.detach();
|
|
1614
1479
|
this.el = r.nativeElement;
|
|
1615
1480
|
}
|
|
1616
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1617
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1481
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1482
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonListHeader, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1618
1483
|
};
|
|
1619
1484
|
IonListHeader = __decorate([
|
|
1620
1485
|
ProxyCmp({
|
|
1621
|
-
inputs: ['color', 'lines', 'mode']
|
|
1486
|
+
inputs: ['color', 'lines', 'mode', 'theme']
|
|
1622
1487
|
})
|
|
1623
1488
|
], IonListHeader);
|
|
1624
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, decorators: [{
|
|
1625
1490
|
type: Component,
|
|
1626
1491
|
args: [{
|
|
1627
1492
|
selector: 'ion-list-header',
|
|
1628
1493
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1629
1494
|
template: '<ng-content></ng-content>',
|
|
1630
1495
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1631
|
-
inputs: ['color', 'lines', 'mode'],
|
|
1632
|
-
standalone: false
|
|
1496
|
+
inputs: ['color', 'lines', 'mode', 'theme'],
|
|
1633
1497
|
}]
|
|
1634
|
-
}], ctorParameters: ()
|
|
1498
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1635
1499
|
let IonLoading = class IonLoading {
|
|
1636
1500
|
z;
|
|
1637
1501
|
el;
|
|
1638
|
-
ionLoadingDidPresent = new EventEmitter();
|
|
1639
|
-
ionLoadingWillPresent = new EventEmitter();
|
|
1640
|
-
ionLoadingWillDismiss = new EventEmitter();
|
|
1641
|
-
ionLoadingDidDismiss = new EventEmitter();
|
|
1642
|
-
didPresent = new EventEmitter();
|
|
1643
|
-
willPresent = new EventEmitter();
|
|
1644
|
-
willDismiss = new EventEmitter();
|
|
1645
|
-
didDismiss = new EventEmitter();
|
|
1646
1502
|
constructor(c, r, z) {
|
|
1647
1503
|
this.z = z;
|
|
1648
1504
|
c.detach();
|
|
1649
1505
|
this.el = r.nativeElement;
|
|
1506
|
+
proxyOutputs(this, this.el, ['ionLoadingDidPresent', 'ionLoadingWillPresent', 'ionLoadingWillDismiss', 'ionLoadingDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
1650
1507
|
}
|
|
1651
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1652
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1508
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1509
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLoading, selector: "ion-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", showBackdrop: "showBackdrop", spinner: "spinner", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1653
1510
|
};
|
|
1654
1511
|
IonLoading = __decorate([
|
|
1655
1512
|
ProxyCmp({
|
|
1656
|
-
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
|
|
1513
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'theme', 'translucent', 'trigger'],
|
|
1657
1514
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1658
1515
|
})
|
|
1659
1516
|
], IonLoading);
|
|
1660
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1517
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, decorators: [{
|
|
1661
1518
|
type: Component,
|
|
1662
1519
|
args: [{
|
|
1663
1520
|
selector: 'ion-loading',
|
|
1664
1521
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1665
1522
|
template: '<ng-content></ng-content>',
|
|
1666
1523
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1667
|
-
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
}]
|
|
1671
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionLoadingDidPresent: [{
|
|
1672
|
-
type: Output
|
|
1673
|
-
}], ionLoadingWillPresent: [{
|
|
1674
|
-
type: Output
|
|
1675
|
-
}], ionLoadingWillDismiss: [{
|
|
1676
|
-
type: Output
|
|
1677
|
-
}], ionLoadingDidDismiss: [{
|
|
1678
|
-
type: Output
|
|
1679
|
-
}], didPresent: [{
|
|
1680
|
-
type: Output
|
|
1681
|
-
}], willPresent: [{
|
|
1682
|
-
type: Output
|
|
1683
|
-
}], willDismiss: [{
|
|
1684
|
-
type: Output
|
|
1685
|
-
}], didDismiss: [{
|
|
1686
|
-
type: Output
|
|
1687
|
-
}] } });
|
|
1524
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'theme', 'translucent', 'trigger'],
|
|
1525
|
+
}]
|
|
1526
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1688
1527
|
let IonMenu = class IonMenu {
|
|
1689
1528
|
z;
|
|
1690
1529
|
el;
|
|
1691
|
-
ionWillOpen = new EventEmitter();
|
|
1692
|
-
ionWillClose = new EventEmitter();
|
|
1693
|
-
ionDidOpen = new EventEmitter();
|
|
1694
|
-
ionDidClose = new EventEmitter();
|
|
1695
1530
|
constructor(c, r, z) {
|
|
1696
1531
|
this.z = z;
|
|
1697
1532
|
c.detach();
|
|
1698
1533
|
this.el = r.nativeElement;
|
|
1534
|
+
proxyOutputs(this, this.el, ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose']);
|
|
1699
1535
|
}
|
|
1700
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1701
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1536
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1537
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenu, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId", mode: "mode", side: "side", swipeGesture: "swipeGesture", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1702
1538
|
};
|
|
1703
1539
|
IonMenu = __decorate([
|
|
1704
1540
|
ProxyCmp({
|
|
1705
|
-
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
|
|
1541
|
+
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'mode', 'side', 'swipeGesture', 'theme', 'type'],
|
|
1706
1542
|
methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
|
|
1707
1543
|
})
|
|
1708
1544
|
], IonMenu);
|
|
1709
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, decorators: [{
|
|
1710
1546
|
type: Component,
|
|
1711
1547
|
args: [{
|
|
1712
1548
|
selector: 'ion-menu',
|
|
1713
1549
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1714
1550
|
template: '<ng-content></ng-content>',
|
|
1715
1551
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1716
|
-
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
|
|
1717
|
-
outputs: ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose'],
|
|
1718
|
-
standalone: false
|
|
1552
|
+
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'mode', 'side', 'swipeGesture', 'theme', 'type'],
|
|
1719
1553
|
}]
|
|
1720
|
-
}], ctorParameters: ()
|
|
1721
|
-
type: Output
|
|
1722
|
-
}], ionWillClose: [{
|
|
1723
|
-
type: Output
|
|
1724
|
-
}], ionDidOpen: [{
|
|
1725
|
-
type: Output
|
|
1726
|
-
}], ionDidClose: [{
|
|
1727
|
-
type: Output
|
|
1728
|
-
}] } });
|
|
1554
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1729
1555
|
let IonMenuButton = class IonMenuButton {
|
|
1730
1556
|
z;
|
|
1731
1557
|
el;
|
|
@@ -1734,25 +1560,24 @@ let IonMenuButton = class IonMenuButton {
|
|
|
1734
1560
|
c.detach();
|
|
1735
1561
|
this.el = r.nativeElement;
|
|
1736
1562
|
}
|
|
1737
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1738
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1563
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1564
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuButton, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1739
1565
|
};
|
|
1740
1566
|
IonMenuButton = __decorate([
|
|
1741
1567
|
ProxyCmp({
|
|
1742
|
-
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type']
|
|
1568
|
+
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'theme', 'type']
|
|
1743
1569
|
})
|
|
1744
1570
|
], IonMenuButton);
|
|
1745
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1571
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, decorators: [{
|
|
1746
1572
|
type: Component,
|
|
1747
1573
|
args: [{
|
|
1748
1574
|
selector: 'ion-menu-button',
|
|
1749
1575
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1750
1576
|
template: '<ng-content></ng-content>',
|
|
1751
1577
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1752
|
-
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type'],
|
|
1753
|
-
standalone: false
|
|
1578
|
+
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'theme', 'type'],
|
|
1754
1579
|
}]
|
|
1755
|
-
}], ctorParameters: ()
|
|
1580
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1756
1581
|
let IonMenuToggle = class IonMenuToggle {
|
|
1757
1582
|
z;
|
|
1758
1583
|
el;
|
|
@@ -1761,25 +1586,24 @@ let IonMenuToggle = class IonMenuToggle {
|
|
|
1761
1586
|
c.detach();
|
|
1762
1587
|
this.el = r.nativeElement;
|
|
1763
1588
|
}
|
|
1764
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1765
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1589
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1590
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuToggle, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1766
1591
|
};
|
|
1767
1592
|
IonMenuToggle = __decorate([
|
|
1768
1593
|
ProxyCmp({
|
|
1769
|
-
inputs: ['autoHide', 'menu']
|
|
1594
|
+
inputs: ['autoHide', 'menu', 'mode', 'theme']
|
|
1770
1595
|
})
|
|
1771
1596
|
], IonMenuToggle);
|
|
1772
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, decorators: [{
|
|
1773
1598
|
type: Component,
|
|
1774
1599
|
args: [{
|
|
1775
1600
|
selector: 'ion-menu-toggle',
|
|
1776
1601
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1777
1602
|
template: '<ng-content></ng-content>',
|
|
1778
1603
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1779
|
-
inputs: ['autoHide', 'menu'],
|
|
1780
|
-
standalone: false
|
|
1604
|
+
inputs: ['autoHide', 'menu', 'mode', 'theme'],
|
|
1781
1605
|
}]
|
|
1782
|
-
}], ctorParameters: ()
|
|
1606
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1783
1607
|
let IonNavLink = class IonNavLink {
|
|
1784
1608
|
z;
|
|
1785
1609
|
el;
|
|
@@ -1788,25 +1612,24 @@ let IonNavLink = class IonNavLink {
|
|
|
1788
1612
|
c.detach();
|
|
1789
1613
|
this.el = r.nativeElement;
|
|
1790
1614
|
}
|
|
1791
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1792
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1615
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1616
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNavLink, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps", mode: "mode", routerAnimation: "routerAnimation", routerDirection: "routerDirection", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1793
1617
|
};
|
|
1794
1618
|
IonNavLink = __decorate([
|
|
1795
1619
|
ProxyCmp({
|
|
1796
|
-
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection']
|
|
1620
|
+
inputs: ['component', 'componentProps', 'mode', 'routerAnimation', 'routerDirection', 'theme']
|
|
1797
1621
|
})
|
|
1798
1622
|
], IonNavLink);
|
|
1799
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, decorators: [{
|
|
1800
1624
|
type: Component,
|
|
1801
1625
|
args: [{
|
|
1802
1626
|
selector: 'ion-nav-link',
|
|
1803
1627
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1804
1628
|
template: '<ng-content></ng-content>',
|
|
1805
1629
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1806
|
-
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection'],
|
|
1807
|
-
standalone: false
|
|
1630
|
+
inputs: ['component', 'componentProps', 'mode', 'routerAnimation', 'routerDirection', 'theme'],
|
|
1808
1631
|
}]
|
|
1809
|
-
}], ctorParameters: ()
|
|
1632
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1810
1633
|
let IonNote = class IonNote {
|
|
1811
1634
|
z;
|
|
1812
1635
|
el;
|
|
@@ -1815,25 +1638,24 @@ let IonNote = class IonNote {
|
|
|
1815
1638
|
c.detach();
|
|
1816
1639
|
this.el = r.nativeElement;
|
|
1817
1640
|
}
|
|
1818
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1819
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1641
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1642
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNote, selector: "ion-note", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1820
1643
|
};
|
|
1821
1644
|
IonNote = __decorate([
|
|
1822
1645
|
ProxyCmp({
|
|
1823
|
-
inputs: ['color', 'mode']
|
|
1646
|
+
inputs: ['color', 'mode', 'theme']
|
|
1824
1647
|
})
|
|
1825
1648
|
], IonNote);
|
|
1826
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, decorators: [{
|
|
1827
1650
|
type: Component,
|
|
1828
1651
|
args: [{
|
|
1829
1652
|
selector: 'ion-note',
|
|
1830
1653
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1831
1654
|
template: '<ng-content></ng-content>',
|
|
1832
1655
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1833
|
-
inputs: ['color', 'mode'],
|
|
1834
|
-
standalone: false
|
|
1656
|
+
inputs: ['color', 'mode', 'theme'],
|
|
1835
1657
|
}]
|
|
1836
|
-
}], ctorParameters: ()
|
|
1658
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1837
1659
|
let IonPicker = class IonPicker {
|
|
1838
1660
|
z;
|
|
1839
1661
|
el;
|
|
@@ -1842,57 +1664,52 @@ let IonPicker = class IonPicker {
|
|
|
1842
1664
|
c.detach();
|
|
1843
1665
|
this.el = r.nativeElement;
|
|
1844
1666
|
}
|
|
1845
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1846
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1667
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1668
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPicker, selector: "ion-picker", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1847
1669
|
};
|
|
1848
1670
|
IonPicker = __decorate([
|
|
1849
1671
|
ProxyCmp({
|
|
1850
|
-
inputs: ['mode']
|
|
1672
|
+
inputs: ['mode', 'theme']
|
|
1851
1673
|
})
|
|
1852
1674
|
], IonPicker);
|
|
1853
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1675
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, decorators: [{
|
|
1854
1676
|
type: Component,
|
|
1855
1677
|
args: [{
|
|
1856
1678
|
selector: 'ion-picker',
|
|
1857
1679
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1858
1680
|
template: '<ng-content></ng-content>',
|
|
1859
1681
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1860
|
-
inputs: ['mode'],
|
|
1861
|
-
standalone: false
|
|
1682
|
+
inputs: ['mode', 'theme'],
|
|
1862
1683
|
}]
|
|
1863
|
-
}], ctorParameters: ()
|
|
1684
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1864
1685
|
let IonPickerColumn = class IonPickerColumn {
|
|
1865
1686
|
z;
|
|
1866
1687
|
el;
|
|
1867
|
-
ionChange = new EventEmitter();
|
|
1868
1688
|
constructor(c, r, z) {
|
|
1869
1689
|
this.z = z;
|
|
1870
1690
|
c.detach();
|
|
1871
1691
|
this.el = r.nativeElement;
|
|
1692
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
1872
1693
|
}
|
|
1873
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1874
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1694
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1695
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumn, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1875
1696
|
};
|
|
1876
1697
|
IonPickerColumn = __decorate([
|
|
1877
1698
|
ProxyCmp({
|
|
1878
|
-
inputs: ['color', 'disabled', 'mode', 'value'],
|
|
1699
|
+
inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
|
|
1879
1700
|
methods: ['setFocus']
|
|
1880
1701
|
})
|
|
1881
1702
|
], IonPickerColumn);
|
|
1882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, decorators: [{
|
|
1883
1704
|
type: Component,
|
|
1884
1705
|
args: [{
|
|
1885
1706
|
selector: 'ion-picker-column',
|
|
1886
1707
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1887
1708
|
template: '<ng-content></ng-content>',
|
|
1888
1709
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1889
|
-
inputs: ['color', 'disabled', 'mode', 'value'],
|
|
1890
|
-
outputs: ['ionChange'],
|
|
1891
|
-
standalone: false
|
|
1710
|
+
inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
|
|
1892
1711
|
}]
|
|
1893
|
-
}], ctorParameters: ()
|
|
1894
|
-
type: Output
|
|
1895
|
-
}] } });
|
|
1712
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1896
1713
|
let IonPickerColumnOption = class IonPickerColumnOption {
|
|
1897
1714
|
z;
|
|
1898
1715
|
el;
|
|
@@ -1901,25 +1718,52 @@ let IonPickerColumnOption = class IonPickerColumnOption {
|
|
|
1901
1718
|
c.detach();
|
|
1902
1719
|
this.el = r.nativeElement;
|
|
1903
1720
|
}
|
|
1904
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1905
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1721
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1722
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumnOption, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1906
1723
|
};
|
|
1907
1724
|
IonPickerColumnOption = __decorate([
|
|
1908
1725
|
ProxyCmp({
|
|
1909
|
-
inputs: ['color', 'disabled', 'value']
|
|
1726
|
+
inputs: ['color', 'disabled', 'mode', 'theme', 'value']
|
|
1910
1727
|
})
|
|
1911
1728
|
], IonPickerColumnOption);
|
|
1912
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1729
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, decorators: [{
|
|
1913
1730
|
type: Component,
|
|
1914
1731
|
args: [{
|
|
1915
1732
|
selector: 'ion-picker-column-option',
|
|
1916
1733
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1917
1734
|
template: '<ng-content></ng-content>',
|
|
1918
1735
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1919
|
-
inputs: ['color', 'disabled', 'value'],
|
|
1920
|
-
standalone: false
|
|
1736
|
+
inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
|
|
1921
1737
|
}]
|
|
1922
|
-
}], ctorParameters: ()
|
|
1738
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1739
|
+
let IonPickerLegacy = class IonPickerLegacy {
|
|
1740
|
+
z;
|
|
1741
|
+
el;
|
|
1742
|
+
constructor(c, r, z) {
|
|
1743
|
+
this.z = z;
|
|
1744
|
+
c.detach();
|
|
1745
|
+
this.el = r.nativeElement;
|
|
1746
|
+
proxyOutputs(this, this.el, ['ionPickerDidPresent', 'ionPickerWillPresent', 'ionPickerWillDismiss', 'ionPickerDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
1747
|
+
}
|
|
1748
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1749
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerLegacy, selector: "ion-picker-legacy", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", columns: "columns", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", showBackdrop: "showBackdrop", theme: "theme", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1750
|
+
};
|
|
1751
|
+
IonPickerLegacy = __decorate([
|
|
1752
|
+
ProxyCmp({
|
|
1753
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'theme', 'trigger'],
|
|
1754
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss', 'getColumn']
|
|
1755
|
+
})
|
|
1756
|
+
], IonPickerLegacy);
|
|
1757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, decorators: [{
|
|
1758
|
+
type: Component,
|
|
1759
|
+
args: [{
|
|
1760
|
+
selector: 'ion-picker-legacy',
|
|
1761
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1762
|
+
template: '<ng-content></ng-content>',
|
|
1763
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1764
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'theme', 'trigger'],
|
|
1765
|
+
}]
|
|
1766
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1923
1767
|
let IonProgressBar = class IonProgressBar {
|
|
1924
1768
|
z;
|
|
1925
1769
|
el;
|
|
@@ -1928,180 +1772,133 @@ let IonProgressBar = class IonProgressBar {
|
|
|
1928
1772
|
c.detach();
|
|
1929
1773
|
this.el = r.nativeElement;
|
|
1930
1774
|
}
|
|
1931
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1932
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1775
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1776
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonProgressBar, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed", shape: "shape", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1933
1777
|
};
|
|
1934
1778
|
IonProgressBar = __decorate([
|
|
1935
1779
|
ProxyCmp({
|
|
1936
|
-
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value']
|
|
1780
|
+
inputs: ['buffer', 'color', 'mode', 'reversed', 'shape', 'theme', 'type', 'value']
|
|
1937
1781
|
})
|
|
1938
1782
|
], IonProgressBar);
|
|
1939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, decorators: [{
|
|
1940
1784
|
type: Component,
|
|
1941
1785
|
args: [{
|
|
1942
1786
|
selector: 'ion-progress-bar',
|
|
1943
1787
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1944
1788
|
template: '<ng-content></ng-content>',
|
|
1945
1789
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1946
|
-
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value'],
|
|
1947
|
-
standalone: false
|
|
1790
|
+
inputs: ['buffer', 'color', 'mode', 'reversed', 'shape', 'theme', 'type', 'value'],
|
|
1948
1791
|
}]
|
|
1949
|
-
}], ctorParameters: ()
|
|
1792
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1950
1793
|
let IonRadio = class IonRadio {
|
|
1951
1794
|
z;
|
|
1952
1795
|
el;
|
|
1953
|
-
ionFocus = new EventEmitter();
|
|
1954
|
-
ionBlur = new EventEmitter();
|
|
1955
1796
|
constructor(c, r, z) {
|
|
1956
1797
|
this.z = z;
|
|
1957
1798
|
c.detach();
|
|
1958
1799
|
this.el = r.nativeElement;
|
|
1800
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
1959
1801
|
}
|
|
1960
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1961
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1802
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1803
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadio, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1962
1804
|
};
|
|
1963
1805
|
IonRadio = __decorate([
|
|
1964
1806
|
ProxyCmp({
|
|
1965
|
-
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value']
|
|
1807
|
+
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'theme', 'value']
|
|
1966
1808
|
})
|
|
1967
1809
|
], IonRadio);
|
|
1968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, decorators: [{
|
|
1969
1811
|
type: Component,
|
|
1970
1812
|
args: [{
|
|
1971
1813
|
selector: 'ion-radio',
|
|
1972
1814
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1973
1815
|
template: '<ng-content></ng-content>',
|
|
1974
1816
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1975
|
-
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value'],
|
|
1976
|
-
outputs: ['ionFocus', 'ionBlur'],
|
|
1977
|
-
standalone: false
|
|
1817
|
+
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'theme', 'value'],
|
|
1978
1818
|
}]
|
|
1979
|
-
}], ctorParameters: ()
|
|
1980
|
-
type: Output
|
|
1981
|
-
}], ionBlur: [{
|
|
1982
|
-
type: Output
|
|
1983
|
-
}] } });
|
|
1819
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1984
1820
|
let IonRadioGroup = class IonRadioGroup {
|
|
1985
1821
|
z;
|
|
1986
1822
|
el;
|
|
1987
|
-
ionChange = new EventEmitter();
|
|
1988
1823
|
constructor(c, r, z) {
|
|
1989
1824
|
this.z = z;
|
|
1990
1825
|
c.detach();
|
|
1991
1826
|
this.el = r.nativeElement;
|
|
1827
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
1992
1828
|
}
|
|
1993
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1994
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1829
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1830
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadioGroup, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", errorText: "errorText", helperText: "helperText", mode: "mode", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1995
1831
|
};
|
|
1996
1832
|
IonRadioGroup = __decorate([
|
|
1997
1833
|
ProxyCmp({
|
|
1998
|
-
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'name', 'value']
|
|
1834
|
+
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'mode', 'name', 'theme', 'value']
|
|
1999
1835
|
})
|
|
2000
1836
|
], IonRadioGroup);
|
|
2001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, decorators: [{
|
|
2002
1838
|
type: Component,
|
|
2003
1839
|
args: [{
|
|
2004
1840
|
selector: 'ion-radio-group',
|
|
2005
1841
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2006
1842
|
template: '<ng-content></ng-content>',
|
|
2007
1843
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2008
|
-
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'name', 'value'],
|
|
2009
|
-
outputs: ['ionChange'],
|
|
2010
|
-
standalone: false
|
|
1844
|
+
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'mode', 'name', 'theme', 'value'],
|
|
2011
1845
|
}]
|
|
2012
|
-
}], ctorParameters: ()
|
|
2013
|
-
type: Output
|
|
2014
|
-
}] } });
|
|
1846
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2015
1847
|
let IonRange = class IonRange {
|
|
2016
1848
|
z;
|
|
2017
1849
|
el;
|
|
2018
|
-
ionChange = new EventEmitter();
|
|
2019
|
-
ionInput = new EventEmitter();
|
|
2020
|
-
ionFocus = new EventEmitter();
|
|
2021
|
-
ionBlur = new EventEmitter();
|
|
2022
|
-
ionKnobMoveStart = new EventEmitter();
|
|
2023
|
-
ionKnobMoveEnd = new EventEmitter();
|
|
2024
1850
|
constructor(c, r, z) {
|
|
2025
1851
|
this.z = z;
|
|
2026
1852
|
c.detach();
|
|
2027
1853
|
this.el = r.nativeElement;
|
|
1854
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionInput', 'ionFocus', 'ionBlur', 'ionKnobMoveStart', 'ionKnobMoveEnd']);
|
|
2028
1855
|
}
|
|
2029
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2030
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1856
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1857
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRange, selector: "ion-range", inputs: { activeBarStart: "activeBarStart", color: "color", debounce: "debounce", disabled: "disabled", dualKnobs: "dualKnobs", label: "label", labelPlacement: "labelPlacement", max: "max", min: "min", mode: "mode", name: "name", pin: "pin", pinFormatter: "pinFormatter", snaps: "snaps", step: "step", theme: "theme", ticks: "ticks", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2031
1858
|
};
|
|
2032
1859
|
IonRange = __decorate([
|
|
2033
1860
|
ProxyCmp({
|
|
2034
|
-
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'ticks', 'value']
|
|
1861
|
+
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'theme', 'ticks', 'value']
|
|
2035
1862
|
})
|
|
2036
1863
|
], IonRange);
|
|
2037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRange, decorators: [{
|
|
2038
1865
|
type: Component,
|
|
2039
1866
|
args: [{
|
|
2040
1867
|
selector: 'ion-range',
|
|
2041
1868
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2042
1869
|
template: '<ng-content></ng-content>',
|
|
2043
1870
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2044
|
-
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'ticks', 'value'],
|
|
2045
|
-
outputs: ['ionChange', 'ionInput', 'ionFocus', 'ionBlur', 'ionKnobMoveStart', 'ionKnobMoveEnd'],
|
|
2046
|
-
standalone: false
|
|
1871
|
+
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'theme', 'ticks', 'value'],
|
|
2047
1872
|
}]
|
|
2048
|
-
}], ctorParameters: ()
|
|
2049
|
-
type: Output
|
|
2050
|
-
}], ionInput: [{
|
|
2051
|
-
type: Output
|
|
2052
|
-
}], ionFocus: [{
|
|
2053
|
-
type: Output
|
|
2054
|
-
}], ionBlur: [{
|
|
2055
|
-
type: Output
|
|
2056
|
-
}], ionKnobMoveStart: [{
|
|
2057
|
-
type: Output
|
|
2058
|
-
}], ionKnobMoveEnd: [{
|
|
2059
|
-
type: Output
|
|
2060
|
-
}] } });
|
|
1873
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2061
1874
|
let IonRefresher = class IonRefresher {
|
|
2062
1875
|
z;
|
|
2063
1876
|
el;
|
|
2064
|
-
ionRefresh = new EventEmitter();
|
|
2065
|
-
ionPull = new EventEmitter();
|
|
2066
|
-
ionStart = new EventEmitter();
|
|
2067
|
-
ionPullStart = new EventEmitter();
|
|
2068
|
-
ionPullEnd = new EventEmitter();
|
|
2069
1877
|
constructor(c, r, z) {
|
|
2070
1878
|
this.z = z;
|
|
2071
1879
|
c.detach();
|
|
2072
1880
|
this.el = r.nativeElement;
|
|
1881
|
+
proxyOutputs(this, this.el, ['ionRefresh', 'ionPull', 'ionStart', 'ionPullStart', 'ionPullEnd']);
|
|
2073
1882
|
}
|
|
2074
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2075
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1883
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1884
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresher, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2076
1885
|
};
|
|
2077
1886
|
IonRefresher = __decorate([
|
|
2078
1887
|
ProxyCmp({
|
|
2079
|
-
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
|
|
1888
|
+
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration', 'theme'],
|
|
2080
1889
|
methods: ['complete', 'cancel', 'getProgress']
|
|
2081
1890
|
})
|
|
2082
1891
|
], IonRefresher);
|
|
2083
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1892
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, decorators: [{
|
|
2084
1893
|
type: Component,
|
|
2085
1894
|
args: [{
|
|
2086
1895
|
selector: 'ion-refresher',
|
|
2087
1896
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2088
1897
|
template: '<ng-content></ng-content>',
|
|
2089
1898
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2090
|
-
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
|
|
2091
|
-
outputs: ['ionRefresh', 'ionPull', 'ionStart', 'ionPullStart', 'ionPullEnd'],
|
|
2092
|
-
standalone: false
|
|
1899
|
+
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration', 'theme'],
|
|
2093
1900
|
}]
|
|
2094
|
-
}], ctorParameters: ()
|
|
2095
|
-
type: Output
|
|
2096
|
-
}], ionPull: [{
|
|
2097
|
-
type: Output
|
|
2098
|
-
}], ionStart: [{
|
|
2099
|
-
type: Output
|
|
2100
|
-
}], ionPullStart: [{
|
|
2101
|
-
type: Output
|
|
2102
|
-
}], ionPullEnd: [{
|
|
2103
|
-
type: Output
|
|
2104
|
-
}] } });
|
|
1901
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2105
1902
|
let IonRefresherContent = class IonRefresherContent {
|
|
2106
1903
|
z;
|
|
2107
1904
|
el;
|
|
@@ -2110,25 +1907,24 @@ let IonRefresherContent = class IonRefresherContent {
|
|
|
2110
1907
|
c.detach();
|
|
2111
1908
|
this.el = r.nativeElement;
|
|
2112
1909
|
}
|
|
2113
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2114
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1910
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1911
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresherContent, selector: "ion-refresher-content", inputs: { mode: "mode", pullingIcon: "pullingIcon", pullingText: "pullingText", refreshingSpinner: "refreshingSpinner", refreshingText: "refreshingText", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2115
1912
|
};
|
|
2116
1913
|
IonRefresherContent = __decorate([
|
|
2117
1914
|
ProxyCmp({
|
|
2118
|
-
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText']
|
|
1915
|
+
inputs: ['mode', 'pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText', 'theme']
|
|
2119
1916
|
})
|
|
2120
1917
|
], IonRefresherContent);
|
|
2121
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1918
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, decorators: [{
|
|
2122
1919
|
type: Component,
|
|
2123
1920
|
args: [{
|
|
2124
1921
|
selector: 'ion-refresher-content',
|
|
2125
1922
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2126
1923
|
template: '<ng-content></ng-content>',
|
|
2127
1924
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2128
|
-
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText'],
|
|
2129
|
-
standalone: false
|
|
1925
|
+
inputs: ['mode', 'pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText', 'theme'],
|
|
2130
1926
|
}]
|
|
2131
|
-
}], ctorParameters: ()
|
|
1927
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2132
1928
|
let IonReorder = class IonReorder {
|
|
2133
1929
|
z;
|
|
2134
1930
|
el;
|
|
@@ -2137,64 +1933,52 @@ let IonReorder = class IonReorder {
|
|
|
2137
1933
|
c.detach();
|
|
2138
1934
|
this.el = r.nativeElement;
|
|
2139
1935
|
}
|
|
2140
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2141
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1936
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1937
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorder, selector: "ion-reorder", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2142
1938
|
};
|
|
2143
1939
|
IonReorder = __decorate([
|
|
2144
|
-
ProxyCmp({
|
|
1940
|
+
ProxyCmp({
|
|
1941
|
+
inputs: ['mode', 'theme']
|
|
1942
|
+
})
|
|
2145
1943
|
], IonReorder);
|
|
2146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1944
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, decorators: [{
|
|
2147
1945
|
type: Component,
|
|
2148
1946
|
args: [{
|
|
2149
1947
|
selector: 'ion-reorder',
|
|
2150
1948
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2151
1949
|
template: '<ng-content></ng-content>',
|
|
2152
1950
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2153
|
-
inputs: [],
|
|
2154
|
-
standalone: false
|
|
1951
|
+
inputs: ['mode', 'theme'],
|
|
2155
1952
|
}]
|
|
2156
|
-
}], ctorParameters: ()
|
|
1953
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2157
1954
|
let IonReorderGroup = class IonReorderGroup {
|
|
2158
1955
|
z;
|
|
2159
1956
|
el;
|
|
2160
|
-
ionItemReorder = new EventEmitter();
|
|
2161
|
-
ionReorderStart = new EventEmitter();
|
|
2162
|
-
ionReorderMove = new EventEmitter();
|
|
2163
|
-
ionReorderEnd = new EventEmitter();
|
|
2164
1957
|
constructor(c, r, z) {
|
|
2165
1958
|
this.z = z;
|
|
2166
1959
|
c.detach();
|
|
2167
1960
|
this.el = r.nativeElement;
|
|
1961
|
+
proxyOutputs(this, this.el, ['ionItemReorder', 'ionReorderStart', 'ionReorderMove', 'ionReorderEnd']);
|
|
2168
1962
|
}
|
|
2169
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2170
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1963
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1964
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorderGroup, selector: "ion-reorder-group", inputs: { disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2171
1965
|
};
|
|
2172
1966
|
IonReorderGroup = __decorate([
|
|
2173
1967
|
ProxyCmp({
|
|
2174
|
-
inputs: ['disabled'],
|
|
1968
|
+
inputs: ['disabled', 'mode', 'theme'],
|
|
2175
1969
|
methods: ['complete']
|
|
2176
1970
|
})
|
|
2177
1971
|
], IonReorderGroup);
|
|
2178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, decorators: [{
|
|
2179
1973
|
type: Component,
|
|
2180
1974
|
args: [{
|
|
2181
1975
|
selector: 'ion-reorder-group',
|
|
2182
1976
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2183
1977
|
template: '<ng-content></ng-content>',
|
|
2184
1978
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2185
|
-
inputs: ['disabled'],
|
|
2186
|
-
outputs: ['ionItemReorder', 'ionReorderStart', 'ionReorderMove', 'ionReorderEnd'],
|
|
2187
|
-
standalone: false
|
|
1979
|
+
inputs: ['disabled', 'mode', 'theme'],
|
|
2188
1980
|
}]
|
|
2189
|
-
}], ctorParameters: ()
|
|
2190
|
-
type: Output
|
|
2191
|
-
}], ionReorderStart: [{
|
|
2192
|
-
type: Output
|
|
2193
|
-
}], ionReorderMove: [{
|
|
2194
|
-
type: Output
|
|
2195
|
-
}], ionReorderEnd: [{
|
|
2196
|
-
type: Output
|
|
2197
|
-
}] } });
|
|
1981
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2198
1982
|
let IonRippleEffect = class IonRippleEffect {
|
|
2199
1983
|
z;
|
|
2200
1984
|
el;
|
|
@@ -2203,26 +1987,25 @@ let IonRippleEffect = class IonRippleEffect {
|
|
|
2203
1987
|
c.detach();
|
|
2204
1988
|
this.el = r.nativeElement;
|
|
2205
1989
|
}
|
|
2206
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2207
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1990
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1991
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRippleEffect, selector: "ion-ripple-effect", inputs: { mode: "mode", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2208
1992
|
};
|
|
2209
1993
|
IonRippleEffect = __decorate([
|
|
2210
1994
|
ProxyCmp({
|
|
2211
|
-
inputs: ['type'],
|
|
1995
|
+
inputs: ['mode', 'theme', 'type'],
|
|
2212
1996
|
methods: ['addRipple']
|
|
2213
1997
|
})
|
|
2214
1998
|
], IonRippleEffect);
|
|
2215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, decorators: [{
|
|
2216
2000
|
type: Component,
|
|
2217
2001
|
args: [{
|
|
2218
2002
|
selector: 'ion-ripple-effect',
|
|
2219
2003
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2220
2004
|
template: '<ng-content></ng-content>',
|
|
2221
2005
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2222
|
-
inputs: ['type'],
|
|
2223
|
-
standalone: false
|
|
2006
|
+
inputs: ['mode', 'theme', 'type'],
|
|
2224
2007
|
}]
|
|
2225
|
-
}], ctorParameters: ()
|
|
2008
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2226
2009
|
let IonRow = class IonRow {
|
|
2227
2010
|
z;
|
|
2228
2011
|
el;
|
|
@@ -2231,101 +2014,79 @@ let IonRow = class IonRow {
|
|
|
2231
2014
|
c.detach();
|
|
2232
2015
|
this.el = r.nativeElement;
|
|
2233
2016
|
}
|
|
2234
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2235
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2017
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2018
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRow, selector: "ion-row", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2236
2019
|
};
|
|
2237
2020
|
IonRow = __decorate([
|
|
2238
|
-
ProxyCmp({
|
|
2021
|
+
ProxyCmp({
|
|
2022
|
+
inputs: ['mode', 'theme']
|
|
2023
|
+
})
|
|
2239
2024
|
], IonRow);
|
|
2240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, decorators: [{
|
|
2241
2026
|
type: Component,
|
|
2242
2027
|
args: [{
|
|
2243
2028
|
selector: 'ion-row',
|
|
2244
2029
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2245
2030
|
template: '<ng-content></ng-content>',
|
|
2246
2031
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2247
|
-
inputs: [],
|
|
2248
|
-
standalone: false
|
|
2032
|
+
inputs: ['mode', 'theme'],
|
|
2249
2033
|
}]
|
|
2250
|
-
}], ctorParameters: ()
|
|
2034
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2251
2035
|
let IonSearchbar = class IonSearchbar {
|
|
2252
2036
|
z;
|
|
2253
2037
|
el;
|
|
2254
|
-
ionInput = new EventEmitter();
|
|
2255
|
-
ionChange = new EventEmitter();
|
|
2256
|
-
ionCancel = new EventEmitter();
|
|
2257
|
-
ionClear = new EventEmitter();
|
|
2258
|
-
ionBlur = new EventEmitter();
|
|
2259
|
-
ionFocus = new EventEmitter();
|
|
2260
2038
|
constructor(c, r, z) {
|
|
2261
2039
|
this.z = z;
|
|
2262
2040
|
c.detach();
|
|
2263
2041
|
this.el = r.nativeElement;
|
|
2042
|
+
proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionCancel', 'ionClear', 'ionBlur', 'ionFocus']);
|
|
2264
2043
|
}
|
|
2265
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2266
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2044
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSearchbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2045
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSearchbar, selector: "ion-searchbar", inputs: { animated: "animated", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", cancelButtonIcon: "cancelButtonIcon", cancelButtonText: "cancelButtonText", clearIcon: "clearIcon", color: "color", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", inputmode: "inputmode", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", searchIcon: "searchIcon", shape: "shape", showCancelButton: "showCancelButton", showClearButton: "showClearButton", size: "size", spellcheck: "spellcheck", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2267
2046
|
};
|
|
2268
2047
|
IonSearchbar = __decorate([
|
|
2269
2048
|
ProxyCmp({
|
|
2270
|
-
inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'showCancelButton', 'showClearButton', 'spellcheck', 'type', 'value'],
|
|
2049
|
+
inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'shape', 'showCancelButton', 'showClearButton', 'size', 'spellcheck', 'theme', 'type', 'value'],
|
|
2271
2050
|
methods: ['setFocus', 'getInputElement']
|
|
2272
2051
|
})
|
|
2273
2052
|
], IonSearchbar);
|
|
2274
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSearchbar, decorators: [{
|
|
2275
2054
|
type: Component,
|
|
2276
2055
|
args: [{
|
|
2277
2056
|
selector: 'ion-searchbar',
|
|
2278
2057
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2279
2058
|
template: '<ng-content></ng-content>',
|
|
2280
2059
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2281
|
-
inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'showCancelButton', 'showClearButton', 'spellcheck', 'type', 'value'],
|
|
2282
|
-
outputs: ['ionInput', 'ionChange', 'ionCancel', 'ionClear', 'ionBlur', 'ionFocus'],
|
|
2283
|
-
standalone: false
|
|
2060
|
+
inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'shape', 'showCancelButton', 'showClearButton', 'size', 'spellcheck', 'theme', 'type', 'value'],
|
|
2284
2061
|
}]
|
|
2285
|
-
}], ctorParameters: ()
|
|
2286
|
-
type: Output
|
|
2287
|
-
}], ionChange: [{
|
|
2288
|
-
type: Output
|
|
2289
|
-
}], ionCancel: [{
|
|
2290
|
-
type: Output
|
|
2291
|
-
}], ionClear: [{
|
|
2292
|
-
type: Output
|
|
2293
|
-
}], ionBlur: [{
|
|
2294
|
-
type: Output
|
|
2295
|
-
}], ionFocus: [{
|
|
2296
|
-
type: Output
|
|
2297
|
-
}] } });
|
|
2062
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2298
2063
|
let IonSegment = class IonSegment {
|
|
2299
2064
|
z;
|
|
2300
2065
|
el;
|
|
2301
|
-
ionChange = new EventEmitter();
|
|
2302
2066
|
constructor(c, r, z) {
|
|
2303
2067
|
this.z = z;
|
|
2304
2068
|
c.detach();
|
|
2305
2069
|
this.el = r.nativeElement;
|
|
2070
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
2306
2071
|
}
|
|
2307
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2308
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2072
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2073
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegment, selector: "ion-segment", inputs: { color: "color", disabled: "disabled", mode: "mode", scrollable: "scrollable", selectOnFocus: "selectOnFocus", swipeGesture: "swipeGesture", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2309
2074
|
};
|
|
2310
2075
|
IonSegment = __decorate([
|
|
2311
2076
|
ProxyCmp({
|
|
2312
|
-
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'value']
|
|
2077
|
+
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'theme', 'value']
|
|
2313
2078
|
})
|
|
2314
2079
|
], IonSegment);
|
|
2315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegment, decorators: [{
|
|
2316
2081
|
type: Component,
|
|
2317
2082
|
args: [{
|
|
2318
2083
|
selector: 'ion-segment',
|
|
2319
2084
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2320
2085
|
template: '<ng-content></ng-content>',
|
|
2321
2086
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2322
|
-
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'value'],
|
|
2323
|
-
outputs: ['ionChange'],
|
|
2324
|
-
standalone: false
|
|
2087
|
+
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'theme', 'value'],
|
|
2325
2088
|
}]
|
|
2326
|
-
}], ctorParameters: ()
|
|
2327
|
-
type: Output
|
|
2328
|
-
}] } });
|
|
2089
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2329
2090
|
let IonSegmentButton = class IonSegmentButton {
|
|
2330
2091
|
z;
|
|
2331
2092
|
el;
|
|
@@ -2334,25 +2095,24 @@ let IonSegmentButton = class IonSegmentButton {
|
|
|
2334
2095
|
c.detach();
|
|
2335
2096
|
this.el = r.nativeElement;
|
|
2336
2097
|
}
|
|
2337
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2338
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2098
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2099
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentButton, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2339
2100
|
};
|
|
2340
2101
|
IonSegmentButton = __decorate([
|
|
2341
2102
|
ProxyCmp({
|
|
2342
|
-
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value']
|
|
2103
|
+
inputs: ['contentId', 'disabled', 'layout', 'mode', 'theme', 'type', 'value']
|
|
2343
2104
|
})
|
|
2344
2105
|
], IonSegmentButton);
|
|
2345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, decorators: [{
|
|
2346
2107
|
type: Component,
|
|
2347
2108
|
args: [{
|
|
2348
2109
|
selector: 'ion-segment-button',
|
|
2349
2110
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2350
2111
|
template: '<ng-content></ng-content>',
|
|
2351
2112
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2352
|
-
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value'],
|
|
2353
|
-
standalone: false
|
|
2113
|
+
inputs: ['contentId', 'disabled', 'layout', 'mode', 'theme', 'type', 'value'],
|
|
2354
2114
|
}]
|
|
2355
|
-
}], ctorParameters: ()
|
|
2115
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2356
2116
|
let IonSegmentContent = class IonSegmentContent {
|
|
2357
2117
|
z;
|
|
2358
2118
|
el;
|
|
@@ -2361,13 +2121,13 @@ let IonSegmentContent = class IonSegmentContent {
|
|
|
2361
2121
|
c.detach();
|
|
2362
2122
|
this.el = r.nativeElement;
|
|
2363
2123
|
}
|
|
2364
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2365
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2124
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2125
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentContent, selector: "ion-segment-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2366
2126
|
};
|
|
2367
2127
|
IonSegmentContent = __decorate([
|
|
2368
2128
|
ProxyCmp({})
|
|
2369
2129
|
], IonSegmentContent);
|
|
2370
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentContent, decorators: [{
|
|
2371
2131
|
type: Component,
|
|
2372
2132
|
args: [{
|
|
2373
2133
|
selector: 'ion-segment-content',
|
|
@@ -2375,27 +2135,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
2375
2135
|
template: '<ng-content></ng-content>',
|
|
2376
2136
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2377
2137
|
inputs: [],
|
|
2378
|
-
standalone: false
|
|
2379
2138
|
}]
|
|
2380
|
-
}], ctorParameters: ()
|
|
2139
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2381
2140
|
let IonSegmentView = class IonSegmentView {
|
|
2382
2141
|
z;
|
|
2383
2142
|
el;
|
|
2384
|
-
ionSegmentViewScroll = new EventEmitter();
|
|
2385
2143
|
constructor(c, r, z) {
|
|
2386
2144
|
this.z = z;
|
|
2387
2145
|
c.detach();
|
|
2388
2146
|
this.el = r.nativeElement;
|
|
2147
|
+
proxyOutputs(this, this.el, ['ionSegmentViewScroll']);
|
|
2389
2148
|
}
|
|
2390
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2391
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2149
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2150
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentView, selector: "ion-segment-view", inputs: { disabled: "disabled", swipeGesture: "swipeGesture" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2392
2151
|
};
|
|
2393
2152
|
IonSegmentView = __decorate([
|
|
2394
2153
|
ProxyCmp({
|
|
2395
2154
|
inputs: ['disabled', 'swipeGesture']
|
|
2396
2155
|
})
|
|
2397
2156
|
], IonSegmentView);
|
|
2398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentView, decorators: [{
|
|
2399
2158
|
type: Component,
|
|
2400
2159
|
args: [{
|
|
2401
2160
|
selector: 'ion-segment-view',
|
|
@@ -2403,56 +2162,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
2403
2162
|
template: '<ng-content></ng-content>',
|
|
2404
2163
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2405
2164
|
inputs: ['disabled', 'swipeGesture'],
|
|
2406
|
-
outputs: ['ionSegmentViewScroll'],
|
|
2407
|
-
standalone: false
|
|
2408
2165
|
}]
|
|
2409
|
-
}], ctorParameters: ()
|
|
2410
|
-
type: Output
|
|
2411
|
-
}] } });
|
|
2166
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2412
2167
|
let IonSelect = class IonSelect {
|
|
2413
2168
|
z;
|
|
2414
2169
|
el;
|
|
2415
|
-
ionChange = new EventEmitter();
|
|
2416
|
-
ionCancel = new EventEmitter();
|
|
2417
|
-
ionDismiss = new EventEmitter();
|
|
2418
|
-
ionFocus = new EventEmitter();
|
|
2419
|
-
ionBlur = new EventEmitter();
|
|
2420
2170
|
constructor(c, r, z) {
|
|
2421
2171
|
this.z = z;
|
|
2422
2172
|
c.detach();
|
|
2423
2173
|
this.el = r.nativeElement;
|
|
2174
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionCancel', 'ionDismiss', 'ionFocus', 'ionBlur']);
|
|
2424
2175
|
}
|
|
2425
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2426
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2176
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2177
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelect, selector: "ion-select", inputs: { cancelIcon: "cancelIcon", cancelText: "cancelText", color: "color", compareWith: "compareWith", disabled: "disabled", errorText: "errorText", expandedIcon: "expandedIcon", fill: "fill", helperText: "helperText", interface: "interface", interfaceOptions: "interfaceOptions", justify: "justify", label: "label", labelPlacement: "labelPlacement", mode: "mode", multiple: "multiple", name: "name", okText: "okText", placeholder: "placeholder", required: "required", selectedText: "selectedText", shape: "shape", size: "size", theme: "theme", toggleIcon: "toggleIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2427
2178
|
};
|
|
2428
2179
|
IonSelect = __decorate([
|
|
2429
2180
|
ProxyCmp({
|
|
2430
|
-
inputs: ['cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'toggleIcon', 'value'],
|
|
2181
|
+
inputs: ['cancelIcon', 'cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'size', 'theme', 'toggleIcon', 'value'],
|
|
2431
2182
|
methods: ['open']
|
|
2432
2183
|
})
|
|
2433
2184
|
], IonSelect);
|
|
2434
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelect, decorators: [{
|
|
2435
2186
|
type: Component,
|
|
2436
2187
|
args: [{
|
|
2437
2188
|
selector: 'ion-select',
|
|
2438
2189
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2439
2190
|
template: '<ng-content></ng-content>',
|
|
2440
2191
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2441
|
-
inputs: ['cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'toggleIcon', 'value'],
|
|
2442
|
-
outputs: ['ionChange', 'ionCancel', 'ionDismiss', 'ionFocus', 'ionBlur'],
|
|
2443
|
-
standalone: false
|
|
2192
|
+
inputs: ['cancelIcon', 'cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'size', 'theme', 'toggleIcon', 'value'],
|
|
2444
2193
|
}]
|
|
2445
|
-
}], ctorParameters: ()
|
|
2446
|
-
type: Output
|
|
2447
|
-
}], ionCancel: [{
|
|
2448
|
-
type: Output
|
|
2449
|
-
}], ionDismiss: [{
|
|
2450
|
-
type: Output
|
|
2451
|
-
}], ionFocus: [{
|
|
2452
|
-
type: Output
|
|
2453
|
-
}], ionBlur: [{
|
|
2454
|
-
type: Output
|
|
2455
|
-
}] } });
|
|
2194
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2456
2195
|
let IonSelectModal = class IonSelectModal {
|
|
2457
2196
|
z;
|
|
2458
2197
|
el;
|
|
@@ -2461,25 +2200,24 @@ let IonSelectModal = class IonSelectModal {
|
|
|
2461
2200
|
c.detach();
|
|
2462
2201
|
this.el = r.nativeElement;
|
|
2463
2202
|
}
|
|
2464
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2465
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2203
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2204
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectModal, selector: "ion-select-modal", inputs: { cancelIcon: "cancelIcon", cancelText: "cancelText", header: "header", multiple: "multiple", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2466
2205
|
};
|
|
2467
2206
|
IonSelectModal = __decorate([
|
|
2468
2207
|
ProxyCmp({
|
|
2469
|
-
inputs: ['cancelText', 'header', 'multiple', 'options']
|
|
2208
|
+
inputs: ['cancelIcon', 'cancelText', 'header', 'multiple', 'options']
|
|
2470
2209
|
})
|
|
2471
2210
|
], IonSelectModal);
|
|
2472
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectModal, decorators: [{
|
|
2473
2212
|
type: Component,
|
|
2474
2213
|
args: [{
|
|
2475
2214
|
selector: 'ion-select-modal',
|
|
2476
2215
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2477
2216
|
template: '<ng-content></ng-content>',
|
|
2478
2217
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2479
|
-
inputs: ['cancelText', 'header', 'multiple', 'options'],
|
|
2480
|
-
standalone: false
|
|
2218
|
+
inputs: ['cancelIcon', 'cancelText', 'header', 'multiple', 'options'],
|
|
2481
2219
|
}]
|
|
2482
|
-
}], ctorParameters: ()
|
|
2220
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2483
2221
|
let IonSelectOption = class IonSelectOption {
|
|
2484
2222
|
z;
|
|
2485
2223
|
el;
|
|
@@ -2488,25 +2226,24 @@ let IonSelectOption = class IonSelectOption {
|
|
|
2488
2226
|
c.detach();
|
|
2489
2227
|
this.el = r.nativeElement;
|
|
2490
2228
|
}
|
|
2491
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2492
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2229
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2230
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectOption, selector: "ion-select-option", inputs: { description: "description", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2493
2231
|
};
|
|
2494
2232
|
IonSelectOption = __decorate([
|
|
2495
2233
|
ProxyCmp({
|
|
2496
|
-
inputs: ['disabled', 'value']
|
|
2234
|
+
inputs: ['description', 'disabled', 'mode', 'theme', 'value']
|
|
2497
2235
|
})
|
|
2498
2236
|
], IonSelectOption);
|
|
2499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, decorators: [{
|
|
2500
2238
|
type: Component,
|
|
2501
2239
|
args: [{
|
|
2502
2240
|
selector: 'ion-select-option',
|
|
2503
2241
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2504
2242
|
template: '<ng-content></ng-content>',
|
|
2505
2243
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2506
|
-
inputs: ['disabled', 'value'],
|
|
2507
|
-
standalone: false
|
|
2244
|
+
inputs: ['description', 'disabled', 'mode', 'theme', 'value'],
|
|
2508
2245
|
}]
|
|
2509
|
-
}], ctorParameters: ()
|
|
2246
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2510
2247
|
let IonSkeletonText = class IonSkeletonText {
|
|
2511
2248
|
z;
|
|
2512
2249
|
el;
|
|
@@ -2515,25 +2252,24 @@ let IonSkeletonText = class IonSkeletonText {
|
|
|
2515
2252
|
c.detach();
|
|
2516
2253
|
this.el = r.nativeElement;
|
|
2517
2254
|
}
|
|
2518
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2519
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2255
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2256
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSkeletonText, selector: "ion-skeleton-text", inputs: { animated: "animated", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2520
2257
|
};
|
|
2521
2258
|
IonSkeletonText = __decorate([
|
|
2522
2259
|
ProxyCmp({
|
|
2523
|
-
inputs: ['animated']
|
|
2260
|
+
inputs: ['animated', 'mode', 'theme']
|
|
2524
2261
|
})
|
|
2525
2262
|
], IonSkeletonText);
|
|
2526
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, decorators: [{
|
|
2527
2264
|
type: Component,
|
|
2528
2265
|
args: [{
|
|
2529
2266
|
selector: 'ion-skeleton-text',
|
|
2530
2267
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2531
2268
|
template: '<ng-content></ng-content>',
|
|
2532
2269
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2533
|
-
inputs: ['animated'],
|
|
2534
|
-
standalone: false
|
|
2270
|
+
inputs: ['animated', 'mode', 'theme'],
|
|
2535
2271
|
}]
|
|
2536
|
-
}], ctorParameters: ()
|
|
2272
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2537
2273
|
let IonSpinner = class IonSpinner {
|
|
2538
2274
|
z;
|
|
2539
2275
|
el;
|
|
@@ -2542,56 +2278,51 @@ let IonSpinner = class IonSpinner {
|
|
|
2542
2278
|
c.detach();
|
|
2543
2279
|
this.el = r.nativeElement;
|
|
2544
2280
|
}
|
|
2545
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2546
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2281
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2282
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSpinner, selector: "ion-spinner", inputs: { color: "color", duration: "duration", mode: "mode", name: "name", paused: "paused", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2547
2283
|
};
|
|
2548
2284
|
IonSpinner = __decorate([
|
|
2549
2285
|
ProxyCmp({
|
|
2550
|
-
inputs: ['color', 'duration', 'name', 'paused']
|
|
2286
|
+
inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme']
|
|
2551
2287
|
})
|
|
2552
2288
|
], IonSpinner);
|
|
2553
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, decorators: [{
|
|
2554
2290
|
type: Component,
|
|
2555
2291
|
args: [{
|
|
2556
2292
|
selector: 'ion-spinner',
|
|
2557
2293
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2558
2294
|
template: '<ng-content></ng-content>',
|
|
2559
2295
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2560
|
-
inputs: ['color', 'duration', 'name', 'paused'],
|
|
2561
|
-
standalone: false
|
|
2296
|
+
inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme'],
|
|
2562
2297
|
}]
|
|
2563
|
-
}], ctorParameters: ()
|
|
2298
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2564
2299
|
let IonSplitPane = class IonSplitPane {
|
|
2565
2300
|
z;
|
|
2566
2301
|
el;
|
|
2567
|
-
ionSplitPaneVisible = new EventEmitter();
|
|
2568
2302
|
constructor(c, r, z) {
|
|
2569
2303
|
this.z = z;
|
|
2570
2304
|
c.detach();
|
|
2571
2305
|
this.el = r.nativeElement;
|
|
2306
|
+
proxyOutputs(this, this.el, ['ionSplitPaneVisible']);
|
|
2572
2307
|
}
|
|
2573
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2574
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2308
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2309
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSplitPane, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled", mode: "mode", theme: "theme", when: "when" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2575
2310
|
};
|
|
2576
2311
|
IonSplitPane = __decorate([
|
|
2577
2312
|
ProxyCmp({
|
|
2578
|
-
inputs: ['contentId', 'disabled', 'when']
|
|
2313
|
+
inputs: ['contentId', 'disabled', 'mode', 'theme', 'when']
|
|
2579
2314
|
})
|
|
2580
2315
|
], IonSplitPane);
|
|
2581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, decorators: [{
|
|
2582
2317
|
type: Component,
|
|
2583
2318
|
args: [{
|
|
2584
2319
|
selector: 'ion-split-pane',
|
|
2585
2320
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2586
2321
|
template: '<ng-content></ng-content>',
|
|
2587
2322
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2588
|
-
inputs: ['contentId', 'disabled', 'when'],
|
|
2589
|
-
outputs: ['ionSplitPaneVisible'],
|
|
2590
|
-
standalone: false
|
|
2323
|
+
inputs: ['contentId', 'disabled', 'mode', 'theme', 'when'],
|
|
2591
2324
|
}]
|
|
2592
|
-
}], ctorParameters: ()
|
|
2593
|
-
type: Output
|
|
2594
|
-
}] } });
|
|
2325
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2595
2326
|
let IonTab = class IonTab {
|
|
2596
2327
|
z;
|
|
2597
2328
|
el;
|
|
@@ -2600,26 +2331,25 @@ let IonTab = class IonTab {
|
|
|
2600
2331
|
c.detach();
|
|
2601
2332
|
this.el = r.nativeElement;
|
|
2602
2333
|
}
|
|
2603
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2604
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2334
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2335
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTab, selector: "ion-tab", inputs: { component: "component", mode: "mode", tab: "tab", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2605
2336
|
};
|
|
2606
2337
|
IonTab = __decorate([
|
|
2607
2338
|
ProxyCmp({
|
|
2608
|
-
inputs: ['component', 'tab'],
|
|
2339
|
+
inputs: ['component', 'mode', 'tab', 'theme'],
|
|
2609
2340
|
methods: ['setActive']
|
|
2610
2341
|
})
|
|
2611
2342
|
], IonTab);
|
|
2612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, decorators: [{
|
|
2613
2344
|
type: Component,
|
|
2614
2345
|
args: [{
|
|
2615
2346
|
selector: 'ion-tab',
|
|
2616
2347
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2617
2348
|
template: '<ng-content></ng-content>',
|
|
2618
2349
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2619
|
-
inputs: ['component',
|
|
2620
|
-
standalone: false
|
|
2350
|
+
inputs: ['component', 'mode', 'tab', 'theme'],
|
|
2621
2351
|
}]
|
|
2622
|
-
}], ctorParameters: ()
|
|
2352
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2623
2353
|
let IonTabBar = class IonTabBar {
|
|
2624
2354
|
z;
|
|
2625
2355
|
el;
|
|
@@ -2628,25 +2358,24 @@ let IonTabBar = class IonTabBar {
|
|
|
2628
2358
|
c.detach();
|
|
2629
2359
|
this.el = r.nativeElement;
|
|
2630
2360
|
}
|
|
2631
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2632
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2361
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2362
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabBar, selector: "ion-tab-bar", inputs: { color: "color", expand: "expand", hideOnScroll: "hideOnScroll", mode: "mode", selectedTab: "selectedTab", shape: "shape", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2633
2363
|
};
|
|
2634
2364
|
IonTabBar = __decorate([
|
|
2635
2365
|
ProxyCmp({
|
|
2636
|
-
inputs: ['color', 'mode', 'selectedTab', 'translucent']
|
|
2366
|
+
inputs: ['color', 'expand', 'hideOnScroll', 'mode', 'selectedTab', 'shape', 'theme', 'translucent']
|
|
2637
2367
|
})
|
|
2638
2368
|
], IonTabBar);
|
|
2639
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, decorators: [{
|
|
2640
2370
|
type: Component,
|
|
2641
2371
|
args: [{
|
|
2642
2372
|
selector: 'ion-tab-bar',
|
|
2643
2373
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2644
2374
|
template: '<ng-content></ng-content>',
|
|
2645
2375
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2646
|
-
inputs: ['color', 'mode', 'selectedTab', 'translucent'],
|
|
2647
|
-
standalone: false
|
|
2376
|
+
inputs: ['color', 'expand', 'hideOnScroll', 'mode', 'selectedTab', 'shape', 'theme', 'translucent'],
|
|
2648
2377
|
}]
|
|
2649
|
-
}], ctorParameters: ()
|
|
2378
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2650
2379
|
let IonTabButton = class IonTabButton {
|
|
2651
2380
|
z;
|
|
2652
2381
|
el;
|
|
@@ -2655,25 +2384,24 @@ let IonTabButton = class IonTabButton {
|
|
|
2655
2384
|
c.detach();
|
|
2656
2385
|
this.el = r.nativeElement;
|
|
2657
2386
|
}
|
|
2658
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2659
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2387
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2388
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabButton, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected", shape: "shape", tab: "tab", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2660
2389
|
};
|
|
2661
2390
|
IonTabButton = __decorate([
|
|
2662
2391
|
ProxyCmp({
|
|
2663
|
-
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target']
|
|
2392
|
+
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'shape', 'tab', 'target', 'theme']
|
|
2664
2393
|
})
|
|
2665
2394
|
], IonTabButton);
|
|
2666
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, decorators: [{
|
|
2667
2396
|
type: Component,
|
|
2668
2397
|
args: [{
|
|
2669
2398
|
selector: 'ion-tab-button',
|
|
2670
2399
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2671
2400
|
template: '<ng-content></ng-content>',
|
|
2672
2401
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2673
|
-
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target'],
|
|
2674
|
-
standalone: false
|
|
2402
|
+
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'shape', 'tab', 'target', 'theme'],
|
|
2675
2403
|
}]
|
|
2676
|
-
}], ctorParameters: ()
|
|
2404
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2677
2405
|
let IonText = class IonText {
|
|
2678
2406
|
z;
|
|
2679
2407
|
el;
|
|
@@ -2682,66 +2410,52 @@ let IonText = class IonText {
|
|
|
2682
2410
|
c.detach();
|
|
2683
2411
|
this.el = r.nativeElement;
|
|
2684
2412
|
}
|
|
2685
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2686
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2413
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2414
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonText, selector: "ion-text", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2687
2415
|
};
|
|
2688
2416
|
IonText = __decorate([
|
|
2689
2417
|
ProxyCmp({
|
|
2690
|
-
inputs: ['color', 'mode']
|
|
2418
|
+
inputs: ['color', 'mode', 'theme']
|
|
2691
2419
|
})
|
|
2692
2420
|
], IonText);
|
|
2693
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, decorators: [{
|
|
2694
2422
|
type: Component,
|
|
2695
2423
|
args: [{
|
|
2696
2424
|
selector: 'ion-text',
|
|
2697
2425
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2698
2426
|
template: '<ng-content></ng-content>',
|
|
2699
2427
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2700
|
-
inputs: ['color', 'mode'],
|
|
2701
|
-
standalone: false
|
|
2428
|
+
inputs: ['color', 'mode', 'theme'],
|
|
2702
2429
|
}]
|
|
2703
|
-
}], ctorParameters: ()
|
|
2430
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2704
2431
|
let IonTextarea = class IonTextarea {
|
|
2705
2432
|
z;
|
|
2706
2433
|
el;
|
|
2707
|
-
ionChange = new EventEmitter();
|
|
2708
|
-
ionInput = new EventEmitter();
|
|
2709
|
-
ionBlur = new EventEmitter();
|
|
2710
|
-
ionFocus = new EventEmitter();
|
|
2711
2434
|
constructor(c, r, z) {
|
|
2712
2435
|
this.z = z;
|
|
2713
2436
|
c.detach();
|
|
2714
2437
|
this.el = r.nativeElement;
|
|
2438
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionInput', 'ionBlur', 'ionFocus']);
|
|
2715
2439
|
}
|
|
2716
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2717
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2440
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2441
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTextarea, selector: "ion-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autofocus: "autofocus", clearOnEdit: "clearOnEdit", color: "color", cols: "cols", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", shape: "shape", size: "size", spellcheck: "spellcheck", theme: "theme", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2718
2442
|
};
|
|
2719
2443
|
IonTextarea = __decorate([
|
|
2720
2444
|
ProxyCmp({
|
|
2721
|
-
inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'spellcheck', 'value', 'wrap'],
|
|
2445
|
+
inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'size', 'spellcheck', 'theme', 'value', 'wrap'],
|
|
2722
2446
|
methods: ['setFocus', 'getInputElement']
|
|
2723
2447
|
})
|
|
2724
2448
|
], IonTextarea);
|
|
2725
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTextarea, decorators: [{
|
|
2726
2450
|
type: Component,
|
|
2727
2451
|
args: [{
|
|
2728
2452
|
selector: 'ion-textarea',
|
|
2729
2453
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2730
2454
|
template: '<ng-content></ng-content>',
|
|
2731
2455
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2732
|
-
inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'spellcheck', 'value', 'wrap'],
|
|
2733
|
-
outputs: ['ionChange', 'ionInput', 'ionBlur', 'ionFocus'],
|
|
2734
|
-
standalone: false
|
|
2456
|
+
inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'size', 'spellcheck', 'theme', 'value', 'wrap'],
|
|
2735
2457
|
}]
|
|
2736
|
-
}], ctorParameters: ()
|
|
2737
|
-
type: Output
|
|
2738
|
-
}], ionInput: [{
|
|
2739
|
-
type: Output
|
|
2740
|
-
}], ionBlur: [{
|
|
2741
|
-
type: Output
|
|
2742
|
-
}], ionFocus: [{
|
|
2743
|
-
type: Output
|
|
2744
|
-
}] } });
|
|
2458
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2745
2459
|
let IonThumbnail = class IonThumbnail {
|
|
2746
2460
|
z;
|
|
2747
2461
|
el;
|
|
@@ -2750,23 +2464,24 @@ let IonThumbnail = class IonThumbnail {
|
|
|
2750
2464
|
c.detach();
|
|
2751
2465
|
this.el = r.nativeElement;
|
|
2752
2466
|
}
|
|
2753
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2754
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2467
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2468
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonThumbnail, selector: "ion-thumbnail", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2755
2469
|
};
|
|
2756
2470
|
IonThumbnail = __decorate([
|
|
2757
|
-
ProxyCmp({
|
|
2471
|
+
ProxyCmp({
|
|
2472
|
+
inputs: ['mode', 'theme']
|
|
2473
|
+
})
|
|
2758
2474
|
], IonThumbnail);
|
|
2759
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, decorators: [{
|
|
2760
2476
|
type: Component,
|
|
2761
2477
|
args: [{
|
|
2762
2478
|
selector: 'ion-thumbnail',
|
|
2763
2479
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2764
2480
|
template: '<ng-content></ng-content>',
|
|
2765
2481
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2766
|
-
inputs: [],
|
|
2767
|
-
standalone: false
|
|
2482
|
+
inputs: ['mode', 'theme'],
|
|
2768
2483
|
}]
|
|
2769
|
-
}], ctorParameters: ()
|
|
2484
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2770
2485
|
let IonTitle = class IonTitle {
|
|
2771
2486
|
z;
|
|
2772
2487
|
el;
|
|
@@ -2775,115 +2490,79 @@ let IonTitle = class IonTitle {
|
|
|
2775
2490
|
c.detach();
|
|
2776
2491
|
this.el = r.nativeElement;
|
|
2777
2492
|
}
|
|
2778
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2779
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2493
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2494
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTitle, selector: "ion-title", inputs: { color: "color", mode: "mode", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2780
2495
|
};
|
|
2781
2496
|
IonTitle = __decorate([
|
|
2782
2497
|
ProxyCmp({
|
|
2783
|
-
inputs: ['color', 'size']
|
|
2498
|
+
inputs: ['color', 'mode', 'size', 'theme']
|
|
2784
2499
|
})
|
|
2785
2500
|
], IonTitle);
|
|
2786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, decorators: [{
|
|
2787
2502
|
type: Component,
|
|
2788
2503
|
args: [{
|
|
2789
2504
|
selector: 'ion-title',
|
|
2790
2505
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2791
2506
|
template: '<ng-content></ng-content>',
|
|
2792
2507
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2793
|
-
inputs: ['color', 'size'],
|
|
2794
|
-
standalone: false
|
|
2508
|
+
inputs: ['color', 'mode', 'size', 'theme'],
|
|
2795
2509
|
}]
|
|
2796
|
-
}], ctorParameters: ()
|
|
2510
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2797
2511
|
let IonToast = class IonToast {
|
|
2798
2512
|
z;
|
|
2799
2513
|
el;
|
|
2800
|
-
ionToastDidPresent = new EventEmitter();
|
|
2801
|
-
ionToastWillPresent = new EventEmitter();
|
|
2802
|
-
ionToastWillDismiss = new EventEmitter();
|
|
2803
|
-
ionToastDidDismiss = new EventEmitter();
|
|
2804
|
-
didPresent = new EventEmitter();
|
|
2805
|
-
willPresent = new EventEmitter();
|
|
2806
|
-
willDismiss = new EventEmitter();
|
|
2807
|
-
didDismiss = new EventEmitter();
|
|
2808
2514
|
constructor(c, r, z) {
|
|
2809
2515
|
this.z = z;
|
|
2810
2516
|
c.detach();
|
|
2811
2517
|
this.el = r.nativeElement;
|
|
2518
|
+
proxyOutputs(this, this.el, ['ionToastDidPresent', 'ionToastWillPresent', 'ionToastWillDismiss', 'ionToastDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
2812
2519
|
}
|
|
2813
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2814
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2520
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2521
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToast, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", hue: "hue", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor", shape: "shape", swipeGesture: "swipeGesture", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2815
2522
|
};
|
|
2816
2523
|
IonToast = __decorate([
|
|
2817
2524
|
ProxyCmp({
|
|
2818
|
-
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
|
|
2525
|
+
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'hue', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'shape', 'swipeGesture', 'theme', 'translucent', 'trigger'],
|
|
2819
2526
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
2820
2527
|
})
|
|
2821
2528
|
], IonToast);
|
|
2822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, decorators: [{
|
|
2823
2530
|
type: Component,
|
|
2824
2531
|
args: [{
|
|
2825
2532
|
selector: 'ion-toast',
|
|
2826
2533
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2827
2534
|
template: '<ng-content></ng-content>',
|
|
2828
2535
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2829
|
-
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
}]
|
|
2833
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionToastDidPresent: [{
|
|
2834
|
-
type: Output
|
|
2835
|
-
}], ionToastWillPresent: [{
|
|
2836
|
-
type: Output
|
|
2837
|
-
}], ionToastWillDismiss: [{
|
|
2838
|
-
type: Output
|
|
2839
|
-
}], ionToastDidDismiss: [{
|
|
2840
|
-
type: Output
|
|
2841
|
-
}], didPresent: [{
|
|
2842
|
-
type: Output
|
|
2843
|
-
}], willPresent: [{
|
|
2844
|
-
type: Output
|
|
2845
|
-
}], willDismiss: [{
|
|
2846
|
-
type: Output
|
|
2847
|
-
}], didDismiss: [{
|
|
2848
|
-
type: Output
|
|
2849
|
-
}] } });
|
|
2536
|
+
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'hue', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'shape', 'swipeGesture', 'theme', 'translucent', 'trigger'],
|
|
2537
|
+
}]
|
|
2538
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2850
2539
|
let IonToggle = class IonToggle {
|
|
2851
2540
|
z;
|
|
2852
2541
|
el;
|
|
2853
|
-
ionChange = new EventEmitter();
|
|
2854
|
-
ionFocus = new EventEmitter();
|
|
2855
|
-
ionBlur = new EventEmitter();
|
|
2856
2542
|
constructor(c, r, z) {
|
|
2857
2543
|
this.z = z;
|
|
2858
2544
|
c.detach();
|
|
2859
2545
|
this.el = r.nativeElement;
|
|
2546
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionFocus', 'ionBlur']);
|
|
2860
2547
|
}
|
|
2861
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2862
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2548
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2549
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToggle, selector: "ion-toggle", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2863
2550
|
};
|
|
2864
2551
|
IonToggle = __decorate([
|
|
2865
2552
|
ProxyCmp({
|
|
2866
|
-
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
2553
|
+
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'theme', 'value']
|
|
2867
2554
|
})
|
|
2868
2555
|
], IonToggle);
|
|
2869
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, decorators: [{
|
|
2870
2557
|
type: Component,
|
|
2871
2558
|
args: [{
|
|
2872
2559
|
selector: 'ion-toggle',
|
|
2873
2560
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2874
2561
|
template: '<ng-content></ng-content>',
|
|
2875
2562
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2876
|
-
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value'],
|
|
2877
|
-
outputs: ['ionChange', 'ionFocus', 'ionBlur'],
|
|
2878
|
-
standalone: false
|
|
2563
|
+
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'theme', 'value'],
|
|
2879
2564
|
}]
|
|
2880
|
-
}], ctorParameters: ()
|
|
2881
|
-
type: Output
|
|
2882
|
-
}], ionFocus: [{
|
|
2883
|
-
type: Output
|
|
2884
|
-
}], ionBlur: [{
|
|
2885
|
-
type: Output
|
|
2886
|
-
}] } });
|
|
2565
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2887
2566
|
let IonToolbar = class IonToolbar {
|
|
2888
2567
|
z;
|
|
2889
2568
|
el;
|
|
@@ -2892,25 +2571,24 @@ let IonToolbar = class IonToolbar {
|
|
|
2892
2571
|
c.detach();
|
|
2893
2572
|
this.el = r.nativeElement;
|
|
2894
2573
|
}
|
|
2895
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2896
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2574
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2575
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToolbar, selector: "ion-toolbar", inputs: { color: "color", mode: "mode", theme: "theme", titlePlacement: "titlePlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2897
2576
|
};
|
|
2898
2577
|
IonToolbar = __decorate([
|
|
2899
2578
|
ProxyCmp({
|
|
2900
|
-
inputs: ['color', 'mode']
|
|
2579
|
+
inputs: ['color', 'mode', 'theme', 'titlePlacement']
|
|
2901
2580
|
})
|
|
2902
2581
|
], IonToolbar);
|
|
2903
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, decorators: [{
|
|
2904
2583
|
type: Component,
|
|
2905
2584
|
args: [{
|
|
2906
2585
|
selector: 'ion-toolbar',
|
|
2907
2586
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2908
2587
|
template: '<ng-content></ng-content>',
|
|
2909
2588
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2910
|
-
inputs: ['color', 'mode'],
|
|
2911
|
-
standalone: false
|
|
2589
|
+
inputs: ['color', 'mode', 'theme', 'titlePlacement'],
|
|
2912
2590
|
}]
|
|
2913
|
-
}], ctorParameters: ()
|
|
2591
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2914
2592
|
|
|
2915
2593
|
class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
2916
2594
|
parentOutlet;
|
|
@@ -2932,17 +2610,16 @@ class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
|
2932
2610
|
super(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet);
|
|
2933
2611
|
this.parentOutlet = parentOutlet;
|
|
2934
2612
|
}
|
|
2935
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2936
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2613
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, deps: [{ token: 'name', attribute: true }, { token: 'tabs', attribute: true, optional: true }, { token: i1.Location }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.NgZone }, { token: i2.ActivatedRoute }, { token: IonRouterOutlet, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
2614
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterOutlet, selector: "ion-router-outlet", viewQueries: [{ propertyName: "outletContent", first: true, predicate: ["outletContent"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: '<ng-container #outletContent><ng-content></ng-content></ng-container>', isInline: true });
|
|
2937
2615
|
}
|
|
2938
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, decorators: [{
|
|
2939
2617
|
type: Component,
|
|
2940
2618
|
args: [{
|
|
2941
|
-
standalone: false,
|
|
2942
2619
|
selector: 'ion-router-outlet',
|
|
2943
2620
|
template: '<ng-container #outletContent><ng-content></ng-content></ng-container>',
|
|
2944
2621
|
}]
|
|
2945
|
-
}], ctorParameters: ()
|
|
2622
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
2946
2623
|
type: Attribute,
|
|
2947
2624
|
args: ['name']
|
|
2948
2625
|
}] }, { type: undefined, decorators: [{
|
|
@@ -2954,7 +2631,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
2954
2631
|
type: SkipSelf
|
|
2955
2632
|
}, {
|
|
2956
2633
|
type: Optional
|
|
2957
|
-
}] }], propDecorators: { outletContent: [{
|
|
2634
|
+
}] }]; }, propDecorators: { outletContent: [{
|
|
2958
2635
|
type: ViewChild,
|
|
2959
2636
|
args: ['outletContent', { read: ViewContainerRef, static: true }]
|
|
2960
2637
|
}] } });
|
|
@@ -2964,8 +2641,8 @@ class IonTabs extends IonTabs$1 {
|
|
|
2964
2641
|
tabBar;
|
|
2965
2642
|
tabBars;
|
|
2966
2643
|
tabs;
|
|
2967
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2968
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2644
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2645
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabs, selector: "ion-tabs", queries: [{ propertyName: "tabBar", first: true, predicate: IonTabBar, descendants: true }, { propertyName: "tabBars", predicate: IonTabBar }, { propertyName: "tabs", predicate: IonTab }], viewQueries: [{ propertyName: "outlet", first: true, predicate: ["outlet"], descendants: true, read: IonRouterOutlet }], usesInheritance: true, ngImport: i0, template: `
|
|
2969
2646
|
<ng-content select="[slot=top]"></ng-content>
|
|
2970
2647
|
<div class="tabs-inner" #tabsInner>
|
|
2971
2648
|
<ion-router-outlet
|
|
@@ -2980,9 +2657,9 @@ class IonTabs extends IonTabs$1 {
|
|
|
2980
2657
|
<ng-content></ng-content>
|
|
2981
2658
|
`, isInline: true, styles: [":host{display:flex;position:absolute;inset:0;flex-direction:column;width:100%;height:100%;contain:layout size style}.tabs-inner{position:relative;flex:1;contain:layout size style}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IonRouterOutlet, selector: "ion-router-outlet" }] });
|
|
2982
2659
|
}
|
|
2983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, decorators: [{
|
|
2984
2661
|
type: Component,
|
|
2985
|
-
args: [{
|
|
2662
|
+
args: [{ selector: 'ion-tabs', template: `
|
|
2986
2663
|
<ng-content select="[slot=top]"></ng-content>
|
|
2987
2664
|
<div class="tabs-inner" #tabsInner>
|
|
2988
2665
|
<ion-router-outlet
|
|
@@ -3014,37 +2691,35 @@ class IonBackButton extends IonBackButton$1 {
|
|
|
3014
2691
|
constructor(routerOutlet, navCtrl, config, r, z, c) {
|
|
3015
2692
|
super(routerOutlet, navCtrl, config, r, z, c);
|
|
3016
2693
|
}
|
|
3017
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3018
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2694
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, deps: [{ token: IonRouterOutlet, optional: true }, { token: i2$1.NavController }, { token: i2$1.Config }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2695
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackButton, selector: "ion-back-button", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3019
2696
|
}
|
|
3020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, decorators: [{
|
|
3021
2698
|
type: Component,
|
|
3022
2699
|
args: [{
|
|
3023
|
-
standalone: false,
|
|
3024
2700
|
selector: 'ion-back-button',
|
|
3025
2701
|
template: '<ng-content></ng-content>',
|
|
3026
2702
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3027
2703
|
}]
|
|
3028
|
-
}], ctorParameters: ()
|
|
2704
|
+
}], ctorParameters: function () { return [{ type: IonRouterOutlet, decorators: [{
|
|
3029
2705
|
type: Optional
|
|
3030
|
-
}] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
2706
|
+
}] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
3031
2707
|
|
|
3032
2708
|
class IonNav extends IonNav$1 {
|
|
3033
2709
|
constructor(ref, environmentInjector, injector, angularDelegate, z, c) {
|
|
3034
2710
|
super(ref, environmentInjector, injector, angularDelegate, z, c);
|
|
3035
2711
|
}
|
|
3036
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3037
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2712
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, deps: [{ token: i0.ElementRef }, { token: i0.EnvironmentInjector }, { token: i0.Injector }, { token: i2$1.AngularDelegate }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2713
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNav, selector: "ion-nav", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3038
2714
|
}
|
|
3039
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2715
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, decorators: [{
|
|
3040
2716
|
type: Component,
|
|
3041
2717
|
args: [{
|
|
3042
|
-
standalone: false,
|
|
3043
2718
|
selector: 'ion-nav',
|
|
3044
2719
|
template: '<ng-content></ng-content>',
|
|
3045
2720
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3046
2721
|
}]
|
|
3047
|
-
}], ctorParameters: ()
|
|
2722
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: i2$1.AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
3048
2723
|
|
|
3049
2724
|
/**
|
|
3050
2725
|
* Adds support for Ionic routing directions and animations to the base Angular router link directive.
|
|
@@ -3053,38 +2728,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
3053
2728
|
* animation so that the routing integration will transition correctly.
|
|
3054
2729
|
*/
|
|
3055
2730
|
class RouterLinkDelegateDirective extends RouterLinkDelegateDirective$1 {
|
|
3056
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3057
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2731
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2732
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RouterLinkDelegateDirective, selector: ":not(a):not(area)[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
3058
2733
|
}
|
|
3059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkDelegateDirective, decorators: [{
|
|
3060
2735
|
type: Directive,
|
|
3061
2736
|
args: [{
|
|
3062
|
-
standalone: false,
|
|
3063
2737
|
selector: ':not(a):not(area)[routerLink]',
|
|
3064
2738
|
}]
|
|
3065
2739
|
}] });
|
|
3066
2740
|
class RouterLinkWithHrefDelegateDirective extends RouterLinkWithHrefDelegateDirective$1 {
|
|
3067
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3068
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2741
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2742
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RouterLinkWithHrefDelegateDirective, selector: "a[routerLink],area[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
3069
2743
|
}
|
|
3070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, decorators: [{
|
|
3071
2745
|
type: Directive,
|
|
3072
2746
|
args: [{
|
|
3073
|
-
standalone: false,
|
|
3074
2747
|
selector: 'a[routerLink],area[routerLink]',
|
|
3075
2748
|
}]
|
|
3076
2749
|
}] });
|
|
3077
2750
|
|
|
3078
2751
|
class IonModal extends IonModal$1 {
|
|
3079
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3080
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2752
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2753
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonModal, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
3081
2754
|
<ng-container [ngTemplateOutlet]="template"></ng-container>
|
|
3082
2755
|
</div>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3083
2756
|
}
|
|
3084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, decorators: [{
|
|
3085
2758
|
type: Component,
|
|
3086
2759
|
args: [{
|
|
3087
|
-
standalone: false,
|
|
3088
2760
|
selector: 'ion-modal',
|
|
3089
2761
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3090
2762
|
template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
@@ -3094,13 +2766,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
3094
2766
|
}] });
|
|
3095
2767
|
|
|
3096
2768
|
class IonPopover extends IonPopover$1 {
|
|
3097
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3098
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2769
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2770
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPopover, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3099
2771
|
}
|
|
3100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, decorators: [{
|
|
3101
2773
|
type: Component,
|
|
3102
2774
|
args: [{
|
|
3103
|
-
standalone: false,
|
|
3104
2775
|
selector: 'ion-popover',
|
|
3105
2776
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3106
2777
|
template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`,
|
|
@@ -3117,16 +2788,16 @@ const ION_MAX_VALIDATOR = {
|
|
|
3117
2788
|
multi: true,
|
|
3118
2789
|
};
|
|
3119
2790
|
class IonMaxValidator extends MaxValidator {
|
|
3120
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3121
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2791
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMaxValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2792
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonMaxValidator, selector: "ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]", host: { properties: { "attr.max": "_enabled ? max : null" } }, providers: [ION_MAX_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
3122
2793
|
}
|
|
3123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMaxValidator, decorators: [{
|
|
3124
2795
|
type: Directive,
|
|
3125
2796
|
args: [{
|
|
3126
|
-
standalone: false,
|
|
3127
2797
|
selector: 'ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]',
|
|
3128
2798
|
providers: [ION_MAX_VALIDATOR],
|
|
3129
|
-
|
|
2799
|
+
// eslint-disable-next-line @angular-eslint/no-host-metadata-property
|
|
2800
|
+
host: { '[attr.max]': '_enabled ? max : null' },
|
|
3130
2801
|
}]
|
|
3131
2802
|
}] });
|
|
3132
2803
|
|
|
@@ -3140,16 +2811,16 @@ const ION_MIN_VALIDATOR = {
|
|
|
3140
2811
|
multi: true,
|
|
3141
2812
|
};
|
|
3142
2813
|
class IonMinValidator extends MinValidator {
|
|
3143
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3144
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2814
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMinValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2815
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonMinValidator, selector: "ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]", host: { properties: { "attr.min": "_enabled ? min : null" } }, providers: [ION_MIN_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
3145
2816
|
}
|
|
3146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2817
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMinValidator, decorators: [{
|
|
3147
2818
|
type: Directive,
|
|
3148
2819
|
args: [{
|
|
3149
|
-
standalone: false,
|
|
3150
2820
|
selector: 'ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]',
|
|
3151
2821
|
providers: [ION_MIN_VALIDATOR],
|
|
3152
|
-
|
|
2822
|
+
// eslint-disable-next-line @angular-eslint/no-host-metadata-property
|
|
2823
|
+
host: { '[attr.min]': '_enabled ? min : null' },
|
|
3153
2824
|
}]
|
|
3154
2825
|
}] });
|
|
3155
2826
|
|
|
@@ -3157,15 +2828,15 @@ class AlertController extends OverlayBaseController {
|
|
|
3157
2828
|
constructor() {
|
|
3158
2829
|
super(alertController);
|
|
3159
2830
|
}
|
|
3160
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3161
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2831
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2832
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, providedIn: 'root' });
|
|
3162
2833
|
}
|
|
3163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, decorators: [{
|
|
3164
2835
|
type: Injectable,
|
|
3165
2836
|
args: [{
|
|
3166
2837
|
providedIn: 'root',
|
|
3167
2838
|
}]
|
|
3168
|
-
}], ctorParameters: ()
|
|
2839
|
+
}], ctorParameters: function () { return []; } });
|
|
3169
2840
|
|
|
3170
2841
|
class AnimationController {
|
|
3171
2842
|
/**
|
|
@@ -3191,10 +2862,10 @@ class AnimationController {
|
|
|
3191
2862
|
easingTime(p0, p1, p2, p3, progression) {
|
|
3192
2863
|
return getTimeGivenProgression(p0, p1, p2, p3, progression);
|
|
3193
2864
|
}
|
|
3194
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3195
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2865
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2866
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, providedIn: 'root' });
|
|
3196
2867
|
}
|
|
3197
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, decorators: [{
|
|
3198
2869
|
type: Injectable,
|
|
3199
2870
|
args: [{
|
|
3200
2871
|
providedIn: 'root',
|
|
@@ -3205,15 +2876,15 @@ class ActionSheetController extends OverlayBaseController {
|
|
|
3205
2876
|
constructor() {
|
|
3206
2877
|
super(actionSheetController);
|
|
3207
2878
|
}
|
|
3208
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3209
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2879
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2880
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
|
|
3210
2881
|
}
|
|
3211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, decorators: [{
|
|
3212
2883
|
type: Injectable,
|
|
3213
2884
|
args: [{
|
|
3214
2885
|
providedIn: 'root',
|
|
3215
2886
|
}]
|
|
3216
|
-
}], ctorParameters: ()
|
|
2887
|
+
}], ctorParameters: function () { return []; } });
|
|
3217
2888
|
|
|
3218
2889
|
class GestureController {
|
|
3219
2890
|
zone;
|
|
@@ -3234,43 +2905,43 @@ class GestureController {
|
|
|
3234
2905
|
}
|
|
3235
2906
|
return createGesture(opts);
|
|
3236
2907
|
}
|
|
3237
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3238
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2908
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2909
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, providedIn: 'root' });
|
|
3239
2910
|
}
|
|
3240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, decorators: [{
|
|
3241
2912
|
type: Injectable,
|
|
3242
2913
|
args: [{
|
|
3243
2914
|
providedIn: 'root',
|
|
3244
2915
|
}]
|
|
3245
|
-
}], ctorParameters: ()
|
|
2916
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
3246
2917
|
|
|
3247
2918
|
class LoadingController extends OverlayBaseController {
|
|
3248
2919
|
constructor() {
|
|
3249
2920
|
super(loadingController);
|
|
3250
2921
|
}
|
|
3251
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3252
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2922
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2923
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, providedIn: 'root' });
|
|
3253
2924
|
}
|
|
3254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2925
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, decorators: [{
|
|
3255
2926
|
type: Injectable,
|
|
3256
2927
|
args: [{
|
|
3257
2928
|
providedIn: 'root',
|
|
3258
2929
|
}]
|
|
3259
|
-
}], ctorParameters: ()
|
|
2930
|
+
}], ctorParameters: function () { return []; } });
|
|
3260
2931
|
|
|
3261
2932
|
class MenuController extends MenuController$1 {
|
|
3262
2933
|
constructor() {
|
|
3263
2934
|
super(menuController);
|
|
3264
2935
|
}
|
|
3265
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3266
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2936
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2937
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, providedIn: 'root' });
|
|
3267
2938
|
}
|
|
3268
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, decorators: [{
|
|
3269
2940
|
type: Injectable,
|
|
3270
2941
|
args: [{
|
|
3271
2942
|
providedIn: 'root',
|
|
3272
2943
|
}]
|
|
3273
|
-
}], ctorParameters: ()
|
|
2944
|
+
}], ctorParameters: function () { return []; } });
|
|
3274
2945
|
|
|
3275
2946
|
class ModalController extends OverlayBaseController {
|
|
3276
2947
|
angularDelegate = inject(AngularDelegate);
|
|
@@ -3286,12 +2957,29 @@ class ModalController extends OverlayBaseController {
|
|
|
3286
2957
|
delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
|
|
3287
2958
|
});
|
|
3288
2959
|
}
|
|
3289
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3290
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2960
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2961
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController });
|
|
3291
2962
|
}
|
|
3292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, decorators: [{
|
|
3293
2964
|
type: Injectable
|
|
3294
|
-
}], ctorParameters: ()
|
|
2965
|
+
}], ctorParameters: function () { return []; } });
|
|
2966
|
+
|
|
2967
|
+
/**
|
|
2968
|
+
* @deprecated Use the inline ion-picker component instead.
|
|
2969
|
+
*/
|
|
2970
|
+
class PickerController extends OverlayBaseController {
|
|
2971
|
+
constructor() {
|
|
2972
|
+
super(pickerController);
|
|
2973
|
+
}
|
|
2974
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2975
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, providedIn: 'root' });
|
|
2976
|
+
}
|
|
2977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, decorators: [{
|
|
2978
|
+
type: Injectable,
|
|
2979
|
+
args: [{
|
|
2980
|
+
providedIn: 'root',
|
|
2981
|
+
}]
|
|
2982
|
+
}], ctorParameters: function () { return []; } });
|
|
3295
2983
|
|
|
3296
2984
|
class PopoverController extends OverlayBaseController {
|
|
3297
2985
|
angularDelegate = inject(AngularDelegate);
|
|
@@ -3313,15 +3001,15 @@ class ToastController extends OverlayBaseController {
|
|
|
3313
3001
|
constructor() {
|
|
3314
3002
|
super(toastController);
|
|
3315
3003
|
}
|
|
3316
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3317
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3004
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3005
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, providedIn: 'root' });
|
|
3318
3006
|
}
|
|
3319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, decorators: [{
|
|
3320
3008
|
type: Injectable,
|
|
3321
3009
|
args: [{
|
|
3322
3010
|
providedIn: 'root',
|
|
3323
3011
|
}]
|
|
3324
|
-
}], ctorParameters: ()
|
|
3012
|
+
}], ctorParameters: function () { return []; } });
|
|
3325
3013
|
|
|
3326
3014
|
// TODO(FW-2827): types
|
|
3327
3015
|
const appInitialize = (config, doc, zone) => {
|
|
@@ -3373,10 +3061,13 @@ const DIRECTIVES = [
|
|
|
3373
3061
|
IonContent,
|
|
3374
3062
|
IonDatetime,
|
|
3375
3063
|
IonDatetimeButton,
|
|
3064
|
+
IonDivider,
|
|
3376
3065
|
IonFab,
|
|
3377
3066
|
IonFabButton,
|
|
3378
3067
|
IonFabList,
|
|
3379
3068
|
IonFooter,
|
|
3069
|
+
IonGallery,
|
|
3070
|
+
IonGalleryItem,
|
|
3380
3071
|
IonGrid,
|
|
3381
3072
|
IonHeader,
|
|
3382
3073
|
IonIcon,
|
|
@@ -3404,6 +3095,7 @@ const DIRECTIVES = [
|
|
|
3404
3095
|
IonPicker,
|
|
3405
3096
|
IonPickerColumn,
|
|
3406
3097
|
IonPickerColumnOption,
|
|
3098
|
+
IonPickerLegacy,
|
|
3407
3099
|
IonProgressBar,
|
|
3408
3100
|
IonRadio,
|
|
3409
3101
|
IonRadioGroup,
|
|
@@ -3479,8 +3171,8 @@ class IonicModule {
|
|
|
3479
3171
|
],
|
|
3480
3172
|
};
|
|
3481
3173
|
}
|
|
3482
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3483
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3174
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3175
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, declarations: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3484
3176
|
// manual proxies
|
|
3485
3177
|
IonModal,
|
|
3486
3178
|
IonPopover,
|
|
@@ -3498,7 +3190,7 @@ class IonicModule {
|
|
|
3498
3190
|
RouterLinkWithHrefDelegateDirective,
|
|
3499
3191
|
// validators
|
|
3500
3192
|
IonMinValidator,
|
|
3501
|
-
IonMaxValidator], imports: [CommonModule], exports: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3193
|
+
IonMaxValidator], imports: [CommonModule], exports: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3502
3194
|
// manual proxies
|
|
3503
3195
|
IonModal,
|
|
3504
3196
|
IonPopover,
|
|
@@ -3517,9 +3209,9 @@ class IonicModule {
|
|
|
3517
3209
|
// validators
|
|
3518
3210
|
IonMinValidator,
|
|
3519
3211
|
IonMaxValidator] });
|
|
3520
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3212
|
+
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, providers: [ModalController, PopoverController], imports: [CommonModule] });
|
|
3521
3213
|
}
|
|
3522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, decorators: [{
|
|
3523
3215
|
type: NgModule,
|
|
3524
3216
|
args: [{
|
|
3525
3217
|
declarations: DECLARATIONS,
|
|
@@ -3535,5 +3227,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
3535
3227
|
* Generated bundle index. Do not edit.
|
|
3536
3228
|
*/
|
|
3537
3229
|
|
|
3538
|
-
export { ActionSheetController, AlertController, AnimationController, BooleanValueAccessorDirective as BooleanValueAccessor, GestureController, ION_MAX_VALIDATOR, ION_MIN_VALIDATOR, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMaxValidator, IonMenu, IonMenuButton, IonMenuToggle, IonMinValidator, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonicModule, LoadingController, MenuController, ModalController, NumericValueAccessorDirective as NumericValueAccessor, PopoverController, RouterLinkDelegateDirective as RouterLinkDelegate, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegate, SelectValueAccessorDirective as SelectValueAccessor, TextValueAccessorDirective as TextValueAccessor, ToastController };
|
|
3230
|
+
export { ActionSheetController, AlertController, AnimationController, BooleanValueAccessorDirective as BooleanValueAccessor, GestureController, ION_MAX_VALIDATOR, ION_MIN_VALIDATOR, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMaxValidator, IonMenu, IonMenuButton, IonMenuToggle, IonMinValidator, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonicModule, LoadingController, MenuController, ModalController, NumericValueAccessorDirective as NumericValueAccessor, PickerController, PopoverController, RouterLinkDelegateDirective as RouterLinkDelegate, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegate, SelectValueAccessorDirective as SelectValueAccessor, TextValueAccessorDirective as TextValueAccessor, ToastController };
|
|
3539
3231
|
//# sourceMappingURL=ionic-angular.mjs.map
|