survey-react-ui 1.9.136 → 1.9.138

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.
@@ -27,7 +27,7 @@ export declare class PopupContainer extends SurveyElementBase<any, any> {
27
27
  protected getStateElement(): Base;
28
28
  clickInside: (ev: any) => void;
29
29
  componentDidUpdate(prevProps: any, prevState: any): void;
30
- renderContainer(PopupBaseViewModel: PopupBaseViewModel): JSX.Element;
30
+ renderContainer(popupBaseViewModel: PopupBaseViewModel): JSX.Element;
31
31
  renderHeaderContent(): JSX.Element;
32
32
  renderContent(): JSX.Element;
33
33
  protected renderHeaderPopup(popupModel: PopupBaseViewModel): JSX.Element | null;
@@ -11,6 +11,8 @@ export declare class SurveyRowElement extends SurveyElementBase<any, any> {
11
11
  private get survey();
12
12
  private get creator();
13
13
  protected get css(): any;
14
+ componentDidMount(): void;
15
+ componentWillUnmount(): void;
14
16
  shouldComponentUpdate(nextProps: any, nextState: any): boolean;
15
17
  protected renderElement(): JSX.Element;
16
18
  protected createElement(element: IElement, elementIndex?: number): JSX.Element;
@@ -18,6 +18,7 @@ export declare class SurveyPanelBase extends SurveyElementBase<any, any> {
18
18
  componentWillUnmount(): void;
19
19
  componentDidUpdate(prevProps: any, prevState: any): void;
20
20
  private doAfterRender;
21
+ protected getIsVisible(): boolean;
21
22
  protected canRender(): boolean;
22
23
  protected renderRows(css: any): Array<JSX.Element>;
23
24
  protected createRow(row: QuestionRowModel, css: any): JSX.Element;
@@ -12,4 +12,5 @@ export declare class SurveyPanel extends SurveyPanelBase {
12
12
  protected renderTitle(): JSX.Element | null;
13
13
  protected renderDescription(): JSX.Element | null;
14
14
  protected renderBottom(): JSX.Element | null;
15
+ protected getIsVisible(): boolean;
15
16
  }