From c9e3dfade812cdf26fd01839673bdeaec326b877 Mon Sep 17 00:00:00 2001 From: Roman Tsukanov Date: Tue, 4 Jul 2023 12:43:57 +0400 Subject: [PATCH 1/2] Update QuestionSignatureModel.dataFormat value descriptions --- src/question_signaturepad.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/question_signaturepad.ts b/src/question_signaturepad.ts index 02a31dac35..e31e412b47 100644 --- a/src/question_signaturepad.ts +++ b/src/question_signaturepad.ts @@ -145,9 +145,9 @@ export class QuestionSignaturePadModel extends Question { * * Possible values: * - * - `"png"` (default) - PNG - * - `"jpeg"` - JPEG - * - `"svg"` - SVG + * - `"png"` (default) + * - `"jpeg"` + * - `"svg"` */ public get dataFormat(): string { return this.getPropertyValue("dataFormat"); From e3108a4a9238af2d5804a17b5a3e97220697198f Mon Sep 17 00:00:00 2001 From: Roman Tsukanov Date: Tue, 4 Jul 2023 13:14:30 +0400 Subject: [PATCH 2/2] Update the `backgroundOpacity` description --- src/survey.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/survey.ts b/src/survey.ts index ca570d1131..bc7d4d8f7d 100644 --- a/src/survey.ts +++ b/src/survey.ts @@ -2009,8 +2009,7 @@ export class SurveyModel extends SurveyElementCore } @property() backgroundImageFit: string; /** - * A value from 0 to 1 that specifies how transparent the survey background should be: 0 makes the background completely transparent, and 1 makes it opaque. - * @see backgroundImage + * A value from 0 to 1 that specifies how transparent the [background image](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#backgroundImage) should be: 0 makes the image completely transparent, and 1 makes it opaque. */ public get backgroundOpacity(): number { return this.getPropertyValue("backgroundOpacity");