survey-js-ui 2.0.0-rc.2 → 2.0.0-rc.4

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,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v2.0.0-rc.2
2
+ * surveyjs - Survey JavaScript library v2.0.0-rc.4
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -19,4 +19,6 @@ export declare class Header extends SurveyElementBase<ILayoutElementProps<Cover>
19
19
  get model(): Cover;
20
20
  protected getStateElement(): Base;
21
21
  renderElement(): React.JSX.Element | null;
22
+ componentDidMount(): void;
23
+ componentDidUpdate(prevProps: any, prevState: any): void;
22
24
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare class ReactElementFactory {
3
2
  static Instance: ReactElementFactory;
4
3
  private creatorHash;
@@ -1,5 +1,8 @@
1
1
  import React from "react";
2
- export declare class SurveyElementHeader extends React.Component<any, any> {
2
+ import { Base } from "survey-core";
3
+ import { SurveyElementBase } from "./reactquestion_element";
4
+ export declare class SurveyElementHeader extends SurveyElementBase<any, any> {
3
5
  private get element();
4
- render(): React.JSX.Element;
6
+ protected getRenderedElements(): Base[];
7
+ protected renderElement(): React.JSX.Element;
5
8
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare class ReactQuestionFactory {
3
2
  static Instance: ReactQuestionFactory;
4
3
  private creatorHash;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { SurveyModel, QuestionMatrixDropdownRenderedCell, SurveyElement, QuestionRowModel, ItemValue, QuestionSelectBase } from "survey-core";
3
2
  export declare class ReactSurveyElementsWrapper {
4
3
  static wrapRow(survey: SurveyModel, element: React.JSX.Element, row: QuestionRowModel): React.JSX.Element;