File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 24
24
"homepage" : " https://design4pro.github.io/angular-jss/" ,
25
25
"peerDependencies" : {
26
26
"@angular/common" : " ^13.2.0" ,
27
- "@angular/core" : " ^13.2.0"
27
+ "@angular/core" : " ^13.2.0" ,
28
+ "rxjs" : " ^7.5.4" ,
29
+ "tslib" : " ^2.3.0"
28
30
},
29
31
"dependencies" : {
30
32
"jss" : " ^10.9.0" ,
31
33
"jss-plugin-camel-case" : " ^10.9.0" ,
32
34
"jss-plugin-global" : " ^10.9.0" ,
33
- "jss-plugin-rule-value-function" : " ^10.9.0" ,
34
- "reflect-metadata" : " ^0.1.13" ,
35
- "rxjs" : " ^7.5.4" ,
36
- "tslib" : " ^2.3.0"
35
+ "jss-plugin-rule-value-function" : " ^10.9.0"
37
36
},
38
37
"publishConfig" : {
39
38
"access" : " public"
Original file line number Diff line number Diff line change 1
- import 'reflect-metadata' ;
2
1
import { BehaviorSubject , Subject } from 'rxjs' ;
3
2
import { generateStyles , markAsDecorated , STYLED_PROPS } from './internals' ;
4
3
import { ComponentType , DirectiveType } from './ivy' ;
@@ -73,7 +72,6 @@ function decorateNgOnCheck(
73
72
function decorateNgOnDestroy ( ngOnDestroy : ( ( ) => void ) | null | undefined ) {
74
73
// eslint-disable-next-line @typescript-eslint/no-explicit-any
75
74
return function ( this : any ) {
76
-
77
75
// Invoke the original `ngOnDestroy` if it exists
78
76
if ( ngOnDestroy ) {
79
77
ngOnDestroy . call ( this ) ;
You can’t perform that action at this time.
0 commit comments