survey-react-ui 1.9.112 → 1.9.114
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/package.json +2 -2
- package/survey-react-ui.js +215 -141
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +2 -2
- package/typings/entries/react-ui-model.d.ts +1 -1
- package/typings/react/components/cover.d.ts +17 -17
- package/typings/react/components/header.d.ts +22 -0
- package/typings/react/reactquestion_ranking.d.ts +1 -0
|
@@ -73,7 +73,7 @@ export { Skeleton } from "../react/components/skeleton";
|
|
|
73
73
|
export { NotifierComponent } from "../react/components/notifier";
|
|
74
74
|
export { ComponentsContainer } from "../react/components/components-container";
|
|
75
75
|
export { CharacterCounterComponent } from "../react/components/character-counter";
|
|
76
|
-
export * from "../react/components/
|
|
76
|
+
export * from "../react/components/header";
|
|
77
77
|
export { SurveyLocStringViewer } from "../react/string-viewer";
|
|
78
78
|
export { SurveyLocStringEditor } from "../react/string-editor";
|
|
79
79
|
export { LoadingIndicatorComponent } from "../react/components/loading-indicator";
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { Base, SurveyModel, Cover, CoverCell } from "survey-core";
|
|
3
|
-
import { SurveyElementBase } from "../reactquestion_element";
|
|
4
|
-
export interface ILayoutElementProps<T = Base> {
|
|
5
|
-
survey: SurveyModel;
|
|
6
|
-
model: T;
|
|
7
|
-
}
|
|
8
|
-
export declare class CoverCellComponent extends React.Component<any, any> {
|
|
9
|
-
get model(): CoverCell;
|
|
10
|
-
private renderLogoImage;
|
|
11
|
-
render(): JSX.Element | null;
|
|
12
|
-
}
|
|
13
|
-
export declare class CoverComponent extends SurveyElementBase<ILayoutElementProps<Cover>, any> {
|
|
14
|
-
get model(): Cover;
|
|
15
|
-
protected getStateElement(): Base;
|
|
16
|
-
renderElement(): JSX.Element | null;
|
|
17
|
-
}
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Base, SurveyModel, Cover, CoverCell } from "survey-core";
|
|
3
|
+
import { SurveyElementBase } from "../reactquestion_element";
|
|
4
|
+
export interface ILayoutElementProps<T = Base> {
|
|
5
|
+
survey: SurveyModel;
|
|
6
|
+
model: T;
|
|
7
|
+
}
|
|
8
|
+
export declare class CoverCellComponent extends React.Component<any, any> {
|
|
9
|
+
get model(): CoverCell;
|
|
10
|
+
private renderLogoImage;
|
|
11
|
+
render(): JSX.Element | null;
|
|
12
|
+
}
|
|
13
|
+
export declare class CoverComponent extends SurveyElementBase<ILayoutElementProps<Cover>, any> {
|
|
14
|
+
get model(): Cover;
|
|
15
|
+
protected getStateElement(): Base;
|
|
16
|
+
renderElement(): JSX.Element | null;
|
|
17
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Base, SurveyModel, Cover, CoverCell } from "survey-core";
|
|
3
|
+
import { SurveyElementBase } from "../reactquestion_element";
|
|
4
|
+
export interface ILayoutElementProps<T = Base> {
|
|
5
|
+
survey: SurveyModel;
|
|
6
|
+
model: T;
|
|
7
|
+
}
|
|
8
|
+
export declare class HeaderMobile extends React.Component<any, any> {
|
|
9
|
+
get model(): Cover;
|
|
10
|
+
private renderLogoImage;
|
|
11
|
+
render(): JSX.Element | null;
|
|
12
|
+
}
|
|
13
|
+
export declare class HeaderCell extends React.Component<any, any> {
|
|
14
|
+
get model(): CoverCell;
|
|
15
|
+
private renderLogoImage;
|
|
16
|
+
render(): JSX.Element | null;
|
|
17
|
+
}
|
|
18
|
+
export declare class Header extends SurveyElementBase<ILayoutElementProps<Cover>, any> {
|
|
19
|
+
get model(): Cover;
|
|
20
|
+
protected getStateElement(): Base;
|
|
21
|
+
renderElement(): JSX.Element | null;
|
|
22
|
+
}
|
|
@@ -19,5 +19,6 @@ export declare class SurveyQuestionRankingItem extends ReactSurveyElement {
|
|
|
19
19
|
protected get question(): any;
|
|
20
20
|
protected get unrankedItem(): any;
|
|
21
21
|
protected get item(): any;
|
|
22
|
+
protected renderEmptyIcon(): JSX.Element;
|
|
22
23
|
protected renderElement(): JSX.Element;
|
|
23
24
|
}
|