survey-react-ui 2.5.16 → 2.5.17

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.
@@ -4,6 +4,7 @@ import { Base, QuestionCustomModel, QuestionCompositeModel } from "survey-core";
4
4
  export declare class SurveyQuestionCustom extends SurveyQuestionUncontrolledElement<QuestionCustomModel> {
5
5
  constructor(props: any);
6
6
  protected getStateElements(): Array<Base>;
7
+ protected getRenderedElements(): Array<Base>;
7
8
  protected renderElement(): React.JSX.Element;
8
9
  }
9
10
  export declare class SurveyQuestionComposite extends SurveyQuestionUncontrolledElement<QuestionCompositeModel> {
@@ -5,6 +5,7 @@ export declare class SurveyQuestionRating extends SurveyQuestionElementBase {
5
5
  constructor(props: any);
6
6
  protected get question(): QuestionRatingModel;
7
7
  handleOnClick(event: any): void;
8
+ componentDidMount(): void;
8
9
  protected renderItem(item: any, index: number): React.JSX.Element;
9
10
  protected renderElement(): React.JSX.Element;
10
11
  }