survey-creator-react 2.5.16 → 3.0.0-beta.1
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-creator-react.mjs +4 -34
- package/fesm/survey-creator-react.mjs.map +1 -1
- package/fesm/ui-preset-editor/index.mjs +1 -1
- package/package.json +4 -4
- package/survey-creator-react.js +3 -44
- package/survey-creator-react.js.map +1 -1
- package/survey-creator-react.min.js +2 -2
- package/typings/entries/index-wc.d.ts +0 -1
- package/ui-preset-editor/index.js +1 -1
- package/ui-preset-editor/index.min.js +1 -1
- package/typings/custom-questions/TextWithResetQuestion.d.ts +0 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator
|
|
2
|
+
* SurveyJS Creator v3.0.0-beta.1
|
|
3
3
|
* (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* Github: https://github.com/surveyjs/survey-creator
|
|
5
5
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -2910,36 +2910,6 @@ ReactQuestionFactory.Instance.registerQuestion("fileedit", (props) => {
|
|
|
2910
2910
|
return React.createElement(SurveyQuestionFileEditor, props);
|
|
2911
2911
|
});
|
|
2912
2912
|
|
|
2913
|
-
class SurveyQuestionTextWithReset extends SurveyQuestionElementBase {
|
|
2914
|
-
get question() {
|
|
2915
|
-
return this.questionBase;
|
|
2916
|
-
}
|
|
2917
|
-
renderElement() {
|
|
2918
|
-
const textElement = this.renderInput();
|
|
2919
|
-
const resetButton = this.renderResetButton();
|
|
2920
|
-
return (React.createElement("div", { className: this.question.getRootClass() },
|
|
2921
|
-
textElement,
|
|
2922
|
-
resetButton));
|
|
2923
|
-
}
|
|
2924
|
-
renderInput() {
|
|
2925
|
-
return ReactQuestionFactory.Instance.createQuestion(this.question.wrappedQuestionTemplate, {
|
|
2926
|
-
question: this.question,
|
|
2927
|
-
isDisplayMode: this.question.isInputReadOnly,
|
|
2928
|
-
creator: this,
|
|
2929
|
-
});
|
|
2930
|
-
}
|
|
2931
|
-
renderResetButton() {
|
|
2932
|
-
return (React.createElement("button", { className: this.question.cssClasses.resetButton, disabled: this.question.resetValueAdorner.isDisabled, title: this.question.resetValueAdorner.caption, onClick: () => this.question.resetValueAdorner.resetValue() },
|
|
2933
|
-
React.createElement(SvgIcon, { iconName: this.question.cssClasses.resetButtonIcon, size: "auto" })));
|
|
2934
|
-
}
|
|
2935
|
-
}
|
|
2936
|
-
ReactQuestionFactory.Instance.registerQuestion("textwithreset", (props) => {
|
|
2937
|
-
return React.createElement(SurveyQuestionTextWithReset, props);
|
|
2938
|
-
});
|
|
2939
|
-
ReactQuestionFactory.Instance.registerQuestion("commentwithreset", (props) => {
|
|
2940
|
-
return React.createElement(SurveyQuestionTextWithReset, props);
|
|
2941
|
-
});
|
|
2942
|
-
|
|
2943
2913
|
class SurveyQuestionBooleanSwitch extends SurveyQuestionElementBase {
|
|
2944
2914
|
renderElement() {
|
|
2945
2915
|
const button = attachKey2click(React.createElement("div", { className: "spg-boolean-switch__button" + (this.questionBase.booleanValue ? " spg-boolean-switch__button--checked" : ""), tabIndex: 0, role: "checkbox", "aria-checked": this.questionBase.booleanValue || false, "aria-required": this.questionBase.a11y_input_ariaRequired, "aria-label": this.questionBase.a11y_input_ariaLabel, "aria-labelledby": this.questionBase.a11y_input_ariaLabelledBy, "aria-invalid": this.questionBase.a11y_input_ariaInvalid, "aria-errormessage": this.questionBase.a11y_input_ariaErrormessage },
|
|
@@ -2959,8 +2929,8 @@ ReactQuestionFactory.Instance.registerQuestion("sv-boolean-switch", (props) => {
|
|
|
2959
2929
|
RendererFactory.Instance.registerRenderer("boolean", "switch", "sv-boolean-switch");
|
|
2960
2930
|
|
|
2961
2931
|
let Version;
|
|
2962
|
-
Version = `${"
|
|
2963
|
-
checkLibraryVersion(`${"
|
|
2932
|
+
Version = `${"3.0.0-beta.1"}`;
|
|
2933
|
+
checkLibraryVersion(`${"3.0.0-beta.1"}`, "survey-creator-react");
|
|
2964
2934
|
|
|
2965
|
-
export { ActionButton, AdaptiveToolbox, CellQuestionAdornerComponent, CellQuestionDropdownAdornerComponent, ComponentContainer, CreatorSurveyPageComponent, ImageItemValueAdornerComponent, ItemValueAdornerComponent, LogoImageComponent, MatrixCellAdornerComponent, PanelAdornerComponent, PropertyGridComponent, PropertyGridPlaceholderComponent, QuestionAdornerComponent, QuestionBanner, QuestionDropdownAdornerComponent, QuestionEditorContentComponent, QuestionErrorComponent, QuestionImageAdornerComponent, QuestionRatingAdornerComponent, QuestionWidgetAdornerComponent, QuestionWrapperFooter, QuestionWrapperHeader, ReactDragEvent, ReactMouseEvent, RowWrapper, SearchComponent, SideBarDefaultHeader, SidebarComponent, SurveyCreator, SurveyCreatorComponent, SurveyCreatorToolboxCategory, SurveyCreatorToolboxItem, SurveyCreatorToolboxItemGroup, SurveyCreatorToolboxTool, SurveyElementEmbeddedSurvey, SurveyLocStringEditor, SurveyLogicOpertor, SurveyNavigation, SurveyQuestionBooleanSwitch, SurveyQuestionColor, SurveyQuestionFileEditor, SurveyQuestionLinkValue, SurveyQuestionSpinEditor,
|
|
2935
|
+
export { ActionButton, AdaptiveToolbox, CellQuestionAdornerComponent, CellQuestionDropdownAdornerComponent, ComponentContainer, CreatorSurveyPageComponent, ImageItemValueAdornerComponent, ItemValueAdornerComponent, LogoImageComponent, MatrixCellAdornerComponent, PanelAdornerComponent, PropertyGridComponent, PropertyGridPlaceholderComponent, QuestionAdornerComponent, QuestionBanner, QuestionDropdownAdornerComponent, QuestionEditorContentComponent, QuestionErrorComponent, QuestionImageAdornerComponent, QuestionRatingAdornerComponent, QuestionWidgetAdornerComponent, QuestionWrapperFooter, QuestionWrapperHeader, ReactDragEvent, ReactMouseEvent, RowWrapper, SearchComponent, SideBarDefaultHeader, SidebarComponent, SurveyCreator, SurveyCreatorComponent, SurveyCreatorToolboxCategory, SurveyCreatorToolboxItem, SurveyCreatorToolboxItemGroup, SurveyCreatorToolboxTool, SurveyElementEmbeddedSurvey, SurveyLocStringEditor, SurveyLogicOpertor, SurveyNavigation, SurveyQuestionBooleanSwitch, SurveyQuestionColor, SurveyQuestionFileEditor, SurveyQuestionLinkValue, SurveyQuestionSpinEditor, SurveyResults, SurveyResultsByRow, SurveySimulator, SwitcherComponent, TabButtonComponent, TabDesignerComponent, TabJsonEditorAceComponent, TabJsonEditorErrorsComponent, TabJsonEditorTextareaComponent, TabLogicAddButtonComponent, TabLogicComponent, TabPreviewSurveyComponent, TabPreviewTestSurveyAgainComponent, TabThemeSurveyComponent, TabTranslationComponent, TabbedMenuComponent, TabbedMenuItemComponent, ToolboxList, TranslateFromAction, TranslationLineSkeleton, Version };
|
|
2966
2936
|
//# sourceMappingURL=survey-creator-react.mjs.map
|