survey-react-ui 1.9.8 → 1.9.9

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-react-ui",
3
- "version": "1.9.8",
3
+ "version": "1.9.9",
4
4
  "description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -1,16 +1,16 @@
1
1
  /*
2
- * Type definition for Survey JavaScript library for React (without core) v1.9.8
2
+ * Type definition for Survey JavaScript library for React (without core) v1.9.9
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
6
6
  import { Action, PopupModel, ActionContainer, Question, SurveyError } from "survey-core";
7
- import { SurveyModel, QuestionMatrixDropdownRenderedRow, ListModel, HashTable, LocalizableString } from "survey-core";
8
- import { Base, SurveyElement, ITitleOwner, PopupBaseViewModel, PageModel } from "survey-core";
9
- import { ButtonGroupItemModel, QuestionButtonGroupModel, ButtonGroupItemValue, PanelModelBase, QuestionRowModel } from "survey-core";
10
- import { SurveyProgressButtonsModel, IElement, SurveyWindowModel, TooltipManager, PanelModel } from "survey-core";
11
- import { QuestionBooleanModel, QuestionCheckboxModel, ItemValue, QuestionEmptyModel, QuestionExpressionModel } from "survey-core";
12
- import { QuestionFileModel, QuestionHtmlModel, QuestionImageModel, QuestionImagePickerModel, QuestionMatrixModel } from "survey-core";
13
- import { AdaptiveActionContainer, QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedCell, QuestionMultipleTextModel, MultipleTextItemModel } from "survey-core";
7
+ import { SurveyModel, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase, ListModel, HashTable } from "survey-core";
8
+ import { LocalizableString, Base, SurveyElement, ITitleOwner, PopupBaseViewModel } from "survey-core";
9
+ import { PageModel, ButtonGroupItemModel, QuestionButtonGroupModel, ButtonGroupItemValue, PanelModelBase } from "survey-core";
10
+ import { QuestionRowModel, SurveyProgressButtonsModel, IElement, SurveyWindowModel, TooltipManager } from "survey-core";
11
+ import { PanelModel, QuestionBooleanModel, QuestionCheckboxModel, ItemValue, QuestionEmptyModel } from "survey-core";
12
+ import { QuestionExpressionModel, QuestionFileModel, QuestionHtmlModel, QuestionImageModel, QuestionImagePickerModel } from "survey-core";
13
+ import { QuestionMatrixModel, AdaptiveActionContainer, QuestionMatrixDropdownRenderedCell, QuestionMultipleTextModel, MultipleTextItemModel } from "survey-core";
14
14
  import { QuestionPanelDynamicModel, QuestionRadiogroupModel, QuestionRankingModel, QuestionRatingModel, RenderedRatingItem } from "survey-core";
15
15
  import { QuestionSignaturePadModel, QuestionSelectBase, FlowPanelModel, QuestionCommentModel, QuestionCompositeModel } from "survey-core";
16
16
  import { QuestionCustomModel, QuestionDropdownModel, QuestionMatrixDynamicModel, QuestionTextModel, IArrayPropertyDecoratorOptions } from "survey-core";
@@ -45,6 +45,7 @@ export interface ISurveyHeaderProps {
45
45
  }
46
46
  export interface IMAtrixRowProps {
47
47
  model: QuestionMatrixDropdownRenderedRow;
48
+ parentMatrix: QuestionMatrixDropdownModelBase;
48
49
  }
49
50
  export interface IListItemProps {
50
51
  model: ListModel;
@@ -194,7 +195,9 @@ export declare class ListItem extends SurveyElementBase<IListItemProps, any> {
194
195
  export declare class MatrixRow extends SurveyElementBase<IMAtrixRowProps, any> {
195
196
  constructor(props: IMAtrixRowProps);
196
197
  get model(): QuestionMatrixDropdownRenderedRow;
198
+ get parentMatrix(): QuestionMatrixDropdownModelBase;
197
199
  protected getStateElement(): QuestionMatrixDropdownRenderedRow;
200
+ protected onPointerDownHandler: any;
198
201
  render(): any;
199
202
  }
200
203
  export declare class Popup extends SurveyElementBase<IPopupProps, any> {
@@ -603,7 +606,6 @@ export declare class SurveyQuestionMatrixDropdownBase extends SurveyQuestionElem
603
606
  }
604
607
  export declare class SurveyQuestionMatrixDynamicDragDropIcon extends ReactSurveyElement {
605
608
  constructor(props: any);
606
- onPointerDownHandler(event: any): void;
607
609
  protected renderElement(): any;
608
610
  }
609
611
  export declare class SurveyQuestionMatrixDynamicRemoveButton extends ReactSurveyElement {