survey-react-ui 1.12.11 → 1.12.13

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.
@@ -5,10 +5,13 @@ interface ITextAreaProps {
5
5
  viewModel: TextAreaModel;
6
6
  }
7
7
  export declare class TextAreaComponent extends SurveyElementBase<ITextAreaProps, any> {
8
+ private textareaRef;
8
9
  private initialValue;
9
10
  constructor(props: ITextAreaProps);
10
11
  get viewModel(): TextAreaModel;
11
12
  protected canRender(): boolean;
13
+ componentDidMount(): void;
14
+ componentWillUnmount(): void;
12
15
  protected renderElement(): JSX.Element;
13
16
  }
14
17
  export {};
@@ -2,6 +2,8 @@ import React from "react";
2
2
  export declare class SvgBundleComponent extends React.Component {
3
3
  private containerRef;
4
4
  constructor(props: any);
5
+ private onIconsChanged;
5
6
  componentDidMount(): void;
7
+ componentWillUnmount(): void;
6
8
  render(): JSX.Element;
7
9
  }