@rangertechnologies/ngnxt 2.1.106 → 2.1.108
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/ar.i18n.mjs +29 -0
- package/esm2022/lib/components/button/nxt-button.component.mjs +130 -0
- package/esm2022/lib/components/custom-button/custom-button.component.mjs +39 -0
- package/esm2022/lib/components/custom-calendar/custom-calendar.component.mjs +366 -0
- package/esm2022/lib/components/custom-date/custom-date.component.mjs +47 -0
- package/esm2022/lib/components/custom-date-picker/custom-date-picker.component.mjs +48 -0
- package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +219 -0
- package/esm2022/lib/components/custom-image/custom-image.component.mjs +34 -0
- package/esm2022/lib/components/custom-input/custom-input.component.mjs +93 -0
- package/esm2022/lib/components/custom-label/custom-label.component.mjs +21 -0
- package/esm2022/lib/components/custom-model/custom-model.component.mjs +48 -0
- package/esm2022/lib/components/custom-radio/custom-radio.component.mjs +115 -0
- package/esm2022/lib/components/custom-rich-text/custom-rich-text.component.mjs +186 -0
- package/esm2022/lib/components/custom-table/custom-table.component.mjs +347 -0
- package/esm2022/lib/components/custom-text-area/custom-text-area.component.mjs +65 -0
- package/esm2022/lib/components/custom-time/custom-time.component.mjs +61 -0
- package/esm2022/lib/components/datatable/datatable.component.mjs +801 -0
- package/esm2022/lib/components/dependent-table/dependent-table.component.mjs +42 -0
- package/esm2022/lib/components/dropdown-with-flag/dropdown-with-flag.component.mjs +39 -0
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +279 -0
- package/esm2022/lib/components/file-view/file-view.component.mjs +46 -0
- package/esm2022/lib/components/loader/loader.component.mjs +23 -0
- package/esm2022/lib/components/pagination/pagination.component.mjs +100 -0
- package/esm2022/lib/components/pick-location/pick-location.component.mjs +216 -0
- package/esm2022/lib/components/search-box/search-box.component.mjs +202 -0
- package/esm2022/lib/components/table-appendix/table-appendix.component.mjs +123 -0
- package/esm2022/lib/directives/componenthost/componenthost.directive.mjs +19 -0
- package/esm2022/lib/en.i18n.mjs +29 -0
- package/esm2022/lib/i18n-config.service.mjs +4 -0
- package/esm2022/lib/i18n.component.mjs +47 -0
- package/esm2022/lib/i18n.module.mjs +38 -0
- package/esm2022/lib/i18n.pipe.mjs +25 -0
- package/esm2022/lib/i18n.service.mjs +56 -0
- package/esm2022/lib/interfaces/actionMeta.mjs +2 -0
- package/esm2022/lib/interfaces/apimeta.mjs +2 -0
- package/esm2022/lib/interfaces/dependencyMeta.mjs +2 -0
- package/esm2022/lib/model/bookletWrapper.mjs +9 -0
- package/esm2022/lib/model/changeWrapper.mjs +11 -0
- package/esm2022/lib/model/errorWrapper.mjs +6 -0
- package/esm2022/lib/model/tableWrapper.mjs +20 -0
- package/esm2022/lib/nxt-app.component.mjs +22 -0
- package/esm2022/lib/nxt-app.module.mjs +399 -0
- package/esm2022/lib/nxt-app.service.mjs +14 -0
- package/esm2022/lib/pages/booklet/booklet.component.mjs +541 -0
- package/esm2022/lib/pages/builder/element/element.component.mjs +196 -0
- package/esm2022/lib/pages/builder/form/form.component.mjs +34 -0
- package/esm2022/lib/pages/builder/menu/menu.component.mjs +28 -0
- package/esm2022/lib/pages/builder/properties/properties.component.mjs +494 -0
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +458 -0
- package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +2387 -0
- package/esm2022/lib/pages/summary-page/summary-page.component.mjs +76 -0
- package/esm2022/lib/pipe/date/date.pipe.mjs +28 -0
- package/esm2022/lib/pipe/editColumnCheck/edit-column-check.pipe.mjs +28 -0
- package/esm2022/lib/pipe/editColumnDropdown/edit-column-dropdown.pipe.mjs +20 -0
- package/esm2022/lib/pipe/editColumnType/edit-column-type.pipe.mjs +20 -0
- package/esm2022/lib/pipe/get-value.pipe.mjs +50 -0
- package/esm2022/lib/pipe/search-filter/search-filter.pipe.mjs +39 -0
- package/esm2022/lib/pipe/time/time.pipe.mjs +26 -0
- package/esm2022/lib/sample.mjs +3715 -0
- package/esm2022/lib/services/change.service.mjs +53 -0
- package/esm2022/lib/services/data.service.mjs +80 -0
- package/esm2022/lib/services/form-builder.service.mjs +173 -0
- package/esm2022/lib/services/salesforce.service.mjs +46 -0
- package/esm2022/lib/services/shared.service.mjs +100 -0
- package/esm2022/lib/services/storage.service.mjs +44 -0
- package/esm2022/lib/tam.i18n.mjs +29 -0
- package/esm2022/lib/wrapper.mjs +175 -0
- package/esm2022/public-api.mjs +22 -0
- package/esm2022/rangertechnologies-ngnxt.mjs +5 -0
- package/fesm2022/rangertechnologies-ngnxt.mjs +12900 -0
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/ar.i18n.d.ts +24 -0
- package/lib/components/button/nxt-button.component.d.ts +38 -0
- package/lib/components/custom-button/custom-button.component.d.ts +16 -0
- package/lib/components/custom-calendar/custom-calendar.component.d.ts +65 -0
- package/lib/components/custom-date/custom-date.component.d.ts +18 -0
- package/lib/components/custom-date-picker/custom-date-picker.component.d.ts +19 -0
- package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +39 -0
- package/lib/components/custom-image/custom-image.component.d.ts +13 -0
- package/lib/components/custom-input/custom-input.component.d.ts +31 -0
- package/lib/components/custom-label/custom-label.component.d.ts +10 -0
- package/lib/components/custom-model/custom-model.component.d.ts +19 -0
- package/lib/components/custom-radio/custom-radio.component.d.ts +33 -0
- package/lib/components/custom-rich-text/custom-rich-text.component.d.ts +29 -0
- package/lib/components/custom-table/custom-table.component.d.ts +65 -0
- package/lib/components/custom-text-area/custom-text-area.component.d.ts +22 -0
- package/lib/components/custom-time/custom-time.component.d.ts +18 -0
- package/lib/components/datatable/datatable.component.d.ts +126 -0
- package/lib/components/dependent-table/dependent-table.component.d.ts +15 -0
- package/lib/components/dropdown-with-flag/dropdown-with-flag.component.d.ts +16 -0
- package/lib/components/file-upload/file-upload.component.d.ts +47 -0
- package/lib/components/file-view/file-view.component.d.ts +16 -0
- package/lib/components/loader/loader.component.d.ts +11 -0
- package/lib/components/pagination/pagination.component.d.ts +36 -0
- package/lib/components/pick-location/pick-location.component.d.ts +44 -0
- package/lib/components/search-box/search-box.component.d.ts +43 -0
- package/lib/components/table-appendix/table-appendix.component.d.ts +30 -0
- package/lib/directives/componenthost/componenthost.directive.d.ts +8 -0
- package/lib/en.i18n.d.ts +24 -0
- package/lib/i18n-config.service.d.ts +2 -0
- package/lib/i18n.component.d.ts +11 -0
- package/lib/i18n.module.d.ts +9 -0
- package/lib/i18n.pipe.d.ts +10 -0
- package/lib/i18n.service.d.ts +14 -0
- package/lib/interfaces/actionMeta.d.ts +5 -0
- package/lib/interfaces/apimeta.d.ts +15 -0
- package/lib/interfaces/dependencyMeta.d.ts +8 -0
- package/lib/model/bookletWrapper.d.ts +5 -0
- package/lib/model/changeWrapper.d.ts +10 -0
- package/lib/model/errorWrapper.d.ts +5 -0
- package/lib/model/tableWrapper.d.ts +18 -0
- package/lib/nxt-app.component.d.ts +8 -0
- package/lib/nxt-app.module.d.ts +52 -0
- package/lib/nxt-app.service.d.ts +6 -0
- package/lib/pages/booklet/booklet.component.d.ts +68 -0
- package/lib/pages/builder/element/element.component.d.ts +33 -0
- package/lib/pages/builder/form/form.component.d.ts +11 -0
- package/lib/pages/builder/menu/menu.component.d.ts +10 -0
- package/lib/pages/builder/properties/properties.component.d.ts +575 -0
- package/lib/pages/questionbook/questionbook.component.d.ts +68 -0
- package/lib/pages/questionnaire/questionnaire.component.d.ts +220 -0
- package/lib/pages/summary-page/summary-page.component.d.ts +20 -0
- package/lib/pipe/date/date.pipe.d.ts +7 -0
- package/lib/pipe/editColumnCheck/edit-column-check.pipe.d.ts +7 -0
- package/lib/pipe/editColumnDropdown/edit-column-dropdown.pipe.d.ts +7 -0
- package/lib/pipe/editColumnType/edit-column-type.pipe.d.ts +7 -0
- package/lib/pipe/get-value.pipe.d.ts +7 -0
- package/lib/pipe/search-filter/search-filter.pipe.d.ts +8 -0
- package/lib/pipe/time/time.pipe.d.ts +7 -0
- package/lib/sample.d.ts +11 -0
- package/lib/services/change.service.d.ts +22 -0
- package/lib/services/data.service.d.ts +13 -0
- package/lib/services/form-builder.service.d.ts +76 -0
- package/lib/services/salesforce.service.d.ts +11 -0
- package/lib/services/shared.service.d.ts +15 -0
- package/lib/services/storage.service.d.ts +13 -0
- package/lib/tam.i18n.d.ts +24 -0
- package/lib/wrapper.d.ts +203 -0
- package/package.json +1 -5
- package/public-api.d.ts +15 -0
- package/rangertechnologies-ngnxt-2.1.108.tgz +0 -0
- package/src/lib/style.css +1817 -0
package/lib/wrapper.d.ts
ADDED
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import { ErrorWrapper } from "./model/errorWrapper";
|
|
2
|
+
export declare class QuestionBook {
|
|
3
|
+
id: number;
|
|
4
|
+
Name: string;
|
|
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
|
+
Questions__r?: QuestionR;
|
|
20
|
+
progressBar: boolean;
|
|
21
|
+
subTitle: string;
|
|
22
|
+
qTyp: string;
|
|
23
|
+
possibilities: string;
|
|
24
|
+
summarySubText: string;
|
|
25
|
+
isShengel?: boolean;
|
|
26
|
+
style: {
|
|
27
|
+
labelClass: any;
|
|
28
|
+
labelStyle: any;
|
|
29
|
+
labelValueStyle: any;
|
|
30
|
+
inputClass: any;
|
|
31
|
+
inputStyle: any;
|
|
32
|
+
showLabel: boolean;
|
|
33
|
+
bookStyle: any;
|
|
34
|
+
direction: any;
|
|
35
|
+
questionStyle: any;
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
export declare class Question {
|
|
39
|
+
id: string;
|
|
40
|
+
Name: string;
|
|
41
|
+
referenceField?: string;
|
|
42
|
+
dependentRef?: string;
|
|
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
|
+
Question_Options__r?: OptionR;
|
|
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;
|
|
68
|
+
Questions__r?: QuestionR;
|
|
69
|
+
RecordType: {
|
|
70
|
+
Name: string;
|
|
71
|
+
};
|
|
72
|
+
subQuestions: any;
|
|
73
|
+
input?: any;
|
|
74
|
+
error?: ErrorWrapper;
|
|
75
|
+
valueName?: string;
|
|
76
|
+
dropDownOnly?: boolean;
|
|
77
|
+
isDependentPicklist?: boolean;
|
|
78
|
+
tableDataValue?: any[];
|
|
79
|
+
tableHeader?: string;
|
|
80
|
+
startDate?: any;
|
|
81
|
+
selectedValue?: string;
|
|
82
|
+
minDate?: any;
|
|
83
|
+
isShengel?: boolean;
|
|
84
|
+
style: {
|
|
85
|
+
labelClass: any;
|
|
86
|
+
labelStyle: any;
|
|
87
|
+
labelValueStyle: any;
|
|
88
|
+
inputClass: any;
|
|
89
|
+
inputStyle: any;
|
|
90
|
+
showLabel: boolean;
|
|
91
|
+
bookStyle: any;
|
|
92
|
+
direction: any;
|
|
93
|
+
questionStyle: any;
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
export declare class LocalQuestion {
|
|
97
|
+
id: string;
|
|
98
|
+
Name: string;
|
|
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;
|
|
117
|
+
Question_Options__r?: OptionR;
|
|
118
|
+
subText: string;
|
|
119
|
+
size: number;
|
|
120
|
+
trackingId: string;
|
|
121
|
+
additionalRichContent?: string;
|
|
122
|
+
selectedValue: string;
|
|
123
|
+
Questions__r?: QuestionR;
|
|
124
|
+
RecordType: {
|
|
125
|
+
Name: string;
|
|
126
|
+
};
|
|
127
|
+
input?: string;
|
|
128
|
+
error?: ErrorWrapper;
|
|
129
|
+
static x24Hours: boolean;
|
|
130
|
+
uniqueSubQId: string;
|
|
131
|
+
style: {
|
|
132
|
+
labelClass: any;
|
|
133
|
+
labelStyle: any;
|
|
134
|
+
labelValueStyle: any;
|
|
135
|
+
inputClass: any;
|
|
136
|
+
inputStyle: any;
|
|
137
|
+
showLabel: boolean;
|
|
138
|
+
bookStyle: any;
|
|
139
|
+
direction: any;
|
|
140
|
+
questionStyle: any;
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
export declare class QuestionR {
|
|
144
|
+
records?: Question[];
|
|
145
|
+
}
|
|
146
|
+
export declare class OptionR {
|
|
147
|
+
records?: Option[];
|
|
148
|
+
}
|
|
149
|
+
export declare class Option {
|
|
150
|
+
id: string;
|
|
151
|
+
Name: string;
|
|
152
|
+
value: string;
|
|
153
|
+
trackingId: string;
|
|
154
|
+
nextQuestion?: string;
|
|
155
|
+
}
|
|
156
|
+
export declare class OptionValue {
|
|
157
|
+
id: string;
|
|
158
|
+
Name: string;
|
|
159
|
+
value: string;
|
|
160
|
+
nextQuestion?: string;
|
|
161
|
+
checked: boolean;
|
|
162
|
+
}
|
|
163
|
+
export declare class AnswerBook {
|
|
164
|
+
id: string;
|
|
165
|
+
questionBookId: string;
|
|
166
|
+
status: string;
|
|
167
|
+
Answers__r?: AnswerR;
|
|
168
|
+
answers: any;
|
|
169
|
+
}
|
|
170
|
+
export declare class Answer {
|
|
171
|
+
id: string;
|
|
172
|
+
quesValue: string;
|
|
173
|
+
ansValue: string;
|
|
174
|
+
qTyp: string;
|
|
175
|
+
quesId: string;
|
|
176
|
+
groupText: string;
|
|
177
|
+
}
|
|
178
|
+
export declare class AnswerR {
|
|
179
|
+
records?: Answer[];
|
|
180
|
+
}
|
|
181
|
+
export declare class AnswerWrapper {
|
|
182
|
+
ansId?: string;
|
|
183
|
+
ansNumber?: number;
|
|
184
|
+
abId: string;
|
|
185
|
+
quesId: string;
|
|
186
|
+
quesValue: string;
|
|
187
|
+
qTyp: string;
|
|
188
|
+
ansValue: string;
|
|
189
|
+
groupText: string;
|
|
190
|
+
squesValue: string;
|
|
191
|
+
myVal: any;
|
|
192
|
+
}
|
|
193
|
+
export declare class AttachmentWrapper {
|
|
194
|
+
parentId: string;
|
|
195
|
+
fileName: string;
|
|
196
|
+
fileContent: string;
|
|
197
|
+
}
|
|
198
|
+
export declare class Attachment {
|
|
199
|
+
attachmentId: string;
|
|
200
|
+
attachmentName: string;
|
|
201
|
+
attachmentMetaData: any;
|
|
202
|
+
constructor(id: string, name: string, metaData: any);
|
|
203
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from './lib/nxt-app.service';
|
|
2
|
+
export * from './lib/nxt-app.component';
|
|
3
|
+
export * from './lib/nxt-app.module';
|
|
4
|
+
export * from './lib/pages/questionnaire/questionnaire.component';
|
|
5
|
+
export * from './lib/pages/booklet/booklet.component';
|
|
6
|
+
export * from './lib/pages/questionbook/questionbook.component';
|
|
7
|
+
export * from './lib/pages/summary-page/summary-page.component';
|
|
8
|
+
export * from './lib/services/salesforce.service';
|
|
9
|
+
export * from './lib/i18n.component';
|
|
10
|
+
export * from './lib/i18n.pipe';
|
|
11
|
+
export * from './lib/pages/builder/element/element.component';
|
|
12
|
+
export * from './lib/pages/builder/menu/menu.component';
|
|
13
|
+
export * from './lib/pages/builder/properties/properties.component';
|
|
14
|
+
export * from './lib/pages/builder/form/form.component';
|
|
15
|
+
export * from './lib/components/datatable/datatable.component';
|
|
Binary file
|