survey-react-ui 2.0.7 → 2.0.9

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.7
2
+ * surveyjs - Survey JavaScript library v2.0.9
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
  */
@@ -2,6 +2,7 @@ import * as React from "react";
2
2
  interface IScrollComponentProps {
3
3
  children: React.ReactNode;
4
4
  disabled?: boolean;
5
+ onInnerHeightChanged?: (hasScroll: boolean) => void;
5
6
  }
6
7
  export declare class Scroll extends React.Component<IScrollComponentProps, any> {
7
8
  private model;
@@ -5,5 +5,6 @@ export declare class SurveyProgress extends SurveyNavigationBase {
5
5
  protected get isTop(): boolean;
6
6
  protected get progress(): number;
7
7
  protected get progressText(): string;
8
+ protected get progressBarAriaLabel(): string;
8
9
  render(): React.JSX.Element;
9
10
  }
@@ -13,6 +13,7 @@ export declare class SurveyRow extends SurveyElementBase<any, any> {
13
13
  protected canRender(): boolean;
14
14
  protected renderElementContent(): React.JSX.Element;
15
15
  protected renderElement(): React.JSX.Element;
16
+ private lazyRenderingTimeout;
16
17
  componentDidMount(): void;
17
18
  shouldComponentUpdate(nextProps: any, nextState: any): boolean;
18
19
  private stopLazyRendering;