Commit 035a9e24 authored by 伊藤雄大's avatar 伊藤雄大

2024/08/06

最新モジュール化
parent bdafc9d4
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -11,46 +11,46 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.1.1",
"@angular/cdk": "^18.1.1",
"@angular/common": "^18.1.1",
"@angular/compiler": "^18.1.1",
"@angular/core": "^18.1.1",
"@angular/forms": "^18.1.1",
"@angular/material": "^18.1.1",
"@angular/platform-browser": "^18.1.1",
"@angular/platform-browser-dynamic": "^18.1.1",
"@angular/router": "^18.1.1",
"@angular/animations": "^18.1.3",
"@angular/cdk": "^18.1.3",
"@angular/common": "^18.1.3",
"@angular/compiler": "^18.1.3",
"@angular/core": "^18.1.3",
"@angular/forms": "^18.1.3",
"@angular/material": "^18.1.3",
"@angular/platform-browser": "^18.1.3",
"@angular/platform-browser-dynamic": "^18.1.3",
"@angular/router": "^18.1.3",
"@ng-bootstrap/ng-bootstrap": "^17.0.0",
"@popperjs/core": "^2.11.8",
"ag-grid-angular": "^32.0.2",
"aws-amplify": "^6.4.3",
"aws-amplify": "^6.4.4",
"bootstrap": "^5.3.2",
"jquery": "^3.7.1",
"jqwidgets-ng": "^19.2.2",
"ngx-bootstrap": "^18.0.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.8"
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.1",
"@angular/cli": "^18.1.1",
"@angular/compiler-cli": "^18.1.1",
"@angular/localize": "^18.1.1",
"@eslint/js": "^9.7.0",
"@angular-devkit/build-angular": "^18.1.3",
"@angular/cli": "^18.1.3",
"@angular/compiler-cli": "^18.1.3",
"@angular/localize": "^18.1.3",
"@eslint/js": "^10.0.0",
"@types/jasmine": "~5.1.0",
"@types/jquery": "^3.5.30",
"angular-eslint": "18.1.0",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"angular-eslint": "18.2.0",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"jasmine-core": "~5.2.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.5.3",
"typescript-eslint": "^8.0.0-alpha.20"
"typescript": "~5.5.4",
"typescript-eslint": "^8.0.1"
}
}
......@@ -27,7 +27,7 @@ export class CardRendererComponent {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
......
......@@ -27,7 +27,7 @@ export class DelreqComponent {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
}
......@@ -40,7 +40,7 @@ export class EarningDateComponent {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
}
......@@ -49,7 +49,7 @@ export class GetoffDatetimeComponent {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
}
......@@ -49,7 +49,7 @@ export class GetonDatetimeComponent {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
}
......@@ -27,7 +27,7 @@ export class NgComponent {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
}
......@@ -49,7 +49,7 @@ export class ProcessDatetimeComponent {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
}
......@@ -27,7 +27,7 @@ export class StatusComponent {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
}
......@@ -72,7 +72,7 @@ export class HistoryListComponent implements OnInit {
* ステータスクリック
* @param model 乗車履歴情報
*/
onClickStatus(model: HistoryModel) {
onClickStatus(model: HistoryModel): void {
if ((this.statusUpdateService.confirm(model)).valueOf()) {
this.historyService.changeStatus(model);
}
......
......@@ -31,7 +31,7 @@ export class StatusLinkComponent implements ICellRendererAngularComp {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
......
......@@ -31,7 +31,7 @@ export class RefundButtonComponent implements ICellRendererAngularComp {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
......
......@@ -31,7 +31,7 @@ export class CustomButtonComponent implements ICellRendererAngularComp {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
......
......@@ -31,7 +31,7 @@ export class DenylistButtonComponent implements ICellRendererAngularComp {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
......
......@@ -31,7 +31,7 @@ export class HistoryButtonComponent implements ICellRendererAngularComp {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
......
......@@ -31,7 +31,7 @@ export class PassButtonComponent implements ICellRendererAngularComp {
* @param params パラメータ
* @returns 正常かどうか
*/
refresh(params: ICellRendererParams) {
refresh(params: ICellRendererParams): boolean {
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment