@rangertechnologies/ngnxt 2.1.324 → 2.1.326
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/rangertechnologies-ngnxt.mjs +119 -148
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/pages/booklet/booklet.component.d.ts +1 -3
- package/lib/pages/questionbook/questionbook.component.d.ts +1 -3
- package/lib/services/data/data.service.d.ts +1 -1
- package/lib/services/storage/storage.service.d.ts +0 -6
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.326.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.324.tgz +0 -0
|
@@ -7,14 +7,12 @@ import { HttpClient } from "@angular/common/http";
|
|
|
7
7
|
import { QuestionbookComponent } from "../questionbook/questionbook.component";
|
|
8
8
|
import { SalesforceService } from "../../services/salesforce/salesforce.service";
|
|
9
9
|
import { DataService } from "../../services/data/data.service";
|
|
10
|
-
import { StorageService } from "../../services/storage/storage.service";
|
|
11
10
|
import { ChangeService } from "../../services/change/change.service";
|
|
12
11
|
import { TranslationService } from "../../services/translation/translation.service";
|
|
13
12
|
import * as i0 from "@angular/core";
|
|
14
13
|
export declare class BookletComponent implements OnInit, AfterViewInit {
|
|
15
14
|
private sfService;
|
|
16
15
|
private dataService;
|
|
17
|
-
private storageService;
|
|
18
16
|
private sanitizer;
|
|
19
17
|
private changeService;
|
|
20
18
|
private http;
|
|
@@ -64,7 +62,7 @@ export declare class BookletComponent implements OnInit, AfterViewInit {
|
|
|
64
62
|
stickyBar?: ElementRef<HTMLElement>;
|
|
65
63
|
private destroy$;
|
|
66
64
|
private scrollHandler;
|
|
67
|
-
constructor(sfService: SalesforceService, dataService: DataService,
|
|
65
|
+
constructor(sfService: SalesforceService, dataService: DataService, sanitizer: DomSanitizer, changeService: ChangeService, http: HttpClient, translationService: TranslationService, ngZone: NgZone, cdr: ChangeDetectorRef);
|
|
68
66
|
ngOnInit(): void;
|
|
69
67
|
ngOnChanges(simplechanges: SimpleChanges): void;
|
|
70
68
|
upgradeActions(actionString: string): any[];
|
|
@@ -3,12 +3,10 @@ import { BehaviorSubject, Subscription } from 'rxjs';
|
|
|
3
3
|
import { CropperPosition, Dimensions, ImageTransform } from '../../components/image-cropper/interfaces';
|
|
4
4
|
import { DataService } from '../../services/data/data.service';
|
|
5
5
|
import { ChangeService } from '../../services/change/change.service';
|
|
6
|
-
import { StorageService } from '../../services/storage/storage.service';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class QuestionbookComponent implements OnInit, AfterViewInit {
|
|
9
8
|
private dataService;
|
|
10
9
|
private changeService;
|
|
11
|
-
private storageService;
|
|
12
10
|
qbItem: any;
|
|
13
11
|
questionItem: any;
|
|
14
12
|
questions: any[];
|
|
@@ -61,7 +59,7 @@ export declare class QuestionbookComponent implements OnInit, AfterViewInit {
|
|
|
61
59
|
handleCalendarDate: EventEmitter<any>;
|
|
62
60
|
handleCalendarEvent: EventEmitter<any>;
|
|
63
61
|
bookQuestionsMap: any;
|
|
64
|
-
constructor(dataService: DataService, changeService: ChangeService
|
|
62
|
+
constructor(dataService: DataService, changeService: ChangeService);
|
|
65
63
|
ngOnInit(): void;
|
|
66
64
|
ngAfterViewInit(): void;
|
|
67
65
|
handleQues(ques: any): Promise<void>;
|
|
@@ -9,7 +9,7 @@ export declare class DataService {
|
|
|
9
9
|
getAPIFromNode(dataType: string, operation: string, param1: string, param2: string, api: string): Observable<any>;
|
|
10
10
|
getValue(element: any, columns: any): any;
|
|
11
11
|
apikey(apidata: any): void;
|
|
12
|
-
apiResponse(endpoint:
|
|
12
|
+
apiResponse(endpoint: string): Observable<any>;
|
|
13
13
|
formatToHijriString(date: any, type?: 'year' | 'month' | 'date' | 'time' | any): any;
|
|
14
14
|
formatToGregorianString(date: any, type?: any): string;
|
|
15
15
|
nxtId(): string;
|
|
@@ -1,15 +1,9 @@
|
|
|
1
|
-
import { BookletWrapper } from '../../model/bookletWrapper';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class StorageService {
|
|
4
|
-
nxtBookletAnswer: BookletWrapper;
|
|
5
|
-
selectedData: any;
|
|
6
3
|
private queryValueMap;
|
|
7
4
|
private apiResponseData;
|
|
8
5
|
private conditionQuestionValue;
|
|
9
6
|
constructor();
|
|
10
|
-
save(qbJson: BookletWrapper): void;
|
|
11
|
-
update(questionWithInput: any): void;
|
|
12
|
-
get(): BookletWrapper;
|
|
13
7
|
queryValueStore(questionId: string, key: string, value: any): void;
|
|
14
8
|
getQueryValue(questionId: string): any;
|
|
15
9
|
clearQueryValue(questionId: string): void;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|