@rangertechnologies/ngnxt 2.1.73 → 2.1.75
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-button/custom-button.component.mjs +4 -4
- package/esm2022/lib/components/custom-calendar/custom-calendar.component.mjs +20 -18
- package/esm2022/lib/components/custom-date/custom-date.component.mjs +4 -4
- package/esm2022/lib/components/custom-date-picker/custom-date-picker.component.mjs +4 -4
- package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +105 -97
- package/esm2022/lib/components/custom-image/custom-image.component.mjs +8 -7
- package/esm2022/lib/components/custom-input/custom-input.component.mjs +8 -7
- package/esm2022/lib/components/custom-label/custom-label.component.mjs +4 -4
- package/esm2022/lib/components/custom-model/custom-model.component.mjs +4 -4
- package/esm2022/lib/components/custom-radio/custom-radio.component.mjs +7 -6
- package/esm2022/lib/components/custom-table/custom-table.component.mjs +6 -5
- package/esm2022/lib/components/custom-text-area/custom-text-area.component.mjs +8 -7
- package/esm2022/lib/components/custom-time/custom-time.component.mjs +4 -4
- package/esm2022/lib/components/dependent-table/dependent-table.component.mjs +4 -4
- package/esm2022/lib/components/dropdown-with-flag/dropdown-with-flag.component.mjs +5 -5
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +8 -7
- package/esm2022/lib/components/file-view/file-view.component.mjs +5 -5
- package/esm2022/lib/components/loader/loader.component.mjs +5 -5
- package/esm2022/lib/components/pick-location/pick-location.component.mjs +8 -6
- package/esm2022/lib/components/search-box/search-box.component.mjs +6 -5
- package/esm2022/lib/components/table-appendix/table-appendix.component.mjs +9 -8
- package/esm2022/lib/directives/componenthost/componenthost.directive.mjs +4 -4
- package/esm2022/lib/i18n.component.mjs +4 -4
- package/esm2022/lib/i18n.module.mjs +5 -5
- package/esm2022/lib/i18n.pipe.mjs +4 -4
- package/esm2022/lib/i18n.service.mjs +4 -4
- package/esm2022/lib/nxt-app.component.mjs +4 -4
- package/esm2022/lib/nxt-app.module.mjs +5 -5
- package/esm2022/lib/nxt-app.service.mjs +4 -4
- package/esm2022/lib/pages/booklet/booklet.component.mjs +71 -66
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +85 -93
- package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +323 -259
- package/esm2022/lib/pages/summary-page/summary-page.component.mjs +13 -12
- package/esm2022/lib/pipe/get-value.pipe.mjs +4 -4
- package/esm2022/lib/sample.mjs +3157 -327
- package/esm2022/lib/services/change.service.mjs +4 -4
- package/esm2022/lib/services/data.service.mjs +4 -4
- package/esm2022/lib/services/salesforce.service.mjs +4 -4
- package/esm2022/lib/services/shared.service.mjs +4 -4
- package/esm2022/lib/services/storage.service.mjs +10 -8
- package/esm2022/lib/wrapper.mjs +96 -92
- package/fesm2022/rangertechnologies-ngnxt.mjs +4004 -1086
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/wrapper.d.ts +93 -90
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.75.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.73.tgz +0 -0
package/lib/wrapper.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import { ErrorWrapper } from "./model/errorWrapper";
|
|
2
2
|
export declare class QuestionBook {
|
|
3
|
-
|
|
3
|
+
id: number;
|
|
4
4
|
Name: string;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
5
|
+
category: string;
|
|
6
|
+
next: string;
|
|
7
|
+
cancel: string;
|
|
8
|
+
back: string;
|
|
9
|
+
submit: string;
|
|
10
|
+
edit: string;
|
|
11
|
+
firstQuestion: string;
|
|
12
|
+
title: string;
|
|
13
|
+
nextTrackingId: string;
|
|
14
|
+
backTrackingId: string;
|
|
15
|
+
cancelTrackingId: string;
|
|
16
|
+
submitTrackingId: string;
|
|
17
|
+
totalQuestions: number;
|
|
18
|
+
summaryText?: string;
|
|
19
19
|
Questions__r?: QuestionR;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
20
|
+
progressBar: boolean;
|
|
21
|
+
subTitle: string;
|
|
22
|
+
qTyp: string;
|
|
23
|
+
possibilities: string;
|
|
24
|
+
summarySubText: string;
|
|
25
|
+
isShengel?: boolean;
|
|
26
|
+
style: {
|
|
27
27
|
labelClass: any;
|
|
28
28
|
labelStyle: any;
|
|
29
29
|
labelValueStyle: any;
|
|
@@ -36,38 +36,40 @@ export declare class QuestionBook {
|
|
|
36
36
|
};
|
|
37
37
|
}
|
|
38
38
|
export declare class Question {
|
|
39
|
-
|
|
39
|
+
id: string;
|
|
40
40
|
Name: string;
|
|
41
|
-
|
|
41
|
+
referenceField?: string;
|
|
42
42
|
dependentRef?: string;
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
43
|
+
allowedFileExtensions: string;
|
|
44
|
+
question: string;
|
|
45
|
+
questionText: any;
|
|
46
|
+
type: string;
|
|
47
|
+
nextQuestion?: string;
|
|
48
|
+
isOptional: boolean;
|
|
49
|
+
title: string;
|
|
50
|
+
subTitle: string;
|
|
51
|
+
isTitle: boolean;
|
|
52
|
+
x24Hours: boolean;
|
|
53
|
+
errorMessage: string;
|
|
54
|
+
isDateBackward: boolean;
|
|
55
|
+
isDateForward: boolean;
|
|
56
|
+
isHidden: boolean;
|
|
57
|
+
groupName: string;
|
|
58
|
+
questionNumber?: string;
|
|
59
59
|
Question_Options__r?: OptionR;
|
|
60
|
-
static
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
60
|
+
static x24Hours: boolean;
|
|
61
|
+
options: any;
|
|
62
|
+
size: number;
|
|
63
|
+
subText: string;
|
|
64
|
+
trackingId: string;
|
|
65
|
+
timeText: string;
|
|
66
|
+
dateText: string;
|
|
67
|
+
additionalRichContent?: string;
|
|
67
68
|
Questions__r?: QuestionR;
|
|
68
69
|
RecordType: {
|
|
69
70
|
Name: string;
|
|
70
71
|
};
|
|
72
|
+
subQuestions: any;
|
|
71
73
|
input?: any;
|
|
72
74
|
error?: ErrorWrapper;
|
|
73
75
|
valueName?: string;
|
|
@@ -78,8 +80,8 @@ export declare class Question {
|
|
|
78
80
|
startDate?: any;
|
|
79
81
|
selectedValue?: string;
|
|
80
82
|
minDate?: any;
|
|
81
|
-
|
|
82
|
-
|
|
83
|
+
isShengel?: boolean;
|
|
84
|
+
style: {
|
|
83
85
|
labelClass: any;
|
|
84
86
|
labelStyle: any;
|
|
85
87
|
labelValueStyle: any;
|
|
@@ -92,31 +94,31 @@ export declare class Question {
|
|
|
92
94
|
};
|
|
93
95
|
}
|
|
94
96
|
export declare class LocalQuestion {
|
|
95
|
-
|
|
97
|
+
id: string;
|
|
96
98
|
Name: string;
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
99
|
+
allowedFileExtensions: string;
|
|
100
|
+
question: string;
|
|
101
|
+
questionText: string;
|
|
102
|
+
type: string;
|
|
103
|
+
title: string;
|
|
104
|
+
subTitle: string;
|
|
105
|
+
nextQuestion?: string;
|
|
106
|
+
isOptional: boolean;
|
|
107
|
+
isTitle: boolean;
|
|
108
|
+
isHidden: boolean;
|
|
109
|
+
x24Hours: boolean;
|
|
110
|
+
errorMessage: string;
|
|
111
|
+
isDateBackward: boolean;
|
|
112
|
+
isDateForward: boolean;
|
|
113
|
+
timeText: string;
|
|
114
|
+
dateText: string;
|
|
115
|
+
groupName: string;
|
|
116
|
+
questionNumber?: string;
|
|
115
117
|
Question_Options__r?: OptionR;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
subText: string;
|
|
119
|
+
size: number;
|
|
120
|
+
trackingId: string;
|
|
121
|
+
additionalRichContent?: string;
|
|
120
122
|
selectedValue: string;
|
|
121
123
|
Questions__r?: QuestionR;
|
|
122
124
|
RecordType: {
|
|
@@ -124,9 +126,9 @@ export declare class LocalQuestion {
|
|
|
124
126
|
};
|
|
125
127
|
input?: string;
|
|
126
128
|
error?: ErrorWrapper;
|
|
127
|
-
static
|
|
129
|
+
static x24Hours: boolean;
|
|
128
130
|
uniqueSubQId: string;
|
|
129
|
-
|
|
131
|
+
style: {
|
|
130
132
|
labelClass: any;
|
|
131
133
|
labelStyle: any;
|
|
132
134
|
labelValueStyle: any;
|
|
@@ -145,32 +147,33 @@ export declare class OptionR {
|
|
|
145
147
|
records?: Option[];
|
|
146
148
|
}
|
|
147
149
|
export declare class Option {
|
|
148
|
-
|
|
150
|
+
id: string;
|
|
149
151
|
Name: string;
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
152
|
+
value: string;
|
|
153
|
+
trackingId: string;
|
|
154
|
+
nextQuestion?: string;
|
|
153
155
|
}
|
|
154
156
|
export declare class OptionValue {
|
|
155
|
-
|
|
157
|
+
id: string;
|
|
156
158
|
Name: string;
|
|
157
|
-
|
|
158
|
-
|
|
159
|
+
value: string;
|
|
160
|
+
nextQuestion?: string;
|
|
159
161
|
checked: boolean;
|
|
160
162
|
}
|
|
161
163
|
export declare class AnswerBook {
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
164
|
+
id: string;
|
|
165
|
+
questionBookId: string;
|
|
166
|
+
status: string;
|
|
165
167
|
Answers__r?: AnswerR;
|
|
168
|
+
answers: any;
|
|
166
169
|
}
|
|
167
170
|
export declare class Answer {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
171
|
+
id: string;
|
|
172
|
+
quesValue: string;
|
|
173
|
+
ansValue: string;
|
|
174
|
+
qTyp: string;
|
|
175
|
+
quesId: string;
|
|
176
|
+
groupText: string;
|
|
174
177
|
}
|
|
175
178
|
export declare class AnswerR {
|
|
176
179
|
records?: Answer[];
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|