survey-react-ui 3.0.0-beta.5 → 3.0.0-beta.7
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.
- package/fesm/survey-react-ui.mjs +52 -63
- package/fesm/survey-react-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/survey-react-ui.js +56 -69
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +2 -2
- package/typings/src/progress.d.ts +3 -0
- package/typings/src/progressButtons.d.ts +2 -10
- package/typings/src/reactquestion_text.d.ts +1 -0
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
+
import { Base } from "survey-core";
|
|
2
3
|
import { SurveyNavigationBase } from "./reactSurveyNavigationBase";
|
|
3
4
|
export declare class SurveyProgress extends SurveyNavigationBase {
|
|
4
5
|
constructor(props: any);
|
|
5
6
|
protected get isTop(): boolean;
|
|
7
|
+
protected get model(): any;
|
|
8
|
+
protected getStateElement(): Base | null;
|
|
6
9
|
protected get progress(): number;
|
|
7
10
|
protected get progressText(): string;
|
|
8
11
|
protected get progressBarAriaLabel(): string;
|
|
@@ -1,20 +1,12 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { ProgressButtons, PageModel,
|
|
2
|
+
import { ProgressButtons, PageModel, Base } from "survey-core";
|
|
3
3
|
import { SurveyNavigationBase } from "./reactSurveyNavigationBase";
|
|
4
|
-
export declare class SurveyProgressButtons extends SurveyNavigationBase
|
|
5
|
-
private respManager;
|
|
6
|
-
private listContainerRef;
|
|
4
|
+
export declare class SurveyProgressButtons extends SurveyNavigationBase {
|
|
7
5
|
constructor(props: any);
|
|
8
6
|
protected get model(): ProgressButtons;
|
|
9
7
|
get container(): string;
|
|
10
8
|
protected getStateElement(): Base | null;
|
|
11
|
-
onResize(canShowItemTitles: boolean): void;
|
|
12
|
-
onUpdateScroller(hasScroller: boolean): void;
|
|
13
|
-
onUpdateSettings(): void;
|
|
14
9
|
render(): React.JSX.Element;
|
|
15
10
|
protected getListElements(): React.JSX.Element[];
|
|
16
11
|
protected renderListElement(page: PageModel, index: number): React.JSX.Element;
|
|
17
|
-
protected clickScrollButton(listContainerElement: Element | null, isLeftScroll: boolean): void;
|
|
18
|
-
componentDidMount(): void;
|
|
19
|
-
componentWillUnmount(): void;
|
|
20
12
|
}
|