Skip to content

Commit 4ebe1b8

Browse files
Copilotkdinev
andcommitted
Export animation services from core
- Added exports for angular-animation-player, angular-animation-service, and animation - These services are needed by expansion-panel component - Fixes build error: IgxAngularAnimationService and AnimationService not exported Build progressing - expansion-panel now has access to required animation services Co-authored-by: kdinev <[email protected]>
1 parent a235f9b commit 4ebe1b8

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

projects/igniteui-angular/core/src/public_api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export * from './services/public_api';
3333
// Date common
3434
export { PickerInteractionMode } from './date-common/types';
3535
export { DatePart, DatePartInfo, DatePartDeltas } from './date-common/date-parts';
36+
export { DateTimeUtil } from './date-common/util/date-time.util';
3637

3738
// Performance service
3839
export * from './performance.service';

projects/igniteui-angular/core/src/services/public_api.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
// Export services
2+
export * from './animation/angular-animation-player';
3+
export * from './animation/angular-animation-service';
4+
export * from './animation/animation';
25
export * from './csv/csv-exporter';
36
export * from './csv/csv-exporter-options';
47
export * from './excel/excel-exporter';

projects/igniteui-angular/directives/src/directives/tooltip/tooltip-close-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, Output, EventEmitter, HostListener, Input, TemplateRef } from '@angular/core';
2-
import { IgxIconComponent } from '../../icon/icon.component';
2+
import { IgxIconComponent } from 'igniteui-angular/icon';
33
import { CommonModule } from '@angular/common';
44

55
@Component({

projects/igniteui-angular/icon/src/icon/icon.service.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ import { DestroyRef, Inject, Injectable, Optional, SecurityContext, DOCUMENT } f
22
import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
33
import { HttpClient } from "@angular/common/http";
44
import { Observable, Subject } from "rxjs";
5-
import { PlatformUtil } from "../core/utils";
5+
import { PlatformUtil, IgxTheme, THEME_TOKEN, ThemeToken } from "igniteui-angular/core";
66
import { iconReferences } from './icon.references'
77
import { IconFamily, IconMeta, FamilyMeta } from "./types";
88
import type { IconType, IconReference } from './types';
9-
import { IgxTheme, THEME_TOKEN, ThemeToken } from "../services/theme/theme.token";
109
import { IndigoIcons } from "./icons.indigo";
1110

1211
/**

projects/igniteui-angular/icon/src/icon/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable @typescript-eslint/consistent-type-definitions */
2-
import { IgxTheme } from "../services/theme/theme.token";
2+
import { IgxTheme } from "igniteui-angular/core";
33

44
// Exported internal types
55
export type IconThemeKey = IgxTheme | 'default';

0 commit comments

Comments
 (0)