Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Fixed typo of SkyModalConfigurationInterface and exporting in default…
Browse files Browse the repository at this point in the history
… barrel. (#1034)
  • Loading branch information
Bobby Earl authored and Blackbaud-SteveBrush committed Sep 5, 2017
1 parent b628e35 commit d57e7b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/modules/modal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export { SkyModalInstance } from './modal-instance';
export { SkyModalCloseArgs } from './modal-close-args';
export { SkyModalHostService } from './modal-host.service';
export { SkyModalConfiguration } from './modal-configuration';
export { SkyModalConfigurationInterface } from './modal.interface';

export const SKY_MODAL_PROVIDERS: any[] = [
SkyModalAdapterService
Expand Down
2 changes: 1 addition & 1 deletion src/modules/modal/modal-host.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { SkyModalAdapterService } from './modal-adapter.service';
import { SkyModalComponent } from './modal.component';
import { SkyModalInstance } from './modal-instance';
import { SkyModalHostService } from './modal-host.service';
import { SkyModalConfiguationInterface as IConfig } from './modal.interface';
import { SkyModalConfigurationInterface as IConfig } from './modal.interface';
import { SkyModalConfiguration } from './modal-configuration';

@Component({
Expand Down
2 changes: 1 addition & 1 deletion src/modules/modal/modal.interface.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export interface SkyModalConfiguationInterface {
export interface SkyModalConfigurationInterface {
fullPage?: boolean;
size?: string;
providers?: any[];
Expand Down
2 changes: 1 addition & 1 deletion src/modules/modal/modal.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import { SkyModalInstance } from './modal-instance';
import { SkyModalHostComponent } from './modal-host.component';
import { SkyModalAdapterService } from './modal-adapter.service';
import { SkyModalConfiguationInterface as IConfig } from './modal.interface';
import { SkyModalConfigurationInterface as IConfig } from './modal.interface';

@Injectable()
export class SkyModalService {
Expand Down

0 comments on commit d57e7b4

Please sign in to comment.