File tree Expand file tree Collapse file tree 26 files changed +4920
-4062
lines changed Expand file tree Collapse file tree 26 files changed +4920
-4062
lines changed Original file line number Diff line number Diff line change 4
4
dist
5
5
tmp
6
6
/out-tsc
7
+ storybook-static
7
8
8
9
# dependencies
9
10
node_modules
@@ -40,4 +41,5 @@ Thumbs.db
40
41
41
42
.angular
42
43
43
- .nx /cache
44
+ .nx /cache
45
+ .nx /workspace-data
Original file line number Diff line number Diff line change 3
3
/coverage
4
4
.angular
5
5
6
- /.nx /cache
6
+ /.nx /cache
7
+ /.nx /workspace-data
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ### BREAKING CHANGES
6
+
7
+ - ** Dependency** : Require Angular 19
8
+
5
9
## [ 18.0.0] - 2024-05-30
6
10
7
11
### BREAKING CHANGES
Original file line number Diff line number Diff line change 24
24
"prefix" : " app" ,
25
25
"style" : " kebab-case"
26
26
}
27
- ]
27
+ ],
28
+ "@angular-eslint/prefer-standalone" : " off"
28
29
}
29
30
},
30
31
{
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import {
11
11
} from '@perfectmemory/ngx-contextmenu' ;
12
12
13
13
@Component ( {
14
- selector : 'app-demo-context-menu' ,
15
- styles : [
16
- `
14
+ selector : 'app-demo-context-menu' ,
15
+ styles : [
16
+ `
17
17
.dashboardContainer {
18
18
width: 100%;
19
19
height: 100%;
@@ -32,8 +32,9 @@ import {
32
32
position: absolute;
33
33
}
34
34
` ,
35
- ] ,
36
- templateUrl : './app-demo.component.html' ,
35
+ ] ,
36
+ templateUrl : './app-demo.component.html' ,
37
+ standalone : false
37
38
} )
38
39
export class AppDemoComponent {
39
40
@Input ( )
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import {
11
11
} from '@perfectmemory/ngx-contextmenu' ;
12
12
13
13
@Component ( {
14
- selector : 'demo-context-menu-demo' ,
15
- styles : [
16
- `
14
+ selector : 'demo-context-menu-demo' ,
15
+ styles : [
16
+ `
17
17
.dashboardContainer {
18
18
width: 100%;
19
19
height: 100%;
@@ -32,8 +32,9 @@ import {
32
32
position: absolute;
33
33
}
34
34
` ,
35
- ] ,
36
- templateUrl : './app.component.html' ,
35
+ ] ,
36
+ templateUrl : './app.component.html' ,
37
+ standalone : false
37
38
} )
38
39
export class AppComponent {
39
40
@Input ( )
Original file line number Diff line number Diff line change
1
+ @use ' sass:meta' ;
1
2
/* You can add global styles to this file, and also import other style files */
2
3
3
4
@import ' @angular/cdk/overlay-prebuilt.css' ;
4
- @import ' ../../../libs/ngx-contextmenu/src/assets/stylesheets/base.scss' ;
5
- @import ' ../../../libs/ngx-contextmenu/src/assets/stylesheets/dark-theme.scss' ;
5
+ @include meta .load-css (
6
+ ' ../../../libs/ngx-contextmenu/src/assets/stylesheets/base.scss'
7
+ );
8
+ @include meta .load-css (
9
+ ' ../../../libs/ngx-contextmenu/src/assets/stylesheets/dark-theme.scss'
10
+ );
Original file line number Diff line number Diff line change 24
24
"prefix" : " context-menu" ,
25
25
"style" : " kebab-case"
26
26
}
27
- ]
27
+ ],
28
+ "@angular-eslint/prefer-standalone" : " off"
28
29
}
29
30
},
30
31
{
Original file line number Diff line number Diff line change @@ -21,9 +21,7 @@ const config: StorybookConfig = {
21
21
} ,
22
22
] ,
23
23
24
- docs : {
25
- autodocs : false ,
26
- } ,
24
+ docs : { } ,
27
25
} ;
28
26
29
27
export default config ;
Original file line number Diff line number Diff line change 24
24
"url" :
" git+ssh://[email protected] :PerfectMemory/ngx-contextmenu.git"
25
25
},
26
26
"peerDependencies" : {
27
- "@angular/cdk" : " ^18 .0.0" ,
28
- "@angular/common" : " ^18 .0.0" ,
29
- "@angular/core" : " ^18 .0.0"
27
+ "@angular/cdk" : " ^19 .0.0" ,
28
+ "@angular/common" : " ^19 .0.0" ,
29
+ "@angular/core" : " ^19 .0.0"
30
30
},
31
31
"dependencies" : {
32
32
"tslib" : " ^2.3.0"
You can’t perform that action at this time.
0 commit comments