@rangertechnologies/ngnxt 2.1.22 → 2.1.24
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-date/custom-date.component.mjs +6 -3
- package/esm2022/lib/components/custom-date-picker/custom-date-picker.component.mjs +7 -3
- package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +6 -3
- package/esm2022/lib/components/custom-input/custom-input.component.mjs +6 -3
- package/esm2022/lib/components/custom-table/custom-table.component.mjs +5 -1
- package/esm2022/lib/components/custom-text-area/custom-text-area.component.mjs +6 -3
- package/esm2022/lib/components/custom-time/custom-time.component.mjs +6 -3
- package/esm2022/lib/components/search-box/search-box.component.mjs +6 -3
- package/esm2022/lib/components/table-appendix/table-appendix.component.mjs +1 -1
- package/esm2022/lib/pages/booklet/booklet.component.mjs +44 -5
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +22 -3
- package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +14 -9
- package/fesm2022/rangertechnologies-ngnxt.mjs +118 -29
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/custom-date/custom-date.component.d.ts +2 -1
- package/lib/components/custom-date-picker/custom-date-picker.component.d.ts +2 -1
- package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +2 -1
- package/lib/components/custom-input/custom-input.component.d.ts +2 -1
- package/lib/components/custom-text-area/custom-text-area.component.d.ts +2 -1
- package/lib/components/custom-time/custom-time.component.d.ts +2 -1
- package/lib/components/search-box/search-box.component.d.ts +2 -1
- package/lib/pages/booklet/booklet.component.d.ts +5 -1
- package/lib/pages/questionbook/questionbook.component.d.ts +3 -1
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.24.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.22.tgz +0 -0
|
@@ -2,11 +2,12 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CustomDateComponent implements OnInit {
|
|
4
4
|
date: string;
|
|
5
|
+
readOnly: boolean;
|
|
5
6
|
dateChange: EventEmitter<any>;
|
|
6
7
|
dateSelected: any;
|
|
7
8
|
constructor();
|
|
8
9
|
ngOnInit(): void;
|
|
9
10
|
onDateChange(event: any): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomDateComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDateComponent, "app-custom-date", never, { "date": "date"; }, { "dateChange": "dateChange"; }, never, never, false>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDateComponent, "app-custom-date", never, { "date": "date"; "readOnly": "readOnly"; }, { "dateChange": "dateChange"; }, never, never, false>;
|
|
12
13
|
}
|
|
@@ -4,11 +4,12 @@ export declare class CustomDatePickerComponent implements OnInit {
|
|
|
4
4
|
date: string;
|
|
5
5
|
minDate: any;
|
|
6
6
|
maxDate: any;
|
|
7
|
+
readOnly: boolean;
|
|
7
8
|
dateChange: EventEmitter<any>;
|
|
8
9
|
dateSelected: any;
|
|
9
10
|
constructor();
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
onDateChange(event: any): void;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomDatePickerComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDatePickerComponent, "app-custom-date-picker", never, { "date": "date"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "dateChange": "dateChange"; }, never, never, false>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDatePickerComponent, "app-custom-date-picker", never, { "date": "date"; "minDate": "minDate"; "maxDate": "maxDate"; "readOnly": "readOnly"; }, { "dateChange": "dateChange"; }, never, never, false>;
|
|
14
15
|
}
|
|
@@ -15,6 +15,7 @@ export declare class CustomDropdownComponent implements OnInit {
|
|
|
15
15
|
selectedValue: string;
|
|
16
16
|
progressBar: boolean;
|
|
17
17
|
id: string;
|
|
18
|
+
readOnly: boolean;
|
|
18
19
|
errorMessage: string;
|
|
19
20
|
error: any;
|
|
20
21
|
fromShengel: boolean;
|
|
@@ -29,5 +30,5 @@ export declare class CustomDropdownComponent implements OnInit {
|
|
|
29
30
|
ngOnInit(): void;
|
|
30
31
|
selectChange(event: any): void;
|
|
31
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomDropdownComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDropdownComponent, "app-custom-dropdown", never, { "options": "options"; "placeholder": "placeholder"; "apiMeta": "apiMeta"; "selectedValue": "selectedValue"; "progressBar": "progressBar"; "id": "id"; "errorMessage": "errorMessage"; "error": "error"; "fromShengel": "fromShengel"; "referenceField": "referenceField"; "token": "token"; }, { "valueChange": "valueChange"; }, never, never, false>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDropdownComponent, "app-custom-dropdown", never, { "options": "options"; "placeholder": "placeholder"; "apiMeta": "apiMeta"; "selectedValue": "selectedValue"; "progressBar": "progressBar"; "id": "id"; "readOnly": "readOnly"; "errorMessage": "errorMessage"; "error": "error"; "fromShengel": "fromShengel"; "referenceField": "referenceField"; "token": "token"; }, { "valueChange": "valueChange"; }, never, never, false>;
|
|
33
34
|
}
|
|
@@ -13,6 +13,7 @@ export declare class CustomInputComponent implements OnInit {
|
|
|
13
13
|
placeholder: string;
|
|
14
14
|
error: any;
|
|
15
15
|
fromShengel: boolean;
|
|
16
|
+
readOnly: boolean;
|
|
16
17
|
ngClassValue: any;
|
|
17
18
|
idValue: any;
|
|
18
19
|
focusEvent: any;
|
|
@@ -24,5 +25,5 @@ export declare class CustomInputComponent implements OnInit {
|
|
|
24
25
|
ngOnDestroy(): void;
|
|
25
26
|
onInputChange(input: any): void;
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomInputComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomInputComponent, "app-custom-input", never, { "value": "value"; "question": "question"; "disabled": "disabled"; "placeholder": "placeholder"; "error": "error"; "fromShengel": "fromShengel"; "ngClassValue": "ngClassValue"; "idValue": "idValue"; "focusEvent": "focusEvent"; }, { "inputValue": "inputValue"; }, never, never, false>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomInputComponent, "app-custom-input", never, { "value": "value"; "question": "question"; "disabled": "disabled"; "placeholder": "placeholder"; "error": "error"; "fromShengel": "fromShengel"; "readOnly": "readOnly"; "ngClassValue": "ngClassValue"; "idValue": "idValue"; "focusEvent": "focusEvent"; }, { "inputValue": "inputValue"; }, never, never, false>;
|
|
28
29
|
}
|
|
@@ -11,11 +11,12 @@ export declare class CustomTextAreaComponent implements OnInit {
|
|
|
11
11
|
rows: Number;
|
|
12
12
|
error: any;
|
|
13
13
|
question: any;
|
|
14
|
+
readOnly: boolean;
|
|
14
15
|
textareaValueChange: EventEmitter<string>;
|
|
15
16
|
subscription: Subscription;
|
|
16
17
|
constructor(i18nService: I18nService, changeService: ChangeService);
|
|
17
18
|
ngOnInit(): void;
|
|
18
19
|
onTextareaChange(event: any): void;
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomTextAreaComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomTextAreaComponent, "app-custom-text-area", never, { "value": "value"; "placeholder": "placeholder"; "rows": "rows"; "error": "error"; "question": "question"; }, { "textareaValueChange": "textareaValueChange"; }, never, never, false>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomTextAreaComponent, "app-custom-text-area", never, { "value": "value"; "placeholder": "placeholder"; "rows": "rows"; "error": "error"; "question": "question"; "readOnly": "readOnly"; }, { "textareaValueChange": "textareaValueChange"; }, never, never, false>;
|
|
21
22
|
}
|
|
@@ -2,11 +2,12 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CustomTimeComponent implements OnInit {
|
|
4
4
|
time: string;
|
|
5
|
+
readOnly: boolean;
|
|
5
6
|
timeChange: EventEmitter<any>;
|
|
6
7
|
timeSelected: any;
|
|
7
8
|
constructor();
|
|
8
9
|
ngOnInit(): void;
|
|
9
10
|
onTimeChange(event: any): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomTimeComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomTimeComponent, "app-custom-time", never, { "time": "time"; }, { "timeChange": "timeChange"; }, never, never, false>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomTimeComponent, "app-custom-time", never, { "time": "time"; "readOnly": "readOnly"; }, { "timeChange": "timeChange"; }, never, never, false>;
|
|
12
13
|
}
|
|
@@ -15,6 +15,7 @@ export declare class SearchBoxComponent implements OnInit {
|
|
|
15
15
|
question: any;
|
|
16
16
|
apiMeta: string;
|
|
17
17
|
id: string;
|
|
18
|
+
readOnly: boolean;
|
|
18
19
|
searchValueChange: EventEmitter<ChangeWrapper>;
|
|
19
20
|
apiObj: any;
|
|
20
21
|
SearchItem: any;
|
|
@@ -36,5 +37,5 @@ export declare class SearchBoxComponent implements OnInit {
|
|
|
36
37
|
getSourceData: (keyword: string) => void;
|
|
37
38
|
clickItem(event: any): void;
|
|
38
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchBoxComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBoxComponent, "lib-search-box", never, { "placeHolderText": "placeHolderText"; "question": "question"; "apiMeta": "apiMeta"; "id": "id"; }, { "searchValueChange": "searchValueChange"; }, never, never, false>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBoxComponent, "lib-search-box", never, { "placeHolderText": "placeHolderText"; "question": "question"; "apiMeta": "apiMeta"; "id": "id"; "readOnly": "readOnly"; }, { "searchValueChange": "searchValueChange"; }, never, never, false>;
|
|
40
41
|
}
|
|
@@ -24,6 +24,8 @@ export declare class BookletComponent implements OnInit {
|
|
|
24
24
|
dropdownDependentData: any;
|
|
25
25
|
labelValue: string;
|
|
26
26
|
token: string;
|
|
27
|
+
languageCode: string;
|
|
28
|
+
fieldRestrictions: any;
|
|
27
29
|
handleBookletActionEvent: EventEmitter<any>;
|
|
28
30
|
handlePage: EventEmitter<any>;
|
|
29
31
|
hadleDropDownDependent: EventEmitter<any>;
|
|
@@ -32,6 +34,7 @@ export declare class BookletComponent implements OnInit {
|
|
|
32
34
|
abItem: any;
|
|
33
35
|
actions: ActionMeta[];
|
|
34
36
|
bookQuestionsMap: any;
|
|
37
|
+
translateMap: any;
|
|
35
38
|
private sqOptions;
|
|
36
39
|
isAnswerFlag: boolean;
|
|
37
40
|
spinnerName: string;
|
|
@@ -51,8 +54,9 @@ export declare class BookletComponent implements OnInit {
|
|
|
51
54
|
handleBook(quesList: any): void;
|
|
52
55
|
handleQues(ques: any): void;
|
|
53
56
|
readQuestions(qbId: string): any[];
|
|
57
|
+
readTransQuestions(qbId: string): any[];
|
|
54
58
|
getText(value: any): SafeHtml;
|
|
55
59
|
getDropDown(event: any): void;
|
|
56
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookletComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BookletComponent, "lib-booklet", never, { "bookletId": "bookletId"; "serv": "serv"; "tkn": "tkn"; "bookletJSON": "bookletJSON"; "dropdownDependentData": "dropdownDependentData"; "labelValue": "labelValue"; "token": "token"; "dataBind": "dataBind"; }, { "handleBookletActionEvent": "handleBookletActionEvent"; "handlePage": "handlePage"; "hadleDropDownDependent": "hadleDropDownDependent"; }, never, never, false>;
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BookletComponent, "lib-booklet", never, { "bookletId": "bookletId"; "serv": "serv"; "tkn": "tkn"; "bookletJSON": "bookletJSON"; "dropdownDependentData": "dropdownDependentData"; "labelValue": "labelValue"; "token": "token"; "languageCode": "languageCode"; "fieldRestrictions": "fieldRestrictions"; "dataBind": "dataBind"; }, { "handleBookletActionEvent": "handleBookletActionEvent"; "handlePage": "handlePage"; "hadleDropDownDependent": "hadleDropDownDependent"; }, never, never, false>;
|
|
58
62
|
}
|
|
@@ -15,6 +15,7 @@ export declare class QuestionbookComponent implements OnInit {
|
|
|
15
15
|
private document;
|
|
16
16
|
qbItem: QuestionBook;
|
|
17
17
|
questionItem: Question;
|
|
18
|
+
translatedQuestions: any[];
|
|
18
19
|
questions: Question[];
|
|
19
20
|
errorFieldId: any;
|
|
20
21
|
labelValue: string;
|
|
@@ -32,10 +33,11 @@ export declare class QuestionbookComponent implements OnInit {
|
|
|
32
33
|
constructor(sfService: SalesforceService, dataService: DataService, changeService: ChangeService, storageService: StorageService, i18nService: I18nService, document: Document);
|
|
33
34
|
ngOnInit(): void;
|
|
34
35
|
clearSQError(quesId: any): void;
|
|
36
|
+
processTranslatedQuestions(): void;
|
|
35
37
|
setSubQuestions(records: any): void;
|
|
36
38
|
childEventCapture(event: any, ques?: any): void;
|
|
37
39
|
deleteFile(fileData: any): void;
|
|
38
40
|
getDropDown(event: any): void;
|
|
39
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionbookComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionbookComponent, "lib-questionbook", never, { "qbItem": "qbItem"; "questionItem": "questionItem"; "questions": "questions"; "errorFieldId": "errorFieldId"; "labelValue": "labelValue"; "token": "token"; "dropDownData": "dropDownData"; }, { "handleDropDown": "handleDropDown"; "hadleDropDownDependent": "hadleDropDownDependent"; }, never, never, false>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionbookComponent, "lib-questionbook", never, { "qbItem": "qbItem"; "questionItem": "questionItem"; "translatedQuestions": "translatedQuestions"; "questions": "questions"; "errorFieldId": "errorFieldId"; "labelValue": "labelValue"; "token": "token"; "dropDownData": "dropDownData"; }, { "handleDropDown": "handleDropDown"; "hadleDropDownDependent": "hadleDropDownDependent"; }, never, never, false>;
|
|
41
43
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|