survey-react-ui 1.11.8 → 1.11.10

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.
@@ -12,6 +12,7 @@ export declare class List extends SurveyElementBase<IListProps, any> {
12
12
  handleMouseMove: (event: any) => void;
13
13
  getStateElement(): ListModel<import("survey-core").Action>;
14
14
  componentDidMount(): void;
15
+ componentDidUpdate(prevProps: any, prevState: any): void;
15
16
  componentWillUnmount(): void;
16
17
  renderElement(): JSX.Element;
17
18
  renderList(): JSX.Element | null;
@@ -38,6 +38,7 @@ export declare class ReactSurveyElement extends SurveyElementBase<any, any> {
38
38
  }
39
39
  export declare class SurveyQuestionElementBase extends SurveyElementBase<any, any> {
40
40
  control: HTMLElement;
41
+ content: HTMLElement;
41
42
  constructor(props: any);
42
43
  componentDidUpdate(prevProps: any, prevState: any): void;
43
44
  componentDidMount(): void;
@@ -51,6 +52,7 @@ export declare class SurveyQuestionElementBase extends SurveyElementBase<any, an
51
52
  protected get isDisplayMode(): boolean;
52
53
  protected wrapCell(cell: any, element: JSX.Element, reason: string): JSX.Element;
53
54
  setControl(element: HTMLElement | null): void;
55
+ setContent(element: HTMLElement | null): void;
54
56
  }
55
57
  export declare class SurveyQuestionUncontrolledElement<T extends Question> extends SurveyQuestionElementBase {
56
58
  constructor(props: any);