Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitae0e7cf

Browse files
committed
feat: update to angular 19
1 parentb0c5ca8 commitae0e7cf

File tree

24 files changed

+4362
-5826
lines changed

24 files changed

+4362
-5826
lines changed

‎package-lock.json‎

Lines changed: 4317 additions & 5802 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎package.json‎

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -25,34 +25,33 @@
2525
},
2626
"private":true,
2727
"dependencies": {
28-
"@angular/animations":"^18.2.8",
29-
"@angular/common":"^18.2.8",
30-
"@angular/compiler":"^18.2.8",
31-
"@angular/core":"^18.2.8",
32-
"@angular/forms":"^18.2.8",
33-
"@angular/platform-browser":"^18.2.8",
34-
"@angular/platform-browser-dynamic":"^18.2.8",
35-
"@angular/router":"^18.2.8",
28+
"@angular/animations":"^19.0.3",
29+
"@angular/common":"^19.0.3",
30+
"@angular/compiler":"^19.0.3",
31+
"@angular/core":"^19.0.3",
32+
"@angular/forms":"^19.0.3",
33+
"@angular/platform-browser":"^19.0.3",
34+
"@angular/platform-browser-dynamic":"^19.0.3",
35+
"@angular/router":"^19.0.3",
3636
"bootstrap":"^5.3.1",
3737
"marked":"7.0.4",
3838
"ngx-bootstrap":"^18.0.0",
3939
"rxjs":"~7.8.0",
40-
"standard-version":"^9.5.0",
41-
"zone.js":"~0.14.2"
40+
"zone.js":"~0.15.0"
4241
},
4342
"devDependencies": {
44-
"@angular-devkit/architect":"^0.1802.9",
45-
"@angular-devkit/build-angular":"^18.2.9",
46-
"@angular-devkit/core":"^18.2.9",
47-
"@angular-devkit/schematics":"^18.2.9",
48-
"@angular-eslint/builder":"18.3.1",
49-
"@angular-eslint/eslint-plugin":"18.3.1",
50-
"@angular-eslint/eslint-plugin-template":"18.3.1",
51-
"@angular-eslint/schematics":"18.3.1",
52-
"@angular-eslint/template-parser":"18.3.1",
53-
"@angular/cli":"^18.2.9",
54-
"@angular/compiler-cli":"^18.2.8",
55-
"@angular/language-service":"^18.2.8",
43+
"@angular-devkit/architect":"^0.1900.4",
44+
"@angular-devkit/build-angular":"^19.0.4",
45+
"@angular-devkit/core":"^19.0.4",
46+
"@angular-devkit/schematics":"^19.0.4",
47+
"@angular-eslint/builder":"19.0.0",
48+
"@angular-eslint/eslint-plugin":"19.0.0",
49+
"@angular-eslint/eslint-plugin-template":"19.0.0",
50+
"@angular-eslint/schematics":"19.0.0",
51+
"@angular-eslint/template-parser":"19.0.0",
52+
"@angular/cli":"^19.0.4",
53+
"@angular/compiler-cli":"^19.0.3",
54+
"@angular/language-service":"^19.0.3",
5655
"@commitlint/cli":"^18.5.0",
5756
"@commitlint/config-angular":"^18.5.0",
5857
"@commitlint/config-conventional":"^18.5.0",
@@ -67,7 +66,7 @@
6766
"eslint":"^8.57.0",
6867
"husky":"^8.0.3",
6968
"lint-staged":"^14.0.1",
70-
"ng-packagr":"^18.2.1",
69+
"ng-packagr":"^19.0.1",
7170
"postcss":"8.4.28",
7271
"prettier":"^3.0.2",
7372
"serve":"^14.2.1",

‎projects/angular-split/src/lib/split-custom-events-behavior.directive.ts‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* eslint-disable @angular-eslint/no-output-native */
2+
/* eslint-disable @angular-eslint/no-output-rename */
3+
/* eslint-disable @angular-eslint/no-input-rename */
14
import{Directive,ElementRef,inject,input,output}from'@angular/core'
25
import{
36
gutterEventsEqualWithDelta,

‎projects/angular-split/src/lib/split/split.component.ts‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ export const SPLIT_AREA_CONTRACT = new InjectionToken<SplitAreaComponent>('Split
6666

6767
@Component({
6868
selector:'as-split',
69-
standalone:true,
7069
imports:[NgStyle,SplitCustomEventsBehaviorDirective,SplitGutterDynamicInjectorDirective,NgTemplateOutlet],
7170
exportAs:'asSplit',
7271
templateUrl:'./split.component.html',

‎src/app/app.component.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import { filter } from 'rxjs/operators'
2424
<router-outlet></router-outlet>
2525
</div>
2626
`,
27+
2728
})
2829
exportclassAppComponent{
2930
constructor(publicrouter:Router){

‎src/app/changelog/changelog.component.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { ChangelogService } from './changelog.service'
1919
<div [innerHTML]="changelogHtml$ | async"></div>
2020
</div>
2121
`,
22+
2223
})
2324
exportclassChangelogComponentimplementsOnInit{
2425
changelogHtml$:Observable<string>

‎src/app/documentation/documentation.component.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import { Component } from '@angular/core'
3030
`,
3131
],
3232
templateUrl:'./documentation.component.html',
33+
3334
})
3435
exportclassDocumentationComponent{
3536
readonlysplitDoc={

‎src/app/examples/access-from-class/access-from-class.component.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ import { AComponent } from '../../ui/components/AComponent'
9292
</div>
9393
</div>
9494
`,
95+
9596
})
9697
exportclassAccessFromClassComponentextendsAComponentimplementsAfterViewInit{
9798
@HostBinding('class')class='split-example-page'

‎src/app/examples/custom-gutter-style/custom-gutter-style.component.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ import { SplitAreaSize, SplitGutterInteractionEvent, SplitDirection } from 'angu
125125
</div>
126126
</div>
127127
`,
128+
128129
})
129130
exportclassCustomGutterStyleComponentextendsAComponent{
130131
@HostBinding('class')class='split-example-page'

‎src/app/examples/dir-rtl/dir-rtl.component.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ import { SplitDir, SplitDirection } from 'angular-split'
6969
</div>
7070
</div>
7171
`,
72+
7273
})
7374
exportclassDirRtlComponentextendsAComponent{
7475
@HostBinding('class')class='split-example-page'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp