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