survey-react-ui 1.9.125 → 1.9.127

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.
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
- import { Survey } from "./reactSurvey";
3
2
  import { Base, PopupSurveyModel } from "survey-core";
3
+ import { Survey } from "./reactSurvey";
4
4
  export declare class PopupSurvey extends Survey {
5
5
  protected popup: PopupSurveyModel;
6
6
  constructor(props: any);
@@ -9,6 +9,10 @@ export declare class PopupSurvey extends Survey {
9
9
  protected canRender(): boolean;
10
10
  protected renderElement(): JSX.Element;
11
11
  protected renderWindowHeader(): JSX.Element;
12
+ protected renderTitleCollapsed(popup: PopupSurveyModel): JSX.Element | null;
13
+ protected renderExpandIcon(): JSX.Element;
14
+ protected renderCollapseIcon(): JSX.Element;
15
+ protected renderCloseButton(popup: PopupSurveyModel): JSX.Element;
12
16
  protected renderBody(): JSX.Element;
13
17
  protected createSurvey(newProps: any): void;
14
18
  }
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { ReactSurveyElement, SurveyQuestionElementBase } from "./reactquestion_element";
3
- import { QuestionMatrixModel } from "survey-core";
3
+ import { QuestionMatrixModel, Base } from "survey-core";
4
4
  export declare class SurveyQuestionMatrix extends SurveyQuestionElementBase {
5
5
  constructor(props: any);
6
6
  protected get question(): QuestionMatrixModel;
@@ -10,6 +10,7 @@ export declare class SurveyQuestionMatrix extends SurveyQuestionElementBase {
10
10
  }
11
11
  export declare class SurveyQuestionMatrixRow extends ReactSurveyElement {
12
12
  constructor(props: any);
13
+ protected getStateElement(): Base | null;
13
14
  private get question();
14
15
  private get row();
15
16
  protected wrapCell(cell: any, element: JSX.Element, reason: string): JSX.Element;