survey-creator-core 1.9.102 → 1.9.104
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/fonts.fontless.css +1 -1
- package/fonts.fontless.min.css +1 -1
- package/package.json +2 -2
- package/survey-creator-core.css +53 -50
- package/survey-creator-core.fontless.css +52 -49
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +7 -8
- package/survey-creator-core.i18n.js +339 -339
- package/survey-creator-core.i18n.js.map +1 -1
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +475 -687
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +8 -9
- package/survey-creator-core.min.js +2 -2
- package/typings/components/action-container-view-model.d.ts +1 -0
- package/typings/components/page.d.ts +1 -0
- package/typings/components/tabs/embed-json.d.ts +1 -1
- package/typings/components/tabs/embed.d.ts +13 -13
- package/typings/components/tabs/logic-theme.d.ts +1 -0
- package/typings/components/tabs/theme-custom-questions/font-settings.d.ts +1 -1
- package/typings/components/tabs/translation-theme.d.ts +6 -0
- package/typings/creator-base.d.ts +1 -15
- package/typings/creator-options.d.ts +0 -7
- package/typings/creator-settings.d.ts +2 -2
- package/typings/editorLocalization.d.ts +1 -0
- package/typings/entries/index.d.ts +0 -1
- package/typings/localization/english.d.ts +1 -0
- package/typings/property-grid/index.d.ts +5 -0
- package/typings/questionconverter.d.ts +1 -0
package/survey-creator-core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.104
|
|
3
3
|
* (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* Github: https://github.com/surveyjs/survey-creator
|
|
5
5
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -274,7 +274,7 @@ var SurveyElementAdornerBase = /** @class */ (function (_super) {
|
|
|
274
274
|
visibleIndex: 30,
|
|
275
275
|
iconSize: 16,
|
|
276
276
|
action: function () {
|
|
277
|
-
_this.
|
|
277
|
+
_this.delete();
|
|
278
278
|
}
|
|
279
279
|
}));
|
|
280
280
|
};
|
|
@@ -296,6 +296,9 @@ var SurveyElementAdornerBase = /** @class */ (function (_super) {
|
|
|
296
296
|
this.setPropertyValue("showAddQuestionButton", val && this.allowEdit && _creator_settings__WEBPACK_IMPORTED_MODULE_2__["settings"].designer.showAddQuestionButton);
|
|
297
297
|
};
|
|
298
298
|
SurveyElementAdornerBase.prototype.duplicate = function () { };
|
|
299
|
+
SurveyElementAdornerBase.prototype.delete = function () {
|
|
300
|
+
this.creator.deleteElement(this.surveyElement);
|
|
301
|
+
};
|
|
299
302
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
300
303
|
Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: true })
|
|
301
304
|
], SurveyElementAdornerBase.prototype, "allowDragging", void 0);
|
|
@@ -1786,6 +1789,9 @@ var PageAdorner = /** @class */ (function (_super) {
|
|
|
1786
1789
|
var newElement = this.creator.copyPage(this.page);
|
|
1787
1790
|
this.creator.selectElement(newElement);
|
|
1788
1791
|
};
|
|
1792
|
+
PageAdorner.prototype.delete = function () {
|
|
1793
|
+
this.creator.deleteElement(this.page);
|
|
1794
|
+
};
|
|
1789
1795
|
Object.defineProperty(PageAdorner.prototype, "addNewQuestionText", {
|
|
1790
1796
|
get: function () {
|
|
1791
1797
|
if (!this.currentAddQuestionType && this.creator)
|
|
@@ -2488,6 +2494,7 @@ var QuestionAdornerViewModel = /** @class */ (function (_super) {
|
|
|
2488
2494
|
this.updateActionVisibility("convertTo", operationsAllow && options.allowChangeType);
|
|
2489
2495
|
this.updateActionVisibilityByProp("isrequired", "isRequired", operationsAllow && options.allowChangeRequired);
|
|
2490
2496
|
this.updateActionVisibilityByProp("convertInputType", "inputType", options.allowChangeInputType);
|
|
2497
|
+
this.updateActionVisibilityByProp("convertInputType", "rateDisplayMode", options.allowChangeInputType);
|
|
2491
2498
|
};
|
|
2492
2499
|
QuestionAdornerViewModel.prototype.updateActionVisibilityByProp = function (actionName, propName, allow) {
|
|
2493
2500
|
var prop = survey_core__WEBPACK_IMPORTED_MODULE_1__["Serializer"].findProperty(this.surveyElement.getType(), propName);
|
|
@@ -4730,326 +4737,6 @@ var TabDesignerViewModel = /** @class */ (function (_super) {
|
|
|
4730
4737
|
|
|
4731
4738
|
|
|
4732
4739
|
|
|
4733
|
-
/***/ }),
|
|
4734
|
-
|
|
4735
|
-
/***/ "./src/components/tabs/embed-json.ts":
|
|
4736
|
-
/*!*******************************************!*\
|
|
4737
|
-
!*** ./src/components/tabs/embed-json.ts ***!
|
|
4738
|
-
\*******************************************/
|
|
4739
|
-
/*! exports provided: json */
|
|
4740
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4741
|
-
|
|
4742
|
-
"use strict";
|
|
4743
|
-
__webpack_require__.r(__webpack_exports__);
|
|
4744
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "json", function() { return json; });
|
|
4745
|
-
var json = {
|
|
4746
|
-
"pages": [
|
|
4747
|
-
{
|
|
4748
|
-
"name": "embed",
|
|
4749
|
-
"elements": [
|
|
4750
|
-
{
|
|
4751
|
-
"type": "dropdown",
|
|
4752
|
-
"name": "framework",
|
|
4753
|
-
"width": "284px",
|
|
4754
|
-
"minWidth": "284px",
|
|
4755
|
-
"maxWidth": "284px",
|
|
4756
|
-
"titleLocation": "hidden",
|
|
4757
|
-
"defaultValue": "jquery",
|
|
4758
|
-
"choices": [
|
|
4759
|
-
{
|
|
4760
|
-
"value": "angular",
|
|
4761
|
-
"text": "Use Angular version"
|
|
4762
|
-
},
|
|
4763
|
-
{
|
|
4764
|
-
"value": "jquery",
|
|
4765
|
-
"text": "Use jQuery version"
|
|
4766
|
-
},
|
|
4767
|
-
{
|
|
4768
|
-
"value": "knockout",
|
|
4769
|
-
"text": "Use Knockout version"
|
|
4770
|
-
},
|
|
4771
|
-
{
|
|
4772
|
-
"value": "react",
|
|
4773
|
-
"text": "Use React version"
|
|
4774
|
-
},
|
|
4775
|
-
{
|
|
4776
|
-
"value": "vue",
|
|
4777
|
-
"text": "Use Vue version"
|
|
4778
|
-
}
|
|
4779
|
-
],
|
|
4780
|
-
"showOptionsCaption": false
|
|
4781
|
-
},
|
|
4782
|
-
{
|
|
4783
|
-
"type": "dropdown",
|
|
4784
|
-
"name": "theme",
|
|
4785
|
-
"width": "284px",
|
|
4786
|
-
"minWidth": "284px",
|
|
4787
|
-
"maxWidth": "284px",
|
|
4788
|
-
"startWithNewLine": false,
|
|
4789
|
-
"titleLocation": "hidden",
|
|
4790
|
-
"defaultValue": "defaultV2",
|
|
4791
|
-
"choices": [
|
|
4792
|
-
{
|
|
4793
|
-
"value": "defaultV2",
|
|
4794
|
-
"text": "DefaultV2 theme"
|
|
4795
|
-
},
|
|
4796
|
-
{
|
|
4797
|
-
"value": "modern",
|
|
4798
|
-
"text": "Modern theme"
|
|
4799
|
-
},
|
|
4800
|
-
{
|
|
4801
|
-
"value": "default",
|
|
4802
|
-
"text": "Default theme"
|
|
4803
|
-
},
|
|
4804
|
-
{
|
|
4805
|
-
"value": "orange",
|
|
4806
|
-
"text": "Orange theme"
|
|
4807
|
-
},
|
|
4808
|
-
{
|
|
4809
|
-
"value": "darkblue",
|
|
4810
|
-
"text": "Darkblue theme"
|
|
4811
|
-
},
|
|
4812
|
-
{
|
|
4813
|
-
"value": "darkrose",
|
|
4814
|
-
"text": "Darkrose theme"
|
|
4815
|
-
},
|
|
4816
|
-
{
|
|
4817
|
-
"value": "stone",
|
|
4818
|
-
"text": "Stone theme"
|
|
4819
|
-
},
|
|
4820
|
-
{
|
|
4821
|
-
"value": "winter",
|
|
4822
|
-
"text": "Winter theme"
|
|
4823
|
-
},
|
|
4824
|
-
{
|
|
4825
|
-
"value": "winterstone",
|
|
4826
|
-
"text": "Winter-Stone theme"
|
|
4827
|
-
},
|
|
4828
|
-
{
|
|
4829
|
-
"value": "bootstrap",
|
|
4830
|
-
"text": "For bootstrap framework"
|
|
4831
|
-
}
|
|
4832
|
-
],
|
|
4833
|
-
"showOptionsCaption": false
|
|
4834
|
-
},
|
|
4835
|
-
{
|
|
4836
|
-
"type": "dropdown",
|
|
4837
|
-
"name": "show",
|
|
4838
|
-
"width": "284px",
|
|
4839
|
-
"minWidth": "284px",
|
|
4840
|
-
"maxWidth": "284px",
|
|
4841
|
-
"startWithNewLine": false,
|
|
4842
|
-
"titleLocation": "hidden",
|
|
4843
|
-
"defaultValue": "page",
|
|
4844
|
-
"choices": [
|
|
4845
|
-
{
|
|
4846
|
-
"value": "page",
|
|
4847
|
-
"text": "Show survey on a page"
|
|
4848
|
-
},
|
|
4849
|
-
{
|
|
4850
|
-
"value": "window",
|
|
4851
|
-
"text": "Show survey in a window"
|
|
4852
|
-
}
|
|
4853
|
-
],
|
|
4854
|
-
"showOptionsCaption": false
|
|
4855
|
-
},
|
|
4856
|
-
{
|
|
4857
|
-
"type": "expression",
|
|
4858
|
-
"name": "scripts_expression",
|
|
4859
|
-
"visible": false,
|
|
4860
|
-
"expression": "surveyjsEmbedScriptsMarkup({framework}, {theme})"
|
|
4861
|
-
},
|
|
4862
|
-
{
|
|
4863
|
-
"type": "comment",
|
|
4864
|
-
"name": "scripts",
|
|
4865
|
-
"description": "Scripts and styles",
|
|
4866
|
-
"readOnly": true
|
|
4867
|
-
},
|
|
4868
|
-
{
|
|
4869
|
-
"type": "expression",
|
|
4870
|
-
"name": "html_expression",
|
|
4871
|
-
"visible": false,
|
|
4872
|
-
"expression": "surveyjsEmbedHtmlMarkup({framework}, {show})"
|
|
4873
|
-
},
|
|
4874
|
-
{
|
|
4875
|
-
"type": "comment",
|
|
4876
|
-
"name": "html",
|
|
4877
|
-
"visibleIf": "{framework} <> 'knockout' or {show} <> 'window'",
|
|
4878
|
-
"description": "HTML",
|
|
4879
|
-
"readOnly": true,
|
|
4880
|
-
"rows": 1
|
|
4881
|
-
},
|
|
4882
|
-
{
|
|
4883
|
-
"type": "expression",
|
|
4884
|
-
"name": "javascript_expression",
|
|
4885
|
-
"visible": false,
|
|
4886
|
-
"expression": "surveyjsEmbedJavascriptMarkup({framework}, {theme}, {show})"
|
|
4887
|
-
},
|
|
4888
|
-
{
|
|
4889
|
-
"type": "comment",
|
|
4890
|
-
"name": "javascript",
|
|
4891
|
-
"description": "JavaScript",
|
|
4892
|
-
"readOnly": true,
|
|
4893
|
-
"rows": 14
|
|
4894
|
-
}
|
|
4895
|
-
]
|
|
4896
|
-
}
|
|
4897
|
-
],
|
|
4898
|
-
"triggers": [
|
|
4899
|
-
{
|
|
4900
|
-
"type": "copyvalue",
|
|
4901
|
-
"expression": "{scripts_expression} notempty",
|
|
4902
|
-
"setToName": "scripts",
|
|
4903
|
-
"fromName": "scripts_expression"
|
|
4904
|
-
},
|
|
4905
|
-
{
|
|
4906
|
-
"type": "copyvalue",
|
|
4907
|
-
"expression": "{html_expression} notempty",
|
|
4908
|
-
"setToName": "html",
|
|
4909
|
-
"fromName": "html_expression"
|
|
4910
|
-
},
|
|
4911
|
-
{
|
|
4912
|
-
"type": "copyvalue",
|
|
4913
|
-
"expression": "{javascript_expression} notempty",
|
|
4914
|
-
"setToName": "javascript",
|
|
4915
|
-
"fromName": "javascript_expression"
|
|
4916
|
-
}
|
|
4917
|
-
],
|
|
4918
|
-
"showNavigationButtons": "none"
|
|
4919
|
-
};
|
|
4920
|
-
|
|
4921
|
-
|
|
4922
|
-
/***/ }),
|
|
4923
|
-
|
|
4924
|
-
/***/ "./src/components/tabs/embed.scss":
|
|
4925
|
-
/*!****************************************!*\
|
|
4926
|
-
!*** ./src/components/tabs/embed.scss ***!
|
|
4927
|
-
\****************************************/
|
|
4928
|
-
/*! no static exports found */
|
|
4929
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
4930
|
-
|
|
4931
|
-
// extracted by mini-css-extract-plugin
|
|
4932
|
-
|
|
4933
|
-
/***/ }),
|
|
4934
|
-
|
|
4935
|
-
/***/ "./src/components/tabs/embed.ts":
|
|
4936
|
-
/*!**************************************!*\
|
|
4937
|
-
!*** ./src/components/tabs/embed.ts ***!
|
|
4938
|
-
\**************************************/
|
|
4939
|
-
/*! exports provided: EmbedModel, TabEmbedPlugin */
|
|
4940
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4941
|
-
|
|
4942
|
-
"use strict";
|
|
4943
|
-
__webpack_require__.r(__webpack_exports__);
|
|
4944
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EmbedModel", function() { return EmbedModel; });
|
|
4945
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TabEmbedPlugin", function() { return TabEmbedPlugin; });
|
|
4946
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
|
|
4947
|
-
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
4948
|
-
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_1__);
|
|
4949
|
-
/* harmony import */ var _property_grid_theme_property_grid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../property-grid-theme/property-grid */ "./src/property-grid-theme/property-grid.ts");
|
|
4950
|
-
/* harmony import */ var _embed_json__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./embed-json */ "./src/components/tabs/embed-json.ts");
|
|
4951
|
-
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
__webpack_require__(/*! ./embed.scss */ "./src/components/tabs/embed.scss");
|
|
4956
|
-
var EmbedModel = /** @class */ (function (_super) {
|
|
4957
|
-
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"])(EmbedModel, _super);
|
|
4958
|
-
function EmbedModel(creator) {
|
|
4959
|
-
var _this = _super.call(this) || this;
|
|
4960
|
-
survey_core__WEBPACK_IMPORTED_MODULE_1__["FunctionFactory"].Instance.register("surveyjsEmbedScriptsMarkup", function (params) {
|
|
4961
|
-
var framework = params[0], theme = params[1];
|
|
4962
|
-
var result = "";
|
|
4963
|
-
if (framework === "jquery") {
|
|
4964
|
-
result = "<script src=\"https://unpkg.com/jquery\"></script>";
|
|
4965
|
-
}
|
|
4966
|
-
else {
|
|
4967
|
-
result = "<!-- Your platform (" + framework + ") scripts -->";
|
|
4968
|
-
}
|
|
4969
|
-
result += "\n\n";
|
|
4970
|
-
if (theme !== "bootstrap") {
|
|
4971
|
-
result += "<link href=\"https://unpkg.com/survey-" + framework + "@" + survey_core__WEBPACK_IMPORTED_MODULE_1__["Version"] + "/" + (["defaultV2", "modern"].indexOf(theme) > -1 ? theme : "survey") + ".css\" type=\"text/css\" rel=\"stylesheet\"/>";
|
|
4972
|
-
}
|
|
4973
|
-
return (result +
|
|
4974
|
-
("\n<script src=\"https://unpkg.com/survey-" + framework + "@" + survey_core__WEBPACK_IMPORTED_MODULE_1__["Version"] + "/survey." + (framework !== "knockout" ? framework : "ko") + ".min.js\"></script>"));
|
|
4975
|
-
});
|
|
4976
|
-
survey_core__WEBPACK_IMPORTED_MODULE_1__["FunctionFactory"].Instance.register("surveyjsEmbedHtmlMarkup", function (params) {
|
|
4977
|
-
var framework = params[0], show = params[1];
|
|
4978
|
-
switch (framework) {
|
|
4979
|
-
case "angular":
|
|
4980
|
-
return "<ng-app></ng-app>";
|
|
4981
|
-
case "vue":
|
|
4982
|
-
return "<div id=\"surveyContainer\"><survey" + (show === "window" ? "-window" : "") + " :survey=\"survey\"/></div>";
|
|
4983
|
-
default:
|
|
4984
|
-
return '<div id="surveyContainer"></div>';
|
|
4985
|
-
}
|
|
4986
|
-
});
|
|
4987
|
-
survey_core__WEBPACK_IMPORTED_MODULE_1__["FunctionFactory"].Instance.register("surveyjsEmbedJavascriptMarkup", function (params) {
|
|
4988
|
-
var framework = params[0], theme = params[1], show = params[2];
|
|
4989
|
-
var result = "Survey.StylesManager.applyTheme(\"" + theme + "\");\n\n";
|
|
4990
|
-
result += "var surveyJSON = " + JSON.stringify(creator.JSON) + ";\n\n";
|
|
4991
|
-
result +=
|
|
4992
|
-
'function sendDataToServer(survey) {\n //send Ajax request to your web server\n alert("The results are: " + JSON.stringify(survey.data));\n}\n\n';
|
|
4993
|
-
var window = show === "window" ? "Window" : "";
|
|
4994
|
-
switch (framework) {
|
|
4995
|
-
case "angular":
|
|
4996
|
-
result += "@Component({\n selector: \"ng-app\",\n template: '<div id=\"surveyElement\"></div>'\n})";
|
|
4997
|
-
result += "\nexport class AppComponent {\n ngOnInit() {\n var survey = new Survey.Model(surveyJSON);\n survey.onComplete.add(sendDataToServer);\n Survey.Survey" + window + "NG.render(\"surveyElement\", { model: survey });\n }\n}";
|
|
4998
|
-
break;
|
|
4999
|
-
case "jquery":
|
|
5000
|
-
result += "var survey = new Survey.Model(surveyJSON);\n";
|
|
5001
|
-
result += "$(\"#surveyContainer\").Survey" + window + "({\n model: survey,\n onComplete: sendDataToServer\n});";
|
|
5002
|
-
break;
|
|
5003
|
-
case "knockout":
|
|
5004
|
-
result += "var survey = new Survey.Survey" + window + "(surveyJSON);\n";
|
|
5005
|
-
result += show === "window" ? "survey.show();\n" : "";
|
|
5006
|
-
result += "survey.onComplete.add(sendDataToServer);\n";
|
|
5007
|
-
result += show !== "window" ? "survey.render(\"surveyContainer\");" : "";
|
|
5008
|
-
break;
|
|
5009
|
-
case "react":
|
|
5010
|
-
result += "ReactDOM.render(<Survey.Survey" + window + " json={ surveyJSON } onComplete={ sendDataToServer } />, document.getElementById(\"surveyContainer\"));";
|
|
5011
|
-
break;
|
|
5012
|
-
case "vue":
|
|
5013
|
-
result +=
|
|
5014
|
-
'var survey = new Survey.Model(surveyJSON);\nsurvey.onComplete.add(sendDataToServer);\nnew Vue({ el: "#surveyContainer", data: { survey: survey } });';
|
|
5015
|
-
break;
|
|
5016
|
-
}
|
|
5017
|
-
return result;
|
|
5018
|
-
});
|
|
5019
|
-
_this.survey = creator.createSurvey(_embed_json__WEBPACK_IMPORTED_MODULE_3__["json"], "embed");
|
|
5020
|
-
_this.survey.getCss().list = {};
|
|
5021
|
-
_this.survey.css = _property_grid_theme_property_grid__WEBPACK_IMPORTED_MODULE_2__["propertyGridCss"];
|
|
5022
|
-
survey_core__WEBPACK_IMPORTED_MODULE_1__["settings"].readOnlyCommentRenderMode = "default";
|
|
5023
|
-
_this.survey.onUpdateQuestionCssClasses.add(function (_, options) {
|
|
5024
|
-
if (options.question.getType() === "comment") {
|
|
5025
|
-
options.cssClasses.title = "sv-question-embed__title";
|
|
5026
|
-
}
|
|
5027
|
-
});
|
|
5028
|
-
return _this;
|
|
5029
|
-
}
|
|
5030
|
-
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
5031
|
-
Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["property"])()
|
|
5032
|
-
], EmbedModel.prototype, "survey", void 0);
|
|
5033
|
-
return EmbedModel;
|
|
5034
|
-
}(survey_core__WEBPACK_IMPORTED_MODULE_1__["Base"]));
|
|
5035
|
-
|
|
5036
|
-
var TabEmbedPlugin = /** @class */ (function () {
|
|
5037
|
-
function TabEmbedPlugin(creator) {
|
|
5038
|
-
this.creator = creator;
|
|
5039
|
-
creator.addPluginTab("embed", this, "ed.embedSurvey");
|
|
5040
|
-
}
|
|
5041
|
-
TabEmbedPlugin.prototype.activate = function () {
|
|
5042
|
-
this.model = new EmbedModel(this.creator);
|
|
5043
|
-
};
|
|
5044
|
-
TabEmbedPlugin.prototype.deactivate = function () {
|
|
5045
|
-
this.model = undefined;
|
|
5046
|
-
return true;
|
|
5047
|
-
};
|
|
5048
|
-
return TabEmbedPlugin;
|
|
5049
|
-
}());
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
4740
|
/***/ }),
|
|
5054
4741
|
|
|
5055
4742
|
/***/ "./src/components/tabs/json-editor-ace.scss":
|
|
@@ -5272,14 +4959,13 @@ var JsonEditorBaseModel = /** @class */ (function (_super) {
|
|
|
5272
4959
|
var _this = this;
|
|
5273
4960
|
if (!this.errorListValue) {
|
|
5274
4961
|
this.errorListValue = new survey_core__WEBPACK_IMPORTED_MODULE_1__["ListModel"]([], function (action) {
|
|
5275
|
-
var error = action.data;
|
|
4962
|
+
var error = action.data.error;
|
|
5276
4963
|
if (!!error)
|
|
5277
4964
|
_this.gotoError(error.at, error.rowAt, error.columnAt);
|
|
5278
4965
|
}, false);
|
|
5279
4966
|
this.errorListValue.searchEnabled = false;
|
|
5280
4967
|
this.errorListValue.cssClasses = {
|
|
5281
4968
|
item: "svc-json-errors__item",
|
|
5282
|
-
itemIcon: "svc-json-error__icon",
|
|
5283
4969
|
itemBody: "svc-json-error",
|
|
5284
4970
|
itemsContainer: "svc-json-errors"
|
|
5285
4971
|
};
|
|
@@ -5301,6 +4987,7 @@ var JsonEditorBaseModel = /** @class */ (function (_super) {
|
|
|
5301
4987
|
};
|
|
5302
4988
|
JsonEditorBaseModel.prototype.gotoError = function (at, row, column) { };
|
|
5303
4989
|
JsonEditorBaseModel.prototype.createErrorActions = function (errors) {
|
|
4990
|
+
var _this = this;
|
|
5304
4991
|
var res = [];
|
|
5305
4992
|
var counter = 1;
|
|
5306
4993
|
errors.forEach(function (error) {
|
|
@@ -5313,11 +5000,21 @@ var JsonEditorBaseModel = /** @class */ (function (_super) {
|
|
|
5313
5000
|
var at = error.at;
|
|
5314
5001
|
res.push(new survey_core__WEBPACK_IMPORTED_MODULE_1__["Action"]({
|
|
5315
5002
|
id: "error_" + counter++,
|
|
5003
|
+
component: "json-error-item",
|
|
5316
5004
|
title: title,
|
|
5317
5005
|
tooltip: error.text,
|
|
5318
5006
|
iconName: "icon-error",
|
|
5319
5007
|
iconSize: 16,
|
|
5320
|
-
data:
|
|
5008
|
+
data: {
|
|
5009
|
+
error: error,
|
|
5010
|
+
showFixButton: error.isFixable,
|
|
5011
|
+
fixError: function () {
|
|
5012
|
+
_this.text = error.fixError(_this.text);
|
|
5013
|
+
},
|
|
5014
|
+
fixButtonIcon: "icon-fix",
|
|
5015
|
+
//todo
|
|
5016
|
+
fixButtonTitle: "Fix error"
|
|
5017
|
+
}
|
|
5321
5018
|
}));
|
|
5322
5019
|
});
|
|
5323
5020
|
return res;
|
|
@@ -7517,6 +7214,7 @@ var logicCss = {
|
|
|
7517
7214
|
tableWrapper: "",
|
|
7518
7215
|
mainRoot: "sl-question st-row__question st-scrollable",
|
|
7519
7216
|
root: "sl-table st-matrixdynamic",
|
|
7217
|
+
noHeader: "",
|
|
7520
7218
|
row: "sl-table__row",
|
|
7521
7219
|
rowAdditional: "sl-table__row--additional",
|
|
7522
7220
|
cell: "sl-table__cell",
|
|
@@ -10256,6 +9954,14 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["ComponentCollection"].Instance.add({
|
|
|
10256
9954
|
titleLocation: "hidden",
|
|
10257
9955
|
descriptionLocation: "hidden"
|
|
10258
9956
|
},
|
|
9957
|
+
{
|
|
9958
|
+
type: "colorsettings",
|
|
9959
|
+
name: "placeholdercolor",
|
|
9960
|
+
colorTitle: Object(_editorLocalization__WEBPACK_IMPORTED_MODULE_1__["getLocString"])("theme.placeholderColor"),
|
|
9961
|
+
colorTitleLocation: "left",
|
|
9962
|
+
titleLocation: "hidden",
|
|
9963
|
+
descriptionLocation: "hidden"
|
|
9964
|
+
},
|
|
10259
9965
|
{
|
|
10260
9966
|
type: "spinedit",
|
|
10261
9967
|
name: "size",
|
|
@@ -10271,6 +9977,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["ComponentCollection"].Instance.add({
|
|
|
10271
9977
|
onCreated: function (question) {
|
|
10272
9978
|
var color = question.contentPanel.getQuestionByName("color");
|
|
10273
9979
|
color.visible = question.name !== "surveyTitle";
|
|
9980
|
+
var placeholderColor = question.contentPanel.getQuestionByName("placeholdercolor");
|
|
9981
|
+
placeholderColor.visible = question.name === "editorFont";
|
|
10274
9982
|
},
|
|
10275
9983
|
onValueChanged: function (question, name, newValue) {
|
|
10276
9984
|
},
|
|
@@ -10282,7 +9990,7 @@ function fontsettingsToCssVariable(question, themeCssVariables) {
|
|
|
10282
9990
|
themeCssVariables["--sjs-font-" + question.name.toLocaleLowerCase() + "-" + key] = question.value[key] + (((_a = innerQ.unit) === null || _a === void 0 ? void 0 : _a.toString()) || "");
|
|
10283
9991
|
});
|
|
10284
9992
|
}
|
|
10285
|
-
function fontsettingsFromCssVariable(question, themeCssVariables, defaultColorVariable) {
|
|
9993
|
+
function fontsettingsFromCssVariable(question, themeCssVariables, defaultColorVariable, defaultPlaceholderColorVariable) {
|
|
10286
9994
|
var result = {};
|
|
10287
9995
|
Object.keys(themeCssVariables).filter(function (key) { return key.indexOf(question.name.toLocaleLowerCase()) !== -1; }).forEach(function (key) {
|
|
10288
9996
|
var propertyName = key.split("-").pop();
|
|
@@ -10291,8 +9999,13 @@ function fontsettingsFromCssVariable(question, themeCssVariables, defaultColorVa
|
|
|
10291
9999
|
if (Object.keys(result).length !== 0) {
|
|
10292
10000
|
question.value = result;
|
|
10293
10001
|
}
|
|
10294
|
-
else
|
|
10295
|
-
|
|
10002
|
+
else {
|
|
10003
|
+
if (!!defaultColorVariable) {
|
|
10004
|
+
question.contentPanel.getQuestionByName("color").value = defaultColorVariable;
|
|
10005
|
+
}
|
|
10006
|
+
if (!!defaultPlaceholderColorVariable) {
|
|
10007
|
+
question.contentPanel.getQuestionByName("placeholdercolor").value = defaultPlaceholderColorVariable;
|
|
10008
|
+
}
|
|
10296
10009
|
}
|
|
10297
10010
|
return result;
|
|
10298
10011
|
}
|
|
@@ -11120,7 +10833,7 @@ var ThemeSurveyTabViewModel = /** @class */ (function (_super) {
|
|
|
11120
10833
|
Object(_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_8__["fontsettingsFromCssVariable"])(themeEditorSurvey.getQuestionByName("pageDescription"), newCssVariables, newCssVariables["--sjs-general-dim-forecolor-light"]);
|
|
11121
10834
|
Object(_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_8__["fontsettingsFromCssVariable"])(themeEditorSurvey.getQuestionByName("questionTitle"), newCssVariables, newCssVariables["--sjs-general-forecolor"]);
|
|
11122
10835
|
Object(_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_8__["fontsettingsFromCssVariable"])(themeEditorSurvey.getQuestionByName("questionDescription"), newCssVariables, newCssVariables["--sjs-general-forecolor-light"]);
|
|
11123
|
-
Object(_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_8__["fontsettingsFromCssVariable"])(themeEditorSurvey.getQuestionByName("editorFont"), newCssVariables, newCssVariables["--sjs-general-forecolor"]);
|
|
10836
|
+
Object(_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_8__["fontsettingsFromCssVariable"])(themeEditorSurvey.getQuestionByName("editorFont"), newCssVariables, newCssVariables["--sjs-general-forecolor"], newCssVariables["--sjs-general-forecolor-light"]);
|
|
11124
10837
|
if (!!newCssVariables["--sjs-corner-radius"]) {
|
|
11125
10838
|
themeEditorSurvey.getQuestionByName("cornerRadius").value = parseFloat(newCssVariables["--sjs-corner-radius"]);
|
|
11126
10839
|
}
|
|
@@ -11466,14 +11179,16 @@ var ThemeSurveyTabViewModel = /** @class */ (function (_super) {
|
|
|
11466
11179
|
name: "--sjs-shadow-small",
|
|
11467
11180
|
descriptionLocation: "hidden",
|
|
11468
11181
|
title: Object(_editorLocalization__WEBPACK_IMPORTED_MODULE_3__["getLocString"])("theme.questionShadow"),
|
|
11469
|
-
defaultValue:
|
|
11470
|
-
|
|
11471
|
-
|
|
11472
|
-
|
|
11473
|
-
|
|
11474
|
-
|
|
11475
|
-
|
|
11476
|
-
|
|
11182
|
+
defaultValue: [
|
|
11183
|
+
{
|
|
11184
|
+
x: 0,
|
|
11185
|
+
y: 1,
|
|
11186
|
+
blur: 2,
|
|
11187
|
+
spread: 0,
|
|
11188
|
+
isInset: false,
|
|
11189
|
+
color: "rgba(0, 0, 0, 0.15)"
|
|
11190
|
+
}
|
|
11191
|
+
]
|
|
11477
11192
|
},
|
|
11478
11193
|
{
|
|
11479
11194
|
type: "expression",
|
|
@@ -11523,14 +11238,16 @@ var ThemeSurveyTabViewModel = /** @class */ (function (_super) {
|
|
|
11523
11238
|
name: "--sjs-shadow-inner",
|
|
11524
11239
|
descriptionLocation: "hidden",
|
|
11525
11240
|
title: Object(_editorLocalization__WEBPACK_IMPORTED_MODULE_3__["getLocString"])("theme.editorShadow"),
|
|
11526
|
-
defaultValue:
|
|
11527
|
-
|
|
11528
|
-
|
|
11529
|
-
|
|
11530
|
-
|
|
11531
|
-
|
|
11532
|
-
|
|
11533
|
-
|
|
11241
|
+
defaultValue: [
|
|
11242
|
+
{
|
|
11243
|
+
x: 0,
|
|
11244
|
+
y: 1,
|
|
11245
|
+
blur: 2,
|
|
11246
|
+
spread: 0,
|
|
11247
|
+
isInset: true,
|
|
11248
|
+
color: "rgba(0, 0, 0, 0.15)"
|
|
11249
|
+
}
|
|
11250
|
+
]
|
|
11534
11251
|
}, {
|
|
11535
11252
|
type: "expression",
|
|
11536
11253
|
name: "--sjs-general-backcolor-dim-light",
|
|
@@ -12161,9 +11878,11 @@ var translationCss = {
|
|
|
12161
11878
|
mainRoot: "st-question st-row__question st-scrollable",
|
|
12162
11879
|
tableWrapper: "st-matrix",
|
|
12163
11880
|
root: "st-table",
|
|
11881
|
+
noHeader: "st-table--no-header",
|
|
12164
11882
|
rowError: "st-matrix__row--error",
|
|
12165
11883
|
cell: "st-table__cell st-matrix__cell",
|
|
12166
11884
|
headerCell: "st-table__cell st-table__cell--header",
|
|
11885
|
+
rowTextCell: "st-table__cell st-table__cell--row-text",
|
|
12167
11886
|
label: "st-item st-radio st-matrix__label",
|
|
12168
11887
|
itemValue: "st-visuallyhidden st-item__control st-radio__control",
|
|
12169
11888
|
itemChecked: "st-radio--checked",
|
|
@@ -12178,14 +11897,18 @@ var translationCss = {
|
|
|
12178
11897
|
matrixdropdown: {
|
|
12179
11898
|
mainRoot: "st-question st-row__question st-scrollable",
|
|
12180
11899
|
root: "st-table",
|
|
11900
|
+
noHeader: "st-table--no-header",
|
|
12181
11901
|
cell: "st-table__cell",
|
|
12182
|
-
headerCell: "st-table__cell st-table__cell--header"
|
|
11902
|
+
headerCell: "st-table__cell st-table__cell--header",
|
|
11903
|
+
rowTextCell: "st-table__cell st-table__cell--row-text"
|
|
12183
11904
|
},
|
|
12184
11905
|
matrixdynamic: {
|
|
12185
11906
|
mainRoot: "st-question st-row__question st-scrollable",
|
|
12186
11907
|
root: "st-table st-matrixdynamic",
|
|
11908
|
+
noHeader: "st-table--no-header",
|
|
12187
11909
|
cell: "st-table__cell",
|
|
12188
11910
|
headerCell: "st-table__cell st-table__cell--header",
|
|
11911
|
+
rowTextCell: "st-table__cell st-table__cell--row-text",
|
|
12189
11912
|
button: "st-btn",
|
|
12190
11913
|
detailRow: "st-table__row st-table__row--detail",
|
|
12191
11914
|
detailButton: "st-table__cell--detail-button",
|
|
@@ -13113,9 +12836,11 @@ var Translation = /** @class */ (function (_super) {
|
|
|
13113
12836
|
}
|
|
13114
12837
|
};
|
|
13115
12838
|
Translation.prototype.getStringsSurveyQuestionName = function (group, parent) {
|
|
13116
|
-
|
|
13117
|
-
|
|
13118
|
-
|
|
12839
|
+
var name = group.name + (group.obj.name == group.name || group.isRoot ? "_props" : "");
|
|
12840
|
+
if (!!parent && parent !== this.root) {
|
|
12841
|
+
name = parent.name + "_" + name;
|
|
12842
|
+
}
|
|
12843
|
+
return name;
|
|
13119
12844
|
};
|
|
13120
12845
|
Translation.prototype.getStringsSurveyData = function (survey) {
|
|
13121
12846
|
var res = {};
|
|
@@ -13567,7 +13292,6 @@ var ToolboxToolViewModel = /** @class */ (function (_super) {
|
|
|
13567
13292
|
_this.creator.clickToolboxItem(_this.item.json);
|
|
13568
13293
|
};
|
|
13569
13294
|
_this.onPointerUp = function (pointerUpEvent) {
|
|
13570
|
-
_this.creator.onDragDropItemEnd();
|
|
13571
13295
|
_this._node.classList.remove("svc-toolbox__tool--pressed");
|
|
13572
13296
|
_this._node = null;
|
|
13573
13297
|
document.removeEventListener("pointerup", _this.onPointerUp);
|
|
@@ -13588,6 +13312,7 @@ var ToolboxToolViewModel = /** @class */ (function (_super) {
|
|
|
13588
13312
|
configurable: true
|
|
13589
13313
|
});
|
|
13590
13314
|
ToolboxToolViewModel.prototype.onPointerDown = function (pointerDownEvent) {
|
|
13315
|
+
var _a;
|
|
13591
13316
|
if (!this.allowAdd)
|
|
13592
13317
|
return;
|
|
13593
13318
|
if (this.item.id.indexOf("dotsItem-id") === 0)
|
|
@@ -13596,7 +13321,7 @@ var ToolboxToolViewModel = /** @class */ (function (_super) {
|
|
|
13596
13321
|
this._node = pointerDownEvent.currentTarget;
|
|
13597
13322
|
this._node.classList.add("svc-toolbox__tool--pressed");
|
|
13598
13323
|
document.addEventListener("pointerup", this.onPointerUp);
|
|
13599
|
-
this.creator.onDragDropItemStart();
|
|
13324
|
+
(_a = this.creator) === null || _a === void 0 ? void 0 : _a.onDragDropItemStart();
|
|
13600
13325
|
};
|
|
13601
13326
|
Object.defineProperty(ToolboxToolViewModel.prototype, "dragDropHelper", {
|
|
13602
13327
|
get: function () {
|
|
@@ -13663,22 +13388,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13663
13388
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./utils/utils */ "./src/utils/utils.ts");
|
|
13664
13389
|
/* harmony import */ var _survey_helper__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./survey-helper */ "./src/survey-helper.ts");
|
|
13665
13390
|
/* harmony import */ var _selection_history__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./selection-history */ "./src/selection-history.ts");
|
|
13666
|
-
/* harmony import */ var
|
|
13667
|
-
/* harmony import */ var
|
|
13668
|
-
/* harmony import */ var
|
|
13669
|
-
/* harmony import */ var
|
|
13670
|
-
/* harmony import */ var
|
|
13671
|
-
/* harmony import */ var
|
|
13672
|
-
/* harmony import */ var
|
|
13673
|
-
/* harmony import */ var
|
|
13674
|
-
/* harmony import */ var
|
|
13675
|
-
/* harmony import */ var
|
|
13676
|
-
/* harmony import */ var
|
|
13677
|
-
/* harmony import */ var
|
|
13678
|
-
/* harmony import */ var
|
|
13679
|
-
/* harmony import */ var
|
|
13680
|
-
/* harmony import */ var _survey_elements__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./survey-elements */ "./src/survey-elements.ts");
|
|
13681
|
-
|
|
13391
|
+
/* harmony import */ var _components_tabs_json_editor_ace__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./components/tabs/json-editor-ace */ "./src/components/tabs/json-editor-ace.ts");
|
|
13392
|
+
/* harmony import */ var _components_tabs_json_editor_textarea__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./components/tabs/json-editor-textarea */ "./src/components/tabs/json-editor-textarea.ts");
|
|
13393
|
+
/* harmony import */ var _components_tabs_test_plugin__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./components/tabs/test-plugin */ "./src/components/tabs/test-plugin.ts");
|
|
13394
|
+
/* harmony import */ var _components_tabs_logic__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./components/tabs/logic */ "./src/components/tabs/logic.ts");
|
|
13395
|
+
/* harmony import */ var _components_tabs_translation_plugin__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./components/tabs/translation-plugin */ "./src/components/tabs/translation-plugin.ts");
|
|
13396
|
+
/* harmony import */ var _components_tabs_logic_plugin__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./components/tabs/logic-plugin */ "./src/components/tabs/logic-plugin.ts");
|
|
13397
|
+
/* harmony import */ var _plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./plugins/undo-redo */ "./src/plugins/undo-redo/index.ts");
|
|
13398
|
+
/* harmony import */ var _components_tabs_designer_plugin__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./components/tabs/designer-plugin */ "./src/components/tabs/designer-plugin.ts");
|
|
13399
|
+
/* harmony import */ var _creator_responsivity_manager__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./creator-responsivity-manager */ "./src/creator-responsivity-manager.ts");
|
|
13400
|
+
/* harmony import */ var _components_side_bar_side_bar_model__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./components/side-bar/side-bar-model */ "./src/components/side-bar/side-bar-model.ts");
|
|
13401
|
+
/* harmony import */ var _src_components_tabs_translation__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../src/components/tabs/translation */ "./src/components/tabs/translation.ts");
|
|
13402
|
+
/* harmony import */ var _components_string_editor__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./components/string-editor */ "./src/components/string-editor.ts");
|
|
13403
|
+
/* harmony import */ var _components_tabs_theme_plugin__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./components/tabs/theme-plugin */ "./src/components/tabs/theme-plugin.ts");
|
|
13404
|
+
/* harmony import */ var _survey_elements__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./survey-elements */ "./src/survey-elements.ts");
|
|
13682
13405
|
|
|
13683
13406
|
|
|
13684
13407
|
|
|
@@ -14573,7 +14296,7 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
14573
14296
|
_this.tabbedMenu = new TabbedMenuContainer();
|
|
14574
14297
|
_this.tabbedMenu.locOwner = _this;
|
|
14575
14298
|
_this.selectionHistoryControllerValue = new _selection_history__WEBPACK_IMPORTED_MODULE_10__["SelectionHistory"](_this);
|
|
14576
|
-
_this.sidebar = new
|
|
14299
|
+
_this.sidebar = new _components_side_bar_side_bar_model__WEBPACK_IMPORTED_MODULE_20__["SidebarModel"](_this);
|
|
14577
14300
|
_this.setOptions(_this.options);
|
|
14578
14301
|
_this.patchMetadata();
|
|
14579
14302
|
_this.initSurveyWithJSON(undefined, false);
|
|
@@ -14633,13 +14356,6 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
14633
14356
|
configurable: true
|
|
14634
14357
|
});
|
|
14635
14358
|
Object.defineProperty(CreatorBase.prototype, "haveCommercialLicense", {
|
|
14636
|
-
/**
|
|
14637
|
-
* Removes the Free Trial bar.
|
|
14638
|
-
*
|
|
14639
|
-
* Default value: `false`
|
|
14640
|
-
*
|
|
14641
|
-
* > You can enable this property only if you have a Survey Creator commercial license. It is illegal to enable this property without a license.
|
|
14642
|
-
*/
|
|
14643
14359
|
get: function () {
|
|
14644
14360
|
if (!!survey_core__WEBPACK_IMPORTED_MODULE_1__["hasLicense"] && Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["hasLicense"])(1))
|
|
14645
14361
|
return true;
|
|
@@ -15245,32 +14961,29 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
15245
14961
|
}
|
|
15246
14962
|
};
|
|
15247
14963
|
CreatorBase.prototype.initPlugins = function () {
|
|
15248
|
-
this.addPlugin("undoredo", new
|
|
14964
|
+
this.addPlugin("undoredo", new _plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__["UndoRedoPlugin"](this));
|
|
15249
14965
|
if (this.showDesignerTab) {
|
|
15250
|
-
new
|
|
14966
|
+
new _components_tabs_designer_plugin__WEBPACK_IMPORTED_MODULE_18__["TabDesignerPlugin"](this);
|
|
15251
14967
|
}
|
|
15252
14968
|
if (this.showPreviewTab) {
|
|
15253
|
-
new
|
|
14969
|
+
new _components_tabs_test_plugin__WEBPACK_IMPORTED_MODULE_13__["TabTestPlugin"](this);
|
|
15254
14970
|
}
|
|
15255
14971
|
if (this.showThemeTab) {
|
|
15256
|
-
new
|
|
14972
|
+
new _components_tabs_theme_plugin__WEBPACK_IMPORTED_MODULE_23__["TabThemePlugin"](this);
|
|
15257
14973
|
}
|
|
15258
14974
|
if (this.showLogicTab) {
|
|
15259
|
-
new
|
|
14975
|
+
new _components_tabs_logic_plugin__WEBPACK_IMPORTED_MODULE_16__["TabLogicPlugin"](this);
|
|
15260
14976
|
}
|
|
15261
14977
|
if (this.showJSONEditorTab) {
|
|
15262
|
-
if (
|
|
15263
|
-
new
|
|
14978
|
+
if (_components_tabs_json_editor_ace__WEBPACK_IMPORTED_MODULE_11__["TabJsonEditorAcePlugin"].hasAceEditor()) {
|
|
14979
|
+
new _components_tabs_json_editor_ace__WEBPACK_IMPORTED_MODULE_11__["TabJsonEditorAcePlugin"](this);
|
|
15264
14980
|
}
|
|
15265
14981
|
else {
|
|
15266
|
-
new
|
|
14982
|
+
new _components_tabs_json_editor_textarea__WEBPACK_IMPORTED_MODULE_12__["TabJsonEditorTextareaPlugin"](this);
|
|
15267
14983
|
}
|
|
15268
14984
|
}
|
|
15269
|
-
if (this.showEmbeddedSurveyTab) {
|
|
15270
|
-
new _components_tabs_embed__WEBPACK_IMPORTED_MODULE_11__["TabEmbedPlugin"](this);
|
|
15271
|
-
}
|
|
15272
14985
|
if (this.showTranslationTab) {
|
|
15273
|
-
new
|
|
14986
|
+
new _components_tabs_translation_plugin__WEBPACK_IMPORTED_MODULE_15__["TabTranslationPlugin"](this);
|
|
15274
14987
|
}
|
|
15275
14988
|
};
|
|
15276
14989
|
CreatorBase.prototype.initFooterToolbar = function () {
|
|
@@ -15458,9 +15171,9 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
15458
15171
|
};
|
|
15459
15172
|
CreatorBase.prototype.initDragDropSurveyElements = function () {
|
|
15460
15173
|
var _this = this;
|
|
15461
|
-
|
|
15174
|
+
_survey_elements__WEBPACK_IMPORTED_MODULE_24__["DragDropSurveyElements"].restrictDragQuestionBetweenPages =
|
|
15462
15175
|
_creator_settings__WEBPACK_IMPORTED_MODULE_2__["settings"].dragDrop.restrictDragQuestionBetweenPages;
|
|
15463
|
-
this.dragDropSurveyElements = new
|
|
15176
|
+
this.dragDropSurveyElements = new _survey_elements__WEBPACK_IMPORTED_MODULE_24__["DragDropSurveyElements"](null, this);
|
|
15464
15177
|
var isDraggedFromToolbox = false;
|
|
15465
15178
|
this.dragDropSurveyElements.onDragStart.add(function (sender, options) {
|
|
15466
15179
|
isDraggedFromToolbox = !sender.draggedElement.parent;
|
|
@@ -15558,7 +15271,7 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
15558
15271
|
this.surveyLogicRenaming = false;
|
|
15559
15272
|
};
|
|
15560
15273
|
CreatorBase.prototype.createSurveyLogicForUpdate = function () {
|
|
15561
|
-
return new
|
|
15274
|
+
return new _components_tabs_logic__WEBPACK_IMPORTED_MODULE_14__["SurveyLogic"](this.survey, this);
|
|
15562
15275
|
};
|
|
15563
15276
|
CreatorBase.prototype.updateLogicOnQuestionNameChanged = function (oldName, newName) {
|
|
15564
15277
|
if (oldName === newName || !_creator_settings__WEBPACK_IMPORTED_MODULE_2__["settings"].logic.updateExpressionsOnChanging.questionName)
|
|
@@ -15600,19 +15313,18 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
15600
15313
|
CreatorBase.prototype.onDragDropItemStart = function () {
|
|
15601
15314
|
this.addNewElementReason = "DROPPED_FROM_TOOLBOX";
|
|
15602
15315
|
};
|
|
15603
|
-
CreatorBase.prototype.onDragDropItemEnd = function () {
|
|
15604
|
-
this.addNewElementReason = undefined;
|
|
15605
|
-
};
|
|
15606
15316
|
CreatorBase.prototype.doOnQuestionAdded = function (question, parentPanel) {
|
|
15607
15317
|
question.name = this.generateUniqueName(question, question.name);
|
|
15608
15318
|
var page = this.getPageByElement(question);
|
|
15609
15319
|
var options = { question: question, page: page, reason: this.addNewElementReason };
|
|
15320
|
+
this.addNewElementReason = undefined;
|
|
15610
15321
|
this.onQuestionAdded.fire(this, options);
|
|
15611
15322
|
};
|
|
15612
15323
|
CreatorBase.prototype.doOnPanelAdded = function (panel, parentPanel) {
|
|
15613
15324
|
var page = this.getPageByElement(panel);
|
|
15614
15325
|
var options = { panel: panel, page: page, reason: this.addNewElementReason };
|
|
15615
15326
|
this.onPanelAdded.fire(this, options);
|
|
15327
|
+
this.addNewElementReason = undefined;
|
|
15616
15328
|
};
|
|
15617
15329
|
CreatorBase.prototype.doOnPageAdded = function (page) {
|
|
15618
15330
|
var options = { page: page };
|
|
@@ -15927,7 +15639,7 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
15927
15639
|
survey.addNewPage("p1");
|
|
15928
15640
|
survey.pages[0].addElement(element);
|
|
15929
15641
|
}
|
|
15930
|
-
var logic = new
|
|
15642
|
+
var logic = new _components_tabs_logic__WEBPACK_IMPORTED_MODULE_14__["SurveyLogic"](survey);
|
|
15931
15643
|
for (var key in this.newQuestionChangedNames) {
|
|
15932
15644
|
logic.renameQuestion(key, this.newQuestionChangedNames[key]);
|
|
15933
15645
|
}
|
|
@@ -16061,8 +15773,10 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
16061
15773
|
else {
|
|
16062
15774
|
this.survey.pages.push(newPage);
|
|
16063
15775
|
}
|
|
16064
|
-
|
|
16065
|
-
|
|
15776
|
+
newPage.questions.forEach(function (q) {
|
|
15777
|
+
_this.addNewElementReason = "ELEMENT_COPIED";
|
|
15778
|
+
_this.doOnQuestionAdded(q, q.parent);
|
|
15779
|
+
});
|
|
16066
15780
|
var panels = newPage.getPanels();
|
|
16067
15781
|
if (Array.isArray(panels))
|
|
16068
15782
|
panels.forEach(function (p) { return _this.doOnPanelAdded(p, p.parent); });
|
|
@@ -16118,7 +15832,7 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
16118
15832
|
}
|
|
16119
15833
|
if (!questions)
|
|
16120
15834
|
return;
|
|
16121
|
-
var logic = new
|
|
15835
|
+
var logic = new _components_tabs_logic__WEBPACK_IMPORTED_MODULE_14__["SurveyLogic"](this.survey, this);
|
|
16122
15836
|
for (var i = 0; i < questions.length; i++) {
|
|
16123
15837
|
logic.removeQuestion(questions[i].getValueName());
|
|
16124
15838
|
}
|
|
@@ -16160,7 +15874,7 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
16160
15874
|
if (!selEl)
|
|
16161
15875
|
selEl = this.getSelectedSurveyElement();
|
|
16162
15876
|
setTimeout(function () {
|
|
16163
|
-
if (focus &&
|
|
15877
|
+
if (!!selEl && (focus || startEdit && (!selEl.hasTitle || selEl.isPanel))) {
|
|
16164
15878
|
var el = document.getElementById(selEl.id);
|
|
16165
15879
|
if (!!el) {
|
|
16166
15880
|
el.scrollIntoView({ block: "center" });
|
|
@@ -16171,7 +15885,7 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
16171
15885
|
}
|
|
16172
15886
|
}
|
|
16173
15887
|
if (startEdit && !!element) {
|
|
16174
|
-
|
|
15888
|
+
_components_string_editor__WEBPACK_IMPORTED_MODULE_22__["StringEditorConnector"].get(element.locTitle).activateEditor();
|
|
16175
15889
|
}
|
|
16176
15890
|
}, 100);
|
|
16177
15891
|
};
|
|
@@ -16305,7 +16019,7 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
16305
16019
|
* @param locale A locale code (for example, "en").
|
|
16306
16020
|
*/
|
|
16307
16021
|
CreatorBase.prototype.deleteLocaleStrings = function (locale) {
|
|
16308
|
-
var translation = new
|
|
16022
|
+
var translation = new _src_components_tabs_translation__WEBPACK_IMPORTED_MODULE_21__["Translation"](this.survey);
|
|
16309
16023
|
translation.deleteLocaleStrings(locale);
|
|
16310
16024
|
};
|
|
16311
16025
|
CreatorBase.prototype.getPropertyGridExpandedCategory = function () {
|
|
@@ -16676,12 +16390,13 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
16676
16390
|
this.onConditionGetTitle.fire(this, options);
|
|
16677
16391
|
return options.title;
|
|
16678
16392
|
};
|
|
16679
|
-
CreatorBase.prototype.isConditionOperatorEnabled = function (questionName,
|
|
16393
|
+
CreatorBase.prototype.isConditionOperatorEnabled = function (questionName, question, operator, isEnabled) {
|
|
16680
16394
|
if (this.onGetConditionOperator.isEmpty)
|
|
16681
16395
|
return isEnabled;
|
|
16682
16396
|
var options = {
|
|
16683
16397
|
questionName: questionName,
|
|
16684
|
-
|
|
16398
|
+
question: question,
|
|
16399
|
+
questionType: !!question ? question.getType() : "",
|
|
16685
16400
|
operator: operator,
|
|
16686
16401
|
show: isEnabled
|
|
16687
16402
|
};
|
|
@@ -16956,7 +16671,7 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
16956
16671
|
}
|
|
16957
16672
|
};
|
|
16958
16673
|
CreatorBase.prototype.initResponsivityManager = function (container) {
|
|
16959
|
-
this.responsivityManager = new
|
|
16674
|
+
this.responsivityManager = new _creator_responsivity_manager__WEBPACK_IMPORTED_MODULE_19__["CreatorResponsivityManager"](container, this);
|
|
16960
16675
|
};
|
|
16961
16676
|
CreatorBase.prototype.resetResponsivityManager = function () {
|
|
16962
16677
|
if (!!this.responsivityManager) {
|
|
@@ -16991,9 +16706,6 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
16991
16706
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
16992
16707
|
Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: false })
|
|
16993
16708
|
], CreatorBase.prototype, "showThemeTab", void 0);
|
|
16994
|
-
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
16995
|
-
Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: false })
|
|
16996
|
-
], CreatorBase.prototype, "showEmbeddedSurveyTab", void 0);
|
|
16997
16709
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
16998
16710
|
Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: false })
|
|
16999
16711
|
], CreatorBase.prototype, "showTranslationTab", void 0);
|
|
@@ -17043,28 +16755,28 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
17043
16755
|
Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: true })
|
|
17044
16756
|
], CreatorBase.prototype, "showToolboxValue", void 0);
|
|
17045
16757
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17046
|
-
Object(
|
|
16758
|
+
Object(_plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__["undoRedoTransaction"])()
|
|
17047
16759
|
], CreatorBase.prototype, "addPage", null);
|
|
17048
16760
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17049
|
-
Object(
|
|
16761
|
+
Object(_plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__["ignoreUndoRedo"])()
|
|
17050
16762
|
], CreatorBase.prototype, "doOnQuestionAdded", null);
|
|
17051
16763
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17052
|
-
Object(
|
|
16764
|
+
Object(_plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__["ignoreUndoRedo"])()
|
|
17053
16765
|
], CreatorBase.prototype, "doOnPanelAdded", null);
|
|
17054
16766
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17055
|
-
Object(
|
|
16767
|
+
Object(_plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__["ignoreUndoRedo"])()
|
|
17056
16768
|
], CreatorBase.prototype, "doOnPageAdded", null);
|
|
17057
16769
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17058
|
-
Object(
|
|
16770
|
+
Object(_plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__["undoRedoTransaction"])()
|
|
17059
16771
|
], CreatorBase.prototype, "deleteObject", null);
|
|
17060
16772
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17061
16773
|
Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: false })
|
|
17062
16774
|
], CreatorBase.prototype, "showSaveButton", void 0);
|
|
17063
16775
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17064
|
-
Object(
|
|
16776
|
+
Object(_plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__["undoRedoTransaction"])()
|
|
17065
16777
|
], CreatorBase.prototype, "convertCurrentQuestion", null);
|
|
17066
16778
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17067
|
-
Object(
|
|
16779
|
+
Object(_plugins_undo_redo__WEBPACK_IMPORTED_MODULE_17__["undoRedoTransaction"])()
|
|
17068
16780
|
], CreatorBase.prototype, "addNewQuestionInPage", null);
|
|
17069
16781
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
|
|
17070
16782
|
Object(survey_core__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: false })
|
|
@@ -17673,7 +17385,7 @@ var EmptySurveyCreatorOptions = /** @class */ (function () {
|
|
|
17673
17385
|
EmptySurveyCreatorOptions.prototype.onConditionGetTitleCallback = function (expression, title) {
|
|
17674
17386
|
return title;
|
|
17675
17387
|
};
|
|
17676
|
-
EmptySurveyCreatorOptions.prototype.isConditionOperatorEnabled = function (questionName,
|
|
17388
|
+
EmptySurveyCreatorOptions.prototype.isConditionOperatorEnabled = function (questionName, question, operator, isEnabled) { return isEnabled; };
|
|
17677
17389
|
EmptySurveyCreatorOptions.prototype.onLogicGetTitleCallback = function (expression, displayExpression, text, logicItem) { return text; };
|
|
17678
17390
|
EmptySurveyCreatorOptions.prototype.getTranslationExportedText = function (obj, name, locString, locale, text) { return text; };
|
|
17679
17391
|
EmptySurveyCreatorOptions.prototype.uploadFiles = function (files, question, uploadingCallback) { };
|
|
@@ -17728,7 +17440,10 @@ var QuestionColorModel = /** @class */ (function (_super) {
|
|
|
17728
17440
|
if (newValue == undefined || newValue == null)
|
|
17729
17441
|
return newValue;
|
|
17730
17442
|
newValue = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_2__["parseColor"])(newValue !== null && newValue !== void 0 ? newValue : "").color;
|
|
17731
|
-
|
|
17443
|
+
if (newValue.indexOf("#") < 0) {
|
|
17444
|
+
newValue = "#" + newValue;
|
|
17445
|
+
}
|
|
17446
|
+
newValue = (newValue.match(/#([0-9a-fA-F]){1,6}/) || [DEFAULT_COLOR])[0];
|
|
17732
17447
|
if (newValue.length === 4) {
|
|
17733
17448
|
for (var i = 1; i < 4; i++) {
|
|
17734
17449
|
newValue += newValue[i];
|
|
@@ -18117,7 +17832,9 @@ var QuestionSpinEditorModel = /** @class */ (function (_super) {
|
|
|
18117
17832
|
this.changeValue(false);
|
|
18118
17833
|
};
|
|
18119
17834
|
QuestionSpinEditorModel.prototype.onBeforeInput = function (event) {
|
|
18120
|
-
|
|
17835
|
+
var target = event.target;
|
|
17836
|
+
var regex = target.selectionStart == 0 ? /[\d.-]/ : /[\d.]/;
|
|
17837
|
+
if (!!event.data && !regex.test(event.data)) {
|
|
18121
17838
|
event.preventDefault();
|
|
18122
17839
|
}
|
|
18123
17840
|
};
|
|
@@ -18652,7 +18369,7 @@ var __spreadArray = function (to, from) {
|
|
|
18652
18369
|
/*!******************************!*\
|
|
18653
18370
|
!*** ./src/entries/index.ts ***!
|
|
18654
18371
|
\******************************/
|
|
18655
|
-
/*! exports provided: Version, enStrings, editorLocalization, defaultStrings, localization, QuestionConvertMode, settings, EmptySurveyCreatorOptions, CreatorAction, TabbedMenuItem, TabbedMenuContainer, ToolbarActionContainer, CreatorEvent, CreatorBase, SurveyCreatorModel, StylesManager, initializeDesignTimeSurveyModel, editableStringRendererName, getElementWrapperComponentName, getQuestionContentWrapperComponentName, getElementWrapperComponentData, getItemValueWrapperComponentName, getItemValueWrapperComponentData, isStringEditable, isTextInput, registerAdorner, removeAdorners, CreatorResponsivityManager,
|
|
18372
|
+
/*! exports provided: Version, enStrings, editorLocalization, defaultStrings, localization, QuestionConvertMode, settings, EmptySurveyCreatorOptions, CreatorAction, TabbedMenuItem, TabbedMenuContainer, ToolbarActionContainer, CreatorEvent, CreatorBase, SurveyCreatorModel, StylesManager, initializeDesignTimeSurveyModel, editableStringRendererName, getElementWrapperComponentName, getQuestionContentWrapperComponentName, getElementWrapperComponentData, getItemValueWrapperComponentName, getItemValueWrapperComponentData, isStringEditable, isTextInput, registerAdorner, removeAdorners, CreatorResponsivityManager, AceJsonEditorModel, TabJsonEditorAcePlugin, JsonEditorBaseModel, TabJsonEditorBasePlugin, TextareaJsonEditorModel, TabJsonEditorTextareaPlugin, TestSurveyTabViewModel, TabTestPlugin, createColor, createBoxShadow, parseBoxShadow, DefaultFonts, fontsettingsToCssVariable, fontsettingsFromCssVariable, elementSettingsToCssVariable, elementSettingsFromCssVariable, Themes, PredefinedThemes, PredefinedColors, ThemeSurveyTabViewModel, TabThemePlugin, initLogicOperator, LogicEvent, SurveyLogic, TranslationItemBase, TranslationItemString, TranslationItem, TranslationGroup, Translation, translationCss, TabTranslationPlugin, initialSettingsAllowShowEmptyTitleInDesignMode, TabDesignerViewModel, TabDesignerPlugin, SurveyLogicUI, TabLogicPlugin, logicCss, ToolboxToolViewModel, PageNavigatorViewModel, PageAdorner, RowViewModel, QuestionAdornerViewModel, QuestionDropdownAdornerViewModel, QuestionImageAdornerViewModel, QuestionRatingAdornerViewModel, ItemValueWrapperViewModel, ImageItemValueWrapperViewModel, MatrixCellWrapperEditSurvey, MatrixCellWrapperViewModel, SurveySimulatorModel, DEFAULT_MONITOR_DPI, simulatorDevices, SurveyResultsItemModel, SurveyResultsModel, LogoImageViewModel, StringItemsNavigatorBase, StringEditorConnector, StringEditorViewModelBase, QuestionEmbeddedSurveyModel, QuestionLinkValueModel, EditorLocalization, getLocString, SurveyJSON5, QuestionSpinEditorModel, QuestionColorModel, QuestionFileEditorModel, setSurveyJSONForPropertyGrid, PropertyEditorSetupValue, PropertyGridEditorCollection, PropertyGridTitleActionsCreator, PropertyJSONGenerator, PropertyGridModel, PropertyGridEditor, PropertyGridEditorBoolean, PropertyGridEditorStringBase, PropertyGridEditorString, PropertyGridLinkEditor, PropertyGridEditorNumber, PropertyGridEditorImageSize, PropertyGridEditorText, PropertyGridEditorHtml, PropertyGridEditorColor, PropertyGridEditorStringArray, PropertyGridEditorDropdown, PropertyGridEditorSet, PropertyGridEditorPage, PropertyGridEditorQuestion, PropertyGridEditorQuestionSelectBase, PropertyGridEditorQuestionCarryForward, PropertyGridEditorQuestionValue, PropertyGridEditorExpression, PropertyGridEditorCondition, PropertyGridEditorMatrix, PropertyGridEditorMatrixItemValues, PropertyGridEditorMatrixRateValues, PropertyGridEditorMatrixColumns, PropertyGridEditorMatrixPages, PropertyGridEditorMatrixCalculatedValues, PropertyGridEditorMatrixHtmlConditions, PropertyGridEditorMatrixUrlConditions, PropertyGridEditorMatrixMutlipleTextItems, PropertyGridEditorMatrixMultipleTypes, PropertyGridEditorMatrixValidators, PropertyGridEditorMatrixTriggers, PropertyGridEditorBindings, PropertyGridViewModel, ObjectSelectorItem, ObjectSelector, ObjectSelectorModel, PropertyGridEditorQuestionRestfull, PropertyGridValueEditorBase, PropertyGridCellsEditor, PropertyGridValueEditor, PropertyGridRowValueEditor, PropertyGridPanelValueEditor, PropertyGridTriggerValueEditor, PropertyGridTriggerValueInLogicEditor, propertyGridCss, QuestionConverter, svgBundle, SurveyTextWorkerError, SurveyTextWorkerParserError, SurveyTextWorkerJsonError, SurveyTextWorker, JsonDuplicateNameError, QuestionToolboxCategory, QuestionToolboxItem, QuestionToolbox, SidebarModel, SidebarTabModel, getNextItemValue, getNextItemText, getNextValue, findParentNode, focusFirstControl, getFirstNonTextElement, getNodesFromKoComponentInfo, propertyExists, isPropertyVisible, toggleHovered, clearNewLines, select, copyObject, copyCssClasses, assignDefaultV2Classes, wrapTextByCurlyBraces, capitalize, notShortCircuitAnd, imageMimeTypes, getAcceptedTypesByContentMode, getQuestionFromObj, ingectAlpha, convertRgbaToString, parseRgbaFromString, parseColor, HSBToRGB, RGBToHSB, assign, ColorCalculator, SurveyQuestionEditorDefinition, ObjType, SurveyHelper, ResizeManager, UndoRedoPlugin, undoRedoTransaction, ignoreUndoRedo, UndoRedoManager, Transaction, UndoRedoAction, UndoRedoArrayAction, PagesController */
|
|
18656
18373
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
18657
18374
|
|
|
18658
18375
|
"use strict";
|
|
@@ -18717,419 +18434,416 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18717
18434
|
/* harmony import */ var _creator_responsivity_manager__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../creator-responsivity-manager */ "./src/creator-responsivity-manager.ts");
|
|
18718
18435
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CreatorResponsivityManager", function() { return _creator_responsivity_manager__WEBPACK_IMPORTED_MODULE_4__["CreatorResponsivityManager"]; });
|
|
18719
18436
|
|
|
18720
|
-
/* harmony import */ var
|
|
18721
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18437
|
+
/* harmony import */ var _components_tabs_json_editor_ace__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../components/tabs/json-editor-ace */ "./src/components/tabs/json-editor-ace.ts");
|
|
18438
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AceJsonEditorModel", function() { return _components_tabs_json_editor_ace__WEBPACK_IMPORTED_MODULE_5__["AceJsonEditorModel"]; });
|
|
18722
18439
|
|
|
18723
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18440
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabJsonEditorAcePlugin", function() { return _components_tabs_json_editor_ace__WEBPACK_IMPORTED_MODULE_5__["TabJsonEditorAcePlugin"]; });
|
|
18724
18441
|
|
|
18725
|
-
/* harmony import */ var
|
|
18726
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18442
|
+
/* harmony import */ var _components_tabs_json_editor_plugin__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../components/tabs/json-editor-plugin */ "./src/components/tabs/json-editor-plugin.ts");
|
|
18443
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "JsonEditorBaseModel", function() { return _components_tabs_json_editor_plugin__WEBPACK_IMPORTED_MODULE_6__["JsonEditorBaseModel"]; });
|
|
18727
18444
|
|
|
18728
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18445
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabJsonEditorBasePlugin", function() { return _components_tabs_json_editor_plugin__WEBPACK_IMPORTED_MODULE_6__["TabJsonEditorBasePlugin"]; });
|
|
18729
18446
|
|
|
18730
|
-
/* harmony import */ var
|
|
18731
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18447
|
+
/* harmony import */ var _components_tabs_json_editor_textarea__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../components/tabs/json-editor-textarea */ "./src/components/tabs/json-editor-textarea.ts");
|
|
18448
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextareaJsonEditorModel", function() { return _components_tabs_json_editor_textarea__WEBPACK_IMPORTED_MODULE_7__["TextareaJsonEditorModel"]; });
|
|
18732
18449
|
|
|
18733
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18450
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabJsonEditorTextareaPlugin", function() { return _components_tabs_json_editor_textarea__WEBPACK_IMPORTED_MODULE_7__["TabJsonEditorTextareaPlugin"]; });
|
|
18734
18451
|
|
|
18735
|
-
/* harmony import */ var
|
|
18736
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18452
|
+
/* harmony import */ var _components_tabs_test__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../components/tabs/test */ "./src/components/tabs/test.ts");
|
|
18453
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TestSurveyTabViewModel", function() { return _components_tabs_test__WEBPACK_IMPORTED_MODULE_8__["TestSurveyTabViewModel"]; });
|
|
18737
18454
|
|
|
18738
|
-
/* harmony
|
|
18455
|
+
/* harmony import */ var _components_tabs_test_plugin__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../components/tabs/test-plugin */ "./src/components/tabs/test-plugin.ts");
|
|
18456
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabTestPlugin", function() { return _components_tabs_test_plugin__WEBPACK_IMPORTED_MODULE_9__["TabTestPlugin"]; });
|
|
18739
18457
|
|
|
18740
|
-
/* harmony import */ var
|
|
18741
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18458
|
+
/* harmony import */ var _components_tabs_theme_custom_questions_color_settings__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../components/tabs/theme-custom-questions/color-settings */ "./src/components/tabs/theme-custom-questions/color-settings.ts");
|
|
18459
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "createColor", function() { return _components_tabs_theme_custom_questions_color_settings__WEBPACK_IMPORTED_MODULE_10__["createColor"]; });
|
|
18742
18460
|
|
|
18743
|
-
/* harmony import */ var
|
|
18744
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18461
|
+
/* harmony import */ var _components_tabs_theme_custom_questions_boxshadow_settings__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../components/tabs/theme-custom-questions/boxshadow-settings */ "./src/components/tabs/theme-custom-questions/boxshadow-settings.ts");
|
|
18462
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "createBoxShadow", function() { return _components_tabs_theme_custom_questions_boxshadow_settings__WEBPACK_IMPORTED_MODULE_11__["createBoxShadow"]; });
|
|
18745
18463
|
|
|
18746
|
-
/* harmony
|
|
18747
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "createColor", function() { return _components_tabs_theme_custom_questions_color_settings__WEBPACK_IMPORTED_MODULE_11__["createColor"]; });
|
|
18464
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parseBoxShadow", function() { return _components_tabs_theme_custom_questions_boxshadow_settings__WEBPACK_IMPORTED_MODULE_11__["parseBoxShadow"]; });
|
|
18748
18465
|
|
|
18749
|
-
/* harmony import */ var
|
|
18750
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18466
|
+
/* harmony import */ var _components_tabs_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../components/tabs/theme-custom-questions/font-settings */ "./src/components/tabs/theme-custom-questions/font-settings.ts");
|
|
18467
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DefaultFonts", function() { return _components_tabs_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_12__["DefaultFonts"]; });
|
|
18751
18468
|
|
|
18752
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18469
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fontsettingsToCssVariable", function() { return _components_tabs_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_12__["fontsettingsToCssVariable"]; });
|
|
18753
18470
|
|
|
18754
|
-
/* harmony
|
|
18755
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DefaultFonts", function() { return _components_tabs_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_13__["DefaultFonts"]; });
|
|
18471
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fontsettingsFromCssVariable", function() { return _components_tabs_theme_custom_questions_font_settings__WEBPACK_IMPORTED_MODULE_12__["fontsettingsFromCssVariable"]; });
|
|
18756
18472
|
|
|
18757
|
-
/* harmony
|
|
18473
|
+
/* harmony import */ var _components_tabs_theme_custom_questions_element_settings__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../components/tabs/theme-custom-questions/element-settings */ "./src/components/tabs/theme-custom-questions/element-settings.ts");
|
|
18474
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "elementSettingsToCssVariable", function() { return _components_tabs_theme_custom_questions_element_settings__WEBPACK_IMPORTED_MODULE_13__["elementSettingsToCssVariable"]; });
|
|
18758
18475
|
|
|
18759
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18476
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "elementSettingsFromCssVariable", function() { return _components_tabs_theme_custom_questions_element_settings__WEBPACK_IMPORTED_MODULE_13__["elementSettingsFromCssVariable"]; });
|
|
18760
18477
|
|
|
18761
|
-
/* harmony import */ var
|
|
18762
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18478
|
+
/* harmony import */ var _components_tabs_theme__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../components/tabs/theme */ "./src/components/tabs/theme.ts");
|
|
18479
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Themes", function() { return _components_tabs_theme__WEBPACK_IMPORTED_MODULE_14__["Themes"]; });
|
|
18763
18480
|
|
|
18764
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18481
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PredefinedThemes", function() { return _components_tabs_theme__WEBPACK_IMPORTED_MODULE_14__["PredefinedThemes"]; });
|
|
18765
18482
|
|
|
18766
|
-
/* harmony
|
|
18767
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Themes", function() { return _components_tabs_theme__WEBPACK_IMPORTED_MODULE_15__["Themes"]; });
|
|
18483
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PredefinedColors", function() { return _components_tabs_theme__WEBPACK_IMPORTED_MODULE_14__["PredefinedColors"]; });
|
|
18768
18484
|
|
|
18769
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18485
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ThemeSurveyTabViewModel", function() { return _components_tabs_theme__WEBPACK_IMPORTED_MODULE_14__["ThemeSurveyTabViewModel"]; });
|
|
18770
18486
|
|
|
18771
|
-
/* harmony
|
|
18487
|
+
/* harmony import */ var _components_tabs_theme_plugin__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../components/tabs/theme-plugin */ "./src/components/tabs/theme-plugin.ts");
|
|
18488
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabThemePlugin", function() { return _components_tabs_theme_plugin__WEBPACK_IMPORTED_MODULE_15__["TabThemePlugin"]; });
|
|
18772
18489
|
|
|
18773
|
-
/* harmony
|
|
18490
|
+
/* harmony import */ var _components_tabs_logic__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../components/tabs/logic */ "./src/components/tabs/logic.ts");
|
|
18491
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "initLogicOperator", function() { return _components_tabs_logic__WEBPACK_IMPORTED_MODULE_16__["initLogicOperator"]; });
|
|
18774
18492
|
|
|
18775
|
-
/* harmony
|
|
18776
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabThemePlugin", function() { return _components_tabs_theme_plugin__WEBPACK_IMPORTED_MODULE_16__["TabThemePlugin"]; });
|
|
18493
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogicEvent", function() { return _components_tabs_logic__WEBPACK_IMPORTED_MODULE_16__["LogicEvent"]; });
|
|
18777
18494
|
|
|
18778
|
-
/* harmony
|
|
18779
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "initLogicOperator", function() { return _components_tabs_logic__WEBPACK_IMPORTED_MODULE_17__["initLogicOperator"]; });
|
|
18495
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogic", function() { return _components_tabs_logic__WEBPACK_IMPORTED_MODULE_16__["SurveyLogic"]; });
|
|
18780
18496
|
|
|
18781
|
-
/* harmony
|
|
18497
|
+
/* harmony import */ var _components_tabs_translation__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../components/tabs/translation */ "./src/components/tabs/translation.ts");
|
|
18498
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TranslationItemBase", function() { return _components_tabs_translation__WEBPACK_IMPORTED_MODULE_17__["TranslationItemBase"]; });
|
|
18782
18499
|
|
|
18783
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18500
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TranslationItemString", function() { return _components_tabs_translation__WEBPACK_IMPORTED_MODULE_17__["TranslationItemString"]; });
|
|
18784
18501
|
|
|
18785
|
-
/* harmony
|
|
18786
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TranslationItemBase", function() { return _components_tabs_translation__WEBPACK_IMPORTED_MODULE_18__["TranslationItemBase"]; });
|
|
18502
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TranslationItem", function() { return _components_tabs_translation__WEBPACK_IMPORTED_MODULE_17__["TranslationItem"]; });
|
|
18787
18503
|
|
|
18788
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18504
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TranslationGroup", function() { return _components_tabs_translation__WEBPACK_IMPORTED_MODULE_17__["TranslationGroup"]; });
|
|
18789
18505
|
|
|
18790
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18506
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Translation", function() { return _components_tabs_translation__WEBPACK_IMPORTED_MODULE_17__["Translation"]; });
|
|
18791
18507
|
|
|
18792
|
-
/* harmony
|
|
18508
|
+
/* harmony import */ var _components_tabs_translation_theme__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../components/tabs/translation-theme */ "./src/components/tabs/translation-theme.ts");
|
|
18509
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "translationCss", function() { return _components_tabs_translation_theme__WEBPACK_IMPORTED_MODULE_18__["translationCss"]; });
|
|
18793
18510
|
|
|
18794
|
-
/* harmony
|
|
18511
|
+
/* harmony import */ var _components_tabs_translation_plugin__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../components/tabs/translation-plugin */ "./src/components/tabs/translation-plugin.ts");
|
|
18512
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabTranslationPlugin", function() { return _components_tabs_translation_plugin__WEBPACK_IMPORTED_MODULE_19__["TabTranslationPlugin"]; });
|
|
18795
18513
|
|
|
18796
|
-
/* harmony import */ var
|
|
18797
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18514
|
+
/* harmony import */ var _components_tabs_designer__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../components/tabs/designer */ "./src/components/tabs/designer.ts");
|
|
18515
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "initialSettingsAllowShowEmptyTitleInDesignMode", function() { return _components_tabs_designer__WEBPACK_IMPORTED_MODULE_20__["initialSettingsAllowShowEmptyTitleInDesignMode"]; });
|
|
18798
18516
|
|
|
18799
|
-
/* harmony
|
|
18800
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabTranslationPlugin", function() { return _components_tabs_translation_plugin__WEBPACK_IMPORTED_MODULE_20__["TabTranslationPlugin"]; });
|
|
18517
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabDesignerViewModel", function() { return _components_tabs_designer__WEBPACK_IMPORTED_MODULE_20__["TabDesignerViewModel"]; });
|
|
18801
18518
|
|
|
18802
|
-
/* harmony import */ var
|
|
18803
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18519
|
+
/* harmony import */ var _components_tabs_designer_plugin__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../components/tabs/designer-plugin */ "./src/components/tabs/designer-plugin.ts");
|
|
18520
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabDesignerPlugin", function() { return _components_tabs_designer_plugin__WEBPACK_IMPORTED_MODULE_21__["TabDesignerPlugin"]; });
|
|
18804
18521
|
|
|
18805
|
-
/* harmony
|
|
18522
|
+
/* harmony import */ var _components_tabs_logic_ui__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../components/tabs/logic-ui */ "./src/components/tabs/logic-ui.ts");
|
|
18523
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogicUI", function() { return _components_tabs_logic_ui__WEBPACK_IMPORTED_MODULE_22__["SurveyLogicUI"]; });
|
|
18806
18524
|
|
|
18807
|
-
/* harmony import */ var
|
|
18808
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18525
|
+
/* harmony import */ var _components_tabs_logic_plugin__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../components/tabs/logic-plugin */ "./src/components/tabs/logic-plugin.ts");
|
|
18526
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TabLogicPlugin", function() { return _components_tabs_logic_plugin__WEBPACK_IMPORTED_MODULE_23__["TabLogicPlugin"]; });
|
|
18809
18527
|
|
|
18810
|
-
/* harmony import */ var
|
|
18811
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18528
|
+
/* harmony import */ var _components_tabs_logic_theme__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../components/tabs/logic-theme */ "./src/components/tabs/logic-theme.ts");
|
|
18529
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "logicCss", function() { return _components_tabs_logic_theme__WEBPACK_IMPORTED_MODULE_24__["logicCss"]; });
|
|
18812
18530
|
|
|
18813
|
-
/* harmony import */ var
|
|
18814
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18531
|
+
/* harmony import */ var _components_toolbox_toolbox_tool__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../components/toolbox/toolbox-tool */ "./src/components/toolbox/toolbox-tool.ts");
|
|
18532
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ToolboxToolViewModel", function() { return _components_toolbox_toolbox_tool__WEBPACK_IMPORTED_MODULE_25__["ToolboxToolViewModel"]; });
|
|
18815
18533
|
|
|
18816
|
-
/* harmony import */ var
|
|
18817
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18534
|
+
/* harmony import */ var _components_page_navigator_page_navigator__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../components/page-navigator/page-navigator */ "./src/components/page-navigator/page-navigator.ts");
|
|
18535
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PageNavigatorViewModel", function() { return _components_page_navigator_page_navigator__WEBPACK_IMPORTED_MODULE_26__["PageNavigatorViewModel"]; });
|
|
18818
18536
|
|
|
18819
|
-
/* harmony import */ var
|
|
18820
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18537
|
+
/* harmony import */ var _components_page__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../components/page */ "./src/components/page.ts");
|
|
18538
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PageAdorner", function() { return _components_page__WEBPACK_IMPORTED_MODULE_27__["PageAdorner"]; });
|
|
18821
18539
|
|
|
18822
|
-
/* harmony import */ var
|
|
18823
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18540
|
+
/* harmony import */ var _components_row__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../components/row */ "./src/components/row.ts");
|
|
18541
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RowViewModel", function() { return _components_row__WEBPACK_IMPORTED_MODULE_28__["RowViewModel"]; });
|
|
18824
18542
|
|
|
18825
|
-
/* harmony import */ var
|
|
18826
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18543
|
+
/* harmony import */ var _components_question__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../components/question */ "./src/components/question.ts");
|
|
18544
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionAdornerViewModel", function() { return _components_question__WEBPACK_IMPORTED_MODULE_29__["QuestionAdornerViewModel"]; });
|
|
18827
18545
|
|
|
18828
|
-
/* harmony import */ var
|
|
18829
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18546
|
+
/* harmony import */ var _components_question_dropdown__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../components/question-dropdown */ "./src/components/question-dropdown.ts");
|
|
18547
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionDropdownAdornerViewModel", function() { return _components_question_dropdown__WEBPACK_IMPORTED_MODULE_30__["QuestionDropdownAdornerViewModel"]; });
|
|
18830
18548
|
|
|
18831
|
-
/* harmony import */ var
|
|
18832
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18549
|
+
/* harmony import */ var _components_question_image__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../components/question-image */ "./src/components/question-image.ts");
|
|
18550
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionImageAdornerViewModel", function() { return _components_question_image__WEBPACK_IMPORTED_MODULE_31__["QuestionImageAdornerViewModel"]; });
|
|
18833
18551
|
|
|
18834
|
-
/* harmony import */ var
|
|
18835
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18552
|
+
/* harmony import */ var _components_question_rating__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../components/question-rating */ "./src/components/question-rating.ts");
|
|
18553
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionRatingAdornerViewModel", function() { return _components_question_rating__WEBPACK_IMPORTED_MODULE_32__["QuestionRatingAdornerViewModel"]; });
|
|
18836
18554
|
|
|
18837
|
-
/* harmony import */ var
|
|
18838
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18555
|
+
/* harmony import */ var _components_item_value__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../components/item-value */ "./src/components/item-value.ts");
|
|
18556
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ItemValueWrapperViewModel", function() { return _components_item_value__WEBPACK_IMPORTED_MODULE_33__["ItemValueWrapperViewModel"]; });
|
|
18839
18557
|
|
|
18840
|
-
/* harmony import */ var
|
|
18841
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18558
|
+
/* harmony import */ var _components_image_item_value__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../components/image-item-value */ "./src/components/image-item-value.ts");
|
|
18559
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ImageItemValueWrapperViewModel", function() { return _components_image_item_value__WEBPACK_IMPORTED_MODULE_34__["ImageItemValueWrapperViewModel"]; });
|
|
18842
18560
|
|
|
18843
|
-
/* harmony import */ var
|
|
18844
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18561
|
+
/* harmony import */ var _components_matrix_cell__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../components/matrix-cell */ "./src/components/matrix-cell.ts");
|
|
18562
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixCellWrapperEditSurvey", function() { return _components_matrix_cell__WEBPACK_IMPORTED_MODULE_35__["MatrixCellWrapperEditSurvey"]; });
|
|
18845
18563
|
|
|
18846
|
-
/* harmony
|
|
18847
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ImageItemValueWrapperViewModel", function() { return _components_image_item_value__WEBPACK_IMPORTED_MODULE_35__["ImageItemValueWrapperViewModel"]; });
|
|
18564
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixCellWrapperViewModel", function() { return _components_matrix_cell__WEBPACK_IMPORTED_MODULE_35__["MatrixCellWrapperViewModel"]; });
|
|
18848
18565
|
|
|
18849
|
-
/* harmony import */ var
|
|
18850
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18566
|
+
/* harmony import */ var _components_simulator__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../components/simulator */ "./src/components/simulator.ts");
|
|
18567
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveySimulatorModel", function() { return _components_simulator__WEBPACK_IMPORTED_MODULE_36__["SurveySimulatorModel"]; });
|
|
18851
18568
|
|
|
18852
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18569
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DEFAULT_MONITOR_DPI", function() { return _components_simulator__WEBPACK_IMPORTED_MODULE_36__["DEFAULT_MONITOR_DPI"]; });
|
|
18853
18570
|
|
|
18854
|
-
/* harmony
|
|
18855
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveySimulatorModel", function() { return _components_simulator__WEBPACK_IMPORTED_MODULE_37__["SurveySimulatorModel"]; });
|
|
18571
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "simulatorDevices", function() { return _components_simulator__WEBPACK_IMPORTED_MODULE_36__["simulatorDevices"]; });
|
|
18856
18572
|
|
|
18857
|
-
/* harmony
|
|
18573
|
+
/* harmony import */ var _components_results__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../components/results */ "./src/components/results.ts");
|
|
18574
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyResultsItemModel", function() { return _components_results__WEBPACK_IMPORTED_MODULE_37__["SurveyResultsItemModel"]; });
|
|
18858
18575
|
|
|
18859
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18576
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyResultsModel", function() { return _components_results__WEBPACK_IMPORTED_MODULE_37__["SurveyResultsModel"]; });
|
|
18860
18577
|
|
|
18861
|
-
/* harmony import */ var
|
|
18862
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18578
|
+
/* harmony import */ var _components_header_logo_image__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../components/header/logo-image */ "./src/components/header/logo-image.ts");
|
|
18579
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogoImageViewModel", function() { return _components_header_logo_image__WEBPACK_IMPORTED_MODULE_38__["LogoImageViewModel"]; });
|
|
18863
18580
|
|
|
18864
|
-
/* harmony
|
|
18581
|
+
/* harmony import */ var _components_string_editor__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../components/string-editor */ "./src/components/string-editor.ts");
|
|
18582
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StringItemsNavigatorBase", function() { return _components_string_editor__WEBPACK_IMPORTED_MODULE_39__["StringItemsNavigatorBase"]; });
|
|
18865
18583
|
|
|
18866
|
-
/* harmony
|
|
18867
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogoImageViewModel", function() { return _components_header_logo_image__WEBPACK_IMPORTED_MODULE_39__["LogoImageViewModel"]; });
|
|
18584
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StringEditorConnector", function() { return _components_string_editor__WEBPACK_IMPORTED_MODULE_39__["StringEditorConnector"]; });
|
|
18868
18585
|
|
|
18869
|
-
/* harmony
|
|
18870
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StringItemsNavigatorBase", function() { return _components_string_editor__WEBPACK_IMPORTED_MODULE_40__["StringItemsNavigatorBase"]; });
|
|
18586
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StringEditorViewModelBase", function() { return _components_string_editor__WEBPACK_IMPORTED_MODULE_39__["StringEditorViewModelBase"]; });
|
|
18871
18587
|
|
|
18872
|
-
/* harmony
|
|
18588
|
+
/* harmony import */ var _components_embedded_survey__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../components/embedded-survey */ "./src/components/embedded-survey.ts");
|
|
18589
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionEmbeddedSurveyModel", function() { return _components_embedded_survey__WEBPACK_IMPORTED_MODULE_40__["QuestionEmbeddedSurveyModel"]; });
|
|
18873
18590
|
|
|
18874
|
-
/* harmony
|
|
18875
|
-
|
|
18876
|
-
/* harmony import */ var _components_embedded_survey__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../components/embedded-survey */ "./src/components/embedded-survey.ts");
|
|
18877
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionEmbeddedSurveyModel", function() { return _components_embedded_survey__WEBPACK_IMPORTED_MODULE_41__["QuestionEmbeddedSurveyModel"]; });
|
|
18878
|
-
|
|
18879
|
-
/* harmony import */ var _components_link_value__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../components/link-value */ "./src/components/link-value.ts");
|
|
18880
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionLinkValueModel", function() { return _components_link_value__WEBPACK_IMPORTED_MODULE_42__["QuestionLinkValueModel"]; });
|
|
18591
|
+
/* harmony import */ var _components_link_value__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../components/link-value */ "./src/components/link-value.ts");
|
|
18592
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionLinkValueModel", function() { return _components_link_value__WEBPACK_IMPORTED_MODULE_41__["QuestionLinkValueModel"]; });
|
|
18881
18593
|
|
|
18882
18594
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EditorLocalization", function() { return _editorLocalization__WEBPACK_IMPORTED_MODULE_1__["EditorLocalization"]; });
|
|
18883
18595
|
|
|
18884
18596
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getLocString", function() { return _editorLocalization__WEBPACK_IMPORTED_MODULE_1__["getLocString"]; });
|
|
18885
18597
|
|
|
18886
|
-
/* harmony import */ var
|
|
18887
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyJSON5", function() { return
|
|
18598
|
+
/* harmony import */ var _json5__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../json5 */ "./src/json5.ts");
|
|
18599
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyJSON5", function() { return _json5__WEBPACK_IMPORTED_MODULE_42__["SurveyJSON5"]; });
|
|
18888
18600
|
|
|
18889
|
-
/* harmony import */ var
|
|
18890
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionSpinEditorModel", function() { return
|
|
18601
|
+
/* harmony import */ var _custom_questions_question_spin_editor__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../custom-questions/question-spin-editor */ "./src/custom-questions/question-spin-editor.ts");
|
|
18602
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionSpinEditorModel", function() { return _custom_questions_question_spin_editor__WEBPACK_IMPORTED_MODULE_43__["QuestionSpinEditorModel"]; });
|
|
18891
18603
|
|
|
18892
|
-
/* harmony import */ var
|
|
18893
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionColorModel", function() { return
|
|
18604
|
+
/* harmony import */ var _custom_questions_question_color__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../custom-questions/question-color */ "./src/custom-questions/question-color.ts");
|
|
18605
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionColorModel", function() { return _custom_questions_question_color__WEBPACK_IMPORTED_MODULE_44__["QuestionColorModel"]; });
|
|
18894
18606
|
|
|
18895
|
-
/* harmony import */ var
|
|
18896
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionFileEditorModel", function() { return
|
|
18607
|
+
/* harmony import */ var _custom_questions_question_file__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../custom-questions/question-file */ "./src/custom-questions/question-file.ts");
|
|
18608
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionFileEditorModel", function() { return _custom_questions_question_file__WEBPACK_IMPORTED_MODULE_45__["QuestionFileEditorModel"]; });
|
|
18897
18609
|
|
|
18898
|
-
/* harmony import */ var
|
|
18899
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setSurveyJSONForPropertyGrid", function() { return
|
|
18610
|
+
/* harmony import */ var _property_grid__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../property-grid */ "./src/property-grid/index.ts");
|
|
18611
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setSurveyJSONForPropertyGrid", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["setSurveyJSONForPropertyGrid"]; });
|
|
18900
18612
|
|
|
18901
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyEditorSetupValue", function() { return
|
|
18613
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyEditorSetupValue", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyEditorSetupValue"]; });
|
|
18902
18614
|
|
|
18903
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return
|
|
18615
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorCollection"]; });
|
|
18904
18616
|
|
|
18905
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridTitleActionsCreator", function() { return
|
|
18617
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridTitleActionsCreator", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridTitleActionsCreator"]; });
|
|
18906
18618
|
|
|
18907
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyJSONGenerator", function() { return
|
|
18619
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyJSONGenerator", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyJSONGenerator"]; });
|
|
18908
18620
|
|
|
18909
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridModel", function() { return
|
|
18621
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridModel", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridModel"]; });
|
|
18910
18622
|
|
|
18911
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditor", function() { return
|
|
18623
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditor", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditor"]; });
|
|
18912
18624
|
|
|
18913
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorBoolean", function() { return
|
|
18625
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorBoolean", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorBoolean"]; });
|
|
18914
18626
|
|
|
18915
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorStringBase", function() { return
|
|
18627
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorStringBase", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorStringBase"]; });
|
|
18916
18628
|
|
|
18917
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorString", function() { return
|
|
18629
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorString", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorString"]; });
|
|
18918
18630
|
|
|
18919
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridLinkEditor", function() { return
|
|
18631
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridLinkEditor", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridLinkEditor"]; });
|
|
18920
18632
|
|
|
18921
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorNumber", function() { return
|
|
18633
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorNumber", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorNumber"]; });
|
|
18922
18634
|
|
|
18923
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorImageSize", function() { return
|
|
18635
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorImageSize", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorImageSize"]; });
|
|
18924
18636
|
|
|
18925
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorText", function() { return
|
|
18637
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorText", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorText"]; });
|
|
18926
18638
|
|
|
18927
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorHtml", function() { return
|
|
18639
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorHtml", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorHtml"]; });
|
|
18928
18640
|
|
|
18929
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorColor", function() { return
|
|
18641
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorColor", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorColor"]; });
|
|
18930
18642
|
|
|
18931
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorStringArray", function() { return
|
|
18643
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorStringArray", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorStringArray"]; });
|
|
18932
18644
|
|
|
18933
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorDropdown", function() { return
|
|
18645
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorDropdown", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorDropdown"]; });
|
|
18934
18646
|
|
|
18935
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorSet", function() { return
|
|
18647
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorSet", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorSet"]; });
|
|
18936
18648
|
|
|
18937
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorPage", function() { return
|
|
18649
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorPage", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorPage"]; });
|
|
18938
18650
|
|
|
18939
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestion", function() { return
|
|
18651
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestion", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorQuestion"]; });
|
|
18940
18652
|
|
|
18941
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionSelectBase", function() { return
|
|
18653
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionSelectBase", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorQuestionSelectBase"]; });
|
|
18942
18654
|
|
|
18943
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18655
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionCarryForward", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorQuestionCarryForward"]; });
|
|
18944
18656
|
|
|
18945
|
-
/* harmony
|
|
18946
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorExpression", function() { return _property_grid_condition__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorExpression"]; });
|
|
18657
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionValue", function() { return _property_grid__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorQuestionValue"]; });
|
|
18947
18658
|
|
|
18948
|
-
/* harmony
|
|
18659
|
+
/* harmony import */ var _property_grid_condition__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../property-grid/condition */ "./src/property-grid/condition.ts");
|
|
18660
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorExpression", function() { return _property_grid_condition__WEBPACK_IMPORTED_MODULE_47__["PropertyGridEditorExpression"]; });
|
|
18949
18661
|
|
|
18950
|
-
/* harmony
|
|
18951
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrix", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_49__["PropertyGridEditorMatrix"]; });
|
|
18662
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCondition", function() { return _property_grid_condition__WEBPACK_IMPORTED_MODULE_47__["PropertyGridEditorCondition"]; });
|
|
18952
18663
|
|
|
18953
|
-
/* harmony
|
|
18664
|
+
/* harmony import */ var _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../property-grid/matrices */ "./src/property-grid/matrices.ts");
|
|
18665
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrix", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrix"]; });
|
|
18954
18666
|
|
|
18955
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18667
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixItemValues", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixItemValues"]; });
|
|
18956
18668
|
|
|
18957
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18669
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixRateValues", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixRateValues"]; });
|
|
18958
18670
|
|
|
18959
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18671
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixColumns", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixColumns"]; });
|
|
18960
18672
|
|
|
18961
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18673
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixPages", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixPages"]; });
|
|
18962
18674
|
|
|
18963
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18675
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixCalculatedValues", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixCalculatedValues"]; });
|
|
18964
18676
|
|
|
18965
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18677
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixHtmlConditions", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixHtmlConditions"]; });
|
|
18966
18678
|
|
|
18967
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18679
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixUrlConditions", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixUrlConditions"]; });
|
|
18968
18680
|
|
|
18969
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18681
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixMutlipleTextItems", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixMutlipleTextItems"]; });
|
|
18970
18682
|
|
|
18971
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18683
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixMultipleTypes", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixMultipleTypes"]; });
|
|
18972
18684
|
|
|
18973
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18685
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixValidators", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixValidators"]; });
|
|
18974
18686
|
|
|
18975
|
-
/* harmony
|
|
18976
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorBindings", function() { return _property_grid_bindings__WEBPACK_IMPORTED_MODULE_50__["PropertyGridEditorBindings"]; });
|
|
18687
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorMatrixTriggers", function() { return _property_grid_matrices__WEBPACK_IMPORTED_MODULE_48__["PropertyGridEditorMatrixTriggers"]; });
|
|
18977
18688
|
|
|
18978
|
-
/* harmony import */ var
|
|
18979
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18689
|
+
/* harmony import */ var _property_grid_bindings__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../property-grid/bindings */ "./src/property-grid/bindings.ts");
|
|
18690
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorBindings", function() { return _property_grid_bindings__WEBPACK_IMPORTED_MODULE_49__["PropertyGridEditorBindings"]; });
|
|
18980
18691
|
|
|
18981
|
-
/* harmony import */ var
|
|
18982
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18692
|
+
/* harmony import */ var _property_grid_property_grid_view_model__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../property-grid/property-grid-view-model */ "./src/property-grid/property-grid-view-model.ts");
|
|
18693
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridViewModel", function() { return _property_grid_property_grid_view_model__WEBPACK_IMPORTED_MODULE_50__["PropertyGridViewModel"]; });
|
|
18983
18694
|
|
|
18984
|
-
/* harmony
|
|
18695
|
+
/* harmony import */ var _property_grid_object_selector__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../property-grid/object-selector */ "./src/property-grid/object-selector.ts");
|
|
18696
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ObjectSelectorItem", function() { return _property_grid_object_selector__WEBPACK_IMPORTED_MODULE_51__["ObjectSelectorItem"]; });
|
|
18985
18697
|
|
|
18986
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18698
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ObjectSelector", function() { return _property_grid_object_selector__WEBPACK_IMPORTED_MODULE_51__["ObjectSelector"]; });
|
|
18987
18699
|
|
|
18988
|
-
/* harmony
|
|
18989
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionRestfull", function() { return _property_grid_restfull__WEBPACK_IMPORTED_MODULE_53__["PropertyGridEditorQuestionRestfull"]; });
|
|
18700
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ObjectSelectorModel", function() { return _property_grid_object_selector__WEBPACK_IMPORTED_MODULE_51__["ObjectSelectorModel"]; });
|
|
18990
18701
|
|
|
18991
|
-
/* harmony import */ var
|
|
18992
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18702
|
+
/* harmony import */ var _property_grid_restfull__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../property-grid/restfull */ "./src/property-grid/restfull.ts");
|
|
18703
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionRestfull", function() { return _property_grid_restfull__WEBPACK_IMPORTED_MODULE_52__["PropertyGridEditorQuestionRestfull"]; });
|
|
18993
18704
|
|
|
18994
|
-
/* harmony
|
|
18705
|
+
/* harmony import */ var _property_grid_values__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../property-grid/values */ "./src/property-grid/values.ts");
|
|
18706
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridValueEditorBase", function() { return _property_grid_values__WEBPACK_IMPORTED_MODULE_53__["PropertyGridValueEditorBase"]; });
|
|
18995
18707
|
|
|
18996
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18708
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridCellsEditor", function() { return _property_grid_values__WEBPACK_IMPORTED_MODULE_53__["PropertyGridCellsEditor"]; });
|
|
18997
18709
|
|
|
18998
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18710
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridValueEditor", function() { return _property_grid_values__WEBPACK_IMPORTED_MODULE_53__["PropertyGridValueEditor"]; });
|
|
18999
18711
|
|
|
19000
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18712
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridRowValueEditor", function() { return _property_grid_values__WEBPACK_IMPORTED_MODULE_53__["PropertyGridRowValueEditor"]; });
|
|
19001
18713
|
|
|
19002
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18714
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridPanelValueEditor", function() { return _property_grid_values__WEBPACK_IMPORTED_MODULE_53__["PropertyGridPanelValueEditor"]; });
|
|
19003
18715
|
|
|
19004
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18716
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridTriggerValueEditor", function() { return _property_grid_values__WEBPACK_IMPORTED_MODULE_53__["PropertyGridTriggerValueEditor"]; });
|
|
19005
18717
|
|
|
19006
|
-
/* harmony
|
|
19007
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "propertyGridCss", function() { return _property_grid_theme_property_grid__WEBPACK_IMPORTED_MODULE_55__["propertyGridCss"]; });
|
|
18718
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridTriggerValueInLogicEditor", function() { return _property_grid_values__WEBPACK_IMPORTED_MODULE_53__["PropertyGridTriggerValueInLogicEditor"]; });
|
|
19008
18719
|
|
|
19009
|
-
/* harmony import */ var
|
|
19010
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18720
|
+
/* harmony import */ var _property_grid_theme_property_grid__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../property-grid-theme/property-grid */ "./src/property-grid-theme/property-grid.ts");
|
|
18721
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "propertyGridCss", function() { return _property_grid_theme_property_grid__WEBPACK_IMPORTED_MODULE_54__["propertyGridCss"]; });
|
|
19011
18722
|
|
|
19012
|
-
/* harmony import */ var
|
|
19013
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18723
|
+
/* harmony import */ var _questionconverter__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../questionconverter */ "./src/questionconverter.ts");
|
|
18724
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionConverter", function() { return _questionconverter__WEBPACK_IMPORTED_MODULE_55__["QuestionConverter"]; });
|
|
19014
18725
|
|
|
19015
|
-
/* harmony import */ var
|
|
19016
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18726
|
+
/* harmony import */ var _svgbundle__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../svgbundle */ "./src/svgbundle.ts");
|
|
18727
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgBundle", function() { return _svgbundle__WEBPACK_IMPORTED_MODULE_56__["svgBundle"]; });
|
|
19017
18728
|
|
|
19018
|
-
/* harmony
|
|
18729
|
+
/* harmony import */ var _textWorker__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../textWorker */ "./src/textWorker.ts");
|
|
18730
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyTextWorkerError", function() { return _textWorker__WEBPACK_IMPORTED_MODULE_57__["SurveyTextWorkerError"]; });
|
|
19019
18731
|
|
|
19020
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18732
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyTextWorkerParserError", function() { return _textWorker__WEBPACK_IMPORTED_MODULE_57__["SurveyTextWorkerParserError"]; });
|
|
19021
18733
|
|
|
19022
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18734
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyTextWorkerJsonError", function() { return _textWorker__WEBPACK_IMPORTED_MODULE_57__["SurveyTextWorkerJsonError"]; });
|
|
19023
18735
|
|
|
19024
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18736
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyTextWorker", function() { return _textWorker__WEBPACK_IMPORTED_MODULE_57__["SurveyTextWorker"]; });
|
|
19025
18737
|
|
|
19026
|
-
/* harmony
|
|
19027
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionToolboxCategory", function() { return _toolbox__WEBPACK_IMPORTED_MODULE_59__["QuestionToolboxCategory"]; });
|
|
18738
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "JsonDuplicateNameError", function() { return _textWorker__WEBPACK_IMPORTED_MODULE_57__["JsonDuplicateNameError"]; });
|
|
19028
18739
|
|
|
19029
|
-
/* harmony
|
|
18740
|
+
/* harmony import */ var _toolbox__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../toolbox */ "./src/toolbox.ts");
|
|
18741
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionToolboxCategory", function() { return _toolbox__WEBPACK_IMPORTED_MODULE_58__["QuestionToolboxCategory"]; });
|
|
19030
18742
|
|
|
19031
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18743
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionToolboxItem", function() { return _toolbox__WEBPACK_IMPORTED_MODULE_58__["QuestionToolboxItem"]; });
|
|
19032
18744
|
|
|
19033
|
-
/* harmony
|
|
19034
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SidebarModel", function() { return _components_side_bar_side_bar_model__WEBPACK_IMPORTED_MODULE_60__["SidebarModel"]; });
|
|
18745
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionToolbox", function() { return _toolbox__WEBPACK_IMPORTED_MODULE_58__["QuestionToolbox"]; });
|
|
19035
18746
|
|
|
19036
|
-
/* harmony import */ var
|
|
19037
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18747
|
+
/* harmony import */ var _components_side_bar_side_bar_model__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../components/side-bar/side-bar-model */ "./src/components/side-bar/side-bar-model.ts");
|
|
18748
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SidebarModel", function() { return _components_side_bar_side_bar_model__WEBPACK_IMPORTED_MODULE_59__["SidebarModel"]; });
|
|
19038
18749
|
|
|
19039
|
-
/* harmony import */ var
|
|
19040
|
-
/*
|
|
19041
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getNextItemValue", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_63__["getNextItemValue"]; });
|
|
18750
|
+
/* harmony import */ var _components_side_bar_side_bar_tab_model__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../components/side-bar/side-bar-tab-model */ "./src/components/side-bar/side-bar-tab-model.ts");
|
|
18751
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SidebarTabModel", function() { return _components_side_bar_side_bar_tab_model__WEBPACK_IMPORTED_MODULE_60__["SidebarTabModel"]; });
|
|
19042
18752
|
|
|
19043
|
-
/* harmony
|
|
18753
|
+
/* harmony import */ var _utils_events__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../utils/events */ "./src/utils/events.ts");
|
|
18754
|
+
/* empty/unused harmony star reexport *//* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ../utils/utils */ "./src/utils/utils.ts");
|
|
18755
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getNextItemValue", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["getNextItemValue"]; });
|
|
19044
18756
|
|
|
19045
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18757
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getNextItemText", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["getNextItemText"]; });
|
|
19046
18758
|
|
|
19047
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18759
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getNextValue", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["getNextValue"]; });
|
|
19048
18760
|
|
|
19049
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18761
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "findParentNode", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["findParentNode"]; });
|
|
19050
18762
|
|
|
19051
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18763
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "focusFirstControl", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["focusFirstControl"]; });
|
|
19052
18764
|
|
|
19053
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18765
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getFirstNonTextElement", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["getFirstNonTextElement"]; });
|
|
19054
18766
|
|
|
19055
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18767
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getNodesFromKoComponentInfo", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["getNodesFromKoComponentInfo"]; });
|
|
19056
18768
|
|
|
19057
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18769
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "propertyExists", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["propertyExists"]; });
|
|
19058
18770
|
|
|
19059
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18771
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isPropertyVisible", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["isPropertyVisible"]; });
|
|
19060
18772
|
|
|
19061
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18773
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "toggleHovered", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["toggleHovered"]; });
|
|
19062
18774
|
|
|
19063
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18775
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "clearNewLines", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["clearNewLines"]; });
|
|
19064
18776
|
|
|
19065
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18777
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "select", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["select"]; });
|
|
19066
18778
|
|
|
19067
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18779
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "copyObject", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["copyObject"]; });
|
|
19068
18780
|
|
|
19069
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18781
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "copyCssClasses", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["copyCssClasses"]; });
|
|
19070
18782
|
|
|
19071
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18783
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "assignDefaultV2Classes", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["assignDefaultV2Classes"]; });
|
|
19072
18784
|
|
|
19073
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18785
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "wrapTextByCurlyBraces", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["wrapTextByCurlyBraces"]; });
|
|
19074
18786
|
|
|
19075
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18787
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "capitalize", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["capitalize"]; });
|
|
19076
18788
|
|
|
19077
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18789
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "notShortCircuitAnd", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["notShortCircuitAnd"]; });
|
|
19078
18790
|
|
|
19079
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18791
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "imageMimeTypes", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["imageMimeTypes"]; });
|
|
19080
18792
|
|
|
19081
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18793
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getAcceptedTypesByContentMode", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["getAcceptedTypesByContentMode"]; });
|
|
19082
18794
|
|
|
19083
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18795
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getQuestionFromObj", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["getQuestionFromObj"]; });
|
|
19084
18796
|
|
|
19085
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18797
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ingectAlpha", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["ingectAlpha"]; });
|
|
19086
18798
|
|
|
19087
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18799
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "convertRgbaToString", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["convertRgbaToString"]; });
|
|
19088
18800
|
|
|
19089
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18801
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parseRgbaFromString", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["parseRgbaFromString"]; });
|
|
19090
18802
|
|
|
19091
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18803
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parseColor", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["parseColor"]; });
|
|
19092
18804
|
|
|
19093
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18805
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HSBToRGB", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["HSBToRGB"]; });
|
|
19094
18806
|
|
|
19095
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18807
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RGBToHSB", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["RGBToHSB"]; });
|
|
19096
18808
|
|
|
19097
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18809
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "assign", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["assign"]; });
|
|
19098
18810
|
|
|
19099
|
-
/* harmony
|
|
19100
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return _question_editor_definition__WEBPACK_IMPORTED_MODULE_64__["SurveyQuestionEditorDefinition"]; });
|
|
18811
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ColorCalculator", function() { return _utils_utils__WEBPACK_IMPORTED_MODULE_62__["ColorCalculator"]; });
|
|
19101
18812
|
|
|
19102
|
-
/* harmony import */ var
|
|
19103
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18813
|
+
/* harmony import */ var _question_editor_definition__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ../question-editor/definition */ "./src/question-editor/definition.ts");
|
|
18814
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return _question_editor_definition__WEBPACK_IMPORTED_MODULE_63__["SurveyQuestionEditorDefinition"]; });
|
|
19104
18815
|
|
|
19105
|
-
/* harmony
|
|
18816
|
+
/* harmony import */ var _survey_helper__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ../survey-helper */ "./src/survey-helper.ts");
|
|
18817
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ObjType", function() { return _survey_helper__WEBPACK_IMPORTED_MODULE_64__["ObjType"]; });
|
|
19106
18818
|
|
|
19107
|
-
/* harmony
|
|
19108
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ResizeManager", function() { return _utils_resizer__WEBPACK_IMPORTED_MODULE_66__["ResizeManager"]; });
|
|
18819
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyHelper", function() { return _survey_helper__WEBPACK_IMPORTED_MODULE_64__["SurveyHelper"]; });
|
|
19109
18820
|
|
|
19110
|
-
/* harmony import */ var
|
|
19111
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18821
|
+
/* harmony import */ var _utils_resizer__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../utils/resizer */ "./src/utils/resizer.ts");
|
|
18822
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ResizeManager", function() { return _utils_resizer__WEBPACK_IMPORTED_MODULE_65__["ResizeManager"]; });
|
|
19112
18823
|
|
|
19113
|
-
/* harmony
|
|
18824
|
+
/* harmony import */ var _plugins_undo_redo__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ../plugins/undo-redo */ "./src/plugins/undo-redo/index.ts");
|
|
18825
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UndoRedoPlugin", function() { return _plugins_undo_redo__WEBPACK_IMPORTED_MODULE_66__["UndoRedoPlugin"]; });
|
|
19114
18826
|
|
|
19115
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18827
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "undoRedoTransaction", function() { return _plugins_undo_redo__WEBPACK_IMPORTED_MODULE_66__["undoRedoTransaction"]; });
|
|
19116
18828
|
|
|
19117
|
-
/* harmony
|
|
19118
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UndoRedoManager", function() { return _plugins_undo_redo_undo_redo_manager__WEBPACK_IMPORTED_MODULE_68__["UndoRedoManager"]; });
|
|
18829
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ignoreUndoRedo", function() { return _plugins_undo_redo__WEBPACK_IMPORTED_MODULE_66__["ignoreUndoRedo"]; });
|
|
19119
18830
|
|
|
19120
|
-
/* harmony
|
|
18831
|
+
/* harmony import */ var _plugins_undo_redo_undo_redo_manager__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ../plugins/undo-redo/undo-redo-manager */ "./src/plugins/undo-redo/undo-redo-manager.ts");
|
|
18832
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UndoRedoManager", function() { return _plugins_undo_redo_undo_redo_manager__WEBPACK_IMPORTED_MODULE_67__["UndoRedoManager"]; });
|
|
19121
18833
|
|
|
19122
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18834
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Transaction", function() { return _plugins_undo_redo_undo_redo_manager__WEBPACK_IMPORTED_MODULE_67__["Transaction"]; });
|
|
19123
18835
|
|
|
19124
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
18836
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UndoRedoAction", function() { return _plugins_undo_redo_undo_redo_manager__WEBPACK_IMPORTED_MODULE_67__["UndoRedoAction"]; });
|
|
19125
18837
|
|
|
19126
|
-
/* harmony
|
|
19127
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PagesController", function() { return _pages_controller__WEBPACK_IMPORTED_MODULE_69__["PagesController"]; });
|
|
18838
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "UndoRedoArrayAction", function() { return _plugins_undo_redo_undo_redo_manager__WEBPACK_IMPORTED_MODULE_67__["UndoRedoArrayAction"]; });
|
|
19128
18839
|
|
|
19129
|
-
/* harmony import */ var
|
|
19130
|
-
/* harmony
|
|
18840
|
+
/* harmony import */ var _pages_controller__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ../pages-controller */ "./src/pages-controller.ts");
|
|
18841
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PagesController", function() { return _pages_controller__WEBPACK_IMPORTED_MODULE_68__["PagesController"]; });
|
|
18842
|
+
|
|
18843
|
+
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
18844
|
+
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_69___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_69__);
|
|
19131
18845
|
var Version;
|
|
19132
|
-
Version = "" + "1.9.
|
|
18846
|
+
Version = "" + "1.9.104";
|
|
19133
18847
|
//should be loaded before other styles for easier override
|
|
19134
18848
|
__webpack_require__(/*! ../utils/context-button.scss */ "./src/utils/context-button.scss");
|
|
19135
18849
|
|
|
@@ -19175,7 +18889,6 @@ __webpack_require__(/*! ../utils/context-button.scss */ "./src/utils/context-but
|
|
|
19175
18889
|
|
|
19176
18890
|
|
|
19177
18891
|
|
|
19178
|
-
|
|
19179
18892
|
|
|
19180
18893
|
|
|
19181
18894
|
//custom questions for property grid
|
|
@@ -19217,8 +18930,8 @@ __webpack_require__(/*! ../property-grid-theme/property-grid.scss */ "./src/prop
|
|
|
19217
18930
|
__webpack_require__(/*! ../utils/design.scss */ "./src/utils/design.scss");
|
|
19218
18931
|
__webpack_require__(/*! ../utils/layout.scss */ "./src/utils/layout.scss");
|
|
19219
18932
|
|
|
19220
|
-
|
|
19221
|
-
Object(
|
|
18933
|
+
survey_core__WEBPACK_IMPORTED_MODULE_69__["settings"].supportCreatorV2 = true;
|
|
18934
|
+
Object(survey_core__WEBPACK_IMPORTED_MODULE_69__["checkLibraryVersion"])("" + "1.9.104", "survey-creator-core");
|
|
19222
18935
|
|
|
19223
18936
|
|
|
19224
18937
|
/***/ }),
|
|
@@ -19504,6 +19217,7 @@ var map = {
|
|
|
19504
19217
|
"./expression.svg": "./src/images/expression.svg",
|
|
19505
19218
|
"./fast-entry.svg": "./src/images/fast-entry.svg",
|
|
19506
19219
|
"./file.svg": "./src/images/file.svg",
|
|
19220
|
+
"./fix.svg": "./src/images/fix.svg",
|
|
19507
19221
|
"./html.svg": "./src/images/html.svg",
|
|
19508
19222
|
"./image.svg": "./src/images/image.svg",
|
|
19509
19223
|
"./imagepicker.svg": "./src/images/imagepicker.svg",
|
|
@@ -20107,6 +19821,17 @@ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\
|
|
|
20107
19821
|
|
|
20108
19822
|
/***/ }),
|
|
20109
19823
|
|
|
19824
|
+
/***/ "./src/images/fix.svg":
|
|
19825
|
+
/*!****************************!*\
|
|
19826
|
+
!*** ./src/images/fix.svg ***!
|
|
19827
|
+
\****************************/
|
|
19828
|
+
/*! no static exports found */
|
|
19829
|
+
/***/ (function(module, exports) {
|
|
19830
|
+
|
|
19831
|
+
module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_506_606)\"><path opacity=\"0.75\" d=\"M8.71 11.29L5.71 8.29C5.32 7.9 4.69 7.9 4.3 8.29C3.91 8.68 3.91 9.31 4.3 9.7L5.59 10.99H1C0.45 10.99 0 11.44 0 11.99C0 12.54 0.45 12.99 1 12.99H5.59L4.3 14.28C3.91 14.67 3.91 15.3 4.3 15.69C4.5 15.89 4.75 15.98 5.01 15.98C5.27 15.98 5.52 15.88 5.72 15.69L8.72 12.69C8.81 12.6 8.89 12.49 8.94 12.36C9.04 12.12 9.04 11.84 8.94 11.6C8.89 11.48 8.82 11.37 8.72 11.27L8.71 11.29Z\" fill=\"black\" fill-opacity=\"0.45\"></path><path opacity=\"0.75\" d=\"M15.71 10.29C15.32 9.89999 14.69 9.89999 14.3 10.29C13.91 10.68 13.91 11.31 14.3 11.7L16.3 13.7C16.5 13.9 16.75 13.99 17.01 13.99C17.27 13.99 17.52 13.89 17.72 13.7L23.72 7.69999C24.11 7.30999 24.11 6.67999 23.72 6.28999C23.33 5.89999 22.7 5.89999 22.31 6.28999L21.05 7.54999C19.99 6.57999 18.57 5.98999 17.02 5.98999C13.71 5.98999 11.02 8.67999 11.02 11.99C11.02 15.3 13.71 17.99 17.02 17.99C20.33 17.99 23.02 15.3 23.02 11.99C23.02 11.5 22.96 11.03 22.85 10.58L20.98 12.45C20.75 14.44 19.07 15.99 17.03 15.99C14.82 15.99 13.03 14.2 13.03 11.99C13.03 9.77999 14.82 7.98999 17.03 7.98999C18.03 7.98999 18.93 8.36999 19.63 8.97999L17.03 11.58L15.74 10.29H15.71Z\"></path></g><defs><clipPath id=\"clip0_506_606\"><rect width=\"24\" height=\"24\" fill=\"white\"></rect></clipPath></defs></svg>"
|
|
19832
|
+
|
|
19833
|
+
/***/ }),
|
|
19834
|
+
|
|
20110
19835
|
/***/ "./src/images/html.svg":
|
|
20111
19836
|
/*!*****************************!*\
|
|
20112
19837
|
!*** ./src/images/html.svg ***!
|
|
@@ -22311,6 +22036,7 @@ var enStrings = {
|
|
|
22311
22036
|
fontFamily: "Font family",
|
|
22312
22037
|
fontSize: "Font size",
|
|
22313
22038
|
color: "Color",
|
|
22039
|
+
placeholderColor: "Placeholder color",
|
|
22314
22040
|
size: "Size",
|
|
22315
22041
|
fontWeightRegular: "Regular",
|
|
22316
22042
|
fontWeightHeavy: "Heavy",
|
|
@@ -24252,9 +23978,10 @@ var ConditionEditor = /** @class */ (function (_super) {
|
|
|
24252
23978
|
var questionName = panel.getQuestionByName("questionName").value;
|
|
24253
23979
|
var json = _this.getQuestionConditionJson(questionName);
|
|
24254
23980
|
var qType = !!json ? json.type : null;
|
|
23981
|
+
var condQuestion = _this.getConditionQuestion(questionName);
|
|
24255
23982
|
opt.choices.forEach(function (choice, index) {
|
|
24256
23983
|
var isOperatorEnabled = ConditionEditor.isOperatorEnabled(qType, _creator_settings__WEBPACK_IMPORTED_MODULE_2__["settings"].operators[choice.value]);
|
|
24257
|
-
isOperatorEnabled = _this.options.isConditionOperatorEnabled(questionName,
|
|
23984
|
+
isOperatorEnabled = _this.options.isConditionOperatorEnabled(questionName, condQuestion, choice.value, isOperatorEnabled);
|
|
24258
23985
|
choice.setIsEnabled(isOperatorEnabled);
|
|
24259
23986
|
choice.setIsVisible(isOperatorEnabled);
|
|
24260
23987
|
});
|
|
@@ -25138,7 +24865,7 @@ var FastEntryEditor = /** @class */ (function (_super) {
|
|
|
25138
24865
|
/*!************************************!*\
|
|
25139
24866
|
!*** ./src/property-grid/index.ts ***!
|
|
25140
24867
|
\************************************/
|
|
25141
|
-
/*! exports provided: setSurveyJSONForPropertyGrid, PropertyEditorSetupValue, PropertyGridEditorCollection, PropertyGridTitleActionsCreator, PropertyJSONGenerator, PropertyGridModel, PropertyGridEditor, PropertyGridEditorBoolean, PropertyGridEditorStringBase, PropertyGridEditorString, PropertyGridLinkEditor, PropertyGridEditorNumber, PropertyGridEditorImageSize, PropertyGridEditorText, PropertyGridEditorHtml, PropertyGridEditorColor, PropertyGridEditorStringArray, PropertyGridEditorDropdown, PropertyGridEditorSet, PropertyGridEditorPage, PropertyGridEditorQuestion, PropertyGridEditorQuestionSelectBase, PropertyGridEditorQuestionValue */
|
|
24868
|
+
/*! exports provided: setSurveyJSONForPropertyGrid, PropertyEditorSetupValue, PropertyGridEditorCollection, PropertyGridTitleActionsCreator, PropertyJSONGenerator, PropertyGridModel, PropertyGridEditor, PropertyGridEditorBoolean, PropertyGridEditorStringBase, PropertyGridEditorString, PropertyGridLinkEditor, PropertyGridEditorNumber, PropertyGridEditorImageSize, PropertyGridEditorText, PropertyGridEditorHtml, PropertyGridEditorColor, PropertyGridEditorStringArray, PropertyGridEditorDropdown, PropertyGridEditorSet, PropertyGridEditorPage, PropertyGridEditorQuestion, PropertyGridEditorQuestionSelectBase, PropertyGridEditorQuestionCarryForward, PropertyGridEditorQuestionValue */
|
|
25142
24869
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
25143
24870
|
|
|
25144
24871
|
"use strict";
|
|
@@ -25165,6 +24892,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
25165
24892
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorPage", function() { return PropertyGridEditorPage; });
|
|
25166
24893
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestion", function() { return PropertyGridEditorQuestion; });
|
|
25167
24894
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionSelectBase", function() { return PropertyGridEditorQuestionSelectBase; });
|
|
24895
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionCarryForward", function() { return PropertyGridEditorQuestionCarryForward; });
|
|
25168
24896
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorQuestionValue", function() { return PropertyGridEditorQuestionValue; });
|
|
25169
24897
|
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
|
|
25170
24898
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
@@ -25984,7 +25712,7 @@ var PropertyGridModel = /** @class */ (function () {
|
|
|
25984
25712
|
};
|
|
25985
25713
|
PropertyGridModel.prototype.onValueChanging = function (options) {
|
|
25986
25714
|
var q = options.question;
|
|
25987
|
-
if (!q || !q.property || survey_core__WEBPACK_IMPORTED_MODULE_1__["Helpers"].isTwoValueEquals(options.value, options.oldValue))
|
|
25715
|
+
if (!q || !q.property || survey_core__WEBPACK_IMPORTED_MODULE_1__["Helpers"].isTwoValueEquals(options.value, options.oldValue, false, false, false))
|
|
25988
25716
|
return;
|
|
25989
25717
|
var changingOptions = {
|
|
25990
25718
|
obj: this.obj,
|
|
@@ -26044,7 +25772,7 @@ var PropertyGridModel = /** @class */ (function () {
|
|
|
26044
25772
|
continue;
|
|
26045
25773
|
this.updateDependedPropertiesEditor(q);
|
|
26046
25774
|
var objValue = dependedsValue(name);
|
|
26047
|
-
if (!survey_core__WEBPACK_IMPORTED_MODULE_1__["Helpers"].isTwoValueEquals(q.value, objValue)) {
|
|
25775
|
+
if (!survey_core__WEBPACK_IMPORTED_MODULE_1__["Helpers"].isTwoValueEquals(q.value, objValue, false, false, false)) {
|
|
26048
25776
|
q.value = objValue;
|
|
26049
25777
|
}
|
|
26050
25778
|
PropertyGridEditorCollection.onMasterValueChanged(question.obj, q.property, q);
|
|
@@ -26280,6 +26008,9 @@ var PropertyGridEditorStringBase = /** @class */ (function (_super) {
|
|
|
26280
26008
|
};
|
|
26281
26009
|
PropertyGridEditorStringBase.prototype.onCreated = function (obj, question, prop, options) {
|
|
26282
26010
|
question.disableNativeUndoRedo = true;
|
|
26011
|
+
if (prop.name === "title") {
|
|
26012
|
+
question.allowSpaceAsAnswer = true;
|
|
26013
|
+
}
|
|
26283
26014
|
};
|
|
26284
26015
|
return PropertyGridEditorStringBase;
|
|
26285
26016
|
}(PropertyGridEditor));
|
|
@@ -26694,14 +26425,16 @@ var PropertyGridEditorQuestionSelectBase = /** @class */ (function (_super) {
|
|
|
26694
26425
|
PropertyGridEditorQuestionSelectBase.prototype.fit = function (prop) {
|
|
26695
26426
|
return prop.type == "question_selectbase";
|
|
26696
26427
|
};
|
|
26428
|
+
PropertyGridEditorQuestionSelectBase.prototype.isQuestionFit = function (question) {
|
|
26429
|
+
return survey_core__WEBPACK_IMPORTED_MODULE_1__["Serializer"].isDescendantOf(question.getType(), "selectbase");
|
|
26430
|
+
};
|
|
26697
26431
|
PropertyGridEditorQuestionSelectBase.prototype.getQuestions = function (survey, obj) {
|
|
26698
26432
|
var questions = _super.prototype.getQuestions.call(this, survey, obj);
|
|
26699
26433
|
var res = [];
|
|
26700
26434
|
for (var i = 0; i < questions.length; i++) {
|
|
26701
|
-
|
|
26702
|
-
|
|
26703
|
-
|
|
26704
|
-
res.push(questions[i]);
|
|
26435
|
+
var q = questions[i];
|
|
26436
|
+
if (q !== obj && this.isQuestionFit(q)) {
|
|
26437
|
+
res.push(q);
|
|
26705
26438
|
}
|
|
26706
26439
|
}
|
|
26707
26440
|
return res;
|
|
@@ -26709,6 +26442,20 @@ var PropertyGridEditorQuestionSelectBase = /** @class */ (function (_super) {
|
|
|
26709
26442
|
return PropertyGridEditorQuestionSelectBase;
|
|
26710
26443
|
}(PropertyGridEditorQuestion));
|
|
26711
26444
|
|
|
26445
|
+
var PropertyGridEditorQuestionCarryForward = /** @class */ (function (_super) {
|
|
26446
|
+
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"])(PropertyGridEditorQuestionCarryForward, _super);
|
|
26447
|
+
function PropertyGridEditorQuestionCarryForward() {
|
|
26448
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
26449
|
+
}
|
|
26450
|
+
PropertyGridEditorQuestionCarryForward.prototype.fit = function (prop) {
|
|
26451
|
+
return prop.type == "question_carryforward";
|
|
26452
|
+
};
|
|
26453
|
+
PropertyGridEditorQuestionCarryForward.prototype.isQuestionFit = function (question) {
|
|
26454
|
+
return question.isValueArray || _super.prototype.isQuestionFit.call(this, question);
|
|
26455
|
+
};
|
|
26456
|
+
return PropertyGridEditorQuestionCarryForward;
|
|
26457
|
+
}(PropertyGridEditorQuestionSelectBase));
|
|
26458
|
+
|
|
26712
26459
|
var PropertyGridEditorQuestionValue = /** @class */ (function (_super) {
|
|
26713
26460
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"])(PropertyGridEditorQuestionValue, _super);
|
|
26714
26461
|
function PropertyGridEditorQuestionValue() {
|
|
@@ -26740,6 +26487,7 @@ PropertyGridEditorCollection.register(new PropertyGridEditorStringArray());
|
|
|
26740
26487
|
PropertyGridEditorCollection.register(new PropertyGridEditorQuestion());
|
|
26741
26488
|
PropertyGridEditorCollection.register(new PropertyGridEditorQuestionValue());
|
|
26742
26489
|
PropertyGridEditorCollection.register(new PropertyGridEditorQuestionSelectBase());
|
|
26490
|
+
PropertyGridEditorCollection.register(new PropertyGridEditorQuestionCarryForward());
|
|
26743
26491
|
PropertyGridEditorCollection.register(new PropertyGridEditorImageSize());
|
|
26744
26492
|
survey_core__WEBPACK_IMPORTED_MODULE_1__["QuestionFactory"].Instance.registerQuestion("buttongroup", function (name) {
|
|
26745
26493
|
return new survey_core__WEBPACK_IMPORTED_MODULE_1__["QuestionButtonGroupModel"](name);
|
|
@@ -26937,6 +26685,7 @@ var PropertyGridEditorMatrix = /** @class */ (function (_super) {
|
|
|
26937
26685
|
});
|
|
26938
26686
|
};
|
|
26939
26687
|
PropertyGridEditorMatrix.prototype.createNewItem = function (matrix, prop) {
|
|
26688
|
+
matrix.visibleRows.forEach(function (row) { return row.hideDetailPanel(); });
|
|
26940
26689
|
var json = {};
|
|
26941
26690
|
var baseValue = this.getBaseValue(prop);
|
|
26942
26691
|
var keyPropName = this.getKeyValue();
|
|
@@ -28426,6 +28175,7 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28426
28175
|
{ name: "state", tab: "layout" },
|
|
28427
28176
|
{ name: "titleLocation", tab: "layout" },
|
|
28428
28177
|
{ name: "descriptionLocation", tab: "layout" },
|
|
28178
|
+
{ name: "errorLocation", tab: "layout" },
|
|
28429
28179
|
{ name: "indent", tab: "layout" },
|
|
28430
28180
|
{ name: "width", tab: "layout" },
|
|
28431
28181
|
{ name: "minWidth", tab: "layout" },
|
|
@@ -28487,7 +28237,9 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28487
28237
|
{ name: "columnLayout", tab: "layout" },
|
|
28488
28238
|
{ name: "horizontalScroll", tab: "layout" },
|
|
28489
28239
|
{ name: "columnColCount", tab: "layout" },
|
|
28490
|
-
{ name: "columnMinWidth", tab: "layout" }
|
|
28240
|
+
{ name: "columnMinWidth", tab: "layout" },
|
|
28241
|
+
{ name: "cellErrorLocation", tab: "layout" },
|
|
28242
|
+
{ name: "detailErrorLocation", tab: "layout" }
|
|
28491
28243
|
],
|
|
28492
28244
|
tabs: [
|
|
28493
28245
|
{ name: "columns", index: 10 },
|
|
@@ -28550,7 +28302,8 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28550
28302
|
multipletext: {
|
|
28551
28303
|
properties: [
|
|
28552
28304
|
{ name: "colCount", tab: "layout" },
|
|
28553
|
-
{ name: "itemSize", tab: "layout" }
|
|
28305
|
+
{ name: "itemSize", tab: "layout" },
|
|
28306
|
+
{ name: "itemErrorLocation", tab: "layout" }
|
|
28554
28307
|
],
|
|
28555
28308
|
tabs: [{ name: "items", index: 10 }]
|
|
28556
28309
|
},
|
|
@@ -28571,6 +28324,8 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28571
28324
|
properties: [
|
|
28572
28325
|
{ name: "choicesFromQuestion", tab: "choices" },
|
|
28573
28326
|
{ name: "choicesFromQuestionMode", tab: "choices" },
|
|
28327
|
+
{ name: "choiceValuesFromQuestion", tab: "choices" },
|
|
28328
|
+
{ name: "choiceTextsFromQuestion", tab: "choices" },
|
|
28574
28329
|
{ name: "choicesOrder", tab: "choices" },
|
|
28575
28330
|
{ name: "colCount", tab: "layout" },
|
|
28576
28331
|
{ name: "showOtherItem", tab: "choices" },
|
|
@@ -28739,6 +28494,10 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28739
28494
|
},
|
|
28740
28495
|
"matrixdropdowncolumn@checkbox": {
|
|
28741
28496
|
properties: [
|
|
28497
|
+
{ name: "choicesFromQuestion", tab: "choices" },
|
|
28498
|
+
{ name: "choicesFromQuestionMode", tab: "choices" },
|
|
28499
|
+
{ name: "choiceValuesFromQuestion", tab: "choices" },
|
|
28500
|
+
{ name: "choiceTextsFromQuestion", tab: "choices" },
|
|
28742
28501
|
{ name: "showOtherItem", tab: "choices" },
|
|
28743
28502
|
{ name: "otherText", tab: "choices" },
|
|
28744
28503
|
{ name: "choicesOrder", tab: "choices" },
|
|
@@ -28759,6 +28518,10 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28759
28518
|
},
|
|
28760
28519
|
"matrixdropdowncolumn@radiogroup": {
|
|
28761
28520
|
properties: [
|
|
28521
|
+
{ name: "choicesFromQuestion", tab: "choices" },
|
|
28522
|
+
{ name: "choicesFromQuestionMode", tab: "choices" },
|
|
28523
|
+
{ name: "choiceValuesFromQuestion", tab: "choices" },
|
|
28524
|
+
{ name: "choiceTextsFromQuestion", tab: "choices" },
|
|
28762
28525
|
{ name: "showOtherItem", tab: "choices" },
|
|
28763
28526
|
{ name: "otherText", tab: "choices" },
|
|
28764
28527
|
{ name: "choicesOrder", tab: "choices" },
|
|
@@ -28775,6 +28538,10 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28775
28538
|
},
|
|
28776
28539
|
"matrixdropdowncolumn@dropdown": {
|
|
28777
28540
|
properties: [
|
|
28541
|
+
{ name: "choicesFromQuestion", tab: "choices" },
|
|
28542
|
+
{ name: "choicesFromQuestionMode", tab: "choices" },
|
|
28543
|
+
{ name: "choiceValuesFromQuestion", tab: "choices" },
|
|
28544
|
+
{ name: "choiceTextsFromQuestion", tab: "choices" },
|
|
28778
28545
|
{ name: "showOtherItem", tab: "choices" },
|
|
28779
28546
|
{ name: "otherText", tab: "choices" },
|
|
28780
28547
|
{ name: "choicesOrder", tab: "choices" },
|
|
@@ -28882,6 +28649,7 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28882
28649
|
{ name: "defaultPanelValue", tab: "data" },
|
|
28883
28650
|
{ name: "defaultValueFromLastPanel", tab: "data" },
|
|
28884
28651
|
{ name: "templateTitleLocation", tab: "layout" },
|
|
28652
|
+
{ name: "templateErrorLocation", tab: "layout" },
|
|
28885
28653
|
{ name: "panelRemoveButtonLocation", tab: "layout" },
|
|
28886
28654
|
{ name: "keyName", tab: "validation" },
|
|
28887
28655
|
{ name: "keyDuplicationError", tab: "validation" }
|
|
@@ -28897,7 +28665,8 @@ var SurveyQuestionEditorDefinition = /** @class */ (function () {
|
|
|
28897
28665
|
{ name: "visibleIf", tab: "logic" },
|
|
28898
28666
|
{ name: "enableIf", tab: "logic" },
|
|
28899
28667
|
{ name: "requiredIf", tab: "logic" },
|
|
28900
|
-
{ name: "questionTitleLocation", tab: "layout" }
|
|
28668
|
+
{ name: "questionTitleLocation", tab: "layout" },
|
|
28669
|
+
{ name: "questionErrorLocation", tab: "layout" }
|
|
28901
28670
|
],
|
|
28902
28671
|
tabs: [
|
|
28903
28672
|
{ name: "logic", index: 100 },
|
|
@@ -29072,6 +28841,7 @@ var SurveyQuestionEditorTabDefinition = /** @class */ (function () {
|
|
|
29072
28841
|
return SurveyQuestionEditorTabDefinition;
|
|
29073
28842
|
}());
|
|
29074
28843
|
|
|
28844
|
+
var otherTabName = "others";
|
|
29075
28845
|
var SurveyQuestionProperties = /** @class */ (function () {
|
|
29076
28846
|
function SurveyQuestionProperties(obj, options, className, showMode, parentObj, parentProperty) {
|
|
29077
28847
|
if (options === void 0) { options = null; }
|
|
@@ -29332,7 +29102,7 @@ var SurveyQuestionProperties = /** @class */ (function () {
|
|
|
29332
29102
|
if (classRes.tabs) {
|
|
29333
29103
|
for (var i = 0; i < classRes.tabs.length; i++) {
|
|
29334
29104
|
hasNonTabProperties =
|
|
29335
|
-
hasNonTabProperties || classRes.tabs[i].name
|
|
29105
|
+
hasNonTabProperties || classRes.tabs[i].name === otherTabName;
|
|
29336
29106
|
usedProperties[classRes.tabs[i].name] = true;
|
|
29337
29107
|
}
|
|
29338
29108
|
}
|
|
@@ -29364,14 +29134,14 @@ var SurveyQuestionProperties = /** @class */ (function () {
|
|
|
29364
29134
|
var propCategory = this.getJsonPropertyCategory(prop);
|
|
29365
29135
|
var tabName = !!propCategory
|
|
29366
29136
|
? propCategory
|
|
29367
|
-
: tabs.length == 0
|
|
29137
|
+
: tabs.length == 0 || (!!this.parentObj && this.showMode === "form")
|
|
29368
29138
|
? _creator_settings__WEBPACK_IMPORTED_MODULE_3__["settings"].propertyGrid.generalTabName
|
|
29369
|
-
:
|
|
29139
|
+
: otherTabName;
|
|
29370
29140
|
if (tabNames.indexOf(tabName) < 0 && tabName != _creator_settings__WEBPACK_IMPORTED_MODULE_3__["settings"].propertyGrid.generalTabName) {
|
|
29371
29141
|
tabNames.push(tabName);
|
|
29372
29142
|
classRes.tabs.push({
|
|
29373
29143
|
name: tabName,
|
|
29374
|
-
index: tabName
|
|
29144
|
+
index: tabName === otherTabName ? 1000 : tabNames.length * 10,
|
|
29375
29145
|
});
|
|
29376
29146
|
}
|
|
29377
29147
|
if (prop.categoryIndex > -1 && tabNames.indexOf(tabName) > -1) {
|
|
@@ -29531,9 +29301,16 @@ var QuestionConverter = /** @class */ (function () {
|
|
|
29531
29301
|
if (survey_core__WEBPACK_IMPORTED_MODULE_0__["Serializer"].isDescendantOf(convertToClass, "matrixdropdownbase") &&
|
|
29532
29302
|
survey_core__WEBPACK_IMPORTED_MODULE_0__["Serializer"].isDescendantOf(convertFromClass, "matrix") &&
|
|
29533
29303
|
json.columns) {
|
|
29534
|
-
json.columns = json.columns.map(function (col) { return ({
|
|
29304
|
+
json.columns = json.columns.map(function (col) { return ({
|
|
29305
|
+
name: QuestionConverter.getColumnName(col.value || col), title: col.text
|
|
29306
|
+
}); });
|
|
29535
29307
|
}
|
|
29536
29308
|
};
|
|
29309
|
+
QuestionConverter.getColumnName = function (val) {
|
|
29310
|
+
if (survey_core__WEBPACK_IMPORTED_MODULE_0__["Helpers"].isNumber(val))
|
|
29311
|
+
return "col" + val;
|
|
29312
|
+
return val;
|
|
29313
|
+
};
|
|
29537
29314
|
QuestionConverter.updateJSONForRating = function (json, convertToClass, defaultJSON) {
|
|
29538
29315
|
if (convertToClass === "rating" && json.choices) {
|
|
29539
29316
|
if (!defaultJSON || !defaultJSON.choices ||
|
|
@@ -30595,6 +30372,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30595
30372
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_1__);
|
|
30596
30373
|
/* harmony import */ var _survey_helper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./survey-helper */ "./src/survey-helper.ts");
|
|
30597
30374
|
/* harmony import */ var _json5__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./json5 */ "./src/json5.ts");
|
|
30375
|
+
/* harmony import */ var _creator_settings__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./creator-settings */ "./src/creator-settings.ts");
|
|
30376
|
+
|
|
30598
30377
|
|
|
30599
30378
|
|
|
30600
30379
|
|
|
@@ -30685,9 +30464,26 @@ var SurveyTextWorkerJsonErrorFixer = /** @class */ (function (_super) {
|
|
|
30685
30464
|
SurveyTextWorkerJsonErrorFixer.prototype.updatedJsonObjOnFix = function (json) {
|
|
30686
30465
|
};
|
|
30687
30466
|
SurveyTextWorkerJsonErrorFixer.prototype.replaceJson = function (text, start, end, json) {
|
|
30688
|
-
var newContent = JSON.stringify(json);
|
|
30467
|
+
var newContent = JSON.stringify(json, null, _creator_settings__WEBPACK_IMPORTED_MODULE_4__["settings"].jsonEditor.indentation);
|
|
30468
|
+
newContent = this.addLeftIndentIntoContent(text, newContent, start - 1);
|
|
30689
30469
|
return text.substring(0, start) + newContent + text.substring(end + 1);
|
|
30690
30470
|
};
|
|
30471
|
+
SurveyTextWorkerJsonErrorFixer.prototype.addLeftIndentIntoContent = function (text, content, index) {
|
|
30472
|
+
if (index <= 0)
|
|
30473
|
+
return content;
|
|
30474
|
+
var indent = "";
|
|
30475
|
+
while (index > 0 && (text[index] === " " || text[index] === "\t")) {
|
|
30476
|
+
indent += text[index];
|
|
30477
|
+
index--;
|
|
30478
|
+
}
|
|
30479
|
+
if (!indent)
|
|
30480
|
+
return content;
|
|
30481
|
+
var lines = content.split("\n");
|
|
30482
|
+
for (var i = 1; i < lines.length; i++) {
|
|
30483
|
+
lines[i] = indent + lines[i];
|
|
30484
|
+
}
|
|
30485
|
+
return lines.join("\n");
|
|
30486
|
+
};
|
|
30691
30487
|
return SurveyTextWorkerJsonErrorFixer;
|
|
30692
30488
|
}(SurveyTextWorkerJsonErrorFixerBase));
|
|
30693
30489
|
var SurveyTextWorkerJsonUnknownPropertyErrorFixer = /** @class */ (function (_super) {
|
|
@@ -30699,22 +30495,12 @@ var SurveyTextWorkerJsonUnknownPropertyErrorFixer = /** @class */ (function (_su
|
|
|
30699
30495
|
_this.propertyName = propertyName;
|
|
30700
30496
|
return _this;
|
|
30701
30497
|
}
|
|
30702
|
-
Object.defineProperty(SurveyTextWorkerJsonUnknownPropertyErrorFixer.prototype, "isFixable", {
|
|
30703
|
-
get: function () { return !!this.propertyName; },
|
|
30704
|
-
enumerable: false,
|
|
30705
|
-
configurable: true
|
|
30706
|
-
});
|
|
30707
30498
|
SurveyTextWorkerJsonUnknownPropertyErrorFixer.prototype.getCorrectAt = function (text, at, end) {
|
|
30708
30499
|
var propName = this.propertyName;
|
|
30709
30500
|
if (!propName)
|
|
30710
30501
|
return at;
|
|
30711
30502
|
return this.getNewIndex(text, this.propertyName, at, end);
|
|
30712
30503
|
};
|
|
30713
|
-
SurveyTextWorkerJsonUnknownPropertyErrorFixer.prototype.updatedJsonObjOnFix = function (json) {
|
|
30714
|
-
if (!!this.propertyName) {
|
|
30715
|
-
delete json[this.propertyName];
|
|
30716
|
-
}
|
|
30717
|
-
};
|
|
30718
30504
|
return SurveyTextWorkerJsonUnknownPropertyErrorFixer;
|
|
30719
30505
|
}(SurveyTextWorkerJsonErrorFixer));
|
|
30720
30506
|
var SurveyTextWorkerJsonDuplicateNameErrorFixer = /** @class */ (function (_super) {
|
|
@@ -31061,8 +30847,10 @@ var QuestionToolbox = /** @class */ (function (_super) {
|
|
|
31061
30847
|
this.dotsItem.popupModel.horizontalPosition = "right";
|
|
31062
30848
|
this.dotsItem.popupModel.verticalPosition = "top";
|
|
31063
30849
|
this.dragOrClickHelper = new survey_core__WEBPACK_IMPORTED_MODULE_1__["DragOrClickHelper"](function (pointerDownEvent, currentTarget, itemModel) {
|
|
30850
|
+
var _a;
|
|
31064
30851
|
var json = _this.creator.getJSONForNewElement(itemModel.json);
|
|
31065
30852
|
_this.dotsItem.popupModel.toggleVisibility();
|
|
30853
|
+
(_a = _this.creator) === null || _a === void 0 ? void 0 : _a.onDragDropItemStart();
|
|
31066
30854
|
_this.dragDropHelper.startDragToolboxItem(pointerDownEvent, json, itemModel.title);
|
|
31067
30855
|
});
|
|
31068
30856
|
this.hiddenItemsListModel.onPointerDown = function (pointerDownEvent, item) {
|