survey-react-ui 1.9.69 → 1.9.71-31-g828ef9f53
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/README.md +2 -0
- package/package.json +1 -1
- package/survey-react-ui.d.ts +13 -1
- package/survey-react-ui.js +121 -59
- package/survey-react-ui.min.js +2 -2
package/README.md
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
<img alt="Closed issues" title="Closed Issues" src="https://img.shields.io/github/issues-closed/surveyjs/survey-library.svg">
|
|
15
15
|
</a>
|
|
16
16
|
|
|
17
|
+
https://user-images.githubusercontent.com/22315929/218698798-22b095a7-c28b-42f7-baf8-6c56df8e1490.mp4
|
|
18
|
+
|
|
17
19
|
## Documentation
|
|
18
20
|
|
|
19
21
|
[SurveyJS Library Documentation](https://surveyjs.io/Documentation/Library)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-react-ui",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.71-31-g828ef9f53",
|
|
4
4
|
"description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
package/survey-react-ui.d.ts
CHANGED
|
@@ -466,6 +466,18 @@ declare module "react/components/brand-info" {
|
|
|
466
466
|
render(): JSX.Element;
|
|
467
467
|
}
|
|
468
468
|
}
|
|
469
|
+
declare module "react/components/notifier" {
|
|
470
|
+
import { Base, Notifier } from "survey-core";
|
|
471
|
+
import { SurveyElementBase } from "react/reactquestion_element";
|
|
472
|
+
export interface INotifierComponentProps {
|
|
473
|
+
notifier: Notifier;
|
|
474
|
+
}
|
|
475
|
+
export class NotifierComponent extends SurveyElementBase<INotifierComponentProps, any> {
|
|
476
|
+
get notifier(): Notifier;
|
|
477
|
+
protected getStateElement(): Base;
|
|
478
|
+
renderElement(): JSX.Element | null;
|
|
479
|
+
}
|
|
480
|
+
}
|
|
469
481
|
declare module "react/reactSurvey" {
|
|
470
482
|
import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "survey-core";
|
|
471
483
|
import { ISurveyCreator } from "react/reactquestion";
|
|
@@ -491,7 +503,6 @@ declare module "react/reactSurvey" {
|
|
|
491
503
|
protected renderElement(): JSX.Element;
|
|
492
504
|
get css(): any;
|
|
493
505
|
set css(value: any);
|
|
494
|
-
handleTryAgainClick(event: any): void;
|
|
495
506
|
protected renderCompleted(): JSX.Element | null;
|
|
496
507
|
protected renderCompletedBefore(): JSX.Element;
|
|
497
508
|
protected renderLoading(): JSX.Element;
|
|
@@ -1356,6 +1367,7 @@ declare module "entries/react-ui-model" {
|
|
|
1356
1367
|
export { SurveyNavigationButton } from "react/components/survey-actions/survey-nav-button";
|
|
1357
1368
|
export { MatrixRow } from "react/components/matrix/row";
|
|
1358
1369
|
export { Skeleton } from "react/components/skeleton";
|
|
1370
|
+
export { NotifierComponent } from "react/components/notifier";
|
|
1359
1371
|
export { SurveyLocStringViewer } from "react/string-viewer";
|
|
1360
1372
|
export { SurveyLocStringEditor } from "react/string-editor";
|
|
1361
1373
|
}
|