Skip to content

Commit daef3c9

Browse files
committed
Adding changes to support angular 19.
1 parent 4df7882 commit daef3c9

File tree

82 files changed

+330
-248
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+330
-248
lines changed

eform-client/src/app/plugins/modules/backend-configuration-pn/components/area-rule-entity-list-modal/area-rule-entity-list-modal.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ import {Subscription} from 'rxjs';
1010

1111
@AutoUnsubscribe()
1212
@Component({
13-
selector: 'app-area-rule-entity-list-modal',
14-
templateUrl: './area-rule-entity-list-modal.component.html',
15-
styleUrls: ['./area-rule-entity-list-modal.component.scss'],
13+
selector: 'app-area-rule-entity-list-modal',
14+
templateUrl: './area-rule-entity-list-modal.component.html',
15+
styleUrls: ['./area-rule-entity-list-modal.component.scss'],
16+
standalone: false
1617
})
1718
export class AreaRuleEntityListModalComponent implements OnInit, OnDestroy {
1819
entityListChanged: EventEmitter<Array<EntityItemModel>> = new EventEmitter<Array<EntityItemModel>>();

eform-client/src/app/plugins/modules/backend-configuration-pn/components/area-rule-plan-modal/area-rule-plan-modal.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ import {PARSING_DATE_FORMAT} from 'src/app/common/const';
2626
import {generateWeeksList} from '../../helpers';
2727

2828
@Component({
29-
selector: 'app-area-rule-plan-modal',
30-
templateUrl: './area-rule-plan-modal.component.html',
31-
styleUrls: ['./area-rule-plan-modal.component.scss'],
29+
selector: 'app-area-rule-plan-modal',
30+
templateUrl: './area-rule-plan-modal.component.html',
31+
styleUrls: ['./area-rule-plan-modal.component.scss'],
32+
standalone: false
3233
})
3334
export class AreaRulePlanModalComponent implements OnInit {
3435
updateAreaRulePlan: EventEmitter<AreaRulePlanningModel> = new EventEmitter<AreaRulePlanningModel>();

eform-client/src/app/plugins/modules/backend-configuration-pn/components/backend-configuration-case/backend-configuration-case-page/backend-configuration-case-page.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ import {
2121
import {Store} from '@ngrx/store';
2222

2323
@Component({
24-
selector: 'app-backend-configuration-case-page',
25-
templateUrl: './backend-configuration-case-page.component.html',
26-
styleUrls: ['./backend-configuration-case-page.component.scss'],
24+
selector: 'app-backend-configuration-case-page',
25+
templateUrl: './backend-configuration-case-page.component.html',
26+
styleUrls: ['./backend-configuration-case-page.component.scss'],
27+
standalone: false
2728
})
2829
export class BackendConfigurationCasePageComponent implements OnInit {
2930
@ViewChildren(CaseEditElementComponent)

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/properties-page/properties-container/properties-container.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ import {dialogConfigHelper} from 'src/app/common/helpers';
2727

2828
@AutoUnsubscribe()
2929
@Component({
30-
selector: 'app-properties-container',
31-
templateUrl: './properties-container.component.html',
32-
styleUrls: ['./properties-container.component.scss'],
30+
selector: 'app-properties-container',
31+
templateUrl: './properties-container.component.html',
32+
styleUrls: ['./properties-container.component.scss'],
33+
standalone: false
3334
})
3435
export class PropertiesContainerComponent implements OnInit, OnDestroy {
3536
isFarms: boolean = false;

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/properties-page/properties-table/properties-table.component.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ import {
2121
} from '../../../../state/properties/properties.selector';
2222

2323
@Component({
24-
selector: 'app-properties-table',
25-
templateUrl: './properties-table.component.html',
26-
styleUrls: ['./properties-table.component.scss'],
27-
changeDetection: ChangeDetectionStrategy.OnPush,
24+
selector: 'app-properties-table',
25+
templateUrl: './properties-table.component.html',
26+
styleUrls: ['./properties-table.component.scss'],
27+
changeDetection: ChangeDetectionStrategy.OnPush,
28+
standalone: false
2829
})
2930
export class PropertiesTableComponent implements OnInit {
3031
@Input() nameSearchSubject = new Subject();

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/property-actions/property-create-modal/property-create-modal.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ import {Subscription} from 'rxjs';
1414

1515
@AutoUnsubscribe()
1616
@Component({
17-
selector: 'app-property-create-modal',
18-
templateUrl: './property-create-modal.component.html',
19-
styleUrls: ['./property-create-modal.component.scss'],
17+
selector: 'app-property-create-modal',
18+
templateUrl: './property-create-modal.component.html',
19+
styleUrls: ['./property-create-modal.component.scss'],
20+
standalone: false
2021
})
2122
export class PropertyCreateModalComponent implements OnInit, OnDestroy {
2223
propertyCreate: EventEmitter<PropertyCreateModel> = new EventEmitter<PropertyCreateModel>();

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/property-actions/property-delete-modal/property-delete-modal.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ import { PropertyModel } from '../../../../models';
88
import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material/dialog';
99

1010
@Component({
11-
selector: 'app-property-delete-modal',
12-
templateUrl: './property-delete-modal.component.html',
13-
styleUrls: ['./property-delete-modal.component.scss'],
11+
selector: 'app-property-delete-modal',
12+
templateUrl: './property-delete-modal.component.html',
13+
styleUrls: ['./property-delete-modal.component.scss'],
14+
standalone: false
1415
})
1516
export class PropertyDeleteModalComponent implements OnInit {
1617
propertyDelete: EventEmitter<number> = new EventEmitter<number>();

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/property-actions/property-docx-report-modal/property-docx-report-modal.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material/dialog';
1616

1717
@AutoUnsubscribe()
1818
@Component({
19-
selector: 'app-property-docx-report-modal',
20-
templateUrl: './property-docx-report-modal.component.html',
21-
styleUrls: ['./property-docx-report-modal.component.scss'],
19+
selector: 'app-property-docx-report-modal',
20+
templateUrl: './property-docx-report-modal.component.html',
21+
styleUrls: ['./property-docx-report-modal.component.scss'],
22+
standalone: false
2223
})
2324
export class PropertyDocxReportModalComponent implements OnInit, OnDestroy {
2425
selectedArea: PropertyAreaModel;

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/property-actions/property-edit-areas-modal/property-areas-edit-modal.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ import {selectAuthIsAuth} from 'src/app/state/auth/auth.selector';
1818
import {Store} from '@ngrx/store';
1919

2020
@Component({
21-
selector: 'app-property-edit-areas-modal',
22-
templateUrl: './property-areas-edit-modal.component.html',
23-
styleUrls: ['./property-areas-edit-modal.component.scss'],
21+
selector: 'app-property-edit-areas-modal',
22+
templateUrl: './property-areas-edit-modal.component.html',
23+
styleUrls: ['./property-areas-edit-modal.component.scss'],
24+
standalone: false
2425
})
2526
export class PropertyAreasEditModalComponent implements OnInit {
2627
updatePropertyAreas: EventEmitter<PropertyAreasUpdateModel> = new EventEmitter<PropertyAreasUpdateModel>();

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/property-actions/property-edit-modal/property-edit-modal.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ import {Store} from '@ngrx/store';
1717

1818
@AutoUnsubscribe()
1919
@Component({
20-
selector: 'app-property-edit-modal',
21-
templateUrl: './property-edit-modal.component.html',
22-
styleUrls: ['./property-edit-modal.component.scss'],
20+
selector: 'app-property-edit-modal',
21+
templateUrl: './property-edit-modal.component.html',
22+
styleUrls: ['./property-edit-modal.component.scss'],
23+
standalone: false
2324
})
2425
export class PropertyEditModalComponent implements OnInit, OnDestroy {
2526
propertyUpdate: EventEmitter<PropertyUpdateModel> = new EventEmitter<PropertyUpdateModel>();

0 commit comments

Comments
 (0)