igniteui-angular 17.1.0-rc.0 → 17.1.1

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 (58) hide show
  1. package/esm2022/lib/avatar/avatar.component.mjs +3 -3
  2. package/esm2022/lib/badge/badge.component.mjs +2 -2
  3. package/esm2022/lib/banner/banner.component.mjs +1 -1
  4. package/esm2022/lib/calendar/calendar-base.mjs +3 -3
  5. package/esm2022/lib/calendar/calendar.component.mjs +22 -22
  6. package/esm2022/lib/calendar/calendar.mjs +9 -23
  7. package/esm2022/lib/calendar/days-view/daysview-navigation.service.mjs +2 -3
  8. package/esm2022/lib/calendar/month-picker/month-picker.component.mjs +3 -3
  9. package/esm2022/lib/card/card.component.mjs +3 -3
  10. package/esm2022/lib/carousel/carousel-base.mjs +2 -7
  11. package/esm2022/lib/carousel/carousel.component.mjs +3 -7
  12. package/esm2022/lib/carousel/enums.mjs +11 -0
  13. package/esm2022/lib/carousel/public_api.mjs +3 -2
  14. package/esm2022/lib/carousel/slide.component.mjs +1 -1
  15. package/esm2022/lib/checkbox/checkbox.component.mjs +2 -2
  16. package/esm2022/lib/chips/chip.component.mjs +2 -2
  17. package/esm2022/lib/combo/combo.common.mjs +7 -15
  18. package/esm2022/lib/core/selection.mjs +8 -1
  19. package/esm2022/lib/data-operations/data-util.mjs +2 -2
  20. package/esm2022/lib/date-common/types.mjs +3 -3
  21. package/esm2022/lib/directives/button/button-base.mjs +2 -2
  22. package/esm2022/lib/directives/button/button.directive.mjs +2 -2
  23. package/esm2022/lib/directives/divider/divider.directive.mjs +2 -2
  24. package/esm2022/lib/directives/mask/mask.directive.mjs +1 -1
  25. package/esm2022/lib/drop-down/drop-down.common.mjs +3 -3
  26. package/esm2022/lib/drop-down/drop-down.component.mjs +3 -3
  27. package/esm2022/lib/expansion-panel/expansion-panel-header.component.mjs +2 -2
  28. package/esm2022/lib/expansion-panel/expansion-panel.common.mjs +2 -2
  29. package/esm2022/lib/grids/common/grid.interface.mjs +1 -1
  30. package/esm2022/lib/grids/grid-base.directive.mjs +2 -2
  31. package/esm2022/lib/grids/hierarchical-grid/row-island.component.mjs +39 -10
  32. package/esm2022/lib/input-group/input-group.component.mjs +2 -2
  33. package/esm2022/lib/input-group/inputGroupType.mjs +3 -3
  34. package/esm2022/lib/progressbar/progressbar.component.mjs +3 -3
  35. package/esm2022/lib/select/select.component.mjs +1 -9
  36. package/esm2022/lib/services/direction/directionality.mjs +2 -2
  37. package/esm2022/lib/splitter/splitter.component.mjs +3 -3
  38. package/esm2022/lib/stepper/step/step.component.mjs +3 -2
  39. package/esm2022/lib/stepper/stepper.common.mjs +3 -3
  40. package/esm2022/lib/stepper/stepper.component.mjs +1 -1
  41. package/esm2022/lib/tabs/tabs/tabs.component.mjs +11 -18
  42. package/esm2022/lib/tree/common.mjs +4 -4
  43. package/fesm2022/igniteui-angular.mjs +136 -136
  44. package/fesm2022/igniteui-angular.mjs.map +1 -1
  45. package/lib/calendar/calendar.d.ts +1 -1
  46. package/lib/carousel/carousel-base.d.ts +1 -6
  47. package/lib/carousel/carousel.component.d.ts +2 -6
  48. package/lib/carousel/enums.d.ts +11 -0
  49. package/lib/carousel/public_api.d.ts +2 -1
  50. package/lib/combo/combo.common.d.ts +1 -1
  51. package/lib/core/selection.d.ts +5 -0
  52. package/lib/grids/common/grid.interface.d.ts +3 -0
  53. package/lib/grids/hierarchical-grid/row-island.component.d.ts +25 -5
  54. package/lib/select/select.component.d.ts +0 -4
  55. package/lib/splitter/splitter.component.d.ts +1 -1
  56. package/lib/stepper/stepper.common.d.ts +2 -1
  57. package/lib/stepper/stepper.component.d.ts +2 -1
  58. package/package.json +2 -2
@@ -8,7 +8,7 @@ export declare const CalendarSelection: {
8
8
  RANGE: "range";
9
9
  };
10
10
  export type CalendarSelection = (typeof CalendarSelection)[keyof typeof CalendarSelection];
11
- export declare enum ScrollMonth {
11
+ export declare const enum ScrollMonth {
12
12
  PREV = "prev",
13
13
  NEXT = "next",
14
14
  NONE = "none"
@@ -1,17 +1,12 @@
1
1
  import { AnimationReferenceMetadata } from '@angular/animations';
2
2
  import { ChangeDetectorRef, EventEmitter } from '@angular/core';
3
3
  import { AnimationPlayer, AnimationService } from '../services/animation/animation';
4
+ import { HorizontalAnimationType } from './enums';
4
5
  export declare enum Direction {
5
6
  NONE = 0,
6
7
  NEXT = 1,
7
8
  PREV = 2
8
9
  }
9
- export declare const HorizontalAnimationType: {
10
- none: "none";
11
- slide: "slide";
12
- fade: "fade";
13
- };
14
- export type HorizontalAnimationType = (typeof HorizontalAnimationType)[keyof typeof HorizontalAnimationType];
15
10
  export interface CarouselAnimationSettings {
16
11
  enterAnimation: AnimationReferenceMetadata;
17
12
  leaveAnimation: AnimationReferenceMetadata;
@@ -3,14 +3,10 @@ import { HammerGestureConfig } from '@angular/platform-browser';
3
3
  import { ICarouselResourceStrings } from '../core/i18n/carousel-resources';
4
4
  import { IBaseEventArgs, PlatformUtil } from '../core/utils';
5
5
  import { AnimationService } from '../services/animation/animation';
6
- import { Direction, HorizontalAnimationType, IgxCarouselComponentBase } from './carousel-base';
6
+ import { Direction, IgxCarouselComponentBase } from './carousel-base';
7
7
  import { IgxSlideComponent } from './slide.component';
8
+ import { CarouselIndicatorsOrientation, HorizontalAnimationType } from './enums';
8
9
  import * as i0 from "@angular/core";
9
- export declare const CarouselIndicatorsOrientation: {
10
- bottom: "bottom";
11
- top: "top";
12
- };
13
- export type CarouselIndicatorsOrientation = (typeof CarouselIndicatorsOrientation)[keyof typeof CarouselIndicatorsOrientation];
14
10
  export declare class CarouselHammerConfig extends HammerGestureConfig {
15
11
  overrides: {
16
12
  pan: {
@@ -0,0 +1,11 @@
1
+ export declare const HorizontalAnimationType: {
2
+ none: "none";
3
+ slide: "slide";
4
+ fade: "fade";
5
+ };
6
+ export type HorizontalAnimationType = (typeof HorizontalAnimationType)[keyof typeof HorizontalAnimationType];
7
+ export declare const CarouselIndicatorsOrientation: {
8
+ bottom: "bottom";
9
+ top: "top";
10
+ };
11
+ export type CarouselIndicatorsOrientation = (typeof CarouselIndicatorsOrientation)[keyof typeof CarouselIndicatorsOrientation];
@@ -1,8 +1,9 @@
1
1
  import { IgxCarouselComponent } from './carousel.component';
2
2
  import { IgxCarouselIndicatorDirective, IgxCarouselNextButtonDirective, IgxCarouselPrevButtonDirective } from './carousel.directives';
3
3
  import { IgxSlideComponent } from './slide.component';
4
- export { Direction, HorizontalAnimationType, CarouselAnimationSettings } from './carousel-base';
4
+ export { Direction, CarouselAnimationSettings } from './carousel-base';
5
5
  export * from './carousel.component';
6
6
  export * from './slide.component';
7
7
  export * from './carousel.directives';
8
+ export { CarouselIndicatorsOrientation, HorizontalAnimationType } from './enums';
8
9
  export declare const IGX_CAROUSEL_DIRECTIVES: readonly [typeof IgxCarouselComponent, typeof IgxSlideComponent, typeof IgxCarouselIndicatorDirective, typeof IgxCarouselNextButtonDirective, typeof IgxCarouselPrevButtonDirective];
@@ -46,7 +46,7 @@ export interface IgxComboBase {
46
46
  setActiveDescendant(): void;
47
47
  }
48
48
  /** @hidden @internal */
49
- export declare enum DataTypes {
49
+ export declare const enum DataTypes {
50
50
  EMPTY = "empty",
51
51
  PRIMITIVE = "primitive",
52
52
  COMPLEX = "complex",
@@ -25,6 +25,11 @@ export declare class IgxSelectionAPIService {
25
25
  * @param componentID ID of the component.
26
26
  */
27
27
  clear(componentID: string): void;
28
+ /**
29
+ * Removes selection for a component.
30
+ * @param componentID
31
+ */
32
+ delete(componentID: string): void;
28
33
  /**
29
34
  * Get current component selection length.
30
35
  *
@@ -1296,6 +1296,9 @@ export interface IgxHeadSelectorTemplateContext {
1296
1296
  export interface IgxSummaryTemplateContext {
1297
1297
  $implicit: IgxSummaryResult[];
1298
1298
  }
1299
+ export interface IgxGridPaginatorTemplateContext {
1300
+ $implicit: GridType;
1301
+ }
1299
1302
  /**
1300
1303
  * An interface describing settings for row/column pinning position.
1301
1304
  */
@@ -11,7 +11,7 @@ import { IgxColumnComponent } from '../columns/column.component';
11
11
  import { IgxRowIslandAPIService } from './row-island-api.service';
12
12
  import { PlatformUtil } from '../../core/utils';
13
13
  import { IgxColumnResizingService } from '../resizing/resizing.service';
14
- import { GridType } from '../common/grid.interface';
14
+ import { GridType, IgxGridPaginatorTemplateContext } from '../common/grid.interface';
15
15
  import { IgxGridToolbarTemplateContext } from '../toolbar/common';
16
16
  import { IgxActionStripToken } from '../../action-strip/token';
17
17
  import { IgxFlatTransactionFactory } from '../../services/transaction/transaction-factory.service';
@@ -42,10 +42,28 @@ export declare class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirect
42
42
  * @hidden
43
43
  */
44
44
  childColumns: QueryList<IgxColumnComponent>;
45
- islandToolbarTemplate: TemplateRef<IgxGridToolbarTemplateContext>;
46
- islandPaginatorTemplate: TemplateRef<any>;
45
+ /**
46
+ * @hidden
47
+ * @internal
48
+ */
49
+ protected toolbarDirectiveTemplate: TemplateRef<IgxGridToolbarTemplateContext>;
50
+ /**
51
+ * @hidden
52
+ * @internal
53
+ */
54
+ protected paginatorDirectiveTemplate: TemplateRef<any>;
55
+ /**
56
+ * Sets/Gets the toolbar template for each child grid created from this row island.
57
+ */
58
+ get toolbarTemplate(): TemplateRef<IgxGridToolbarTemplateContext>;
59
+ set toolbarTemplate(template: TemplateRef<IgxGridToolbarTemplateContext>);
60
+ /**
61
+ * Sets/Gets the paginator template for each child grid created from this row island.
62
+ */
63
+ get paginatorTemplate(): TemplateRef<IgxGridPaginatorTemplateContext>;
64
+ set paginatorTemplate(template: TemplateRef<IgxGridPaginatorTemplateContext>);
47
65
  /** @hidden @internal **/
48
- actionStrips: QueryList<IgxActionStripToken>;
66
+ protected actionStrips: QueryList<IgxActionStripToken>;
49
67
  /**
50
68
  * @hidden
51
69
  */
@@ -89,6 +107,8 @@ export declare class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirect
89
107
  private ri_columnListDiffer;
90
108
  private layout_id;
91
109
  private isInit;
110
+ private _toolbarTemplate;
111
+ private _paginatorTemplate;
92
112
  /**
93
113
  * Sets if all immediate children of the grids for this `IgxRowIslandComponent` should be expanded/collapsed.
94
114
  * ```html
@@ -157,6 +177,6 @@ export declare class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirect
157
177
  protected updateChildren(): void;
158
178
  private cleanGridState;
159
179
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxRowIslandComponent, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, null, null, null]>;
160
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxRowIslandComponent, "igx-row-island", never, { "key": { "alias": "key"; "required": false; }; "expandChildren": { "alias": "expandChildren"; "required": false; }; }, { "layoutChange": "layoutChange"; "gridCreated": "gridCreated"; "gridInitialized": "gridInitialized"; }, ["islandToolbarTemplate", "islandPaginatorTemplate", "children", "childColumns", "actionStrips"], never, true, never>;
180
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxRowIslandComponent, "igx-row-island", never, { "key": { "alias": "key"; "required": false; }; "toolbarTemplate": { "alias": "toolbarTemplate"; "required": false; }; "paginatorTemplate": { "alias": "paginatorTemplate"; "required": false; }; "expandChildren": { "alias": "expandChildren"; "required": false; }; }, { "layoutChange": "layoutChange"; "gridCreated": "gridCreated"; "gridInitialized": "gridInitialized"; }, ["toolbarDirectiveTemplate", "paginatorDirectiveTemplate", "children", "childColumns", "actionStrips"], never, true, never>;
161
181
  static ngAcceptInputType_expandChildren: unknown;
162
182
  }
@@ -277,10 +277,6 @@ export declare class IgxSelectComponent extends IgxDropDownComponent implements
277
277
  ngAfterViewInit(): void;
278
278
  /** @hidden @internal */
279
279
  ngAfterContentChecked(): void;
280
- /**
281
- * @hidden @internal
282
- */
283
- ngOnDestroy(): void;
284
280
  /**
285
281
  * @hidden @internal
286
282
  * Prevent input blur - closing the items container on Header/Footer Template click.
@@ -182,7 +182,6 @@ export declare class IgxSplitterComponent implements AfterContentInit {
182
182
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxSplitterComponent, never>;
183
183
  static ɵcmp: i0.ɵɵComponentDeclaration<IgxSplitterComponent, "igx-splitter", never, { "type": { "alias": "type"; "required": false; }; }, { "resizeStart": "resizeStart"; "resizing": "resizing"; "resizeEnd": "resizeEnd"; }, ["panes"], ["igx-splitter-pane"], true, never>;
184
184
  }
185
- export declare const SPLITTER_INTERACTION_KEYS: Set<string>;
186
185
  /**
187
186
  * @hidden @internal
188
187
  * Represents the draggable bar that visually separates panes and allows for changing their sizes.
@@ -238,6 +237,7 @@ export declare class IgxSplitBarComponent {
238
237
  * A temporary holder for the pointer coordinates.
239
238
  */
240
239
  private startPoint;
240
+ private interactionKeys;
241
241
  /**
242
242
  * @hidden @internal
243
243
  */
@@ -3,8 +3,9 @@ import { IBaseCancelableBrowserEventArgs, IBaseEventArgs } from '../core/utils';
3
3
  import { IgxStepperComponent } from './stepper.component';
4
4
  import { IgxStepComponent } from './step/step.component';
5
5
  import { IgxStepActiveIndicatorDirective, IgxStepCompletedIndicatorDirective, IgxStepContentDirective, IgxStepIndicatorDirective, IgxStepInvalidIndicatorDirective } from './stepper.directive';
6
- import { Direction, HorizontalAnimationType, IgxCarouselComponentBase } from '../carousel/carousel-base';
6
+ import { Direction, IgxCarouselComponentBase } from '../carousel/carousel-base';
7
7
  import { ToggleAnimationPlayer, ToggleAnimationSettings } from '../expansion-panel/toggle-animation-component';
8
+ import { HorizontalAnimationType } from '../carousel/enums';
8
9
  export interface IgxStepper extends IgxCarouselComponentBase {
9
10
  steps: IgxStepComponent[];
10
11
  /** @hidden @internal */
@@ -1,11 +1,12 @@
1
1
  import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
2
- import { HorizontalAnimationType, IgxCarouselComponentBase } from '../carousel/carousel-base';
2
+ import { IgxCarouselComponentBase } from '../carousel/carousel-base';
3
3
  import { ToggleAnimationSettings } from '../expansion-panel/toggle-animation-component';
4
4
  import { AnimationService } from '../services/animation/animation';
5
5
  import { IgxStepComponent } from './step/step.component';
6
6
  import { IgxStepper, IgxStepperOrientation, IgxStepperTitlePosition, IgxStepType, IStepChangedEventArgs, IStepChangingEventArgs, VerticalAnimationType } from './stepper.common';
7
7
  import { IgxStepActiveIndicatorDirective, IgxStepCompletedIndicatorDirective, IgxStepInvalidIndicatorDirective } from './stepper.directive';
8
8
  import { IgxStepperService } from './stepper.service';
9
+ import { HorizontalAnimationType } from '../carousel/enums';
9
10
  import * as i0 from "@angular/core";
10
11
  /**
11
12
  * IgxStepper provides a wizard-like workflow by dividing content into logical steps.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "17.1.0-rc.0",
3
+ "version": "17.1.1",
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",
@@ -94,7 +94,7 @@
94
94
  }
95
95
  },
96
96
  "igxDevDependencies": {
97
- "@igniteui/angular-schematics": "~17.1.1316-rc.0"
97
+ "@igniteui/angular-schematics": "~17.1.1316"
98
98
  },
99
99
  "ng-update": {
100
100
  "migrations": "./migrations/migration-collection.json",