survey-creator-core 1.9.103 → 1.9.104
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 +12 -6
- package/survey-creator-core.fontless.css +11 -5
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +3 -3
- package/survey-creator-core.i18n.js +4 -4
- package/survey-creator-core.i18n.js.map +1 -1
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +50 -12
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +4 -4
- package/survey-creator-core.min.js +2 -2
- package/typings/components/tabs/logic-theme.d.ts +1 -0
- package/typings/components/tabs/theme-custom-questions/font-settings.d.ts +1 -1
- package/typings/components/tabs/translation-theme.d.ts +6 -0
- package/typings/editorLocalization.d.ts +1 -0
- package/typings/localization/english.d.ts +1 -0
- package/typings/questionconverter.d.ts +1 -0
|
@@ -5,4 +5,4 @@ export declare function fontsettingsToCssVariable(question: IQuestion, themeCssV
|
|
|
5
5
|
}): void;
|
|
6
6
|
export declare function fontsettingsFromCssVariable(question: IQuestion, themeCssVariables: {
|
|
7
7
|
[index: string]: string;
|
|
8
|
-
}, defaultColorVariable?: string): any;
|
|
8
|
+
}, defaultColorVariable?: string, defaultPlaceholderColorVariable?: string): any;
|
|
@@ -201,9 +201,11 @@ export declare var translationCss: {
|
|
|
201
201
|
mainRoot: string;
|
|
202
202
|
tableWrapper: string;
|
|
203
203
|
root: string;
|
|
204
|
+
noHeader: string;
|
|
204
205
|
rowError: string;
|
|
205
206
|
cell: string;
|
|
206
207
|
headerCell: string;
|
|
208
|
+
rowTextCell: string;
|
|
207
209
|
label: string;
|
|
208
210
|
itemValue: string;
|
|
209
211
|
itemChecked: string;
|
|
@@ -218,14 +220,18 @@ export declare var translationCss: {
|
|
|
218
220
|
matrixdropdown: {
|
|
219
221
|
mainRoot: string;
|
|
220
222
|
root: string;
|
|
223
|
+
noHeader: string;
|
|
221
224
|
cell: string;
|
|
222
225
|
headerCell: string;
|
|
226
|
+
rowTextCell: string;
|
|
223
227
|
};
|
|
224
228
|
matrixdynamic: {
|
|
225
229
|
mainRoot: string;
|
|
226
230
|
root: string;
|
|
231
|
+
noHeader: string;
|
|
227
232
|
cell: string;
|
|
228
233
|
headerCell: string;
|
|
234
|
+
rowTextCell: string;
|
|
229
235
|
button: string;
|
|
230
236
|
detailRow: string;
|
|
231
237
|
detailButton: string;
|
|
@@ -7,6 +7,7 @@ export declare class QuestionConverter {
|
|
|
7
7
|
private static updateJSON;
|
|
8
8
|
private static updateJSONFromQuestionDefaultSettings;
|
|
9
9
|
private static updateJSONForMatrices;
|
|
10
|
+
private static getColumnName;
|
|
10
11
|
private static updateJSONForRating;
|
|
11
12
|
private static updateJSONForBarrating;
|
|
12
13
|
private static updateJSONForPanels;
|