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

Commit 377f8d1

Browse files
author
clouless
committed
v1.5.0 compatible to v1.4.0 @cloukit/dropout
1 parent 5c76d59 commit 377f8d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"COMMENT": "THIS FILE WILL BE PARSED DURING BUILD. IT IS NOT THE ACTUAL PACKAGE FILE PUSHE TO NPMJS!",
33
"name": "@cloukit/tooltip",
44
"moduleId": "tooltip",
5-
"version": "1.4.0",
5+
"version": "1.5.0",
66
"description": "A simple tooltip component",
77
"license": "MIT",
88
"author": "codelcou.io",
@@ -18,7 +18,7 @@
1818
"test": "echo \"ok\""
1919
},
2020
"dependencies": {
21-
"@cloukit/dropout": ">=1.1.0",
21+
"@cloukit/dropout": ">=1.4.0",
2222
"@cloukit/theme": ">=1.6.1"
2323
},
2424
"devDependencies": {

src/components/tooltip.directive.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import {
77
Directive, Input, HostListener, ViewContainerRef, ComponentFactoryResolver, OnDestroy,
88
} from '@angular/core';
9-
import { DropoutService, DropoutComponentCreationRequest, DropoutComponentRefId, DropoutPlacement } from '@cloukit/dropout';
9+
import { CloukitDropoutService, DropoutComponentCreationRequest, DropoutComponentRefId, DropoutPlacement } from '@cloukit/dropout';
1010
import { CloukitTooltipComponent } from './children/tooltip.component';
1111

1212
@Directive({
@@ -22,7 +22,7 @@ export class CloukitTooltipDirective implements OnDestroy {
2222

2323
private dropoutRef: DropoutComponentRefId;
2424

25-
constructor(private dropoutService: DropoutService,
25+
constructor(private dropoutService: CloukitDropoutService,
2626
private viewContainerRef: ViewContainerRef,
2727
private componentFactoryResolver: ComponentFactoryResolver) {
2828
}

0 commit comments

Comments
 (0)