survey-react-ui 2.0.0-rc.3 → 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.3
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
  */
@@ -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
  }