igniteui-angular 19.2.0-alpha.2 → 19.2.0-rc.0

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 (77) hide show
  1. package/fesm2022/igniteui-angular.mjs +2380 -2201
  2. package/fesm2022/igniteui-angular.mjs.map +1 -1
  3. package/lib/calendar/calendar.component.d.ts +2 -2
  4. package/lib/calendar/month-picker/month-picker.component.d.ts +2 -2
  5. package/lib/carousel/carousel-base.d.ts +7 -32
  6. package/lib/carousel/carousel.component.d.ts +3 -25
  7. package/lib/carousel/slide.component.d.ts +3 -3
  8. package/lib/checkbox/checkbox-base.directive.d.ts +3 -4
  9. package/lib/core/styles/components/action-strip/_action-strip-theme.scss +6 -0
  10. package/lib/core/styles/components/calendar/_calendar-component.scss +16 -0
  11. package/lib/core/styles/components/calendar/_calendar-theme.scss +92 -44
  12. package/lib/core/styles/components/card/_card-theme.scss +30 -24
  13. package/lib/core/styles/components/chip/_chip-theme.scss +43 -19
  14. package/lib/core/styles/components/grid/_grid-theme.scss +31 -40
  15. package/lib/core/styles/components/input/_input-group-theme.scss +33 -13
  16. package/lib/core/styles/components/list/_list-theme.scss +7 -5
  17. package/lib/core/styles/components/progress/circular/_circular-theme.scss +11 -8
  18. package/lib/core/styles/components/query-builder/_query-builder-component.scss +3 -3
  19. package/lib/core/styles/components/query-builder/_query-builder-theme.scss +25 -5
  20. package/lib/core/styles/components/switch/_switch-component.scss +0 -65
  21. package/lib/core/styles/components/switch/_switch-theme.scss +0 -81
  22. package/lib/core/styles/components/tree/_tree-theme.scss +1 -3
  23. package/lib/data-operations/expressions-tree-util.d.ts +1 -1
  24. package/lib/data-operations/filtering-condition.d.ts +1 -1
  25. package/lib/data-operations/filtering-expression.interface.d.ts +3 -3
  26. package/lib/data-operations/filtering-expressions-tree.d.ts +3 -3
  27. package/lib/data-operations/filtering-strategy.d.ts +2 -1
  28. package/lib/directives/button/button.directive.d.ts +3 -5
  29. package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
  30. package/lib/grids/columns/column.component.d.ts +19 -1
  31. package/lib/grids/common/enums.d.ts +5 -4
  32. package/lib/grids/common/grid.interface.d.ts +1 -0
  33. package/lib/grids/common/random.d.ts +5 -0
  34. package/lib/grids/filtering/advanced-filtering/advanced-filtering-dialog.component.d.ts +2 -5
  35. package/lib/grids/grid-base.directive.d.ts +13 -6
  36. package/lib/grids/hierarchical-grid/events.d.ts +1 -0
  37. package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +22 -2
  38. package/lib/grids/toolbar/grid-toolbar-advanced-filtering.component.d.ts +3 -3
  39. package/lib/query-builder/query-builder-drag.service.d.ts +26 -36
  40. package/lib/query-builder/query-builder-tree.component.d.ts +29 -11
  41. package/lib/query-builder/query-builder.common.d.ts +1 -1
  42. package/migrations/migration-collection.json +10 -0
  43. package/migrations/update-19_1_4/changes/theme-changes.json +29 -0
  44. package/migrations/update-19_1_4/index.d.ts +3 -0
  45. package/migrations/update-19_1_4/index.js +18 -0
  46. package/migrations/update-19_2_0/changes/inputs.json +13 -0
  47. package/migrations/update-19_2_0/changes/theme-changes.json +59 -0
  48. package/migrations/update-19_2_0/index.d.ts +3 -0
  49. package/migrations/update-19_2_0/index.js +18 -0
  50. package/package.json +2 -2
  51. package/schematics/tsconfig.tsbuildinfo +1 -1
  52. package/styles/igniteui-angular-dark.css +1 -1
  53. package/styles/igniteui-angular.css +1 -1
  54. package/styles/igniteui-bootstrap-dark.css +1 -1
  55. package/styles/igniteui-bootstrap-light.css +1 -1
  56. package/styles/igniteui-dark-green.css +1 -1
  57. package/styles/igniteui-fluent-dark-excel.css +1 -1
  58. package/styles/igniteui-fluent-dark-word.css +1 -1
  59. package/styles/igniteui-fluent-dark.css +1 -1
  60. package/styles/igniteui-fluent-light-excel.css +1 -1
  61. package/styles/igniteui-fluent-light-word.css +1 -1
  62. package/styles/igniteui-fluent-light.css +1 -1
  63. package/styles/igniteui-indigo-dark.css +1 -1
  64. package/styles/igniteui-indigo-light.css +1 -1
  65. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  66. package/styles/maps/igniteui-angular.css.map +1 -1
  67. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  68. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  69. package/styles/maps/igniteui-dark-green.css.map +1 -1
  70. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  71. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  72. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  73. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  74. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  75. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  76. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  77. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -4,32 +4,29 @@ import { ExpressionGroupItem, ExpressionItem } from './query-builder.common';
4
4
  import * as i0 from "@angular/core";
5
5
  /** @hidden @internal */
6
6
  export declare class IgxQueryBuilderDragService {
7
+ /** The ExpressionItem that's actually the drop ghost's content */
8
+ dropGhostExpression: ExpressionItem;
9
+ isKeyboardDrag: boolean;
7
10
  private _queryBuilderTreeComponent;
8
11
  private _queryBuilderTreeComponentElRef;
9
- private _queryBuilderTreeComponentDeleteItem;
10
- private _queryBuilderFocusChipAfterDrag;
11
- constructor(_queryBuilderTreeComponent: IgxQueryBuilderTreeComponent, _queryBuilderTreeComponentElRef: ElementRef, _queryBuilderTreeComponentDeleteItem: (expressionItem: ExpressionItem) => void, _queryBuilderFocusChipAfterDrag: (index: number) => void);
12
- dropGhostChipNode: Node;
13
- private sourceExpressionItem;
14
- private sourceElement;
15
- private targetExpressionItem;
16
- private targetElement;
17
- private dropUnder;
12
+ private _sourceExpressionItem;
13
+ private _sourceElement;
14
+ private _targetExpressionItem;
15
+ private _dropUnder;
18
16
  private _ghostChipMousemoveSubscription$;
19
17
  private _keyboardSubscription$;
20
- private _keyDragOffsetIndex;
21
- private _keyDragFirstMove;
22
- private _isKeyboardDrag;
23
- /** stores a flat ordered list of all chips, including +Condition button, while performing the keyboard drag&drop */
24
- private _dropZonesList;
25
- /** stores a flat ordered list of all expressions, including +Condition button, while performing the keyboard drag&drop */
26
- private _expressionsList;
18
+ private _keyDragCurrentIndex;
19
+ private _keyDragInitialIndex;
20
+ private _isKeyDragsFirstMove;
21
+ /** Stores a flat ordered list of possible drop locations as Tuple <[targetExpression, dropUnder]>, while performing the keyboard drag&drop */
22
+ private _possibleDropLocations;
27
23
  private _timeoutId;
28
24
  /** Get the dragged ghost as a HTMLElement*/
29
- private get dragGhostElement();
30
- /** Get the drop ghost as a HTMLElement*/
31
- private get dropGhostElement();
32
- private get mainExpressionTree();
25
+ private get getDragGhostElement();
26
+ /** Get the drop ghost chip component */
27
+ private get getDropGhostElement();
28
+ private get getMainExpressionTree();
29
+ register(tree: IgxQueryBuilderTreeComponent, el: ElementRef): void;
33
30
  /** When chip is picked up for dragging
34
31
  *
35
32
  * @param sourceDragElement The HTML element of the chip that's been dragged
@@ -87,30 +84,23 @@ export declare class IgxQueryBuilderDragService {
87
84
  private dragGhostIsOnDropGhostRow;
88
85
  /** Checks if the dragged ghost is north or south of a target element's center*/
89
86
  private ghostInLowerPart;
90
- /** Create the drop ghost node based on the base chip that's been dragged*/
91
- private createDropGhost;
92
- /** Make a copy of the drag chip and place it in the DOM north or south of the drop chip*/
87
+ /** Make a copy of the _sourceExpressionItem's chip and paste it in the tree north or south of the _targetExpressionItem's chip */
93
88
  private renderDropGhostChip;
94
89
  /** Set the cursor when dragging a ghost*/
95
90
  private setDragCursor;
96
- /** Execute the drop*/
97
- private moveDraggedChipToNewLocation;
91
+ /** Removes the drop ghost expression from the tree and it's chip effectively */
92
+ private clearDropGhost;
98
93
  /** Reset Drag&Drop vars. Optionally the drag source vars too*/
99
94
  private resetDragAndDrop;
95
+ /** Start listening for drag and drop specific keys */
100
96
  private listenToKeyboard;
101
97
  /** Perform up/down movement of drop ghost along the expression tree*/
102
98
  private arrowDrag;
103
- /** Get previous chip area taking into account a possible hidden sub-tree or collapsed base chip*/
104
- private getPreviousChip;
105
- /** Get next chip area taking into account a possible hidden sub-tree or collapsed base chip*/
106
- private getNextChip;
107
- /** Get all expressions from the tree flatten out as a list, including the expression groups*/
108
- private getListedExpressions;
109
- /** Gets all chip elements owned by this tree (discard child trees), AND/OR group roots and '+condition' button, flatten out as a list of HTML elements*/
110
- private getListedDropZones;
111
- /** Determine which chip to be focused after successful drop is completed*/
112
- private calculateDropLocationIndex;
113
- /** Sets the z-index of the drag ghost with a little delay, since we don't have access to ghostCreated() but we know it's executed right after moveStart()*/
99
+ /** Produces a flat ordered list of possible drop locations as Tuple <[targetExpression, dropUnder]>, while performing the keyboard drag&drop */
100
+ private getPossibleDropLocations;
101
+ /** Counts how many chips will be in the tree (from top to bottom) before the dropped one */
102
+ private countChipsBeforeDropLocation;
103
+ /** Sets the z-index of the drag ghost with a little delay, since we don't have access to ghostCreated() but we know it's executed right after moveStart() */
114
104
  private setDragGhostZIndex;
115
105
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxQueryBuilderDragService, never>;
116
106
  static ɵprov: i0.ɵɵInjectableDeclaration<IgxQueryBuilderDragService>;
@@ -1,5 +1,5 @@
1
1
  import { AfterViewInit, EventEmitter, TemplateRef } from '@angular/core';
2
- import { ChangeDetectorRef, ElementRef, OnDestroy } from '@angular/core';
2
+ import { ChangeDetectorRef, QueryList, ElementRef, OnDestroy } from '@angular/core';
3
3
  import { IgxChipComponent } from '../chips/chip.component';
4
4
  import { IQueryBuilderResourceStrings } from '../core/i18n/query-builder-resources';
5
5
  import { PlatformUtil, trackByIdentity } from '../core/utils';
@@ -19,10 +19,18 @@ import * as i0 from "@angular/core";
19
19
  /** @hidden */
20
20
  export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDestroy {
21
21
  cdr: ChangeDetectorRef;
22
+ dragService: IgxQueryBuilderDragService;
22
23
  protected platform: PlatformUtil;
23
- protected el: ElementRef;
24
24
  private elRef;
25
25
  protected _localeId: string;
26
+ /**
27
+ * @hidden @internal
28
+ */
29
+ _expressionTree: IExpressionTree;
30
+ /**
31
+ * @hidden @internal
32
+ */
33
+ _expressionTreeCopy: IExpressionTree;
26
34
  /**
27
35
  * @hidden @internal
28
36
  */
@@ -82,6 +90,10 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
82
90
  * Returns the resource strings.
83
91
  */
84
92
  get resourceStrings(): IQueryBuilderResourceStrings;
93
+ /**
94
+ * Gets/sets the expected return field.
95
+ */
96
+ expectedReturnField: string;
85
97
  /**
86
98
  * Event fired as the expression tree is changed.
87
99
  */
@@ -103,7 +115,10 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
103
115
  private entityChangeDialog;
104
116
  private addExpressionItemDropDown;
105
117
  private groupContextMenuDropDown;
106
- private expressionsChips;
118
+ /**
119
+ * @hidden @internal
120
+ */
121
+ expressionsChips: QueryList<IgxChipComponent>;
107
122
  protected set editingInputsContainer(value: ElementRef);
108
123
  /** @hidden */
109
124
  protected get editingInputsContainer(): ElementRef;
@@ -199,7 +214,6 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
199
214
  private _prevFocusedContainer;
200
215
  private _expandedExpressions;
201
216
  private _fields;
202
- private _expressionTree;
203
217
  private _locale;
204
218
  private _entityNewValue;
205
219
  private _resourceStrings;
@@ -220,8 +234,10 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
220
234
  /** @hidden */
221
235
  protected isAdvancedFiltering(): boolean;
222
236
  /** @hidden */
237
+ protected isHierarchicalNestedQuery(): boolean;
238
+ /** @hidden */
223
239
  protected isSearchValueInputDisabled(): boolean;
224
- constructor(cdr: ChangeDetectorRef, platform: PlatformUtil, el: ElementRef, elRef: ElementRef, _localeId: string);
240
+ constructor(cdr: ChangeDetectorRef, dragService: IgxQueryBuilderDragService, platform: PlatformUtil, elRef: ElementRef, _localeId: string);
225
241
  /**
226
242
  * @hidden @internal
227
243
  */
@@ -314,7 +330,10 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
314
330
  * @hidden @internal
315
331
  */
316
332
  cancelOperandAdd(): void;
317
- private deleteItem;
333
+ /**
334
+ * @hidden @internal
335
+ */
336
+ deleteItem: (expressionItem: ExpressionItem, skipEmit?: boolean) => void;
318
337
  /**
319
338
  * @hidden @internal
320
339
  */
@@ -357,11 +376,10 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
357
376
  * @hidden @internal
358
377
  */
359
378
  onChipRemove(expressionItem: ExpressionItem): void;
360
- private focusChipAfterDrag;
361
379
  /**
362
380
  * @hidden @internal
363
381
  */
364
- dragService: IgxQueryBuilderDragService;
382
+ focusChipAfterDrag: (index: number) => void;
365
383
  /**
366
384
  * @hidden @internal
367
385
  */
@@ -475,9 +493,9 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
475
493
  onReturnFieldSelectChanging(event: IComboSelectionChangingEventArgs | ISelectionEventArgs): void;
476
494
  initExpressionTree(selectedEntityName: string, selectedReturnFields: string[]): void;
477
495
  getSearchValueTemplateContext(defaultSearchValueTemplate: any): any;
478
- private setFormat;
496
+ private getPipeArgs;
479
497
  private selectDefaultCondition;
480
- private setFilters;
498
+ private getFilters;
481
499
  private addGroup;
482
500
  private createExpressionGroupItem;
483
501
  private createExpressionTreeFromGroupItem;
@@ -487,5 +505,5 @@ export declare class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDe
487
505
  /** rootGroup is recreated after clicking Apply, which sets new expressionTree and calls init()*/
488
506
  protected trackExpressionItem: typeof trackByIdentity;
489
507
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxQueryBuilderTreeComponent, never>;
490
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxQueryBuilderTreeComponent, "igx-query-builder-tree", never, { "entities": { "alias": "entities"; "required": false; }; "queryBuilder": { "alias": "queryBuilder"; "required": false; }; "searchValueTemplate": { "alias": "searchValueTemplate"; "required": false; }; "parentExpression": { "alias": "parentExpression"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "expressionTree": { "alias": "expressionTree"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; }, { "expressionTreeChange": "expressionTreeChange"; "inEditModeChange": "inEditModeChange"; }, never, never, true, never>;
508
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxQueryBuilderTreeComponent, "igx-query-builder-tree", never, { "entities": { "alias": "entities"; "required": false; }; "queryBuilder": { "alias": "queryBuilder"; "required": false; }; "searchValueTemplate": { "alias": "searchValueTemplate"; "required": false; }; "parentExpression": { "alias": "parentExpression"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "expressionTree": { "alias": "expressionTree"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "expectedReturnField": { "alias": "expectedReturnField"; "required": false; }; }, { "expressionTreeChange": "expressionTreeChange"; "inEditModeChange": "inEditModeChange"; }, never, never, true, never>;
491
509
  }
@@ -46,6 +46,7 @@ export declare const QueryBuilderSelectors: {
46
46
  FILTER_TREE_EXPRESSION_CONTEXT_MENU: string;
47
47
  FILTER_TREE_EXPRESSION_ITEM: string;
48
48
  FILTER_TREE_EXPRESSION_ITEM_DROP_GHOST: string;
49
+ FILTER_TREE_EXPRESSION_ITEM_KEYBOARD_GHOST: string;
49
50
  FILTER_TREE_EXPRESSION_ITEM_GHOST: string;
50
51
  FILTER_TREE_EXPRESSION_SECTION: string;
51
52
  FILTER_TREE_LINE_AND: string;
@@ -55,5 +56,4 @@ export declare const QueryBuilderSelectors: {
55
56
  QUERY_BUILDER_BODY: string;
56
57
  QUERY_BUILDER_HEADER: string;
57
58
  QUERY_BUILDER_TREE: string;
58
- VIABLE_DROP_AREA: string;
59
59
  };
@@ -216,6 +216,16 @@
216
216
  "version": "19.1.1",
217
217
  "description": "Updates Ignite UI for Angular from v19.1.0 to v19.1.1",
218
218
  "factory": "./update-19_1_1"
219
+ },
220
+ "migration-44": {
221
+ "version": "19.1.4",
222
+ "description": "Updates Ignite UI for Angular from v19.1.0 to v19.1.4",
223
+ "factory": "./update-19_1_4"
224
+ },
225
+ "migration-45": {
226
+ "version": "19.2.0",
227
+ "description": "Updates Ignite UI for Angular from v19.1.0 to v19.2.0",
228
+ "factory": "./update-19_2_0"
219
229
  }
220
230
  }
221
231
  }
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "../../common/schema/theme-changes.schema.json",
3
+ "changes": [
4
+ {
5
+ "name": "$root-summaries-background",
6
+ "remove": true,
7
+ "owner": "grid-theme",
8
+ "type": "property"
9
+ },
10
+ {
11
+ "name": "$root-summaries-text-color",
12
+ "remove": true,
13
+ "owner": "grid-theme",
14
+ "type": "property"
15
+ },
16
+ {
17
+ "name": "$body-summaries-background",
18
+ "remove": true,
19
+ "owner": "grid-theme",
20
+ "type": "property"
21
+ },
22
+ {
23
+ "name": "$body-summaries-text-color",
24
+ "remove": true,
25
+ "owner": "grid-theme",
26
+ "type": "property"
27
+ }
28
+ ]
29
+ }
@@ -0,0 +1,3 @@
1
+ import type { Rule } from '@angular-devkit/schematics';
2
+ declare const _default: () => Rule;
3
+ export default _default;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ const UpdateChanges_1 = require("../common/UpdateChanges");
13
+ const version = '19.1.4';
14
+ exports.default = () => (host, context) => __awaiter(void 0, void 0, void 0, function* () {
15
+ context.logger.info(`Applying migration for Ignite UI for Angular to version ${version}`);
16
+ const update = new UpdateChanges_1.UpdateChanges(__dirname, host, context);
17
+ update.applyChanges();
18
+ });
@@ -0,0 +1,13 @@
1
+ {
2
+ "$schema": "../../common/schema/binding.schema.json",
3
+ "changes": [
4
+ {
5
+ "name": "keyboardSupport",
6
+ "remove": true,
7
+ "owner": {
8
+ "selector": "igx-carousel",
9
+ "type": "component"
10
+ }
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,59 @@
1
+ {
2
+ "$schema": "../../common/schema/theme-changes.schema.json",
3
+ "changes": [
4
+ {
5
+ "name": "$label-invalid-color",
6
+ "remove": true,
7
+ "owner": "switch-theme",
8
+ "type": "property"
9
+ },
10
+ {
11
+ "name": "$track-error-color",
12
+ "remove": true,
13
+ "owner": "switch-theme",
14
+ "type": "property"
15
+ },
16
+ {
17
+ "name": "$thumb-on-error-color",
18
+ "remove": true,
19
+ "owner": "switch-theme",
20
+ "type": "property"
21
+ },
22
+ {
23
+ "name": "$error-color",
24
+ "remove": true,
25
+ "owner": "switch-theme",
26
+ "type": "property"
27
+ },
28
+ {
29
+ "name": "$error-color-hover",
30
+ "remove": true,
31
+ "owner": "switch-theme",
32
+ "type": "property"
33
+ },
34
+ {
35
+ "name": "$date-selected-current-outline",
36
+ "remove": true,
37
+ "owner": "calendar-theme",
38
+ "type": "property"
39
+ },
40
+ {
41
+ "name": "$date-selected-current-hover-outline",
42
+ "remove": true,
43
+ "owner": "calendar-theme",
44
+ "type": "property"
45
+ },
46
+ {
47
+ "name": "$date-selected-current-focus-outline",
48
+ "remove": true,
49
+ "owner": "calendar-theme",
50
+ "type": "property"
51
+ },
52
+ {
53
+ "name": "$date-special-current-border-color",
54
+ "remove": true,
55
+ "owner": "calendar-theme",
56
+ "type": "property"
57
+ }
58
+ ]
59
+ }
@@ -0,0 +1,3 @@
1
+ import type { Rule } from '@angular-devkit/schematics';
2
+ declare const _default: () => Rule;
3
+ export default _default;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ const UpdateChanges_1 = require("../common/UpdateChanges");
13
+ const version = '19.2.0';
14
+ exports.default = () => (host, context) => __awaiter(void 0, void 0, void 0, function* () {
15
+ context.logger.info(`Applying migration for Ignite UI for Angular to version ${version}`);
16
+ const update = new UpdateChanges_1.UpdateChanges(__dirname, host, context);
17
+ update.applyChanges();
18
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "19.2.0-alpha.2",
3
+ "version": "19.2.0-rc.0",
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",
@@ -73,7 +73,7 @@
73
73
  "tslib": "^2.3.0",
74
74
  "igniteui-trial-watermark": "^3.0.2",
75
75
  "lodash-es": "^4.17.21",
76
- "igniteui-theming": "^16.0.0",
76
+ "igniteui-theming": "^17.2.0",
77
77
  "@igniteui/material-icons-extended": "^3.1.0"
78
78
  },
79
79
  "peerDependencies": {