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

Typo and default export of SKyModalConfigurationInterface #1034

Merged
merged 2 commits into from
Sep 5, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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