survey-creator-react 2.0.5 → 2.0.7
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 +25 -27
- package/fesm/survey-creator-react.mjs.map +1 -1
- package/package.json +4 -4
- package/survey-creator-react.js +343 -257
- package/survey-creator-react.js.map +1 -1
- package/survey-creator-react.min.js +1 -1
- package/survey-creator-react.min.js.LICENSE.txt +1 -1
- package/typings/ImageItemValueWrapper.d.ts +1 -0
- package/typings/entries/index-wc.d.ts +70 -0
- package/typings/entries/index.d.ts +2 -70
package/survey-creator-react.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator React v2.0.
|
|
2
|
+
* SurveyJS Creator React v2.0.7
|
|
3
3
|
* (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* Github: https://github.com/surveyjs/survey-creator
|
|
5
5
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -220,6 +220,16 @@ var ImageItemValueAdornerComponent = /** @class */ (function (_super) {
|
|
|
220
220
|
return react__WEBPACK_IMPORTED_MODULE_2__.createElement("div", { className: "svc-image-item-value__loading" },
|
|
221
221
|
react__WEBPACK_IMPORTED_MODULE_2__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.LoadingIndicatorComponent, null));
|
|
222
222
|
};
|
|
223
|
+
ImageItemValueAdornerComponent.prototype.renderNewItemControls = function () {
|
|
224
|
+
var _this = this;
|
|
225
|
+
var addButton = (0,survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.attachKey2click)(react__WEBPACK_IMPORTED_MODULE_2__.createElement("span", { className: this.model.addButtonCss, onClick: function () { return _this.model.chooseNewFile(_this.model); } }, this.model.showChooseButtonAsIcon ?
|
|
226
|
+
react__WEBPACK_IMPORTED_MODULE_2__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.SvgIcon, { size: "auto", iconName: "icon-add-lg", title: this.model.addFileTitle }) :
|
|
227
|
+
react__WEBPACK_IMPORTED_MODULE_2__.createElement("span", null, this.model.chooseImageText)));
|
|
228
|
+
var placeholder = this.model.showPlaceholder ? react__WEBPACK_IMPORTED_MODULE_2__.createElement("span", { className: "svc-image-item-value__placeholder" }, this.model.placeholderText) : null;
|
|
229
|
+
return react__WEBPACK_IMPORTED_MODULE_2__.createElement(react__WEBPACK_IMPORTED_MODULE_2__.Fragment, null,
|
|
230
|
+
placeholder,
|
|
231
|
+
addButton);
|
|
232
|
+
};
|
|
223
233
|
ImageItemValueAdornerComponent.prototype.render = function () {
|
|
224
234
|
var _this = this;
|
|
225
235
|
this.model.item = this.props.item;
|
|
@@ -229,12 +239,13 @@ var ImageItemValueAdornerComponent = /** @class */ (function (_super) {
|
|
|
229
239
|
var content = null;
|
|
230
240
|
if (isNew || this.model.isUploading) {
|
|
231
241
|
content = (react__WEBPACK_IMPORTED_MODULE_2__.createElement(react__WEBPACK_IMPORTED_MODULE_2__.Fragment, null,
|
|
232
|
-
react__WEBPACK_IMPORTED_MODULE_2__.createElement("div", { className: "svc-image-item-value__item"
|
|
242
|
+
react__WEBPACK_IMPORTED_MODULE_2__.createElement("div", { className: "svc-image-item-value__item" },
|
|
233
243
|
react__WEBPACK_IMPORTED_MODULE_2__.createElement("div", { className: "sd-imagepicker__item sd-imagepicker__item--inline" },
|
|
234
244
|
react__WEBPACK_IMPORTED_MODULE_2__.createElement("label", { className: "sd-imagepicker__label" },
|
|
235
245
|
react__WEBPACK_IMPORTED_MODULE_2__.createElement("div", { style: imageStyle, className: "sd-imagepicker__image" }, this.model.isUploading ? this.renderLoadingIndicator() : null)))),
|
|
236
|
-
|
|
237
|
-
react__WEBPACK_IMPORTED_MODULE_2__.createElement(
|
|
246
|
+
this.model.allowAdd && !this.model.isUploading ?
|
|
247
|
+
react__WEBPACK_IMPORTED_MODULE_2__.createElement("div", { className: "svc-image-item-value-controls" }, this.renderNewItemControls())
|
|
248
|
+
: null));
|
|
238
249
|
}
|
|
239
250
|
else {
|
|
240
251
|
content = (react__WEBPACK_IMPORTED_MODULE_2__.createElement(react__WEBPACK_IMPORTED_MODULE_2__.Fragment, null,
|
|
@@ -251,7 +262,7 @@ var ImageItemValueAdornerComponent = /** @class */ (function (_super) {
|
|
|
251
262
|
react__WEBPACK_IMPORTED_MODULE_2__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.SvgIcon, { role: "button", size: "auto", iconName: "icon-delete", title: this.model.removeFileTitle }))) : null)
|
|
252
263
|
: null));
|
|
253
264
|
}
|
|
254
|
-
return (react__WEBPACK_IMPORTED_MODULE_2__.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 },
|
|
265
|
+
return (react__WEBPACK_IMPORTED_MODULE_2__.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, onDrop: this.model.onDrop, onDragEnter: this.model.onDragEnter, onDragOver: this.model.onDragOver, onDragLeave: this.model.onDragLeave },
|
|
255
266
|
react__WEBPACK_IMPORTED_MODULE_2__.createElement("div", { className: "svc-image-item-value-wrapper__ghost", style: imageStyle }),
|
|
256
267
|
react__WEBPACK_IMPORTED_MODULE_2__.createElement("div", { className: "svc-image-item-value-wrapper__content" },
|
|
257
268
|
react__WEBPACK_IMPORTED_MODULE_2__.createElement("input", { type: "file", "aria-hidden": "true", tabIndex: -1, accept: this.model.acceptedTypes, className: "svc-choose-file-input", style: {
|
|
@@ -1363,14 +1374,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1363
1374
|
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
|
|
1364
1375
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
|
|
1365
1376
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
|
|
1366
|
-
/* harmony import */ var
|
|
1367
|
-
/* harmony import */ var
|
|
1368
|
-
/* harmony import */ var
|
|
1369
|
-
/* harmony import */ var
|
|
1370
|
-
/* harmony import */ var
|
|
1371
|
-
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_4__);
|
|
1372
|
-
/* harmony import */ var _TabbedMenu__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./TabbedMenu */ "./src/TabbedMenu.tsx");
|
|
1373
|
-
|
|
1377
|
+
/* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
|
|
1378
|
+
/* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__);
|
|
1379
|
+
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
|
|
1380
|
+
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_3__);
|
|
1381
|
+
/* harmony import */ var _TabbedMenu__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./TabbedMenu */ "./src/TabbedMenu.tsx");
|
|
1374
1382
|
|
|
1375
1383
|
|
|
1376
1384
|
|
|
@@ -1427,7 +1435,7 @@ var SurveyCreatorComponent = /** @class */ (function (_super) {
|
|
|
1427
1435
|
var contentWrapperClassName = "svc-creator__content-wrapper svc-flex-row" + (this.props.creator.isMobileView ? " svc-creator__content-wrapper--footer-toolbar" : "");
|
|
1428
1436
|
var fullContainerClassName = "svc-flex-row svc-full-container" + (" svc-creator__side-bar--" + this.creator.sidebarLocation);
|
|
1429
1437
|
var creatorStyles = {};
|
|
1430
|
-
(0,
|
|
1438
|
+
(0,survey_creator_core__WEBPACK_IMPORTED_MODULE_3__.assign)(creatorStyles, this.style, this.props.creator.themeVariables);
|
|
1431
1439
|
var licenseBanner = null;
|
|
1432
1440
|
if (!this.props.creator.haveCommercialLicense) {
|
|
1433
1441
|
var htmlValue = { __html: this.props.creator.licenseText };
|
|
@@ -1436,28 +1444,28 @@ var SurveyCreatorComponent = /** @class */ (function (_super) {
|
|
|
1436
1444
|
}
|
|
1437
1445
|
//AM: width unrecognized by react
|
|
1438
1446
|
return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: this.creator.getRootCss(), ref: this.rootNode, style: creatorStyles },
|
|
1439
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(
|
|
1440
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(
|
|
1447
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SvgBundleComponent, null),
|
|
1448
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.PopupModal, null),
|
|
1441
1449
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: areaClassName },
|
|
1442
1450
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: fullContainerClassName },
|
|
1443
1451
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-flex-column svc-flex-row__element svc-flex-row__element--growing" },
|
|
1444
1452
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-top-bar" },
|
|
1445
1453
|
(creator.showTabs ?
|
|
1446
1454
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-tabbed-menu-wrapper" },
|
|
1447
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(
|
|
1455
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement(_TabbedMenu__WEBPACK_IMPORTED_MODULE_4__.TabbedMenuComponent, { model: creator.tabbedMenu })) : null),
|
|
1448
1456
|
(creator.showToolbar ?
|
|
1449
1457
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbar-wrapper" },
|
|
1450
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(
|
|
1458
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SurveyActionBar, { model: creator.toolbar }))
|
|
1451
1459
|
: null)),
|
|
1452
1460
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: contentWrapperClassName },
|
|
1453
1461
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-creator__content-holder svc-flex-column" }, this.renderActiveTab())),
|
|
1454
1462
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-footer-bar" }, (creator.isMobileView ?
|
|
1455
1463
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbar-wrapper" },
|
|
1456
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(
|
|
1464
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SurveyActionBar, { model: creator.footerToolbar }))
|
|
1457
1465
|
: null))),
|
|
1458
1466
|
this.renderSidebar()),
|
|
1459
1467
|
licenseBanner,
|
|
1460
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(
|
|
1468
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.NotifierComponent, { notifier: creator.notifier }))));
|
|
1461
1469
|
};
|
|
1462
1470
|
SurveyCreatorComponent.prototype.renderActiveTab = function () {
|
|
1463
1471
|
var creator = this.props.creator;
|
|
@@ -1475,7 +1483,7 @@ var SurveyCreatorComponent = /** @class */ (function (_super) {
|
|
|
1475
1483
|
var creator = this.props.creator;
|
|
1476
1484
|
var component = !!tab.renderTab
|
|
1477
1485
|
? tab.renderTab()
|
|
1478
|
-
:
|
|
1486
|
+
: survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactElementFactory.Instance.createElement(tab.componentContent, {
|
|
1479
1487
|
creator: creator,
|
|
1480
1488
|
survey: creator.survey,
|
|
1481
1489
|
data: tab.data.model
|
|
@@ -1485,14 +1493,14 @@ var SurveyCreatorComponent = /** @class */ (function (_super) {
|
|
|
1485
1493
|
};
|
|
1486
1494
|
SurveyCreatorComponent.prototype.renderSidebar = function () {
|
|
1487
1495
|
if (!!this.creator.sidebar) {
|
|
1488
|
-
return
|
|
1496
|
+
return survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactElementFactory.Instance.createElement("svc-side-bar", { model: this.creator.sidebar });
|
|
1489
1497
|
}
|
|
1490
1498
|
else {
|
|
1491
1499
|
return null;
|
|
1492
1500
|
}
|
|
1493
1501
|
};
|
|
1494
1502
|
return SurveyCreatorComponent;
|
|
1495
|
-
}(
|
|
1503
|
+
}(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SurveyElementBase));
|
|
1496
1504
|
|
|
1497
1505
|
var SurveyCreator = /** @class */ (function (_super) {
|
|
1498
1506
|
(0,tslib__WEBPACK_IMPORTED_MODULE_0__.__extends)(SurveyCreator, _super);
|
|
@@ -1501,19 +1509,12 @@ var SurveyCreator = /** @class */ (function (_super) {
|
|
|
1501
1509
|
return _super.call(this, options, options2) || this;
|
|
1502
1510
|
}
|
|
1503
1511
|
SurveyCreator.prototype.render = function (target) {
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
node = document.getElementById(target);
|
|
1507
|
-
}
|
|
1508
|
-
/* eslint-disable react/no-deprecated */
|
|
1509
|
-
react_dom__WEBPACK_IMPORTED_MODULE_2__.unmountComponentAtNode(node);
|
|
1510
|
-
react_dom__WEBPACK_IMPORTED_MODULE_2__.render(react__WEBPACK_IMPORTED_MODULE_1__.createElement(react__WEBPACK_IMPORTED_MODULE_1__.StrictMode, null,
|
|
1511
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(SurveyCreatorComponent, { creator: this })), node);
|
|
1512
|
-
/* eslint-enable react/no-deprecated */
|
|
1512
|
+
// eslint-disable-next-line no-console
|
|
1513
|
+
console.error("The render method is deprecated. Use SurveyCreatorComponent instead.");
|
|
1513
1514
|
};
|
|
1514
1515
|
//ISurveyCreator
|
|
1515
1516
|
SurveyCreator.prototype.createQuestionElement = function (question) {
|
|
1516
|
-
return
|
|
1517
|
+
return survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactQuestionFactory.Instance.createQuestion(question.isDefaultRendering()
|
|
1517
1518
|
? question.getTemplate()
|
|
1518
1519
|
: question.getComponentName(), {
|
|
1519
1520
|
question: question,
|
|
@@ -1525,7 +1526,7 @@ var SurveyCreator = /** @class */ (function (_super) {
|
|
|
1525
1526
|
return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { key: key },
|
|
1526
1527
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("span", { className: cssClasses.error.icon, "aria-hidden": "true" }),
|
|
1527
1528
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("span", { className: cssClasses.error.item },
|
|
1528
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(
|
|
1529
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SurveyLocStringViewer, { locStr: error.locText }))));
|
|
1529
1530
|
};
|
|
1530
1531
|
SurveyCreator.prototype.questionTitleLocation = function () {
|
|
1531
1532
|
return this.survey.questionTitleLocation;
|
|
@@ -1534,10 +1535,10 @@ var SurveyCreator = /** @class */ (function (_super) {
|
|
|
1534
1535
|
return this.survey.questionErrorLocation;
|
|
1535
1536
|
};
|
|
1536
1537
|
return SurveyCreator;
|
|
1537
|
-
}(
|
|
1538
|
+
}(survey_creator_core__WEBPACK_IMPORTED_MODULE_3__.SurveyCreatorModel));
|
|
1538
1539
|
|
|
1539
|
-
|
|
1540
|
-
return react__WEBPACK_IMPORTED_MODULE_1__.createElement(
|
|
1540
|
+
survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactElementFactory.Instance.registerElement("survey-widget", function (props) {
|
|
1541
|
+
return react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.Survey, props);
|
|
1541
1542
|
});
|
|
1542
1543
|
|
|
1543
1544
|
|
|
@@ -2963,7 +2964,7 @@ var SurveyQuestionFileEditor = /** @class */ (function (_super) {
|
|
|
2963
2964
|
SurveyQuestionFileEditor.prototype.renderInput = function () {
|
|
2964
2965
|
var _this = this;
|
|
2965
2966
|
return (react__WEBPACK_IMPORTED_MODULE_1__.createElement(react__WEBPACK_IMPORTED_MODULE_1__.Fragment, null,
|
|
2966
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement("input", { disabled: this.
|
|
2967
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement("input", { disabled: this.question.isTextInputReadOnly, className: this.questionFile.cssClasses.control, placeholder: this.questionFile.renderedPlaceholder, ref: function (input) { return (_this.setControl(input)); }, autoComplete: "off", type: "text", onBlur: function (event) { return _this.questionFile.onInputBlur(event.nativeEvent); }, onChange: function (event) { return _this.questionFile.onInputChange(event.nativeEvent); } })));
|
|
2967
2968
|
};
|
|
2968
2969
|
SurveyQuestionFileEditor.prototype.renderFileInput = function () {
|
|
2969
2970
|
var _this = this;
|
|
@@ -3183,6 +3184,232 @@ var __spreadArrays = function () {
|
|
|
3183
3184
|
};
|
|
3184
3185
|
|
|
3185
3186
|
|
|
3187
|
+
/***/ }),
|
|
3188
|
+
|
|
3189
|
+
/***/ "./src/entries/index-wc.ts":
|
|
3190
|
+
/*!*********************************!*\
|
|
3191
|
+
!*** ./src/entries/index-wc.ts ***!
|
|
3192
|
+
\*********************************/
|
|
3193
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3194
|
+
|
|
3195
|
+
__webpack_require__.r(__webpack_exports__);
|
|
3196
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3197
|
+
/* harmony export */ ActionButton: () => (/* reexport safe */ _ActionButton__WEBPACK_IMPORTED_MODULE_37__.ActionButton),
|
|
3198
|
+
/* harmony export */ AdaptiveToolbox: () => (/* reexport safe */ _toolbox_AdaptiveToolbox__WEBPACK_IMPORTED_MODULE_26__.AdaptiveToolbox),
|
|
3199
|
+
/* harmony export */ CellQuestionAdornerComponent: () => (/* reexport safe */ _adorners_CellQuestion__WEBPACK_IMPORTED_MODULE_10__.CellQuestionAdornerComponent),
|
|
3200
|
+
/* harmony export */ CellQuestionDropdownAdornerComponent: () => (/* reexport safe */ _adorners_CellQuestionDropdown__WEBPACK_IMPORTED_MODULE_11__.CellQuestionDropdownAdornerComponent),
|
|
3201
|
+
/* harmony export */ CreatorSurveyPageComponent: () => (/* reexport safe */ _adorners_Page__WEBPACK_IMPORTED_MODULE_12__.CreatorSurveyPageComponent),
|
|
3202
|
+
/* harmony export */ ImageItemValueAdornerComponent: () => (/* reexport safe */ _ImageItemValueWrapper__WEBPACK_IMPORTED_MODULE_19__.ImageItemValueAdornerComponent),
|
|
3203
|
+
/* harmony export */ ItemValueAdornerComponent: () => (/* reexport safe */ _ItemValueWrapper__WEBPACK_IMPORTED_MODULE_18__.ItemValueAdornerComponent),
|
|
3204
|
+
/* harmony export */ LogoImageComponent: () => (/* reexport safe */ _LogoImage__WEBPACK_IMPORTED_MODULE_14__.LogoImageComponent),
|
|
3205
|
+
/* harmony export */ MatrixCellAdornerComponent: () => (/* reexport safe */ _MatrixCellWrapper__WEBPACK_IMPORTED_MODULE_20__.MatrixCellAdornerComponent),
|
|
3206
|
+
/* harmony export */ PanelAdornerComponent: () => (/* reexport safe */ _adorners_Panel__WEBPACK_IMPORTED_MODULE_13__.PanelAdornerComponent),
|
|
3207
|
+
/* harmony export */ PropertyGridComponent: () => (/* reexport safe */ _side_bar_PropertyGrid__WEBPACK_IMPORTED_MODULE_52__.PropertyGridComponent),
|
|
3208
|
+
/* harmony export */ PropertyGridEditorCollection: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.PropertyGridEditorCollection),
|
|
3209
|
+
/* harmony export */ PropertyGridPlaceholderComponent: () => (/* reexport safe */ _side_bar_PropertyGridPlaceholder__WEBPACK_IMPORTED_MODULE_46__.PropertyGridPlaceholderComponent),
|
|
3210
|
+
/* harmony export */ QuestionAdornerComponent: () => (/* reexport safe */ _adorners_Question__WEBPACK_IMPORTED_MODULE_2__.QuestionAdornerComponent),
|
|
3211
|
+
/* harmony export */ QuestionBanner: () => (/* reexport safe */ _adorners_QuestionBanner__WEBPACK_IMPORTED_MODULE_5__.QuestionBanner),
|
|
3212
|
+
/* harmony export */ QuestionDropdownAdornerComponent: () => (/* reexport safe */ _adorners_QuestionDropdown__WEBPACK_IMPORTED_MODULE_6__.QuestionDropdownAdornerComponent),
|
|
3213
|
+
/* harmony export */ QuestionEditorContentComponent: () => (/* reexport safe */ _QuestionEditorContent__WEBPACK_IMPORTED_MODULE_17__.QuestionEditorContentComponent),
|
|
3214
|
+
/* harmony export */ QuestionErrorComponent: () => (/* reexport safe */ _QuestionError__WEBPACK_IMPORTED_MODULE_39__.QuestionErrorComponent),
|
|
3215
|
+
/* harmony export */ QuestionImageAdornerComponent: () => (/* reexport safe */ _adorners_QuestionImage__WEBPACK_IMPORTED_MODULE_7__.QuestionImageAdornerComponent),
|
|
3216
|
+
/* harmony export */ QuestionRatingAdornerComponent: () => (/* reexport safe */ _adorners_QuestionRating__WEBPACK_IMPORTED_MODULE_8__.QuestionRatingAdornerComponent),
|
|
3217
|
+
/* harmony export */ QuestionWidgetAdornerComponent: () => (/* reexport safe */ _adorners_QuestionWidget__WEBPACK_IMPORTED_MODULE_9__.QuestionWidgetAdornerComponent),
|
|
3218
|
+
/* harmony export */ QuestionWrapperFooter: () => (/* reexport safe */ _adorners_QuestionFooter__WEBPACK_IMPORTED_MODULE_4__.QuestionWrapperFooter),
|
|
3219
|
+
/* harmony export */ QuestionWrapperHeader: () => (/* reexport safe */ _adorners_QuestionHeader__WEBPACK_IMPORTED_MODULE_3__.QuestionWrapperHeader),
|
|
3220
|
+
/* harmony export */ ReactDragEvent: () => (/* reexport safe */ _events__WEBPACK_IMPORTED_MODULE_50__.ReactDragEvent),
|
|
3221
|
+
/* harmony export */ ReactMouseEvent: () => (/* reexport safe */ _events__WEBPACK_IMPORTED_MODULE_50__.ReactMouseEvent),
|
|
3222
|
+
/* harmony export */ RowWrapper: () => (/* reexport safe */ _adorners_Row__WEBPACK_IMPORTED_MODULE_1__.RowWrapper),
|
|
3223
|
+
/* harmony export */ SearchComponent: () => (/* reexport safe */ _components_Search__WEBPACK_IMPORTED_MODULE_53__.SearchComponent),
|
|
3224
|
+
/* harmony export */ SideBarDefaultHeader: () => (/* reexport safe */ _side_bar_SideBarDefaultHeader__WEBPACK_IMPORTED_MODULE_31__.SideBarDefaultHeader),
|
|
3225
|
+
/* harmony export */ SidebarComponent: () => (/* reexport safe */ _side_bar_SideBar__WEBPACK_IMPORTED_MODULE_34__.SidebarComponent),
|
|
3226
|
+
/* harmony export */ SurveyCreatorComponent: () => (/* reexport safe */ _SurveyCreator__WEBPACK_IMPORTED_MODULE_0__.SurveyCreatorComponent),
|
|
3227
|
+
/* harmony export */ SurveyCreatorToolboxCategory: () => (/* reexport safe */ _toolbox_ToolboxCategory__WEBPACK_IMPORTED_MODULE_24__.SurveyCreatorToolboxCategory),
|
|
3228
|
+
/* harmony export */ SurveyCreatorToolboxItem: () => (/* reexport safe */ _toolbox_ToolboxItem__WEBPACK_IMPORTED_MODULE_22__.SurveyCreatorToolboxItem),
|
|
3229
|
+
/* harmony export */ SurveyCreatorToolboxItemGroup: () => (/* reexport safe */ _toolbox_ToolboxItemGroup__WEBPACK_IMPORTED_MODULE_23__.SurveyCreatorToolboxItemGroup),
|
|
3230
|
+
/* harmony export */ SurveyCreatorToolboxTool: () => (/* reexport safe */ _toolbox_ToolboxItem__WEBPACK_IMPORTED_MODULE_22__.SurveyCreatorToolboxTool),
|
|
3231
|
+
/* harmony export */ SurveyElementEmbeddedSurvey: () => (/* reexport safe */ _QuestionEmbeddedSurvey__WEBPACK_IMPORTED_MODULE_16__.SurveyElementEmbeddedSurvey),
|
|
3232
|
+
/* harmony export */ SurveyLocStringEditor: () => (/* reexport safe */ _StringEditor__WEBPACK_IMPORTED_MODULE_38__.SurveyLocStringEditor),
|
|
3233
|
+
/* harmony export */ SurveyLogic: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.SurveyLogic),
|
|
3234
|
+
/* harmony export */ SurveyLogicOpertor: () => (/* reexport safe */ _tabs_logic_operator__WEBPACK_IMPORTED_MODULE_40__.SurveyLogicOpertor),
|
|
3235
|
+
/* harmony export */ SurveyLogicUI: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.SurveyLogicUI),
|
|
3236
|
+
/* harmony export */ SurveyNavigation: () => (/* reexport safe */ _Navigation__WEBPACK_IMPORTED_MODULE_28__.SurveyNavigation),
|
|
3237
|
+
/* harmony export */ SurveyQuestionBooleanSwitch: () => (/* reexport safe */ _custom_questions_BooleanSwitch__WEBPACK_IMPORTED_MODULE_61__.SurveyQuestionBooleanSwitch),
|
|
3238
|
+
/* harmony export */ SurveyQuestionColor: () => (/* reexport safe */ _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_58__.SurveyQuestionColor),
|
|
3239
|
+
/* harmony export */ SurveyQuestionEditorDefinition: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.SurveyQuestionEditorDefinition),
|
|
3240
|
+
/* harmony export */ SurveyQuestionFileEditor: () => (/* reexport safe */ _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_59__.SurveyQuestionFileEditor),
|
|
3241
|
+
/* harmony export */ SurveyQuestionLinkValue: () => (/* reexport safe */ _QuestionLinkValue__WEBPACK_IMPORTED_MODULE_15__.SurveyQuestionLinkValue),
|
|
3242
|
+
/* harmony export */ SurveyQuestionSpinEditor: () => (/* reexport safe */ _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_56__.SurveyQuestionSpinEditor),
|
|
3243
|
+
/* harmony export */ SurveyQuestionTextWithReset: () => (/* reexport safe */ _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_60__.SurveyQuestionTextWithReset),
|
|
3244
|
+
/* harmony export */ SurveyResults: () => (/* reexport safe */ _Results__WEBPACK_IMPORTED_MODULE_21__.SurveyResults),
|
|
3245
|
+
/* harmony export */ SurveyResultsByRow: () => (/* reexport safe */ _Results__WEBPACK_IMPORTED_MODULE_21__.SurveyResultsByRow),
|
|
3246
|
+
/* harmony export */ SurveySimulator: () => (/* reexport safe */ _tabs_SurveySimulator__WEBPACK_IMPORTED_MODULE_49__.SurveySimulator),
|
|
3247
|
+
/* harmony export */ SwitcherComponent: () => (/* reexport safe */ _Switcher__WEBPACK_IMPORTED_MODULE_54__.SwitcherComponent),
|
|
3248
|
+
/* harmony export */ TabButtonComponent: () => (/* reexport safe */ _side_bar_TabButton__WEBPACK_IMPORTED_MODULE_30__.TabButtonComponent),
|
|
3249
|
+
/* harmony export */ TabDesignerComponent: () => (/* reexport safe */ _tabs_Designer__WEBPACK_IMPORTED_MODULE_41__.TabDesignerComponent),
|
|
3250
|
+
/* harmony export */ TabJsonEditorAceComponent: () => (/* reexport safe */ _tabs_JsonEditorAce__WEBPACK_IMPORTED_MODULE_42__.TabJsonEditorAceComponent),
|
|
3251
|
+
/* harmony export */ TabJsonEditorErrorsComponent: () => (/* reexport safe */ _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_43__.TabJsonEditorErrorsComponent),
|
|
3252
|
+
/* harmony export */ TabJsonEditorTextareaComponent: () => (/* reexport safe */ _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_43__.TabJsonEditorTextareaComponent),
|
|
3253
|
+
/* harmony export */ TabLogicAddButtonComponent: () => (/* reexport safe */ _tabs_Logic__WEBPACK_IMPORTED_MODULE_44__.TabLogicAddButtonComponent),
|
|
3254
|
+
/* harmony export */ TabLogicComponent: () => (/* reexport safe */ _tabs_Logic__WEBPACK_IMPORTED_MODULE_44__.TabLogicComponent),
|
|
3255
|
+
/* harmony export */ TabPreviewSurveyComponent: () => (/* reexport safe */ _tabs_Preview__WEBPACK_IMPORTED_MODULE_45__.TabPreviewSurveyComponent),
|
|
3256
|
+
/* harmony export */ TabPreviewTestSurveyAgainComponent: () => (/* reexport safe */ _tabs_Preview__WEBPACK_IMPORTED_MODULE_45__.TabPreviewTestSurveyAgainComponent),
|
|
3257
|
+
/* harmony export */ TabThemeSurveyComponent: () => (/* reexport safe */ _tabs_Theme__WEBPACK_IMPORTED_MODULE_47__.TabThemeSurveyComponent),
|
|
3258
|
+
/* harmony export */ TabTranslationComponent: () => (/* reexport safe */ _tabs_translation_Translation__WEBPACK_IMPORTED_MODULE_48__.TabTranslationComponent),
|
|
3259
|
+
/* harmony export */ TabbedMenuComponent: () => (/* reexport safe */ _TabbedMenu__WEBPACK_IMPORTED_MODULE_27__.TabbedMenuComponent),
|
|
3260
|
+
/* harmony export */ TabbedMenuItemComponent: () => (/* reexport safe */ _TabbedMenu__WEBPACK_IMPORTED_MODULE_27__.TabbedMenuItemComponent),
|
|
3261
|
+
/* harmony export */ ToolboxList: () => (/* reexport safe */ _toolbox_ToolboxList__WEBPACK_IMPORTED_MODULE_25__.ToolboxList),
|
|
3262
|
+
/* harmony export */ ToolboxToolViewModel: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.ToolboxToolViewModel),
|
|
3263
|
+
/* harmony export */ TranslateFromAction: () => (/* reexport safe */ _tabs_translation_TranslateFromAction__WEBPACK_IMPORTED_MODULE_36__.TranslateFromAction),
|
|
3264
|
+
/* harmony export */ TranslationLineSkeleton: () => (/* reexport safe */ _tabs_translation_TranslationLineSkeleton__WEBPACK_IMPORTED_MODULE_35__.TranslationLineSkeleton),
|
|
3265
|
+
/* harmony export */ Version: () => (/* binding */ Version),
|
|
3266
|
+
/* harmony export */ editorLocalization: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.editorLocalization),
|
|
3267
|
+
/* harmony export */ localization: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.localization),
|
|
3268
|
+
/* harmony export */ settings: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.settings),
|
|
3269
|
+
/* harmony export */ svgBundle: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.svgBundle)
|
|
3270
|
+
/* harmony export */ });
|
|
3271
|
+
/* harmony import */ var _SurveyCreator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../SurveyCreator */ "./src/SurveyCreator.tsx");
|
|
3272
|
+
/* harmony import */ var _adorners_Row__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../adorners/Row */ "./src/adorners/Row.tsx");
|
|
3273
|
+
/* harmony import */ var _adorners_Question__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../adorners/Question */ "./src/adorners/Question.tsx");
|
|
3274
|
+
/* harmony import */ var _adorners_QuestionHeader__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../adorners/QuestionHeader */ "./src/adorners/QuestionHeader.tsx");
|
|
3275
|
+
/* harmony import */ var _adorners_QuestionFooter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../adorners/QuestionFooter */ "./src/adorners/QuestionFooter.tsx");
|
|
3276
|
+
/* harmony import */ var _adorners_QuestionBanner__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../adorners/QuestionBanner */ "./src/adorners/QuestionBanner.tsx");
|
|
3277
|
+
/* harmony import */ var _adorners_QuestionDropdown__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../adorners/QuestionDropdown */ "./src/adorners/QuestionDropdown.tsx");
|
|
3278
|
+
/* harmony import */ var _adorners_QuestionImage__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../adorners/QuestionImage */ "./src/adorners/QuestionImage.tsx");
|
|
3279
|
+
/* harmony import */ var _adorners_QuestionRating__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../adorners/QuestionRating */ "./src/adorners/QuestionRating.tsx");
|
|
3280
|
+
/* harmony import */ var _adorners_QuestionWidget__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../adorners/QuestionWidget */ "./src/adorners/QuestionWidget.tsx");
|
|
3281
|
+
/* harmony import */ var _adorners_CellQuestion__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../adorners/CellQuestion */ "./src/adorners/CellQuestion.tsx");
|
|
3282
|
+
/* harmony import */ var _adorners_CellQuestionDropdown__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../adorners/CellQuestionDropdown */ "./src/adorners/CellQuestionDropdown.tsx");
|
|
3283
|
+
/* harmony import */ var _adorners_Page__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../adorners/Page */ "./src/adorners/Page.tsx");
|
|
3284
|
+
/* harmony import */ var _adorners_Panel__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../adorners/Panel */ "./src/adorners/Panel.tsx");
|
|
3285
|
+
/* harmony import */ var _LogoImage__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../LogoImage */ "./src/LogoImage.tsx");
|
|
3286
|
+
/* harmony import */ var _QuestionLinkValue__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../QuestionLinkValue */ "./src/QuestionLinkValue.tsx");
|
|
3287
|
+
/* harmony import */ var _QuestionEmbeddedSurvey__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../QuestionEmbeddedSurvey */ "./src/QuestionEmbeddedSurvey.tsx");
|
|
3288
|
+
/* harmony import */ var _QuestionEditorContent__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../QuestionEditorContent */ "./src/QuestionEditorContent.tsx");
|
|
3289
|
+
/* harmony import */ var _ItemValueWrapper__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../ItemValueWrapper */ "./src/ItemValueWrapper.tsx");
|
|
3290
|
+
/* harmony import */ var _ImageItemValueWrapper__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../ImageItemValueWrapper */ "./src/ImageItemValueWrapper.tsx");
|
|
3291
|
+
/* harmony import */ var _MatrixCellWrapper__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../MatrixCellWrapper */ "./src/MatrixCellWrapper.tsx");
|
|
3292
|
+
/* harmony import */ var _Results__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../Results */ "./src/Results.tsx");
|
|
3293
|
+
/* harmony import */ var _toolbox_ToolboxItem__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../toolbox/ToolboxItem */ "./src/toolbox/ToolboxItem.tsx");
|
|
3294
|
+
/* harmony import */ var _toolbox_ToolboxItemGroup__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../toolbox/ToolboxItemGroup */ "./src/toolbox/ToolboxItemGroup.tsx");
|
|
3295
|
+
/* harmony import */ var _toolbox_ToolboxCategory__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../toolbox/ToolboxCategory */ "./src/toolbox/ToolboxCategory.tsx");
|
|
3296
|
+
/* harmony import */ var _toolbox_ToolboxList__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../toolbox/ToolboxList */ "./src/toolbox/ToolboxList.tsx");
|
|
3297
|
+
/* harmony import */ var _toolbox_AdaptiveToolbox__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../toolbox/AdaptiveToolbox */ "./src/toolbox/AdaptiveToolbox.tsx");
|
|
3298
|
+
/* harmony import */ var _TabbedMenu__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../TabbedMenu */ "./src/TabbedMenu.tsx");
|
|
3299
|
+
/* harmony import */ var _Navigation__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../Navigation */ "./src/Navigation.tsx");
|
|
3300
|
+
/* harmony import */ var _side_bar_TabControl__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../side-bar/TabControl */ "./src/side-bar/TabControl.tsx");
|
|
3301
|
+
/* harmony import */ var _side_bar_TabButton__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../side-bar/TabButton */ "./src/side-bar/TabButton.tsx");
|
|
3302
|
+
/* harmony import */ var _side_bar_SideBarDefaultHeader__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../side-bar/SideBarDefaultHeader */ "./src/side-bar/SideBarDefaultHeader.tsx");
|
|
3303
|
+
/* harmony import */ var _side_bar_SideBarPropertyGridHeader__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../side-bar/SideBarPropertyGridHeader */ "./src/side-bar/SideBarPropertyGridHeader.tsx");
|
|
3304
|
+
/* harmony import */ var _side_bar_SideBarHeader__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../side-bar/SideBarHeader */ "./src/side-bar/SideBarHeader.tsx");
|
|
3305
|
+
/* harmony import */ var _side_bar_SideBar__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../side-bar/SideBar */ "./src/side-bar/SideBar.tsx");
|
|
3306
|
+
/* harmony import */ var _tabs_translation_TranslationLineSkeleton__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../tabs/translation/TranslationLineSkeleton */ "./src/tabs/translation/TranslationLineSkeleton.tsx");
|
|
3307
|
+
/* harmony import */ var _tabs_translation_TranslateFromAction__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../tabs/translation/TranslateFromAction */ "./src/tabs/translation/TranslateFromAction.tsx");
|
|
3308
|
+
/* harmony import */ var _ActionButton__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../ActionButton */ "./src/ActionButton.tsx");
|
|
3309
|
+
/* harmony import */ var _StringEditor__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../StringEditor */ "./src/StringEditor.tsx");
|
|
3310
|
+
/* harmony import */ var _QuestionError__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../QuestionError */ "./src/QuestionError.tsx");
|
|
3311
|
+
/* harmony import */ var _tabs_logic_operator__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../tabs/logic-operator */ "./src/tabs/logic-operator.tsx");
|
|
3312
|
+
/* harmony import */ var _tabs_Designer__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../tabs/Designer */ "./src/tabs/Designer.tsx");
|
|
3313
|
+
/* harmony import */ var _tabs_JsonEditorAce__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../tabs/JsonEditorAce */ "./src/tabs/JsonEditorAce.tsx");
|
|
3314
|
+
/* harmony import */ var _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../tabs/JsonEditorTextarea */ "./src/tabs/JsonEditorTextarea.tsx");
|
|
3315
|
+
/* harmony import */ var _tabs_Logic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../tabs/Logic */ "./src/tabs/Logic.tsx");
|
|
3316
|
+
/* harmony import */ var _tabs_Preview__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../tabs/Preview */ "./src/tabs/Preview.tsx");
|
|
3317
|
+
/* harmony import */ var _side_bar_PropertyGridPlaceholder__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../side-bar/PropertyGridPlaceholder */ "./src/side-bar/PropertyGridPlaceholder.tsx");
|
|
3318
|
+
/* harmony import */ var _tabs_Theme__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../tabs/Theme */ "./src/tabs/Theme.tsx");
|
|
3319
|
+
/* harmony import */ var _tabs_translation_Translation__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../tabs/translation/Translation */ "./src/tabs/translation/Translation.tsx");
|
|
3320
|
+
/* harmony import */ var _tabs_SurveySimulator__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../tabs/SurveySimulator */ "./src/tabs/SurveySimulator.tsx");
|
|
3321
|
+
/* harmony import */ var _events__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../events */ "./src/events.ts");
|
|
3322
|
+
/* harmony import */ var _side_bar_ObjectSelector__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../side-bar/ObjectSelector */ "./src/side-bar/ObjectSelector.tsx");
|
|
3323
|
+
/* harmony import */ var _side_bar_PropertyGrid__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../side-bar/PropertyGrid */ "./src/side-bar/PropertyGrid.tsx");
|
|
3324
|
+
/* harmony import */ var _components_Search__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../components/Search */ "./src/components/Search.tsx");
|
|
3325
|
+
/* harmony import */ var _Switcher__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../Switcher */ "./src/Switcher.tsx");
|
|
3326
|
+
/* harmony import */ var _tabs_JsonErrorItem__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../tabs/JsonErrorItem */ "./src/tabs/JsonErrorItem.tsx");
|
|
3327
|
+
/* harmony import */ var _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../custom-questions/SpinEditor */ "./src/custom-questions/SpinEditor.tsx");
|
|
3328
|
+
/* harmony import */ var _custom_questions_ColorItem__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../custom-questions/ColorItem */ "./src/custom-questions/ColorItem.tsx");
|
|
3329
|
+
/* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
|
|
3330
|
+
/* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
|
|
3331
|
+
/* harmony import */ var _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../custom-questions/TextWithResetQuestion */ "./src/custom-questions/TextWithResetQuestion.tsx");
|
|
3332
|
+
/* harmony import */ var _custom_questions_BooleanSwitch__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../custom-questions/BooleanSwitch */ "./src/custom-questions/BooleanSwitch.tsx");
|
|
3333
|
+
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
|
|
3334
|
+
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_62___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_62__);
|
|
3335
|
+
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
3336
|
+
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_63__);
|
|
3337
|
+
var Version;
|
|
3338
|
+
Version = "".concat("2.0.7");
|
|
3339
|
+
// import "@survey/creator/survey-creator-core.css";
|
|
3340
|
+
|
|
3341
|
+
|
|
3342
|
+
|
|
3343
|
+
|
|
3344
|
+
|
|
3345
|
+
|
|
3346
|
+
|
|
3347
|
+
|
|
3348
|
+
|
|
3349
|
+
|
|
3350
|
+
|
|
3351
|
+
|
|
3352
|
+
|
|
3353
|
+
|
|
3354
|
+
|
|
3355
|
+
|
|
3356
|
+
|
|
3357
|
+
|
|
3358
|
+
|
|
3359
|
+
|
|
3360
|
+
|
|
3361
|
+
|
|
3362
|
+
|
|
3363
|
+
|
|
3364
|
+
|
|
3365
|
+
|
|
3366
|
+
|
|
3367
|
+
|
|
3368
|
+
|
|
3369
|
+
|
|
3370
|
+
|
|
3371
|
+
|
|
3372
|
+
|
|
3373
|
+
|
|
3374
|
+
|
|
3375
|
+
|
|
3376
|
+
|
|
3377
|
+
|
|
3378
|
+
|
|
3379
|
+
|
|
3380
|
+
|
|
3381
|
+
|
|
3382
|
+
|
|
3383
|
+
|
|
3384
|
+
|
|
3385
|
+
|
|
3386
|
+
|
|
3387
|
+
|
|
3388
|
+
|
|
3389
|
+
|
|
3390
|
+
|
|
3391
|
+
|
|
3392
|
+
|
|
3393
|
+
|
|
3394
|
+
|
|
3395
|
+
|
|
3396
|
+
//custom questions
|
|
3397
|
+
|
|
3398
|
+
|
|
3399
|
+
|
|
3400
|
+
|
|
3401
|
+
|
|
3402
|
+
|
|
3403
|
+
|
|
3404
|
+
|
|
3405
|
+
|
|
3406
|
+
|
|
3407
|
+
|
|
3408
|
+
|
|
3409
|
+
|
|
3410
|
+
(0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("2.0.7"), "survey-creator-react");
|
|
3411
|
+
|
|
3412
|
+
|
|
3186
3413
|
/***/ }),
|
|
3187
3414
|
|
|
3188
3415
|
/***/ "./src/events.ts":
|
|
@@ -3381,9 +3608,6 @@ var PropertyGridComponent = /** @class */ (function (_super) {
|
|
|
3381
3608
|
return PropertyGridComponent;
|
|
3382
3609
|
}(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SurveyElementBase));
|
|
3383
3610
|
|
|
3384
|
-
survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactQuestionFactory.Instance.registerQuestion("buttongroup", function (props) {
|
|
3385
|
-
return react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SurveyQuestionButtonGroup, props);
|
|
3386
|
-
});
|
|
3387
3611
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (PropertyGridComponent);
|
|
3388
3612
|
survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactElementFactory.Instance.registerElement("svc-property-grid", function (props) {
|
|
3389
3613
|
return react__WEBPACK_IMPORTED_MODULE_1__.createElement(PropertyGridComponent, props);
|
|
@@ -4509,14 +4733,12 @@ var SurveyLogicOpertor = /** @class */ (function (_super) {
|
|
|
4509
4733
|
SurveyLogicOpertor.prototype.renderInput = function () {
|
|
4510
4734
|
var q = this.question;
|
|
4511
4735
|
(0,survey_creator_core__WEBPACK_IMPORTED_MODULE_3__.initLogicOperator)(q);
|
|
4512
|
-
var text = (q.
|
|
4736
|
+
var text = (q.locReadOnlyText) ? this.renderLocString(q.locReadOnlyText) : "";
|
|
4513
4737
|
return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { id: this.question.inputId, className: q.getControlClass(), tabIndex: this.question.isInputReadOnly ? undefined : 0,
|
|
4514
4738
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
4515
4739
|
// @ts-ignore
|
|
4516
4740
|
disabled: this.question.isInputReadOnly, required: this.question.isRequired, onChange: this.updateValueOnEvent, onInput: this.updateValueOnEvent, onKeyUp: this.keyhandler, role: this.question.ariaRole, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-labelledby": this.question.ariaLabelledBy, "aria-invalid": this.question.ariaInvalid, "aria-errormessage": this.question.ariaErrormessage, "aria-expanded": this.question.ariaExpanded },
|
|
4517
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: this.question.cssClasses.controlValue },
|
|
4518
|
-
text,
|
|
4519
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", null, q.readOnlyText)),
|
|
4741
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: this.question.cssClasses.controlValue }, text),
|
|
4520
4742
|
this.createClearButton()));
|
|
4521
4743
|
};
|
|
4522
4744
|
return SurveyLogicOpertor;
|
|
@@ -5336,221 +5558,85 @@ var __webpack_exports__ = {};
|
|
|
5336
5558
|
\******************************/
|
|
5337
5559
|
__webpack_require__.r(__webpack_exports__);
|
|
5338
5560
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5339
|
-
/* harmony export */ ActionButton: () => (/* reexport safe */
|
|
5340
|
-
/* harmony export */ AdaptiveToolbox: () => (/* reexport safe */
|
|
5341
|
-
/* harmony export */ CellQuestionAdornerComponent: () => (/* reexport safe */
|
|
5342
|
-
/* harmony export */ CellQuestionDropdownAdornerComponent: () => (/* reexport safe */
|
|
5343
|
-
/* harmony export */ CreatorSurveyPageComponent: () => (/* reexport safe */
|
|
5344
|
-
/* harmony export */ ImageItemValueAdornerComponent: () => (/* reexport safe */
|
|
5345
|
-
/* harmony export */ ItemValueAdornerComponent: () => (/* reexport safe */
|
|
5346
|
-
/* harmony export */ LogoImageComponent: () => (/* reexport safe */
|
|
5347
|
-
/* harmony export */ MatrixCellAdornerComponent: () => (/* reexport safe */
|
|
5348
|
-
/* harmony export */ PanelAdornerComponent: () => (/* reexport safe */
|
|
5349
|
-
/* harmony export */ PropertyGridComponent: () => (/* reexport safe */
|
|
5350
|
-
/* harmony export */ PropertyGridEditorCollection: () => (/* reexport safe */
|
|
5351
|
-
/* harmony export */ PropertyGridPlaceholderComponent: () => (/* reexport safe */
|
|
5352
|
-
/* harmony export */ QuestionAdornerComponent: () => (/* reexport safe */
|
|
5353
|
-
/* harmony export */ QuestionBanner: () => (/* reexport safe */
|
|
5354
|
-
/* harmony export */ QuestionDropdownAdornerComponent: () => (/* reexport safe */
|
|
5355
|
-
/* harmony export */ QuestionEditorContentComponent: () => (/* reexport safe */
|
|
5356
|
-
/* harmony export */ QuestionErrorComponent: () => (/* reexport safe */
|
|
5357
|
-
/* harmony export */ QuestionImageAdornerComponent: () => (/* reexport safe */
|
|
5358
|
-
/* harmony export */ QuestionRatingAdornerComponent: () => (/* reexport safe */
|
|
5359
|
-
/* harmony export */ QuestionWidgetAdornerComponent: () => (/* reexport safe */
|
|
5360
|
-
/* harmony export */ QuestionWrapperFooter: () => (/* reexport safe */
|
|
5361
|
-
/* harmony export */ QuestionWrapperHeader: () => (/* reexport safe */
|
|
5362
|
-
/* harmony export */ ReactDragEvent: () => (/* reexport safe */
|
|
5363
|
-
/* harmony export */ ReactMouseEvent: () => (/* reexport safe */
|
|
5364
|
-
/* harmony export */ RowWrapper: () => (/* reexport safe */
|
|
5365
|
-
/* harmony export */ SearchComponent: () => (/* reexport safe */
|
|
5366
|
-
/* harmony export */ SideBarDefaultHeader: () => (/* reexport safe */
|
|
5367
|
-
/* harmony export */ SidebarComponent: () => (/* reexport safe */
|
|
5368
|
-
/* harmony export */ SurveyCreator: () => (/* reexport safe */
|
|
5369
|
-
/* harmony export */ SurveyCreatorComponent: () => (/* reexport safe */
|
|
5370
|
-
/* harmony export */ SurveyCreatorToolboxCategory: () => (/* reexport safe */
|
|
5371
|
-
/* harmony export */ SurveyCreatorToolboxItem: () => (/* reexport safe */
|
|
5372
|
-
/* harmony export */ SurveyCreatorToolboxItemGroup: () => (/* reexport safe */
|
|
5373
|
-
/* harmony export */ SurveyCreatorToolboxTool: () => (/* reexport safe */
|
|
5374
|
-
/* harmony export */ SurveyElementEmbeddedSurvey: () => (/* reexport safe */
|
|
5375
|
-
/* harmony export */ SurveyLocStringEditor: () => (/* reexport safe */
|
|
5376
|
-
/* harmony export */ SurveyLogic: () => (/* reexport safe */
|
|
5377
|
-
/* harmony export */ SurveyLogicOpertor: () => (/* reexport safe */
|
|
5378
|
-
/* harmony export */ SurveyLogicUI: () => (/* reexport safe */
|
|
5379
|
-
/* harmony export */ SurveyNavigation: () => (/* reexport safe */
|
|
5380
|
-
/* harmony export */ SurveyQuestionBooleanSwitch: () => (/* reexport safe */
|
|
5381
|
-
/* harmony export */ SurveyQuestionColor: () => (/* reexport safe */
|
|
5382
|
-
/* harmony export */ SurveyQuestionEditorDefinition: () => (/* reexport safe */
|
|
5383
|
-
/* harmony export */ SurveyQuestionFileEditor: () => (/* reexport safe */
|
|
5384
|
-
/* harmony export */ SurveyQuestionLinkValue: () => (/* reexport safe */
|
|
5385
|
-
/* harmony export */ SurveyQuestionSpinEditor: () => (/* reexport safe */
|
|
5386
|
-
/* harmony export */ SurveyQuestionTextWithReset: () => (/* reexport safe */
|
|
5387
|
-
/* harmony export */ SurveyResults: () => (/* reexport safe */
|
|
5388
|
-
/* harmony export */ SurveyResultsByRow: () => (/* reexport safe */
|
|
5389
|
-
/* harmony export */ SurveySimulator: () => (/* reexport safe */
|
|
5390
|
-
/* harmony export */ SwitcherComponent: () => (/* reexport safe */
|
|
5391
|
-
/* harmony export */ TabButtonComponent: () => (/* reexport safe */
|
|
5392
|
-
/* harmony export */ TabDesignerComponent: () => (/* reexport safe */
|
|
5393
|
-
/* harmony export */ TabJsonEditorAceComponent: () => (/* reexport safe */
|
|
5394
|
-
/* harmony export */ TabJsonEditorErrorsComponent: () => (/* reexport safe */
|
|
5395
|
-
/* harmony export */ TabJsonEditorTextareaComponent: () => (/* reexport safe */
|
|
5396
|
-
/* harmony export */ TabLogicAddButtonComponent: () => (/* reexport safe */
|
|
5397
|
-
/* harmony export */ TabLogicComponent: () => (/* reexport safe */
|
|
5398
|
-
/* harmony export */ TabPreviewSurveyComponent: () => (/* reexport safe */
|
|
5399
|
-
/* harmony export */ TabPreviewTestSurveyAgainComponent: () => (/* reexport safe */
|
|
5400
|
-
/* harmony export */ TabThemeSurveyComponent: () => (/* reexport safe */
|
|
5401
|
-
/* harmony export */ TabTranslationComponent: () => (/* reexport safe */
|
|
5402
|
-
/* harmony export */ TabbedMenuComponent: () => (/* reexport safe */
|
|
5403
|
-
/* harmony export */ TabbedMenuItemComponent: () => (/* reexport safe */
|
|
5404
|
-
/* harmony export */ ToolboxList: () => (/* reexport safe */
|
|
5405
|
-
/* harmony export */ ToolboxToolViewModel: () => (/* reexport safe */
|
|
5406
|
-
/* harmony export */ TranslateFromAction: () => (/* reexport safe */
|
|
5407
|
-
/* harmony export */ TranslationLineSkeleton: () => (/* reexport safe */
|
|
5408
|
-
/* harmony export */ Version: () => (/*
|
|
5409
|
-
/* harmony export */ editorLocalization: () => (/* reexport safe */
|
|
5410
|
-
/* harmony export */ localization: () => (/* reexport safe */
|
|
5411
|
-
/* harmony export */ settings: () => (/* reexport safe */
|
|
5412
|
-
/* harmony export */ svgBundle: () => (/* reexport safe */
|
|
5561
|
+
/* harmony export */ ActionButton: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.ActionButton),
|
|
5562
|
+
/* harmony export */ AdaptiveToolbox: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.AdaptiveToolbox),
|
|
5563
|
+
/* harmony export */ CellQuestionAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.CellQuestionAdornerComponent),
|
|
5564
|
+
/* harmony export */ CellQuestionDropdownAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.CellQuestionDropdownAdornerComponent),
|
|
5565
|
+
/* harmony export */ CreatorSurveyPageComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.CreatorSurveyPageComponent),
|
|
5566
|
+
/* harmony export */ ImageItemValueAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.ImageItemValueAdornerComponent),
|
|
5567
|
+
/* harmony export */ ItemValueAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.ItemValueAdornerComponent),
|
|
5568
|
+
/* harmony export */ LogoImageComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.LogoImageComponent),
|
|
5569
|
+
/* harmony export */ MatrixCellAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.MatrixCellAdornerComponent),
|
|
5570
|
+
/* harmony export */ PanelAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.PanelAdornerComponent),
|
|
5571
|
+
/* harmony export */ PropertyGridComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.PropertyGridComponent),
|
|
5572
|
+
/* harmony export */ PropertyGridEditorCollection: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.PropertyGridEditorCollection),
|
|
5573
|
+
/* harmony export */ PropertyGridPlaceholderComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.PropertyGridPlaceholderComponent),
|
|
5574
|
+
/* harmony export */ QuestionAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionAdornerComponent),
|
|
5575
|
+
/* harmony export */ QuestionBanner: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionBanner),
|
|
5576
|
+
/* harmony export */ QuestionDropdownAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionDropdownAdornerComponent),
|
|
5577
|
+
/* harmony export */ QuestionEditorContentComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionEditorContentComponent),
|
|
5578
|
+
/* harmony export */ QuestionErrorComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionErrorComponent),
|
|
5579
|
+
/* harmony export */ QuestionImageAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionImageAdornerComponent),
|
|
5580
|
+
/* harmony export */ QuestionRatingAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionRatingAdornerComponent),
|
|
5581
|
+
/* harmony export */ QuestionWidgetAdornerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionWidgetAdornerComponent),
|
|
5582
|
+
/* harmony export */ QuestionWrapperFooter: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionWrapperFooter),
|
|
5583
|
+
/* harmony export */ QuestionWrapperHeader: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.QuestionWrapperHeader),
|
|
5584
|
+
/* harmony export */ ReactDragEvent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.ReactDragEvent),
|
|
5585
|
+
/* harmony export */ ReactMouseEvent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.ReactMouseEvent),
|
|
5586
|
+
/* harmony export */ RowWrapper: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.RowWrapper),
|
|
5587
|
+
/* harmony export */ SearchComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SearchComponent),
|
|
5588
|
+
/* harmony export */ SideBarDefaultHeader: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SideBarDefaultHeader),
|
|
5589
|
+
/* harmony export */ SidebarComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SidebarComponent),
|
|
5590
|
+
/* harmony export */ SurveyCreator: () => (/* reexport safe */ _SurveyCreator__WEBPACK_IMPORTED_MODULE_1__.SurveyCreator),
|
|
5591
|
+
/* harmony export */ SurveyCreatorComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyCreatorComponent),
|
|
5592
|
+
/* harmony export */ SurveyCreatorToolboxCategory: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyCreatorToolboxCategory),
|
|
5593
|
+
/* harmony export */ SurveyCreatorToolboxItem: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyCreatorToolboxItem),
|
|
5594
|
+
/* harmony export */ SurveyCreatorToolboxItemGroup: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyCreatorToolboxItemGroup),
|
|
5595
|
+
/* harmony export */ SurveyCreatorToolboxTool: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyCreatorToolboxTool),
|
|
5596
|
+
/* harmony export */ SurveyElementEmbeddedSurvey: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyElementEmbeddedSurvey),
|
|
5597
|
+
/* harmony export */ SurveyLocStringEditor: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyLocStringEditor),
|
|
5598
|
+
/* harmony export */ SurveyLogic: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyLogic),
|
|
5599
|
+
/* harmony export */ SurveyLogicOpertor: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyLogicOpertor),
|
|
5600
|
+
/* harmony export */ SurveyLogicUI: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyLogicUI),
|
|
5601
|
+
/* harmony export */ SurveyNavigation: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyNavigation),
|
|
5602
|
+
/* harmony export */ SurveyQuestionBooleanSwitch: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyQuestionBooleanSwitch),
|
|
5603
|
+
/* harmony export */ SurveyQuestionColor: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyQuestionColor),
|
|
5604
|
+
/* harmony export */ SurveyQuestionEditorDefinition: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyQuestionEditorDefinition),
|
|
5605
|
+
/* harmony export */ SurveyQuestionFileEditor: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyQuestionFileEditor),
|
|
5606
|
+
/* harmony export */ SurveyQuestionLinkValue: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyQuestionLinkValue),
|
|
5607
|
+
/* harmony export */ SurveyQuestionSpinEditor: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyQuestionSpinEditor),
|
|
5608
|
+
/* harmony export */ SurveyQuestionTextWithReset: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyQuestionTextWithReset),
|
|
5609
|
+
/* harmony export */ SurveyResults: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyResults),
|
|
5610
|
+
/* harmony export */ SurveyResultsByRow: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveyResultsByRow),
|
|
5611
|
+
/* harmony export */ SurveySimulator: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SurveySimulator),
|
|
5612
|
+
/* harmony export */ SwitcherComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.SwitcherComponent),
|
|
5613
|
+
/* harmony export */ TabButtonComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabButtonComponent),
|
|
5614
|
+
/* harmony export */ TabDesignerComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabDesignerComponent),
|
|
5615
|
+
/* harmony export */ TabJsonEditorAceComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabJsonEditorAceComponent),
|
|
5616
|
+
/* harmony export */ TabJsonEditorErrorsComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabJsonEditorErrorsComponent),
|
|
5617
|
+
/* harmony export */ TabJsonEditorTextareaComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabJsonEditorTextareaComponent),
|
|
5618
|
+
/* harmony export */ TabLogicAddButtonComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabLogicAddButtonComponent),
|
|
5619
|
+
/* harmony export */ TabLogicComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabLogicComponent),
|
|
5620
|
+
/* harmony export */ TabPreviewSurveyComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabPreviewSurveyComponent),
|
|
5621
|
+
/* harmony export */ TabPreviewTestSurveyAgainComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabPreviewTestSurveyAgainComponent),
|
|
5622
|
+
/* harmony export */ TabThemeSurveyComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabThemeSurveyComponent),
|
|
5623
|
+
/* harmony export */ TabTranslationComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabTranslationComponent),
|
|
5624
|
+
/* harmony export */ TabbedMenuComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabbedMenuComponent),
|
|
5625
|
+
/* harmony export */ TabbedMenuItemComponent: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TabbedMenuItemComponent),
|
|
5626
|
+
/* harmony export */ ToolboxList: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.ToolboxList),
|
|
5627
|
+
/* harmony export */ ToolboxToolViewModel: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.ToolboxToolViewModel),
|
|
5628
|
+
/* harmony export */ TranslateFromAction: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TranslateFromAction),
|
|
5629
|
+
/* harmony export */ TranslationLineSkeleton: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.TranslationLineSkeleton),
|
|
5630
|
+
/* harmony export */ Version: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.Version),
|
|
5631
|
+
/* harmony export */ editorLocalization: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.editorLocalization),
|
|
5632
|
+
/* harmony export */ localization: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.localization),
|
|
5633
|
+
/* harmony export */ settings: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.settings),
|
|
5634
|
+
/* harmony export */ svgBundle: () => (/* reexport safe */ _index_wc__WEBPACK_IMPORTED_MODULE_0__.svgBundle)
|
|
5413
5635
|
/* harmony export */ });
|
|
5414
|
-
/* harmony import */ var
|
|
5415
|
-
/* harmony import */ var
|
|
5416
|
-
/* harmony import */ var _adorners_Question__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../adorners/Question */ "./src/adorners/Question.tsx");
|
|
5417
|
-
/* harmony import */ var _adorners_QuestionHeader__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../adorners/QuestionHeader */ "./src/adorners/QuestionHeader.tsx");
|
|
5418
|
-
/* harmony import */ var _adorners_QuestionFooter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../adorners/QuestionFooter */ "./src/adorners/QuestionFooter.tsx");
|
|
5419
|
-
/* harmony import */ var _adorners_QuestionBanner__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../adorners/QuestionBanner */ "./src/adorners/QuestionBanner.tsx");
|
|
5420
|
-
/* harmony import */ var _adorners_QuestionDropdown__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../adorners/QuestionDropdown */ "./src/adorners/QuestionDropdown.tsx");
|
|
5421
|
-
/* harmony import */ var _adorners_QuestionImage__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../adorners/QuestionImage */ "./src/adorners/QuestionImage.tsx");
|
|
5422
|
-
/* harmony import */ var _adorners_QuestionRating__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../adorners/QuestionRating */ "./src/adorners/QuestionRating.tsx");
|
|
5423
|
-
/* harmony import */ var _adorners_QuestionWidget__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../adorners/QuestionWidget */ "./src/adorners/QuestionWidget.tsx");
|
|
5424
|
-
/* harmony import */ var _adorners_CellQuestion__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../adorners/CellQuestion */ "./src/adorners/CellQuestion.tsx");
|
|
5425
|
-
/* harmony import */ var _adorners_CellQuestionDropdown__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../adorners/CellQuestionDropdown */ "./src/adorners/CellQuestionDropdown.tsx");
|
|
5426
|
-
/* harmony import */ var _adorners_Page__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../adorners/Page */ "./src/adorners/Page.tsx");
|
|
5427
|
-
/* harmony import */ var _adorners_Panel__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../adorners/Panel */ "./src/adorners/Panel.tsx");
|
|
5428
|
-
/* harmony import */ var _LogoImage__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../LogoImage */ "./src/LogoImage.tsx");
|
|
5429
|
-
/* harmony import */ var _QuestionLinkValue__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../QuestionLinkValue */ "./src/QuestionLinkValue.tsx");
|
|
5430
|
-
/* harmony import */ var _QuestionEmbeddedSurvey__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../QuestionEmbeddedSurvey */ "./src/QuestionEmbeddedSurvey.tsx");
|
|
5431
|
-
/* harmony import */ var _QuestionEditorContent__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../QuestionEditorContent */ "./src/QuestionEditorContent.tsx");
|
|
5432
|
-
/* harmony import */ var _ItemValueWrapper__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../ItemValueWrapper */ "./src/ItemValueWrapper.tsx");
|
|
5433
|
-
/* harmony import */ var _ImageItemValueWrapper__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../ImageItemValueWrapper */ "./src/ImageItemValueWrapper.tsx");
|
|
5434
|
-
/* harmony import */ var _MatrixCellWrapper__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../MatrixCellWrapper */ "./src/MatrixCellWrapper.tsx");
|
|
5435
|
-
/* harmony import */ var _Results__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../Results */ "./src/Results.tsx");
|
|
5436
|
-
/* harmony import */ var _toolbox_ToolboxItem__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../toolbox/ToolboxItem */ "./src/toolbox/ToolboxItem.tsx");
|
|
5437
|
-
/* harmony import */ var _toolbox_ToolboxItemGroup__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../toolbox/ToolboxItemGroup */ "./src/toolbox/ToolboxItemGroup.tsx");
|
|
5438
|
-
/* harmony import */ var _toolbox_ToolboxCategory__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../toolbox/ToolboxCategory */ "./src/toolbox/ToolboxCategory.tsx");
|
|
5439
|
-
/* harmony import */ var _toolbox_ToolboxList__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../toolbox/ToolboxList */ "./src/toolbox/ToolboxList.tsx");
|
|
5440
|
-
/* harmony import */ var _toolbox_AdaptiveToolbox__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../toolbox/AdaptiveToolbox */ "./src/toolbox/AdaptiveToolbox.tsx");
|
|
5441
|
-
/* harmony import */ var _TabbedMenu__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../TabbedMenu */ "./src/TabbedMenu.tsx");
|
|
5442
|
-
/* harmony import */ var _Navigation__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../Navigation */ "./src/Navigation.tsx");
|
|
5443
|
-
/* harmony import */ var _side_bar_TabControl__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../side-bar/TabControl */ "./src/side-bar/TabControl.tsx");
|
|
5444
|
-
/* harmony import */ var _side_bar_TabButton__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../side-bar/TabButton */ "./src/side-bar/TabButton.tsx");
|
|
5445
|
-
/* harmony import */ var _side_bar_SideBarDefaultHeader__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../side-bar/SideBarDefaultHeader */ "./src/side-bar/SideBarDefaultHeader.tsx");
|
|
5446
|
-
/* harmony import */ var _side_bar_SideBarPropertyGridHeader__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../side-bar/SideBarPropertyGridHeader */ "./src/side-bar/SideBarPropertyGridHeader.tsx");
|
|
5447
|
-
/* harmony import */ var _side_bar_SideBarHeader__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../side-bar/SideBarHeader */ "./src/side-bar/SideBarHeader.tsx");
|
|
5448
|
-
/* harmony import */ var _side_bar_SideBar__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../side-bar/SideBar */ "./src/side-bar/SideBar.tsx");
|
|
5449
|
-
/* harmony import */ var _tabs_translation_TranslationLineSkeleton__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../tabs/translation/TranslationLineSkeleton */ "./src/tabs/translation/TranslationLineSkeleton.tsx");
|
|
5450
|
-
/* harmony import */ var _tabs_translation_TranslateFromAction__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../tabs/translation/TranslateFromAction */ "./src/tabs/translation/TranslateFromAction.tsx");
|
|
5451
|
-
/* harmony import */ var _ActionButton__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../ActionButton */ "./src/ActionButton.tsx");
|
|
5452
|
-
/* harmony import */ var _StringEditor__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../StringEditor */ "./src/StringEditor.tsx");
|
|
5453
|
-
/* harmony import */ var _QuestionError__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../QuestionError */ "./src/QuestionError.tsx");
|
|
5454
|
-
/* harmony import */ var _tabs_logic_operator__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../tabs/logic-operator */ "./src/tabs/logic-operator.tsx");
|
|
5455
|
-
/* harmony import */ var _tabs_Designer__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../tabs/Designer */ "./src/tabs/Designer.tsx");
|
|
5456
|
-
/* harmony import */ var _tabs_JsonEditorAce__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../tabs/JsonEditorAce */ "./src/tabs/JsonEditorAce.tsx");
|
|
5457
|
-
/* harmony import */ var _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../tabs/JsonEditorTextarea */ "./src/tabs/JsonEditorTextarea.tsx");
|
|
5458
|
-
/* harmony import */ var _tabs_Logic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../tabs/Logic */ "./src/tabs/Logic.tsx");
|
|
5459
|
-
/* harmony import */ var _tabs_Preview__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../tabs/Preview */ "./src/tabs/Preview.tsx");
|
|
5460
|
-
/* harmony import */ var _side_bar_PropertyGridPlaceholder__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../side-bar/PropertyGridPlaceholder */ "./src/side-bar/PropertyGridPlaceholder.tsx");
|
|
5461
|
-
/* harmony import */ var _tabs_Theme__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../tabs/Theme */ "./src/tabs/Theme.tsx");
|
|
5462
|
-
/* harmony import */ var _tabs_translation_Translation__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../tabs/translation/Translation */ "./src/tabs/translation/Translation.tsx");
|
|
5463
|
-
/* harmony import */ var _tabs_SurveySimulator__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../tabs/SurveySimulator */ "./src/tabs/SurveySimulator.tsx");
|
|
5464
|
-
/* harmony import */ var _events__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../events */ "./src/events.ts");
|
|
5465
|
-
/* harmony import */ var _side_bar_ObjectSelector__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../side-bar/ObjectSelector */ "./src/side-bar/ObjectSelector.tsx");
|
|
5466
|
-
/* harmony import */ var _side_bar_PropertyGrid__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../side-bar/PropertyGrid */ "./src/side-bar/PropertyGrid.tsx");
|
|
5467
|
-
/* harmony import */ var _components_Search__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../components/Search */ "./src/components/Search.tsx");
|
|
5468
|
-
/* harmony import */ var _Switcher__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../Switcher */ "./src/Switcher.tsx");
|
|
5469
|
-
/* harmony import */ var _tabs_JsonErrorItem__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../tabs/JsonErrorItem */ "./src/tabs/JsonErrorItem.tsx");
|
|
5470
|
-
/* harmony import */ var _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../custom-questions/SpinEditor */ "./src/custom-questions/SpinEditor.tsx");
|
|
5471
|
-
/* harmony import */ var _custom_questions_ColorItem__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../custom-questions/ColorItem */ "./src/custom-questions/ColorItem.tsx");
|
|
5472
|
-
/* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
|
|
5473
|
-
/* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
|
|
5474
|
-
/* harmony import */ var _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../custom-questions/TextWithResetQuestion */ "./src/custom-questions/TextWithResetQuestion.tsx");
|
|
5475
|
-
/* harmony import */ var _custom_questions_BooleanSwitch__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../custom-questions/BooleanSwitch */ "./src/custom-questions/BooleanSwitch.tsx");
|
|
5476
|
-
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
|
|
5477
|
-
/* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_62___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_62__);
|
|
5478
|
-
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
5479
|
-
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_63__);
|
|
5480
|
-
var Version;
|
|
5481
|
-
Version = "".concat("2.0.5");
|
|
5482
|
-
// import "@survey/creator/survey-creator-core.css";
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
5535
|
-
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
//custom questions
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5636
|
+
/* harmony import */ var _index_wc__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index-wc */ "./src/entries/index-wc.ts");
|
|
5637
|
+
/* harmony import */ var _SurveyCreator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../SurveyCreator */ "./src/SurveyCreator.tsx");
|
|
5551
5638
|
|
|
5552
5639
|
|
|
5553
|
-
(0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("2.0.5"), "survey-creator-react");
|
|
5554
5640
|
|
|
5555
5641
|
})();
|
|
5556
5642
|
|