survey-creator-react 1.9.40 → 1.9.41

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-creator-react",
3
- "version": "1.9.40",
3
+ "version": "1.9.41",
4
4
  "description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Library.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "survey-core": "^1.9.9",
35
35
  "survey-react-ui": "^1.9.9",
36
- "survey-creator-core": "1.9.40",
36
+ "survey-creator-core": "1.9.41",
37
37
  "react": "^16.5.0 || ^17.0.1 || ^18.1.0",
38
38
  "react-dom": "^16.5.0 || ^17.0.1 || ^18.1.0"
39
39
  },
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Type definition for Survey Creator library for React v1.9.40
2
+ * Type definition for Survey Creator library for React v1.9.41
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
4
4
  * License: https://surveyjs.io/Licenses#SurveyCreator
5
5
  */
@@ -9,7 +9,7 @@ import { EmbedModel, AceJsonEditorModel, TextareaJsonEditorModel, ObjectSelector
9
9
  import { ITabbedMenuItem, QuestionEmbeddedSurveyModel, QuestionLinkValueModel, PageAdorner, ImageItemValueWrapperViewModel } from "survey-creator-core";
10
10
  import { ItemValueWrapperViewModel, LogoImageViewModel, MatrixCellWrapperViewModel, QuestionRatingAdornerViewModel, IPortableMouseEvent } from "survey-creator-core";
11
11
  import { RowViewModel, ICreatorOptions, ToolboxToolViewModel, PageNavigatorViewModel, SurveyResultsModel } from "survey-creator-core";
12
- import { QuestionImageAdornerViewModel, IPortableDragEvent } from "survey-creator-core";
12
+ import { QuestionDropdownAdornerViewModel, QuestionImageAdornerViewModel, IPortableDragEvent } from "survey-creator-core";
13
13
  import { Action, QuestionRowModel, Question, SurveyModel, PageModel } from "survey-core";
14
14
  import { QuestionSelectBase, ItemValue, ImageItemValue, Base, SurveyError } from "survey-core";
15
15
  import { ResponsivityManager, VerticalResponsivityManager, QuestionImagePickerModel } from "survey-core";
@@ -560,6 +560,9 @@ export declare class PanelAdornerComponent extends QuestionAdornerComponent {
560
560
  }
561
561
  export declare class QuestionDropdownAdornerComponent extends QuestionAdornerComponent {
562
562
  constructor(props: QuestionAdornerComponentProps);
563
+ protected createQuestionViewModel(): QuestionDropdownAdornerViewModel;
564
+ get dropdownModel(): QuestionDropdownAdornerViewModel;
565
+ get question(): QuestionSelectBase;
563
566
  renderElementPlaceholder(): JSX.Element;
564
567
  }
565
568
  export declare class QuestionImageAdornerComponent extends QuestionAdornerComponent {