survey-creator-core 1.9.84 → 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 +29 -13
- package/survey-creator-core.fontless.css +28 -12
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +5 -5
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +89 -19
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +6 -6
- package/survey-creator-core.min.js +2 -2
- package/typings/components/question-rating.d.ts +3 -0
- package/typings/components/tabs/designer.d.ts +1 -0
- package/typings/creator-base.d.ts +1 -1
- package/typings/creator-settings.d.ts +3 -0
- package/typings/editorLocalization.d.ts +3 -0
- package/typings/localization/english.d.ts +3 -0
- package/typings/property-grid/matrices.d.ts +3 -0
- package/typings/survey-helper.d.ts +1 -0
|
@@ -6,9 +6,12 @@ export declare class QuestionRatingAdornerViewModel extends Base {
|
|
|
6
6
|
templateData: SurveyTemplateRendererTemplateData;
|
|
7
7
|
constructor(creator: CreatorBase, surveyElement: SurveyElement, templateData: SurveyTemplateRendererTemplateData);
|
|
8
8
|
get element(): QuestionRatingModel;
|
|
9
|
+
static useRateValues(element: any): boolean;
|
|
9
10
|
addItem(model: QuestionRatingAdornerViewModel): void;
|
|
10
11
|
removeItem(model: QuestionRatingAdornerViewModel): void;
|
|
12
|
+
static allowAddForElement(element: QuestionRatingModel, maximumRateValues: number): boolean;
|
|
11
13
|
get allowAdd(): boolean;
|
|
14
|
+
static allowRemoveForElement(element: QuestionRatingModel): boolean;
|
|
12
15
|
get allowRemove(): boolean;
|
|
13
16
|
get addTooltip(): string;
|
|
14
17
|
get removeTooltip(): string;
|
|
@@ -287,7 +287,7 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
287
287
|
* - `options.allowAddToToolbox` - Allows users to save the current survey element configuration in the Toolbox.
|
|
288
288
|
* - `options.allowChangeRequired` - Allows users to make the survey element required.
|
|
289
289
|
* - `options.allowChangeType` - Allows users to change the survey element type.
|
|
290
|
-
* - `options.allowChangeInputType` - Allows users to change the text
|
|
290
|
+
* - `options.allowChangeInputType` - Allows users to change the [`inputType`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model#inputType) property of Single-Line Input questions.
|
|
291
291
|
* - `options.allowCopy` - Allows users to duplicate the survey element.
|
|
292
292
|
* - `options.allowDelete` - Allows users to delete the survey element.
|
|
293
293
|
* - `options.allowDragging` - Allows users to drag and drop the survey element.
|
|
@@ -58,6 +58,9 @@ export declare class PropertyGridEditorMatrixItemValues extends PropertyGridEdit
|
|
|
58
58
|
}
|
|
59
59
|
export declare class PropertyGridEditorMatrixRateValues extends PropertyGridEditorMatrixItemValues {
|
|
60
60
|
fit(prop: JsonObjectProperty): boolean;
|
|
61
|
+
private updateAllowAddRemove;
|
|
62
|
+
onCreated(obj: Base, question: Question, prop: JsonObjectProperty): void;
|
|
63
|
+
onGetQuestionTitleActions(obj: Base, options: any): void;
|
|
61
64
|
protected filterPropertyNames(propNames: Array<string>): string[];
|
|
62
65
|
}
|
|
63
66
|
export declare class PropertyGridEditorMatrixColumns extends PropertyGridEditorMatrix {
|