Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
v1.5.0 compatible to v1.4.0 @cloukit/dropout
Browse files Browse the repository at this point in the history
  • Loading branch information
clouless committed Dec 2, 2017
1 parent 5c76d59 commit 377f8d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"COMMENT": "THIS FILE WILL BE PARSED DURING BUILD. IT IS NOT THE ACTUAL PACKAGE FILE PUSHE TO NPMJS!",
"name": "@cloukit/tooltip",
"moduleId": "tooltip",
"version": "1.4.0",
"version": "1.5.0",
"description": "A simple tooltip component",
"license": "MIT",
"author": "codelcou.io",
Expand All @@ -18,7 +18,7 @@
"test": "echo \"ok\""
},
"dependencies": {
"@cloukit/dropout": ">=1.1.0",
"@cloukit/dropout": ">=1.4.0",
"@cloukit/theme": ">=1.6.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/tooltip.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import {
Directive, Input, HostListener, ViewContainerRef, ComponentFactoryResolver, OnDestroy,
} from '@angular/core';
import { DropoutService, DropoutComponentCreationRequest, DropoutComponentRefId, DropoutPlacement } from '@cloukit/dropout';
import { CloukitDropoutService, DropoutComponentCreationRequest, DropoutComponentRefId, DropoutPlacement } from '@cloukit/dropout';
import { CloukitTooltipComponent } from './children/tooltip.component';

@Directive({
Expand All @@ -22,7 +22,7 @@ export class CloukitTooltipDirective implements OnDestroy {

private dropoutRef: DropoutComponentRefId;

constructor(private dropoutService: DropoutService,
constructor(private dropoutService: CloukitDropoutService,
private viewContainerRef: ViewContainerRef,
private componentFactoryResolver: ComponentFactoryResolver) {
}
Expand Down

0 comments on commit 377f8d1

Please sign in to comment.