survey-creator-react 1.9.125 → 1.9.127
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-react",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.127",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"survey-core": "1.9.
|
|
40
|
-
"survey-react-ui": "1.9.
|
|
41
|
-
"survey-creator-core": "1.9.
|
|
39
|
+
"survey-core": "1.9.127",
|
|
40
|
+
"survey-react-ui": "1.9.127",
|
|
41
|
+
"survey-creator-core": "1.9.127"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {}
|
|
44
44
|
}
|
package/survey-creator-react.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator React v1.9.
|
|
2
|
+
* SurveyJS Creator React v1.9.127
|
|
3
3
|
* (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* Github: https://github.com/surveyjs/survey-creator
|
|
5
5
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -233,15 +233,17 @@ var ImageItemValueAdornerComponent = /** @class */ (function (_super) {
|
|
|
233
233
|
else {
|
|
234
234
|
content = (react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(react__WEBPACK_IMPORTED_MODULE_2___default.a.Fragment, null,
|
|
235
235
|
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", { className: "svc-image-item-value__item" }, this.props.element),
|
|
236
|
-
this.model.isDraggable ?
|
|
236
|
+
this.model.isDraggable && this.model.canRenderControls ?
|
|
237
237
|
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("span", { className: "svc-context-button svc-image-item-value-controls__drag-area-indicator", onPointerDown: function (event) { return _this.model.onPointerDown(event); } },
|
|
238
238
|
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { size: 24, iconName: "icon-drag-area-indicator" }))
|
|
239
239
|
: null,
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(
|
|
243
|
-
|
|
244
|
-
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(
|
|
240
|
+
this.model.canRenderControls ?
|
|
241
|
+
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", { className: "svc-context-container svc-image-item-value-controls" },
|
|
242
|
+
this.model.allowRemove && !this.model.isUploading ? Object(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("span", { className: "svc-context-button", onClick: function () { return _this.model.chooseFile(_this.model); } },
|
|
243
|
+
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { size: 24, iconName: "icon-file" }))) : null,
|
|
244
|
+
this.model.allowRemove && !this.model.isUploading ? Object(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("span", { className: "svc-context-button svc-context-button--danger", onClick: function () { return _this.model.remove(_this.model); } },
|
|
245
|
+
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { size: 24, iconName: "icon-delete" }))) : null)
|
|
246
|
+
: null));
|
|
245
247
|
}
|
|
246
248
|
return (react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", { ref: this.rootRef, className: this.model.getRootCss(), key: this.props.element.key, "data-sv-drop-target-item-value": this.model.isDraggable ? this.model.item.value : undefined, onPointerDown: function (event) { return _this.model.onPointerDown(event); }, onDragStart: this.preventDragHandler },
|
|
247
249
|
react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", { className: "svc-image-item-value-wrapper__ghost", style: imageStyle }),
|
|
@@ -1637,9 +1639,9 @@ var SurveyCreatorComponent = /** @class */ (function (_super) {
|
|
|
1637
1639
|
var fullContainerClassName = "svc-flex-row svc-full-container" + (" svc-creator__side-bar--" + this.creator.sidebarLocation);
|
|
1638
1640
|
var licenseBanner = null;
|
|
1639
1641
|
if (!this.props.creator.haveCommercialLicense) {
|
|
1642
|
+
var htmlValue = { __html: this.props.creator.licenseText };
|
|
1640
1643
|
licenseBanner = (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-creator__banner" },
|
|
1641
|
-
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("span", { className: "svc-creator__non-commercial-text" }
|
|
1642
|
-
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("a", { href: "https://surveyjs.io/buy" }, this.props.creator.licenseText))));
|
|
1644
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("span", { className: "svc-creator__non-commercial-text", dangerouslySetInnerHTML: htmlValue })));
|
|
1643
1645
|
}
|
|
1644
1646
|
//AM: width unrecognized by react
|
|
1645
1647
|
return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: creatorClassName, ref: this.rootNode, style: this.style },
|
|
@@ -1748,6 +1750,60 @@ survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.reg
|
|
|
1748
1750
|
});
|
|
1749
1751
|
|
|
1750
1752
|
|
|
1753
|
+
/***/ }),
|
|
1754
|
+
|
|
1755
|
+
/***/ "./src/Switcher.tsx":
|
|
1756
|
+
/*!**************************!*\
|
|
1757
|
+
!*** ./src/Switcher.tsx ***!
|
|
1758
|
+
\**************************/
|
|
1759
|
+
/*! exports provided: SwitcherComponent, default */
|
|
1760
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1761
|
+
|
|
1762
|
+
"use strict";
|
|
1763
|
+
__webpack_require__.r(__webpack_exports__);
|
|
1764
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SwitcherComponent", function() { return SwitcherComponent; });
|
|
1765
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
|
|
1766
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
|
|
1767
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
|
|
1768
|
+
/* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
|
|
1769
|
+
/* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__);
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
var SwitcherComponent = /** @class */ (function (_super) {
|
|
1774
|
+
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"])(SwitcherComponent, _super);
|
|
1775
|
+
function SwitcherComponent() {
|
|
1776
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
1777
|
+
}
|
|
1778
|
+
Object.defineProperty(SwitcherComponent.prototype, "item", {
|
|
1779
|
+
get: function () {
|
|
1780
|
+
return this.props.item;
|
|
1781
|
+
},
|
|
1782
|
+
enumerable: false,
|
|
1783
|
+
configurable: true
|
|
1784
|
+
});
|
|
1785
|
+
SwitcherComponent.prototype.getStateElement = function () {
|
|
1786
|
+
return this.item;
|
|
1787
|
+
};
|
|
1788
|
+
SwitcherComponent.prototype.renderElement = function () {
|
|
1789
|
+
var _this = this;
|
|
1790
|
+
var tooltip = this.item.tooltip || this.item.title;
|
|
1791
|
+
var title = this.item.hasTitle ? react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("span", { className: "svc-switcher__title" }, this.item.title) : null;
|
|
1792
|
+
var button = Object(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("button", { className: this.item.getActionBarItemCss(), type: "button", disabled: this.item.disabled, onClick: function (args) { return _this.item.action(_this.item, _this.item.getIsTrusted(args)); }, title: tooltip, "aria-checked": this.item.ariaChecked, "aria-expanded": this.item.ariaExpanded, role: this.item.ariaRole },
|
|
1793
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: this.item.getSwitcherIconCss() },
|
|
1794
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-switcher__icon-thumb" })),
|
|
1795
|
+
title), this.item, { processEsc: false });
|
|
1796
|
+
return button;
|
|
1797
|
+
};
|
|
1798
|
+
return SwitcherComponent;
|
|
1799
|
+
}(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
|
|
1800
|
+
|
|
1801
|
+
/* harmony default export */ __webpack_exports__["default"] = (SwitcherComponent);
|
|
1802
|
+
survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["ReactElementFactory"].Instance.registerElement("svc-switcher", function (props) {
|
|
1803
|
+
return react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(SwitcherComponent, props);
|
|
1804
|
+
});
|
|
1805
|
+
|
|
1806
|
+
|
|
1751
1807
|
/***/ }),
|
|
1752
1808
|
|
|
1753
1809
|
/***/ "./src/TabbedMenu.tsx":
|
|
@@ -2167,19 +2223,21 @@ var PanelAdornerComponent = /** @class */ (function (_super) {
|
|
|
2167
2223
|
var _this = this;
|
|
2168
2224
|
return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(react__WEBPACK_IMPORTED_MODULE_1___default.a.Fragment, null,
|
|
2169
2225
|
!this.model.isEmptyElement && this.model.element.isPanel && this.model.showAddQuestionButton ? (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-panel__add-new-question-container" },
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2226
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-panel__question-type-selector-popup" },
|
|
2227
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["Popup"], { model: this.model.questionTypeSelectorModel.popupModel })),
|
|
2228
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-panel__add-new-question-wrapper" },
|
|
2229
|
+
Object(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-panel__add-new-question svc-action-button", onClick: function (e) {
|
|
2230
|
+
e.stopPropagation();
|
|
2231
|
+
_this.model.addNewQuestion();
|
|
2232
|
+
} },
|
|
2233
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { className: "svc-panel__add-new-question-icon", iconName: "icon-add_24x24", size: 24 }),
|
|
2234
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("span", { className: "svc-text svc-text--normal svc-text--bold" }, this.model.addNewQuestionText)), undefined),
|
|
2235
|
+
Object(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("button", { type: "button", onClick: function (e) {
|
|
2236
|
+
e.stopPropagation();
|
|
2237
|
+
_this.model.questionTypeSelectorModel.action();
|
|
2238
|
+
}, className: "svc-panel__question-type-selector", title: this.model.addNewQuestionText },
|
|
2239
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("span", { className: "svc-panel__question-type-selector-icon" },
|
|
2240
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { iconName: this.model.questionTypeSelectorModel.iconName, size: 24 }))))))) : null,
|
|
2183
2241
|
_super.prototype.renderFooter.call(this)));
|
|
2184
2242
|
};
|
|
2185
2243
|
return PanelAdornerComponent;
|
|
@@ -2399,19 +2457,20 @@ var QuestionDropdownAdornerComponent = /** @class */ (function (_super) {
|
|
|
2399
2457
|
var _this = this;
|
|
2400
2458
|
var textStyle = this.question.textStyle;
|
|
2401
2459
|
return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-question__dropdown-choices--wrapper" },
|
|
2402
|
-
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div",
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2460
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", null,
|
|
2461
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-question__dropdown-choices" }, (this.dropdownModel.getRenderedItems() || []).map(function (item, index) { return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: _this.dropdownModel.getChoiceCss(), key: "editable_choice_".concat(index) }, survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["ReactSurveyElementsWrapper"].wrapItemValue(_this.question.survey, survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.createElement(_this.dropdownModel.itemComponent, {
|
|
2462
|
+
key: item.value,
|
|
2463
|
+
question: _this.question,
|
|
2464
|
+
cssClasses: _this.question.cssClasses,
|
|
2465
|
+
isDisplayMode: true,
|
|
2466
|
+
item: item,
|
|
2467
|
+
textStyle: textStyle,
|
|
2468
|
+
index: index,
|
|
2469
|
+
isChecked: _this.question.value === item.value
|
|
2470
|
+
}), _this.question, item))); })),
|
|
2471
|
+
this.dropdownModel.needToCollapse ?
|
|
2472
|
+
react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(_ActionButton__WEBPACK_IMPORTED_MODULE_5__["ActionButton"], { click: this.dropdownModel.switchCollapse, text: this.dropdownModel.getButtonText(), allowBubble: true }) :
|
|
2473
|
+
null)));
|
|
2415
2474
|
};
|
|
2416
2475
|
return QuestionDropdownAdornerComponent;
|
|
2417
2476
|
}(_Question__WEBPACK_IMPORTED_MODULE_4__["QuestionAdornerComponent"]));
|
|
@@ -3148,7 +3207,7 @@ var __spreadArrays = function () {
|
|
|
3148
3207
|
/*!******************************!*\
|
|
3149
3208
|
!*** ./src/entries/index.ts ***!
|
|
3150
3209
|
\******************************/
|
|
3151
|
-
/*! exports provided: Version, SurveyCreatorComponent, SurveyCreator, RowWrapper, QuestionAdornerComponent, QuestionWrapperHeader, QuestionWrapperFooter, QuestionBanner, QuestionDropdownAdornerComponent, QuestionImageAdornerComponent, QuestionRatingAdornerComponent, QuestionWidgetAdornerComponent, CellQuestionAdornerComponent, CellQuestionDropdownAdornerComponent, CreatorSurveyPageComponent, PanelAdornerComponent, LogoImageComponent, SurveyQuestionLinkValue, SurveyElementEmbeddedSurvey, QuestionEditorContentComponent, ItemValueAdornerComponent, ImageItemValueAdornerComponent, MatrixCellAdornerComponent, SurveyResults, SurveyResultsByRow, SurveyCreatorToolboxTool, SurveyCreatorToolboxItem, SurveyCreatorToolboxCategory, Toolbox, AdaptiveToolbox, TabbedMenuComponent, TabbedMenuItemComponent, SurveyNavigation, SidebarComponent, TranslationLineSkeleton, ActionButton, SurveyLocStringEditor, SurveyLogicOpertor, TabDesignerComponent, TabJsonEditorAceComponent, TabJsonEditorErrorsComponent, TabJsonEditorTextareaComponent, TabLogicAddButtonComponent, TabLogicComponent, TabPreviewTestSurveyAgainComponent, TabPreviewSurveyComponent, TabThemeSurveyComponent, TabTranslationComponent, SurveySimulator, ReactMouseEvent, ReactDragEvent, PropertyGridComponent, SearchComponent, SurveyQuestionSpinEditor, SurveyQuestionColor, SurveyQuestionFileEditor, SurveyQuestionTextWithReset, editorLocalization, localization, settings, svgBundle, SurveyLogic, SurveyLogicUI, SurveyQuestionEditorDefinition, ToolboxToolViewModel, PropertyGridEditorCollection, StylesManager */
|
|
3210
|
+
/*! exports provided: Version, SurveyCreatorComponent, SurveyCreator, RowWrapper, QuestionAdornerComponent, QuestionWrapperHeader, QuestionWrapperFooter, QuestionBanner, QuestionDropdownAdornerComponent, QuestionImageAdornerComponent, QuestionRatingAdornerComponent, QuestionWidgetAdornerComponent, CellQuestionAdornerComponent, CellQuestionDropdownAdornerComponent, CreatorSurveyPageComponent, PanelAdornerComponent, LogoImageComponent, SurveyQuestionLinkValue, SurveyElementEmbeddedSurvey, QuestionEditorContentComponent, ItemValueAdornerComponent, ImageItemValueAdornerComponent, MatrixCellAdornerComponent, SurveyResults, SurveyResultsByRow, SurveyCreatorToolboxTool, SurveyCreatorToolboxItem, SurveyCreatorToolboxCategory, Toolbox, AdaptiveToolbox, TabbedMenuComponent, TabbedMenuItemComponent, SurveyNavigation, SidebarComponent, TranslationLineSkeleton, ActionButton, SurveyLocStringEditor, SurveyLogicOpertor, TabDesignerComponent, TabJsonEditorAceComponent, TabJsonEditorErrorsComponent, TabJsonEditorTextareaComponent, TabLogicAddButtonComponent, TabLogicComponent, TabPreviewTestSurveyAgainComponent, TabPreviewSurveyComponent, TabThemeSurveyComponent, TabTranslationComponent, SurveySimulator, ReactMouseEvent, ReactDragEvent, PropertyGridComponent, SearchComponent, SwitcherComponent, SurveyQuestionSpinEditor, SurveyQuestionColor, SurveyQuestionFileEditor, SurveyQuestionTextWithReset, editorLocalization, localization, settings, svgBundle, SurveyLogic, SurveyLogicUI, SurveyQuestionEditorDefinition, ToolboxToolViewModel, PropertyGridEditorCollection, StylesManager */
|
|
3152
3211
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3153
3212
|
|
|
3154
3213
|
"use strict";
|
|
@@ -3303,46 +3362,49 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3303
3362
|
/* harmony import */ var _Search__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../Search */ "./src/Search.tsx");
|
|
3304
3363
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SearchComponent", function() { return _Search__WEBPACK_IMPORTED_MODULE_44__["SearchComponent"]; });
|
|
3305
3364
|
|
|
3306
|
-
/* harmony import */ var
|
|
3307
|
-
/*
|
|
3308
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSpinEditor", function() { return _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_46__["SurveyQuestionSpinEditor"]; });
|
|
3365
|
+
/* harmony import */ var _Switcher__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../Switcher */ "./src/Switcher.tsx");
|
|
3366
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SwitcherComponent", function() { return _Switcher__WEBPACK_IMPORTED_MODULE_45__["SwitcherComponent"]; });
|
|
3309
3367
|
|
|
3310
|
-
/* harmony import */ var
|
|
3311
|
-
/* empty/unused harmony star reexport *//* harmony import */ var
|
|
3312
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3368
|
+
/* harmony import */ var _tabs_JsonErrorItem__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../tabs/JsonErrorItem */ "./src/tabs/JsonErrorItem.tsx");
|
|
3369
|
+
/* empty/unused harmony star reexport *//* harmony import */ var _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../custom-questions/SpinEditor */ "./src/custom-questions/SpinEditor.tsx");
|
|
3370
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSpinEditor", function() { return _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_47__["SurveyQuestionSpinEditor"]; });
|
|
3313
3371
|
|
|
3314
|
-
/* harmony import */ var
|
|
3315
|
-
/* harmony reexport
|
|
3372
|
+
/* harmony import */ var _custom_questions_ColorItem__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../custom-questions/ColorItem */ "./src/custom-questions/ColorItem.tsx");
|
|
3373
|
+
/* empty/unused harmony star reexport *//* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
|
|
3374
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionColor", function() { return _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_49__["SurveyQuestionColor"]; });
|
|
3316
3375
|
|
|
3317
|
-
/* harmony import */ var
|
|
3318
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3376
|
+
/* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
|
|
3377
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFileEditor", function() { return _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_50__["SurveyQuestionFileEditor"]; });
|
|
3319
3378
|
|
|
3320
|
-
/* harmony import */ var
|
|
3321
|
-
/* harmony
|
|
3322
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "editorLocalization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["editorLocalization"]; });
|
|
3379
|
+
/* harmony import */ var _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../custom-questions/TextWithResetQuestion */ "./src/custom-questions/TextWithResetQuestion.tsx");
|
|
3380
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTextWithReset", function() { return _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_51__["SurveyQuestionTextWithReset"]; });
|
|
3323
3381
|
|
|
3324
|
-
/* harmony
|
|
3382
|
+
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
|
|
3383
|
+
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_52___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_52__);
|
|
3384
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "editorLocalization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["editorLocalization"]; });
|
|
3325
3385
|
|
|
3326
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3386
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "localization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["localization"]; });
|
|
3327
3387
|
|
|
3328
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3388
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["settings"]; });
|
|
3329
3389
|
|
|
3330
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3390
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgBundle", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["svgBundle"]; });
|
|
3331
3391
|
|
|
3332
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3392
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogic", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["SurveyLogic"]; });
|
|
3333
3393
|
|
|
3334
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3394
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogicUI", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["SurveyLogicUI"]; });
|
|
3335
3395
|
|
|
3336
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3396
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["SurveyQuestionEditorDefinition"]; });
|
|
3337
3397
|
|
|
3338
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3398
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ToolboxToolViewModel", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["ToolboxToolViewModel"]; });
|
|
3339
3399
|
|
|
3340
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
3400
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["PropertyGridEditorCollection"]; });
|
|
3341
3401
|
|
|
3342
|
-
/* harmony
|
|
3343
|
-
|
|
3402
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StylesManager", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_52__["StylesManager"]; });
|
|
3403
|
+
|
|
3404
|
+
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
3405
|
+
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_53___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_53__);
|
|
3344
3406
|
var Version;
|
|
3345
|
-
Version = "".concat("1.9.
|
|
3407
|
+
Version = "".concat("1.9.127");
|
|
3346
3408
|
// import "@survey/creator/survey-creator-core.css";
|
|
3347
3409
|
|
|
3348
3410
|
|
|
@@ -3388,6 +3450,7 @@ Version = "".concat("1.9.125");
|
|
|
3388
3450
|
|
|
3389
3451
|
|
|
3390
3452
|
|
|
3453
|
+
|
|
3391
3454
|
|
|
3392
3455
|
|
|
3393
3456
|
//custom questions
|
|
@@ -3404,7 +3467,7 @@ Version = "".concat("1.9.125");
|
|
|
3404
3467
|
|
|
3405
3468
|
|
|
3406
3469
|
|
|
3407
|
-
Object(
|
|
3470
|
+
Object(survey_core__WEBPACK_IMPORTED_MODULE_53__["checkLibraryVersion"])("".concat("1.9.127"), "survey-creator-react");
|
|
3408
3471
|
|
|
3409
3472
|
|
|
3410
3473
|
/***/ }),
|