ecabs-components 1.1.34 → 1.1.35

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.
@@ -0,0 +1,8 @@
1
+ export declare enum WaypointTypeEnum {
2
+ PICKUP = "PICKUP",
3
+ DROPOFF = "DROPOFF",
4
+ GENERIC = "GENERIC",
5
+ DIVERSION = "DIVERSION",
6
+ CUSTOM = "CUSTOM",
7
+ LOCATION = "LOCATION"
8
+ }
@@ -43,6 +43,7 @@ export declare class EcabsBasePhoneComponent extends _NgxMatIntlTelInputMixinBas
43
43
  countryChanged: EventEmitter<Country>;
44
44
  matMenu: MatMenu | undefined;
45
45
  searchInput: ElementRef;
46
+ matCustomInput: ElementRef;
46
47
  id: string;
47
48
  get shouldLabelFloat(): boolean;
48
49
  static nextId: number;
@@ -1,5 +1,5 @@
1
1
  import { DecimalPipe } from '@angular/common';
2
- import { AfterViewInit, ChangeDetectorRef, Injector, OnInit } from '@angular/core';
2
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, Injector, OnInit } from '@angular/core';
3
3
  import { ControlValueAccessor } from '@angular/forms';
4
4
  import EcabsElementBaseComponent from '../base/element-base';
5
5
  import { EcabsDatePickerTranslations } from '../base/models/ecabs-date-picker-translations.models';
@@ -13,6 +13,8 @@ export declare class EcabsDateTimePickerComponent extends EcabsElementBaseCompon
13
13
  private readonly cd;
14
14
  private readonly ecabsDatePickerHeaderService;
15
15
  private readonly unsubscribeService;
16
+ matCustomInput: ElementRef;
17
+ matCustomButton: ElementRef;
16
18
  minDate: Date;
17
19
  maxDate: Date;
18
20
  touchUi: boolean;
@@ -1,10 +1,11 @@
1
- import { AfterViewInit, DestroyRef, EventEmitter, Injector, OnInit } from '@angular/core';
1
+ import { AfterViewInit, DestroyRef, ElementRef, EventEmitter, Injector, OnInit } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
3
  import EcabsElementBaseComponent from '../base/element-base';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class EcabsInputComponent extends EcabsElementBaseComponent implements ControlValueAccessor, AfterViewInit, OnInit {
6
6
  private injector;
7
7
  private readonly destroyRef;
8
+ matCustomInput: ElementRef;
8
9
  digitsOnly: boolean;
9
10
  allowDecimal: boolean;
10
11
  allowHyphen: boolean;
@@ -4,16 +4,19 @@ import { ControlValueAccessor } from '@angular/forms';
4
4
  import { UnsubscribeService } from '../../public-api';
5
5
  import EcabsElementBaseComponent from '../base/element-base';
6
6
  import PlaceResult = google.maps.places.PlaceResult;
7
+ import { WaypointTypeEnum } from '../base/consts/waypoint.consts';
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class EcabsPlaceAutocompleteComponent extends EcabsElementBaseComponent implements OnDestroy, OnChanges, AfterViewInit, ControlValueAccessor {
9
10
  private readonly ngZone;
10
11
  private readonly unsubscribeService;
11
12
  private readonly elementRef;
12
13
  private readonly injector;
14
+ matCustomInput: ElementRef;
13
15
  showDeleteItem: boolean;
14
16
  showSuffix: boolean;
15
17
  countryCode: string;
16
18
  googleLoaded: boolean;
19
+ waypointType: WaypointTypeEnum;
17
20
  readonly placeResult: EventEmitter<{
18
21
  place: PlaceResult;
19
22
  text: string;
@@ -37,5 +40,5 @@ export declare class EcabsPlaceAutocompleteComponent extends EcabsElementBaseCom
37
40
  private initGoogle;
38
41
  private getElement;
39
42
  static ɵfac: i0.ɵɵFactoryDeclaration<EcabsPlaceAutocompleteComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<EcabsPlaceAutocompleteComponent, "ecabs-place-autocomplete", never, { "showDeleteItem": { "alias": "showDeleteItem"; "required": false; }; "showSuffix": { "alias": "showSuffix"; "required": false; }; "countryCode": { "alias": "countryCode"; "required": false; }; "googleLoaded": { "alias": "googleLoaded"; "required": false; }; }, { "placeResult": "placeResult"; "deleteItem": "deleteItem"; }, never, never, false, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<EcabsPlaceAutocompleteComponent, "ecabs-place-autocomplete", never, { "showDeleteItem": { "alias": "showDeleteItem"; "required": false; }; "showSuffix": { "alias": "showSuffix"; "required": false; }; "countryCode": { "alias": "countryCode"; "required": false; }; "googleLoaded": { "alias": "googleLoaded"; "required": false; }; "waypointType": { "alias": "waypointType"; "required": false; }; }, { "placeResult": "placeResult"; "deleteItem": "deleteItem"; }, never, never, false, never>;
41
44
  }
@@ -1,9 +1,10 @@
1
- import { AfterViewInit, Injector } from '@angular/core';
1
+ import { AfterViewInit, ElementRef, Injector } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
3
  import EcabsElementBaseComponent from '../base/element-base';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class EcabsTextareaComponent extends EcabsElementBaseComponent implements ControlValueAccessor, AfterViewInit {
6
6
  private injector;
7
+ matCustomInput: ElementRef;
7
8
  rows: number;
8
9
  val: string;
9
10
  get value(): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecabs-components",
3
- "version": "1.1.34",
3
+ "version": "1.1.35",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^16.2.12",
6
6
  "@angular/common": "^16.2.12",
package/public-api.d.ts CHANGED
@@ -125,3 +125,4 @@ export * from './lib/ecabs-multiple-dates-picker/ecabs-multiple-dates-picker.com
125
125
  export * from './lib/base/services/ecabs-date-picker-translations.service';
126
126
  export * from './lib/base/utils/object-utils';
127
127
  export * from './lib/base/consts/buttons.consts';
128
+ export * from './lib/base/consts/waypoint.consts';