@rangertechnologies/ngnxt 2.1.55 → 2.1.56
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/esm2022/lib/components/custom-calendar/custom-calendar.component.mjs +12 -7
- package/esm2022/lib/pages/booklet/booklet.component.mjs +5 -1
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +8 -8
- package/esm2022/lib/services/change.service.mjs +10 -1
- package/fesm2022/rangertechnologies-ngnxt.mjs +26 -9
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/custom-calendar/custom-calendar.component.d.ts +3 -0
- package/lib/pages/questionbook/questionbook.component.d.ts +1 -2
- package/lib/services/change.service.d.ts +3 -0
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.56.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.55.tgz +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { Question } from '../../wrapper';
|
|
3
3
|
import { ComponenthostDirective } from '../../directives/componenthost/componenthost.directive';
|
|
4
|
+
import { ChangeService } from '../../services/change.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
interface CalendarDay {
|
|
6
7
|
date: Date;
|
|
@@ -12,6 +13,7 @@ interface CalendarDay {
|
|
|
12
13
|
isSelected?: boolean;
|
|
13
14
|
}
|
|
14
15
|
export declare class CustomCalendarComponent implements OnInit {
|
|
16
|
+
private changeService;
|
|
15
17
|
eventSelected: EventEmitter<any>;
|
|
16
18
|
dateSelected: EventEmitter<any>;
|
|
17
19
|
allEvents: any[];
|
|
@@ -37,6 +39,7 @@ export declare class CustomCalendarComponent implements OnInit {
|
|
|
37
39
|
editingEventId: number;
|
|
38
40
|
editingEntryGroup: any;
|
|
39
41
|
showAppoinmentSection: boolean;
|
|
42
|
+
constructor(changeService: ChangeService);
|
|
40
43
|
ngOnInit(): void;
|
|
41
44
|
processQuestion(): void;
|
|
42
45
|
openQuestionBookModal(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, ChangeDetectorRef
|
|
1
|
+
import { OnInit, EventEmitter, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { Question, QuestionBook } from '../../wrapper';
|
|
3
3
|
import { SalesforceService } from "../../services/salesforce.service";
|
|
4
4
|
import { DataService } from '../../services/data.service';
|
|
@@ -41,7 +41,6 @@ export declare class QuestionbookComponent implements OnInit {
|
|
|
41
41
|
bookQuestionsMap: any;
|
|
42
42
|
constructor(sfService: SalesforceService, dataService: DataService, changeService: ChangeService, storageService: StorageService, i18nService: I18nService, cdr: ChangeDetectorRef, document: Document);
|
|
43
43
|
ngOnInit(): void;
|
|
44
|
-
ngOnChanges(simplechanges: SimpleChanges): void;
|
|
45
44
|
processData(): void;
|
|
46
45
|
hideDependentElements(elementId: any): void;
|
|
47
46
|
clearSQError(quesId: any): void;
|
|
@@ -6,12 +6,15 @@ export declare class ChangeService {
|
|
|
6
6
|
private changeConfirmedSource;
|
|
7
7
|
private validationSource;
|
|
8
8
|
private fieldSource;
|
|
9
|
+
private dataBindChange;
|
|
9
10
|
changeAnnounced$: import("rxjs").Observable<ChangeWrapper>;
|
|
10
11
|
changeConfirmed$: import("rxjs").Observable<string>;
|
|
11
12
|
submitValidate$: import("rxjs").Observable<string>;
|
|
12
13
|
changeField$: import("rxjs").Observable<any>;
|
|
14
|
+
dataBind$: import("rxjs").Observable<any>;
|
|
13
15
|
announceChange(changeValue: ChangeWrapper): void;
|
|
14
16
|
confirmChange(childQuestion: string): void;
|
|
17
|
+
dataBindchange(data: boolean): void;
|
|
15
18
|
submitChange(value: string): void;
|
|
16
19
|
fieldChange(value: any): void;
|
|
17
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChangeService, never>;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|