survey-creator-core 1.9.83 → 1.9.85
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/fonts.fontless.css +1 -1
- package/fonts.fontless.min.css +1 -1
- package/package.json +2 -2
- package/survey-creator-core.css +102 -25
- package/survey-creator-core.d.ts +1 -8046
- package/survey-creator-core.fontless.css +101 -24
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +6 -6
- package/survey-creator-core.i18n.js +126 -128
- package/survey-creator-core.i18n.js.map +1 -1
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +530 -165
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +7 -7
- package/survey-creator-core.min.js +2 -2
- package/typings/components/action-container-view-model.d.ts +27 -0
- package/typings/components/embedded-survey.d.ts +9 -0
- package/typings/components/header/logo-image.d.ts +15 -0
- package/typings/components/image-item-value.d.ts +21 -0
- package/typings/components/item-value.d.ts +42 -0
- package/typings/components/link-value.d.ts +27 -0
- package/typings/components/matrix-cell.d.ts +25 -0
- package/typings/components/page-navigator/page-navigator.d.ts +39 -0
- package/typings/components/page.d.ts +28 -0
- package/typings/components/question-dropdown.d.ts +18 -0
- package/typings/components/question-image.d.ts +9 -0
- package/typings/components/question-rating.d.ts +18 -0
- package/typings/components/question.d.ts +41 -0
- package/typings/components/results.d.ts +40 -0
- package/typings/components/row.d.ts +9 -0
- package/typings/components/side-bar/side-bar-model.d.ts +34 -0
- package/typings/components/side-bar/side-bar-tab-model.d.ts +11 -0
- package/typings/components/simulator.d.ts +205 -0
- package/typings/components/string-editor.d.ts +68 -0
- package/typings/components/tabs/designer-plugin.d.ts +26 -0
- package/typings/components/tabs/designer.d.ts +30 -0
- package/typings/components/tabs/embed-json.d.ts +1 -0
- package/typings/components/tabs/embed.d.ts +13 -0
- package/typings/components/tabs/json-editor-ace.d.ts +22 -0
- package/typings/components/tabs/json-editor-plugin.d.ts +28 -0
- package/typings/components/tabs/json-editor-textarea.d.ts +22 -0
- package/typings/components/tabs/logic-actions-model.d.ts +49 -0
- package/typings/components/tabs/logic-expression.d.ts +32 -0
- package/typings/components/tabs/logic-item-editor.d.ts +53 -0
- package/typings/components/tabs/logic-items.d.ts +96 -0
- package/typings/components/tabs/logic-plugin.d.ts +22 -0
- package/typings/components/tabs/logic-theme.d.ts +327 -0
- package/typings/components/tabs/logic-types.d.ts +77 -0
- package/typings/components/tabs/logic-ui.d.ts +68 -0
- package/typings/components/tabs/logic.d.ts +102 -0
- package/typings/components/tabs/test-plugin.d.ts +33 -0
- package/typings/components/tabs/test.d.ts +43 -0
- package/typings/components/tabs/translation-plugin.d.ts +33 -0
- package/typings/components/tabs/translation-theme.d.ts +301 -0
- package/typings/components/tabs/translation.d.ts +199 -0
- package/typings/components/toolbox/toolbox-tool.d.ts +16 -0
- package/typings/creator-base.d.ts +1375 -0
- package/typings/creator-options.d.ts +247 -0
- package/typings/creator-responsivity-manager.d.ts +22 -0
- package/typings/creator-settings.d.ts +219 -0
- package/typings/custom-questions/question-color.d.ts +15 -0
- package/typings/custom-questions/question-file.d.ts +15 -0
- package/typings/custom-questions/question-spin-editor.d.ts +25 -0
- package/typings/editable-object.d.ts +20 -0
- package/typings/editorLocalization.d.ts +954 -0
- package/typings/entries/index.d.ts +68 -0
- package/typings/expressionToDisplayText.d.ts +46 -0
- package/typings/json5.d.ts +46 -0
- package/typings/localization/english.d.ts +925 -0
- package/typings/pages-controller.d.ts +21 -0
- package/typings/plugins/undo-redo/index.d.ts +12 -0
- package/typings/plugins/undo-redo/undo-redo-controller.d.ts +40 -0
- package/typings/plugins/undo-redo/undo-redo-manager.d.ts +78 -0
- package/typings/property-grid/bindings.d.ts +10 -0
- package/typings/property-grid/cells-survey.d.ts +14 -0
- package/typings/property-grid/condition-survey.d.ts +117 -0
- package/typings/property-grid/condition.d.ts +13 -0
- package/typings/property-grid/description-parser.d.ts +10 -0
- package/typings/property-grid/fast-entry.d.ts +32 -0
- package/typings/property-grid/index.d.ts +239 -0
- package/typings/property-grid/matrices.d.ts +135 -0
- package/typings/property-grid/object-selector.d.ts +42 -0
- package/typings/property-grid/property-grid-view-model.d.ts +23 -0
- package/typings/property-grid/restfull.d.ts +8 -0
- package/typings/property-grid/values-survey.d.ts +42 -0
- package/typings/property-grid/values.d.ts +37 -0
- package/typings/property-grid-theme/property-grid.d.ts +346 -0
- package/typings/question-editor/definition.d.ts +22 -0
- package/typings/question-editor/properties.d.ts +49 -0
- package/typings/questionconverter.d.ts +12 -0
- package/typings/selection-history.d.ts +20 -0
- package/typings/selection-owner.d.ts +7 -0
- package/typings/survey-helper.d.ts +44 -0
- package/typings/svgbundle.d.ts +1 -0
- package/typings/textWorker.d.ts +18 -0
- package/typings/toolbox.d.ts +269 -0
- package/typings/utils/actions.d.ts +5 -0
- package/typings/utils/events.d.ts +14 -0
- package/typings/utils/resizer.d.ts +24 -0
- package/typings/utils/utils.d.ts +19 -0
|
@@ -0,0 +1,954 @@
|
|
|
1
|
+
export declare class EditorLocalization {
|
|
2
|
+
camelCaseBreaking: boolean;
|
|
3
|
+
currentLocale: string;
|
|
4
|
+
locales: {};
|
|
5
|
+
private peByClass;
|
|
6
|
+
private peHelpByClass;
|
|
7
|
+
reset(): void;
|
|
8
|
+
getString(strName: string, locale?: string): string;
|
|
9
|
+
hasString(strName: string, locale?: string): boolean;
|
|
10
|
+
getLocaleName(loc: string, defaultLocale?: string): string;
|
|
11
|
+
getPropertyName(strName: string, defaultName?: string): string;
|
|
12
|
+
getPropertyTitle(strName: string): string;
|
|
13
|
+
getPropertyNameInEditor(typeName: string, propName: string, defaultName?: string): string;
|
|
14
|
+
getPropertyHelpInEditor(typeName: string, propName: string, propType?: string): string;
|
|
15
|
+
private getPropertyInfoInEditorByType;
|
|
16
|
+
private getObjInEditorByType;
|
|
17
|
+
getProperty(strName: string, defaultName?: string): string;
|
|
18
|
+
convertToCamelCase(value: string, toLowCase?: boolean): string;
|
|
19
|
+
private getAutoPropertyName;
|
|
20
|
+
getPropertyValueInEditor(propName: string, value: any): string;
|
|
21
|
+
getPropertyValue(value: any, locale?: string): string;
|
|
22
|
+
getValidatorName(name: string, locale?: string): string;
|
|
23
|
+
getTriggerName(name: string, locale?: string): string;
|
|
24
|
+
getLocale(locale?: string): any;
|
|
25
|
+
private getValueInternal;
|
|
26
|
+
getLocales(): Array<string>;
|
|
27
|
+
}
|
|
28
|
+
export declare var editorLocalization: EditorLocalization;
|
|
29
|
+
export declare function getLocString(strName: string, locale?: string): string;
|
|
30
|
+
export declare var defaultStrings: {
|
|
31
|
+
survey: {
|
|
32
|
+
edit: string;
|
|
33
|
+
externalHelpLink: string;
|
|
34
|
+
externalHelpLinkUrl: string;
|
|
35
|
+
dropQuestion: string;
|
|
36
|
+
addLogicItem: string;
|
|
37
|
+
copy: string;
|
|
38
|
+
duplicate: string;
|
|
39
|
+
addToToolbox: string;
|
|
40
|
+
deletePanel: string;
|
|
41
|
+
deleteQuestion: string;
|
|
42
|
+
convertTo: string;
|
|
43
|
+
drag: string;
|
|
44
|
+
license: string;
|
|
45
|
+
};
|
|
46
|
+
qt: {
|
|
47
|
+
default: string;
|
|
48
|
+
checkbox: string;
|
|
49
|
+
comment: string;
|
|
50
|
+
imagepicker: string;
|
|
51
|
+
ranking: string;
|
|
52
|
+
image: string;
|
|
53
|
+
dropdown: string;
|
|
54
|
+
tagbox: string;
|
|
55
|
+
file: string;
|
|
56
|
+
html: string;
|
|
57
|
+
matrix: string;
|
|
58
|
+
matrixdropdown: string;
|
|
59
|
+
matrixdynamic: string;
|
|
60
|
+
multipletext: string;
|
|
61
|
+
panel: string;
|
|
62
|
+
paneldynamic: string;
|
|
63
|
+
radiogroup: string;
|
|
64
|
+
rating: string;
|
|
65
|
+
text: string;
|
|
66
|
+
boolean: string;
|
|
67
|
+
expression: string;
|
|
68
|
+
signaturepad: string;
|
|
69
|
+
buttongroup: string;
|
|
70
|
+
};
|
|
71
|
+
ed: {
|
|
72
|
+
defaultLocale: string;
|
|
73
|
+
survey: string;
|
|
74
|
+
settings: string;
|
|
75
|
+
settingsTooltip: string;
|
|
76
|
+
surveySettings: string;
|
|
77
|
+
surveySettingsTooltip: string;
|
|
78
|
+
showPanel: string;
|
|
79
|
+
hidePanel: string;
|
|
80
|
+
prevSelected: string;
|
|
81
|
+
nextSelected: string;
|
|
82
|
+
surveyTypeName: string;
|
|
83
|
+
pageTypeName: string;
|
|
84
|
+
panelTypeName: string;
|
|
85
|
+
questionTypeName: string;
|
|
86
|
+
columnTypeName: string;
|
|
87
|
+
addNewPage: string;
|
|
88
|
+
moveRight: string;
|
|
89
|
+
moveLeft: string;
|
|
90
|
+
deletePage: string;
|
|
91
|
+
editPage: string;
|
|
92
|
+
edit: string;
|
|
93
|
+
newPageName: string;
|
|
94
|
+
newQuestionName: string;
|
|
95
|
+
newPanelName: string;
|
|
96
|
+
newTextItemName: string;
|
|
97
|
+
testSurvey: string;
|
|
98
|
+
defaultV2Theme: string;
|
|
99
|
+
modernTheme: string;
|
|
100
|
+
defaultTheme: string;
|
|
101
|
+
testSurveyAgain: string;
|
|
102
|
+
testSurveyWidth: string;
|
|
103
|
+
navigateToMsg: string;
|
|
104
|
+
logic: string;
|
|
105
|
+
embedSurvey: string;
|
|
106
|
+
translation: string;
|
|
107
|
+
saveSurvey: string;
|
|
108
|
+
saveSurveyTooltip: string;
|
|
109
|
+
designer: string;
|
|
110
|
+
jsonEditor: string;
|
|
111
|
+
jsonHideErrors: string;
|
|
112
|
+
jsonShowErrors: string;
|
|
113
|
+
undo: string;
|
|
114
|
+
redo: string;
|
|
115
|
+
undoTooltip: string;
|
|
116
|
+
redoTooltip: string;
|
|
117
|
+
showMoreChoices: string;
|
|
118
|
+
showLessChoices: string;
|
|
119
|
+
copy: string;
|
|
120
|
+
cut: string;
|
|
121
|
+
paste: string;
|
|
122
|
+
copyTooltip: string;
|
|
123
|
+
cutTooltip: string;
|
|
124
|
+
pasteTooltip: string;
|
|
125
|
+
options: string;
|
|
126
|
+
generateValidJSON: string;
|
|
127
|
+
generateReadableJSON: string;
|
|
128
|
+
toolbox: string;
|
|
129
|
+
"property-grid": string;
|
|
130
|
+
propertyGridFilteredTextPlaceholder: string;
|
|
131
|
+
toolboxGeneralCategory: string;
|
|
132
|
+
toolboxChoiceCategory: string;
|
|
133
|
+
toolboxTextCategory: string;
|
|
134
|
+
toolboxContainersCategory: string;
|
|
135
|
+
toolboxMatrixCategory: string;
|
|
136
|
+
toolboxMiscCategory: string;
|
|
137
|
+
correctJSON: string;
|
|
138
|
+
surveyResults: string;
|
|
139
|
+
surveyResultsTable: string;
|
|
140
|
+
surveyResultsJson: string;
|
|
141
|
+
resultsTitle: string;
|
|
142
|
+
resultsName: string;
|
|
143
|
+
resultsValue: string;
|
|
144
|
+
resultsDisplayValue: string;
|
|
145
|
+
modified: string;
|
|
146
|
+
saving: string;
|
|
147
|
+
saved: string;
|
|
148
|
+
propertyEditorError: string;
|
|
149
|
+
saveError: string;
|
|
150
|
+
translationPropertyGridTitle: string;
|
|
151
|
+
translationLanguages: string;
|
|
152
|
+
translationAddLanguage: string;
|
|
153
|
+
translationShowAllStrings: string;
|
|
154
|
+
translationShowUsedStringsOnly: string;
|
|
155
|
+
translationShowAllPages: string;
|
|
156
|
+
translationNoStrings: string;
|
|
157
|
+
translationExportToSCVButton: string;
|
|
158
|
+
translationImportFromSCVButton: string;
|
|
159
|
+
translationMergeLocaleWithDefault: string;
|
|
160
|
+
translationPlaceHolder: string;
|
|
161
|
+
bold: string;
|
|
162
|
+
italic: string;
|
|
163
|
+
underline: string;
|
|
164
|
+
addNewQuestion: string;
|
|
165
|
+
selectPage: string;
|
|
166
|
+
htmlPlaceHolder: string;
|
|
167
|
+
panelPlaceHolder: string;
|
|
168
|
+
surveyPlaceHolder: string;
|
|
169
|
+
addNewTypeQuestion: string;
|
|
170
|
+
chooseLogoPlaceholder: string;
|
|
171
|
+
auto: string;
|
|
172
|
+
choices_Item: string;
|
|
173
|
+
lg: {
|
|
174
|
+
addNewItem: string;
|
|
175
|
+
empty_tab: string;
|
|
176
|
+
page_visibilityName: string;
|
|
177
|
+
page_enableName: string;
|
|
178
|
+
panel_visibilityName: string;
|
|
179
|
+
panel_enableName: string;
|
|
180
|
+
question_visibilityName: string;
|
|
181
|
+
question_enableName: string;
|
|
182
|
+
question_requireName: string;
|
|
183
|
+
column_visibilityName: string;
|
|
184
|
+
column_enableName: string;
|
|
185
|
+
column_requireName: string;
|
|
186
|
+
trigger_completeName: string;
|
|
187
|
+
trigger_setvalueName: string;
|
|
188
|
+
trigger_copyvalueName: string;
|
|
189
|
+
trigger_skipName: string;
|
|
190
|
+
trigger_runExpressionName: string;
|
|
191
|
+
completedHtmlOnConditionName: string;
|
|
192
|
+
page_visibilityDescription: string;
|
|
193
|
+
panel_visibilityDescription: string;
|
|
194
|
+
panel_enableDescription: string;
|
|
195
|
+
question_visibilityDescription: string;
|
|
196
|
+
question_enableDescription: string;
|
|
197
|
+
question_requireDescription: string;
|
|
198
|
+
trigger_completeDescription: string;
|
|
199
|
+
trigger_setvalueDescription: string;
|
|
200
|
+
trigger_copyvalueDescription: string;
|
|
201
|
+
trigger_skipDescription: string;
|
|
202
|
+
trigger_runExpressionDescription: string;
|
|
203
|
+
completedHtmlOnConditionDescription: string;
|
|
204
|
+
itemExpressionText: string;
|
|
205
|
+
itemEmptyExpressionText: string;
|
|
206
|
+
page_visibilityText: string;
|
|
207
|
+
panel_visibilityText: string;
|
|
208
|
+
panel_enableText: string;
|
|
209
|
+
question_visibilityText: string;
|
|
210
|
+
question_enableText: string;
|
|
211
|
+
question_requireText: string;
|
|
212
|
+
column_visibilityText: string;
|
|
213
|
+
column_enableText: string;
|
|
214
|
+
column_requireText: string;
|
|
215
|
+
trigger_completeText: string;
|
|
216
|
+
trigger_setvalueText: string;
|
|
217
|
+
trigger_copyvalueText: string;
|
|
218
|
+
trigger_skipText: string;
|
|
219
|
+
trigger_runExpressionText1: string;
|
|
220
|
+
trigger_runExpressionText2: string;
|
|
221
|
+
completedHtmlOnConditionText: string;
|
|
222
|
+
showAllQuestions: string;
|
|
223
|
+
showAllActionTypes: string;
|
|
224
|
+
conditions: string;
|
|
225
|
+
actions: string;
|
|
226
|
+
expressionEditorTitle: string;
|
|
227
|
+
actionsEditorTitle: string;
|
|
228
|
+
deleteAction: string;
|
|
229
|
+
addNewAction: string;
|
|
230
|
+
selectedActionCaption: string;
|
|
231
|
+
expressionInvalid: string;
|
|
232
|
+
noActionError: string;
|
|
233
|
+
actionInvalid: string;
|
|
234
|
+
uncompletedRule_title: string;
|
|
235
|
+
uncompletedRule_text: string;
|
|
236
|
+
uncompletedRule_apply: string;
|
|
237
|
+
uncompletedRule_cancel: string;
|
|
238
|
+
expressionSetup: string;
|
|
239
|
+
actionsSetup: string;
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
pe: {
|
|
243
|
+
apply: string;
|
|
244
|
+
ok: string;
|
|
245
|
+
save: string;
|
|
246
|
+
clear: string;
|
|
247
|
+
saveTooltip: string;
|
|
248
|
+
cancel: string;
|
|
249
|
+
set: string;
|
|
250
|
+
reset: string;
|
|
251
|
+
change: string;
|
|
252
|
+
refresh: string;
|
|
253
|
+
close: string;
|
|
254
|
+
delete: string;
|
|
255
|
+
add: string;
|
|
256
|
+
addNew: string;
|
|
257
|
+
addItem: string;
|
|
258
|
+
removeItem: string;
|
|
259
|
+
dragItem: string;
|
|
260
|
+
addOther: string;
|
|
261
|
+
addSelectAll: string;
|
|
262
|
+
addNone: string;
|
|
263
|
+
removeAll: string;
|
|
264
|
+
edit: string;
|
|
265
|
+
back: string;
|
|
266
|
+
backTooltip: string;
|
|
267
|
+
saveAndBack: string;
|
|
268
|
+
saveAndBackTooltip: string;
|
|
269
|
+
doneEditing: string;
|
|
270
|
+
editChoices: string;
|
|
271
|
+
showChoices: string;
|
|
272
|
+
move: string;
|
|
273
|
+
empty: string;
|
|
274
|
+
emptyValue: string;
|
|
275
|
+
fastEntry: string;
|
|
276
|
+
fastEntryNonUniqueError: string;
|
|
277
|
+
fastEntryChoicesCountError: string;
|
|
278
|
+
fastEntryPlaceholder: string;
|
|
279
|
+
formEntry: string;
|
|
280
|
+
testService: string;
|
|
281
|
+
itemSelectorEmpty: string;
|
|
282
|
+
conditionActionEmpty: string;
|
|
283
|
+
conditionSelectQuestion: string;
|
|
284
|
+
conditionSelectPage: string;
|
|
285
|
+
conditionSelectPanel: string;
|
|
286
|
+
conditionValueQuestionTitle: string;
|
|
287
|
+
expressionHelp: string;
|
|
288
|
+
aceEditorHelp: string;
|
|
289
|
+
aceEditorRowTitle: string;
|
|
290
|
+
aceEditorPanelTitle: string;
|
|
291
|
+
showMore: string;
|
|
292
|
+
assistantTitle: string;
|
|
293
|
+
cellsEmptyRowsColumns: string;
|
|
294
|
+
showPreviewBeforeComplete: string;
|
|
295
|
+
propertyIsEmpty: string;
|
|
296
|
+
propertyIsNoUnique: string;
|
|
297
|
+
propertyNameIsNotUnique: string;
|
|
298
|
+
listIsEmpty: string;
|
|
299
|
+
"listIsEmpty@choices": string;
|
|
300
|
+
"addNew@choices": string;
|
|
301
|
+
expressionIsEmpty: string;
|
|
302
|
+
value: string;
|
|
303
|
+
text: string;
|
|
304
|
+
rowid: string;
|
|
305
|
+
imageLink: string;
|
|
306
|
+
columnEdit: string;
|
|
307
|
+
itemEdit: string;
|
|
308
|
+
url: string;
|
|
309
|
+
path: string;
|
|
310
|
+
valueName: string;
|
|
311
|
+
choicesbyurl: {
|
|
312
|
+
valueName: string;
|
|
313
|
+
};
|
|
314
|
+
titleName: string;
|
|
315
|
+
imageLinkName: string;
|
|
316
|
+
allowEmptyResponse: string;
|
|
317
|
+
titlePlaceholder: string;
|
|
318
|
+
surveyTitlePlaceholder: string;
|
|
319
|
+
pageTitlePlaceholder: string;
|
|
320
|
+
descriptionPlaceholder: string;
|
|
321
|
+
surveyDescriptionPlaceholder: string;
|
|
322
|
+
pageDescriptionPlaceholder: string;
|
|
323
|
+
showOtherItem: string;
|
|
324
|
+
otherText: string;
|
|
325
|
+
showNoneItem: string;
|
|
326
|
+
noneText: string;
|
|
327
|
+
showSelectAllItem: string;
|
|
328
|
+
selectAllText: string;
|
|
329
|
+
choicesMin: string;
|
|
330
|
+
choicesMax: string;
|
|
331
|
+
choicesStep: string;
|
|
332
|
+
name: string;
|
|
333
|
+
title: string;
|
|
334
|
+
cellType: string;
|
|
335
|
+
colCount: string;
|
|
336
|
+
choicesOrder: string;
|
|
337
|
+
visible: string;
|
|
338
|
+
isRequired: string;
|
|
339
|
+
isAllRowRequired: string;
|
|
340
|
+
requiredErrorText: string;
|
|
341
|
+
startWithNewLine: string;
|
|
342
|
+
rows: string;
|
|
343
|
+
cols: string;
|
|
344
|
+
placeholder: string;
|
|
345
|
+
showPreview: string;
|
|
346
|
+
storeDataAsText: string;
|
|
347
|
+
maxSize: string;
|
|
348
|
+
imageHeight: string;
|
|
349
|
+
imageWidth: string;
|
|
350
|
+
rowCount: string;
|
|
351
|
+
columnLayout: string;
|
|
352
|
+
addRowLocation: string;
|
|
353
|
+
addRowText: string;
|
|
354
|
+
removeRowText: string;
|
|
355
|
+
rateMin: string;
|
|
356
|
+
rateMax: string;
|
|
357
|
+
rateStep: string;
|
|
358
|
+
minRateDescription: string;
|
|
359
|
+
maxRateDescription: string;
|
|
360
|
+
inputType: string;
|
|
361
|
+
optionsCaption: string;
|
|
362
|
+
defaultValue: string;
|
|
363
|
+
cellsDefaultRow: string;
|
|
364
|
+
surveyEditorTitle: string;
|
|
365
|
+
qEditorTitle: string;
|
|
366
|
+
maxLength: string;
|
|
367
|
+
buildExpression: string;
|
|
368
|
+
editExpression: string;
|
|
369
|
+
and: string;
|
|
370
|
+
or: string;
|
|
371
|
+
remove: string;
|
|
372
|
+
addCondition: string;
|
|
373
|
+
emptyLogicPopupMessage: string;
|
|
374
|
+
if: string;
|
|
375
|
+
then: string;
|
|
376
|
+
setToName: string;
|
|
377
|
+
fromName: string;
|
|
378
|
+
gotoName: string;
|
|
379
|
+
ruleIsNotSet: string;
|
|
380
|
+
includeIntoResult: string;
|
|
381
|
+
showTitle: string;
|
|
382
|
+
expandCollapseTitle: string;
|
|
383
|
+
locale: string;
|
|
384
|
+
simulator: string;
|
|
385
|
+
landscapeOrientation: string;
|
|
386
|
+
portraitOrientation: string;
|
|
387
|
+
mode: string;
|
|
388
|
+
clearInvisibleValues: string;
|
|
389
|
+
cookieName: string;
|
|
390
|
+
sendResultOnPageNext: string;
|
|
391
|
+
storeOthersAsComment: string;
|
|
392
|
+
showPageTitles: string;
|
|
393
|
+
showPageNumbers: string;
|
|
394
|
+
pagePrevText: string;
|
|
395
|
+
pageNextText: string;
|
|
396
|
+
completeText: string;
|
|
397
|
+
previewText: string;
|
|
398
|
+
editText: string;
|
|
399
|
+
startSurveyText: string;
|
|
400
|
+
showNavigationButtons: string;
|
|
401
|
+
showPrevButton: string;
|
|
402
|
+
firstPageIsStarted: string;
|
|
403
|
+
showCompletedPage: string;
|
|
404
|
+
goNextPageAutomatic: string;
|
|
405
|
+
showProgressBar: string;
|
|
406
|
+
questionTitleLocation: string;
|
|
407
|
+
requiredText: string;
|
|
408
|
+
questionStartIndex: string;
|
|
409
|
+
showQuestionNumbers: string;
|
|
410
|
+
questionTitleTemplate: string;
|
|
411
|
+
questionErrorLocation: string;
|
|
412
|
+
focusFirstQuestionAutomatic: string;
|
|
413
|
+
questionsOrder: string;
|
|
414
|
+
maxTimeToFinish: string;
|
|
415
|
+
maxTimeToFinishPage: string;
|
|
416
|
+
image: {
|
|
417
|
+
imageHeight: string;
|
|
418
|
+
imageWidth: string;
|
|
419
|
+
};
|
|
420
|
+
page: {
|
|
421
|
+
maxTimeToFinish: string;
|
|
422
|
+
};
|
|
423
|
+
question: {
|
|
424
|
+
page: string;
|
|
425
|
+
};
|
|
426
|
+
showTimerPanel: string;
|
|
427
|
+
showTimerPanelMode: string;
|
|
428
|
+
renderMode: string;
|
|
429
|
+
allowAddPanel: string;
|
|
430
|
+
allowRemovePanel: string;
|
|
431
|
+
noEntriesText: string;
|
|
432
|
+
panelAddText: string;
|
|
433
|
+
panelRemoveText: string;
|
|
434
|
+
isSinglePage: string;
|
|
435
|
+
html: string;
|
|
436
|
+
expression: string;
|
|
437
|
+
setValue: string;
|
|
438
|
+
dataFormat: string;
|
|
439
|
+
allowAddRows: string;
|
|
440
|
+
allowRemoveRows: string;
|
|
441
|
+
allowRowsDragAndDrop: string;
|
|
442
|
+
responsiveImageSizeHelp: string;
|
|
443
|
+
minImageWidth: string;
|
|
444
|
+
maxImageWidth: string;
|
|
445
|
+
minImageHeight: string;
|
|
446
|
+
maxImageHeight: string;
|
|
447
|
+
minValue: string;
|
|
448
|
+
maxValue: string;
|
|
449
|
+
minLength: string;
|
|
450
|
+
allowDigits: string;
|
|
451
|
+
minCount: string;
|
|
452
|
+
maxCount: string;
|
|
453
|
+
regex: string;
|
|
454
|
+
surveyvalidator: {
|
|
455
|
+
text: string;
|
|
456
|
+
expression: string;
|
|
457
|
+
};
|
|
458
|
+
totalText: string;
|
|
459
|
+
totalType: string;
|
|
460
|
+
totalExpression: string;
|
|
461
|
+
totalDisplayStyle: string;
|
|
462
|
+
totalCurrency: string;
|
|
463
|
+
totalFormat: string;
|
|
464
|
+
logo: string;
|
|
465
|
+
questionsOnPageMode: string;
|
|
466
|
+
maxTextLength: string;
|
|
467
|
+
maxOthersLength: string;
|
|
468
|
+
autoGrowComment: string;
|
|
469
|
+
textUpdateMode: string;
|
|
470
|
+
focusOnFirstError: string;
|
|
471
|
+
checkErrorsMode: string;
|
|
472
|
+
navigateToUrl: string;
|
|
473
|
+
navigateToUrlOnCondition: string;
|
|
474
|
+
completedBeforeHtml: string;
|
|
475
|
+
completedHtml: string;
|
|
476
|
+
completedHtmlOnCondition: string;
|
|
477
|
+
loadingHtml: string;
|
|
478
|
+
commentText: string;
|
|
479
|
+
autocomplete: string;
|
|
480
|
+
labelTrue: string;
|
|
481
|
+
labelFalse: string;
|
|
482
|
+
allowClear: string;
|
|
483
|
+
displayStyle: string;
|
|
484
|
+
format: string;
|
|
485
|
+
maximumFractionDigits: string;
|
|
486
|
+
minimumFractionDigits: string;
|
|
487
|
+
useGrouping: string;
|
|
488
|
+
allowMultiple: string;
|
|
489
|
+
allowImagesPreview: string;
|
|
490
|
+
acceptedTypes: string;
|
|
491
|
+
waitForUpload: string;
|
|
492
|
+
needConfirmRemoveFile: string;
|
|
493
|
+
detailPanelMode: string;
|
|
494
|
+
minRowCount: string;
|
|
495
|
+
maxRowCount: string;
|
|
496
|
+
confirmDelete: string;
|
|
497
|
+
confirmDeleteText: string;
|
|
498
|
+
paneldynamic: {
|
|
499
|
+
confirmDelete: string;
|
|
500
|
+
};
|
|
501
|
+
panelCount: string;
|
|
502
|
+
minPanelCount: string;
|
|
503
|
+
maxPanelCount: string;
|
|
504
|
+
panelsState: string;
|
|
505
|
+
templateDescription: string;
|
|
506
|
+
templateTitle: string;
|
|
507
|
+
panelPrevText: string;
|
|
508
|
+
panelNextText: string;
|
|
509
|
+
showRangeInProgress: string;
|
|
510
|
+
templateTitleLocation: string;
|
|
511
|
+
panelRemoveButtonLocation: string;
|
|
512
|
+
hideIfRowsEmpty: string;
|
|
513
|
+
hideColumnsIfEmpty: string;
|
|
514
|
+
rateValues: string;
|
|
515
|
+
rateCount: string;
|
|
516
|
+
rateDisplayMode: string;
|
|
517
|
+
autoGenerate: string;
|
|
518
|
+
hideIfChoicesEmpty: string;
|
|
519
|
+
hideNumber: string;
|
|
520
|
+
minWidth: string;
|
|
521
|
+
maxWidth: string;
|
|
522
|
+
width: string;
|
|
523
|
+
showHeader: string;
|
|
524
|
+
horizontalScroll: string;
|
|
525
|
+
columnMinWidth: string;
|
|
526
|
+
rowTitleWidth: string;
|
|
527
|
+
valueTrue: string;
|
|
528
|
+
valueFalse: string;
|
|
529
|
+
minErrorText: string;
|
|
530
|
+
maxErrorText: string;
|
|
531
|
+
otherErrorText: string;
|
|
532
|
+
keyDuplicationError: string;
|
|
533
|
+
maxSelectedChoices: string;
|
|
534
|
+
showClearButton: string;
|
|
535
|
+
showNumber: string;
|
|
536
|
+
logoWidth: string;
|
|
537
|
+
logoHeight: string;
|
|
538
|
+
readOnly: string;
|
|
539
|
+
enableIf: string;
|
|
540
|
+
emptyRowsText: string;
|
|
541
|
+
size: string;
|
|
542
|
+
separateSpecialChoices: string;
|
|
543
|
+
choicesFromQuestion: string;
|
|
544
|
+
choicesFromQuestionMode: string;
|
|
545
|
+
showCommentArea: string;
|
|
546
|
+
commentPlaceholder: string;
|
|
547
|
+
displayRateDescriptionsAsExtremeItems: string;
|
|
548
|
+
rowsOrder: string;
|
|
549
|
+
columnsLayout: string;
|
|
550
|
+
columnColCount: string;
|
|
551
|
+
state: string;
|
|
552
|
+
correctAnswer: string;
|
|
553
|
+
defaultPanelValue: string;
|
|
554
|
+
cells: string;
|
|
555
|
+
keyName: string;
|
|
556
|
+
itemvalue: {
|
|
557
|
+
text: string;
|
|
558
|
+
};
|
|
559
|
+
logoPosition: string;
|
|
560
|
+
addLogo: string;
|
|
561
|
+
changeLogo: string;
|
|
562
|
+
logoPositions: {
|
|
563
|
+
none: string;
|
|
564
|
+
left: string;
|
|
565
|
+
right: string;
|
|
566
|
+
top: string;
|
|
567
|
+
bottom: string;
|
|
568
|
+
};
|
|
569
|
+
tabs: {
|
|
570
|
+
general: string;
|
|
571
|
+
fileOptions: string;
|
|
572
|
+
html: string;
|
|
573
|
+
columns: string;
|
|
574
|
+
rows: string;
|
|
575
|
+
choices: string;
|
|
576
|
+
items: string;
|
|
577
|
+
visibleIf: string;
|
|
578
|
+
enableIf: string;
|
|
579
|
+
requiredIf: string;
|
|
580
|
+
rateValues: string;
|
|
581
|
+
choicesByUrl: string;
|
|
582
|
+
matrixChoices: string;
|
|
583
|
+
multipleTextItems: string;
|
|
584
|
+
numbering: string;
|
|
585
|
+
validators: string;
|
|
586
|
+
navigation: string;
|
|
587
|
+
question: string;
|
|
588
|
+
pages: string;
|
|
589
|
+
timer: string;
|
|
590
|
+
calculatedValues: string;
|
|
591
|
+
triggers: string;
|
|
592
|
+
templateTitle: string;
|
|
593
|
+
totals: string;
|
|
594
|
+
logic: string;
|
|
595
|
+
layout: string;
|
|
596
|
+
data: string;
|
|
597
|
+
validation: string;
|
|
598
|
+
cells: string;
|
|
599
|
+
showOnCompleted: string;
|
|
600
|
+
logo: string;
|
|
601
|
+
slider: string;
|
|
602
|
+
expression: string;
|
|
603
|
+
others: string;
|
|
604
|
+
};
|
|
605
|
+
editProperty: string;
|
|
606
|
+
items: string;
|
|
607
|
+
choicesVisibleIf: string;
|
|
608
|
+
choicesEnableIf: string;
|
|
609
|
+
columnsEnableIf: string;
|
|
610
|
+
rowsEnableIf: string;
|
|
611
|
+
indent: string;
|
|
612
|
+
panel: {
|
|
613
|
+
indent: string;
|
|
614
|
+
};
|
|
615
|
+
innerIndent: string;
|
|
616
|
+
defaultValueFromLastRow: string;
|
|
617
|
+
defaultValueFromLastPanel: string;
|
|
618
|
+
enterNewValue: string;
|
|
619
|
+
noquestions: string;
|
|
620
|
+
createtrigger: string;
|
|
621
|
+
titleKeyboardAdornerTip: string;
|
|
622
|
+
keyboardAdornerTip: string;
|
|
623
|
+
triggerOn: string;
|
|
624
|
+
triggerMakePagesVisible: string;
|
|
625
|
+
triggerMakeQuestionsVisible: string;
|
|
626
|
+
triggerCompleteText: string;
|
|
627
|
+
triggerNotSet: string;
|
|
628
|
+
triggerRunIf: string;
|
|
629
|
+
triggerSetToName: string;
|
|
630
|
+
triggerFromName: string;
|
|
631
|
+
triggerRunExpression: string;
|
|
632
|
+
triggerSetValue: string;
|
|
633
|
+
triggerGotoName: string;
|
|
634
|
+
triggerIsVariable: string;
|
|
635
|
+
triggerRunExpressionEmpty: string;
|
|
636
|
+
emptyExpressionPlaceHolder: string;
|
|
637
|
+
noFile: string;
|
|
638
|
+
clearIfInvisible: string;
|
|
639
|
+
valuePropertyName: string;
|
|
640
|
+
searchEnabled: string;
|
|
641
|
+
hideSelectedItems: string;
|
|
642
|
+
closeOnSelect: string;
|
|
643
|
+
signatureWidth: string;
|
|
644
|
+
signatureHeight: string;
|
|
645
|
+
verticalAlign: string;
|
|
646
|
+
alternateRows: string;
|
|
647
|
+
columnsVisibleIf: string;
|
|
648
|
+
rowsVisibleIf: string;
|
|
649
|
+
otherPlaceholder: string;
|
|
650
|
+
};
|
|
651
|
+
pv: {
|
|
652
|
+
true: string;
|
|
653
|
+
false: string;
|
|
654
|
+
inherit: string;
|
|
655
|
+
show: string;
|
|
656
|
+
hide: string;
|
|
657
|
+
default: string;
|
|
658
|
+
initial: string;
|
|
659
|
+
random: string;
|
|
660
|
+
collapsed: string;
|
|
661
|
+
expanded: string;
|
|
662
|
+
none: string;
|
|
663
|
+
asc: string;
|
|
664
|
+
desc: string;
|
|
665
|
+
indeterminate: string;
|
|
666
|
+
decimal: string;
|
|
667
|
+
currency: string;
|
|
668
|
+
percent: string;
|
|
669
|
+
firstExpanded: string;
|
|
670
|
+
off: string;
|
|
671
|
+
onpanel: string;
|
|
672
|
+
onPanel: string;
|
|
673
|
+
onSurvey: string;
|
|
674
|
+
list: string;
|
|
675
|
+
progressTop: string;
|
|
676
|
+
progressBottom: string;
|
|
677
|
+
progressTopBottom: string;
|
|
678
|
+
horizontal: string;
|
|
679
|
+
vertical: string;
|
|
680
|
+
top: string;
|
|
681
|
+
bottom: string;
|
|
682
|
+
topBottom: string;
|
|
683
|
+
both: string;
|
|
684
|
+
left: string;
|
|
685
|
+
right: string;
|
|
686
|
+
color: string;
|
|
687
|
+
date: string;
|
|
688
|
+
datetime: string;
|
|
689
|
+
"datetime-local": string;
|
|
690
|
+
email: string;
|
|
691
|
+
month: string;
|
|
692
|
+
number: string;
|
|
693
|
+
password: string;
|
|
694
|
+
range: string;
|
|
695
|
+
tel: string;
|
|
696
|
+
text: string;
|
|
697
|
+
time: string;
|
|
698
|
+
url: string;
|
|
699
|
+
week: string;
|
|
700
|
+
hidden: string;
|
|
701
|
+
on: string;
|
|
702
|
+
onPage: string;
|
|
703
|
+
edit: string;
|
|
704
|
+
display: string;
|
|
705
|
+
onComplete: string;
|
|
706
|
+
onHidden: string;
|
|
707
|
+
onHiddenContainer: string;
|
|
708
|
+
clearInvisibleValues: {
|
|
709
|
+
none: string;
|
|
710
|
+
};
|
|
711
|
+
inputType: {
|
|
712
|
+
color: string;
|
|
713
|
+
date: string;
|
|
714
|
+
"datetime-local": string;
|
|
715
|
+
email: string;
|
|
716
|
+
month: string;
|
|
717
|
+
number: string;
|
|
718
|
+
password: string;
|
|
719
|
+
range: string;
|
|
720
|
+
tel: string;
|
|
721
|
+
text: string;
|
|
722
|
+
time: string;
|
|
723
|
+
url: string;
|
|
724
|
+
week: string;
|
|
725
|
+
};
|
|
726
|
+
all: string;
|
|
727
|
+
page: string;
|
|
728
|
+
survey: string;
|
|
729
|
+
onNextPage: string;
|
|
730
|
+
onValueChanged: string;
|
|
731
|
+
onValueChanging: string;
|
|
732
|
+
standard: string;
|
|
733
|
+
singlePage: string;
|
|
734
|
+
questionPerPage: string;
|
|
735
|
+
noPreview: string;
|
|
736
|
+
showAllQuestions: string;
|
|
737
|
+
showAnsweredQuestions: string;
|
|
738
|
+
pages: string;
|
|
739
|
+
questions: string;
|
|
740
|
+
requiredQuestions: string;
|
|
741
|
+
correctQuestions: string;
|
|
742
|
+
buttons: string;
|
|
743
|
+
underInput: string;
|
|
744
|
+
underTitle: string;
|
|
745
|
+
onBlur: string;
|
|
746
|
+
onTyping: string;
|
|
747
|
+
underRow: string;
|
|
748
|
+
underRowSingle: string;
|
|
749
|
+
showNavigationButtons: {
|
|
750
|
+
none: string;
|
|
751
|
+
};
|
|
752
|
+
showProgressBar: {
|
|
753
|
+
off: string;
|
|
754
|
+
};
|
|
755
|
+
showTimerPanel: {
|
|
756
|
+
none: string;
|
|
757
|
+
};
|
|
758
|
+
showTimerPanelMode: {
|
|
759
|
+
all: string;
|
|
760
|
+
};
|
|
761
|
+
detailPanelMode: {
|
|
762
|
+
none: string;
|
|
763
|
+
};
|
|
764
|
+
addRowLocation: {
|
|
765
|
+
default: string;
|
|
766
|
+
};
|
|
767
|
+
panelsState: {
|
|
768
|
+
default: string;
|
|
769
|
+
collapsed: string;
|
|
770
|
+
expanded: string;
|
|
771
|
+
};
|
|
772
|
+
widthMode: {
|
|
773
|
+
auto: string;
|
|
774
|
+
static: string;
|
|
775
|
+
responsive: string;
|
|
776
|
+
};
|
|
777
|
+
imageFit: {
|
|
778
|
+
none: string;
|
|
779
|
+
contain: string;
|
|
780
|
+
cover: string;
|
|
781
|
+
fill: string;
|
|
782
|
+
};
|
|
783
|
+
contentMode: {
|
|
784
|
+
auto: string;
|
|
785
|
+
image: string;
|
|
786
|
+
video: string;
|
|
787
|
+
youtube: string;
|
|
788
|
+
};
|
|
789
|
+
displayMode: {
|
|
790
|
+
auto: string;
|
|
791
|
+
buttons: string;
|
|
792
|
+
dropdown: string;
|
|
793
|
+
};
|
|
794
|
+
rateColorMode: {
|
|
795
|
+
default: string;
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
op: {
|
|
799
|
+
empty: string;
|
|
800
|
+
notempty: string;
|
|
801
|
+
equal: string;
|
|
802
|
+
notequal: string;
|
|
803
|
+
contains: string;
|
|
804
|
+
notcontains: string;
|
|
805
|
+
anyof: string;
|
|
806
|
+
allof: string;
|
|
807
|
+
greater: string;
|
|
808
|
+
less: string;
|
|
809
|
+
greaterorequal: string;
|
|
810
|
+
lessorequal: string;
|
|
811
|
+
and: string;
|
|
812
|
+
or: string;
|
|
813
|
+
};
|
|
814
|
+
ew: {
|
|
815
|
+
angular: string;
|
|
816
|
+
jquery: string;
|
|
817
|
+
knockout: string;
|
|
818
|
+
react: string;
|
|
819
|
+
vue: string;
|
|
820
|
+
bootstrap: string;
|
|
821
|
+
modern: string;
|
|
822
|
+
default: string;
|
|
823
|
+
orange: string;
|
|
824
|
+
darkblue: string;
|
|
825
|
+
darkrose: string;
|
|
826
|
+
stone: string;
|
|
827
|
+
winter: string;
|
|
828
|
+
winterstone: string;
|
|
829
|
+
showOnPage: string;
|
|
830
|
+
showInWindow: string;
|
|
831
|
+
loadFromServer: string;
|
|
832
|
+
titleScript: string;
|
|
833
|
+
titleHtml: string;
|
|
834
|
+
titleJavaScript: string;
|
|
835
|
+
};
|
|
836
|
+
ts: {
|
|
837
|
+
selectPage: string;
|
|
838
|
+
showInvisibleElements: string;
|
|
839
|
+
hideInvisibleElements: string;
|
|
840
|
+
};
|
|
841
|
+
validators: {
|
|
842
|
+
answercountvalidator: string;
|
|
843
|
+
emailvalidator: string;
|
|
844
|
+
expressionvalidator: string;
|
|
845
|
+
numericvalidator: string;
|
|
846
|
+
regexvalidator: string;
|
|
847
|
+
textvalidator: string;
|
|
848
|
+
};
|
|
849
|
+
triggers: {
|
|
850
|
+
completetrigger: string;
|
|
851
|
+
setvaluetrigger: string;
|
|
852
|
+
copyvaluetrigger: string;
|
|
853
|
+
skiptrigger: string;
|
|
854
|
+
runexpressiontrigger: string;
|
|
855
|
+
visibletrigger: string;
|
|
856
|
+
};
|
|
857
|
+
pehelp: {
|
|
858
|
+
cookieName: string;
|
|
859
|
+
format: string;
|
|
860
|
+
totalText: string;
|
|
861
|
+
acceptedTypes: string;
|
|
862
|
+
columnColCount: string;
|
|
863
|
+
autocomplete: string;
|
|
864
|
+
valueName: string;
|
|
865
|
+
choicesbyurl: {
|
|
866
|
+
valueName: string;
|
|
867
|
+
};
|
|
868
|
+
keyName: string;
|
|
869
|
+
};
|
|
870
|
+
p: {
|
|
871
|
+
title: {
|
|
872
|
+
name: string;
|
|
873
|
+
title: string;
|
|
874
|
+
};
|
|
875
|
+
multiSelect: string;
|
|
876
|
+
showLabel: string;
|
|
877
|
+
value: string;
|
|
878
|
+
tabAlign: string;
|
|
879
|
+
description: string;
|
|
880
|
+
logoFit: string;
|
|
881
|
+
pages: string;
|
|
882
|
+
questions: string;
|
|
883
|
+
triggers: string;
|
|
884
|
+
calculatedValues: string;
|
|
885
|
+
surveyId: string;
|
|
886
|
+
surveyPostId: string;
|
|
887
|
+
surveyShowDataSaving: string;
|
|
888
|
+
questionDescriptionLocation: string;
|
|
889
|
+
progressBarType: string;
|
|
890
|
+
showTOC: string;
|
|
891
|
+
tocLocation: string;
|
|
892
|
+
questionTitlePattern: string;
|
|
893
|
+
widthMode: string;
|
|
894
|
+
showBrandInfo: string;
|
|
895
|
+
useDisplayValuesInDynamicTexts: string;
|
|
896
|
+
visibleIf: string;
|
|
897
|
+
titleLocation: string;
|
|
898
|
+
descriptionLocation: string;
|
|
899
|
+
defaultValueExpression: string;
|
|
900
|
+
requiredIf: string;
|
|
901
|
+
validators: string;
|
|
902
|
+
bindings: string;
|
|
903
|
+
renderAs: string;
|
|
904
|
+
attachOriginalItems: string;
|
|
905
|
+
choices: string;
|
|
906
|
+
choicesByUrl: string;
|
|
907
|
+
currency: string;
|
|
908
|
+
cellHint: string;
|
|
909
|
+
isUnique: string;
|
|
910
|
+
showInMultipleColumns: string;
|
|
911
|
+
totalMaximumFractionDigits: string;
|
|
912
|
+
totalMinimumFractionDigits: string;
|
|
913
|
+
columns: string;
|
|
914
|
+
detailElements: string;
|
|
915
|
+
allowAdaptiveActions: string;
|
|
916
|
+
defaultRowValue: string;
|
|
917
|
+
detailPanelShowOnAdding: string;
|
|
918
|
+
choicesLazyLoadEnabled: string;
|
|
919
|
+
choicesLazyLoadPageSize: string;
|
|
920
|
+
inputFieldComponent: string;
|
|
921
|
+
itemComponent: string;
|
|
922
|
+
min: string;
|
|
923
|
+
max: string;
|
|
924
|
+
minValueExpression: string;
|
|
925
|
+
maxValueExpression: string;
|
|
926
|
+
step: string;
|
|
927
|
+
dataList: string;
|
|
928
|
+
itemSize: string;
|
|
929
|
+
elements: string;
|
|
930
|
+
content: string;
|
|
931
|
+
navigationButtonsVisibility: string;
|
|
932
|
+
navigationTitle: string;
|
|
933
|
+
navigationDescription: string;
|
|
934
|
+
longTap: string;
|
|
935
|
+
autoGrow: string;
|
|
936
|
+
acceptCarriageReturn: string;
|
|
937
|
+
displayMode: string;
|
|
938
|
+
rateType: string;
|
|
939
|
+
label: string;
|
|
940
|
+
contentMode: string;
|
|
941
|
+
imageFit: string;
|
|
942
|
+
altText: string;
|
|
943
|
+
height: string;
|
|
944
|
+
penColor: string;
|
|
945
|
+
backgroundColor: string;
|
|
946
|
+
templateElements: string;
|
|
947
|
+
operator: string;
|
|
948
|
+
isVariable: string;
|
|
949
|
+
runExpression: string;
|
|
950
|
+
showCaption: string;
|
|
951
|
+
iconName: string;
|
|
952
|
+
iconSize: string;
|
|
953
|
+
};
|
|
954
|
+
};
|