Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ type SL = "1097" | "104" | "AAM" | "MMU" | "TM" | "ECD";
}
`,
],
standalone: false,
})
export class FeedbackPublicPageComponent {
serviceLine: SL = "AAM"; // default fallback
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import { SetLanguageComponent } from "src/app/app-modules/core/components/set-la
selector: "app-feedback-dialog",
templateUrl: "./feedback-dialog.component.html",
styleUrls: ["./feedback-dialog.component.scss"],
standalone: false,
})
export class FeedbackDialogComponent implements OnInit {
@Input() serviceLine: ServiceLine = "TM";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import { SessionStorageService } from '../../services/session-storage.service';
@Component({
selector: 'app-abha-consent-form',
templateUrl: './abha-consent-form.component.html',
styleUrls: ['./abha-consent-form.component.css']
styleUrls: ['./abha-consent-form.component.css'],

standalone: false,
})
export class AbhaConsentFormComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ import { ConfirmationService } from 'src/app/app-modules/core/services';
@Component({
selector: 'app-abha-enter-mobile-otp-component',
templateUrl: './abha-enter-mobile-otp-component.component.html',
styleUrls: ['./abha-enter-mobile-otp-component.component.css']
styleUrls: ['./abha-enter-mobile-otp-component.component.css'],

standalone: false,
})
export class AbhaEnterMobileOtpComponentComponent {
generateMobileOTPForm!: FormGroup;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ import { GenerateAbhaComponentComponent } from '../generate-abha-component/gener
@Component({
selector: 'app-abha-enter-otp-component',
templateUrl: './abha-enter-otp-component.component.html',
styleUrls: ['./abha-enter-otp-component.component.css']
styleUrls: ['./abha-enter-otp-component.component.css'],

standalone: false,
})
export class AbhaEnterOtpComponentComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ import { AbhaEnterMobileOtpComponentComponent } from '../abha-enter-mobile-otp-c
@Component({
selector: 'app-abha-generation-success-component',
templateUrl: './abha-generation-success-component.component.html',
styleUrls: ['./abha-generation-success-component.component.css']
styleUrls: ['./abha-generation-success-component.component.css'],

standalone: false,
})
export class AbhaGenerationSuccessComponentComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ import { SessionStorageService } from '../../services/session-storage.service';
@Component({
selector: 'app-abha-mobile-component',
templateUrl: './abha-mobile-component.component.html',
styleUrls: ['./abha-mobile-component.component.css']
styleUrls: ['./abha-mobile-component.component.css'],

standalone: false,
})
export class AbhaMobileComponentComponent {
generateMobileOTPForm!: FormGroup;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ import { ConfirmationService } from 'src/app/app-modules/core/services';
@Component({
selector: 'app-abha-verify-success-component',
templateUrl: './abha-verify-success-component.component.html',
styleUrls: ['./abha-verify-success-component.component.css']
styleUrls: ['./abha-verify-success-component.component.css'],

standalone: false,
})
export class AbhaVerifySuccessComponentComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { HttpServiceService } from 'src/app/app-modules/core/services/http-servi
selector: 'app-biometric-authentication',
templateUrl: './biometric-authentication.component.html',
styleUrls: ['./biometric-authentication.component.css'],
standalone: false,
})
export class BiometricAuthenticationComponent implements OnInit {
transactionId: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ import { HttpServiceService } from 'src/app/app-modules/core/services/http-servi
@Component({
selector: 'app-display-abha-card',
templateUrl: './display-abha-card.component.html',
styleUrls: ['./display-abha-card.component.css']
styleUrls: ['./display-abha-card.component.css'],

standalone: false,
})
export class DisplayAbhaCardComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ import { environment } from 'src/environments/environment';
@Component({
selector: 'app-download-search-abha',
templateUrl: './download-search-abha.component.html',
styleUrls: ['./download-search-abha.component.css']
styleUrls: ['./download-search-abha.component.css'],

standalone: false,
})
export class DownloadSearchAbhaComponent {
currentLanguageSet: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ import { AbhaMobileComponentComponent } from '../abha-mobile-component/abha-mobi
@Component({
selector: 'app-generate-abha-component',
templateUrl: './generate-abha-component.component.html',
styleUrls: ['./generate-abha-component.component.css']
styleUrls: ['./generate-abha-component.component.css'],

standalone: false,
})
export class GenerateAbhaComponentComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ import { DownloadSearchAbhaComponent } from '../download-search-abha/download-se
},
},
],
standalone: false,
})
export class HealthIdDisplayModalComponent implements OnInit, DoCheck {
chooseHealthID: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import { environment } from 'src/environments/environment';
selector: 'app-beneficiary-details',
templateUrl: './beneficiary-details.component.html',
styleUrls: ['./beneficiary-details.component.css'],
standalone: false,
})
export class BeneficiaryDetailsComponent implements OnInit, DoCheck, OnDestroy {
beneficiary: any;
Expand Down
1 change: 1 addition & 0 deletions src/registrar/dashboard/dashboard.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { Component, OnInit } from '@angular/core';
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.css'],
standalone: false,
})
export class DashboardComponent {
constructor() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import { SessionStorageService } from '../../services/session-storage.service';
selector: 'app-create-family-tagging',
templateUrl: './create-family-tagging.component.html',
styleUrls: ['./create-family-tagging.component.css'],
standalone: false,
})
export class CreateFamilyTaggingComponent implements OnInit, DoCheck {
@ViewChild('newFamilyTaggingForm') form: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import { SessionStorageService } from '../../services/session-storage.service';
selector: 'app-edit-family-tagging',
templateUrl: './edit-family-tagging.component.html',
styleUrls: ['./edit-family-tagging.component.css'],
standalone: false,
})
export class EditFamilyTaggingComponent implements OnInit, DoCheck {
@ViewChild('editFamilyTaggingForm')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ import { environment } from 'src/environments/environment';
selector: 'app-family-tagging-details',
templateUrl: './family-tagging-details.component.html',
styleUrls: ['./family-tagging-details.component.css'],
standalone: false,
})
export class FamilyTaggingDetailsComponent
implements OnInit, DoCheck, OnDestroy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ import { AmritTrackingService } from 'Common-UI/src/tracking';
@Component({
selector: 'app-abha-information',
templateUrl: './abha-information.component.html',
styleUrls: ['./abha-information.component.css']
styleUrls: ['./abha-information.component.css'],

standalone: false,
})
export class AbhaInformationComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { Consent, SearchComponent } from 'Common-UI/src/registrar/search/search.
selector: 'app-consent-form',
templateUrl: './consent-form.component.html',
styleUrls: ['./consent-form.component.css'],
standalone: false,
})
export class ConsentFormComponent implements OnInit {
currentLanguageSet: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { Injector } from '@angular/core';
selector: 'app-location-information',
templateUrl: './location-information.component.html',
styleUrls: ['./location-information.component.css'],
standalone: false,
})
export class LocationInformationComponent {
@Input()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { ConsentFormComponent } from '../consent-form/consent-form.component';
selector: 'app-other-information',
templateUrl: './other-information.component.html',
styleUrls: ['./other-information.component.css'],
standalone: false,
})
export class OtherInformationComponent {
@Input('otherInfoFormGroup')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ import { environment } from 'src/environments/environment';
},
},
],
standalone: false,
})
export class PersonalInformationComponent {
@Input()
Expand Down
4 changes: 3 additions & 1 deletion src/registrar/registration/registration.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ import { SessionStorageService } from '../services/session-storage.service';
@Component({
selector: 'app-registration',
templateUrl: './registration.component.html',
styleUrls: ['./registration.component.css']
styleUrls: ['./registration.component.css'],

standalone: false,
})
export class RegistrationComponent {

Expand Down
1 change: 1 addition & 0 deletions src/registrar/search-dialog/search-dialog.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ interface Beneficary {
},
},
],
standalone: false,
})
export class SearchDialogComponent implements OnInit, DoCheck {
// for ID Manpulation
Expand Down
1 change: 1 addition & 0 deletions src/registrar/search-family/search-family.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ interface Beneficary {
selector: 'app-search-family',
templateUrl: './search-family.component.html',
styleUrls: ['./search-family.component.css'],
standalone: false,
})
export class SearchFamilyComponent implements OnInit, DoCheck {
masterData: any;
Expand Down
1 change: 1 addition & 0 deletions src/registrar/search/search.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export interface Consent {
selector: 'app-search',
templateUrl: './search.component.html',
styleUrls: ['./search.component.css'],
standalone: false,
})
export class SearchComponent implements OnInit, DoCheck, AfterViewChecked, OnDestroy {
rowsPerPage = 5;
Expand Down
2 changes: 1 addition & 1 deletion src/registrar/services/rddevice.service.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { BehaviorSubject, Observable } from 'rxjs';
import * as $ from 'jquery';
import $ from 'jquery';

@Injectable({ providedIn: 'root' })
export class RdDeviceService {
Expand Down