survey-react-ui 1.9.78 → 1.9.80
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.d.ts +16 -0
- package/survey-react-ui.js +253 -145
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-react-ui",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.80",
|
|
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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"typings": "survey-react-ui.d.ts",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"survey-core": "1.9.
|
|
24
|
+
"survey-core": "1.9.80",
|
|
25
25
|
"react": "^16.5.0 || ^17.0.1 || ^18.1.0",
|
|
26
26
|
"react-dom": "^16.5.0 || ^17.0.1 || ^18.1.0"
|
|
27
27
|
}
|
package/survey-react-ui.d.ts
CHANGED
|
@@ -677,6 +677,18 @@ declare module "react/components/rating/rating-item-star" {
|
|
|
677
677
|
render(): JSX.Element | null;
|
|
678
678
|
}
|
|
679
679
|
}
|
|
680
|
+
declare module "react/components/rating/rating-item-smiley" {
|
|
681
|
+
import { QuestionRatingModel, RenderedRatingItem } from "survey-core";
|
|
682
|
+
import { SurveyElementBase } from "react/reactquestion_element";
|
|
683
|
+
import { IRatingItemProps } from "react/components/rating/rating-item";
|
|
684
|
+
export class RatingItemSmiley extends SurveyElementBase<IRatingItemProps, any> {
|
|
685
|
+
get question(): QuestionRatingModel;
|
|
686
|
+
get item(): RenderedRatingItem;
|
|
687
|
+
get index(): any;
|
|
688
|
+
getStateElement(): RenderedRatingItem;
|
|
689
|
+
render(): JSX.Element | null;
|
|
690
|
+
}
|
|
691
|
+
}
|
|
680
692
|
declare module "react/tagbox-filter" {
|
|
681
693
|
import { DropdownMultiSelectListModel, QuestionTagboxModel } from "survey-core";
|
|
682
694
|
import { SurveyElementBase } from "react/reactquestion_element";
|
|
@@ -694,6 +706,7 @@ declare module "react/tagbox-filter" {
|
|
|
694
706
|
onChange(e: any): void;
|
|
695
707
|
keyhandler(e: any): void;
|
|
696
708
|
onBlur(e: any): void;
|
|
709
|
+
onFocus(e: any): void;
|
|
697
710
|
constructor(props: any);
|
|
698
711
|
getStateElement(): DropdownMultiSelectListModel;
|
|
699
712
|
render(): JSX.Element;
|
|
@@ -722,6 +735,8 @@ declare module "react/dropdown-base" {
|
|
|
722
735
|
clear: (event: any) => void;
|
|
723
736
|
keyhandler: (event: any) => void;
|
|
724
737
|
blur: (event: any) => void;
|
|
738
|
+
focus: (event: any) => void;
|
|
739
|
+
protected getStateElement(): any;
|
|
725
740
|
protected setValueCore(newValue: any): void;
|
|
726
741
|
protected getValueCore(): any;
|
|
727
742
|
protected renderSelect(cssClasses: any): JSX.Element;
|
|
@@ -1368,6 +1383,7 @@ declare module "entries/react-ui-model" {
|
|
|
1368
1383
|
export { SurveyQuestionRanking, SurveyQuestionRankingItem, } from "react/reactquestion_ranking";
|
|
1369
1384
|
export { RatingItem } from "react/components/rating/rating-item";
|
|
1370
1385
|
export { RatingItemStar } from "react/components/rating/rating-item-star";
|
|
1386
|
+
export { RatingItemSmiley } from "react/components/rating/rating-item-smiley";
|
|
1371
1387
|
export { TagboxFilterString } from "react/tagbox-filter";
|
|
1372
1388
|
export { SurveyQuestionOptionItem } from "react/dropdown-item";
|
|
1373
1389
|
export { SurveyQuestionDropdownBase } from "react/dropdown-base";
|