igniteui-angular 17.2.25 → 17.2.27

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.
Files changed (26) hide show
  1. package/esm2022/lib/avatar/avatar.component.mjs +17 -2
  2. package/esm2022/lib/calendar/common/calendar-view.directive.mjs +3 -2
  3. package/esm2022/lib/calendar/common/model.mjs +3 -2
  4. package/esm2022/lib/core/utils.mjs +30 -11
  5. package/esm2022/lib/date-picker/date-picker.component.mjs +7 -3
  6. package/esm2022/lib/date-range-picker/date-range-picker.component.mjs +2 -2
  7. package/esm2022/lib/directives/drag-drop/drag-drop.directive.mjs +20 -22
  8. package/esm2022/lib/directives/for-of/for_of.directive.mjs +5 -3
  9. package/esm2022/lib/grids/grid-base.directive.mjs +2 -2
  10. package/esm2022/lib/grids/moving/moving.drag.directive.mjs +3 -3
  11. package/esm2022/lib/query-builder/query-builder.component.mjs +9 -19
  12. package/esm2022/lib/services/animation/angular-animation-player.mjs +4 -2
  13. package/esm2022/lib/tabs/tabs/tab-header.component.mjs +7 -5
  14. package/esm2022/lib/tabs/tabs/tabs.component.mjs +15 -11
  15. package/fesm2022/igniteui-angular.mjs +106 -71
  16. package/fesm2022/igniteui-angular.mjs.map +1 -1
  17. package/lib/avatar/avatar.component.d.ts +3 -1
  18. package/lib/core/styles/components/action-strip/_action-strip-component.scss +1 -1
  19. package/lib/core/styles/components/grid/_grid-component.scss +1 -0
  20. package/lib/core/styles/components/paginator/_paginator-component.scss +1 -1
  21. package/lib/core/styles/components/query-builder/_query-builder-component.scss +9 -1
  22. package/lib/core/utils.d.ts +5 -0
  23. package/lib/date-picker/date-picker.component.d.ts +2 -1
  24. package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
  25. package/lib/tabs/tabs/tabs.component.d.ts +3 -1
  26. package/package.json +1 -1
@@ -148,7 +148,8 @@ export declare class IgxAvatarComponent implements OnInit {
148
148
  * ```
149
149
  * @igxFriendlyName Image URL
150
150
  */
151
- src: string;
151
+ set src(value: string);
152
+ get src(): string;
152
153
  /** @hidden @internal */
153
154
  protected defaultTemplate: TemplateRef<any>;
154
155
  /** @hidden @internal */
@@ -162,6 +163,7 @@ export declare class IgxAvatarComponent implements OnInit {
162
163
  * @internal
163
164
  */
164
165
  private _size;
166
+ private _src;
165
167
  /**
166
168
  * Returns the size of the avatar.
167
169
  *
@@ -10,7 +10,7 @@
10
10
  @include register-component(
11
11
  $name: string.slice($this, 2, -1),
12
12
  $deps: (
13
- igx-button,
13
+ igx-icon-button,
14
14
  igx-drop-down,
15
15
  igx-icon,
16
16
  )
@@ -18,6 +18,7 @@
18
18
  igx-checkbox,
19
19
  igx-chip,
20
20
  igx-grid-summary,
21
+ igx-icon-button,
21
22
  igx-input-group,
22
23
  igx-grid-toolbar,
23
24
  igx-paginator,
@@ -10,7 +10,7 @@
10
10
  $name: string.slice($this, 2, -1),
11
11
  $deps: (
12
12
  igx-button,
13
- igx-icon,
13
+ igx-icon-button,
14
14
  igx-input-group,
15
15
  )
16
16
  );
@@ -13,7 +13,15 @@
13
13
  $this: bem--selector-to-string(&);
14
14
  @include register-component(
15
15
  $name: string.slice($this, 2, -1),
16
- $deps: ()
16
+ $deps: (
17
+ igx-icon,
18
+ igx-button,
19
+ igx-chip,
20
+ igx-select,
21
+ igx-input-button,
22
+ igx-icon-button,
23
+ igx-overlay,
24
+ )
17
25
  );
18
26
 
19
27
  @extend %advanced-filter !optional;
@@ -299,3 +299,8 @@ export declare function modulo(n: number, d: number): number;
299
299
  * ```
300
300
  */
301
301
  export declare function intoChunks<T>(arr: T[], size: number): Generator<T[], void, unknown>;
302
+ /**
303
+ * @param path - The URI path to be normalized.
304
+ * @returns string encoded using the encodeURI function.
305
+ */
306
+ export declare function normalizeURI(path: string): string;
@@ -251,6 +251,7 @@ export declare class IgxDatePickerComponent extends PickerBaseDirective implemen
251
251
  clearComponents: QueryList<IgxPickerClearComponent>;
252
252
  /** @hidden @internal */
253
253
  label: IgxLabelDirective;
254
+ private headerTitleTemplate;
254
255
  private headerTemplate;
255
256
  private dateTimeEditor;
256
257
  private viewContainerRef;
@@ -416,7 +417,7 @@ export declare class IgxDatePickerComponent extends PickerBaseDirective implemen
416
417
  private _initializeCalendarContainer;
417
418
  private setCalendarViewDate;
418
419
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxDatePickerComponent, [null, null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
419
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxDatePickerComponent, "igx-date-picker", never, { "hideOutsideDays": { "alias": "hideOutsideDays"; "required": false; }; "displayMonthsCount": { "alias": "displayMonthsCount"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "headerOrientation": { "alias": "headerOrientation"; "required": false; }; "todayButtonLabel": { "alias": "todayButtonLabel"; "required": false; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; }; "spinLoop": { "alias": "spinLoop"; "required": false; }; "spinDelta": { "alias": "spinDelta"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "id": { "alias": "id"; "required": false; }; "formatViews": { "alias": "formatViews"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "calendarFormat": { "alias": "calendarFormat"; "required": false; }; "value": { "alias": "value"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "valueChange": "valueChange"; "validationFailed": "validationFailed"; }, ["label", "headerTemplate", "subheaderTemplate", "pickerActions", "clearComponents"], ["[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
420
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxDatePickerComponent, "igx-date-picker", never, { "hideOutsideDays": { "alias": "hideOutsideDays"; "required": false; }; "displayMonthsCount": { "alias": "displayMonthsCount"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "headerOrientation": { "alias": "headerOrientation"; "required": false; }; "todayButtonLabel": { "alias": "todayButtonLabel"; "required": false; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; }; "spinLoop": { "alias": "spinLoop"; "required": false; }; "spinDelta": { "alias": "spinDelta"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "id": { "alias": "id"; "required": false; }; "formatViews": { "alias": "formatViews"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "calendarFormat": { "alias": "calendarFormat"; "required": false; }; "value": { "alias": "value"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "valueChange": "valueChange"; "validationFailed": "validationFailed"; }, ["label", "headerTitleTemplate", "headerTemplate", "subheaderTemplate", "pickerActions", "clearComponents"], ["[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
420
421
  static ngAcceptInputType_hideOutsideDays: unknown;
421
422
  static ngAcceptInputType_showWeekNumbers: unknown;
422
423
  static ngAcceptInputType_spinLoop: unknown;
@@ -563,6 +563,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
563
563
  * @hidden
564
564
  */
565
565
  onTransitionEnd(event: any): void;
566
+ protected clearGhost(): void;
566
567
  /**
567
568
  * @hidden
568
569
  * Create ghost element - if a Node object is provided it creates a clone of that node,
@@ -1,4 +1,5 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy } from '@angular/core';
2
+ import { PlatformUtil } from '../../core/utils';
2
3
  import { AnimationService } from '../../services/animation/animation';
3
4
  import { IgxDirectionality } from '../../services/direction/directionality';
4
5
  import { IgxTabsDirective } from '../tabs.directive';
@@ -42,6 +43,7 @@ export type IgxTabsAlignment = (typeof IgxTabsAlignment)[keyof typeof IgxTabsAli
42
43
  */
43
44
  export declare class IgxTabsComponent extends IgxTabsDirective implements AfterViewInit, OnDestroy {
44
45
  private ngZone;
46
+ private platform;
45
47
  /**
46
48
  * Gets/Sets the tab alignment. Defaults to `start`.
47
49
  */
@@ -69,7 +71,7 @@ export declare class IgxTabsComponent extends IgxTabsDirective implements AfterV
69
71
  protected componentName: string;
70
72
  private _tabAlignment;
71
73
  private _resizeObserver;
72
- constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, dir: IgxDirectionality);
74
+ constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, platform: PlatformUtil, dir: IgxDirectionality);
73
75
  /** @hidden @internal */
74
76
  ngAfterViewInit(): void;
75
77
  /** @hidden @internal */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "17.2.25",
3
+ "version": "17.2.27",
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",