igniteui-angular 12.1.7 → 12.1.8

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.
@@ -13,6 +13,15 @@ export interface IResourceStrings extends IGridResourceStrings, ITimePickerResou
13
13
  }
14
14
  /**
15
15
  * @hidden
16
+ * IF YOU EDIT THIS OBJECT, DO NOT FORGET TO UPDATE
17
+ * projects/igniteui-angular-i18n as well (create the appropriately named files,
18
+ * containing the new/updated component string keys and EN strings for values + create a separate issue + pending-localization label)
19
+ *
20
+ * TODO Add automation tests:
21
+ * 1) each of the folders/languages under \projects\igniteui-angular-i18n\src\ contain resources.ts file with matching components count.
22
+ * \projects\igniteui-angular-i18n\src\BG\resources.ts contains IgxResourceStringsBG.count matching this.CurrentResourceStrings.count
23
+ * 2) \igniteui-angular\projects\igniteui-angular\src\public_api.ts --> Check if the new interface is added
24
+ * to IInputResourceStrings (just a proxy as it is later on imported in the angular-i18n package)
16
25
  */
17
26
  export declare const CurrentResourceStrings: {
18
27
  GridResStrings: any;
@@ -236,6 +236,7 @@ export declare const resolveNestedPath: (obj: any, path: string) => any;
236
236
  */
237
237
  export declare const reverseMapper: (path: string, value: any) => {};
238
238
  export declare const yieldingLoop: (count: number, chunkSize: number, callback: (index: number) => void, done: () => void) => void;
239
+ export declare const isConstructor: (ref: any) => boolean;
239
240
  export declare const reverseAnimationResolver: (animation: AnimationReferenceMetadata) => AnimationReferenceMetadata;
240
241
  export declare const isHorizontalAnimation: (animation: AnimationReferenceMetadata) => boolean;
241
242
  export declare const isVerticalAnimation: (animation: AnimationReferenceMetadata) => boolean;
@@ -1,4 +1,4 @@
1
- import { EventEmitter, OnDestroy, ElementRef, NgModuleRef, OnInit, AfterViewInit, Injector, AfterViewChecked, QueryList, Renderer2, PipeTransform } from '@angular/core';
1
+ import { EventEmitter, OnDestroy, ElementRef, NgModuleRef, OnInit, AfterViewInit, Injector, AfterViewChecked, QueryList, Renderer2, PipeTransform, ChangeDetectorRef } from '@angular/core';
2
2
  import { ControlValueAccessor, AbstractControl, ValidationErrors, Validator } from '@angular/forms';
3
3
  import { WEEKDAYS, IFormattingViews, IFormattingOptions } from '../calendar/public_api';
4
4
  import { IgxLabelDirective, IgxInputGroupType } from '../input-group/public_api';
@@ -33,6 +33,7 @@ export declare class IgxDatePickerComponent extends PickerBaseDirective implemen
33
33
  private _injector;
34
34
  private _renderer;
35
35
  private platform;
36
+ private cdr;
36
37
  protected _displayDensityOptions?: IDisplayDensityOptions;
37
38
  protected _inputGroupType?: IgxInputGroupType;
38
39
  /**
@@ -296,7 +297,7 @@ export declare class IgxDatePickerComponent extends PickerBaseDirective implemen
296
297
  private _onChangeCallback;
297
298
  private _onTouchedCallback;
298
299
  private _onValidatorChange;
299
- constructor(element: ElementRef<HTMLElement>, _localeId: string, _overlayService: IgxOverlayService, _moduleRef: NgModuleRef<any>, _injector: Injector, _renderer: Renderer2, platform: PlatformUtil, _displayDensityOptions?: IDisplayDensityOptions, _inputGroupType?: IgxInputGroupType);
300
+ constructor(element: ElementRef<HTMLElement>, _localeId: string, _overlayService: IgxOverlayService, _moduleRef: NgModuleRef<any>, _injector: Injector, _renderer: Renderer2, platform: PlatformUtil, cdr: ChangeDetectorRef, _displayDensityOptions?: IDisplayDensityOptions, _inputGroupType?: IgxInputGroupType);
300
301
  /** @hidden @internal */
301
302
  get required(): boolean;
302
303
  /** @hidden @internal */
@@ -17,8 +17,6 @@ export interface ITabsSelectedItemChangeEventArgs extends ITabsBaseEventArgs {
17
17
  readonly newItem: IgxTabItemDirective;
18
18
  }
19
19
  export declare abstract class IgxTabsDirective extends IgxCarouselComponentBase implements IgxTabsBase, AfterViewInit, OnDestroy {
20
- /** @hidden */
21
- role: string;
22
20
  /**
23
21
  * An @Input property that gets/sets the index of the selected item.
24
22
  * Default value is 0 if contents are defined otherwise defaults to -1.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "12.1.7",
3
+ "version": "12.1.8",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",
package/public_api.d.ts CHANGED
@@ -113,5 +113,7 @@ export { IDatePickerResourceStrings } from './lib/core/i18n/date-picker-resource
113
113
  export { IDateRangePickerResourceStrings } from './lib/core/i18n/date-range-picker-resources';
114
114
  export { IListResourceStrings } from './lib/core/i18n/list-resources';
115
115
  export { ITreeResourceStrings } from './lib/core/i18n/tree-resources';
116
+ export { IInputResourceStrings } from './lib/core/i18n/input-resources';
117
+ export { IChipResourceStrings } from './lib/core/i18n/chip-resources';
116
118
  export { PickerInteractionMode } from './lib/date-common/types';
117
119
  export { SplitterType } from './lib/splitter/splitter.component';