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.
@@ -237,6 +237,7 @@ export declare var logicCss: {
237
237
  tableWrapper: string;
238
238
  mainRoot: string;
239
239
  root: string;
240
+ noHeader: string;
240
241
  row: string;
241
242
  rowAdditional: string;
242
243
  cell: string;
@@ -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;
@@ -1035,6 +1035,7 @@ export declare var defaultStrings: {
1035
1035
  fontFamily: string;
1036
1036
  fontSize: string;
1037
1037
  color: string;
1038
+ placeholderColor: string;
1038
1039
  size: string;
1039
1040
  fontWeightRegular: string;
1040
1041
  fontWeightHeavy: string;
@@ -1006,6 +1006,7 @@ export declare var enStrings: {
1006
1006
  fontFamily: string;
1007
1007
  fontSize: string;
1008
1008
  color: string;
1009
+ placeholderColor: string;
1009
1010
  size: string;
1010
1011
  fontWeightRegular: string;
1011
1012
  fontWeightHeavy: 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;