survey-creator-core 1.9.85 → 1.9.87
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 +3 -3
- package/survey-creator-core.css +30 -40
- package/survey-creator-core.fontless.css +29 -39
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +5 -5
- package/survey-creator-core.i18n.js +1026 -85
- package/survey-creator-core.i18n.js.map +1 -1
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +113 -45
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +6 -6
- package/survey-creator-core.min.js +3 -3
- package/typings/components/question-rating.d.ts +4 -0
- package/typings/creator-base.d.ts +18 -0
- package/typings/creator-settings.d.ts +5 -0
- package/typings/custom-questions/question-color.d.ts +3 -0
- package/typings/property-grid/condition-survey.d.ts +3 -0
- package/typings/questionconverter.d.ts +1 -0
|
@@ -11,8 +11,12 @@ export declare class QuestionRatingAdornerViewModel extends Base {
|
|
|
11
11
|
removeItem(model: QuestionRatingAdornerViewModel): void;
|
|
12
12
|
static allowAddForElement(element: QuestionRatingModel, maximumRateValues: number): boolean;
|
|
13
13
|
get allowAdd(): boolean;
|
|
14
|
+
get enableAdd(): boolean;
|
|
15
|
+
get addClassNames(): string;
|
|
14
16
|
static allowRemoveForElement(element: QuestionRatingModel): boolean;
|
|
15
17
|
get allowRemove(): boolean;
|
|
18
|
+
get enableRemove(): boolean;
|
|
19
|
+
get removeClassNames(): string;
|
|
16
20
|
get addTooltip(): string;
|
|
17
21
|
get removeTooltip(): string;
|
|
18
22
|
}
|
|
@@ -1349,7 +1349,25 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
1349
1349
|
showToolbar: any;
|
|
1350
1350
|
allowCollapseSidebar: any;
|
|
1351
1351
|
isMobileView: any;
|
|
1352
|
+
/**
|
|
1353
|
+
* Specifies Toolbox location.
|
|
1354
|
+
*
|
|
1355
|
+
* Possible values:
|
|
1356
|
+
*
|
|
1357
|
+
* - `"left"` (default) - Displays Toolbox on the left side of the design surface.
|
|
1358
|
+
* - `"right"` - Displays Toolbox on the right side of the design surface.
|
|
1359
|
+
* - `"sidebar"` - Displays Toolbox as an overlay on top of Property Grid. Use the [`sidebarLocation`](https://surveyjs.io/survey-creator/documentation/api-reference/survey-creator#sidebarLocation) property to specify Property Grid position.
|
|
1360
|
+
*/
|
|
1352
1361
|
toolboxLocation: toolboxLocationType;
|
|
1362
|
+
/**
|
|
1363
|
+
* Specifies the position of the sidebar that displays Property Grid.
|
|
1364
|
+
*
|
|
1365
|
+
* Possible values:
|
|
1366
|
+
*
|
|
1367
|
+
* - `"right"` (default) - Displays the sidebar on the right side of the design surface.
|
|
1368
|
+
* - `"left"` - Displays the sidebar on the left side of the design surface.
|
|
1369
|
+
* @see toolboxLocation
|
|
1370
|
+
*/
|
|
1353
1371
|
sidebarLocation: "left" | "right";
|
|
1354
1372
|
selectFromStringEditor: boolean;
|
|
1355
1373
|
isCreatorDisposed: boolean;
|
|
@@ -7,9 +7,12 @@ export declare class QuestionColorModel extends QuestionTextModel {
|
|
|
7
7
|
onColorInputChange(event: Event): void;
|
|
8
8
|
getType(): string;
|
|
9
9
|
_renderedValue: string;
|
|
10
|
+
private resetRenderedValue;
|
|
11
|
+
private updateRenderedValue;
|
|
10
12
|
get renderedValue(): string;
|
|
11
13
|
getSwatchStyle(): {
|
|
12
14
|
[index: string]: string;
|
|
13
15
|
};
|
|
14
16
|
get isInputTextUpdate(): boolean;
|
|
17
|
+
onSurveyValueChanged(newValue: any): void;
|
|
15
18
|
}
|
|
@@ -102,9 +102,12 @@ export declare class ConditionEditor extends PropertyEditorSetupValue {
|
|
|
102
102
|
private canShowQuestionValue;
|
|
103
103
|
private getConditionQuestion;
|
|
104
104
|
private getQuestionConditionJson;
|
|
105
|
+
private: any;
|
|
105
106
|
private updateOperatorEnables;
|
|
106
107
|
private updateQuestionsWidth;
|
|
107
108
|
private get defaultOperator();
|
|
109
|
+
private getDefaultOperatorByQuestionName;
|
|
110
|
+
private getDefaultOperatorByQuestion;
|
|
108
111
|
private getFirstEnabledOperator;
|
|
109
112
|
private onPanelAdded;
|
|
110
113
|
private onPanelValueChanged;
|