@touchpoll/tp-survey 0.0.54 → 0.0.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/fesm2022/touchpoll-tp-survey.mjs +233 -260
- package/fesm2022/touchpoll-tp-survey.mjs.map +1 -1
- package/package.json +3 -3
- package/styles/platform/component/survey.checkbox.scss +1 -1
- package/styles/platform/survey.mixins.tablet.scss +1 -1
- package/styles/theme/theme-colors.touchpoll.scss +137 -137
- package/types/touchpoll-tp-survey.d.ts +506 -0
- package/index.d.ts +0 -5
- package/lib/component/answer/answer.additional/answer.additional.component.d.ts +0 -17
- package/lib/component/answer/answer.additional/directive/additional.answer.caption.position/additional.answer.caption.position.directive.d.ts +0 -16
- package/lib/component/answer/answer.end/answer.end.component.d.ts +0 -6
- package/lib/component/answer/answer.info/answer.info.component.d.ts +0 -6
- package/lib/component/answer/answer.lang/answer.lang.component.d.ts +0 -9
- package/lib/component/answer/answer.master/answer.master.component.d.ts +0 -24
- package/lib/component/answer/answer.ms/answer.ms.component.d.ts +0 -21
- package/lib/component/answer/answer.od/answer.od.component.d.ts +0 -8
- package/lib/component/answer/answer.ol/answer.ol.component.d.ts +0 -8
- package/lib/component/answer/answer.sl/answer.sl.component.d.ts +0 -22
- package/lib/component/answer/answer.sl/pipe/as.form.array/as.form.array.pipe.d.ts +0 -8
- package/lib/component/answer/answer.sl/pipe/as.form.control/as.form.control.pipe.d.ts +0 -8
- package/lib/component/answer/answer.ss/answer.ss.component.d.ts +0 -10
- package/lib/component/answer/container.answer/container.answer.component.d.ts +0 -38
- package/lib/component/answer/container.answer/container.answer.validator.d.ts +0 -10
- package/lib/component/navigation.button/navigation.button.component.d.ts +0 -9
- package/lib/component/question.caption/question.caption.component.d.ts +0 -8
- package/lib/component/survey.play/survey.play.component.d.ts +0 -38
- package/lib/component/survey.question.preview/survey.question.preview.component.d.ts +0 -19
- package/lib/core/tp.servey.quota/tp.survey.quota.d.ts +0 -12
- package/lib/core/tp.survey.answer/tp.survey.answer.d.ts +0 -16
- package/lib/core/tp.survey.core/tp.survey.core.service.d.ts +0 -30
- package/lib/core/tp.survey.interview/tp.survey.interview.service.d.ts +0 -14
- package/lib/core/tp.survey.logic/tp.survey.logic.service.d.ts +0 -12
- package/lib/directive/alternatives.container/alternatives.container.directive.d.ts +0 -17
- package/lib/directive/focus.and.select/focus.and.select.directive.d.ts +0 -9
- package/lib/directive/image.position/image.position.directive.d.ts +0 -8
- package/lib/directive/image.site/image.size.directive.d.ts +0 -9
- package/lib/directive/insert.question.css/insert.question.css.directive.d.ts +0 -8
- package/lib/directive/survey.theme/survey.theme.directive.d.ts +0 -14
- package/lib/directive/update.font.size/update.font.size.directive.d.ts +0 -10
- package/lib/icons/default.icons/default.icons.d.ts +0 -5
- package/lib/icons/default.icons/default.icons.module.d.ts +0 -12
- package/lib/pipe/generate.default.answer/generate.default.answer.pipe.d.ts +0 -8
- package/lib/pipe/get.active.language/get.active.language.pipe.d.ts +0 -8
- package/lib/pipe/get.additional.value.by.value/get.additional.value.by.value.pipe.d.ts +0 -8
- package/lib/pipe/get.question.image.background.size/get.question.image.background.css.size.pipe.d.ts +0 -12
- package/lib/pipe/is.video/is.video.pipe.d.ts +0 -7
- package/lib/pipe/key.values/key.values.pipe.d.ts +0 -14
- package/lib/pipe/multi.lang.object.to.html/multi.lang.object.to.html.pipe.d.ts +0 -14
- package/lib/tp.survey.config.d.ts +0 -11
- package/lib/tp.survey.const.d.ts +0 -5
- package/lib/tp.survey.enum.d.ts +0 -43
- package/lib/tp.survey.interface.d.ts +0 -346
- package/lib/tp.survey.method.d.ts +0 -1
- package/lib/tp.survey.module.d.ts +0 -10
- package/lib/tp.survey.type.d.ts +0 -17
- package/public-api.d.ts +0 -10
|
@@ -1,346 +0,0 @@
|
|
|
1
|
-
import { AdditionalAnswer, AdditionalAnswerCaptionPosition, AnswerT, LogicObject, SurveyType, TImagePositionHorizontal, TImagePositionVertical } from './tp.survey.type';
|
|
2
|
-
import { AdditionalAnswerType, ResultativeStatus, ValidStatus } from './tp.survey.enum';
|
|
3
|
-
import { Answer } from './core/tp.survey.answer/tp.survey.answer';
|
|
4
|
-
export interface AnswerChange {
|
|
5
|
-
guid: number;
|
|
6
|
-
isComplete: boolean;
|
|
7
|
-
answer: AnswerT;
|
|
8
|
-
additionalAnswers: Record<number, AdditionalAnswer>;
|
|
9
|
-
logicVars: LogicObject;
|
|
10
|
-
viewedAlternativeValues: Array<number>;
|
|
11
|
-
viewedSectionGuids: Array<number>;
|
|
12
|
-
alternativeSequenceClicks: Array<[number, number]>;
|
|
13
|
-
}
|
|
14
|
-
export interface IdbBaseParamsLanguage {
|
|
15
|
-
Value: number;
|
|
16
|
-
Caption: string;
|
|
17
|
-
isActive: boolean;
|
|
18
|
-
icon_svg_name: string;
|
|
19
|
-
back_button_caption: string;
|
|
20
|
-
next_button_caption: string;
|
|
21
|
-
}
|
|
22
|
-
export interface IdbBaseParamsRepositoryObject {
|
|
23
|
-
OriginalName: string;
|
|
24
|
-
QuestionaryName: string;
|
|
25
|
-
}
|
|
26
|
-
export interface IdbQuestionaryBaseParams {
|
|
27
|
-
ResultativeScript: string;
|
|
28
|
-
ResultativeScriptUser: string;
|
|
29
|
-
QuotaLimitDestinationQuestionGuid: number;
|
|
30
|
-
LanguageList: Array<IdbBaseParamsLanguage>;
|
|
31
|
-
RepositoryList: Array<IdbBaseParamsRepositoryObject>;
|
|
32
|
-
BaseHeight: number;
|
|
33
|
-
BaseWidth: number;
|
|
34
|
-
AlternativeMaxAnswersCount: number;
|
|
35
|
-
AlternativeMinAnswersCount: number;
|
|
36
|
-
MinInterviewTime: number;
|
|
37
|
-
MinTimeBetweenInterview: number;
|
|
38
|
-
AlternativeColumnCount: number;
|
|
39
|
-
ForceDesktopView: boolean;
|
|
40
|
-
SurveyTheme: string;
|
|
41
|
-
BlockScrollToNavigation: boolean;
|
|
42
|
-
Logo: Array<string>;
|
|
43
|
-
}
|
|
44
|
-
export interface IdbQuestionaryInfo {
|
|
45
|
-
updatetimestamp: Date;
|
|
46
|
-
name: string;
|
|
47
|
-
questionary_guid: number;
|
|
48
|
-
current_wave: number;
|
|
49
|
-
survey_options: IdbSurveyOptions;
|
|
50
|
-
last_update_timestamp?: Date;
|
|
51
|
-
repository_path?: string;
|
|
52
|
-
}
|
|
53
|
-
export interface IdbSurveyOptions {
|
|
54
|
-
attempt_limit: number;
|
|
55
|
-
reload_after_end: boolean;
|
|
56
|
-
save_not_result: boolean;
|
|
57
|
-
stop_after_quotas_full: boolean;
|
|
58
|
-
authorization_facebook: boolean;
|
|
59
|
-
authorization_instagram: boolean;
|
|
60
|
-
authorization_password: boolean;
|
|
61
|
-
available_on_tablet: boolean;
|
|
62
|
-
available_on_web: boolean;
|
|
63
|
-
}
|
|
64
|
-
export interface IdbMultilangObject {
|
|
65
|
-
CaptionHtml: string;
|
|
66
|
-
lang: number;
|
|
67
|
-
_SYS_CaptionHTML: string;
|
|
68
|
-
_SYS_CaptionRTF: string;
|
|
69
|
-
_SYS_htmlPlanText?: string;
|
|
70
|
-
}
|
|
71
|
-
export interface IdbLogicCaptionObject {
|
|
72
|
-
MultiLangCaptions: Array<IdbMultilangObject>;
|
|
73
|
-
Expression: string;
|
|
74
|
-
ExpressionUser: string;
|
|
75
|
-
}
|
|
76
|
-
export interface IdbTpBackGround {
|
|
77
|
-
StyleCss: string;
|
|
78
|
-
Color?: string;
|
|
79
|
-
Image: string;
|
|
80
|
-
PositionHorizontal: TImagePositionHorizontal;
|
|
81
|
-
PositionVertical: TImagePositionVertical;
|
|
82
|
-
DesktopHeight?: number | string | 'auto' | null;
|
|
83
|
-
DesktopWidth?: number | string | 'auto' | null;
|
|
84
|
-
MobileHeight?: number | string | 'auto' | null;
|
|
85
|
-
MobileWidth?: number | string | 'auto' | null;
|
|
86
|
-
}
|
|
87
|
-
export interface IdbAlternative {
|
|
88
|
-
EnableExpression: string;
|
|
89
|
-
EnableExpressionUser: string;
|
|
90
|
-
MultiLangCaptions: Array<IdbMultilangObject>;
|
|
91
|
-
Rotation: boolean;
|
|
92
|
-
SysName: string;
|
|
93
|
-
alias: string;
|
|
94
|
-
Value: number;
|
|
95
|
-
GroupNo: number;
|
|
96
|
-
BackGround: IdbTpBackGround;
|
|
97
|
-
PushBackground: IdbTpBackGround | undefined;
|
|
98
|
-
IsMute: boolean;
|
|
99
|
-
height: number;
|
|
100
|
-
width: number;
|
|
101
|
-
x: number;
|
|
102
|
-
y: number;
|
|
103
|
-
}
|
|
104
|
-
export interface IdbMQSectionItem {
|
|
105
|
-
CaptionPosition: string;
|
|
106
|
-
Alias: string;
|
|
107
|
-
EnableExpression: string;
|
|
108
|
-
IsRequired: boolean;
|
|
109
|
-
ItemType: number;
|
|
110
|
-
ItemValue: number;
|
|
111
|
-
MultiLangCaptions: Array<IdbMultilangObject>;
|
|
112
|
-
AdditionalAnswerlist: Array<any>;
|
|
113
|
-
NumberMaxValue: number;
|
|
114
|
-
NumberMinValue: number;
|
|
115
|
-
NumberOfDecimalPlaces: number;
|
|
116
|
-
SysName: string;
|
|
117
|
-
Weight: number;
|
|
118
|
-
SelectCompactView: boolean;
|
|
119
|
-
SelectAlternativeList: Array<any>;
|
|
120
|
-
SelectColCount: number;
|
|
121
|
-
SelectMaxAnswersCount: number;
|
|
122
|
-
SelectMinAnswersCount: number;
|
|
123
|
-
TextRowsCount: number;
|
|
124
|
-
TextRegularExpression: string;
|
|
125
|
-
Placeholder: string;
|
|
126
|
-
SelectAnswerValues?: Array<any>;
|
|
127
|
-
}
|
|
128
|
-
export interface IdbSection {
|
|
129
|
-
Alias: string;
|
|
130
|
-
SysName: string;
|
|
131
|
-
Rotation: boolean;
|
|
132
|
-
BackGround: IdbTpBackGround;
|
|
133
|
-
SectionNum: number;
|
|
134
|
-
SectionGuid: number;
|
|
135
|
-
RequireAnswer: boolean;
|
|
136
|
-
MQSectionItems: Array<IdbMQSectionItem>;
|
|
137
|
-
CaptionPosition: string;
|
|
138
|
-
RightBackground: IdbTpBackGround;
|
|
139
|
-
EnableExpression: string;
|
|
140
|
-
EnableExpressionUser: string;
|
|
141
|
-
MultiLangCaptions: Array<IdbMultilangObject>;
|
|
142
|
-
RequireAllAnswers: boolean;
|
|
143
|
-
MultiLangRightCaptions: Array<IdbMultilangObject>;
|
|
144
|
-
}
|
|
145
|
-
export interface IdbLogic {
|
|
146
|
-
DestinationQuestionGuid: number;
|
|
147
|
-
LogicText: string;
|
|
148
|
-
LogicTextUser: string;
|
|
149
|
-
}
|
|
150
|
-
export interface IdbRegion {
|
|
151
|
-
Value: number;
|
|
152
|
-
Text: string;
|
|
153
|
-
}
|
|
154
|
-
export interface IdbImage {
|
|
155
|
-
Image: IdbTpBackGround;
|
|
156
|
-
EnableExpression: string;
|
|
157
|
-
EnableExpressionUser: string;
|
|
158
|
-
}
|
|
159
|
-
export interface IdbAdditionalAnswer {
|
|
160
|
-
readonly Value: number;
|
|
161
|
-
readonly SysName: string;
|
|
162
|
-
readonly AnswerType: AdditionalAnswerType;
|
|
163
|
-
MultiLangCaptions: Array<IdbMultilangObject>;
|
|
164
|
-
IsRequired: boolean;
|
|
165
|
-
CaptionPosition: AdditionalAnswerCaptionPosition;
|
|
166
|
-
EnableExpression: string;
|
|
167
|
-
EnableExpressionUser: string;
|
|
168
|
-
VisibleExpression: string;
|
|
169
|
-
VisibleExpressionUser: string;
|
|
170
|
-
TextMultiline: boolean;
|
|
171
|
-
NumberMinValue: number | null;
|
|
172
|
-
NumberMaxValue: number | null;
|
|
173
|
-
}
|
|
174
|
-
export interface IdbQuestion {
|
|
175
|
-
QuestionNum: number;
|
|
176
|
-
QuestionGuid: number;
|
|
177
|
-
MultiLangCaptions: Array<IdbMultilangObject>;
|
|
178
|
-
MultiLangCaptionsHelper: Array<IdbMultilangObject>;
|
|
179
|
-
LogicCaptionsList: Array<IdbLogicCaptionObject>;
|
|
180
|
-
QuestionType: string;
|
|
181
|
-
Alternativelist: Array<IdbAlternative>;
|
|
182
|
-
ImageList: Array<IdbImage>;
|
|
183
|
-
Sectionlist: Array<IdbSection>;
|
|
184
|
-
logiclist: Array<IdbLogic>;
|
|
185
|
-
RegionList: Array<IdbRegion>;
|
|
186
|
-
AdditionalAnswerlist: Array<IdbAdditionalAnswer>;
|
|
187
|
-
QuestionBackground: IdbTpBackGround;
|
|
188
|
-
Version: number;
|
|
189
|
-
SysName: string;
|
|
190
|
-
SysNameAlias: string;
|
|
191
|
-
BeforeExpression: string;
|
|
192
|
-
BeforeExpressionUser: string;
|
|
193
|
-
PostScript: string;
|
|
194
|
-
PostScriptUser: string;
|
|
195
|
-
ShowBtnBack: boolean;
|
|
196
|
-
ShowBtnNext: boolean;
|
|
197
|
-
BtnNextExpression: string;
|
|
198
|
-
BtnNextExpressionUser: string;
|
|
199
|
-
BtnNextDelaySec?: number | null;
|
|
200
|
-
CaptionAlias: string;
|
|
201
|
-
AudioControlSec: number;
|
|
202
|
-
MinAnswerTime: number;
|
|
203
|
-
TimeDisplay: number;
|
|
204
|
-
Implicit: boolean;
|
|
205
|
-
CanSkip: boolean;
|
|
206
|
-
BackgroundColor?: string | null;
|
|
207
|
-
Css?: string | null;
|
|
208
|
-
OLMaxCount: number;
|
|
209
|
-
OLMinCount: number;
|
|
210
|
-
OLRegexp: string;
|
|
211
|
-
OLTypeTel: boolean;
|
|
212
|
-
ODMaxValue: number;
|
|
213
|
-
ODMinValue: number;
|
|
214
|
-
AlternativeAutoSize: boolean;
|
|
215
|
-
AlternativeAutoArrange: boolean;
|
|
216
|
-
AlternativeMinAnswersCount: number;
|
|
217
|
-
AlternativeMaxAnswersCount: number;
|
|
218
|
-
AlternativeColumnCount: number;
|
|
219
|
-
AlternativeHorizontalDistance: number;
|
|
220
|
-
AlternativeVerticalDistance: number;
|
|
221
|
-
AlternativeMarginTop: number;
|
|
222
|
-
AlternativeMarginLeft: number;
|
|
223
|
-
AlternativeHeight: number;
|
|
224
|
-
AlternativeWidth: number;
|
|
225
|
-
AlternativeBackgroundImageHeight: string | null;
|
|
226
|
-
AlternativeBackgroundImageWidth: string | null;
|
|
227
|
-
AlternativeTabletFontSize: number;
|
|
228
|
-
TabletViewAlternativeColumnCount: number;
|
|
229
|
-
MobileViewAlternativeColumnCount: number;
|
|
230
|
-
MobileViewAlternativeBackgroundImageHeight: string | null;
|
|
231
|
-
MobileViewAlternativeBackgroundImageWidth: string | null;
|
|
232
|
-
MultiSelect: boolean;
|
|
233
|
-
RequireAllAnswers: boolean;
|
|
234
|
-
SLSectionMinAnswersCount: number;
|
|
235
|
-
SLSectionMaxAnswersCount: number;
|
|
236
|
-
}
|
|
237
|
-
export interface IdbQuestionaryQuota {
|
|
238
|
-
quota_guid: number;
|
|
239
|
-
over_limit: number;
|
|
240
|
-
count_result_interview_for_this_qouta: number;
|
|
241
|
-
limit: number;
|
|
242
|
-
name: string;
|
|
243
|
-
expression: string;
|
|
244
|
-
}
|
|
245
|
-
export interface IdbQuestionaryQuota2dObject {
|
|
246
|
-
qs: Array<{
|
|
247
|
-
guid: number;
|
|
248
|
-
value: number;
|
|
249
|
-
}>;
|
|
250
|
-
cqv: Array<{
|
|
251
|
-
guid: number;
|
|
252
|
-
value: number;
|
|
253
|
-
}> | null;
|
|
254
|
-
qvg: number;
|
|
255
|
-
exp: string | null;
|
|
256
|
-
}
|
|
257
|
-
export interface IdbQuestionaryQuota2d {
|
|
258
|
-
vls: Array<IdbQuestionaryQuota2dObject>;
|
|
259
|
-
name: string;
|
|
260
|
-
base_guid: number;
|
|
261
|
-
}
|
|
262
|
-
export interface IdbQuestionary {
|
|
263
|
-
BaseParams: IdbQuestionaryBaseParams;
|
|
264
|
-
Info: IdbQuestionaryInfo;
|
|
265
|
-
Questions: Array<IdbQuestion>;
|
|
266
|
-
Quotas: Array<IdbQuestionaryQuota>;
|
|
267
|
-
Quotas2d: Array<IdbQuestionaryQuota2dObject>;
|
|
268
|
-
}
|
|
269
|
-
export interface IQuestionAnswer {
|
|
270
|
-
StartedAt: number;
|
|
271
|
-
FinishedAt: number;
|
|
272
|
-
QuestionGUID: number;
|
|
273
|
-
QuestionVersion: number;
|
|
274
|
-
AnswerValue: any;
|
|
275
|
-
AnswerAdditional: Record<number, AdditionalAnswer>;
|
|
276
|
-
ViewedAlternativeValues: Array<number>;
|
|
277
|
-
ViewedSectionGuids: Array<number>;
|
|
278
|
-
AlternativeSequenceClicks: Array<[number, number]>;
|
|
279
|
-
}
|
|
280
|
-
export interface IInterviewAutoSaveData {
|
|
281
|
-
interview_auto_save_id: string;
|
|
282
|
-
answer_list?: Array<IQuestionAnswer>;
|
|
283
|
-
logic_vars?: Array<IInterviewLogicVar>;
|
|
284
|
-
question_guid?: number;
|
|
285
|
-
}
|
|
286
|
-
export interface ICurrentQuestionAnswer {
|
|
287
|
-
question?: Answer;
|
|
288
|
-
sections?: Array<Answer | undefined>;
|
|
289
|
-
}
|
|
290
|
-
export interface IInterviewLogicVar {
|
|
291
|
-
nm: string;
|
|
292
|
-
vl: any;
|
|
293
|
-
}
|
|
294
|
-
export interface IInterviewAdditionalInfo {
|
|
295
|
-
QuestionaryUpdateTimestamp: number | null;
|
|
296
|
-
quotaIsCompleted?: boolean;
|
|
297
|
-
surveyType?: SurveyType;
|
|
298
|
-
phoneNumber?: string;
|
|
299
|
-
catiInterviewerId?: string;
|
|
300
|
-
referrer?: string;
|
|
301
|
-
trackId?: string;
|
|
302
|
-
interviewAutoSaveId?: string;
|
|
303
|
-
last_autosave_question_guid?: number;
|
|
304
|
-
clientIp?: string;
|
|
305
|
-
clientHeaders?: {
|
|
306
|
-
[key: string]: string;
|
|
307
|
-
};
|
|
308
|
-
[key: string]: any;
|
|
309
|
-
}
|
|
310
|
-
export interface IInterviewData {
|
|
311
|
-
Language: number;
|
|
312
|
-
SpotId: number;
|
|
313
|
-
DeviceId: number;
|
|
314
|
-
DeviceType: number;
|
|
315
|
-
Resultative: ResultativeStatus;
|
|
316
|
-
Valid: ValidStatus;
|
|
317
|
-
Wave: number;
|
|
318
|
-
QuestionaryName: string;
|
|
319
|
-
QuestionaryGuid: number;
|
|
320
|
-
StartedAt: number;
|
|
321
|
-
FinishedAt: number;
|
|
322
|
-
TineZoneBias: number;
|
|
323
|
-
ResultatDirty: boolean;
|
|
324
|
-
Answers: {
|
|
325
|
-
AnsversList: Array<any>;
|
|
326
|
-
};
|
|
327
|
-
additional_info: IInterviewAdditionalInfo;
|
|
328
|
-
ResultQuotaGuids?: Array<{
|
|
329
|
-
base_guid: number;
|
|
330
|
-
result: boolean;
|
|
331
|
-
}>;
|
|
332
|
-
ResultQuota2dGuids?: Array<any>;
|
|
333
|
-
LogicVars: Array<IInterviewLogicVar>;
|
|
334
|
-
UniqueDeviceText?: string;
|
|
335
|
-
SpotGuid?: number;
|
|
336
|
-
}
|
|
337
|
-
export interface IInterviewProgressEventData {
|
|
338
|
-
logicVars: LogicObject;
|
|
339
|
-
answerList: Array<Answer>;
|
|
340
|
-
}
|
|
341
|
-
export interface IInterviewProgressEvent {
|
|
342
|
-
currentNum: number;
|
|
343
|
-
questionsCount: number;
|
|
344
|
-
questionGuid: number;
|
|
345
|
-
interviewData: IInterviewProgressEventData;
|
|
346
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function executeLogicExpression(expression: string, vars: Record<string, unknown>): Function;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { TpSurveyConfig } from './tp.survey.config';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./icons/default.icons/default.icons.module";
|
|
5
|
-
export declare class TpSurveyModule {
|
|
6
|
-
static forRoot(config: TpSurveyConfig): ModuleWithProviders<TpSurveyModule>;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TpSurveyModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TpSurveyModule, never, [typeof i1.DefaultIconsModule], never>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TpSurveyModule>;
|
|
10
|
-
}
|
package/lib/tp.survey.type.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export type MissingValueT = -97;
|
|
2
|
-
export type TpSurveyPlatform = 'browser' | 'device';
|
|
3
|
-
export type TpSurveySupportLanguage = 'uk' | 'en';
|
|
4
|
-
export type NavigationButtonDirection = 'back' | 'next';
|
|
5
|
-
export type AdditionalAnswer = number | string | boolean | null | MissingValueT;
|
|
6
|
-
export type AnswerT = number | string | boolean | null | MissingValueT | Array<number> | AnswerSlType;
|
|
7
|
-
export type AdditionalAnswerCaptionPosition = 'bottom' | 'left' | 'right' | 'top';
|
|
8
|
-
export type AnswerSlType = {
|
|
9
|
-
[key: string]: Array<number> | number;
|
|
10
|
-
};
|
|
11
|
-
export type SurveyType = 'CATI' | 'ONLINE';
|
|
12
|
-
export type TpSurveyTheme = 'touchpoll-light' | 'cyan-orange-light' | 'cyan-orange-dark' | 'rose-red-light' | 'rose-red-dark' | 'azure-blue-light' | 'azure-blue-dark';
|
|
13
|
-
export type LogicObject = Record<string, unknown>;
|
|
14
|
-
export type TTabletKeyboardVisibleStatus = 'show' | 'hide';
|
|
15
|
-
export type TFindVariableVoid = (sysName: string) => string;
|
|
16
|
-
export type TImagePositionHorizontal = 'left' | 'center' | 'right';
|
|
17
|
-
export type TImagePositionVertical = 'top' | 'center' | 'bottom';
|
package/public-api.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export * from './lib/tp.survey.module';
|
|
2
|
-
export * from './lib/component/survey.play/survey.play.component';
|
|
3
|
-
export * from './lib/component/survey.question.preview/survey.question.preview.component';
|
|
4
|
-
export * from './lib/tp.survey.config';
|
|
5
|
-
export * from './lib/tp.survey.const';
|
|
6
|
-
export * from './lib/tp.survey.type';
|
|
7
|
-
export * from './lib/tp.survey.interface';
|
|
8
|
-
export * from './lib/tp.survey.enum';
|
|
9
|
-
export * from './lib/tp.survey.method';
|
|
10
|
-
export * from './lib/core/tp.survey.answer/tp.survey.answer';
|