@ionic/angular 8.5.7-dev.11748379940.12698faf → 8.5.7-dev.11748466845.12de1519

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionic/angular",
3
- "version": "8.5.7-dev.11748379940.12698faf",
3
+ "version": "8.5.7-dev.11748466845.12de1519",
4
4
  "description": "Angular specific wrappers for @ionic/core",
5
5
  "keywords": [
6
6
  "ionic",
@@ -50,7 +50,7 @@
50
50
  }
51
51
  },
52
52
  "dependencies": {
53
- "@ionic/core": "8.5.7-dev.11748379940.12698faf",
53
+ "@ionic/core": "8.5.7-dev.11748466845.12de1519",
54
54
  "ionicons": "^7.0.0",
55
55
  "jsonc-parser": "^3.0.0",
56
56
  "tslib": "^2.3.0"
@@ -6,9 +6,6 @@ import type { OverlayEventDetail as IIonAlertOverlayEventDetail } from '@ionic/c
6
6
  import type { BreadcrumbCollapsedClickEventDetail as IIonBreadcrumbsBreadcrumbCollapsedClickEventDetail } from '@ionic/core/components';
7
7
  import type { ScrollBaseDetail as IIonContentScrollBaseDetail } from '@ionic/core/components';
8
8
  import type { ScrollDetail as IIonContentScrollDetail } from '@ionic/core/components';
9
- import type { InputOtpInputEventDetail as IIonInputOtpInputOtpInputEventDetail } from '@ionic/core/components';
10
- import type { InputOtpChangeEventDetail as IIonInputOtpInputOtpChangeEventDetail } from '@ionic/core/components';
11
- import type { InputOtpCompleteEventDetail as IIonInputOtpInputOtpCompleteEventDetail } from '@ionic/core/components';
12
9
  import type { OverlayEventDetail as IIonLoadingOverlayEventDetail } from '@ionic/core/components';
13
10
  import type { MenuCloseEventDetail as IIonMenuMenuCloseEventDetail } from '@ionic/core/components';
14
11
  import type { PickerColumnChangeEventDetail as IIonPickerColumnPickerColumnChangeEventDetail } from '@ionic/core/components';
@@ -432,49 +429,6 @@ export declare class IonInfiniteScrollContent {
432
429
  }
433
430
  export declare interface IonInfiniteScrollContent extends Components.IonInfiniteScrollContent {
434
431
  }
435
- export declare class IonInputOtp {
436
- protected z: NgZone;
437
- protected el: HTMLIonInputOtpElement;
438
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
439
- static ɵfac: i0.ɵɵFactoryDeclaration<IonInputOtp, never>;
440
- static ɵcmp: i0.ɵɵComponentDeclaration<IonInputOtp, "ion-input-otp", never, { "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "length": { "alias": "length"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "separators": { "alias": "separators"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
441
- }
442
- export declare interface IonInputOtp extends Components.IonInputOtp {
443
- /**
444
- * The `ionInput` event is fired each time the user modifies the input's value.
445
- Unlike the `ionChange` event, the `ionInput` event is fired for each alteration
446
- to the input's value. This typically happens for each keystroke as the user types.
447
-
448
- For elements that accept text input (`type=text`, `type=tel`, etc.), the interface
449
- is [`InputEvent`](https://developer.mozilla.org/en-US/docs/Web/API/InputEvent); for others,
450
- the interface is [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event). If
451
- the input is cleared on edit, the type is `null`.
452
- */
453
- ionInput: EventEmitter<CustomEvent<IIonInputOtpInputOtpInputEventDetail>>;
454
- /**
455
- * The `ionChange` event is fired when the user modifies the input's value.
456
- Unlike the `ionInput` event, the `ionChange` event is only fired when changes
457
- are committed, not as the user types.
458
-
459
- The `ionChange` event fires when the `<ion-input-otp>` component loses
460
- focus after its value has changed.
461
-
462
- This event will not emit when programmatically setting the `value` property.
463
- */
464
- ionChange: EventEmitter<CustomEvent<IIonInputOtpInputOtpChangeEventDetail>>;
465
- /**
466
- * Emitted when all input boxes have been filled with valid values.
467
- */
468
- ionComplete: EventEmitter<CustomEvent<IIonInputOtpInputOtpCompleteEventDetail>>;
469
- /**
470
- * Emitted when the input group loses focus.
471
- */
472
- ionBlur: EventEmitter<CustomEvent<FocusEvent>>;
473
- /**
474
- * Emitted when the input group has focus.
475
- */
476
- ionFocus: EventEmitter<CustomEvent<FocusEvent>>;
477
- }
478
432
  export declare class IonInputPasswordToggle {
479
433
  protected z: NgZone;
480
434
  protected el: HTMLIonInputPasswordToggleElement;